From: Richard M. Stallman Date: Wed, 17 Aug 1994 01:45:45 +0000 (+0000) Subject: (perl-indent-command): Fix backwards conditional. X-Git-Tag: emacs-19.34~7302 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c1033e008cdc1c772201c67893dd34fc87ca9240;p=emacs.git (perl-indent-command): Fix backwards conditional. --- 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)