# HG changeset patch # User Dan Nicolaescu # Date 1188072894 0 # Node ID a22a8a63b26df605da82054520c83396bc84fcf2 # Parent 6aa3ccf8fedc1a1124c3f6507f23f2c388d9051f * progmodes/cperl-mode.el (cperl-indent-level): Autoload the safe-local-variable setting. * progmodes/perl-mode.el (perl-indent-level): Likewise. diff -r 6aa3ccf8fedc -r a22a8a63b26d lisp/ChangeLog --- a/lisp/ChangeLog Sat Aug 25 20:12:48 2007 +0000 +++ b/lisp/ChangeLog Sat Aug 25 20:14:54 2007 +0000 @@ -1,5 +1,9 @@ 2007-08-25 Dan Nicolaescu + * progmodes/cperl-mode.el (cperl-indent-level): Autoload the + safe-local-variable setting. + * progmodes/perl-mode.el (perl-indent-level): Likewise. + * log-view.el (log-view-marked-list): Delete variable. (log-view-mode): Don't use it. (log-view-toggle-mark-entry): Likewise, simplify. diff -r 6aa3ccf8fedc -r a22a8a63b26d lisp/progmodes/cperl-mode.el --- a/lisp/progmodes/cperl-mode.el Sat Aug 25 20:12:48 2007 +0000 +++ b/lisp/progmodes/cperl-mode.el Sat Aug 25 20:14:54 2007 +0000 @@ -233,7 +233,13 @@ "*Indentation of CPerl statements with respect to containing block." :type 'integer :group 'cperl-indentation-details) -(put 'cperl-indent-level 'safe-local-variable 'integerp) + +;; Is is not unusual to put both perl-indent-level and +;; cperl-indent-level in the local variable section of a file. If only +;; one of perl-mode and cperl-mode is in use, a warning will be issued +;; about the variable. Autoload this here, so that no warning is +;; issued when using either perl-mode or cperl-mode. +;;;###autoload(put 'cperl-indent-level 'safe-local-variable 'integerp) (defcustom cperl-lineup-step nil "*`cperl-lineup' will always lineup at multiple of this number. diff -r 6aa3ccf8fedc -r a22a8a63b26d lisp/progmodes/perl-mode.el --- a/lisp/progmodes/perl-mode.el Sat Aug 25 20:12:48 2007 +0000 +++ b/lisp/progmodes/perl-mode.el Sat Aug 25 20:14:54 2007 +0000 @@ -399,7 +399,14 @@ "*Indentation of Perl statements with respect to containing block." :type 'integer :group 'perl) -(put 'perl-indent-level 'safe-local-variable 'integerp) + +;; Is is not unusual to put both perl-indent-level and +;; cperl-indent-level in the local variable section of a file. If only +;; one of perl-mode and cperl-mode is in use, a warning will be issued +;; about the variable. Autoload this here, so that no warning is +;; issued when using either perl-mode or cperl-mode. +;;;###autoload(put 'perl-indent-level 'safe-local-variable 'integerp) + (defcustom perl-continued-statement-offset 4 "*Extra indent for lines not starting new statements." :type 'integer