emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lispintro/emacs-lisp-intro.texi


From: Robert J . Chassell
Subject: [Emacs-diffs] Changes to emacs/lispintro/emacs-lisp-intro.texi
Date: Tue, 05 Oct 2004 12:55:02 -0400

Index: emacs/lispintro/emacs-lisp-intro.texi
diff -c emacs/lispintro/emacs-lisp-intro.texi:1.26 
emacs/lispintro/emacs-lisp-intro.texi:1.27
*** emacs/lispintro/emacs-lisp-intro.texi:1.26  Sun Sep  5 15:44:28 2004
--- emacs/lispintro/emacs-lisp-intro.texi       Tue Oct  5 16:47:54 2004
***************
*** 1,6 ****
! @c \input texinfo                                  @c -*-texinfo-*-
  @comment %**start of header
  @setfilename ../info/eintr
  @c sethtmlfilename emacs-lisp-intro.html
  @settitle Programming in Emacs Lisp
  @syncodeindex vr cp
--- 1,7 ----
! \input texinfo                                  @c -*-texinfo-*-
  @comment %**start of header
  @setfilename ../info/eintr
+ @c setfilename emacs-lisp-intro.info
  @c sethtmlfilename emacs-lisp-intro.html
  @settitle Programming in Emacs Lisp
  @syncodeindex vr cp
***************
*** 21,28 ****
  
  @comment %**end of header
  
! @set edition-number 2.12
! @set update-date 2003 Nov 19
  
  @ignore
   ## Summary of shell commands to create various output formats:
--- 22,29 ----
  
  @comment %**end of header
  
! @set edition-number 2.13
! @set update-date 2004 Oct  5
  
  @ignore
   ## Summary of shell commands to create various output formats:
***************
*** 61,66 ****
--- 62,69 ----
        ## View Info output with standalone reader
        info emacs-lisp-intro.info
  
+  ## popd
+ 
  @end ignore
  
  @c ================ Included Figures ================
***************
*** 180,186 ****
  Edition @value{edition-number}, @value{update-date}
  @sp 1
  Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995, 1997, 2001,
! 2002, 2003 Free Software Foundation, Inc.
  @sp 1
  
  @iftex
--- 183,189 ----
  Edition @value{edition-number}, @value{update-date}
  @sp 1
  Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995, 1997, 2001,
! 2002, 2003, 2004 Free Software Foundation, Inc.
  @sp 1
  
  @iftex
***************
*** 1050,1062 ****
  @chapter List Processing
  
  To the untutored eye, Lisp is a strange programming language.  In Lisp
! code there are parentheses everywhere.  Some people even claim that the
! name stands for `Lots of Isolated Silly Parentheses'.  But the claim is
! unwarranted.  Lisp stands for LISt Processing, and the programming
! language handles @emph{lists} (and lists of lists) by putting them
! between parentheses.  The parentheses mark the boundaries of the list.
! Sometimes a list is preceded by a single apostrophe or quotation mark,
! @samp{'}.  Lists are the basis of Lisp.
  
  @menu
  * Lisp Lists::                  What are lists?
--- 1053,1068 ----
  @chapter List Processing
  
  To the untutored eye, Lisp is a strange programming language.  In Lisp
! code there are parentheses everywhere.  Some people even claim that
! the name stands for `Lots of Isolated Silly Parentheses'.  But the
! claim is unwarranted.  Lisp stands for LISt Processing, and the
! programming language handles @emph{lists} (and lists of lists) by
! putting them between parentheses.  The parentheses mark the boundaries
! of the list.  Sometimes a list is preceded by a single apostrophe or
! quotation mark, @samp{'address@hidden single apostrophe or quotation
! mark is an abbreviation for the function @code{quote}; you need not
! think about functions now; functions are defined in @ref{Making
! Errors, , Generate an Error Message}.}  Lists are the basis of Lisp.
  
  @menu
  * Lisp Lists::                  What are lists?
***************
*** 2135,2141 ****
  
  @need 1250
  As usual, the error message tries to be helpful and makes sense after you
! learn how to read it.
  
  The first part of the error message is straightforward; it says
  @samp{wrong type argument}.  Next comes the mysterious jargon word
--- 2141,2148 ----
  
  @need 1250
  As usual, the error message tries to be helpful and makes sense after you
! learn how to read address@hidden@code{(quote hello)} is an expansion of
! the abbreviation @code{'hello}.}
  
  The first part of the error message is straightforward; it says
  @samp{wrong type argument}.  Next comes the mysterious jargon word
***************
*** 20638,20643 ****
--- 20645,20651 ----
  @end smallexample
  @end ifnottex
  
+ @c qqq
  @ignore
  Graphing Definitions Re-listed
  
***************
*** 21137,21142 ****
--- 21145,21151 ----
      (print-X-axis numbers-list horizontal-step)))
  @end group
  @end smallexample
+ @c qqq
  @end ignore
  
  @page




reply via email to

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