aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2010-09-24 15:30:13 -0400
committerEli Zaretskii2010-09-24 15:30:13 -0400
commit5816888b23238706d35d9d6e094c24866dedf2c6 (patch)
tree3f2a3ad6fa165c8e8aeb7675cda07d5ab15b490b /src/ChangeLog
parent07914cd0078f3d8dc720644fd899ce8e3f0b1913 (diff)
downloademacs-5816888b23238706d35d9d6e094c24866dedf2c6.tar.gz
emacs-5816888b23238706d35d9d6e094c24866dedf2c6.zip
Fix int/EMACS_INT in eval.c and indent.c, correct previous changes.
indent.c (Fcurrent_indentation, indented_beyond_p) (compute_motion): Use EMACS_INT for buffer position variables. lisp.h (indented_beyond_p): Adjust prototype. buffer.c (overlay_strings): Return EMACS_INT. buffer.h (overlay_strings): Adjust prototype. region-cache.c (pp_cache): Adjust format to arguments. eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT. (call_debugger): Use EMACS_INT for specpdl_size related variables. (verror): Use EMACS_INT for size of allocated buffer.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e34f41f3edb..94ae1496921 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,20 @@
12010-09-24 Eli Zaretskii <eliz@gnu.org> 12010-09-24 Eli Zaretskii <eliz@gnu.org>
2 2
3 * indent.c (Fcurrent_indentation, indented_beyond_p)
4 (compute_motion): Use EMACS_INT for buffer position variables.
5
6 * lisp.h (indented_beyond_p): Adjust prototype.
7
8 * buffer.c (overlay_strings): Return EMACS_INT.
9
10 * buffer.h (overlay_strings): Adjust prototype.
11
12 * region-cache.c (pp_cache): Adjust format to arguments.
13
14 * eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT.
15 (call_debugger): Use EMACS_INT for specpdl_size related variables.
16 (verror): Use EMACS_INT for size of allocated buffer.
17
3 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer 18 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer
4 positions. 19 positions.
5 20