From: Richard M. Stallman Date: Sat, 14 Mar 1998 04:48:26 +0000 (+0000) Subject: (defsetf match-data): store-match-data => set-match-data. X-Git-Tag: emacs-20.3~1914 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cdef3323137139bfe64f6864ec8edf63d98ad268;p=emacs.git (defsetf match-data): store-match-data => set-match-data. --- 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)))