Mercurial > emacs
changeset 17338:a76c4ee8f2e7
(calculate-perl-indent): When indenting under a
containing openparen, skip spaces after the openparen.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 08 Apr 1997 01:18:14 +0000 |
parents | 24e9e8d0080e |
children | 8ce3d2e461bc |
files | lisp/progmodes/perl-mode.el |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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?