From: Nick Roberts Date: Sun, 20 Nov 2005 02:15:26 +0000 (+0000) Subject: Use typedef when Lisp_Object is EMACS_INT so that X-Git-Tag: emacs-pretest-22.0.90~5761 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c003141f4c934c5437e2a6313782add05da82694;p=emacs.git Use typedef when Lisp_Object is EMACS_INT so that this type is recognised when debugging. --- diff --git a/src/lisp.h b/src/lisp.h index 80d45e2004b..ad5088da65f 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -253,7 +253,7 @@ LISP_MAKE_RVALUE (Lisp_Object o) /* 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 */