aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-07-14 19:03:22 +0000
committerStefan Monnier2007-07-14 19:03:22 +0000
commita25beddb336ccc3f7d40dc7e9c73e042bf1da366 (patch)
treea3be6126444d891814f32df890f073bb8d7e6571
parentf01cbfdda1a3bc60da7b22d7ee19cc3ae2927f1d (diff)
downloademacs-a25beddb336ccc3f7d40dc7e9c73e042bf1da366.tar.gz
emacs-a25beddb336ccc3f7d40dc7e9c73e042bf1da366.zip
(generated-autoload-file): Autoload the safe-local-variable setting.
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/emacs-lisp/autoload.el1
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f8628f540d5..bc94864ac44 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/autoload.el (generated-autoload-file): Autoload the
4 safe-local-variable setting.
5
12007-07-14 David Kastrup <dak@gnu.org> 62007-07-14 David Kastrup <dak@gnu.org>
2 7
3 * emacs-lisp/advice.el (defadvice): Doc fix. 8 * emacs-lisp/advice.el (defadvice): Doc fix.
@@ -17,8 +22,8 @@
17 (bookmark-map): Bind it to "o". 22 (bookmark-map): Bind it to "o".
18 23
19 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html 24 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html
20 and its thread contains discussion about this change. The 25 and its thread contains discussion about this change.
21 original patch was slightly tweaked by Karl Fogel 26 The original patch was slightly tweaked by Karl Fogel
22 <kfogel@red-bean.com> before committing. 27 <kfogel@red-bean.com> before committing.
23 28
242007-07-13 Karl Fogel <kfogel@red-bean.com> 292007-07-13 Karl Fogel <kfogel@red-bean.com>
@@ -29,7 +34,7 @@
29 34
30 * bookmark.el: Don't define bookmark keys under the "C-xr" map; 35 * bookmark.el: Don't define bookmark keys under the "C-xr" map;
31 instead, make "C-xp" a prefix for bookmark-map. Patch by Drew 36 instead, make "C-xp" a prefix for bookmark-map. Patch by Drew
32 Adams <drew.adams{_AT_}oracle.com>, mildly tweaked by me. See 37 Adams <drew.adams@oracle.com>, mildly tweaked by me. See
33 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html. 38 http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html.
34 39
352007-07-13 Carsten Dominik <dominik@science.uva.nl> 402007-07-13 Carsten Dominik <dominik@science.uva.nl>
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index d057ee028dc..90943b33e49 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -41,6 +41,7 @@
41A `.el' file can set this in its local variables section to make its 41A `.el' file can set this in its local variables section to make its
42autoloads go somewhere else. The autoload file is assumed to contain a 42autoloads go somewhere else. The autoload file is assumed to contain a
43trailer starting with a FormFeed character.") 43trailer starting with a FormFeed character.")
44;;;###autoload
44(put 'generated-autoload-file 'safe-local-variable 'stringp) 45(put 'generated-autoload-file 'safe-local-variable 'stringp)
45 46
46;; This feels like it should be a defconst, but MH-E sets it to 47;; This feels like it should be a defconst, but MH-E sets it to