]> git.eshelyaron.com Git - emacs.git/commitdiff
* advice.texi (Argument Access in Advice): Note that argument
authorChong Yidong <cyd@stupidchicken.com>
Sat, 15 Aug 2009 22:02:59 +0000 (22:02 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 15 Aug 2009 22:02:59 +0000 (22:02 +0000)
positions are zero-based (Bug#3932).

doc/lispref/ChangeLog
doc/lispref/advice.texi

index 3aab7e3b623306c99cdfa54bd129dc94701a736a..e07386d8b8894689c34012a23ae8bfb09a6f0d4a 100644 (file)
@@ -1,5 +1,8 @@
 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
 
+       * advice.texi (Argument Access in Advice): Note that argument
+       positions are zero-based (Bug#3932).
+
        * commands.texi (Distinguish Interactive): Minor copyedit.
 
        * display.texi (Face Attributes): Add xref to Displaying Faces for
index 57cfc616f23a790b7cc5a6cdc1b4a1d816eac4ce..a3669781e0e452d2d62b764273e254e71390fd76 100644 (file)
@@ -603,11 +603,11 @@ for that function.
 
   A more robust method is to use macros that are translated into the
 proper access forms at activation time, i.e., when constructing the
-advised definition.  Access macros access actual arguments by position
-regardless of how these actual arguments get distributed onto the
-argument variables of a function.  This is robust because in Emacs Lisp
-the meaning of an argument is strictly determined by its position in the
-argument list.
+advised definition.  Access macros access actual arguments by their
+(zero-based) position, regardless of how these actual arguments get
+distributed onto the argument variables of a function.  This is robust
+because in Emacs Lisp the meaning of an argument is strictly
+determined by its position in the argument list.
 
 @defmac ad-get-arg position
 This returns the actual argument that was supplied at @var{position}.