From b8668259e25917dda5d17b85ca9c3640433e59db Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 8 Apr 1997 01:18:14 +0000 Subject: [PATCH] (calculate-perl-indent): When indenting under a containing openparen, skip spaces after the openparen. --- lisp/progmodes/perl-mode.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el index 67a439da655..0ea19973ce1 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? -- 2.39.2