aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2005-08-14 23:55:03 +0000
committerAndreas Schwab2005-08-14 23:55:03 +0000
commit498eb267ff4aa9606ba0514719bf39ffb3f0741b (patch)
tree04e8bb4c1a049011c96e25faaedd7381ba919b6f
parent9e7357b07af8abeb1c0a4cea8d6613dc7a60c05c (diff)
downloademacs-498eb267ff4aa9606ba0514719bf39ffb3f0741b.tar.gz
emacs-498eb267ff4aa9606ba0514719bf39ffb3f0741b.zip
Put autoload cookie at risky-local-variable declarations.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/desktop.el2
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ea9572fbbeb..7519b02e652 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12005-08-15 Andreas Schwab <schwab@suse.de> 12005-08-15 Andreas Schwab <schwab@suse.de>
2 2
3 * desktop.el: Put autoload cookie at risky-local-variable
4 declarations.
5
3 * dired.el, info.el, mail/rmail.el: Revert last change. 6 * dired.el, info.el, mail/rmail.el: Revert last change.
4 7
52005-08-14 Thien-Thi Nguyen <ttn@gnu.org> 82005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
diff --git a/lisp/desktop.el b/lisp/desktop.el
index f8be1f0685d..3dbd581aef4 100644
--- a/lisp/desktop.el
+++ b/lisp/desktop.el
@@ -403,6 +403,7 @@ code like
403 403
404Furthermore the major mode function must be autoloaded.") 404Furthermore the major mode function must be autoloaded.")
405 405
406;;;###autoload
406(put 'desktop-buffer-mode-handlers 'risky-local-variable t) 407(put 'desktop-buffer-mode-handlers 'risky-local-variable t)
407(make-obsolete-variable 'desktop-buffer-handlers 408(make-obsolete-variable 'desktop-buffer-handlers
408 'desktop-buffer-mode-handlers "22.1") 409 'desktop-buffer-mode-handlers "22.1")
@@ -465,6 +466,7 @@ Furthermore the minor mode function must be autoloaded.
465 466
466See also `desktop-minor-mode-table'.") 467See also `desktop-minor-mode-table'.")
467 468
469;;;###autoload
468(put 'desktop-minor-mode-handlers 'risky-local-variable t) 470(put 'desktop-minor-mode-handlers 'risky-local-variable t)
469 471
470;; ---------------------------------------------------------------------------- 472;; ----------------------------------------------------------------------------