diff lisp/files.el @ 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 206dafef27e7
children 29316290f939
line wrap: on
line diff
--- 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)