]> git.eshelyaron.com Git - emacs.git/commitdiff
Change defconsts to defvars.
authorRichard M. Stallman <rms@gnu.org>
Mon, 16 Dec 1996 02:42:28 +0000 (02:42 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 16 Dec 1996 02:42:28 +0000 (02:42 +0000)
lisp/bindings.el

index 44d70bf143fb5082f16963b7849af1cddef48cb9..cccaab1c5aaa3a3cb62fe6bb6287fc9830b2f33b 100644 (file)
@@ -47,9 +47,7 @@
 
 ;;; Code:
 
-;;; This code was NOT generated by autoload.el.
-
-(defconst mode-line-buffer-identification (purecopy '("%F: %12b"))
+(defvar mode-line-buffer-identification (purecopy '("%F: %12b"))
   "Mode-line control for identifying the buffer being displayed.
 Its default value is (\"%F: %12b\").  Under X, `%F' is replaced with `Emacs'.
 Major modes that edit things other than ordinary files may change this
@@ -57,13 +55,13 @@ Major modes that edit things other than ordinary files may change this
 
 (make-variable-buffer-local 'mode-line-buffer-identification)
 
-(defconst mode-line-process nil
+(defvar mode-line-process nil
   "Mode-line control for displaying info on process status.
 Normally nil in most modes, since there is no process to display.")
 
 (make-variable-buffer-local 'mode-line-process)
 
-(defconst mode-line-modified (purecopy '("--%1*%1+-"))
+(defvar mode-line-modified (purecopy '("--%1*%1+-"))
   "Mode-line control for displaying whether current buffer is modified.")
 
 (make-variable-buffer-local 'mode-line-modified)
@@ -439,7 +437,7 @@ for \\[find-tag] (which see)."
 (define-key esc-map "\\" 'delete-horizontal-space)
 
 (defalias 'mode-specific-command-prefix (make-sparse-keymap))
-(defconst mode-specific-map (symbol-function 'mode-specific-command-prefix)
+(defvar mode-specific-map (symbol-function 'mode-specific-command-prefix)
   "Keymap for characters following C-c.")
 (define-key global-map "\C-c" 'mode-specific-command-prefix)