Fixed typo in queue_signal(): instead of popping a cons from the signal queue, the cons was discarded.

This commit is contained in:
Juan Jose Garcia Ripoll 2012-11-27 23:40:11 +01:00
parent d674020bd8
commit c4a538dd27

View file

@ -377,7 +377,7 @@ queue_signal(cl_env_ptr env, cl_object code, int allocate)
if (allocate) {
record = ecl_list1(ECL_NIL);
} else {
record = ECL_CONS_CAR(env->signal_queue);
record = env->signal_queue;
if (record != ECL_NIL) {
env->signal_queue = ECL_CONS_CDR(record);
}