emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lispref/internals.texi


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lispref/internals.texi
Date: Mon, 07 Mar 2005 22:06:53 -0500

Index: emacs/lispref/internals.texi
diff -c emacs/lispref/internals.texi:1.38 emacs/lispref/internals.texi:1.39
*** emacs/lispref/internals.texi:1.38   Wed Sep  8 02:59:04 2004
--- emacs/lispref/internals.texi        Tue Mar  8 03:06:53 2005
***************
*** 477,504 ****
    (args)
       Lisp_Object args;
  @{
!   register Lisp_Object val;
!   Lisp_Object args_left;
    struct gcpro gcpro1;
  @end group
  
  @group
!   if (NILP (args))
!     return Qnil;
! 
!   args_left = args;
!   GCPRO1 (args_left);
  @end group
  
  @group
!   do
      @{
!       val = Feval (Fcar (args_left));
        if (!NILP (val))
!         break;
!       args_left = Fcdr (args_left);
      @}
-   while (!NILP (args_left));
  @end group
  
  @group
--- 477,498 ----
    (args)
       Lisp_Object args;
  @{
!   register Lisp_Object val = Qnil;
    struct gcpro gcpro1;
  @end group
  
  @group
!   GCPRO1 (args);
  @end group
  
  @group
!   while (CONSP (args))
      @{
!       val = Feval (XCAR (args));
        if (!NILP (val))
!       break;
!       args = XCDR (args);
      @}
  @end group
  
  @group
***************
*** 549,555 ****
  @code{MANY}, indicating an unlimited number of evaluated arguments (the
  equivalent of @code{&rest}).  Both @code{UNEVALLED} and @code{MANY} are
  macros.  If @var{max} is a number, it may not be less than @var{min} and
! it may not be greater than seven.
  
  @item interactive
  This is an interactive specification, a string such as might be used as
--- 543,549 ----
  @code{MANY}, indicating an unlimited number of evaluated arguments (the
  equivalent of @code{&rest}).  Both @code{UNEVALLED} and @code{MANY} are
  macros.  If @var{max} is a number, it may not be less than @var{min} and
! it may not be greater than eight.
  
  @item interactive
  This is an interactive specification, a string such as might be used as




reply via email to

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