* lisp/emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column): Make

it safe-local.
This commit is contained in:
Dmitry Gutov 2013-03-24 02:04:40 +04:00
parent cdc0d0bdbd
commit bde73d2720
2 changed files with 5 additions and 0 deletions

View file

@ -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.