]> code.delx.au - gnu-emacs/commitdiff
Mark `buffer-read-only' as safe-local-variable.
authorReiner Steib <Reiner.Steib@gmx.de>
Sun, 8 Oct 2006 11:34:29 +0000 (11:34 +0000)
committerReiner Steib <Reiner.Steib@gmx.de>
Sun, 8 Oct 2006 11:34:29 +0000 (11:34 +0000)
lisp/ChangeLog
lisp/files.el

index f7ff0e8d0685e9221e9c4d6ddad67bb90820650a..aa7d40ad1478d93da3048d1109472555b59a5f4d 100644 (file)
@@ -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
index 3e2cf2ee92dd6bbe6b37fb88f5190ecc7e4266cb..1589e2c5998f74077b3f5f3cd7322be63c95bdac 100644 (file)
@@ -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)