summaryrefslogtreecommitdiff
path: root/lisp/foldout.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/foldout.el')
-rw-r--r--lisp/foldout.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/foldout.el b/lisp/foldout.el
index 21f2208723b..10f3cecd3ee 100644
--- a/lisp/foldout.el
+++ b/lisp/foldout.el
@@ -214,12 +214,12 @@
(if (not (boundp 'outline-minor-mode))
(error "Can't find outline-minor-mode"))
-(defconst foldout-fold-list nil
+(defvar foldout-fold-list nil
"List of start and end markers for the folds currently entered.
An end marker of nil means the fold ends after (point-max).")
(make-variable-buffer-local 'foldout-fold-list)
-(defconst foldout-modeline-string nil
+(defvar foldout-modeline-string nil
"Modeline string announcing that we are in an outline fold.")
(make-variable-buffer-local 'foldout-modeline-string)
@@ -567,4 +567,5 @@ Valid modifiers are shift, control, meta, alt, hyper and super.")
(provide 'foldout)
+;;; arch-tag: 19d095a2-1f09-42a7-a5ac-e2a3078cfe95
;;; foldout.el ends here