aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/errors.texi
diff options
context:
space:
mode:
authorEli Zaretskii2019-10-09 12:29:21 +0300
committerEli Zaretskii2019-10-09 12:29:21 +0300
commit87d999a2f4dd0f0906e0b44a0f271b72f0e2e0e9 (patch)
treec29181238b24e433c08815fe309efafc67e62ac2 /doc/lispref/errors.texi
parent13f7e07e7c386753f64691bcf12e43d3325131f1 (diff)
downloademacs-87d999a2f4dd0f0906e0b44a0f271b72f0e2e0e9.tar.gz
emacs-87d999a2f4dd0f0906e0b44a0f271b72f0e2e0e9.zip
Fix minor Texinfo errors in ELisp manual
* doc/lispref/errors.texi (Standard Errors): Fix incorrect usage of @xref commands. (Bug#37660) * doc/lispref/internals.texi (Buffer Internals): Fix markup. (Bug#37639)
Diffstat (limited to 'doc/lispref/errors.texi')
-rw-r--r--doc/lispref/errors.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/lispref/errors.texi b/doc/lispref/errors.texi
index b25fb993990..45e7acbaa6b 100644
--- a/doc/lispref/errors.texi
+++ b/doc/lispref/errors.texi
@@ -43,13 +43,13 @@ The message is @samp{Quit}. @xref{Quitting}.
43@item args-out-of-range 43@item args-out-of-range
44The message is @samp{Args out of range}. This happens when trying to 44The message is @samp{Args out of range}. This happens when trying to
45access an element beyond the range of a sequence, buffer, or other 45access an element beyond the range of a sequence, buffer, or other
46container-like object. @xref{Sequences Arrays Vectors}, and 46container-like object. @xref{Sequences Arrays Vectors}, and see
47@xref{Text}. 47@ref{Text}.
48 48
49@item arith-error 49@item arith-error
50The message is @samp{Arithmetic error}. This occurs when trying to 50The message is @samp{Arithmetic error}. This occurs when trying to
51perform integer division by zero. @xref{Numeric Conversions}, and 51perform integer division by zero. @xref{Numeric Conversions}, and
52@xref{Arithmetic Operations}. 52see @ref{Arithmetic Operations}.
53 53
54@item beginning-of-buffer 54@item beginning-of-buffer
55The message is @samp{Beginning of buffer}. @xref{Character Motion}. 55The message is @samp{Beginning of buffer}. @xref{Character Motion}.
@@ -172,7 +172,7 @@ syntax-parsing functions find invalid syntax or mismatched
172parentheses. Conventionally raised with three argument: a 172parentheses. Conventionally raised with three argument: a
173human-readable error message, the start of the obstacle that cannot be 173human-readable error message, the start of the obstacle that cannot be
174moved over, and the end of the obstacle. @xref{List Motion}, and 174moved over, and the end of the obstacle. @xref{List Motion}, and
175@xref{Parsing Expressions}. 175see @ref{Parsing Expressions}.
176 176
177@item search-failed 177@item search-failed
178The message is @samp{Search failed}. @xref{Searching and Matching}. 178The message is @samp{Search failed}. @xref{Searching and Matching}.
@@ -198,8 +198,8 @@ The message is the empty string. @xref{Signaling Errors}.
198 198
199@item user-search-failed 199@item user-search-failed
200This is like @samp{search-failed}, but doesn't trigger the debugger, 200This is like @samp{search-failed}, but doesn't trigger the debugger,
201like @samp{user-error}. @xref{Signaling Errors}, and @xref{Searching 201like @samp{user-error}. @xref{Signaling Errors}, and see @ref{Searching
202and Matching}. This is used for searching in Info files, @xref{Search 202and Matching}. This is used for searching in Info files, see @ref{Search
203Text,,,info,Info}. 203Text,,,info,Info}.
204 204
205@item void-function 205@item void-function