Mercurial > emacs
changeset 48119:df3f64f68cfe
(lisp-fill-paragraph): Use match-string and line-beginning-position.
Don't bother making paragraph-start a superset of paragraph-separate.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sat, 02 Nov 2002 01:38:03 +0000 |
parents | 40e2242be50f |
children | 16ca3f0efd84 |
files | lisp/emacs-lisp/lisp-mode.el |
diffstat | 1 files changed, 5 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mode.el Fri Nov 01 22:48:12 2002 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Sat Nov 02 01:38:03 2002 +0000 @@ -1079,8 +1079,7 @@ ;; A line with nothing but a comment on it? ((looking-at "[ \t]*;[; \t]*") (setq has-comment t - comment-fill-prefix (buffer-substring (match-beginning 0) - (match-end 0)))) + comment-fill-prefix (match-string 0))) ;; A line with some code, followed by a comment? Remember that the ;; semi which starts the comment shouldn't be part of a string or @@ -1093,7 +1092,7 @@ (setq comment-fill-prefix (concat (make-string (/ (current-column) tab-width) ?\t) (make-string (% (current-column) tab-width) ?\ ) - (buffer-substring (match-beginning 0) (match-end 0))))))) + (match-string 0)))))) (if (not has-comment) ;; `paragraph-start' is set here (not in the buffer-local @@ -1131,13 +1130,11 @@ (point))) ;; Lines with only semicolons on them can be paragraph boundaries. - (let* ((paragraph-start (concat paragraph-start "\\|[ \t;]*$")) - (paragraph-separate (concat paragraph-start "\\|[ \t;]*$")) + (let* ((paragraph-separate (concat paragraph-separate "\\|[ \t;]*$")) (paragraph-ignore-fill-prefix nil) (fill-prefix comment-fill-prefix) (after-line (if has-code-and-comment - (save-excursion - (forward-line 1) (point)))) + (line-beginning-position 2))) (end (progn (forward-paragraph) (or (bolp) (newline 1)) @@ -1154,8 +1151,7 @@ (goto-char beg) (if (looking-at fill-prefix) nil - (re-search-forward comment-start-skip) - (point)))))))) + (re-search-forward comment-start-skip)))))))) t)) (defun indent-code-rigidly (start end arg &optional nochange-regexp)