aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorChong Yidong2009-09-29 23:57:17 +0000
committerChong Yidong2009-09-29 23:57:17 +0000
commit561580e91b37f37f95bd3ac6f3064ae2d97f2750 (patch)
tree0f0543efe28def77d970edea116ceab7965d7244 /lisp
parentdcbbecd42f2b2a393a90c1fe9ad2b85e55bc7daa (diff)
downloademacs-561580e91b37f37f95bd3ac6f3064ae2d97f2750.tar.gz
emacs-561580e91b37f37f95bd3ac6f3064ae2d97f2750.zip
* files.el (safe-local-eval-forms): Fix typo.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/files.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6b0069b7b04..73b9db7fe74 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12009-09-29 Chong Yidong <cyd@stupidchicken.com>
2
3 * files.el (safe-local-eval-forms): Fix typo.
4
12009-09-29 Stefan Monnier <monnier@iro.umontreal.ca> 52009-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * vc-hooks.el (vc-dir-buffers): New var. 7 * vc-hooks.el (vc-dir-buffers): New var.
diff --git a/lisp/files.el b/lisp/files.el
index 177046ace0f..3fde2812f0c 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2689,7 +2689,7 @@ symbol and VAL is a value that is considered safe."
2689 2689
2690(defcustom safe-local-eval-forms 2690(defcustom safe-local-eval-forms
2691 '((add-hook 'write-file-functions 'time-stamp) 2691 '((add-hook 'write-file-functions 'time-stamp)
2692 (add-hook 'before-save-hooks 'time-stamp)) 2692 (add-hook 'before-save-hook 'time-stamp))
2693 "Expressions that are considered safe in an `eval:' local variable. 2693 "Expressions that are considered safe in an `eval:' local variable.
2694Add expressions to this list if you want Emacs to evaluate them, when 2694Add expressions to this list if you want Emacs to evaluate them, when
2695they appear in an `eval' local variable specification, without first 2695they appear in an `eval' local variable specification, without first