summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog2
-rw-r--r--src/xdisp.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 69e35f5c975..df639a2c8f3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
2000-10-30 Gerd Moellmann <gerd@gnu.org>
+ * xdisp.c (safe_eval_handler): Call add_to_log.
+
* xfaces.c (resolve_face_name): Handle case that FACE_NAME
is not a symbol or string.
diff --git a/src/xdisp.c b/src/xdisp.c
index e6149e4a453..3cce1e6bad9 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -1171,6 +1171,7 @@ static Lisp_Object
safe_eval_handler (arg)
Lisp_Object arg;
{
+ add_to_log ("Error during redisplay: %s", arg, Qnil);
return Qnil;
}