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:
parent
d3864ce98c
commit
f3681087a3
@ -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
|
||||
|
@ -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))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user