comparison src/lisp.h @ 83404:69e184bbba16

Merged from miles@gnu.org--gnu-2005 (patch 656-658) Patches applied: * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-656 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-657 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-658 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-444
author Karoly Lorentey <lorentey@elte.hu>
date Wed, 23 Nov 2005 01:35:21 +0000
parents 03934708f1e9 911421314d0e
children 14a4eb789b45
comparison
equal deleted inserted replaced
83403:51eb0aa362f3 83404:69e184bbba16
251 251
252 252
253 /* If union type is not wanted, define Lisp_Object as just a number. */ 253 /* If union type is not wanted, define Lisp_Object as just a number. */
254 254
255 #ifdef NO_UNION_TYPE 255 #ifdef NO_UNION_TYPE
256 #define Lisp_Object EMACS_INT 256 typedef EMACS_INT Lisp_Object;
257 #define LISP_MAKE_RVALUE(o) (0+(o)) 257 #define LISP_MAKE_RVALUE(o) (0+(o))
258 #endif /* NO_UNION_TYPE */ 258 #endif /* NO_UNION_TYPE */
259 259
260 /* Two flags that are set during GC. On some machines, these flags 260 /* Two flags that are set during GC. On some machines, these flags
261 are defined differently by the m- file. */ 261 are defined differently by the m- file. */