comparison src/ChangeLog @ 50132:29efb33d1b33

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 14 Mar 2003 20:49:04 +0000
parents c078950f7aa6
children d2526c7c1f0d
comparison
equal deleted inserted replaced
50131:c078950f7aa6 50132:29efb33d1b33
40 40
41 2003-03-12 Kim F. Storm <storm@cua.dk> 41 2003-03-12 Kim F. Storm <storm@cua.dk>
42 42
43 The following changes consolidates the fringe handling from 43 The following changes consolidates the fringe handling from
44 xterm.c, w32term.c, and macterm.c into xdisp.c. 44 xterm.c, w32term.c, and macterm.c into xdisp.c.
45 45
46 * xdisp.c: Consolidate fringe handling code here. 46 * xdisp.c: Consolidate fringe handling code here.
47 (left_bits, right_bits, continued_bits, continuation_bits) 47 (left_bits, right_bits, continued_bits, continuation_bits)
48 (ov_bits, zv_bits): Define fringe bitmaps. 48 (ov_bits, zv_bits): Define fringe bitmaps.
49 (fringe_bitmaps): New array holding fringe bitmaps. 49 (fringe_bitmaps): New array holding fringe bitmaps.
50 (draw_fringe_bitmap): Draw a specific bitmap; call display 50 (draw_fringe_bitmap): Draw a specific bitmap; call display
65 (x_redisplay_interface): Add x_draw_fringe_bitmap member. 65 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
66 66
67 * w32term.c: Remove generic fringe code. 67 * w32term.c: Remove generic fringe code.
68 (w32_draw_fringe_bitmap): Only perform actual fringe drawing. 68 (w32_draw_fringe_bitmap): Only perform actual fringe drawing.
69 (w32_redisplay_interface): Add w32_draw_fringe_bitmap member. 69 (w32_redisplay_interface): Add w32_draw_fringe_bitmap member.
70 70
71 * macterm.c: Remove generic fringe code. 71 * macterm.c: Remove generic fringe code.
72 (x_draw_fringe_bitmap): Only perform actual fringe drawing. 72 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
73 (x_redisplay_interface): Add x_draw_fringe_bitmap member. 73 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
74
75 2003-03-11 Stefan Monnier <monnier@cs.yale.edu>
76
77 * print.c (Fprin1_to_string): Return unibyte string if possible.
74 78
75 2003-03-09 David Kastrup <dak@gnu.org> 79 2003-03-09 David Kastrup <dak@gnu.org>
76 80
77 * process.c (read_process_output): We have allocated enough space 81 * process.c (read_process_output): We have allocated enough space
78 for readmax and carryover, so actually use the alloted space. 82 for readmax and carryover, so actually use the alloted space.
86 for USE_GTK. 90 for USE_GTK.
87 (x_scroll_bar_handle_click): Use this function for toolkit scrollbars 91 (x_scroll_bar_handle_click): Use this function for toolkit scrollbars
88 also. 92 also.
89 (handle_one_xevent): ButtonPress/Release: If event is for a toolkit 93 (handle_one_xevent): ButtonPress/Release: If event is for a toolkit
90 scrollbar and control is pressed, call x_scroll_bar_handle_click. 94 scrollbar and control is pressed, call x_scroll_bar_handle_click.
91 95
92 * gtkutil.h: Declare xg_get_scroll_id_for_window. 96 * gtkutil.h: Declare xg_get_scroll_id_for_window.
93 97
94 * gtkutil.c (xg_get_scroll_id_for_window): New function. 98 * gtkutil.c (xg_get_scroll_id_for_window): New function.
95 (xg_tool_bar_item_expose_callback): New function. 99 (xg_tool_bar_item_expose_callback): New function.
96 (xg_tool_bar_expose_callback): Call update_frame_tool_bar. 100 (xg_tool_bar_expose_callback): Call update_frame_tool_bar.
100 to expose on the tool bar item widgets. 104 to expose on the tool bar item widgets.
101 105
102 2003-03-08 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 106 2003-03-08 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
103 107
104 * gtkutil.c (update_frame_tool_bar): Compare pixmap ID instead of 108 * gtkutil.c (update_frame_tool_bar): Compare pixmap ID instead of
105 struct image* when desciding to update (struct image* may have been 109 struct image* when deciding to update (struct image* may have been
106 deleted from the image cache). 110 deleted from the image cache).
107 111
108 * xterm.c (handle_one_xevent): Pass ReparentNotify to Xt even if 112 * xterm.c (handle_one_xevent): Pass ReparentNotify to Xt even if
109 the event isn't for a frame (i.e. for dialogs). 113 the event isn't for a frame (i.e. for dialogs).
110 114
111 2003-03-07 Kenichi Handa <handa@m17n.org> 115 2003-03-07 Kenichi Handa <handa@m17n.org>
112 116
113 * coding.c (CODING_ADD_COMPOSITION_COMPONENT): If the number of 117 * coding.c (CODING_ADD_COMPOSITION_COMPONENT): If the number of
114 composition components reaches the limit, terminate composing. 118 composition components reaches the limit, terminate composing.
115 (COMPOSITION_OK): New macro. 119 (COMPOSITION_OK): New macro.
116 (detect_coding_iso2022): Use it if an escapse sequence for 120 (detect_coding_iso2022): Use it if an escape sequence for
117 composition is found. 121 composition is found.
118 (coding_restore_composition): Adjust the number of composition 122 (coding_restore_composition): Adjust the number of composition
119 components if it is not sane. 123 components if it is not sane.
120 124
121 2003-03-06 Juanma Barranquero <lektu@terra.es> 125 2003-03-06 Juanma Barranquero <lektu@terra.es>