aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/perl-mode.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-08-17 01:45:45 +0000
committerRichard M. Stallman <[email protected]>1994-08-17 01:45:45 +0000
commitc1033e008cdc1c772201c67893dd34fc87ca9240 (patch)
treefd6072dfeae1515794ecb162370f5bca99518137 /lisp/progmodes/perl-mode.el
parent95e4d53630f2f96e9f07a561aa214fbbd04f11ea (diff)
(perl-indent-command): Fix backwards conditional.
Diffstat (limited to 'lisp/progmodes/perl-mode.el')
-rw-r--r--lisp/progmodes/perl-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el
index 14ee573ecb..707ec7d034 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)