emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/doc/lispref ChangeLog advice.texi


From: Chong Yidong
Subject: [Emacs-diffs] emacs/doc/lispref ChangeLog advice.texi
Date: Sat, 15 Aug 2009 22:03:00 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      09/08/15 22:03:00

Modified files:
        doc/lispref    : ChangeLog advice.texi 

Log message:
        * advice.texi (Argument Access in Advice): Note that argument
        positions are zero-based (Bug#3932).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/lispref/ChangeLog?cvsroot=emacs&r1=1.316&r2=1.317
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/lispref/advice.texi?cvsroot=emacs&r1=1.8&r2=1.9

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/doc/lispref/ChangeLog,v
retrieving revision 1.316
retrieving revision 1.317
diff -u -b -r1.316 -r1.317
--- ChangeLog   15 Aug 2009 21:47:23 -0000      1.316
+++ ChangeLog   15 Aug 2009 22:02:59 -0000      1.317
@@ -1,5 +1,8 @@
 2009-08-15  Chong Yidong  <address@hidden>
 
+       * 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: advice.texi
===================================================================
RCS file: /sources/emacs/emacs/doc/lispref/advice.texi,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- advice.texi 13 Mar 2009 01:59:05 -0000      1.8
+++ advice.texi 15 Aug 2009 22:03:00 -0000      1.9
@@ -603,11 +603,11 @@
 
   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}.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]