aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog9
-rw-r--r--src/macterm.h3
2 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index cea6434be30..645d67ea928 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12007-03-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * macterm.c (x_scroll_bar_create, XTread_socket): Replace #if
4 USE_TOOLKIT_SCROLL_BARS with #ifdef USE_TOOLKIT_SCROLL_BARS.
5 (x_set_window_size): Call SET_FRAME_GARBAGED. Clear window if
6 internal border width has changed.
7
8 * macterm.h (struct mac_output): New member `internal_border_width'.
9
12007-03-04 Richard Stallman <rms@gnu.org> 102007-03-04 Richard Stallman <rms@gnu.org>
2 11
3 * window.c (Fdisplay_buffer): Doc fix. 12 * window.c (Fdisplay_buffer): Doc fix.
diff --git a/src/macterm.h b/src/macterm.h
index 3d0b41f6efe..b3826c5e7f7 100644
--- a/src/macterm.h
+++ b/src/macterm.h
@@ -327,6 +327,9 @@ struct mac_output
327 They are changed only when a different background is involved. */ 327 They are changed only when a different background is involved. */
328 unsigned long relief_background; 328 unsigned long relief_background;
329 329
330 /* Width of the internal border. */
331 int internal_border_width;
332
330 /* Hints for the size and the position of a window. */ 333 /* Hints for the size and the position of a window. */
331 XSizeHints *size_hints; 334 XSizeHints *size_hints;
332 335