diff man/lispref/searching.texi @ 5791:9fae6227ede5

Silence texinfo 5.2 warnings, primarily by adding next, prev, and up pointers to all nodes. See xemacs-patches message with ID <5315f7bf.sHpFD7lXYR05GH6E%james@xemacs.org>.
author Jerry James <james@xemacs.org>
date Thu, 27 Mar 2014 08:59:03 -0600
parents 3df910176b6a
children
line wrap: on
line diff
--- a/man/lispref/searching.texi	Mon Jan 27 17:52:33 2014 +0100
+++ b/man/lispref/searching.texi	Thu Mar 27 08:59:03 2014 -0600
@@ -28,7 +28,7 @@
   The @samp{skip-chars@dots{}} functions also perform a kind of searching.
 @xref{Skipping Characters}.
 
-@node String Search
+@node String Search, Regular Expressions, Searching and Matching, Searching and Matching
 @section Searching for Strings
 @cindex string search
 
@@ -153,7 +153,7 @@
 beginning of the match.
 @end deffn
 
-@node Regular Expressions
+@node Regular Expressions, Regexp Search, String Search, Searching and Matching
 @section Regular Expressions
 @cindex regular expression
 @cindex regexp
@@ -184,7 +184,7 @@
 * Regexp Example::          Illustrates regular expression syntax.
 @end menu
 
-@node Syntax of Regexps
+@node Syntax of Regexps, Char Classes, Regular Expressions, Regular Expressions
 @subsection Syntax of Regular Expressions
 
   Regular expressions have a syntax in which a few characters are
@@ -610,7 +610,7 @@
 @end example
 @end defun
 
-@node Char Classes
+@node Char Classes, Regexp Example, Syntax of Regexps, Regular Expressions
 @subsection Char Classes
 
 These are the predefined character classes available within regular
@@ -665,7 +665,7 @@
 letters @samp{a-F} and @samp{A-F}.
 @end table
 
-@node Regexp Example
+@node Regexp Example,  , Char Classes, Regular Expressions
 @subsection Complex Regexp Example
 
   Here is a complicated regexp, used by XEmacs to recognize the end of a
@@ -727,7 +727,7 @@
 beyond the minimum needed to end a sentence.
 @end table
 
-@node Regexp Search
+@node Regexp Search, POSIX Regexps, Regular Expressions, Searching and Matching
 @section Regular Expression Searching
 @cindex regular expression searching
 @cindex regexp searching
@@ -962,7 +962,7 @@
 @end example
 @end defun
 
-@node POSIX Regexps
+@node POSIX Regexps, Search and Replace, Regexp Search, Searching and Matching
 @section POSIX Regular Expression Searching
 
   The usual regular expression functions do backtracking when necessary
@@ -1081,7 +1081,7 @@
 @end defopt
 @end ignore
 
-@node Search and Replace
+@node Search and Replace, Match Data, POSIX Regexps, Searching and Matching
 @section Search and Replace
 @cindex replacement
 
@@ -1175,7 +1175,7 @@
 Display some help, then ask again.
 @end table
 
-@node Match Data
+@node Match Data, Searching and Case, Search and Replace, Searching and Matching
 @section The Match Data
 @cindex match data
 
@@ -1207,7 +1207,7 @@
 * Saving Match Data::     Saving and restoring the match data.
 @end menu
 
-@node Simple Match Data
+@node Simple Match Data, Replacing Match, Match Data, Match Data
 @subsection Simple Match Data Access
 
   This section explains how to use the match data to find out what was
@@ -1330,7 +1330,7 @@
 (In this case, the index returned is a buffer position; the first
 character of the buffer counts as 1.)
 
-@node Replacing Match
+@node Replacing Match, Entire Match Data, Simple Match Data, Match Data
 @subsection Replacing the Text That Matched
 
   This function replaces the text matched by the last search with
@@ -1432,7 +1432,7 @@
 @end defun
 
 
-@node Entire Match Data
+@node Entire Match Data, Saving Match Data, Replacing Match, Match Data
 @subsection Accessing the Entire Match Data
 
   The functions @code{match-data} and @code{set-match-data} read or
@@ -1498,7 +1498,7 @@
 @code{store-match-data} is an alias for @code{set-match-data}.
 @end defun
 
-@node Saving Match Data
+@node Saving Match Data,  , Entire Match Data, Match Data
 @subsection Saving and Restoring the Match Data
 
   When you call a function that may do a search, you may need to save
@@ -1553,7 +1553,7 @@
 @end smallexample
 @end ignore
 
-@node Searching and Case
+@node Searching and Case, Standard Regexps, Match Data, Searching and Matching
 @section Searching and Case
 @cindex searching and case
 
@@ -1599,7 +1599,7 @@
 same as @code{(default-value 'case-fold-search)}.
 @end defvar
 
-@node Standard Regexps
+@node Standard Regexps,  , Searching and Case, Searching and Matching
 @section Standard Regular Expressions Used in Editing
 @cindex regexps used standardly in editing
 @cindex standard regexps used in editing