Mercurial > hg > xemacs-beta
diff man/lispref/modes.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 | e6d43c299b9c |
children |
line wrap: on
line diff
--- a/man/lispref/modes.texi Mon Jan 27 17:52:33 2014 +0100 +++ b/man/lispref/modes.texi Thu Mar 27 08:59:03 2014 -0600 @@ -25,7 +25,7 @@ * Hooks:: How to use hooks; how to write code that provides hooks. @end menu -@node Major Modes +@node Major Modes, Minor Modes, Modes, Modes @section Major Modes @cindex major mode @cindex Fundamental mode @@ -93,7 +93,7 @@ mode. @end menu -@node Major Mode Conventions +@node Major Mode Conventions, Example Major Modes, Major Modes, Major Modes @subsection Major Mode Conventions The code for existing major modes follows various coding conventions, @@ -259,7 +259,7 @@ subsequent major mode. @xref{Hooks}. @end defvar -@node Example Major Modes +@node Example Major Modes, Auto Major Mode, Major Mode Conventions, Major Modes @subsection Major Mode Examples Text mode is perhaps the simplest mode besides Fundamental mode. @@ -490,7 +490,7 @@ @end group @end smallexample -@node Auto Major Mode +@node Auto Major Mode, Mode Help, Example Major Modes, Major Modes @subsection How XEmacs Chooses a Major Mode Based on information in the file name or in the file itself, XEmacs @@ -675,7 +675,7 @@ @code{normal-mode}. @end defun -@node Mode Help +@node Mode Help, Derived Modes, Auto Major Mode, Major Modes @subsection Getting Help about a Major Mode @cindex mode help @cindex help for major mode @@ -704,7 +704,7 @@ mode. @end defvar -@node Derived Modes +@node Derived Modes, , Mode Help, Major Modes @subsection Defining Derived Modes It's often useful to define a new major mode in terms of an existing @@ -768,7 +768,7 @@ @code{define-derived-mode} does that automatically. @end defmac -@node Minor Modes +@node Minor Modes, Modeline Format, Major Modes, Modes @section Minor Modes @cindex minor mode @@ -798,7 +798,7 @@ * Keymaps and Minor Modes:: How a minor mode can have its own keymap. @end menu -@node Minor Mode Conventions +@node Minor Mode Conventions, Keymaps and Minor Modes, Minor Modes, Minor Modes @subsection Conventions for Writing Minor Modes @cindex minor mode conventions @cindex conventions for writing minor modes @@ -878,7 +878,7 @@ @end smallexample @end itemize -@node Keymaps and Minor Modes +@node Keymaps and Minor Modes, , Minor Mode Conventions, Minor Modes @subsection Keymaps and Minor Modes Each minor mode can have its own keymap, which is active when the mode @@ -894,7 +894,7 @@ substituting your own definition of @code{self-insert-command} for the standard one. The editor command loop handles this function specially.) -@node Modeline Format +@node Modeline Format, Hooks, Minor Modes, Modes @section Modeline Format @cindex modeline @@ -937,7 +937,7 @@ * %-Constructs:: Putting information into a modeline. @end menu -@node Modeline Data +@node Modeline Data, Modeline Variables, Modeline Format, Modeline Format @subsection The Data Structure of the Modeline @cindex modeline construct @@ -1071,7 +1071,7 @@ @end group @end example -@node Modeline Variables +@node Modeline Variables, %-Constructs, Modeline Data, Modeline Format @subsection Variables Used in the Modeline This section describes variables incorporated by the @@ -1202,7 +1202,7 @@ that appears in the mode line. @end defvar -@node %-Constructs +@node %-Constructs, , Modeline Variables, Modeline Format @subsection @code{%}-Constructs in the ModeLine The following table lists the recognized @code{%}-constructs and what @@ -1304,7 +1304,7 @@ @code{display-time} modifies the value of @code{global-mode-string}. @end table -@node Hooks +@node Hooks, , Modeline Format, Modes @section Hooks @cindex hooks