diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2019-05-25 18:33:39 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-05-25 18:37:33 -0700 |
commit | 5e47312c1f2638d19bf3d81de731809729caa11a (patch) | |
tree | b95eef832963e9f92d44ccb4b7f3c1a7043ab09f /lisp | |
parent | 461cb9217d83c0518de2e9bb6fd3ee0d8cd0626b (diff) | |
download | emacs-5e47312c1f2638d19bf3d81de731809729caa11a.tar.gz emacs-5e47312c1f2638d19bf3d81de731809729caa11a.tar.bz2 emacs-5e47312c1f2638d19bf3d81de731809729caa11a.zip |
Use lexical-binding in tabify.el and add tests
* lisp/tabify.el: Use lexical-binding.
* test/lisp/tabify-tests.el: New file.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/tabify.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tabify.el b/lisp/tabify.el index 37cd8fb2fdd..e2df8fc4056 100644 --- a/lisp/tabify.el +++ b/lisp/tabify.el @@ -1,4 +1,4 @@ -;;; tabify.el --- tab conversion commands for Emacs +;;; tabify.el --- tab conversion commands for Emacs -*- lexical-binding: t -*- ;; Copyright (C) 1985, 1994, 2001-2019 Free Software Foundation, Inc. |