]> git.eshelyaron.com Git - emacs.git/commitdiff
(outline-regexp): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Wed, 12 Sep 2001 20:42:08 +0000 (20:42 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 12 Sep 2001 20:42:08 +0000 (20:42 +0000)
Initialize it in the defcustom, the usual way.

lisp/textmodes/outline.el

index 823f92e4065b286ab35e1331c63b96f27a2c6c68..23d5c1520aa928f6336fb5446a94af231bf49759 100644 (file)
   :prefix "outline-"
   :group 'editing)
 
-(defcustom outline-regexp nil
+(defcustom outline-regexp "[*\^L]+"
   "*Regular expression to match the beginning of a heading.
 Any line whose beginning matches this regexp is considered to start a heading.
+Note that Outline mode only checks this regexp at the start of a line,
+so the regexp need not (and usually does not) start with `^'.
 The recommended way to set this is with a Local Variables: list
 in the file it applies to.  See also `outline-heading-end-regexp'."
   :type '(choice regexp (const nil))
   :group 'outlines)
 
-;; Can't initialize this in the defvar above -- some major modes have
-;; already assigned a local value to it.
-(or (default-value 'outline-regexp)
-    (setq-default outline-regexp "[*\^L]+"))
-
 (defcustom outline-heading-end-regexp "\n"
   "*Regular expression to match the end of a heading line.
 You can assume that point is at the beginning of a heading when this