comparison src/lisp.h @ 10003:c5a44b9c6565

(XSETCOMPILED): New macro.
author Karl Heuer <kwzh@gnu.org>
date Fri, 18 Nov 1994 02:30:32 +0000
parents 214a00665c2b
children 67375493afa2
comparison
equal deleted inserted replaced
10002:5b2b7e378772 10003:c5a44b9c6565
388 #define XSETMISC(a, b) XSET (a, Lisp_Misc, b) 388 #define XSETMISC(a, b) XSET (a, Lisp_Misc, b)
389 #define XSETWINDOW(a, b) XSET (a, Lisp_Window, b) 389 #define XSETWINDOW(a, b) XSET (a, Lisp_Window, b)
390 #define XSETPROCESS(a, b) XSET (a, Lisp_Process, b) 390 #define XSETPROCESS(a, b) XSET (a, Lisp_Process, b)
391 #define XSETFLOAT(a, b) XSET (a, Lisp_Float, b) 391 #define XSETFLOAT(a, b) XSET (a, Lisp_Float, b)
392 #define XSETWINDOW_CONFIGURATION(a, b) XSET (a, Lisp_Window_Configuration, b) 392 #define XSETWINDOW_CONFIGURATION(a, b) XSET (a, Lisp_Window_Configuration, b)
393 #define XSETCOMPILED(a, b) XSET (a, Lisp_Compiled, b)
393 #define XSETMARKER(a, b) (XSETMISC (a, b), XMISC (a)->type = Lisp_Misc_Marker) 394 #define XSETMARKER(a, b) (XSETMISC (a, b), XMISC (a)->type = Lisp_Misc_Marker)
394 395
395 #ifdef USE_TEXT_PROPERTIES 396 #ifdef USE_TEXT_PROPERTIES
396 /* Basic data type for use of intervals. See the macros in intervals.h */ 397 /* Basic data type for use of intervals. See the macros in intervals.h */
397 398