summaryrefslogtreecommitdiff
path: root/src/lisp.h
diff options
context:
space:
mode:
authorNick Roberts <nickrob@snap.net.nz>2005-11-20 02:15:26 +0000
committerNick Roberts <nickrob@snap.net.nz>2005-11-20 02:15:26 +0000
commitc003141f4c934c5437e2a6313782add05da82694 (patch)
tree2c3973cb3c223b0d3ea018f40af1134178dc33c5 /src/lisp.h
parent76986433756345132c6a736d92372b26d02ff002 (diff)
downloademacs-c003141f4c934c5437e2a6313782add05da82694.tar.gz
Use typedef when Lisp_Object is EMACS_INT so that
this type is recognised when debugging.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
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 */