# HG changeset patch # User John Paul Wallington # Date 1078968215 0 # Node ID 0d2cbb6d6ad1f4dc052f27c113153994bbbe474a # Parent 06427e5d9c7609504b01ce475bfe3eadb74f4892 (foldout-fold-list, foldout-modeline-string): Declare them as variables, not constants. diff -r 06427e5d9c76 -r 0d2cbb6d6ad1 lisp/foldout.el --- a/lisp/foldout.el Thu Mar 11 00:31:31 2004 +0000 +++ b/lisp/foldout.el Thu Mar 11 01:23:35 2004 +0000 @@ -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)