comparison src/device-x.c @ 3466:4d52aea479a2

[xemacs-hg @ 2006-06-21 17:30:33 by james] Fix various problems found by static checkers. Also, but back the CURCHARSIZE macro in window.c to preserve the abstraction. <m3mzc6wh85.fsf_-_@jerrypc.cs.usu.edu>
author james
date Wed, 21 Jun 2006 17:30:37 +0000
parents 141c2920ea48
children cb9e9a46686b
comparison
equal deleted inserted replaced
3465:af932b7bc2ee 3466:4d52aea479a2
1213 1213
1214 /* According to X specs, we should not return from this function, or 1214 /* According to X specs, we should not return from this function, or
1215 Xlib might just decide to exit(). So we mark the offending 1215 Xlib might just decide to exit(). So we mark the offending
1216 console for deletion and throw to top level. */ 1216 console for deletion and throw to top level. */
1217 if (d) 1217 if (d)
1218 enqueue_magic_eval_event (io_error_delete_device, dev); 1218 {
1219 DEVICE_X_BEING_DELETED (d) = 1; 1219 enqueue_magic_eval_event (io_error_delete_device, dev);
1220 DEVICE_X_BEING_DELETED (d) = 1;
1221 }
1220 Fthrow (Qtop_level, Qnil); 1222 Fthrow (Qtop_level, Qnil);
1221 1223
1222 RETURN_NOT_REACHED (0); 1224 RETURN_NOT_REACHED (0);
1223 } 1225 }
1224 1226