emacs-diffs
[Top][All Lists]
Advanced

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

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


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

Index: emacs/lispref/vol1.texi
diff -c emacs/lispref/vol1.texi:1.1 emacs/lispref/vol1.texi:1.2
*** emacs/lispref/vol1.texi:1.1 Fri Nov 16 08:13:15 2001
--- emacs/lispref/vol1.texi     Tue Feb  4 09:47:54 2003
***************
*** 23,29 ****
  @c \overfullrule=0pt
  @c end tex
  
! @c Start volume 1 chapter numbering on chapter 1; 
  @c this must be listed as chapno 0.
  @tex
  \global\chapno=0
--- 23,29 ----
  @c \overfullrule=0pt
  @c end tex
  
! @c Start volume 1 chapter numbering on chapter 1;
  @c this must be listed as chapno 0.
  @tex
  \global\chapno=0
***************
*** 87,104 ****
  @c -----
  @c [163] [164] [165] [166]) (loading.texi Chapter 13 [167] [168] [169]
  @c Overfull \hbox (20.5428pt too wide) in paragraph at lines 131--131
! @c address@hidden 
  @c setenv EMAC-SLOAD-PATH .:/user/bil/emacs:/usr/local/lib/emacs/lisp[]
  @c -----
  @c (minibuf.texi Chapter 17 [206] [207] [208] [209] [210] [211] [212] [213]
  @c [214] [215]
  @c Overfull \hbox (2.09094pt too wide) in paragraph at lines 550--560
! @c @texttt map[] @textrm if @textsl require-match @textrm is 
! @c  @texttt address@hidden , or else with the keymap @texttt minibuffer- 
  @c -----
  @c (locals.texi Appendix @char 68 [533] [534]
  @c Underfull \hbox (badness 2512) in paragraph at lines 4--4
! @c address@hidden Appendix DStandard Buffer-Local 
  
  @c -------------------------------------------------------------------
  
--- 87,104 ----
  @c -----
  @c [163] [164] [165] [166]) (loading.texi Chapter 13 [167] [168] [169]
  @c Overfull \hbox (20.5428pt too wide) in paragraph at lines 131--131
! @c address@hidden
  @c setenv EMAC-SLOAD-PATH .:/user/bil/emacs:/usr/local/lib/emacs/lisp[]
  @c -----
  @c (minibuf.texi Chapter 17 [206] [207] [208] [209] [210] [211] [212] [213]
  @c [214] [215]
  @c Overfull \hbox (2.09094pt too wide) in paragraph at lines 550--560
! @c @texttt map[] @textrm if @textsl require-match @textrm is
! @c  @texttt address@hidden , or else with the keymap @texttt minibuffer-
  @c -----
  @c (locals.texi Appendix @char 68 [533] [534]
  @c Underfull \hbox (badness 2512) in paragraph at lines 4--4
! @c address@hidden Appendix DStandard Buffer-Local
  
  @c -------------------------------------------------------------------
  
***************
*** 186,196 ****
  @sp 2
  @center @titlefont{Volume 1}
  @sp 3
! @center by Bil Lewis, Dan LaLiberte, 
  @center and the GNU Manual Group
  @page
  @vskip 0pt plus 1filll
! Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995 Free Software 
Foundation, Inc. 
  
  @sp 2
  Edition 2.4 @*
--- 186,196 ----
  @sp 2
  @center @titlefont{Volume 1}
  @sp 3
! @center by Bil Lewis, Dan LaLiberte,
  @center and the GNU Manual Group
  @page
  @vskip 0pt plus 1filll
! Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995 Free Software 
Foundation, Inc.
  
  @sp 2
  Edition 2.4 @*
***************
*** 325,332 ****
  
  Format of Descriptions
  
! * A Sample Function Description::       
! * A Sample Variable Description::   
  
  Lisp Data Types
  
--- 325,332 ----
  
  Format of Descriptions
  
! * A Sample Function Description::
! * A Sample Variable Description::
  
  Lisp Data Types
  
***************
*** 435,441 ****
  * Intro Eval::              Evaluation in the scheme of things.
  * Eval::                    How to invoke the Lisp interpreter explicitly.
  * Forms::                   How various sorts of objects are evaluated.
! * Quoting::                 Avoiding evaluation (to put constants in 
                                the program).
  
  Kinds of Forms
--- 435,441 ----
  * Intro Eval::              Evaluation in the scheme of things.
  * Eval::                    How to invoke the Lisp interpreter explicitly.
  * Forms::                   How various sorts of objects are evaluated.
! * Quoting::                 Avoiding evaluation (to put constants in
                                the program).
  
  Kinds of Forms
***************
*** 488,498 ****
  
  Scoping Rules for Variable Bindings
  
! * Scope::                   Scope means where in the program a value 
                                is visible.  Comparison with other languages.
  * Extent::                  Extent means how long in time a value exists.
  * Impl of Scope::           Two ways to implement dynamic scoping.
! * Using Scoping::           How to use dynamic scoping carefully and 
                                avoid problems.
  
  Buffer-Local Variables
--- 488,498 ----
  
  Scoping Rules for Variable Bindings
  
! * Scope::                   Scope means where in the program a value
                                is visible.  Comparison with other languages.
  * Extent::                  Extent means how long in time a value exists.
  * Impl of Scope::           Two ways to implement dynamic scoping.
! * Using Scoping::           How to use dynamic scoping carefully and
                                avoid problems.
  
  Buffer-Local Variables
***************
*** 510,520 ****
  * Defining Functions::      Lisp expressions for defining functions.
  * Calling Functions::       How to use an existing function.
  * Mapping Functions::       Applying a function to each element of a list, 
etc.
! * Anonymous Functions::     Lambda-expressions are functions with no names.   
 
  * Function Cells::          Accessing or setting the function definition
                                of a symbol.
  * Related Topics::          Cross-references to specific Lisp primitives
!                               that have a special bearing on how 
                                functions work.
  
  Lambda Expressions
--- 510,520 ----
  * Defining Functions::      Lisp expressions for defining functions.
  * Calling Functions::       How to use an existing function.
  * Mapping Functions::       Applying a function to each element of a list, 
etc.
! * Anonymous Functions::     Lambda-expressions are functions with no names.
  * Function Cells::          Accessing or setting the function definition
                                of a symbol.
  * Related Topics::          Cross-references to specific Lisp primitives
!                               that have a special bearing on how
                                functions work.
  
  Lambda Expressions
***************
*** 550,559 ****
  
  * Debugger::                How the Emacs Lisp debugger is implemented.
  * Syntax Errors::           How to find syntax errors.
! * Compilation Errors::      How to find errors that show up in 
                                byte compilation.
  * Edebug::                  A source-level Emacs Lisp debugger.
!                                 
  The Lisp Debugger
  
  * Error Debugging::         Entering the debugger when an error happens.
--- 550,559 ----
  
  * Debugger::                How the Emacs Lisp debugger is implemented.
  * Syntax Errors::           How to find syntax errors.
! * Compilation Errors::      How to find errors that show up in
                                byte compilation.
  * Edebug::                  A source-level Emacs Lisp debugger.
! 
  The Lisp Debugger
  
  * Error Debugging::         Entering the debugger when an error happens.
***************
*** 572,581 ****
  Reading and Printing Lisp Objects
  
  * Streams Intro::           Overview of streams, reading and printing.
! * Input Streams::           Various data types that can be used as 
                                input streams.
  * Input Functions::         Functions to read Lisp objects from text.
! * Output Streams::          Various data types that can be used as 
                                output streams.
  * Output Functions::        Functions to print Lisp objects as text.
  
--- 572,581 ----
  Reading and Printing Lisp Objects
  
  * Streams Intro::           Overview of streams, reading and printing.
! * Input Streams::           Various data types that can be used as
                                input streams.
  * Input Functions::         Functions to read Lisp objects from text.
! * Output Streams::          Various data types that can be used as
                                output streams.
  * Output Functions::        Functions to print Lisp objects as text.
  
***************
*** 647,653 ****
  * Major Modes::             Defining major modes.
  * Minor Modes::             Defining minor modes.
  * Mode Line Format::        Customizing the text that appears in the mode 
line.
! * Hooks::                   How to use hooks; how to write code that 
                                provides hooks.
  
  Major Modes
--- 647,653 ----
  * Major Modes::             Defining major modes.
  * Minor Modes::             Defining minor modes.
  * Mode Line Format::        Customizing the text that appears in the mode 
line.
! * Hooks::                   How to use hooks; how to write code that
                                provides hooks.
  
  Major Modes
***************
*** 707,713 ****
  * File Name Components::    The directory part of a file name, and the rest.
  * Directory Names::         A directory's name as a directory
                                is different from its name as a file.
! * Relative File Names::     Some file names are relative to a 
                                current directory.
  * File Name Expansion::     Converting relative file names to absolute ones.
  * Unique File Names::       Generating names for temporary files.
--- 707,713 ----
  * File Name Components::    The directory part of a file name, and the rest.
  * Directory Names::         A directory's name as a directory
                                is different from its name as a file.
! * Relative File Names::     Some file names are relative to a
                                current directory.
  * File Name Expansion::     Converting relative file names to absolute ones.
  * Unique File Names::       Generating names for temporary files.
***************
*** 715,731 ****
  
  Backups and Auto-Saving
  
! * Backup Files::            How backup files are made; how their names 
                                are chosen.
  * Auto-Saving::             How auto-save files are made; how their
                                names are chosen.
! * Reverting::               @code{revert-buffer}, and how to customize 
                                what it does.
  
  Backup Files
  
  * Making Backups::          How Emacs makes backup files, and when.
! * Rename or Copy::          Two alternatives: renaming the old file 
                                or copying it.
  * Numbered Backups::        Keeping multiple backups for each source file.
  * Backup Names::            How backup file names are computed; customization.
--- 715,731 ----
  
  Backups and Auto-Saving
  
! * Backup Files::            How backup files are made; how their names
                                are chosen.
  * Auto-Saving::             How auto-save files are made; how their
                                names are chosen.
! * Reverting::               @code{revert-buffer}, and how to customize
                                what it does.
  
  Backup Files
  
  * Making Backups::          How Emacs makes backup files, and when.
! * Rename or Copy::          Two alternatives: renaming the old file
                                or copying it.
  * Numbered Backups::        Keeping multiple backups for each source file.
  * Backup Names::            How backup file names are computed; customization.
***************
*** 759,765 ****
                                and choosing a window for it.
  * Window Point::            Each window has its own location of point.
  * Window Start::            The display-start position controls which text
!                               is on-screen in the window. 
  * Vertical Scrolling::      Moving text up and down in the window.
  * Horizontal Scrolling::    Moving text sideways on the window.
  * Size of Window::          Accessing the size of a window.
--- 759,765 ----
                                and choosing a window for it.
  * Window Point::            Each window has its own location of point.
  * Window Start::            The display-start position controls which text
!                               is on-screen in the window.
  * Vertical Scrolling::      Moving text up and down in the window.
  * Horizontal Scrolling::    Moving text sideways on the window.
  * Size of Window::          Accessing the size of a window.
***************
*** 815,821 ****
  * Predicates on Markers::   Testing whether an object is a marker.
  * Creating Markers::        Making empty markers or markers at certain places.
  * Information from Markers::  Finding the marker's buffer or character
!                                 position. 
  * Changing Markers::        Moving the marker to a new buffer or position.
  * The Mark::                How ``the mark'' is implemented with a marker.
  * The Region::              How to access ``the region''.
--- 815,821 ----
  * Predicates on Markers::   Testing whether an object is a marker.
  * Creating Markers::        Making empty markers or markers at certain places.
  * Information from Markers::  Finding the marker's buffer or character
!                                 position.
  * Changing Markers::        Moving the marker to a new buffer or position.
  * The Mark::                How ``the mark'' is implemented with a marker.
  * The Region::              How to access ``the region''.
***************
*** 841,847 ****
  * Substitution::            Replacing a given character wherever it appears.
  * Registers::               How registers are implemented.  Accessing
                                the text or position stored in a register.
!                               
  The Kill Ring
  
  * Kill Ring Concepts::      What text looks like in the kill ring.
--- 841,847 ----
  * Substitution::            Replacing a given character wherever it appears.
  * Registers::               How registers are implemented.  Accessing
                                the text or position stored in a register.
! 
  The Kill Ring
  
  * Kill Ring Concepts::      What text looks like in the kill ring.




reply via email to

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