(lisp-indent-offset): Fix custom type. (Bug#1011)
This commit is contained in:
parent
d3864ce98c
commit
f3681087a3
2 changed files with 6 additions and 1 deletions
|
|
@ -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>
|
2008-09-20 David De La Harpe Golden <david@harpegolden.net>
|
||||||
|
|
||||||
* files.el (move-file-to-trash): Avoid recursive trashing if
|
* files.el (move-file-to-trash): Avoid recursive trashing if
|
||||||
|
|
|
||||||
|
|
@ -869,7 +869,7 @@ which see."
|
||||||
(defcustom lisp-indent-offset nil
|
(defcustom lisp-indent-offset nil
|
||||||
"If non-nil, indent second line of expressions that many more columns."
|
"If non-nil, indent second line of expressions that many more columns."
|
||||||
:group 'lisp
|
:group 'lisp
|
||||||
:type '(choice nil integer))
|
:type '(choice (const nil) integer))
|
||||||
(put 'lisp-body-indent 'safe-local-variable
|
(put 'lisp-body-indent 'safe-local-variable
|
||||||
(lambda (x) (or (null x) (integerp x))))
|
(lambda (x) (or (null x) (integerp x))))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue