(lisp-fill-paragraph): Change
paragraph-start regexp so we don't fill code starting with #'(
This commit is contained in:
parent
67e61e164d
commit
e8a4208ec8
1 changed files with 1 additions and 1 deletions
|
@ -1182,7 +1182,7 @@ and initial semicolons."
|
|||
;; The `fill-column' is temporarily bound to
|
||||
;; `emacs-lisp-docstring-fill-column' if that value is an integer.
|
||||
(let ((paragraph-start (concat paragraph-start
|
||||
"\\|\\s-*\\([\(;:\"]\\|`\(\\)"))
|
||||
"\\|\\s-*\\([\(;:\"]\\|`\(\\|#'\(\\)"))
|
||||
(paragraph-separate
|
||||
(concat paragraph-separate "\\|\\s-*\".*[,\\.]$"))
|
||||
(fill-column (if (integerp emacs-lisp-docstring-fill-column)
|
||||
|
|
Loading…
Add table
Reference in a new issue