diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:41:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:41:23 +0000 |
commit | 5b9dfc596390adeb3b69693b7b8ac6e4c110b7bf (patch) | |
tree | 182d41b5386dd7897b2bfb23b6c3f9abaa0fcea8 /lisp | |
parent | d09af6a54bebfdfe5982dbe39bfafc8cb98ae6fd (diff) | |
download | emacs-5b9dfc596390adeb3b69693b7b8ac6e4c110b7bf.tar.gz emacs-5b9dfc596390adeb3b69693b7b8ac6e4c110b7bf.tar.bz2 emacs-5b9dfc596390adeb3b69693b7b8ac6e4c110b7bf.zip |
(outline-end-of-prefix): store-match-data => set-match-data.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/allout.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/allout.el b/lisp/allout.el index 515219a8118..1ca81d159ce 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -1648,7 +1648,7 @@ otherwise skip white space between bullet and ensuing text." t (while (looking-at "[0-9]") (forward-char 1)) (if (and (not (eolp)) (looking-at "\\s-")) (forward-char 1))) - (store-match-data match-data)) + (set-match-data match-data)) ;; Reestablish where we are: (outline-current-depth))) ;;;_ > outline-current-bullet-pos () |