diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-08-17 01:45:45 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-08-17 01:45:45 +0000 |
commit | 2e3a2863660195cb9dc8d1eb3e8befa3d6cfe438 (patch) | |
tree | 256ab6e2dc63f8111788f3ccb06e440c8d611301 /lisp/progmodes | |
parent | 9058bd6784f0770a8ef46ba4e4b4b394f1acbbc9 (diff) | |
download | emacs-2e3a2863660195cb9dc8d1eb3e8befa3d6cfe438.tar.gz |
(perl-indent-command): Fix backwards conditional.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/perl-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el index 14ee573ecb1..707ec7d034f 100644 --- a/lisp/progmodes/perl-mode.el +++ b/lisp/progmodes/perl-mode.el @@ -319,7 +319,7 @@ possible action from the following list: (if arg ; If arg, just indent this line (perl-indent-line "\f") (if (and (not perl-tab-always-indent) - (<= (current-column) (current-indentation))) + (> (current-column) (current-indentation))) (insert-tab) (let (bof lsexp delta (oldpnt (point))) (beginning-of-line) |