1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-15 17:00:26 +00:00

(lisp-indent-offset): Fix custom type. (Bug#1011)

This commit is contained in:
Glenn Morris 2008-09-20 21:55:04 +00:00
parent d3864ce98c
commit f3681087a3
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-09-20 Glenn Morris <rgm@gnu.org>
* emacs-lisp/lisp-mode.el (lisp-indent-offset):
Fix custom type. (Bug#1011)
2008-09-20 David De La Harpe Golden <david@harpegolden.net>
* files.el (move-file-to-trash): Avoid recursive trashing if

View File

@ -869,7 +869,7 @@ which see."
(defcustom lisp-indent-offset nil
"If non-nil, indent second line of expressions that many more columns."
:group 'lisp
:type '(choice nil integer))
:type '(choice (const nil) integer))
(put 'lisp-body-indent 'safe-local-variable
(lambda (x) (or (null x) (integerp x))))