diff options
author | Glenn Morris <rgm@gnu.org> | 2012-01-25 22:30:49 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-01-25 22:30:49 -0800 |
commit | 48da73922734c056f48ed3cd675a97369ac025ea (patch) | |
tree | d3a266c269057b18509c542e134025e50c99f2ed /lisp/emacs-lisp | |
parent | e43273eff03ad9e6c7564057b35a5bf6810935f2 (diff) | |
download | emacs-48da73922734c056f48ed3cd675a97369ac025ea.tar.gz emacs-48da73922734c056f48ed3cd675a97369ac025ea.tar.bz2 emacs-48da73922734c056f48ed3cd675a97369ac025ea.zip |
Doc fix for lexical-binding being in line one.
Ref http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00543.html
* doc/lispref/variables.texi (Using Lexical Binding):
Mention that lexical-binding should be set in the first line.
* src/lread.c (syms_of_lread): Doc fix.
* lisp/emacs-lisp/tabulated-list.el, lisp/progmodes/f90.el:
Move lexical-binding file-local to line one.
* etc/NEWS: lexical-binding should be ine the first line.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/tabulated-list.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/tabulated-list.el b/lisp/emacs-lisp/tabulated-list.el index 486635f7091..8fe514ab551 100644 --- a/lisp/emacs-lisp/tabulated-list.el +++ b/lisp/emacs-lisp/tabulated-list.el @@ -1,4 +1,4 @@ -;;; tabulated-list.el --- generic major mode for tabulated lists. +;;; tabulated-list.el --- generic major mode for tabulated lists -*- lexical-binding: t -*- ;; Copyright (C) 2011-2012 Free Software Foundation, Inc. @@ -362,7 +362,6 @@ as the ewoc pretty-printer." ;; Local Variables: ;; coding: utf-8 -;; lexical-binding: t ;; End: ;;; tabulated-list.el ends here |