mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 22:41:06 -08:00
(lisp-mode-variables, lisp-fill-paragraph): Remove
"^" from paragraph-start and paragraph-separate. Moved page-delimiter first in case it has a "^" also.
This commit is contained in:
parent
a91f616d88
commit
763d157993
1 changed files with 3 additions and 3 deletions
|
|
@ -95,7 +95,7 @@
|
|||
(set-syntax-table lisp-mode-syntax-table)))
|
||||
(setq local-abbrev-table lisp-mode-abbrev-table)
|
||||
(make-local-variable 'paragraph-start)
|
||||
(setq paragraph-start (concat "^$\\|" page-delimiter))
|
||||
(setq paragraph-start (concat page-delimiter "\\|$" ))
|
||||
(make-local-variable 'paragraph-separate)
|
||||
(setq paragraph-separate paragraph-start)
|
||||
(make-local-variable 'paragraph-ignore-fill-prefix)
|
||||
|
|
@ -731,8 +731,8 @@ and initial semicolons."
|
|||
(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-start (concat paragraph-start "\\|[ \t;]*$"))
|
||||
(paragraph-separate (concat paragraph-start "\\|[ \t;]*$"))
|
||||
(fill-prefix comment-fill-prefix))
|
||||
(fill-paragraph justify))))
|
||||
t))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue