aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-03-06 02:27:06 -0800
committerPaul Eggert2011-03-06 02:27:06 -0800
commit7831777b8a9e8d2f68bd17058359ea8849d66f70 (patch)
tree633cc6fdd638927360ff83619a32def87ed02b4c /src/ChangeLog
parent179b8720a2e5c37d18ab8f601b982fdcabd19626 (diff)
downloademacs-7831777b8a9e8d2f68bd17058359ea8849d66f70.tar.gz
emacs-7831777b8a9e8d2f68bd17058359ea8849d66f70.zip
current_column: Now returns EMACS_INT, fixing some iftc.
* bytecode.c (Fbyte_code): Don't cast current_column () to int. * cmds.c (internal_self_insert): Likewise. * indent.c (Fcurrent_column): Likewise. * keymap.c (describe_command): Likewise. * minibuf.c (read_minibuf): Likewise. * indent.c (Fcurrent_indentation): Don't cast position_indentation () to int. * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec): Likewise. * cmds.c (internal_self_insert): Declare locals to be EMACS_INT, not int or double, if they might contain a column number. * indent.c (current_column, Findent_to, indented_beyond_p): (compute_motion, vmotion): Likewise. * keymap.c (describe_command): Likewise. * xdisp.c (pint2str): Likewise. * indent.c (last_known_column): Now EMACS_INT, not int. * minibuf.c (minibuf_prompt_width): Likewise. * indent.c (current_column, current_column_1, position_indentation): Return EMACS_INT, not double. * lisp.h (current_column): Likewise. * indent.c (indented_beyond_p): Last arg is now EMACS_INT, not double. All callers changed. * lisp.h (indented_beyond_p): Likewise.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4955966ad81..d0380e42e49 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,30 @@
12011-03-06 Paul Eggert <eggert@cs.ucla.edu> 12011-03-06 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 current_column: Now returns EMACS_INT, fixing some iftc.
4 * bytecode.c (Fbyte_code): Don't cast current_column () to int.
5 * cmds.c (internal_self_insert): Likewise.
6 * indent.c (Fcurrent_column): Likewise.
7 * keymap.c (describe_command): Likewise.
8 * minibuf.c (read_minibuf): Likewise.
9 * indent.c (Fcurrent_indentation): Don't cast position_indentation ()
10 to int.
11 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
12 Likewise.
13 * cmds.c (internal_self_insert): Declare locals to be EMACS_INT,
14 not int or double, if they might contain a column number.
15 * indent.c (current_column, Findent_to, indented_beyond_p):
16 (compute_motion, vmotion): Likewise.
17 * keymap.c (describe_command): Likewise.
18 * xdisp.c (pint2str): Likewise.
19 * indent.c (last_known_column): Now EMACS_INT, not int.
20 * minibuf.c (minibuf_prompt_width): Likewise.
21 * indent.c (current_column, current_column_1, position_indentation):
22 Return EMACS_INT, not double.
23 * lisp.h (current_column): Likewise.
24 * indent.c (indented_beyond_p): Last arg is now EMACS_INT, not double.
25 All callers changed.
26 * lisp.h (indented_beyond_p): Likewise.
27
3 * minibuf.c (minibuf_prompt, minibuf_prompt_width): Move here 28 * minibuf.c (minibuf_prompt, minibuf_prompt_width): Move here
4 from xdisp.c, and make static, since these are used only here. 29 from xdisp.c, and make static, since these are used only here.
5 * window.h, xdisp.c (minibuf_prompt, minibuf_prompt_width): 30 * window.h, xdisp.c (minibuf_prompt, minibuf_prompt_width):