comparison src/objects.c @ 2268:61855263cb07

[xemacs-hg @ 2004-09-14 14:32:29 by james] Identify functions that don't return, including some DEFUNs.
author james
date Tue, 14 Sep 2004 14:33:07 +0000
parents a1e328407366
children 04bc9d2f42c7
comparison
equal deleted inserted replaced
2267:5753220a0f80 2268:61855263cb07
43 If we leave in the Qunbound value, we will probably get crashes. */ 43 If we leave in the Qunbound value, we will probably get crashes. */
44 Lisp_Object Vthe_null_color_instance, Vthe_null_font_instance; 44 Lisp_Object Vthe_null_color_instance, Vthe_null_font_instance;
45 45
46 /* Authors: Ben Wing, Chuck Thompson */ 46 /* Authors: Ben Wing, Chuck Thompson */
47 47
48 void 48 DOESNT_RETURN
49 finalose (void *ptr) 49 finalose (void *ptr)
50 { 50 {
51 Lisp_Object obj = wrap_pointer_1 (ptr); 51 Lisp_Object obj = wrap_pointer_1 (ptr);
52
53 52
54 invalid_operation 53 invalid_operation
55 ("Can't dump an emacs containing window system objects", obj); 54 ("Can't dump an emacs containing window system objects", obj);
56 } 55 }
57 56