1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 18:41:25 -08:00

(calculate-perl-indent): When indenting under a

containing openparen, skip spaces after the openparen.
This commit is contained in:
Richard M. Stallman 1997-04-08 01:18:14 +00:00
parent 6b2e9efd12
commit b8668259e2

View file

@ -516,6 +516,7 @@ Returns (parse-state) if line starts inside a string."
;; line is expression, not statement:
;; indent to just after the surrounding open.
(goto-char (1+ containing-sexp))
(skip-chars-forward " \t")
(current-column))
(t
;; Statement level. Is it a continuation or a new statement?