diff src/lisp.h @ 67029:911421314d0e

Use typedef when Lisp_Object is EMACS_INT so that this type is recognised when debugging.
author Nick Roberts <nickrob@snap.net.nz>
date Sun, 20 Nov 2005 02:15:26 +0000
parents b991cdef1a8d
children b23a7ce63153 69e184bbba16
line wrap: on
line diff
--- a/src/lisp.h	Sun Nov 20 02:13:53 2005 +0000
+++ b/src/lisp.h	Sun Nov 20 02:15:26 2005 +0000
@@ -253,7 +253,7 @@
 /* If union type is not wanted, define Lisp_Object as just a number.  */
 
 #ifdef NO_UNION_TYPE
-#define Lisp_Object EMACS_INT
+typedef EMACS_INT Lisp_Object;
 #define LISP_MAKE_RVALUE(o) (0+(o))
 #endif /* NO_UNION_TYPE */