annotate src/ChangeLog @ 286:57709be46d1b r21-0b41

Import from CVS: tag r21-0b41
author cvs
date Mon, 13 Aug 2007 10:35:03 +0200
parents 558f606b08ae
children e11d67e05968
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
1 1998-05-23 SL Baur <steve@altair.xemacs.org>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
2
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
3 * getloadavg.c (getloadavg): Fix typo.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
4
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
5 1998-05-23 Kirill M. Katsnelson <kkm@kis.ru>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
6
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
7 * objects-msw.c (mswindows_initialize_font_instance): Added support
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
8 for font character sets.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
9 Replaced 'XXX' with '####' in comments throughout the file.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
10
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
11 1998-05-23 Kirill M. Katsnelson <kkm@kis.ru>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
12
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
13 * emacs.c (main_1): Added calls to vars_of_dialog_mswindows() and
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
14 console_type_create_dialog_mswindows(), to initialize Windows dialog
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
15 support.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
16
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
17 * symsinit.h: Prototyped the above functions.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
18
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
19 * dialog-x.c (x_popup_dialog_box): Moved dialog descriptor consistency
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
20 checks to dialog.c...
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
21
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
22 * dialog.c (Fpopup_dialog_box): ...right here. Added more checks: a
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
23 device must support dialog boxes, and the descriptor must supply at
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
24 least one button.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
25
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
26 * dialog-msw.c: New file, dialogs for Windows.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
27
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
28 1998-05-21 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
29
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
30 * eldap.c (ldap_search_unwind): Return Qnil instead of nothing
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
31 (Fldap_search_internal): Removed unused variable `err'
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
32
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
33 * eldap.h: Moved Lisp_LDAP declaration here instead of using a
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
34 forward declaration
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
35
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
36 1998-05-17 Martin Buchholz <martin@xemacs.org>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
37
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
38 * eldap.h: eldap.[ch] should never be used unless HAVE_LDAP is
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
39 defined. Therefore there is no need to handle the case when
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
40 HAVE_LDAP is undefined. Similarily, there is no reason to have
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
41 any code wrapped within `#ifdef emacs', since this code is only
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
42 useful within an emacs. This simplifies the code significantly.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
43
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
44 * inline.c: Include eldap.h only if HAVE_LDAP.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
45 * inline.c: Don't bother including TT_C_H_PATH, since tooltalk.h
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
46 already does that.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
47
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
48 1998-05-21 Kirill M. Katsnelson <kkm@kis.ru>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
49
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
50 * unexnt.c (copy_executable_and_dump_data_section): Suppress
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
51 printing dump stats when building without DEBUG_XEMACS.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
52 (dump_bss_and_heap): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
53
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
54 1998-05-21 Andy Piper <andyp@parallax.co.uk>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
55
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
56 * gnuclient.c: don't suppress window system if there is no display
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
57 and we are running under mswindows. send 'mswindows device type if
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
58 we are in this situation.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
59
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
60 1998-05-20 Andy Piper <andyp@parallax.co.uk>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
61
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
62 * general.c:
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
63 * lisp.h: Qbitmap, Qcursor, Qicon moved here from glyphs-msw.c.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
64
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
65 * glyphs-msw.c: change cursor imgae type name to resource. Fix
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
66 some nits.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
67
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
68 1998-05-20 Kirill M. Katsnelson <kkm@kis.ru>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
69
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
70 * EmacsFrame.c (Xt_StringToScrollBarPlacement): Added support for
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
71 {top,bottom}-{left,right} values in addition to
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
72 {top,bottom}_{left,right}.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
73
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
74 1998-05-18 Hrvoje Niksic <hniksic@srce.hr>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
75
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
76 * fileio.c (Fmake_temp_name): Remove unreached code.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
77
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
78 * process-nt.c (validate_signal_number): Use
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
79 signal_simple_error().
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
80
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
81 1998-05-19 Martin Buchholz <martin@xemacs.org>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
82
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
83 * unexhp9k800.c:
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
84 * sound.c (vars_of_sound):
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
85 * sysdep.c (reset_sigio_on_device):
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
86 * window.c (window_bottom_gutter_height):
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
87 unexhp9k800.c:258: warning: implicit declaration of function
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
88 `calculate_checksum'
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
89 sound.c:604: warning: implicit declaration of function `vars_of_hpplay'
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
90 sysdep.c:1012: warning: unused variable `owner'
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
91 window.c:993: warning: `window_right_toolbar_width' defined but not used
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
92
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
93 1998-05-19 Andy Piper <andyp@parallax.co.uk>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
94
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
95 * glyphs-msw.c (mswindows_create_resized_mask)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
96 (mswindows_create_resized_bitmap): new funnctions split out from
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
97 mswindows_resize_dibitmap_instance.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
98
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
99 * glyphs-msw.h: declare new resize functions.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
100
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
101 * toolbar-msw.c (mswindows_output_toolbar): use new bitmap resize
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
102 functions so that the original bitmaps are preserved.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
103
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
104 * sheap.c: fixup static heap exhausted error to avoid FAQs.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
105
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
106 * redisplay-msw.c (mswindows_output_blank): fixup brush from bg
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
107 color if we are trying to output 0 depth bg pixmap.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
108
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
109 * scrollbar-msw.c: warning elimination.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
110
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
111 1998-05-18 Martin Buchholz <martin@xemacs.org>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
112
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
113 * frame-x.c (x_update_frame_external_traits): Start preprocessor
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
114 directives in column 1.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
115
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
116 * search.c (skip_chars): Avoid using xzero with arrays, since some
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
117 compilers get confused by the construct &array.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
118
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
119 1998-05-18 Kirill M. Katsnelson <kkm@kis.ru>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
120
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
121 * objects-msw.h:
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
122 * objects-msw.c: Changed the charset value for a new font from
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
123 "don't care" to "ansi".
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
124
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
125 * glyphs-msw.c (convert_EImage_to_DIBitmap): Warnings fix.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
126
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
127 1998-05-18 Kirill M. Katsnelson <kkm@kis.ru>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
128
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
129 * event-msw.c (mswindows_wnd_proc, WM_KEYDOWN): Do not clear shift
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
130 modifier on control chars.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
131 Use IsCharAlpha() instead of isaplha().
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
132
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
133 1998-05-19 Kazuyuki IENAGA <ienaga@jsys.co.jp>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
134
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
135 * s/freebsd.h: FreeBSD 2.2.6 now supports setlocale(LC_ALL, "").
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
136
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
137 1998-05-18 Kirill M. Katsnelson <kkm@kis.ru>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
138
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
139 * toolbar.c: Removed toolbar_data lrecord implementation.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
140 (mark_frame_toolbar_buttons_dirty): Replase usage of toolbar_data
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
141 with toolbar_buttons (via FRAME_TOOLBAR_BUTTONS).
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
142 (compute_frame_toolbar_buttons): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
143 (CHECK_TOOLBAR): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
144 (set_frame_toolbar): Removed allocation of toolbar_data lrecord.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
145 (update_frame_toolbars): Do not check for changed buffer
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
146 here. Toolbar information is provided by cached specs in
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
147 windows. The check for buffer is eliminated becuase toolbars are
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
148 marked changed in set_frame_selected_window() in frame.c
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
149 Added check for changed toolbars geometry.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
150 (compute_frame_toolbars_data): Removed unused second parameter;
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
151 Adjusted callers of this static function throughout the file.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
152 (init_frame_toolbars): Initialize current_toolbar_size.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
153 (update_frame_toolbars): Use DEVICE_SUPPORTS_TOOLBARS_P instead of
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
154 what is its current expansion, for clarity.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
155 (init_frame_toolbars): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
156 (init_device_toolbars): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
157 (init_global_toolbars): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
158
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
159 * toolbar.h: Removed definition of toolbar_data lrecord.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
160 Added accessor macros FRAME_TOOLBAR_BUTTONS and
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
161 FRAME_CURRENT_TOOLBAR_SIZE.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
162 Added macro DEVICE_SUPPORTS_TOOLBARS_P.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
163
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
164 * toolbar-x.c (x_output_toolbar): The same change as in
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
165 toolbar-msw.c
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
166 (x_output_toolbar): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
167 (x_redraw_exposed_toolbar): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
168
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
169 * toolbar-msw.c (mswindows_output_toolbar): Retrieve current
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
170 buttons from toolbar_buttons using FRAME_TOOLBAR_BUTTONS macro.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
171 (mswindows_output_toolbar): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
172 (mswindows_output_toolbar): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
173
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
174 * frame.c (mark_frame): Removed marking of arrays, according to
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
175 frameslots.h change.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
176 (nuke_all_frame_slots): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
177 (set_frame_selected_window): Mark toolbars changed when
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
178 last_nonminibuf_window changes.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
179
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
180 * frame.h (struct frame): Moved some slots to frameslots.h.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
181 Added current_toolbar_size array.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
182 Changed references from toolbar_data to toolbar_buttons in macros
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
183 FRAME_RAW_THEORETICAL_TOOLBAR_VISIBLE,
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
184 FRAME_RAW_THEORETICAL_TOOLBAR_SIZE and
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
185 FRAME_RAW_THEORETICAL_TOOLBAR_BORDER_WIDTH.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
186
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
187 * frameslots.h: Added macro MARKED_SLOT_ARRAY a la winslots.h
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
188 Moved arrays of lisp objects here from frame.h: toolbar_size,
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
189 toolbar_visible_p, toolbar_border_width.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
190 Removed toolbar_data slot and added toolbar_buttons.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
191
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
192 1998-05-17 Kirill M. Katsnelson <kkm@kis.ru>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
193
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
194 * symsinit.h: Externed syms_of_process_nt()
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
195
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
196 * emacs.c (main_1): Call syms_of_process_nt()
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
197
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
198 * process-nt.c: Quote process arguments by a call to Lisp function
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
199 `nt-quote-process-args'.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
200 (syms_of_process_nt): New function.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
201 (nt_send_process): Flush data stream after each write, to avoid
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
202 leaving buffered data.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
203 (nt_send_process): When blocked on process output, wait for
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
204 process to slurp more for progressively increasing time intervals.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
205
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
206 1998-05-17 Martin Buchholz <martin@xemacs.org>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
207
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
208 * window.c (have_undivided_common_edge): Make file-local function
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
209 static.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
210 (map_windows): Return 0 if all map functions successful.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
211 Fix typos.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
212
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
213 * winslots.h: Use unlikely names for local variables in macros to
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
214 avoid shadowing warnings.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
215
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
216 1998-05-17 Andy Piper <andyp@parallax.co.uk>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
217
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
218 * toolbar-msw.c (mswindows_output_toolbar): hash on toolbar width
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
219 so that we re-output if the toolbar size has changed.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
220
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
221 1998-05-17 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
222
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
223 * s/aix4-2.h (ALIGN_DATA_RELOC): Undefined to support new unexaix.c.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
224
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
225 * s/aix3-1.h (ALIGN_DATA_RELOC): Defined to support new unexaix.c.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
226
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
227 * unexaix.c: Massive cleanup and support of AIX 4.2 (and hopefully
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
228 greater).
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
229
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
230 1998-05-16 Kirill M. Katsnelson <kkm@kis.ru>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
231
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
232 * glyphs-msw.c: Defined OEMRESOURCE before including windows.h to
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
233 get bitmap manifest constants defined.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
234
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
235 * console-msw.h: Include system files in angle brackets, not in
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
236 quotes.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
237
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
238 * window.c (specifier_vars_of_window): Fixed a typo in
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
239 `vertical-divider-line-width' docstirng.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
240
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
241 1998-05-16 Olivier Galibert <galibert@pobox.com>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
242
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
243 * line-number.c (delete_invalidate_line_number_cache): Use an
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
244 EMACS_INT.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
245 (buffer_line_number): Remove dangerous, plain wrong when using
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
246 64bits emacs ints, cast.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
247
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
248 * insdel.c (buffer_delete_range): Use an EMACS_INT.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
249
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
250 * cmds.c (Fforward_line): Use EMACS_INTs.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
251
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
252 * search.c (bi_scan_buffer): Change to use EMACS_INTs.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
253 (scan_buffer): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
254 (bi_find_next_newline_no_quit): Remove useless cast.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
255 (find_next_newline_no_quit): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
256 (find_next_newline): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
257 (find_before_next_newline): Use an EMACS_INT.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
258
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
259 * lisp.h: Change scan_buffer to pass EMACS_INTs.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
260
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
261 1998-05-16 Hrvoje Niksic <hniksic@srce.hr>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
262
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
263 * menubar-msw.c (mswindows_handle_wm_command): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
264
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
265 * toolbar-msw.c (mswindows_handle_toolbar_wm_command): Ditto.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
266
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
267 * gui-x.c (popup_selection_callback): Use it.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
268
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
269 * gui.h (get_callback): Declare it.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
270
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
271 * gui.c (get_callback): New function.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
272
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
273 1998-05-15 SL Baur <steve@altair.xemacs.org>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
274
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
275 * window.c (have_undivided_common_edge): Guard scrollbar specific
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
276 stuff.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
277 (window_needs_vertical_divider_1): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
278
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
279 1998-05-16 Hrvoje Niksic <hniksic@srce.hr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
280
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
281 * emacs.c (decode_path): Eliminate compiler warning.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
282 (Fdecode_path): Renamed to Fsplit_path.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
283 (Fsplit_string_by_char): New function.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
285 1998-05-14 Damon Lipparelli <lipp@primus.com>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
286
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
287 * winslots.h: close comment
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
288
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
289 1998-05-16 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
290
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
291 * callproc.c: Removed declared and unused variable Qbuffer_file_type.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
292
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
293 * bufslots.h: Removed buffer_file_type slot.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
294
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
295 * buffer.c (complex_vars_of_buffer): Removed buffer_file_type from
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
296 buffer local flags.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
297 (complex_vars_of_buffer): Removed buffer-file-type variable and
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
298 its default reference.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
299
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
300 1998-05-15 Kirill M. Katsnelson <kkm@kis.ru>
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
301
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
302 * faces.c (complex_vars_of_faces): Defined
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
303 Vvertical_divider_face.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
304 (vars_of_faces): Staticpro it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
305
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
306 * faces.h: Externed Vvertical_divider_face.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
307
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
308 * redisplay-x.c (x_output_vertical_divider): Use
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
309 Vvertical_divider_face to draw the divider instead of modeline
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
310 face.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
311
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
312 * redisplay-msw.c (mswindows_output_vertical_divider): Draw
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
313 divider face using Vvertical_divider_face background.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
314 Fix drawing spacing gaps around the divider.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
315
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
316 1998-05-14 Didier Verna <verna@inf.enst.fr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
317
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
318 * redisplay-x.c (x_output_vertical_divider): removed hard-wired
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
319 values for the vertical divider line width and spacing. Use the
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
320 cached values from the window structure instead.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
321 (x_divider_width): ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
322
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
323 * window.c (specifier_vars_of_window): new specifiers:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
324 vertical-divier -line-width and -spacing.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
325 (vertical_divider_global_width_changed): formerly known as
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
326 vertical_divider_shadow_thickness_changed.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
327
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
328 * winslots.h: new slots: vertical_specifier _line_width and
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
329 _spacing. Plus corrected a comment typo.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
330
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
331 1998-05-15 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
332
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
333 * window.h: Declared window_divider_width().
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
334
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
335 * console-stream.c (stream_divider_width): Removed method.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
336 (console_type_create_stream): And declaration for it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
337
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
338 * redisplay.c (pixel_to_glyph_translation): Use
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
339 window_divider_width() instead of divider_width redisplay method.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
340 (pixel_to_glyph_translation): Fix top divider edge calculation
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
341 when scrollbar is on top.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
342
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
343 * window.c (window_divider_width): New function, an outphaser for
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
344 divider_width redisplay method.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
345 (window_right_gutter_width): Use it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
346 (specifier_vars_of_window): For vertical-divider-{spacing,line-width}
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
347 specifiers, set fallback values differently on TTYs, and document
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
348 the behavior of these on TTYs in the docstrings.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
349
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
350 * scrollbar.c (update_scrollbar_instance): Use
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
351 window_divider_width() instead of divider_width redisplay method.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
352
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
353 * console.h (struct console_methods): Removed divider_width_method.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
354
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
355 * redisplay-tty.c (tty_divider_width): Removed device method.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
356 (console_type_create_redisplay_tty): Removed definition for it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
357 (tty_output_vertical_divider): Respect the value returned by
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
358 window_divider_width thus divider line width specification.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
359
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
360 * redisplay-msw.c (mswindows_divider_width): Removed device method.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
361 (console_type_create_redisplay_mswindows): Removed definition for it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
362 (mswinodws_output_vertical_divider): Respect the value returned by
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
363 window_divider_width thus divider line width specification.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
364
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
365 1998-05-15 Andy Piper <andyp@parallax.co.uk>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
366
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
367 * toolbar-msw.c: guess toolbar frame size a bit more accurately.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
368
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
369 1998-05-15 Andy Piper <andyp@parallax.co.uk>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
370
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
371 * glyphs-msw.c: resource loading implementation.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
372 (cursor_normalize): new function.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
373 (cursor_validate): ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
374 (cursor_instantiate): ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
375 (cursor_name_to_resource): ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
376 (cursor_possible_dest_types): ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
377 (check_valid_symbol): ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
378 (check_valid_string_or_int): ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
379
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
380 1998-05-14 Martin Buchholz <martin@xemacs.org>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
381
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
382 * sysdep.c (tty_init_sys_modes_on_device): Treat VSUSP just like
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
383 VINTR and VQUIT.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
384
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
385 * process-unix.c (process_signal_char): Use VSUSP instead of
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
386 non-standard VSWTCH. Always prefer VSUSP to VSWTCH.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
387
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
388 1998-05-14 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
389
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
390 * specifier.c (specifier_instance): Change locale precedence of
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
391 instantiation so window locale has higher priority than buffer
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
392 locale.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
393 (Fspecifier_instance): Reflect this in docstring.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
394 (Fadd_spec_list_to_specifier): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
395 (Fadd_spec_to_specifier): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
396 (Fremove_specifier): Ditto.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
397
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
398 1998-05-15 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
399
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
400 ** Dialog separation into a device method from Andy Piper
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
401
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
402 * emacs.c (main_1): Call console_type_create_dialog_x().
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
403
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
404 * dialog-x.c (x_popup_dialog_box): Old Fpopup_dialog_box converted
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
405 into this device method.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
406 (console_type_create_dialog_x): New function.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
407
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
408 * dialog.c (Fpopup_dialog_box): New function.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
409 (syms_of_dialog): Defsubr it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
410
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
411 * console.h (struct console_methods): Declared
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
412 popup_dialog_box_method().
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
413
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
414 * symsinit.h: Defined console_type_create_dialog_{x,mswindows}
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
415
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
416 1998-05-14 Oliver Graf <ograf@fga.de>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
417
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
418 * dragdrop.c (vars_of_dragdrop): dragdrop-protocols created
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
419 * frame-x.c (x_cde_transfer_callback): checked for merge errors
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
420
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
421 1998-05-13 Oliver Graf <ograf@fga.de>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
422
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
423 * dragdrop.c (vars_of_dragdrop): provide dragdrop-api
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
424
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
425 1998-05-15 Kirill M. Katsnelson <kkm@kis.ru>
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
426
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
427 * console.h (device_metrics): Removed dbcs, input-method-editor
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
428 and right-to-left metrics.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
429
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
430 * device.c (Fdevice_system_metric): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
431 (Fdevice_system_metrics): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
432 (syms_of_device): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
433 (Fdevice_system_metric): Swapped DEVICE and METRIC parameters back
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
434 again.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
435
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
436 1998-05-14 Hrvoje Niksic <hniksic@srce.hr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
437
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
438 * line-number.h (mark_line_number_cache): Remove unused
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
439 declaration.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
440
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
441 * line-number.c (LINE_NUMBER_FAR): Increase to 32768.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
442 (get_nearest_line_number): Simplify.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
443 (add_position_to_cache): Make the old marker point nowhere.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
444
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
445 1998-05-14 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
446
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
447 ** Renamed window-divider-map => vertical-divider-map
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
448 and event-over-divider-p => event-over-vertical-divider-p,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
449 in the following files/functions:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
450 * events.h:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
451 * events.c (Fevent_over_divider_p):
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
452 * keymap.c (get_relevant_keymaps):
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
453 (vars_of_keymap):
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
454
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
455 * redisplay.h (OVER_V_DIVIDER): Renamed so from OVER_DIVIDER.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
456
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
457 * redisplay.c (pixel_to_glyph_translation): Use OVER_V_DIVIDER.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
458
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
459 1998-05-14 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
460
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
461 * window.c (vertical_divider_changed_in_window): Renamed so.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
462 (specifier_vars_of_window): Defined Vvertical_divider_draggable_p.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
463 (window_needs_vertical_divider_1): Decide whether we need it based
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
464 on the value of the above specifier. If separators are unwanted,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
465 put them only if there's no scrollbar between this window and its
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
466 right neighbor.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
467 (have_undivided_common_edge): New function, helper for the above.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
468 (window_needs_vertical_divider): Return either a cached value,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
469 or clauclate and cache one.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
470 (invalidate_vertical_divider_cache_in_window): Implemented.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
471 (map_windows): Changed return type to int, return the value from
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
472 MAPFUN.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
473
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
474 * window.h: Prototype invalidate_vertical_divider_cache_in_window.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
475 (struct window): Added need_vertical_divider_p and
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
476 need_vertical_divider_valid_p.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
477
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
478 * winslots.h: Added vertical_divider_draggable_p slot.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
479
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
480 * scrollbar.c (vertical_scrollbar_changed_in_window): Implemented.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
481 (specifier_vars_of_scrollbar): Used it in all vertical specifiers.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
482
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
483 * frame.c (invalidate_vertical_divider_cache_in_frame): New function.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
484
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
485 * frame.h (MARK_FRAME_WINDOWS_STRUCTURE_CHANGED): Call
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
486 invalidate_vertical_divider_cache_in_frame().
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
487 Prototype it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
488
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
489 1998-05-14 Andy Piper <andyp@parallax.co.uk>
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
490
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
491 * toolbar-msw.c: provide correct parameters to TB_SETROWS.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
492
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
493 * glyphs-msw.c (mswindows_initialize_image_instance_mask): size
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
494 masks correctly and don't select 0.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
495
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
496 1998-05-14 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
497
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
498 * winslots.h: New file, declaration of some struct window and
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
499 struct saved_window members.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
500
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
501 * window.h (struct window): Include it, with required preprocessor
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
502 magic.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
503
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
504 * window.c (mark_window): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
505 (allocate_window): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
506 (struct saved_window): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
507 (mark_window_config): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
508 (saved_window_equal): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
509 (Fset_window_configuration): Ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
510
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
511 1998-05-14 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
512
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
513 * redisplay-msw.c (mswindows_output_vertical_divider): Syntax fix.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
514
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
515 1998-05-12 Didier Verna <verna@inf.enst.fr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
516
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
517 * redisplay-x.c (x_output_vertical_divider): draw shadows around
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
518 the divider line. The shadow thickness is currently
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
519 hard-wired. This will probably be turned into a specifier soon.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
520
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
521 1998-05-12 Didier Verna <verna@inf.enst.fr>
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
522
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
523 * console.h (struct console_methods): the divider_width console
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
524 method now requires a struct window * argument.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
525
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
526 * redisplay-x.c (x_divider_width): ditto. Plus remove
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
527 X_DIVIDER_WIDTH, X_DIVIDER_SHADOW_THICKNESS.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
528 (x_output_vertical_divider): give a depressed look when the shadow
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
529 thickness is negative.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
530
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
531 * console-stream.c (stream_divider_width): pass a struct window *
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
532 argument.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
533
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
534 * redisplay-tty.c (tty_divider_width): ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
535
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
536 * window.c (window_right_gutter_width): totdi.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
537
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
538 * redisplay.c (generate_modeline): ittod.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
539
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
540 * scrollbar.c (update_scrollbar_instance): ttido.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
541
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
542 * redisplay-msw.c (mswindows_divider_width): ottid.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
543 WARNING: this enables to compile, but the feature is not functional.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
544
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
545 * window.h (struct window): new field
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
546 vertical_divider_shadow_thickness.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
547
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
548 * window.c (specifier_vars_of_window): new specifier
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
549 vertical-divider-shadow-thickness.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
550 (vertical_divider_shadow_thickness_changed): new function to
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
551 inform redisplay that the window has changed.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
552 (mark_window): handle new field vertical_divider_shadow_thickness
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
553 from struct window.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
554 (allocate_window): ditto.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
555 (saved_window_equal): toddi.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
556 (Fset_window_configuration): totid.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
557 (save_window_save): ttdio.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
558 (struct saved_window): new field vertical_divider_shadow_thickness.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
559
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
560 1998-05-14 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
561
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
562 * device-msw.c (mswindows_device_system_metrics): Support a deluge
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
563 of metrics.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
564
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
565 1998-05-12 Oliver Graf <ograf@fga.de>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
566
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
567 * frame-x.c (x_cde_transfer_callback): fixed for the new protocol
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
568 * event-Xt.c (x_event_to_emacs_event): C++ compability
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
569
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
570 1998-05-14 Hrvoje Niksic <hniksic@srce.hr>
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
571
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
572 * emacs.c (Fdecode_path): Default SEPCHAR to value of
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
573 path-separator.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
574
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
575 1998-05-14 Hrvoje Niksic <hniksic@srce.hr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
576
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
577 * emacs.c (vars_of_emacs): Do it here; change the meaning of
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
578 Vpath_separator.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
579
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
580 * fileio.c (vars_of_fileio): Don't define Vpath_separator here.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
581
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
582 1998-05-14 Hrvoje Niksic <hniksic@srce.hr>
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
583
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
584 * emacs.c (decode_path_1): New function.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
585 (decode_path): Use it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
586 (Fdecode_path): Renamed from Fdecode_path_internal; use
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
587 decode_path_1.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
588
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
589 1998-05-12 Hrvoje Niksic <hniksic@srce.hr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
590
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
591 * macros.c (Fzap_last_kbd_macro_event): New function.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
592 (Fend_kbd_macro): Remove REMOVE_LAST kludge.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
593
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
594 1998-05-10 Andy Piper <andyp@parallax.co.uk>
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
595
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
596 * redisplay-msw.c (mswindows_output_dibitmap_region): make sure
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
597 multiple bitmaps are output vertically as well as horizontally.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
598 * (mswindows_output_dibitmap): don't cope with bitmap boundaries
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
599 crossing lines this is handled by
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
600 mswindows_output_dibitmap_region.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
601
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
602 1998-05-12 Martin Buchholz <martin@xemacs.org>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
603
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
604 * inline.c: Include eldap.h
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
605
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
606 * menubar-x.c (x_update_frame_menubar_internal):
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
607 Remove: unused variable `container'
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
608
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
609 1998-05-11 Martin Buchholz <martin@xemacs.org>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
610
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
611 * s/aix4.h: Allow AIX 4.3 XEmacs to compile cleanly.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
612 Unfortunately, the resulting temacs still cannot dump.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
613
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
614 * symbols.c (symbol_is_constant):
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
615 (verify_ok_for_buffer_local):
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
616 -Wswitch Warning suppression - add default case to switches.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
617
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
618 * redisplay.c (decode_mode_spec): Remove unused variables,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
619 Replace Fcoding_system_property (codesys, Qmnemonic) with
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
620 XCODING_SYSTEM_MNEMONIC (codesys);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
621 Fcoding_system_property is for users.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
622
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
623 * buffer.c:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
624 * fileio.c:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
625 * lread.c:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
626 * xselect.c:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
627 Change empty docstrings into no doc strings at all.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
628 Fix bogus FSF-format docstrings.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
629
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
630 * extents.c:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
631 Standardize docstrings.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
632
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
633 * floatfns.c:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
634 Explain problems with matherr.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
635
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
636 * glyphs.c: make DEFUNs etags-readable, i.e. single-line
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
637
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
638 * syssignal.h:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
639 if BROKEN_SIGIO, then SIGIO wants to be undefined.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
640 if SIGIO and not SIGPOLL, SIGPOLL wants to be SIGIO.\
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
641 Fix the weird resultant interaction (causes windows problems)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
642
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
643 * gdbinit:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
644 * dbxrc:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
645 Take new EMACSBOOTSTRAPLOADPATH into account.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
646 Update documentation strings
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
647
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
648 * Makefile.in.in:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
649 - Adjust for luser's CDPATH being set to something weird.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
650 - Take into account bash 2.02's tendency to print the cwd when
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
651 using CDPATH. Always use `cd ./foo' instead of `cd foo'.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
652 - fix the run-temacs target to use $(DUMPENV)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
653 - fix the run-puremacs target to use $(DUMPENV)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
654 - fix the `depend' target to properly $(RM) the right files
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
655 - Generate a better TAGS file for XEmacs' lisp code using
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
656 hand-crafted regexps.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
657 - Use standard coding conventions for modules/Makefile.in
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
658
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
659 1998-05-12 Didier Verna <verna@inf.enst.fr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
660
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
661 * redisplay.c: removed the scrolling modeline code that didn't
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
662 make it for 21.0. To be continued ...
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
663
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
664 1998-05-13 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
665
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
666 * emacs.c (Fdecode_path_internal): Removed bogus handling of nil
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
667 and empty string inputs.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
668
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
669 1998-05-12 Hrvoje Niksic <hniksic@srce.hr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
670
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
671 * redisplay-x.c (x_output_vertical_divider): Fixed typo.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
672
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
673 1998-05-10 Oliver Graf <ograf@fga.de>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
674
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
675 * event-stream.c (enqueue_misc_user_event_pos): created
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
676 * lisp.h (enqueue_misc_user_event_pos): prototype added
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
677 * frame-x.c (x_cde_transfer_callback): debug code plus API changes
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
678 * emacs.c: call vars_of_dragdrop
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
679 * dragdrop.c (vars_of_dragdrop): provide dragdrop
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
680
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
681 1998-05-11 Oliver Graf <ograf@fga.de>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
682
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
683 * frame-x.c (x_cde_transfer_callback): return at correct pos
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
684 * event-Xt.c (x_event_to_emacs_event): changed format of drop
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
685 object for MIME (see comment in dragdrop.c)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
686 * dragdrop.c: API change documented in comment
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
687 removed provide of dragdrop [is provided by dragdrop.el]
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
688
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
689 1998-05-12 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
690
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
691 * window.c (window_needs_vertical_divider): Enable vertical
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
692 dividers for every non-rightmost window.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
693 (window_left_gutter_width): Left gutter consists of mythical
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
694 toolbar and a virtual scrollbar.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
695 (window_right_gutter_width): The right one may have a divider
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
696 also.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
697
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
698 * scrollbar.c (update_scrollbar_instance): Position vertical
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
699 scrollbar left to divider if the latter present.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
700
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
701 * redisplay.h: Declared OVER_DIVIER constant.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
702
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
703 * redisplay.c (pixel_to_glyph_translation): Handle OVER_DIVIDER
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
704 case.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
705
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
706 * redisplay-x.c (x_output_vertical_divider): Output divider along
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
707 the right side of the window, down to window bottom. Swapped
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
708 foreground and background colors so it is visible by default.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
709
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
710 * redisplay-tty.c (tty_output_vertical_divider): Uncondiionally
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
711 stick the divider to the right window side.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
712
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
713 * redisplay-msw.c (mswindows_redisplay_deadbox_maybe): Fixed
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
714 deadbox painting.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
715 (mswindows_divider_width): Ask system for user preferred value.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
716 (mswindows_output_vertical_divider): Always output the divider on
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
717 the right side of a window, down to bottom.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
718
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
719 * keymap.c (get_relevant_keymaps): Route mouse button events which
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
720 happened over a window divider through window-divider-map.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
721 (Fkey_binding): Documented that in the docstring.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
722 Defined the variable Vwindow_divider_map.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
723
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
724 * events.c (Fevent_over_divider_p): Added this function.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
725
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
726 * events.h: EXFUNed it.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
727
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
728 1998-05-12 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
729
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
730 * toolbar.c (update_frame_toolbars): Re-layout frame windows if
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
731 toolbar geometry is suspected to change.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
732
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
733 1998-05-11 Jonathan Harris <jhar@tardis.ed.ac.uk>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
734
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
735 * src/device-msw.c
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
736 * src/event-msw.c
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
737 Condition dnd and dde code on HAVE_DRAGNDROP.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
738
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
739 1998-05-11 Hrvoje Niksic <hniksic@srce.hr>
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
740
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
741 * events.c (format_event_object): Print space as SPC etc.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
742
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
743 1998-05-11 Hrvoje Niksic <hniksic@srce.hr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
744
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
745 * print.c (print_internal): In the default case, abort() if
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
746 ERROR_CHECK_TYPECHECK.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
747
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
748 * fileio.c (Fmake_temp_name): Doc fix.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
749
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
750 1998-05-10 Hrvoje Niksic <hniksic@srce.hr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
751
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
752 * xgccache.c (describe_gc_cache): Define only if DEBUG_XEMACS.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
753
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
754 * undo.c (Fprimitive_undo): Fixed typo.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
755
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
756 1998-05-11 Hrvoje Niksic <hniksic@srce.hr>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
757
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
758 * fns.c (concat): Signal error on integer argument.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
759
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
760 1998-05-10 Kirill M. Katsnelson <kkm@kis.ru>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
761
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
762 * console.h (device_metrics): Prefixed each constatnt with DM_
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
763
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
764 * device.c: (Fdevice_system_metric): Renamed so from plural form
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
765 (metrics); Changed parameters order and added DEFAULT parameter;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
766 Unabbreviated some metric constants; Fixed and untabified doc string.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
767 (Fdevice_system_metrics): Added. Returns a plist of all provided
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
768 metrics.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
769
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
770 * device-msw.c (mswindows_device_system_metrics): Renamed
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
771 device_metrics enum constants.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
772 Return Qunbound instead of Qnil.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
773
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
774 * device-tty.c (tty_device_system_metrics): Ditto.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
775
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
776 * device-x.c (x_device_system_metrics): Ditto.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
777
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
778 1998-05-10 Andy Piper <andyp@parallax.co.uk>
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
779
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
780 * redisplay-msw.c: implement background pixmaps (really!). Make
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
781 sure bg color is transparent if we have bg pmaps.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
782 * (mswindows_output_string) (mswindows_clear_region): output bg
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
783 pmap if required.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
784 * (mswindows_output_dibitmap_region): new function.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
785 * (mswindows_output_dibitmap): output offset pixmaps, blt masks in
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
786 the bg color rather than transparently.
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
787
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
788 * toolbar-msw.c: use masks if they exist.
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 239
diff changeset
789
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
790 * glyphs-msw.c: set up masks correctly.
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
791
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
792 * event-msw.c: typedef SOCKET if cygwin and not msg select().
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
793
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
794 1998-05-10 Hrvoje Niksic <hniksic@srce.hr>
203
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
795
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
796 * regex.c (re_match_2_internal): Check for quit.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
797
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
798 1998-05-10 Hrvoje Niksic <hniksic@srce.hr>
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
799
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
800 * frame.c (Ffocus_frame): New function.
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
801