* lisp/emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column): Make
it safe-local.
This commit is contained in:
parent
cdc0d0bdbd
commit
bde73d2720
2 changed files with 5 additions and 0 deletions
|
@ -1436,6 +1436,8 @@ Any non-integer value means do not use a different value of
|
|||
:type '(choice (integer)
|
||||
(const :tag "Use the current `fill-column'" t))
|
||||
:group 'lisp)
|
||||
(put 'emacs-lisp-docstring-fill-column 'safe-local-variable
|
||||
(lambda (x) (or (eq x t) (integerp x))))
|
||||
|
||||
(defun lisp-fill-paragraph (&optional justify)
|
||||
"Like \\[fill-paragraph], but handle Emacs Lisp comments and docstrings.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue