comparison lisp/progmodes/perl-mode.el @ 10807:50f00b298a2d

(perl-tab-to-comment): Default is nil.
author Richard M. Stallman <rms@gnu.org>
date Thu, 23 Feb 1995 06:26:55 +0000
parents 8a36332efbf2
children de7673bb5d19
comparison
equal deleted inserted replaced
10806:9e59d5bdaab8 10807:50f00b298a2d
182 (defvar perl-tab-always-indent t 182 (defvar perl-tab-always-indent t
183 "*Non-nil means TAB in Perl mode always indents the current line. 183 "*Non-nil means TAB in Perl mode always indents the current line.
184 Otherwise it inserts a tab character if you type it past the first 184 Otherwise it inserts a tab character if you type it past the first
185 nonwhite character on the line.") 185 nonwhite character on the line.")
186 186
187 (defvar perl-tab-to-comment t 187 ;; I changed the default to nil for consistency with general Emacs
188 ;; conventions -- rms.
189 (defvar perl-tab-to-comment nil
188 "*Non-nil means TAB moves to eol or makes a comment in some cases. 190 "*Non-nil means TAB moves to eol or makes a comment in some cases.
189 For lines which don't need indenting, TAB either indents an 191 For lines which don't need indenting, TAB either indents an
190 existing comment, moves to end-of-line, or if at end-of-line already, 192 existing comment, moves to end-of-line, or if at end-of-line already,
191 create a new comment.") 193 create a new comment.")
192 194