From 16524476a21a09e0195d2db34e1ed4008b91d31c Mon Sep 17 00:00:00 2001 From: Philippe Vaucher Date: Sat, 1 Oct 2016 13:11:13 +0200 Subject: [PATCH 1/2] Restore command-debug-status functionality --- src/callint.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/callint.c b/src/callint.c index 053ee6c..4652151 100644 --- a/src/callint.c +++ b/src/callint.c @@ -837,7 +837,10 @@ invoke it. If KEYS is omitted or nil, the return value of kset_last_command (current_kboard, save_last_command); { - Lisp_Object val = Ffuncall (nargs, args); + Lisp_Object val; + specbind (Vcommand_debug_status, Qnil); + + val = Ffuncall (nargs, args); val = unbind_to (speccount, val); SAFE_FREE (); return val; -- 2.10.0