Mercurial > emacs
comparison lisp/emacs-lisp/lisp-mode.el @ 98280:7e4e0f0026f6
(lisp-indent-offset): Fix custom type. (Bug#1011)
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 20 Sep 2008 21:54:44 +0000 |
parents | 90a2847062be |
children | 49fd9d409f65 |
comparison
equal
deleted
inserted
replaced
98279:16fcbc5c4c7d | 98280:7e4e0f0026f6 |
---|---|
867 (define-obsolete-function-alias 'lisp-mode-auto-fill 'do-auto-fill "23.1") | 867 (define-obsolete-function-alias 'lisp-mode-auto-fill 'do-auto-fill "23.1") |
868 | 868 |
869 (defcustom lisp-indent-offset nil | 869 (defcustom lisp-indent-offset nil |
870 "If non-nil, indent second line of expressions that many more columns." | 870 "If non-nil, indent second line of expressions that many more columns." |
871 :group 'lisp | 871 :group 'lisp |
872 :type '(choice nil integer)) | 872 :type '(choice (const nil) integer)) |
873 (put 'lisp-body-indent 'safe-local-variable | 873 (put 'lisp-body-indent 'safe-local-variable |
874 (lambda (x) (or (null x) (integerp x)))) | 874 (lambda (x) (or (null x) (integerp x)))) |
875 | 875 |
876 (defvar lisp-indent-function 'lisp-indent-function) | 876 (defvar lisp-indent-function 'lisp-indent-function) |
877 | 877 |