# HG changeset patch # User Richard M. Stallman # Date 860462294 0 # Node ID a76c4ee8f2e7554dde9e54585f933acadaf73137 # Parent 24e9e8d0080e05fba940977ec0b8fed6e64b8d62 (calculate-perl-indent): When indenting under a containing openparen, skip spaces after the openparen. diff -r 24e9e8d0080e -r a76c4ee8f2e7 lisp/progmodes/perl-mode.el --- a/lisp/progmodes/perl-mode.el Mon Apr 07 18:02:44 1997 +0000 +++ b/lisp/progmodes/perl-mode.el Tue Apr 08 01:18:14 1997 +0000 @@ -516,6 +516,7 @@ ;; 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?