aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/control.texi3
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 611badcbaa0..5d140f72dbf 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12013-08-09 Xue Fuqiao <xfq.free@gmail.com>
2
3 * control.texi (Error Symbols): Minor fix for previous change.
4
12013-08-09 Stefan Monnier <monnier@iro.umontreal.ca> 52013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * errors.texi (Standard Errors): Don't refer to `error-conditions'. 7 * errors.texi (Standard Errors): Don't refer to `error-conditions'.
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index b68f3184394..70eabcd84a4 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -1282,9 +1282,10 @@ This parent defines the conditions that this kind of error belongs to.
1282The transitive set of parents always includes the error symbol itself, and the 1282The transitive set of parents always includes the error symbol itself, and the
1283symbol @code{error}. Because quitting is not considered an error, the set of 1283symbol @code{error}. Because quitting is not considered an error, the set of
1284parents of @code{quit} is just @code{(quit)}. 1284parents of @code{quit} is just @code{(quit)}.
1285@end defun
1285 1286
1286@cindex peculiar error 1287@cindex peculiar error
1287 In addition to its parents, the error symbol has a var{message} which 1288 In addition to its parents, the error symbol has a @var{message} which
1288is a string to be printed when that error is signaled but not handled. If that 1289is a string to be printed when that error is signaled but not handled. If that
1289message is not valid, the error message @samp{peculiar error} is used. 1290message is not valid, the error message @samp{peculiar error} is used.
1290@xref{Definition of signal}. 1291@xref{Definition of signal}.