aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2012-02-24 00:28:42 -0800
committerGlenn Morris2012-02-24 00:28:42 -0800
commit4bb82fa8b7a8360d9877b63794eba778405e2962 (patch)
tree96e291fd440261bc3bb7d7c336a3e483229c419b /doc
parent914260cdbd985a2021b4905eedc8151afd226e06 (diff)
downloademacs-4bb82fa8b7a8360d9877b63794eba778405e2962.tar.gz
emacs-4bb82fa8b7a8360d9877b63794eba778405e2962.zip
Small changes for lispref/errors.texi
* doc/lispref/errors.texi (Standard Errors): Mention dbus-error. For arith-error sub-classes, just use one cross-ref.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/errors.texi36
2 files changed, 28 insertions, 13 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 151a6388c7f..575902336cd 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12012-02-24 Glenn Morris <rgm@gnu.org>
2
3 * errors.texi (Standard Errors): Mention dbus-error.
4 For arith-error sub-classes, just use one cross-ref.
5
12012-02-23 Alan Mackenzie <acm@muc.de> 62012-02-23 Alan Mackenzie <acm@muc.de>
2 7
3 * modes.texi (Defining Minor Modes): Document the new keyword 8 * modes.texi (Defining Minor Modes): Document the new keyword
diff --git a/doc/lispref/errors.texi b/doc/lispref/errors.texi
index 56ff3636750..fcf4ec24af7 100644
--- a/doc/lispref/errors.texi
+++ b/doc/lispref/errors.texi
@@ -1,6 +1,6 @@
1@c -*-texinfo-*- 1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual. 2@c This is part of the GNU Emacs Lisp Reference Manual.
3@c Copyright (C) 1990-1993, 1999, 2001-2012 Free Software Foundation, Inc. 3@c Copyright (C) 1990-1993, 1999, 2001-2012 Free Software Foundation, Inc.
4@c See the file elisp.texi for copying conditions. 4@c See the file elisp.texi for copying conditions.
5@setfilename ../../info/errors 5@setfilename ../../info/errors
6@node Standard Errors, Standard Buffer-Local Variables, GNU Emacs Internals, Top 6@node Standard Errors, Standard Buffer-Local Variables, GNU Emacs Internals, Top
@@ -54,6 +54,11 @@ sequence or buffer.@*
54@code{"Buffer is read-only"}@* 54@code{"Buffer is read-only"}@*
55@xref{Read Only Buffers}. 55@xref{Read Only Buffers}.
56 56
57@ignore
58@item circular-list
59@code{"List contains a loop"}@*
60@end ignore
61
57@item coding-system-error 62@item coding-system-error
58@code{"Invalid coding system"}@* 63@code{"Invalid coding system"}@*
59@xref{Lisp and Coding Systems}. 64@xref{Lisp and Coding Systems}.
@@ -66,6 +71,11 @@ sequence or buffer.@*
66@code{"Symbol's chain of variable indirections contains a loop"}@* 71@code{"Symbol's chain of variable indirections contains a loop"}@*
67@xref{Variable Aliases}. 72@xref{Variable Aliases}.
68 73
74@item dbus-error
75@code{"D-Bus error"}@*
76This is only defined if Emacs was compiled with D-Bus support.@*
77@xref{Errors and Events,,, dbus, D-Bus integration in Emacs}.
78
69@item end-of-buffer 79@item end-of-buffer
70@code{"End of buffer"}@* 80@code{"End of buffer"}@*
71@xref{Character Motion}. 81@xref{Character Motion}.
@@ -128,6 +138,11 @@ in accessing a remote file using ftp.@*
128@code{"No catch for tag"}@* 138@code{"No catch for tag"}@*
129@xref{Catch and Throw}. 139@xref{Catch and Throw}.
130 140
141@ignore
142@item protected-field
143@code{"Attempt to modify a protected field"}
144@end ignore
145
131@item scan-error 146@item scan-error
132@code{"Scan error"}@* 147@code{"Scan error"}@*
133This happens when certain syntax-parsing functions 148This happens when certain syntax-parsing functions
@@ -171,31 +186,26 @@ This is a subcategory of @code{buffer-read-only}.@*
171@xref{Type Predicates}. 186@xref{Type Predicates}.
172@end table 187@end table
173 188
174 These kinds of error, which are classified as special cases of 189 The following kinds of error, which are classified as special cases of
175@code{arith-error}, can occur on certain systems for invalid use of 190@code{arith-error}, can occur on certain systems for invalid use of
176mathematical functions. 191mathematical functions. @xref{Math Functions}.
177 192
178@table @code 193@table @code
179@item domain-error 194@item domain-error
180@code{"Arithmetic domain error"}@* 195@code{"Arithmetic domain error"}
181@xref{Math Functions}.
182 196
183@item overflow-error 197@item overflow-error
184@code{"Arithmetic overflow error"}@* 198@code{"Arithmetic overflow error"}@*
185This is a subcategory of @code{domain-error}.@* 199This is a subcategory of @code{domain-error}.
186@xref{Math Functions}.
187 200
188@item range-error 201@item range-error
189@code{"Arithmetic range error"}@* 202@code{"Arithmetic range error"}
190@xref{Math Functions}.
191 203
192@item singularity-error 204@item singularity-error
193@code{"Arithmetic singularity error"}@* 205@code{"Arithmetic singularity error"}@*
194This is a subcategory of @code{domain-error}.@* 206This is a subcategory of @code{domain-error}.
195@xref{Math Functions}.
196 207
197@item underflow-error 208@item underflow-error
198@code{"Arithmetic underflow error"}@* 209@code{"Arithmetic underflow error"}@*
199This is a subcategory of @code{domain-error}.@* 210This is a subcategory of @code{domain-error}.
200@xref{Math Functions}.
201@end table 211@end table