aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-03-14 04:50:54 +0000
committerRichard M. Stallman1998-03-14 04:50:54 +0000
commita8c5f069fae4956f5ebff0b6fbea1b43ac84612f (patch)
tree1dcb4d923b677ce32b26753e36d9534aeda2dbe3
parentccb61a97b2642a32f6143d5ec69f2c226ddbdc71 (diff)
downloademacs-a8c5f069fae4956f5ebff0b6fbea1b43ac84612f.tar.gz
emacs-a8c5f069fae4956f5ebff0b6fbea1b43ac84612f.zip
(ex-expand-filsyms): store-match-data => set-match-data.
-rw-r--r--lisp/emulation/viper-ex.el2
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."
871 (char (buffer-substring (match-beginning 0) (match-end 0)))) 871 (char (buffer-substring (match-beginning 0) (match-end 0))))
872 (if (viper-looking-back (concat "\\\\" char)) 872 (if (viper-looking-back (concat "\\\\" char))
873 (replace-match char) 873 (replace-match char)
874 (store-match-data data) 874 (set-match-data data)
875 (if (string= char "%") 875 (if (string= char "%")
876 (replace-match cf) 876 (replace-match cf)
877 (replace-match pf))))) 877 (replace-match pf)))))