diff lispref/errors.texi @ 12098:a6eb5f12b0f3

*** empty log message ***
author Karl Heuer <kwzh@gnu.org>
date Tue, 06 Jun 1995 19:21:15 +0000
parents 8bf07ff6a929
children 981e116b4ac6
line wrap: on
line diff
--- a/lispref/errors.texi	Tue Jun 06 03:11:10 1995 +0000
+++ b/lispref/errors.texi	Tue Jun 06 19:21:15 1995 +0000
@@ -52,6 +52,10 @@
 @code{"Buffer is read-only"}@*
 @xref{Read Only Buffers}.
 
+@item cyclic-function-indirection
+@code{"Symbol's chain of function indirections contains a loop"}@*
+@xref{Function Indirection}.
+
 @item end-of-buffer
 @code{"End of buffer"}@*
 @xref{Motion}.
@@ -105,6 +109,10 @@
 may not be changed.@*
 @xref{Constant Variables, , Variables that Never Change}.
 
+@item undefined-color
+@code{"Undefined color"}@*
+@xref{Color Names}.
+
 @item void-function
 @code{"Symbol's function definition is void"}@*
 @xref{Function Cells}.
@@ -121,3 +129,29 @@
 @code{"Wrong type argument"}@*
 @xref{Type Predicates}.
 @end table
+
+  These error types, which are all classified as special cases of
+@code{arith-error}, can occur on certain systems for invalid use of
+mathematical functions.
+
+@table @code
+@item domain-error
+@code{"Arithmetic domain error"}@*
+@xref{Math Functions}.
+
+@item overflow-error
+@code{"Arithmetic overflow error"}@*
+@xref{Math Functions}.
+
+@item range-error
+@code{"Arithmetic range error"}@*
+@xref{Math Functions}.
+
+@item singularity-error
+@code{"Arithmetic singularity error"}@*
+@xref{Math Functions}.
+
+@item underflow-error
+@code{"Arithmetic underflow error"}@*
+@xref{Math Functions}.
+@end table