1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(perl-indent-command): Fix backwards conditional.

This commit is contained in:
Richard M. Stallman 1994-08-17 01:45:45 +00:00
parent 95e4d53630
commit c1033e008c

View file

@ -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)