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: Luc Teirlinck
Subject: [Emacs-diffs] Changes to emacs/lispref/lists.texi
Date: Wed, 23 Jun 2004 12:36:12 -0400

Index: emacs/lispref/lists.texi
diff -c emacs/lispref/lists.texi:1.46 emacs/lispref/lists.texi:1.47
*** emacs/lispref/lists.texi:1.46       Sat May 22 22:04:56 2004
--- emacs/lispref/lists.texi    Wed Jun 23 16:27:49 2004
***************
*** 1,6 ****
  @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
--- 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 2003, 2004
  @c   Free Software Foundation, Inc.
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/lists
***************
*** 348,355 ****
  @end example
  @end defmac
  
- @anchor{Definition of nth}
  @defun nth n list
  This function returns the @var{n}th element of @var{list}.  Elements
  are numbered starting with zero, so the @sc{car} of @var{list} is
  element number zero.  If the length of @var{list} is @var{n} or less,
--- 349,356 ----
  @end example
  @end defmac
  
  @defun nth n list
+ @anchor{Definition of nth}
  This function returns the @var{n}th element of @var{list}.  Elements
  are numbered starting with zero, so the @sc{car} of @var{list} is
  element number zero.  If the length of @var{list} is @var{n} or less,
***************
*** 413,420 ****
  if @var{n} is bigger than @var{list}'s length.
  @end defun
  
- @anchor{Definition of safe-length}
  @defun safe-length list
  This function returns the length of @var{list}, with no risk of either
  an error or an infinite loop.  It generally returns the number of
  distinct cons cells in the list.  However, for circular lists,
--- 414,421 ----
  if @var{n} is bigger than @var{list}'s length.
  @end defun
  
  @defun safe-length list
+ @anchor{Definition of safe-length}
  This function returns the length of @var{list}, with no risk of either
  an error or an infinite loop.  It generally returns the number of
  distinct cons cells in the list.  However, for circular lists,




reply via email to

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