]> git.eshelyaron.com Git - emacs.git/commitdiff
(calculate-perl-indent): When indenting under a
authorRichard M. Stallman <rms@gnu.org>
Tue, 8 Apr 1997 01:18:14 +0000 (01:18 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 8 Apr 1997 01:18:14 +0000 (01:18 +0000)
containing openparen, skip spaces after the openparen.

lisp/progmodes/perl-mode.el

index 67a439da655d7b770b34872832f0f4fa0bdd5404..0ea19973ce1426fbcd5ad0fd3897b6b557cdba9d 100644 (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?