diff options
| author | Richard M. Stallman | 1995-02-23 06:26:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-02-23 06:26:55 +0000 |
| commit | 15cb2300cf80b1b3180c10fdc3fb96bff9c2a342 (patch) | |
| tree | 1beb82942ff93ca929e08ca9fd57bcfeb98505c8 | |
| parent | 158973475c345957db525bd5b680d3b5a9802db1 (diff) | |
| download | emacs-15cb2300cf80b1b3180c10fdc3fb96bff9c2a342.tar.gz emacs-15cb2300cf80b1b3180c10fdc3fb96bff9c2a342.zip | |
(perl-tab-to-comment): Default is nil.
| -rw-r--r-- | lisp/progmodes/perl-mode.el | 4 |
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'.") | |||
| 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, |