From 15375a22fb35c7eb2799393617dec8c7dfe12cc2 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 18 Jun 2011 11:32:22 -0700 Subject: [PATCH] * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT. This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE, implementation. --- src/ChangeLog | 4 ++++ src/lisp.h | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 00c255170ee..63c4597f5c0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,9 @@ 2011-06-18 Paul Eggert + * 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. 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 { /* 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 { -- 2.39.2