diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:53:37 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:53:37 +0000 |
commit | aded9c1ea2647e2d232b1e3b8a8c050461c12539 (patch) | |
tree | bd9fb95ac7362b286c784ac4222d119ae856599e /lisp/progmodes/simula.el | |
parent | eef4375a10a6deaf85003f95ba7364ca9aeaeae0 (diff) | |
download | emacs-aded9c1ea2647e2d232b1e3b8a8c050461c12539.tar.gz |
(simula-match-string-or-comment): store-match-data => set-match-data.
Diffstat (limited to 'lisp/progmodes/simula.el')
-rw-r--r-- | lisp/progmodes/simula.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/simula.el b/lisp/progmodes/simula.el index 9ea3d52836c..ec01c1e77db 100644 --- a/lisp/progmodes/simula.el +++ b/lisp/progmodes/simula.el @@ -1703,7 +1703,7 @@ If not nil and not t, move to limit of search and return nil." limit t) (when (match-beginning 3) ;; We've matched an end-comment. Yuck. Find the extent of it. - (store-match-data + (set-match-data (list (point) (if (re-search-forward "\\<\\(end\\|else\\|when\\|otherwise\\)\\>\\|;" limit 'move) |