emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/subr.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/subr.el
Date: Fri, 14 Jun 2002 02:15:00 -0400

Index: emacs/lisp/subr.el
diff -c emacs/lisp/subr.el:1.308 emacs/lisp/subr.el:1.309
*** emacs/lisp/subr.el:1.308    Fri Jun 14 01:48:51 2002
--- emacs/lisp/subr.el  Fri Jun 14 02:15:00 2002
***************
*** 89,96 ****
  LISTNAME must be a symbol whose value is a list.
  If the value is nil, `pop' returns nil but does not actually
  change the list."
!   (list 'prog1 (list 'car listname)
!       (list 'setq listname (list 'cdr listname))))
  
  (defmacro when (cond &rest body)
    "If COND yields non-nil, do BODY, else return nil."
--- 89,97 ----
  LISTNAME must be a symbol whose value is a list.
  If the value is nil, `pop' returns nil but does not actually
  change the list."
!   (list 'car
!       (list 'prog1 listname
!             (list 'setq listname (list 'cdr listname)))))
  
  (defmacro when (cond &rest body)
    "If COND yields non-nil, do BODY, else return nil."



reply via email to

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