diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:48:26 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:48:26 +0000 |
commit | cdef3323137139bfe64f6864ec8edf63d98ad268 (patch) | |
tree | de28f5faf6df0f6c17badd3a6b0dab617738e389 /lisp/emacs-lisp/cl-macs.el | |
parent | bc3cb41d8ef789ffc67a17112bddf60410edd08e (diff) | |
download | emacs-cdef3323137139bfe64f6864ec8edf63d98ad268.tar.gz |
(defsetf match-data): store-match-data => set-match-data.
Diffstat (limited to 'lisp/emacs-lisp/cl-macs.el')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index e6656a168b1..59873addb46 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))) |