aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorGregory Heytings2022-11-24 14:21:30 +0100
committerGregory Heytings2022-11-24 14:21:30 +0100
commitba9315b1641b483f2bf843c38dcdba0cd1643a55 (patch)
treed119cae86c7386db66be72972d90f6c83215974d /src/eval.c
parentaef803d6c3d61004f15d0bc82fa7bf9952302312 (diff)
parenta3b654e069e563b0a2a6335ec310ada51400ac09 (diff)
downloademacs-ba9315b1641b483f2bf843c38dcdba0cd1643a55.tar.gz
emacs-ba9315b1641b483f2bf843c38dcdba0cd1643a55.zip
Merge master into feature/improved-locked-narrowing.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/eval.c b/src/eval.c
index ea238299488..7327d681f9a 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1329,7 +1329,7 @@ Then the value of the last BODY form is returned from the `condition-case'
1329expression. 1329expression.
1330 1330
1331The special handler (:success BODY...) is invoked if BODYFORM terminated 1331The special handler (:success BODY...) is invoked if BODYFORM terminated
1332without signalling an error. BODY is then evaluated with VAR bound to 1332without signaling an error. BODY is then evaluated with VAR bound to
1333the value returned by BODYFORM. 1333the value returned by BODYFORM.
1334 1334
1335See also the function `signal' for more info. 1335See also the function `signal' for more info.
@@ -1716,7 +1716,6 @@ signal_or_quit (Lisp_Object error_symbol, Lisp_Object data, bool keyboard_quit)
1716 Lisp_Object clause = Qnil; 1716 Lisp_Object clause = Qnil;
1717 struct handler *h; 1717 struct handler *h;
1718 1718
1719 eassert (!itree_iterator_busy_p ());
1720 if (gc_in_progress || waiting_for_input) 1719 if (gc_in_progress || waiting_for_input)
1721 emacs_abort (); 1720 emacs_abort ();
1722 1721
@@ -1810,7 +1809,7 @@ signal_or_quit (Lisp_Object error_symbol, Lisp_Object data, bool keyboard_quit)
1810 unbind_to (count, Qnil); 1809 unbind_to (count, Qnil);
1811 } 1810 }
1812 1811
1813 /* If an error is signalled during a Lisp hook in redisplay, write a 1812 /* If an error is signaled during a Lisp hook in redisplay, write a
1814 backtrace into the buffer *Redisplay-trace*. */ 1813 backtrace into the buffer *Redisplay-trace*. */
1815 if (!debugger_called && !NILP (error_symbol) 1814 if (!debugger_called && !NILP (error_symbol)
1816 && backtrace_on_redisplay_error 1815 && backtrace_on_redisplay_error