]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 18 Jun 2011 18:32:22 +0000 (11:32 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 18 Jun 2011 18:32:22 +0000 (11:32 -0700)
This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
implementation.

src/ChangeLog
src/lisp.h

index 00c255170eee51a27d256bcd8f372000a151d89d..63c4597f5c0b6da61f35ba660789f58dd4afd59d 100644 (file)
@@ -1,5 +1,9 @@
 2011-06-18  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
+       This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
+       implementation.
+
        * indent.c (sane_tab_width): New function.
        (current_column, scan_for_column, Findent_to, position_indentation)
        (compute_motion): Use it.  This is just for clarity.
index 0d51fc7be715e4bc309aae538b55325c6cc69558..7c9275e6078ad7463b8791bbdac21e4a6492e403 100644 (file)
@@ -291,7 +291,7 @@ union Lisp_Object
   {
     /* Used for comparing two Lisp_Objects;
        also, positive integers can be accessed fast this way.  */
-    EMACS_UINT i;
+    EMACS_INT i;
 
     struct
       {
@@ -315,7 +315,7 @@ union Lisp_Object
   {
     /* Used for comparing two Lisp_Objects;
        also, positive integers can be accessed fast this way.  */
-    EMACS_UINT i;
+    EMACS_INT i;
 
     struct
       {