(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

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