diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:50:54 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:50:54 +0000 |
commit | a8c5f069fae4956f5ebff0b6fbea1b43ac84612f (patch) | |
tree | 1dcb4d923b677ce32b26753e36d9534aeda2dbe3 /lisp/emulation/viper-ex.el | |
parent | ccb61a97b2642a32f6143d5ec69f2c226ddbdc71 (diff) | |
download | emacs-a8c5f069fae4956f5ebff0b6fbea1b43ac84612f.tar.gz |
(ex-expand-filsyms): store-match-data => set-match-data.
Diffstat (limited to 'lisp/emulation/viper-ex.el')
-rw-r--r-- | lisp/emulation/viper-ex.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/viper-ex.el b/lisp/emulation/viper-ex.el index 0cc2bd1bc3d..849124b5c43 100644 --- a/lisp/emulation/viper-ex.el +++ b/lisp/emulation/viper-ex.el @@ -871,7 +871,7 @@ reversed." (char (buffer-substring (match-beginning 0) (match-end 0)))) (if (viper-looking-back (concat "\\\\" char)) (replace-match char) - (store-match-data data) + (set-match-data data) (if (string= char "%") (replace-match cf) (replace-match pf))))) |