aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-02-23 06:26:55 +0000
committerRichard M. Stallman1995-02-23 06:26:55 +0000
commit15cb2300cf80b1b3180c10fdc3fb96bff9c2a342 (patch)
tree1beb82942ff93ca929e08ca9fd57bcfeb98505c8
parent158973475c345957db525bd5b680d3b5a9802db1 (diff)
downloademacs-15cb2300cf80b1b3180c10fdc3fb96bff9c2a342.tar.gz
emacs-15cb2300cf80b1b3180c10fdc3fb96bff9c2a342.zip
(perl-tab-to-comment): Default is nil.
-rw-r--r--lisp/progmodes/perl-mode.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el
index 08e32ea1e14..d8ee5feeb7d 100644
--- a/lisp/progmodes/perl-mode.el
+++ b/lisp/progmodes/perl-mode.el
@@ -184,7 +184,9 @@ This is in addition to `perl-continued-statement-offset'.")
184Otherwise it inserts a tab character if you type it past the first 184Otherwise it inserts a tab character if you type it past the first
185nonwhite character on the line.") 185nonwhite 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.
189For lines which don't need indenting, TAB either indents an 191For lines which don't need indenting, TAB either indents an
190existing comment, moves to end-of-line, or if at end-of-line already, 192existing comment, moves to end-of-line, or if at end-of-line already,