aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/perl-mode.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-04-08 01:18:14 +0000
committerRichard M. Stallman <[email protected]>1997-04-08 01:18:14 +0000
commitb8668259e25917dda5d17b85ca9c3640433e59db (patch)
treef70580015e2532c3034632f83665fd9921f3c9e0 /lisp/progmodes/perl-mode.el
parent6b2e9efd125eb597ffadf49980618f78f4fc0570 (diff)
(calculate-perl-indent): When indenting under a
containing openparen, skip spaces after the openparen.
Diffstat (limited to 'lisp/progmodes/perl-mode.el')
-rw-r--r--lisp/progmodes/perl-mode.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el
index 67a439da65..0ea19973ce 100644
--- a/lisp/progmodes/perl-mode.el
+++ b/lisp/progmodes/perl-mode.el
@@ -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?