aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-04-06 21:12:02 +0000
committerJuanma Barranquero2003-04-06 21:12:02 +0000
commit333c5fc5b9b3ad85a2c906c8e2e3a548ec04e49e (patch)
treec113969e826ca661bbbfd57cbc793e1f327d7732
parenteb67c5d64da2a2eb5669f0d77871ad8903098b3e (diff)
downloademacs-333c5fc5b9b3ad85a2c906c8e2e3a548ec04e49e.tar.gz
emacs-333c5fc5b9b3ad85a2c906c8e2e3a548ec04e49e.zip
Fix cross references.
-rw-r--r--lispref/backups.texi2
-rw-r--r--lispref/customize.texi2
-rw-r--r--lispref/os.texi5
-rw-r--r--lispref/positions.texi4
-rw-r--r--lispref/windows.texi3
-rw-r--r--man/building.texi2
-rw-r--r--man/cmdargs.texi2
-rw-r--r--man/faq.texi6
-rw-r--r--man/sending.texi4
-rw-r--r--man/viper.texi2
10 files changed, 15 insertions, 17 deletions
diff --git a/lispref/backups.texi b/lispref/backups.texi
index 858d6dfa9d5..e803904a4e8 100644
--- a/lispref/backups.texi
+++ b/lispref/backups.texi
@@ -415,7 +415,7 @@ automatically compare a file with its most recent backup.
415called @dfn{auto-saving}. Auto-saving prevents you from losing more 415called @dfn{auto-saving}. Auto-saving prevents you from losing more
416than a limited amount of work if the system crashes. By default, 416than a limited amount of work if the system crashes. By default,
417auto-saves happen every 300 keystrokes, or after around 30 seconds of 417auto-saves happen every 300 keystrokes, or after around 30 seconds of
418idle time. @xref{Auto-Save, Auto-Save, Auto-Saving: Protection Against 418idle time. @xref{Auto Save, Auto Save, Auto-Saving: Protection Against
419Disasters, emacs, The GNU Emacs Manual}, for information on auto-save 419Disasters, emacs, The GNU Emacs Manual}, for information on auto-save
420for users. Here we describe the functions used to implement auto-saving 420for users. Here we describe the functions used to implement auto-saving
421and the variables that control them. 421and the variables that control them.
diff --git a/lispref/customize.texi b/lispref/customize.texi
index b7699a19802..41d29edf981 100644
--- a/lispref/customize.texi
+++ b/lispref/customize.texi
@@ -376,7 +376,7 @@ equivalent to @code{(string)}.
376@end menu 376@end menu
377 377
378All customization types are implemented as widgets; see @ref{Top, , 378All customization types are implemented as widgets; see @ref{Top, ,
379Introduction, widget, The Emacs Widget Library} for details. 379Introduction, widget, The Emacs Widget Library}, for details.
380 380
381@node Simple Types 381@node Simple Types
382@subsection Simple Types 382@subsection Simple Types
diff --git a/lispref/os.texi b/lispref/os.texi
index 6fa2c8925e7..1defdcdbe57 100644
--- a/lispref/os.texi
+++ b/lispref/os.texi
@@ -216,7 +216,7 @@ way you can change it with real effect is to do so before dumping
216Emacs. 216Emacs.
217@end defvar 217@end defvar
218 218
219 @xref{Init File Examples,,, emacs, The GNU Emacs Manual}, for 219 @xref{Init Examples,, Init File Examples, emacs, The GNU Emacs Manual}, for
220examples of how to make various commonly desired customizations in your 220examples of how to make various commonly desired customizations in your
221@file{.emacs} file. 221@file{.emacs} file.
222 222
@@ -400,8 +400,7 @@ arguments is in @code{command-line-args}.)
400 400
401The command-line arguments are parsed by the @code{command-line-1} 401The command-line arguments are parsed by the @code{command-line-1}
402function in the @file{startup.el} file. See also @ref{Command 402function in the @file{startup.el} file. See also @ref{Command
403Switches, , Command Line Switches and Arguments, emacs, The GNU Emacs 403Arguments, , Command Line Arguments, emacs, The GNU Emacs Manual}.
404Manual}.
405@end defvar 404@end defvar
406 405
407@defvar command-line-args 406@defvar command-line-args
diff --git a/lispref/positions.texi b/lispref/positions.texi
index ac5efda9bc9..66085188c5b 100644
--- a/lispref/positions.texi
+++ b/lispref/positions.texi
@@ -641,8 +641,8 @@ expressions (also called @dfn{sexps} in connection with moving across
641them in Emacs). The syntax table controls how these functions interpret 641them in Emacs). The syntax table controls how these functions interpret
642various characters; see @ref{Syntax Tables}. @xref{Parsing 642various characters; see @ref{Syntax Tables}. @xref{Parsing
643Expressions}, for lower-level primitives for scanning sexps or parts of 643Expressions}, for lower-level primitives for scanning sexps or parts of
644sexps. For user-level commands, see @ref{Lists Commands,,, emacs, The GNU 644sexps. For user-level commands, see @ref{Parentheses,, Commands for
645Emacs Manual}. 645Editing with Parentheses, emacs, The GNU Emacs Manual}.
646 646
647@deffn Command forward-list &optional arg 647@deffn Command forward-list &optional arg
648This function moves forward across @var{arg} (default 1) balanced groups of 648This function moves forward across @var{arg} (default 1) balanced groups of
diff --git a/lispref/windows.texi b/lispref/windows.texi
index f43a792f3be..e0481e0d5bd 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -2103,8 +2103,7 @@ There are three actions that can change this: scrolling the window,
2103switching buffers in the window, and changing the size of the window. 2103switching buffers in the window, and changing the size of the window.
2104The first two actions run @code{window-scroll-functions}; the last runs 2104The first two actions run @code{window-scroll-functions}; the last runs
2105@code{window-size-change-functions}. The paradigmatic use of these 2105@code{window-size-change-functions}. The paradigmatic use of these
2106hooks is in the implementation of Lazy Lock mode; see @ref{Support 2106hooks is in the implementation of Lazy Lock mode; see @file{lazy-lock.el}.
2107Modes, Lazy Lock, Font Lock Support Modes, emacs, The GNU Emacs Manual}.
2108 2107
2109@defvar window-scroll-functions 2108@defvar window-scroll-functions
2110This variable holds a list of functions that Emacs should call before 2109This variable holds a list of functions that Emacs should call before
diff --git a/man/building.texi b/man/building.texi
index 37af1db844a..8169b64a1bf 100644
--- a/man/building.texi
+++ b/man/building.texi
@@ -73,7 +73,7 @@ containing a default command line, which is the command you used the
73last time you did @kbd{M-x compile}. If you type just @key{RET}, the 73last time you did @kbd{M-x compile}. If you type just @key{RET}, the
74same command line is used again. For the first @kbd{M-x compile}, the 74same command line is used again. For the first @kbd{M-x compile}, the
75default is @samp{make -k}, which is correct most of the time for 75default is @samp{make -k}, which is correct most of the time for
76nontrivial programs. (@xref{Make,, Make, make, GNU Make Manual}.) 76nontrivial programs. (@xref{Top,, Make, make, GNU Make Manual}.)
77The default compilation command comes from the variable 77The default compilation command comes from the variable
78@code{compile-command}; if the appropriate compilation command for a 78@code{compile-command}; if the appropriate compilation command for a
79file is something other than @samp{make -k}, it can be useful for the 79file is something other than @samp{make -k}, it can be useful for the
diff --git a/man/cmdargs.texi b/man/cmdargs.texi
index a6b8019cf99..7545f9baf76 100644
--- a/man/cmdargs.texi
+++ b/man/cmdargs.texi
@@ -497,7 +497,7 @@ The name of an interpreter used to parse and execute programs run from
497inside Emacs. 497inside Emacs.
498@item SMTPSERVER 498@item SMTPSERVER
499The name of the outgoing mail server. Used by the SMTP library 499The name of the outgoing mail server. Used by the SMTP library
500(@pxref{Sending mail via SMTP,,,smtpmail}). 500(@pxref{Top,,Sending mail via SMTP,smtpmail}).
501@cindex background mode, on @command{xterm} 501@cindex background mode, on @command{xterm}
502@item TERM 502@item TERM
503The type of the terminal that Emacs is using. This variable must be 503The type of the terminal that Emacs is using. This variable must be
diff --git a/man/faq.texi b/man/faq.texi
index 3d7ee6d4e80..5cdc357c2cc 100644
--- a/man/faq.texi
+++ b/man/faq.texi
@@ -1217,7 +1217,7 @@ and on @code{xterm} with @kbd{emacs -nw}.
1217@cindex Init file, setting up 1217@cindex Init file, setting up
1218@cindex Customization file, setting up 1218@cindex Customization file, setting up
1219 1219
1220@inforef{Init File, Init File, emacs} 1220@inforef{Init File, Init File, emacs}.
1221 1221
1222In general, new Emacs users should not have @file{.emacs} files, because 1222In general, new Emacs users should not have @file{.emacs} files, because
1223it causes confusing non-standard behavior. Then they send questions to 1223it causes confusing non-standard behavior. Then they send questions to
@@ -2061,7 +2061,7 @@ support it. (@xref{VIPER}.)
2061@cindex X resources 2061@cindex X resources
2062@cindex Setting X resources 2062@cindex Setting X resources
2063 2063
2064@inforef{Resources X, Resources X, emacs}. 2064@inforef{X Resources, X Resources, emacs}.
2065 2065
2066You can also use a resource editor, such as editres (for X11R5 and 2066You can also use a resource editor, such as editres (for X11R5 and
2067onwards), to look at the resource names for the menu bar, assuming Emacs 2067onwards), to look at the resource names for the menu bar, assuming Emacs
@@ -2189,7 +2189,7 @@ If you need to repeat a command a small number of times, you can use
2189@cindex Suspending Emacs 2189@cindex Suspending Emacs
2190 2190
2191@kbd{C-z} iconifies Emacs when running under X and suspends Emacs 2191@kbd{C-z} iconifies Emacs when running under X and suspends Emacs
2192otherwise. @inforef{Misc X, Misc X, emacs}. 2192otherwise. @inforef{Frame Commands, Frame Commands, emacs}.
2193 2193
2194@node Using regular expressions, Replacing text across multiple files, Forcing Emacs to iconify itself, Common requests 2194@node Using regular expressions, Replacing text across multiple files, Forcing Emacs to iconify itself, Common requests
2195@section How do I use regexps (regular expressions) in Emacs? 2195@section How do I use regexps (regular expressions) in Emacs?
diff --git a/man/sending.texi b/man/sending.texi
index 95e7093ac57..502663a3520 100644
--- a/man/sending.texi
+++ b/man/sending.texi
@@ -447,7 +447,7 @@ user agent sends mail. It should be set to a function. The default
447is @code{sendmail-send-it}, which delivers mail using the Sendmail 447is @code{sendmail-send-it}, which delivers mail using the Sendmail
448installation on the local host. To send mail through a SMTP server, 448installation on the local host. To send mail through a SMTP server,
449set it to @code{smtpmail-send-it} and set up the Emacs SMTP library 449set it to @code{smtpmail-send-it} and set up the Emacs SMTP library
450(@pxref{Sending mail via SMTP,,,smtpmail}). A third option is 450(@pxref{Top,, Sending mail via SMTP,smtpmail}). A third option is
451@code{feedmail-send-it}, see the commentary section of the 451@code{feedmail-send-it}, see the commentary section of the
452@file{feedmail.el} package for more information. 452@file{feedmail.el} package for more information.
453 453
@@ -687,7 +687,7 @@ message into outgoing mail. To do this, add
687and sending mail---Mail mode. Emacs has alternative facilities for 687and sending mail---Mail mode. Emacs has alternative facilities for
688editing and sending mail, including 688editing and sending mail, including
689MH-E and Message mode, not documented in this manual. 689MH-E and Message mode, not documented in this manual.
690@xref{MH-E,,,mh-e, The Emacs Interface to MH}. @xref{Message,,,message, 690@xref{Top,,MH-E,mh-e, The Emacs Interface to MH}. @xref{Top,,,message,
691Message Manual}. You can choose any of them as your preferred method. 691Message Manual}. You can choose any of them as your preferred method.
692The commands @code{C-x m}, @code{C-x 4 m} and @code{C-x 5 m} use 692The commands @code{C-x m}, @code{C-x 4 m} and @code{C-x 5 m} use
693whichever agent you have specified, as do various other Emacs commands 693whichever agent you have specified, as do various other Emacs commands
diff --git a/man/viper.texi b/man/viper.texi
index a5b102acd56..c0059da3a97 100644
--- a/man/viper.texi
+++ b/man/viper.texi
@@ -596,7 +596,7 @@ Most commands, @kbd{~}, @kbd{[[}, @kbd{p}, @kbd{/}, @dots{}, etc., take counts.
596Viper uses Emacs Regular Expressions for searches. These are a superset of 596Viper uses Emacs Regular Expressions for searches. These are a superset of
597Vi regular 597Vi regular
598expressions, excepting the change-of-case escapes @samp{\u}, @samp{\L}, 598expressions, excepting the change-of-case escapes @samp{\u}, @samp{\L},
599@dots{}, etc. @xref{Regular Expressions,,Regular Expressions,emacs,The 599@dots{}, etc. @xref{Regexps,,Syntax of Regular Expressions,emacs,The
600GNU Emacs Manual}, for details. 600GNU Emacs Manual}, for details.
601Files specified to @kbd{:e} use @code{csh} regular expressions 601Files specified to @kbd{:e} use @code{csh} regular expressions
602(globbing, wildcards, what have you). 602(globbing, wildcards, what have you).