diff lisp/emacs-lisp/lisp-mode.el @ 16687:049c87a96dca

Change defconsts to defvars.
author Richard M. Stallman <rms@gnu.org>
date Mon, 16 Dec 1996 01:33:02 +0000
parents 41bbec0cc4c6
children 852e90e67fff
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mode.el	Mon Dec 16 00:56:13 1996 +0000
+++ b/lisp/emacs-lisp/lisp-mode.el	Mon Dec 16 01:33:02 1996 +0000
@@ -330,8 +330,8 @@
       (max (if (bolp) 0 (1+ (current-column)))
 	   comment-column))))
 
-(defconst lisp-indent-offset nil "")
-(defconst lisp-indent-function 'lisp-indent-function "")
+(defvar lisp-indent-offset nil "")
+(defvar lisp-indent-function 'lisp-indent-function "")
 
 (defun lisp-indent-line (&optional whole-exp)
   "Indent current line as Lisp code.
@@ -508,7 +508,7 @@
 	      (method
 		(funcall method state indent-point)))))))
 
-(defconst lisp-body-indent 2
+(defvar lisp-body-indent 2
   "Number of columns to indent the second line of a `(def...)' form.")
 
 (defun lisp-indent-specform (count state indent-point normal-indent)