aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
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')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/lisp.h4
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 @@
12011-06-18 Paul Eggert <eggert@cs.ucla.edu> 12011-06-18 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
4 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
5 implementation.
6
3 * indent.c (sane_tab_width): New function. 7 * indent.c (sane_tab_width): New function.
4 (current_column, scan_for_column, Findent_to, position_indentation) 8 (current_column, scan_for_column, Findent_to, position_indentation)
5 (compute_motion): Use it. This is just for clarity. 9 (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
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 {