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: Sat, 05 Jan 2002 14:31:24 -0500

Index: emacs/lispintro/emacs-lisp-intro.texi
diff -c emacs/lispintro/emacs-lisp-intro.texi:1.8 
emacs/lispintro/emacs-lisp-intro.texi:1.9
*** emacs/lispintro/emacs-lisp-intro.texi:1.8   Thu Jan  3 12:44:51 2002
--- emacs/lispintro/emacs-lisp-intro.texi       Sat Jan  5 14:31:23 2002
***************
*** 10,16 ****
  
  @c ---------
  @c <<<< For hard copy printing, this file is now
! @c      set for smallbook, which works for all sizes 
  @c      of paper, and with Postscript figures >>>>
  @smallbook
  @clear largebook
--- 10,16 ----
  
  @c ---------
  @c <<<< For hard copy printing, this file is now
! @c      set for smallbook, which works for all sizes
  @c      of paper, and with Postscript figures >>>>
  @smallbook
  @clear largebook
***************
*** 21,28 ****
  
  @comment %**end of header
  
! @set edition-number 2.04
! @set update-date 2001 Dec 17
  
  @ignore
   ## Summary of shell commands to create various output formats:
--- 21,28 ----
  
  @comment %**end of header
  
! @set edition-number 2.05
! @set update-date 2001 Jan 5
  
  @ignore
   ## Summary of shell commands to create various output formats:
***************
*** 231,245 ****
  
  Edition @value{edition-number}, @value{update-date}
  
! Copyright (C) 1990, '91, '92, '93, '94, '95, '97, 2001 Free Software 
Foundation, Inc.
  
  Permission is granted to copy, distribute and/or modify this document
  under the terms of the GNU Free Documentation License, Version 1.1 or
  any later version published by the Free Software Foundation; with the
  Invariant Section being the Preface, with the Front-Cover Texts being
! no Front-Cover Texts, and with the Back-Cover Texts being no
! Back-Cover Texts.  A copy of the license is included in the section
! entitled ``GNU Free Documentation License''.
  @end ifinfo
  
  @c half title; two lines here, so do not use `shorttitlepage'
--- 231,249 ----
  
  Edition @value{edition-number}, @value{update-date}
  
! Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1997, 2001, 2002 Free 
Software Foundation, Inc.
  
  Permission is granted to copy, distribute and/or modify this document
  under the terms of the GNU Free Documentation License, Version 1.1 or
  any later version published by the Free Software Foundation; with the
  Invariant Section being the Preface, with the Front-Cover Texts being
! ``A GNU Manual'', and with the Back-Cover Texts as in (a) below.  A
! copy of the license is included in the section entitled ``GNU Free
! Documentation License''.
! 
! (a) The FSF's Back-Cover Text is: ``You have freedom to copy and
! modify this GNU Manual, like GNU software.  Copies published by the
! Free Software Foundation raise funds for GNU development.''
  @end ifinfo
  
  @c half title; two lines here, so do not use `shorttitlepage'
***************
*** 264,270 ****
  
  @page
  @vskip 0pt plus 1filll
! Copyright @copyright{} 1990, '91, '92, '93, '94, '95, '97, 2001 Free Software 
Foundation, Inc.
  @sp 2
  
  Published by the Free Software Foundation, address@hidden
--- 268,274 ----
  
  @page
  @vskip 0pt plus 1filll
! Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995, 1997, 2001, 2002 
Free Software Foundation, Inc.
  @sp 2
  
  Published by the Free Software Foundation, address@hidden
***************
*** 280,288 ****
  under the terms of the GNU Free Documentation License, Version 1.1 or
  any later version published by the Free Software Foundation; with the
  Invariant Section being the Preface, with the Front-Cover Texts being
! no Front-Cover Texts, and with the Back-Cover Texts being no
! Back-Cover Texts.  A copy of the license is included in the section
! entitled ``GNU Free Documentation License''.
  @end titlepage
  
  @iftex
--- 284,296 ----
  under the terms of the GNU Free Documentation License, Version 1.1 or
  any later version published by the Free Software Foundation; with the
  Invariant Section being the Preface, with the Front-Cover Texts being
! ``A GNU Manual'', and with the Back-Cover Texts as in (a) below.  A
! copy of the license is included in the section entitled ``GNU Free
! Documentation License''.
! 
! (a) The FSF's Back-Cover Text is: ``You have freedom to copy and
! modify this GNU Manual, like GNU software.  Copies published by the
! Free Software Foundation raise funds for GNU development.''
  @end titlepage
  
  @iftex
***************
*** 2904,2910 ****
  (switch-to-buffer (other-buffer (current-buffer) t))
  @end smallexample
  
! @noindent
  In this case, the first argument to @code{other-buffer} tells it which
  buffer to skip---the current one---and the second argument tells
  @code{other-buffer} it is OK to switch to a visible buffer.
--- 2912,2918 ----
  (switch-to-buffer (other-buffer (current-buffer) t))
  @end smallexample
  
! @c noindent
  In this case, the first argument to @code{other-buffer} tells it which
  buffer to skip---the current one---and the second argument tells
  @code{other-buffer} it is OK to switch to a visible buffer.
***************
*** 9854,9860 ****
  a simple @code{setq} such as @code{(setq count (1+ count))}, where
  @code{1+} is a built-in function in Emacs Lisp that adds 1 to its
  argument.  (The expression @address@hidden(1+ count)}} has the same result as
! @code{(+ count 1)}, but is easier for a human to read.)
  
  @need 1250
  The template for a @code{while} loop controlled by an incrementing
--- 9862,9868 ----
  a simple @code{setq} such as @code{(setq count (1+ count))}, where
  @code{1+} is a built-in function in Emacs Lisp that adds 1 to its
  argument.  (The expression @address@hidden(1+ count)}} has the same result as
! @address@hidden(+ count 1)}}, but is easier for a human to read.)
  
  @need 1250
  The template for a @code{while} loop controlled by an incrementing



reply via email to

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