aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-06-18 12:13:46 -0700
committerPaul Eggert2011-06-18 12:13:46 -0700
commit9a8e8d9b22be9652ed2f2e8acc02e1139b34d9dd (patch)
treed5fc4d3bd2f8c081a6ab83e91108b1d1253c0368 /src/ChangeLog
parentb61cc01c06234b0f48b5485d7d592c1c81c05c70 (diff)
downloademacs-9a8e8d9b22be9652ed2f2e8acc02e1139b34d9dd.tar.gz
emacs-9a8e8d9b22be9652ed2f2e8acc02e1139b34d9dd.zip
* lisp.h (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
not EMACS_UINT and EMACS_INT, when converting pointer to integer. This avoids a GCC warning when WIDE_EMACS_INT.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 04e8aeef848..aa0a0a39bb8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -6,6 +6,9 @@
6 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT. 6 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
7 We prefer signed types, and the value cannot exceed the EMACS_INT 7 We prefer signed types, and the value cannot exceed the EMACS_INT
8 range anyway (because otherwise the length would not be representable). 8 range anyway (because otherwise the length would not be representable).
9 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
10 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
11 This avoids a GCC warning when WIDE_EMACS_INT.
9 12
10 * indent.c (sane_tab_width): New function. 13 * indent.c (sane_tab_width): New function.
11 (current_column, scan_for_column, Findent_to, position_indentation) 14 (current_column, scan_for_column, Findent_to, position_indentation)