emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lispref/lists.texi
Date: Tue, 04 Feb 2003 09:48:07 -0500

Index: emacs/lispref/lists.texi
diff -c emacs/lispref/lists.texi:1.32 emacs/lispref/lists.texi:1.33
*** emacs/lispref/lists.texi:1.32       Sat Sep  8 13:43:49 2001
--- emacs/lispref/lists.texi    Tue Feb  4 09:47:54 2003
***************
*** 1,7 ****
  @c -*-texinfo-*-
  @c This is part of the GNU Emacs Lisp Reference Manual.
  @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999
! @c   Free Software Foundation, Inc. 
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/lists
  @node Lists, Sequences Arrays Vectors, Strings and Characters, Top
--- 1,7 ----
  @c -*-texinfo-*-
  @c This is part of the GNU Emacs Lisp Reference Manual.
  @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999
! @c   Free Software Foundation, Inc.
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/lists
  @node Lists, Sequences Arrays Vectors, Strings and Characters, Top
***************
*** 498,504 ****
  It is new in Emacs 21.
  
  @example
! (setq l '(a b)) 
       @result{} (a b)
  (push 'c l)
       @result{} (c a b)
--- 498,504 ----
  It is new in Emacs 21.
  
  @example
! (setq l '(a b))
       @result{} (a b)
  (push 'c l)
       @result{} (c a b)
***************
*** 738,744 ****
  @cindex destructive list operations
  
    You can modify the @sc{car} and @sc{cdr} contents of a cons cell with the
! primitives @code{setcar} and @code{setcdr}.  We call these ``destructive'' 
  operations because they change existing list structure.
  
  @cindex CL address@hidden vrs @code{setcar}
--- 738,744 ----
  @cindex destructive list operations
  
    You can modify the @sc{car} and @sc{cdr} contents of a cons cell with the
! primitives @code{setcar} and @code{setcdr}.  We call these ``destructive''
  operations because they change existing list structure.
  
  @cindex CL address@hidden vrs @code{setcar}




reply via email to

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