diff options
author | Glenn Morris <rgm@gnu.org> | 2008-09-20 21:55:04 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-09-20 21:55:04 +0000 |
commit | f3681087a3c53cb1218be5b66e28b1668f9a8337 (patch) | |
tree | 4d54d0b04e499aad4b72b8152c2086b2381fce0f /lisp/emacs-lisp | |
parent | d3864ce98ccfbf64c630cea92cb4d42e06664bd1 (diff) | |
download | emacs-f3681087a3c53cb1218be5b66e28b1668f9a8337.tar.gz emacs-f3681087a3c53cb1218be5b66e28b1668f9a8337.tar.bz2 emacs-f3681087a3c53cb1218be5b66e28b1668f9a8337.zip |
(lisp-indent-offset): Fix custom type. (Bug#1011)
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 011f1f57dff..37d2d0cb47f 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -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)))) |