]> git.eshelyaron.com Git - emacs.git/commitdiff
Define user options with defvar, not defconst.
authorRichard M. Stallman <rms@gnu.org>
Mon, 21 Aug 1995 14:30:34 +0000 (14:30 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 21 Aug 1995 14:30:34 +0000 (14:30 +0000)
lisp/progmodes/icon.el

index 10882dabbe1f3dd8055e9b93c19a17e76bd65455..d075d84ff9ea3f4ed40363f18b7f822a7183c6b0 100644 (file)
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 1989 Free Software Foundation, Inc.
 
-;; Author: Chris Smith <convex!csmith>
+;; Author: Chris Smith <csmith@convex.com>
 ;; Created: 15 Feb 89
 ;; Keywords: languages
 
   (modify-syntax-entry ?| "." icon-mode-syntax-table)
   (modify-syntax-entry ?\' "\"" icon-mode-syntax-table))
 
-(defconst icon-indent-level 4
+(defvar icon-indent-level 4
   "*Indentation of Icon statements with respect to containing block.")
-(defconst icon-brace-imaginary-offset 0
+(defvar icon-brace-imaginary-offset 0
   "*Imagined indentation of a Icon open brace that actually follows a statement.")
-(defconst icon-brace-offset 0
+(defvar icon-brace-offset 0
   "*Extra indentation for braces, compared with other text in same context.")
-(defconst icon-continued-statement-offset 4
+(defvar icon-continued-statement-offset 4
   "*Extra indent for lines not starting new statements.")
-(defconst icon-continued-brace-offset 0
+(defvar icon-continued-brace-offset 0
   "*Extra indent for substatements that start with open-braces.
 This is in addition to icon-continued-statement-offset.")
 
-(defconst icon-auto-newline nil
+(defvar icon-auto-newline nil
   "*Non-nil means automatically newline before and after braces
 inserted in Icon code.")
 
-(defconst icon-tab-always-indent t
+(defvar icon-tab-always-indent t
   "*Non-nil means TAB in Icon mode should always reindent the current line,
 regardless of where in the line point is when the TAB command is used.")
 \f