]> git.eshelyaron.com Git - emacs.git/commitdiff
(lisp-indent-offset): Fix safe-local-variable property.
authorGlenn Morris <rgm@gnu.org>
Mon, 22 Jun 2009 06:24:32 +0000 (06:24 +0000)
committerGlenn Morris <rgm@gnu.org>
Mon, 22 Jun 2009 06:24:32 +0000 (06:24 +0000)
(lisp-indent-function): Make it a defcustom.

lisp/ChangeLog
lisp/emacs-lisp/lisp-mode.el

index c6d2e331cb3d8050bd62f90ae4d0f1c5f2000f9d..6265733a15c44416a421d1dc5ca3260fad94bbe9 100644 (file)
@@ -1,3 +1,9 @@
+2009-06-22  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
+       property.
+       (lisp-indent-function): Make it a defcustom.
+
 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
 
        * progmodes/gdb-ui.el: Replace with ...
index ec97a00ab0ce461e286b6b9e01deaf6e0eea470e..9845d304c8f21ebddb7b6cbaf2868a3c503e7a68 100644 (file)
@@ -877,15 +877,17 @@ which see."
   "If non-nil, indent second line of expressions that many more columns."
   :group 'lisp
   :type '(choice (const nil) integer))
-(put 'lisp-body-indent 'safe-local-variable
+(put 'lisp-indent-offset 'safe-local-variable
      (lambda (x) (or (null x) (integerp x))))
 
-(defvar lisp-indent-function 'lisp-indent-function
+(defcustom lisp-indent-function 'lisp-indent-function
   "A function to be called by `calculate-lisp-indent'.
 It indents the arguments of a Lisp function call.  This function
 should accept two arguments: the indent-point, and the
 `parse-partial-sexp' state at that position.  One option for this
-function is `common-lisp-indent-function'.")
+function is `common-lisp-indent-function'."
+  :type 'function
+  :group 'lisp)
 
 (defun lisp-indent-line (&optional whole-exp)
   "Indent current line as Lisp code.