diff options
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/files.el | 2 |
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 @@ +2009-09-29 Chong Yidong <cyd@stupidchicken.com> + + * files.el (safe-local-eval-forms): Fix typo. + 2009-09-29 Stefan Monnier <monnier@iro.umontreal.ca> * 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." (defcustom safe-local-eval-forms '((add-hook 'write-file-functions 'time-stamp) - (add-hook 'before-save-hooks 'time-stamp)) + (add-hook 'before-save-hook 'time-stamp)) "Expressions that are considered safe in an `eval:' local variable. Add expressions to this list if you want Emacs to evaluate them, when they appear in an `eval' local variable specification, without first |