diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-07-22 02:13:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-07-22 02:13:28 +0000 |
commit | eba1c87adc05dcfbfb3ff589b39bb3bcb7976f4e (patch) | |
tree | 0670b36dc526d9add629a7ee5004c33de0d3be81 | |
parent | e6749574835f602f76a3bb5e30bf707df161c321 (diff) | |
download | emacs-eba1c87adc05dcfbfb3ff589b39bb3bcb7976f4e.tar.gz |
(dabbrev-case-fold-search, dabbrev-case-replace): Set
`risky-local-variable' property, since these get eval'ed.
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/files.el b/lisp/files.el index 100b1e6ac21..436aa8509c4 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1355,6 +1355,8 @@ in order to initialize other data structure based on them.") (put 'load-path 'risky-local-variable t) (put 'exec-directory 'risky-local-variable t) (put 'process-environment 'risky-local-variable t) +(put 'dabbrev-case-fold-search 'risky-local-variable t) +(put 'dabbrev-case-replace 'risky-local-variable t) ;; Don't wait for outline.el to be loaded, for the sake of outline-minor-mode. (put 'outline-level 'risky-local-variable t) (put 'rmail-output-file-alist 'risky-local-variable t) |