aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorThien-Thi Nguyen2002-06-03 01:58:20 +0000
committerThien-Thi Nguyen2002-06-03 01:58:20 +0000
commite2c0561ec51837dad43442727ac97279a7b346ca (patch)
tree44e21d7d47ab7aba63900d4c47312c97a09861b0 /src/ChangeLog
parent097812fb661072fcf0bdfa38e93cda596ac9b2c2 (diff)
downloademacs-e2c0561ec51837dad43442727ac97279a7b346ca.tar.gz
emacs-e2c0561ec51837dad43442727ac97279a7b346ca.zip
(current_column): Now returns float.
(indented_beyond_p): 3rd arg now a float.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog36
1 files changed, 30 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9be130c46f0..93299b9c296 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,27 @@
12002-06-02 Thien-Thi Nguyen <ttn@gnu.org>
2
3 * bytecode.c (Fbyte_code): Cast `current_column' return value to int.
4 * cmds.c (Fdelete_backward_char, internal_self_insert): Likewise.
5 * keymap.c (describe_command): Likewise.
6 * minibuf.c (read_minibuf): Likewise.
7
8 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
9 Cast `current_column' return value to int.
10 (back_to_previous_visible_line_start,
11 reseat_at_next_visible_line_start, next_element_from_buffer):
12 Cast `indented_beyond_p' 3rd arg to float.
13
14 * indent.c (last_known_column): Now a float.
15 (current_column_1, position_indentation, current_column,
16 string_display_width): Return float.
17 (Fcurrent_column): Cast `current_column' return value to int.
18 (Fcurrent_indentation): Cast `position_indentation' retval to int.
19 (indented_beyond_p): Third arg now a float.
20 (compute_motion, vmotion): Cast `indented_beyond_p' 3rd arg to float.
21
22 * lisp.h (current_column): Now returns float.
23 (indented_beyond_p): 3rd arg now a float.
24
12002-05-31 Eli Zaretskii <eliz@is.elta.co.il> 252002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
2 26
3 * xfns.c (x_encode_text): Return stringp non-NULL if coding_system 27 * xfns.c (x_encode_text): Return stringp non-NULL if coding_system
@@ -57,7 +81,7 @@
57 (substitute_object_recurse, substitute_object_in_subtree) 81 (substitute_object_recurse, substitute_object_in_subtree)
58 (substitute_in_interval): Prototype. 82 (substitute_in_interval): Prototype.
59 (read_multibyte): Return c if it's less than zero. 83 (read_multibyte): Return c if it's less than zero.
60 84
612002-05-28 Kim F. Storm <storm@cua.dk> 852002-05-28 Kim F. Storm <storm@cua.dk>
62 86
63 * fileio.c (Fread_file_name_internal): Added brute-force 87 * fileio.c (Fread_file_name_internal): Added brute-force
@@ -77,7 +101,7 @@
77 Call Vread_file_name_function to read the file name if non-nil. 101 Call Vread_file_name_function to read the file name if non-nil.
78 102
79 * lisp.h (Fread_file_name): Now has 6 args. 103 * lisp.h (Fread_file_name): Now has 6 args.
80 104
81 * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p 105 * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p
82 predicate for Fread_file_name when reading directory name. 106 predicate for Fread_file_name when reading directory name.
83 Supply Qnil for predicate in other calls to Fread_file_name. 107 Supply Qnil for predicate in other calls to Fread_file_name.
@@ -1036,8 +1060,8 @@
1036 * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame. 1060 * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
1037 (Fimage_size, Fimage_mask_p, XPutPixel): New functions. 1061 (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
1038 (four_corners_best, x_clear_image_1, x_clear_image) 1062 (four_corners_best, x_clear_image_1, x_clear_image)
1039 (x_alloc_image_color, postprocess_image) 1063 (x_alloc_image_color, postprocess_image)
1040 (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image) 1064 (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image)
1041 (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows. 1065 (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
1042 (init_xfns, syms_of_w32fns): Initialize image functions and constants. 1066 (init_xfns, syms_of_w32fns): Initialize image functions and constants.
1043 1067
@@ -1052,7 +1076,7 @@
1052 socket functions. 1076 socket functions.
1053 (socket_to_fd): New function. 1077 (socket_to_fd): New function.
1054 (sys_socket): Use it. 1078 (sys_socket): Use it.
1055 (sys_setsockopt, sys_listen, sys_getsockname, sys_accept) 1079 (sys_setsockopt, sys_listen, sys_getsockname, sys_accept)
1056 (sys_recvfrom, sys_sendto): New wrapper functions. 1080 (sys_recvfrom, sys_sendto): New wrapper functions.
1057 1081
1058 * process.c (QCfamily, QCfilter): Remove duplicate declaration 1082 * process.c (QCfamily, QCfilter): Remove duplicate declaration
@@ -1182,7 +1206,7 @@
1182 1206
11832002-03-16 Richard M. Stallman <rms@gnu.org> 12072002-03-16 Richard M. Stallman <rms@gnu.org>
1184 1208
1185 * xdisp.c (redisplay_internal, redisplay_windows): 1209 * xdisp.c (redisplay_internal, redisplay_windows):
1186 Use list_of_error to call internal_condition_case_1. 1210 Use list_of_error to call internal_condition_case_1.
1187 (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2} 1211 (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
1188 so as to catch all errors with no possibility of debugger redisplay. 1212 so as to catch all errors with no possibility of debugger redisplay.