emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108390: * doc/misc/cl.texi, doc/m


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108390: * doc/misc/cl.texi, doc/misc/dired-x.texi: Nuke hand-written node pointers.
Date: Fri, 02 Nov 2012 02:30:34 -0000
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108390
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2012-05-26 19:30:29 -0700
message:
  * doc/misc/cl.texi, doc/misc/dired-x.texi: Nuke hand-written node pointers.
  Some associated fixes, including not messing with chapno in cl.texi.
modified:
  doc/misc/ChangeLog
  doc/misc/cl.texi
  doc/misc/dired-x.texi
=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2012-05-27 01:06:44 +0000
+++ b/doc/misc/ChangeLog        2012-05-27 02:30:29 +0000
@@ -1,3 +1,8 @@
+2012-05-27  Glenn Morris  <address@hidden>
+
+       * cl.texi, dired-x.texi: Nuke hand-written node pointers.
+       Some associated fixes, including not messing with chapno in cl.texi.
+
 2012-05-27  Bastien Guerry  <address@hidden>
 
        * org.texi (Durations and time values): Fix typo.

=== modified file 'doc/misc/cl.texi'
--- a/doc/misc/cl.texi  2012-02-29 08:05:16 +0000
+++ b/doc/misc/cl.texi  2012-05-27 02:30:29 +0000
@@ -45,16 +45,10 @@
 
 @contents
 
address@hidden Top, Overview, (dir), (dir)
address@hidden Introduction
-
address@hidden
-This document describes a set of Emacs Lisp facilities borrowed from
-Common Lisp.  All the facilities are described here in detail.  While
-this document does not assume any prior knowledge of Common Lisp, it
-does assume a basic familiarity with Emacs Lisp.
-
 @ifnottex
address@hidden Top
address@hidden GNU Emacs Common Lisp Emulation
+
 @insertcopying
 @end ifnottex
 
@@ -82,12 +76,15 @@
 * Variable Index::
 @end menu
 
address@hidden Overview, Program Structure, Top, Top
address@hidden
address@hidden Overview
 @chapter Overview
address@hidden ifnottex
 
 @noindent
+This document describes a set of Emacs Lisp facilities borrowed from
+Common Lisp.  All the facilities are described here in detail.  While
+this document does not assume any prior knowledge of Common Lisp, it
+does assume a basic familiarity with Emacs Lisp.
+
 Common Lisp is a huge language, and Common Lisp systems tend to be
 massive and extremely complex.  Emacs Lisp, by contrast, is rather
 minimalist in the choice of Lisp features it offers the programmer.
@@ -150,7 +147,7 @@
 * Naming Conventions::   Notes on CL function names
 @end menu
 
address@hidden Usage, Organization, Overview, Overview
address@hidden Usage
 @section Usage
 
 @noindent
@@ -166,7 +163,7 @@
 in your @file{.emacs} file.  But it's a good idea, for portability,
 to @code{(require 'cl)} in your code even if you do this.
 
address@hidden Organization, Installation, Usage, Overview
address@hidden Organization
 @section Organization
 
 @noindent
@@ -212,7 +209,7 @@
 multiple-values feature.  This file is obsolete and should not be used
 in new code.  @xref{Old CL Compatibility}.
 
address@hidden Installation, Naming Conventions, Organization, Overview
address@hidden Installation
 @section Installation
 
 @noindent
@@ -226,7 +223,7 @@
 file and put the resulting Info files into a directory in your
 @code{Info-directory-list}.
 
address@hidden Naming Conventions,  , Installation, Overview
address@hidden Naming Conventions
 @section Naming Conventions
 
 @noindent
@@ -280,11 +277,7 @@
 @noindent
 [4] Only when @var{place} is a plain variable name.
 
address@hidden
address@hidden
address@hidden iftex
-
address@hidden Program Structure, Predicates, Overview, Top
address@hidden Program Structure
 @chapter Program Structure
 
 @noindent
@@ -301,7 +294,7 @@
 @secno=1
 @end iftex
 
address@hidden Argument Lists, Time of Evaluation, Program Structure, Program 
Structure
address@hidden Argument Lists
 @section Argument Lists
 
 @noindent
@@ -525,7 +518,7 @@
 arguments and invalid keyword arguments is disabled.  By default,
 argument lists are rigorously checked.
 
address@hidden Time of Evaluation,  , Argument Lists, Program Structure
address@hidden Time of Evaluation
 @section Time of Evaluation
 
 @noindent
@@ -675,7 +668,7 @@
 @end example
 @end defspec
 
address@hidden Predicates, Control Structure, Program Structure, Top
address@hidden Predicates
 @chapter Predicates
 
 @noindent
@@ -687,7 +680,7 @@
 * Equality Predicates::  @code{equalp}
 @end menu
 
address@hidden Type Predicates, Equality Predicates, Predicates, Predicates
address@hidden Type Predicates
 @section Type Predicates
 
 @noindent
@@ -820,7 +813,7 @@
 @code{concatenate}, and @code{merge} functions take type-name
 arguments to specify the type of sequence to return.  @xref{Sequences}.
 
address@hidden Equality Predicates,  , Type Predicates, Predicates
address@hidden Equality Predicates
 @section Equality Predicates
 
 @noindent
@@ -848,7 +841,7 @@
 In Emacs, use @code{member*} and @code{assoc*} to get functions
 which use @code{eql} for comparisons.
 
address@hidden Control Structure, Macros, Predicates, Top
address@hidden Control Structure
 @chapter Control Structure
 
 @noindent
@@ -868,7 +861,7 @@
 * Multiple Values::        @code{values}, @code{multiple-value-bind}, etc.
 @end menu
 
address@hidden Assignment, Generalized Variables, Control Structure, Control 
Structure
address@hidden Assignment
 @section Assignment
 
 @noindent
@@ -905,7 +898,7 @@
 @code{psetq} always returns @code{nil}.
 @end defspec
 
address@hidden Generalized Variables, Variable Bindings, Assignment, Control 
Structure
address@hidden Generalized Variables
 @section Generalized Variables
 
 @noindent
@@ -934,7 +927,7 @@
 * Customizing Setf::   @code{define-modify-macro}, @code{defsetf}, 
@code{define-setf-method}
 @end menu
 
address@hidden Basic Setf, Modify Macros, Generalized Variables, Generalized 
Variables
address@hidden Basic Setf
 @subsection Basic Setf
 
 @noindent
@@ -1105,7 +1098,7 @@
 to @code{wrong-order}.
 @end defspec
 
address@hidden Modify Macros, Customizing Setf, Basic Setf, Generalized 
Variables
address@hidden Modify Macros
 @subsection Modify Macros
 
 @noindent
@@ -1316,7 +1309,7 @@
 macros are used in the processing of symbol macros;
 @pxref{Macro Bindings}.
 
address@hidden Customizing Setf,  , Modify Macros, Generalized Variables
address@hidden Customizing Setf
 @subsection Customizing Setf
 
 @noindent
@@ -1529,7 +1522,7 @@
 @secno=4
 @end iftex
 
address@hidden Variable Bindings, Conditionals, Generalized Variables, Control 
Structure
address@hidden Variable Bindings
 @section Variable Bindings
 
 @noindent
@@ -1546,7 +1539,7 @@
 * Macro Bindings::       @code{macrolet} and @code{symbol-macrolet}
 @end menu
 
address@hidden Dynamic Bindings, Lexical Bindings, Variable Bindings, Variable 
Bindings
address@hidden Dynamic Bindings
 @subsection Dynamic Bindings
 
 @noindent
@@ -1566,7 +1559,7 @@
 are ignored.
 @end defspec
 
address@hidden Lexical Bindings, Function Bindings, Dynamic Bindings, Variable 
Bindings
address@hidden Lexical Bindings
 @subsection Lexical Bindings
 
 @noindent
@@ -1680,7 +1673,7 @@
 are made sequentially in the manner of @code{let*}.
 @end defspec
 
address@hidden Function Bindings, Macro Bindings, Lexical Bindings, Variable 
Bindings
address@hidden Function Bindings
 @subsection Function Bindings
 
 @noindent
@@ -1756,7 +1749,7 @@
 @code{function} to be passed on to, say, @code{mapcar}.
 @end defspec
 
address@hidden Macro Bindings,  , Function Bindings, Variable Bindings
address@hidden Macro Bindings
 @subsection Macro Bindings
 
 @noindent
@@ -1843,7 +1836,7 @@
 works much like @code{my-dolist}.
 @end defspec
 
address@hidden Conditionals, Blocks and Exits, Variable Bindings, Control 
Structure
address@hidden Conditionals
 @section Conditionals
 
 @noindent
@@ -1917,7 +1910,7 @@
 simply returning @code{nil}.
 @end defspec
 
address@hidden Blocks and Exits, Iteration, Conditionals, Control Structure
address@hidden Blocks and Exits
 @section Blocks and Exits
 
 @noindent
@@ -1982,7 +1975,7 @@
 themselves in @code{nil} blocks.
 @end defspec
 
address@hidden Iteration, Loop Facility, Blocks and Exits, Control Structure
address@hidden Iteration
 @section Iteration
 
 @noindent
@@ -2126,7 +2119,7 @@
 @xref{Mapping over Sequences}, for some more functions for
 iterating over vectors or lists.
 
address@hidden Loop Facility, Multiple Values, Iteration, Control Structure
address@hidden Loop Facility
 @section Loop Facility
 
 @noindent
@@ -2148,7 +2141,7 @@
 * Other Clauses::         @code{with}, @code{if}, @code{initially}, 
@code{finally}
 @end menu
 
address@hidden Loop Basics, Loop Examples, Loop Facility, Loop Facility
address@hidden Loop Basics
 @subsection Loop Basics
 
 @noindent
@@ -2207,7 +2200,7 @@
 Consult the second edition of Steele's @dfn{Common Lisp, the Language},
 for additional discussion and examples of the @code{loop} macro.
 
address@hidden Loop Examples, For Clauses, Loop Basics, Loop Facility
address@hidden Loop Examples
 @subsection Loop Examples
 
 @noindent
@@ -2280,7 +2273,7 @@
 rather than some sort of triple-nested loop.  You must explicitly
 nest your @code{loop} constructs if you want nested loops.
 
address@hidden For Clauses, Iteration Clauses, Loop Examples, Loop Facility
address@hidden For Clauses
 @subsection For Clauses
 
 @noindent
@@ -2595,7 +2588,7 @@
      @result{} (1 2)
 @end example
 
address@hidden Iteration Clauses, Accumulation Clauses, For Clauses, Loop 
Facility
address@hidden Iteration Clauses
 @subsection Iteration Clauses
 
 @noindent
@@ -2654,7 +2647,7 @@
 values were @code{nil}, the loop returns @code{nil}.
 @end table
 
address@hidden Accumulation Clauses, Other Clauses, Iteration Clauses, Loop 
Facility
address@hidden Accumulation Clauses
 @subsection Accumulation Clauses
 
 @noindent
@@ -2723,7 +2716,7 @@
      @result{} (fred bob ken sue alice joe kris sunshine june)
 @end example
 
address@hidden Other Clauses,  , Accumulation Clauses, Loop Facility
address@hidden Other Clauses
 @subsection Other Clauses
 
 @noindent
@@ -2874,7 +2867,7 @@
 iterate over keymaps, overlays, intervals, frames, windows, and
 buffers are Emacs-specific extensions.
 
address@hidden Multiple Values,  , Loop Facility, Control Structure
address@hidden Multiple Values
 @section Multiple Values
 
 @noindent
@@ -2916,7 +2909,7 @@
 Since a perfect emulation is not feasible in Emacs Lisp, this
 package opts to keep it as simple and predictable as possible.
 
address@hidden Macros, Declarations, Control Structure, Top
address@hidden Macros
 @chapter Macros
 
 @noindent
@@ -2994,7 +2987,7 @@
 and @code{symbol-macrolet} forms for making ``local'' macro
 definitions.
 
address@hidden Declarations, Symbols, Macros, Top
address@hidden Declarations
 @chapter Declarations
 
 @noindent
@@ -3176,7 +3169,7 @@
 See the documentation for the optimizing byte compiler for details.
 @end table
 
address@hidden Symbols, Numbers, Declarations, Top
address@hidden Symbols
 @chapter Symbols
 
 @noindent
@@ -3188,7 +3181,7 @@
 * Creating Symbols::     @code{gensym}, @code{gentemp}
 @end menu
 
address@hidden Property Lists, Creating Symbols, Symbols, Symbols
address@hidden Property Lists
 @section Property Lists
 
 @noindent
@@ -3273,7 +3266,7 @@
 @secno=2
 @end iftex
 
address@hidden Creating Symbols,  , Property Lists, Symbols
address@hidden Creating Symbols
 @section Creating Symbols
 
 @noindent
@@ -3318,11 +3311,7 @@
 keywords as data unrelated to keyword arguments, so the
 @code{defkeyword} form has been discontinued.
 
address@hidden
address@hidden
address@hidden iftex
-
address@hidden Numbers, Sequences, Symbols, Top
address@hidden Numbers
 @chapter Numbers
 
 @noindent
@@ -3340,7 +3329,7 @@
 @secno=1
 @end iftex
 
address@hidden Predicates on Numbers, Numerical Functions, Numbers, Numbers
address@hidden Predicates on Numbers
 @section Predicates on Numbers
 
 @noindent
@@ -3377,7 +3366,7 @@
 @secno=3
 @end iftex
 
address@hidden Numerical Functions, Random Numbers, Predicates on Numbers, 
Numbers
address@hidden Numerical Functions
 @section Numerical Functions
 
 @noindent
@@ -3473,7 +3462,7 @@
 @secno=8
 @end iftex
 
address@hidden Random Numbers, Implementation Parameters, Numerical Functions, 
Numbers
address@hidden Random Numbers
 @section Random Numbers
 
 @noindent
@@ -3534,7 +3523,7 @@
 @code{random-state} object, or @code{nil} otherwise.
 @end defun
 
address@hidden Implementation Parameters,  , Random Numbers, Numbers
address@hidden Implementation Parameters
 @section Implementation Parameters
 
 @noindent
@@ -3615,11 +3604,7 @@
 @code{1.11e-16}.
 @end defvar
 
address@hidden
address@hidden
address@hidden iftex
-
address@hidden Sequences, Lists, Numbers, Top
address@hidden Sequences
 @chapter Sequences
 
 @noindent
@@ -3636,7 +3621,7 @@
 * Sorting Sequences::        @code{sort*}, @code{stable-sort}, @code{merge}
 @end menu
 
address@hidden Sequence Basics, Mapping over Sequences, Sequences, Sequences
address@hidden Sequence Basics
 @section Sequence Basics
 
 @noindent
@@ -3713,7 +3698,7 @@
 the properties of the characters copied from @var{str} into the
 result.
 
address@hidden Mapping over Sequences, Sequence Functions, Sequence Basics, 
Sequences
address@hidden Mapping over Sequences
 @section Mapping over Sequences
 
 @noindent
@@ -3851,7 +3836,7 @@
 be faster since it generates the loop as in-line code with no
 function calls.
 
address@hidden Sequence Functions, Searching Sequences, Mapping over Sequences, 
Sequences
address@hidden Sequence Functions
 @section Sequence Functions
 
 @noindent
@@ -3978,7 +3963,7 @@
 and @code{nsubstitute-if-not} functions are defined similarly.  For
 these, a @var{predicate} is given in place of the @var{old} argument.
 
address@hidden Searching Sequences, Sorting Sequences, Sequence Functions, 
Sequences
address@hidden Searching Sequences
 @section Searching Sequences
 
 @noindent
@@ -4047,7 +4032,7 @@
 function finds the @emph{rightmost} matching subsequence.
 @end defun
 
address@hidden Sorting Sequences,  , Searching Sequences, Sequences
address@hidden Sorting Sequences
 @section Sorting Sequences
 
 @defun sort* seq predicate @t{&key :key}
@@ -4106,7 +4091,7 @@
 @var{predicate}.
 @end defun
 
address@hidden Lists, Structures, Sequences, Top
address@hidden Lists
 @chapter Lists
 
 @noindent
@@ -4119,7 +4104,7 @@
 * Association Lists::             @code{assoc*}, @code{rassoc*}, @code{acons}, 
@code{pairlis}
 @end menu
 
address@hidden List Functions, Substitution of Expressions, Lists, Lists
address@hidden List Functions
 @section List Functions
 
 @noindent
@@ -4212,7 +4197,7 @@
 @secno=3
 @end iftex
 
address@hidden Substitution of Expressions, Lists as Sets, List Functions, Lists
address@hidden Substitution of Expressions
 @section Substitution of Expressions
 
 @noindent
@@ -4261,7 +4246,7 @@
 This is a destructive version of @code{sublis}.
 @end defun
 
address@hidden Lists as Sets, Association Lists, Substitution of Expressions, 
Lists
address@hidden Lists as Sets
 @section Lists as Sets
 
 @noindent
@@ -4360,7 +4345,7 @@
 also appears in @var{list2}.
 @end defun
 
address@hidden Association Lists,  , Lists as Sets, Lists
address@hidden Association Lists
 @section Association Lists
 
 @noindent
@@ -4404,11 +4389,7 @@
 @var{alist})}.
 @end defun
 
address@hidden
address@hidden
address@hidden iftex
-
address@hidden Structures, Assertions, Lists, Top
address@hidden Structures
 @chapter Structures
 
 @noindent
@@ -4738,11 +4719,7 @@
 Except as noted, the @code{defstruct} facility of this package is
 entirely compatible with that of Common Lisp.
 
address@hidden
address@hidden
address@hidden iftex
-
address@hidden Assertions, Efficiency Concerns, Structures, Top
address@hidden Assertions
 @chapter Assertions and Errors
 
 @noindent
@@ -4814,7 +4791,7 @@
 returns the result of the last @var{form}.
 @end defspec
 
address@hidden Efficiency Concerns, Common Lisp Compatibility, Assertions, Top
address@hidden Efficiency Concerns
 @appendix Efficiency Concerns
 
 @appendixsec Macros
@@ -4957,7 +4934,7 @@
 optimizing compiler removes @code{block}s which are not actually
 referenced by @code{return} or @code{return-from} inside the block.
 
address@hidden Common Lisp Compatibility, Old CL Compatibility, Efficiency 
Concerns, Top
address@hidden Common Lisp Compatibility
 @appendix Common Lisp Compatibility
 
 @noindent
@@ -5019,7 +4996,7 @@
 
 The second argument of @code{check-type} is treated differently.
 
address@hidden Old CL Compatibility, Porting Common Lisp, Common Lisp 
Compatibility, Top
address@hidden Old CL Compatibility
 @appendix Old CL Compatibility
 
 @noindent
@@ -5120,7 +5097,7 @@
 @code{floor}, @code{ceiling}, etc.; @code{cl-compat} cannot use
 these names because they conflict with Emacs built-ins.
 
address@hidden Porting Common Lisp, GNU Free Documentation License, Old CL 
Compatibility, Top
address@hidden Porting Common Lisp
 @appendix Porting Common Lisp
 
 @noindent
@@ -5326,16 +5303,16 @@
 recursion.
 @end itemize
 
address@hidden GNU Free Documentation License, Function Index, Porting Common 
Lisp, Top
address@hidden GNU Free Documentation License
 @appendix GNU Free Documentation License
 @include doclicense.texi
 
address@hidden Function Index, Variable Index, GNU Free Documentation License, 
Top
address@hidden Function Index
 @unnumbered Function Index
 
 @printindex fn
 
address@hidden Variable Index,  , Function Index, Top
address@hidden Variable Index
 @unnumbered Variable Index
 
 @printindex vr

=== modified file 'doc/misc/dired-x.texi'
--- a/doc/misc/dired-x.texi     2012-01-19 07:21:25 +0000
+++ b/doc/misc/dired-x.texi     2012-05-27 02:30:29 +0000
@@ -111,7 +111,7 @@
 
 @end ifnottex
 
address@hidden Introduction, Installation, Top, Top
address@hidden Introduction
 @chapter Introduction
 
 This documents some @emph{extra} features for GNU Emacs's Dired Mode
@@ -125,7 +125,7 @@
 @end menu
 @end ifnottex
 
address@hidden Features, Technical Details, , Introduction
address@hidden Features
 @section Features
 @cindex Features
 
@@ -157,7 +157,7 @@
 @code{dired-x-find-file} and @code{dired-x-find-file-other-window},
 respectively (@pxref{Find File At Point}).
 
address@hidden Technical Details, , Features, Introduction
address@hidden Technical Details
 @section Technical Details
 @cindex Modified functions
 @cindex @file{dired-aux.el}
@@ -173,7 +173,7 @@
 @code{dired-guess-shell-command} (@pxref{Shell Command Guessing}) to
 offer a smarter default command.
 
address@hidden Installation, Omitting Files in Dired, Introduction, Top
address@hidden Installation
 @chapter Installation
 
 @noindent
@@ -211,7 +211,7 @@
 @end menu
 @end ifnottex
 
address@hidden Optional Installation Dired Jump, Optional Installation File At 
Point, , Installation
address@hidden Optional Installation Dired Jump
 @section Optional Installation Dired Jump
 
 @cindex Autoloading @code{dired-jump} and @code{dired-jump-other-window}
@@ -232,7 +232,7 @@
 (define-key global-map "\C-x4\C-j" 'dired-jump-other-window)
 @end example
 
address@hidden Optional Installation File At Point, , Optional Installation 
Dired Jump, Installation
address@hidden Optional Installation File At Point
 @section Optional Installation File At Point
 
 @cindex Binding @code{dired-x-find-file}
@@ -251,7 +251,7 @@
             ))
 @end example
 
address@hidden Omitting Files in Dired, Local Variables, Installation, Top
address@hidden Omitting Files in Dired
 @chapter Omitting Files in Dired
 
 @cindex Omitting Files in Dired
@@ -307,7 +307,7 @@
 @end menu
 @end ifnottex
 
address@hidden Omitting Variables, Omitting Examples, , Omitting Files in Dired
address@hidden Omitting Variables
 @section Omitting Variables
 
 @cindex Customizing file omitting
@@ -403,7 +403,7 @@
 
 @end table
 
address@hidden Omitting Examples, Omitting Technical, Omitting Variables, 
Omitting Files in Dired
address@hidden Omitting Examples
 @section Examples of Omitting Various File Types
 
 @itemize @bullet
@@ -458,7 +458,7 @@
 
 @end itemize
 
address@hidden Omitting Technical, , Omitting Examples, Omitting Files in Dired
address@hidden Omitting Technical
 @section Some Technical Details of Omitting
 
 Loading @file{dired-x.el} will install Dired Omit by putting
@@ -466,7 +466,7 @@
 call @code{dired-extra-startup}, which in turn calls @code{dired-omit-startup}
 in your @code{dired-mode-hook}.
 
address@hidden Local Variables, Shell Command Guessing, Omitting Files in 
Dired, Top
address@hidden Local Variables
 @chapter Local Variables for Dired Directories
 
 @cindex Local Variables for Dired Directories
@@ -537,7 +537,7 @@
 variable.  A value of @code{nil} means to ignore any Dired Local Variables.
 @end table
 
address@hidden Shell Command Guessing, Virtual Dired, Local Variables, Top
address@hidden Shell Command Guessing
 @chapter Shell Command Guessing
 @cindex Guessing shell commands for files.
 
@@ -643,7 +643,7 @@
 History list for commands that read dired-shell commands.
 @end table
 
address@hidden Virtual Dired, Advanced Mark Commands, Shell Command Guessing, 
Top
address@hidden Virtual Dired
 @chapter Virtual Dired
 
 @cindex Virtual Dired
@@ -684,7 +684,7 @@
 The regexp is a bit more complicated than usual to exclude @file{.dired}
 local-variable files.
 
address@hidden Advanced Mark Commands, Multiple Dired Directories, Virtual 
Dired, Top
address@hidden Advanced Mark Commands
 @chapter Advanced Mark Commands
 
 @table @kbd
@@ -730,7 +730,7 @@
 @end menu
 @end ifnottex
 
address@hidden Advanced Cleaning Functions, Advanced Cleaning Variables, , 
Advanced Mark Commands
address@hidden Advanced Cleaning Functions
 @section Advanced Cleaning Functions
 
 @table @code
@@ -761,7 +761,7 @@
 and @file{*.dvi} files for deletion.
 @end table
 
address@hidden Advanced Cleaning Variables, Special Marking Function, Advanced 
Cleaning Functions, Advanced Mark Commands
address@hidden Advanced Cleaning Variables
 @section Advanced Cleaning Variables
 
 @noindent Variables used by the above cleaning commands (and in the default 
value for
@@ -800,7 +800,7 @@
 List of extensions of dispensable files created by address@hidden
 @end table
 
address@hidden Special Marking Function, , Advanced Cleaning Variables, 
Advanced Mark Commands
address@hidden Special Marking Function
 @section Special Marking Function
 
 @table @kbd
@@ -856,7 +856,7 @@
 
 @end table
 
address@hidden Multiple Dired Directories, Find File At Point, Advanced Mark 
Commands, Top
address@hidden Multiple Dired Directories
 @chapter Multiple Dired Directories and Non-Dired Commands
 
 @cindex Multiple Dired directories
@@ -876,8 +876,8 @@
 Dired buffers, is like @code{shell-command}, but it runs with
 @code{default-directory} bound to the current Dired directory.
 
address@hidden Find File At Point, Miscellaneous Commands, Multiple Dired 
Directories, Top
address@hidden Find File At Point
address@hidden Find File At Point
address@hidden Find File At Point
 @cindex Visiting a file mentioned in a buffer
 @cindex Finding a file at point
 
@@ -952,7 +952,7 @@
 @code{find-file-other-window}.  See @xref{Optional Installation File At Point}.
 @end table
 
address@hidden Miscellaneous Commands, Bugs, Find File At Point, Top
address@hidden Miscellaneous Commands
 @chapter Miscellaneous Commands
 
 Miscellaneous features not fitting anywhere else:
@@ -1082,7 +1082,7 @@
 info.
 @end table
 
address@hidden Bugs, GNU Free Documentation License, Miscellaneous Commands, Top
address@hidden Bugs
 @chapter Bugs
 @cindex Bugs
 
@@ -1090,23 +1090,23 @@
 If you encounter a bug in this package, or wish to suggest an
 enhancement, then please use @kbd{M-x report-emacs-bug} to report it.
 
address@hidden GNU Free Documentation License, Concept Index, Bugs, Top
address@hidden GNU Free Documentation License
 @appendix GNU Free Documentation License
 @include doclicense.texi
 
address@hidden     Concept Index, Command Index, GNU Free Documentation 
License, Top
address@hidden     Concept Index
 @unnumbered Concept Index
 @printindex cp
 
address@hidden     Command Index, Key Index, Concept Index, Top
address@hidden     Command Index
 @unnumbered Function Index
 @printindex fn
 
address@hidden     Key Index, Variable Index, Command Index, Top
address@hidden     Key Index
 @unnumbered Key Index
 @printindex ky
 
address@hidden     Variable Index,  , Key Index, Top
address@hidden     Variable Index
 @unnumbered Variable Index
 @printindex vr
 


reply via email to

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