diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | 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 @@ | |||
| 1 | 2011-06-18 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-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 | { |