Mercurial > emacs
changeset 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 | 5b2899a4d703 |
children | 572ca24101c2 |
files | src/lisp.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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 */