* lisp/emacs-lisp/gv.el (gv-define-setter): Fix doc typo.

This commit is contained in:
Glenn Morris 2012-11-05 20:36:44 -05:00
parent bff6f2417e
commit 6b3770fb9d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-11-06 Glenn Morris <rgm@gnu.org>
* emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
2012-11-05 Glenn Morris <rgm@gnu.org>
* emacs-lisp/cl-extra.el (cl-prettyexpand):

View file

@ -194,7 +194,7 @@ well for simple place forms.
Assignments of VAL to (NAME ARGS...) are expanded by binding the argument
forms (VAL ARGS...) according to ARGLIST, then executing BODY, which must
return a Lisp form that does the assignment.
The first arg in ARLIST (the one that receives VAL) receives an expression
The first arg in ARGLIST (the one that receives VAL) receives an expression
which can do arbitrary things, whereas the other arguments are all guaranteed
to be pure and copyable. Example use:
(gv-define-setter aref (v a i) `(aset ,a ,i ,v))"