aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2013-07-02 20:03:47 -0700
committerGlenn Morris2013-07-02 20:03:47 -0700
commita944db142f61600922660250cfe264118011dcb4 (patch)
tree4dcda274a9278679b46f074df1e53fb73107fc95 /doc
parent0946b7cade81add1e51e68e62fdbad2a119ade3c (diff)
downloademacs-a944db142f61600922660250cfe264118011dcb4.tar.gz
emacs-a944db142f61600922660250cfe264118011dcb4.zip
Fix some doc/ cross-references
* doc/lispintro/emacs-lisp-intro.texi (edebug): * doc/lispref/debugging.texi (Debugging): * doc/lispref/files.texi (File Attributes, Changing Files): * doc/misc/bovine.texi (top): * doc/misc/cc-mode.texi (AWK Mode Font Locking): * doc/misc/mh-e.texi (Preface): * doc/misc/url.texi (URI Parsing): Fix cross-references to other manuals. * doc/lispref/package.texi (Package Archives): Fix @url call.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispintro/ChangeLog4
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi4
-rw-r--r--doc/lispref/ChangeLog7
-rw-r--r--doc/lispref/debugging.texi2
-rw-r--r--doc/lispref/files.texi6
-rw-r--r--doc/lispref/package.texi2
-rw-r--r--doc/misc/ChangeLog7
-rw-r--r--doc/misc/bovine.texi2
-rw-r--r--doc/misc/cc-mode.texi2
-rw-r--r--doc/misc/mh-e.texi2
-rw-r--r--doc/misc/url.texi2
11 files changed, 29 insertions, 11 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index 4dd7c0e00a5..95f272eef33 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,7 @@
12013-07-03 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp-intro.texi (edebug): Fix cross-references.
4
12013-03-12 Glenn Morris <rgm@gnu.org> 52013-03-12 Glenn Morris <rgm@gnu.org>
2 6
3 * emacs-lisp-intro.texi: Add some stuff specific to www.gnu.org. 7 * emacs-lisp-intro.texi: Add some stuff specific to www.gnu.org.
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 13e12b52785..ec152c2f2d1 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -18619,7 +18619,7 @@ shows which line you are currently executing.
18619You can walk through the execution of a function, line by line, or run 18619You can walk through the execution of a function, line by line, or run
18620quickly until reaching a @dfn{breakpoint} where execution stops. 18620quickly until reaching a @dfn{breakpoint} where execution stops.
18621 18621
18622Edebug is described in @ref{edebug, , Edebug, elisp, The GNU Emacs 18622Edebug is described in @ref{Edebug, , , elisp, The GNU Emacs
18623Lisp Reference Manual}. 18623Lisp Reference Manual}.
18624 18624
18625@need 1250 18625@need 1250
@@ -18746,7 +18746,7 @@ error or at specified stopping points; you can cause it to display the
18746changing values of various expressions; you can find out how many 18746changing values of various expressions; you can find out how many
18747times a function is called, and more. 18747times a function is called, and more.
18748 18748
18749Edebug is described in @ref{edebug, , Edebug, elisp, The GNU Emacs 18749Edebug is described in @ref{Edebug, , , elisp, The GNU Emacs
18750Lisp Reference Manual}. 18750Lisp Reference Manual}.
18751 18751
18752@need 1500 18752@need 1500
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 440e5dc8239..871564aa666 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,10 @@
12013-07-03 Glenn Morris <rgm@gnu.org>
2
3 * debugging.texi (Debugging):
4 * files.texi (File Attributes, Changing Files): Fix cross-references.
5
6 * package.texi (Package Archives): Fix @url call.
7
12013-06-26 Glenn Morris <rgm@gnu.org> 82013-06-26 Glenn Morris <rgm@gnu.org>
2 9
3 * syntax.texi (Syntax Table Functions): Mention describe-syntax. 10 * syntax.texi (Syntax Table Functions): Mention describe-syntax.
diff --git a/doc/lispref/debugging.texi b/doc/lispref/debugging.texi
index 24629465525..335e3f802d2 100644
--- a/doc/lispref/debugging.texi
+++ b/doc/lispref/debugging.texi
@@ -32,7 +32,7 @@ program.
32 32
33@item 33@item
34You can use the ERT package to write regression tests for the program. 34You can use the ERT package to write regression tests for the program.
35@xref{Top,the ERT manual,, ERT, ERT: Emacs Lisp Regression Testing}. 35@xref{Top,the ERT manual,, ert, ERT: Emacs Lisp Regression Testing}.
36 36
37@item 37@item
38You can profile the program to get hints about how to make it more efficient. 38You can profile the program to get hints about how to make it more efficient.
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index 49269d71bf9..f3b5f19560f 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -1112,7 +1112,7 @@ permissions} of @var{filename}, as an integer. It recursively follows
1112symbolic links in @var{filename} at all levels. If @var{filename} 1112symbolic links in @var{filename} at all levels. If @var{filename}
1113does not exist, the return value is @code{nil}. 1113does not exist, the return value is @code{nil}.
1114 1114
1115@xref{File Permissions,,, coreutils, The @sc{gnu} @code{Coreutils} 1115@xref{File permissions,,, coreutils, The @sc{gnu} @code{Coreutils}
1116Manual}, for a description of mode bits. If the low-order bit is 1, 1116Manual}, for a description of mode bits. If the low-order bit is 1,
1117then the file is executable by all users, if the second-lowest-order 1117then the file is executable by all users, if the second-lowest-order
1118bit is 1, then the file is writable by all users, etc. The highest 1118bit is 1, then the file is writable by all users, etc. The highest
@@ -1599,7 +1599,7 @@ octal numbers to enter @var{mode}. For example,
1599@noindent 1599@noindent
1600specifies that the file should be readable and writable for its owner, 1600specifies that the file should be readable and writable for its owner,
1601readable for group members, and readable for all other users. 1601readable for group members, and readable for all other users.
1602@xref{File Permissions,,, coreutils, The @sc{gnu} @code{Coreutils} 1602@xref{File permissions,,, coreutils, The @sc{gnu} @code{Coreutils}
1603Manual}, for a description of mode bit specifications. 1603Manual}, for a description of mode bit specifications.
1604 1604
1605Interactively, @var{mode} is read from the minibuffer using 1605Interactively, @var{mode} is read from the minibuffer using
@@ -1650,7 +1650,7 @@ the permissions on which the specification is based are taken from the
1650mode bits of @var{base-file}. If @var{base-file} is omitted or 1650mode bits of @var{base-file}. If @var{base-file} is omitted or
1651@code{nil}, the function uses @code{0} as the base mode bits. The 1651@code{nil}, the function uses @code{0} as the base mode bits. The
1652complete and relative specifications can be combined, as in 1652complete and relative specifications can be combined, as in
1653@code{"u+r,g+rx,o+r,g-w"}. @xref{File Permissions,,, coreutils, The 1653@code{"u+r,g+rx,o+r,g-w"}. @xref{File permissions,,, coreutils, The
1654@sc{gnu} @code{Coreutils} Manual}, for a description of file mode 1654@sc{gnu} @code{Coreutils} Manual}, for a description of file mode
1655specifications. 1655specifications.
1656@end defun 1656@end defun
diff --git a/doc/lispref/package.texi b/doc/lispref/package.texi
index ad9f4fc1aea..f4d6b590c77 100644
--- a/doc/lispref/package.texi
+++ b/doc/lispref/package.texi
@@ -265,7 +265,7 @@ variable @code{load-file-name} (@pxref{Loading}). Here is an example:
265 Via the Package Menu, users may download packages from @dfn{package 265 Via the Package Menu, users may download packages from @dfn{package
266archives}. Such archives are specified by the variable 266archives}. Such archives are specified by the variable
267@code{package-archives}, whose default value contains a single entry: 267@code{package-archives}, whose default value contains a single entry:
268the archive hosted by the GNU project at @url{elpa.gnu.org}. This 268the archive hosted by the GNU project at @url{http://elpa.gnu.org}. This
269section describes how to set up and maintain a package archive. 269section describes how to set up and maintain a package archive.
270 270
271@cindex base location, package archive 271@cindex base location, package archive
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index b2624e7b05a..57c12d4f946 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,10 @@
12013-07-03 Glenn Morris <rgm@gnu.org>
2
3 * bovine.texi (top):
4 * cc-mode.texi (AWK Mode Font Locking):
5 * mh-e.texi (Preface):
6 * url.texi (URI Parsing): Fix cross-references to other manuals.
7
12013-06-24 Glenn Morris <rgm@gnu.org> 82013-06-24 Glenn Morris <rgm@gnu.org>
2 9
3 * eshell.texi: Fix cross-references to other manuals. 10 * eshell.texi: Fix cross-references to other manuals.
diff --git a/doc/misc/bovine.texi b/doc/misc/bovine.texi
index 978345e5cc8..81ec2eb80ec 100644
--- a/doc/misc/bovine.texi
+++ b/doc/misc/bovine.texi
@@ -76,7 +76,7 @@ The @dfn{bovine} parser is the original @semantic{} parser, and is an
76implementation of an @acronym{LL} parser. It is good for simple 76implementation of an @acronym{LL} parser. It is good for simple
77languages. It has many conveniences making grammar writing easy. The 77languages. It has many conveniences making grammar writing easy. The
78conveniences make it less powerful than a Bison-like @acronym{LALR} 78conveniences make it less powerful than a Bison-like @acronym{LALR}
79parser. For more information, @inforef{top, the Wisent Parser Manual, 79parser. For more information, @inforef{Top, The Wisent Parser Manual,
80wisent}. 80wisent}.
81 81
82Bovine @acronym{LL} grammars are stored in files with a @file{.by} 82Bovine @acronym{LL} grammars are stored in files with a @file{.by}
diff --git a/doc/misc/cc-mode.texi b/doc/misc/cc-mode.texi
index bb6a5b001ad..52a0cea53c2 100644
--- a/doc/misc/cc-mode.texi
+++ b/doc/misc/cc-mode.texi
@@ -2111,7 +2111,7 @@ contributing it: send a note to @email{bug-cc-mode@@gnu.org}.
2111@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 2111@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
2112 2112
2113The general appearance of font-locking in AWK mode is much like in any 2113The general appearance of font-locking in AWK mode is much like in any
2114other programming mode. @xref{Faces For Font Lock,,,elisp, GNU Emacs 2114other programming mode. @xref{Faces for Font Lock,,,elisp, GNU Emacs
2115Lisp Reference Manual}. 2115Lisp Reference Manual}.
2116 2116
2117The following faces are, however, used in a non-standard fashion in 2117The following faces are, however, used in a non-standard fashion in
diff --git a/doc/misc/mh-e.texi b/doc/misc/mh-e.texi
index fa35aa45984..3756f1ecc5c 100644
--- a/doc/misc/mh-e.texi
+++ b/doc/misc/mh-e.texi
@@ -233,7 +233,7 @@ read an online tutorial by starting GNU Emacs and typing @kbd{C-h t}
233@cite{GNU Emacs Manual}, 233@cite{GNU Emacs Manual},
234@end iftex 234@end iftex
235@ifinfo 235@ifinfo
236@ref{top, , GNU Emacs Manual, emacs, GNU Emacs Manual}, 236@ref{Top, , GNU Emacs Manual, emacs, GNU Emacs Manual},
237@end ifinfo 237@end ifinfo
238@ifhtml 238@ifhtml
239@uref{http://www.gnu.org/software/emacs/manual/html_node/, 239@uref{http://www.gnu.org/software/emacs/manual/html_node/,
diff --git a/doc/misc/url.texi b/doc/misc/url.texi
index 42b1624aa0a..dff85373cc1 100644
--- a/doc/misc/url.texi
+++ b/doc/misc/url.texi
@@ -138,7 +138,7 @@ Given a parsed URI, this function returns the corresponding URI string.
138 The return value of @code{url-generic-parse-url}, and the argument 138 The return value of @code{url-generic-parse-url}, and the argument
139expected by @code{url-recreate-url}, is a @dfn{parsed URI}: a CL 139expected by @code{url-recreate-url}, is a @dfn{parsed URI}: a CL
140structure whose slots hold the various components of the URI@. 140structure whose slots hold the various components of the URI@.
141@xref{top,the CL Manual,,cl,GNU Emacs Common Lisp Emulation}, for 141@xref{Top,the CL Manual,,cl,GNU Emacs Common Lisp Emulation}, for
142details about CL structures. Most of the other functions in the 142details about CL structures. Most of the other functions in the
143@code{url} library act on parsed URIs. 143@code{url} library act on parsed URIs.
144 144