aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-07-18 13:28:16 +0000
committerKim F. Storm2006-07-18 13:28:16 +0000
commit43cae48c41f5f20bffdf8277df8dac479225d450 (patch)
treea55a9de49755017e821bef45fbd67b49d05d1517
parent9dc951871640a56262fa3a0e52fdf8119f8cafb6 (diff)
downloademacs-43cae48c41f5f20bffdf8277df8dac479225d450.tar.gz
emacs-43cae48c41f5f20bffdf8277df8dac479225d450.zip
(recursive_edit_1): Use xsignal1.
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 4cbccb0b1a2..f6e8eadcf8c 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1006,7 +1006,7 @@ recursive_edit_1 ()
1006 /* Handle throw from read_minibuf when using minibuffer 1006 /* Handle throw from read_minibuf when using minibuffer
1007 while it's active but we're in another window. */ 1007 while it's active but we're in another window. */
1008 if (STRINGP (val)) 1008 if (STRINGP (val))
1009 Fsignal (Qerror, Fcons (val, Qnil)); 1009 xsignal1 (Qerror, val);
1010 1010
1011 return unbind_to (count, Qnil); 1011 return unbind_to (count, Qnil);
1012} 1012}