aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/foldout.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4ecd05a778f..b2237cb0620 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12004-03-10 John Paul Wallington <jpw@gnu.org>
2
3 * foldout.el (foldout-fold-list, foldout-modeline-string):
4 Declare them as variables, not constants.
5
12004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br> 62004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2 7
3 * ps-print.el: Modification to print *Messages* buffer. 8 * ps-print.el: Modification to print *Messages* buffer.
diff --git a/lisp/foldout.el b/lisp/foldout.el
index 0d7c79ec6f7..10f3cecd3ee 100644
--- a/lisp/foldout.el
+++ b/lisp/foldout.el
@@ -214,12 +214,12 @@
214(if (not (boundp 'outline-minor-mode)) 214(if (not (boundp 'outline-minor-mode))
215 (error "Can't find outline-minor-mode")) 215 (error "Can't find outline-minor-mode"))
216 216
217(defconst foldout-fold-list nil 217(defvar foldout-fold-list nil
218 "List of start and end markers for the folds currently entered. 218 "List of start and end markers for the folds currently entered.
219An end marker of nil means the fold ends after (point-max).") 219An end marker of nil means the fold ends after (point-max).")
220(make-variable-buffer-local 'foldout-fold-list) 220(make-variable-buffer-local 'foldout-fold-list)
221 221
222(defconst foldout-modeline-string nil 222(defvar foldout-modeline-string nil
223 "Modeline string announcing that we are in an outline fold.") 223 "Modeline string announcing that we are in an outline fold.")
224(make-variable-buffer-local 'foldout-modeline-string) 224(make-variable-buffer-local 'foldout-modeline-string)
225 225