aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-04 04:51:13 +0000
committerRichard M. Stallman1993-07-04 04:51:13 +0000
commitd3e6f8be7bd8588b69daf392c5bf173fa8d0708f (patch)
tree937b1f66b4bff834d2d64a2ece63a9272a1d4923 /src/eval.c
parent7e85b93579088b041c61443ae19bba83ecffeab5 (diff)
downloademacs-d3e6f8be7bd8588b69daf392c5bf173fa8d0708f.tar.gz
emacs-d3e6f8be7bd8588b69daf392c5bf173fa8d0708f.zip
(Fsignal): Clarify error message.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 97245f09c82..897e543adf4 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1145,7 +1145,7 @@ See also the function `condition-case'.")
1145 if (EQ (sig, Qquit)) 1145 if (EQ (sig, Qquit))
1146 return Qnil; 1146 return Qnil;
1147 else 1147 else
1148 error ("Returning a value from an error is no longer supported"); 1148 error ("Cannot return from the debugger in an error");
1149 } 1149 }
1150#endif 1150#endif
1151 1151