Mercurial > emacs
changeset 73300:886a80a8e3ee
Mark `buffer-read-only' as safe-local-variable.
author | Reiner Steib <Reiner.Steib@gmx.de> |
---|---|
date | Sun, 08 Oct 2006 11:34:29 +0000 |
parents | f569833369f9 |
children | 3fc5212fe32a |
files | lisp/ChangeLog lisp/files.el |
diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Oct 08 07:48:02 2006 +0000 +++ b/lisp/ChangeLog Sun Oct 08 11:34:29 2006 +0000 @@ -1,3 +1,7 @@ +2006-10-08 Reiner Steib <Reiner.Steib@gmx.de> + + * files.el: Mark `buffer-read-only' as safe-local-variable. + 2006-10-08 Nick Roberts <nickrob@snap.net.nz> * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Burp if
--- a/lisp/files.el Sun Oct 08 07:48:02 2006 +0000 +++ b/lisp/files.el Sun Oct 08 11:34:29 2006 +0000 @@ -2397,10 +2397,10 @@ ;; ;; For variables defined in the C source code the declaration should go here: -;; FIXME: Some variables should be moved according to the rules above. (mapc (lambda (pair) (put (car pair) 'safe-local-variable (cdr pair))) - '((fill-column . integerp) ;; C source code + '((buffer-read-only . booleanp) ;; C source code + (fill-column . integerp) ;; C source code (indent-tabs-mode . booleanp) ;; C source code (left-margin . integerp) ;; C source code (no-update-autoloads . booleanp)