From: Reiner Steib Date: Sun, 8 Oct 2006 11:34:29 +0000 (+0000) Subject: Mark `buffer-read-only' as safe-local-variable. X-Git-Tag: emacs-pretest-22.0.90~188 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1eb1a906aa7d55a74be7f1592086faed6b580468;p=emacs.git Mark `buffer-read-only' as safe-local-variable. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f7ff0e8d068..aa7d40ad147 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-10-08 Reiner Steib + + * files.el: Mark `buffer-read-only' as safe-local-variable. + 2006-10-08 Nick Roberts * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Burp if diff --git a/lisp/files.el b/lisp/files.el index 3e2cf2ee92d..1589e2c5998 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2397,10 +2397,10 @@ asking you for confirmation." ;; ;; 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)