changeset 8551:121cdea46830

(perl-indent-command): Fix backwards conditional.
author Richard M. Stallman <rms@gnu.org>
date Wed, 17 Aug 1994 01:45:45 +0000
parents d884e74c75e4
children 1353c008cf8e
files lisp/progmodes/perl-mode.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/perl-mode.el	Tue Aug 16 23:51:52 1994 +0000
+++ b/lisp/progmodes/perl-mode.el	Wed Aug 17 01:45:45 1994 +0000
@@ -319,7 +319,7 @@
   (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)