aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorPaul Eggert2011-06-18 11:32:22 -0700
committerPaul Eggert2011-06-18 11:32:22 -0700
commit15375a22fb35c7eb2799393617dec8c7dfe12cc2 (patch)
treeb514faa3165f232d5e8635b7de54fb9c52db1b26 /src/lisp.h
parent8fcaf9cc8183ee825e4d59cb2c3471caee303c7d (diff)
downloademacs-15375a22fb35c7eb2799393617dec8c7dfe12cc2.tar.gz
emacs-15375a22fb35c7eb2799393617dec8c7dfe12cc2.zip
* lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE, implementation.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 0d51fc7be71..7c9275e6078 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -291,7 +291,7 @@ union Lisp_Object
291 { 291 {
292 /* Used for comparing two Lisp_Objects; 292 /* Used for comparing two Lisp_Objects;
293 also, positive integers can be accessed fast this way. */ 293 also, positive integers can be accessed fast this way. */
294 EMACS_UINT i; 294 EMACS_INT i;
295 295
296 struct 296 struct
297 { 297 {
@@ -315,7 +315,7 @@ union Lisp_Object
315 { 315 {
316 /* Used for comparing two Lisp_Objects; 316 /* Used for comparing two Lisp_Objects;
317 also, positive integers can be accessed fast this way. */ 317 also, positive integers can be accessed fast this way. */
318 EMACS_UINT i; 318 EMACS_INT i;
319 319
320 struct 320 struct
321 { 321 {