# HG changeset patch # User Reiner Steib # Date 1140183737 0 # Node ID eacb238be92f0e41eb6251e2535d05167bad0b3b # Parent 2253db4514ba82e9e4046fbcaea4cfff02e34ac3 Add truncate-lines, ispell-check-comments and ispell-local-dictionary as safe local variables. diff -r 2253db4514ba -r eacb238be92f lisp/ChangeLog --- a/lisp/ChangeLog Fri Feb 17 12:35:52 2006 +0000 +++ b/lisp/ChangeLog Fri Feb 17 13:42:17 2006 +0000 @@ -1,3 +1,8 @@ +2006-02-17 Reiner Steib + + * files.el: Add truncate-lines, ispell-check-comments and + ispell-local-dictionary as safe local variables. + 2006-02-18 Nick Roberts * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for diff -r 2253db4514ba -r eacb238be92f lisp/files.el --- a/lisp/files.el Fri Feb 17 12:35:52 2006 +0000 +++ b/lisp/files.el Fri Feb 17 13:42:17 2006 +0000 @@ -2553,6 +2553,11 @@ (fill-column . integerp) (fill-prefix . ,string-or-null) (indent-tabs-mode . t) + (ispell-check-comments . (lambda (a) + (or (null a) + (eq t a) + (eq 'exclusive a)))) + (ispell-local-dictionary . ,string-or-null) (kept-new-versions . integerp) (no-byte-compile . t) (no-update-autoloads . t) @@ -2563,6 +2568,7 @@ (sentence-end . ,string-or-null) (sentence-end-double-space . t) (tab-width . integerp) + (truncate-lines . t) (version-control . t))))) (defun safe-local-variable-p (sym val)