]> git.eshelyaron.com Git - emacs.git/commitdiff
* progmodes/cperl-mode.el (cperl-indent-level): Autoload the
authorDan Nicolaescu <dann@ics.uci.edu>
Sat, 25 Aug 2007 20:14:54 +0000 (20:14 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Sat, 25 Aug 2007 20:14:54 +0000 (20:14 +0000)
safe-local-variable setting.
* progmodes/perl-mode.el (perl-indent-level): Likewise.

lisp/ChangeLog
lisp/progmodes/cperl-mode.el
lisp/progmodes/perl-mode.el

index cb8fe2027934210e320b08650a6f061bdd318ee2..b5ff85c47aeae6fa66069f04ac9e0a575d71b7f8 100644 (file)
@@ -1,5 +1,9 @@
 2007-08-25  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * 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.
index 5a91141db6c25a285b5bda28f0164689b9ef6b0d..60c2a926cb22ef9757312bd91dee4f346b29532a 100644 (file)
@@ -233,7 +233,13 @@ for constructs with multiline if/unless/while/until/for/foreach condition."
   "*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.
index f2feff595bba6f767144fc4d98565a84a51a8d36..809ed7a9f36b20b3474a4cdfc3c9b5893bd6eb86 100644 (file)
@@ -399,7 +399,14 @@ The expansion is entirely correct because it uses the C preprocessor."
   "*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