diff options
author | Bastien <bzg@gnu.org> | 2017-07-03 09:06:29 +0200 |
---|---|---|
committer | Bastien <bzg@gnu.org> | 2017-07-03 09:06:29 +0200 |
commit | 5ca1888fe670aee7febd4d42665d7372ab2ffebc (patch) | |
tree | 1f7f8d8a7580e556fc83cf3a6aaeec567b33a090 /lisp/emacs-lisp/lisp-mnt.el | |
parent | 20e006ffee41062f1b551a92c24d9edc53cd0f56 (diff) | |
parent | 1b4f0a92ff3505ef9a465b9b391756e3a73a6443 (diff) | |
download | emacs-5ca1888fe670aee7febd4d42665d7372ab2ffebc.tar.gz emacs-5ca1888fe670aee7febd4d42665d7372ab2ffebc.tar.bz2 emacs-5ca1888fe670aee7febd4d42665d7372ab2ffebc.zip |
Merge branch 'master' into scratch/org-mode-merge
Diffstat (limited to 'lisp/emacs-lisp/lisp-mnt.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mnt.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el index fc3caf3359a..a1c5b6977f8 100644 --- a/lisp/emacs-lisp/lisp-mnt.el +++ b/lisp/emacs-lisp/lisp-mnt.el @@ -326,12 +326,13 @@ Return argument is of the form (\"HOLDER\" \"YEAR1\" ... \"YEARN\")" (start (point)) (end (line-end-position))) ;; Cope with multi-line copyright `lines'. Assume the second - ;; line is indented (with the same commenting style). + ;; line is indented at least as much as the original, with the + ;; same commenting style. (save-excursion (beginning-of-line 2) - (let ((str (concat (match-string-no-properties 1) "[ \t]+"))) + (let ((str (match-string-no-properties 1))) (beginning-of-line) - (while (looking-at str) + (while (and (looking-at str) (not (looking-at lm-copyright-prefix))) (setq end (line-end-position)) (beginning-of-line 2)))) ;; Make a single line and parse that. |