comparison src/keyboard.c @ 71981:802436ff7a47

(recursive_edit_1): Use xsignal1.
author Kim F. Storm <storm@cua.dk>
date Tue, 18 Jul 2006 13:28:16 +0000
parents 4bc25e59ebd1
children 3cc6bfe3a15d 8a8e69664178
comparison
equal deleted inserted replaced
71980:423c880b693f 71981:802436ff7a47
1004 if (EQ (val, Qt)) 1004 if (EQ (val, Qt))
1005 Fsignal (Qquit, Qnil); 1005 Fsignal (Qquit, Qnil);
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 }
1013 1013
1014 /* When an auto-save happens, record the "time", and don't do again soon. */ 1014 /* When an auto-save happens, record the "time", and don't do again soon. */