safe-local-variable setting.
* progmodes/perl-mode.el (perl-indent-level): Likewise.
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.
"*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.
"*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