diff options
| author | Nick Roberts | 2005-11-20 02:15:26 +0000 |
|---|---|---|
| committer | Nick Roberts | 2005-11-20 02:15:26 +0000 |
| commit | c003141f4c934c5437e2a6313782add05da82694 (patch) | |
| tree | 2c3973cb3c223b0d3ea018f40af1134178dc33c5 /src | |
| parent | 76986433756345132c6a736d92372b26d02ff002 (diff) | |
| download | emacs-c003141f4c934c5437e2a6313782add05da82694.tar.gz emacs-c003141f4c934c5437e2a6313782add05da82694.zip | |
Use typedef when Lisp_Object is EMACS_INT so that
this type is recognised when debugging.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 2 |
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) | |||
| 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 | ||