From: Richard M. Stallman Date: Tue, 8 Apr 1997 01:18:14 +0000 (+0000) Subject: (calculate-perl-indent): When indenting under a X-Git-Tag: emacs-20.1~2607 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b8668259e25917dda5d17b85ca9c3640433e59db;p=emacs.git (calculate-perl-indent): When indenting under a containing openparen, skip spaces after the openparen. --- 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?