]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
authorGlenn Morris <rgm@gnu.org>
Tue, 6 Nov 2012 01:36:44 +0000 (20:36 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 6 Nov 2012 01:36:44 +0000 (20:36 -0500)
lisp/ChangeLog
lisp/emacs-lisp/gv.el

index 95c407fcdb7c88f8bdf930b7d6bb2396e0aeeb7c..9295f72a33655e1ee68f9f5c83642e2183fc6eb9 100644 (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):
index d6c91539a90423aefc9dbbe25564743df22233d4..3dd021f9e74a83a63f4e6fdeee318011d043d0a4 100644 (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))"