summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2003-02-10 21:45:14 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2003-02-10 21:45:14 +0000
commit7bd4aefba766642315aa6ee84f193ae78ce3402f (patch)
treedd39f25d19ec8791352de84fd80e4bb22bb1a730 /lisp/emacs-lisp
parent3f7ef08ebd61cfae0c6d7356161bc5a98949b737 (diff)
downloademacs-7bd4aefba766642315aa6ee84f193ae78ce3402f.tar.gz
emacs-7bd4aefba766642315aa6ee84f193ae78ce3402f.tar.bz2
emacs-7bd4aefba766642315aa6ee84f193ae78ce3402f.zip
(process-get): Add setf method.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/cl-macs.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index e8c8acbe84c..05932062d74 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -1724,6 +1724,7 @@ Example: (defsetf nth (n x) (v) (list 'setcar (list 'nthcdr n x) v))."
(defsetf process-buffer set-process-buffer)
(defsetf process-filter set-process-filter)
(defsetf process-sentinel set-process-sentinel)
+(defsetf process-get process-put)
(defsetf read-mouse-position (scr) (store)
(list 'set-mouse-position scr (list 'car store) (list 'cdr store)))
(defsetf screen-height set-screen-height t)