aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog30
-rw-r--r--src/xterm.c3
2 files changed, 18 insertions, 15 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d51a24e53f4..4ecfc4c9b62 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12002-04-29 Stefan Monnier <monnier@cs.yale.edu>
2
3 * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
4
12002-04-29 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 52002-04-29 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 6
3 * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN) 7 * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
@@ -38,23 +42,22 @@
38 (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before 42 (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
39 calling select. 43 calling select.
40 44
41 * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and 45 * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
42 tgetent. 46
43
44 * tparam.c [MAC_OSX]: Don't define BC and UP. 47 * tparam.c [MAC_OSX]: Don't define BC and UP.
45 48
46 * config.in [HAVE_CARBON]: Add. 49 * config.in [HAVE_CARBON]: Add.
47 50
48 * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h: Move 51 * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
49 here from mac/src and mac/inc. 52 Move here from mac/src and mac/inc.
50 53
51 * s/darwin.h, m/powermac.h, unexmacosx.c: New files. 54 * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
52 55
532002-04-26 Gerd Moellmann <gerd@gnu.org> 562002-04-26 Gerd Moellmann <gerd@gnu.org>
54 57
55 * xterm.c (x_draw_phys_cursor_glyph): Undo last change. Compute 58 * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
56 phys_cursor_width from the x position returned by x_draw_glyhs, 59 Compute phys_cursor_width from the x position returned
57 which is cheaper. 60 by x_draw_glyhs, which is cheaper.
58 (x_display_and_set_cursor): Compute the buffer-local value 61 (x_display_and_set_cursor): Compute the buffer-local value
59 of `cursor-in-non-selected-windows' only when needed. 62 of `cursor-in-non-selected-windows' only when needed.
60 63
@@ -83,7 +86,7 @@
83 86
84 * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to 87 * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
85 0 for NO_CURSOR. 88 0 for NO_CURSOR.
86 89
87 * xterm.c (notice_overwritten_cursor): Fix an off by 1 error. 90 * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
88 91
892002-04-23 Colin Walters <walters@verbum.org> 922002-04-23 Colin Walters <walters@verbum.org>
@@ -95,7 +98,7 @@
95 * xterm.c (notice_overwritten_cursor): Handle the special case 98 * xterm.c (notice_overwritten_cursor): Handle the special case
96 of the cursor being in the first blank non-text line at the 99 of the cursor being in the first blank non-text line at the
97 end of a window. 100 end of a window.
98 101
99 * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor) 102 * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
100 (x_draw_phys_cursor_glyph): Set phys_cursor_width here. 103 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
101 (x_display_and_set_cursor): Don't set phys_cursor_width here, for 104 (x_display_and_set_cursor): Don't set phys_cursor_width here, for
@@ -111,8 +114,7 @@
111 114
1122002-04-23 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 1152002-04-23 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
113 116
114 * xdisp.c: Remove unused global variable 117 * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
115 `minibuf_prompt_pixel_width'.
116 118
1172002-04-22 Kim F. Storm <storm@cua.dk> 1192002-04-22 Kim F. Storm <storm@cua.dk>
118 120
diff --git a/src/xterm.c b/src/xterm.c
index 9a184fb8840..d66f719fc9f 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -10495,7 +10495,8 @@ XTread_socket (sd, bufp, numchars, expected)
10495 copy_bufsiz, &keysym, 10495 copy_bufsiz, &keysym,
10496 &status_return); 10496 &status_return);
10497 } 10497 }
10498#ifdef X_HAVE_UTF8_STRING 10498/* Xutf8LookupString is a new but already deprecated interface. -stef */
10499#if 0 && defined X_HAVE_UTF8_STRING
10499 else if (status_return == XLookupKeySym) 10500 else if (status_return == XLookupKeySym)
10500 { /* Try again but with utf-8. */ 10501 { /* Try again but with utf-8. */
10501 coding_system = Qutf_8; 10502 coding_system = Qutf_8;