summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-02-24 00:28:42 -0800
committerGlenn Morris <rgm@gnu.org>2012-02-24 00:28:42 -0800
commit4bb82fa8b7a8360d9877b63794eba778405e2962 (patch)
tree96e291fd440261bc3bb7d7c336a3e483229c419b
parent914260cdbd985a2021b4905eedc8151afd226e06 (diff)
downloademacs-4bb82fa8b7a8360d9877b63794eba778405e2962.tar.gz
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.
-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 @@
+2012-02-24 Glenn Morris <rgm@gnu.org>
+
+ * errors.texi (Standard Errors): Mention dbus-error.
+ For arith-error sub-classes, just use one cross-ref.
+
2012-02-23 Alan Mackenzie <acm@muc.de>
* 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 @@
@c -*-texinfo-*-
@c This is part of the GNU Emacs Lisp Reference Manual.
-@c Copyright (C) 1990-1993, 1999, 2001-2012 Free Software Foundation, Inc.
+@c Copyright (C) 1990-1993, 1999, 2001-2012 Free Software Foundation, Inc.
@c See the file elisp.texi for copying conditions.
@setfilename ../../info/errors
@node Standard Errors, Standard Buffer-Local Variables, GNU Emacs Internals, Top
@@ -54,6 +54,11 @@ sequence or buffer.@*
@code{"Buffer is read-only"}@*
@xref{Read Only Buffers}.
+@ignore
+@item circular-list
+@code{"List contains a loop"}@*
+@end ignore
+
@item coding-system-error
@code{"Invalid coding system"}@*
@xref{Lisp and Coding Systems}.
@@ -66,6 +71,11 @@ sequence or buffer.@*
@code{"Symbol's chain of variable indirections contains a loop"}@*
@xref{Variable Aliases}.
+@item dbus-error
+@code{"D-Bus error"}@*
+This is only defined if Emacs was compiled with D-Bus support.@*
+@xref{Errors and Events,,, dbus, D-Bus integration in Emacs}.
+
@item end-of-buffer
@code{"End of buffer"}@*
@xref{Character Motion}.
@@ -128,6 +138,11 @@ in accessing a remote file using ftp.@*
@code{"No catch for tag"}@*
@xref{Catch and Throw}.
+@ignore
+@item protected-field
+@code{"Attempt to modify a protected field"}
+@end ignore
+
@item scan-error
@code{"Scan error"}@*
This happens when certain syntax-parsing functions
@@ -171,31 +186,26 @@ This is a subcategory of @code{buffer-read-only}.@*
@xref{Type Predicates}.
@end table
- These kinds of error, which are classified as special cases of
+ The following kinds of error, which are classified as special cases of
@code{arith-error}, can occur on certain systems for invalid use of
-mathematical functions.
+mathematical functions. @xref{Math Functions}.
@table @code
@item domain-error
-@code{"Arithmetic domain error"}@*
-@xref{Math Functions}.
+@code{"Arithmetic domain error"}
@item overflow-error
@code{"Arithmetic overflow error"}@*
-This is a subcategory of @code{domain-error}.@*
-@xref{Math Functions}.
+This is a subcategory of @code{domain-error}.
@item range-error
-@code{"Arithmetic range error"}@*
-@xref{Math Functions}.
+@code{"Arithmetic range error"}
@item singularity-error
@code{"Arithmetic singularity error"}@*
-This is a subcategory of @code{domain-error}.@*
-@xref{Math Functions}.
+This is a subcategory of @code{domain-error}.
@item underflow-error
@code{"Arithmetic underflow error"}@*
-This is a subcategory of @code{domain-error}.@*
-@xref{Math Functions}.
+This is a subcategory of @code{domain-error}.
@end table