summaryrefslogtreecommitdiff
path: root/doc/lispintro
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-02-16 23:44:31 -0800
committerGlenn Morris <rgm@gnu.org>2012-02-16 23:44:31 -0800
commit0fd2c9a35bf08acb70f047835b89feef14469e0b (patch)
treec9b3d0aafc3becb393f21e10c4cf6210c7bf160c /doc/lispintro
parent48dd1e399f41aa349e8651d049cb4a707ffd0bb0 (diff)
downloademacs-0fd2c9a35bf08acb70f047835b89feef14469e0b.tar.gz
Fix cross-references between different manuals
* emacs/maintaining.texi (Old Revisions): Fix cross-refs to Ediff manual. * lispintro/emacs-lisp-intro.texi (Design @value{COUNT-WORDS}, Syntax) (count-words-in-defun): Fix cross-refs to Emacs manual. * lispref/hooks.texi (Standard Hooks): Fix cross-ref to Emacs manual. * misc/gnus.texi (Posting Styles): * misc/remember.texi (Org): Fix cross-refs to other manuals.
Diffstat (limited to 'doc/lispintro')
-rw-r--r--doc/lispintro/ChangeLog5
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi12
2 files changed, 10 insertions, 7 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index bf08571f6fb..f3a95ab85ff 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,8 @@
+2012-02-17 Glenn Morris <rgm@gnu.org>
+
+ * emacs-lisp-intro.texi (Design @value{COUNT-WORDS}, Syntax)
+ (count-words-in-defun): Fix cross-refs to Emacs manual.
+
2012-01-28 Andreas Schwab <schwab@linux-m68k.org>
* emacs-lisp-intro.texi (Top): Move setting of COUNT-WORDS outside
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index a72fd253bc8..ae1e2bf0b6d 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -13972,10 +13972,9 @@ this is:
@noindent
The buffer's syntax table determines which characters are and are not
-word constituents. (@xref{Syntax, , What Constitutes a Word or
-Symbol?}, for more about syntax. Also, see @ref{Syntax, Syntax, The
-Syntax Table, emacs, The GNU Emacs Manual}, and @ref{Syntax Tables, ,
-Syntax Tables, elisp, The GNU Emacs Lisp Reference Manual}.)
+word constituents. For more information about syntax,
+@pxref{Syntax Tables, , Syntax Tables, elisp, The GNU Emacs Lisp
+Reference Manual}.
@need 800
The search expression looks like this:
@@ -14836,8 +14835,7 @@ constituent} characters. Word constituent characters are members of
one syntax category. Other syntax categories include the class of
punctuation characters, such as the period and the comma, and the
class of whitespace characters, such as the blank space and the tab
-character. (For more information, see @ref{Syntax, Syntax, The Syntax
-Table, emacs, The GNU Emacs Manual}, and @ref{Syntax Tables, , Syntax
+character. (For more information, @pxref{Syntax Tables, , Syntax
Tables, elisp, The GNU Emacs Lisp Reference Manual}.)
Syntax tables specify which characters belong to which categories.
@@ -15007,7 +15005,7 @@ word and symbol by symbol, and another expression that counts the
jumps. The true-or-false-test for the @code{while} loop should test
true so long as point should jump forward, and false when point is at
the end of the definition. We have already redefined the regular
-expression for this (@pxref{Syntax}), so the loop is straightforward:
+expression for this, so the loop is straightforward:
@smallexample
@group