summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-12-16 01:33:02 +0000
committerRichard M. Stallman <rms@gnu.org>1996-12-16 01:33:02 +0000
commitd7fa5aa239688e198a88571183b218566ef0b90a (patch)
treeb79dff93e6fd72f37dd67337523483567fa9a7f1 /lisp/emacs-lisp
parent4c8a3b19ec8c278a1a1e7c3fd4a29af525bf9286 (diff)
downloademacs-d7fa5aa239688e198a88571183b218566ef0b90a.tar.gz
emacs-d7fa5aa239688e198a88571183b218566ef0b90a.tar.bz2
emacs-d7fa5aa239688e198a88571183b218566ef0b90a.zip
Change defconsts to defvars.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/lisp-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index b86e497682d..26eab753c38 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -330,8 +330,8 @@ With argument, insert value in current buffer after the defun."
(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 @@ of the start of the containing expression."
(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)