aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1998-03-14 04:48:26 +0000
committerRichard M. Stallman <[email protected]>1998-03-14 04:48:26 +0000
commitcdef3323137139bfe64f6864ec8edf63d98ad268 (patch)
treede28f5faf6df0f6c17badd3a6b0dab617738e389 /lisp
parentbc3cb41d8ef789ffc67a17112bddf60410edd08e (diff)
(defsetf match-data): store-match-data => set-match-data.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/cl-macs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index e6656a168b..59873addb4 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -1621,7 +1621,7 @@ Example: (defsetf nth (n x) (v) (list 'setcar (list 'nthcdr n x) v))."
(defsetf mark set-mark t)
(defsetf mark-marker set-mark t)
(defsetf marker-position set-marker t)
-(defsetf match-data store-match-data t)
+(defsetf match-data set-match-data t)
(defsetf mouse-position (scr) (store)
(list 'set-mouse-position scr (list 'car store) (list 'cadr store)
(list 'cddr store)))