Mercurial > emacs
annotate src/ChangeLog @ 30932:80071f806f38
*** empty log message ***
author | Miles Bader <miles@gnu.org> |
---|---|
date | Fri, 18 Aug 2000 00:43:52 +0000 |
parents | 9747d7fb3ba9 |
children | b4d17c401854 |
rev | line source |
---|---|
30932 | 1 2000-08-18 Miles Bader <miles@gnu.org> |
2 | |
3 * editfns.c (save_restriction_save): Rewrite to use markers. | |
4 (save_restriction_restore): Rewrite to understand new form of data | |
5 saved by save_restriction_save. | |
6 (Fsave_restriction): Remove cautionary note in doc-string. | |
7 | |
30928 | 8 2000-08-17 Gerd Moellmann <gerd@gnu.org> |
9 | |
10 * fileio.c (build_annotations): Add a comment explaining the | |
11 return value of format-annotate-function. Replace a spurious call | |
12 to Flength with a CONSP test. Call format-annotate-function with | |
13 a fifth arg specifying how many times the function is been called | |
14 in a row, to let it choose temporary buffers appropriately. | |
15 | |
30919 | 16 2000-08-17 Dave Love <fx@gnu.org> |
17 | |
18 * lisp.h: Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't | |
19 declare make_temp_name twice. | |
20 | |
21 * lread.c: Prototype readevalloop, load_unwind, | |
22 load_descriptor_unwind. | |
23 (unreadpure): Give it an arg. | |
24 | |
25 * unexalpha.c: Prototype fatal_unexec, mark_x, | |
26 update_dynamic_symbols. Declare unexec as void. | |
27 | |
28 * cm.c [HAVE_TERMCAP_H]: Include <termcap.h>. | |
29 [!HAVE_TERMCAP_H]: Prototype tputs, tgoto. | |
30 | |
31 * alloc.c (lisp_malloc): Declare with POINTER_TYPE. | |
32 [SYSTEM_MALLOC]: Make decls in malloc.h conditional on | |
33 DOUG_LEA_MALLOC. | |
34 | |
35 * alloca.c: Use #error. | |
36 [POINTER_TYPE]: Use it. | |
37 | |
38 * eval.c (Fdefvar): Doc fix. | |
39 | |
40 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Avoid | |
41 INITIALIZE_INTERVAL. | |
42 | |
43 * buffer.h: Avoid DECLARE_INTERVALS. | |
44 | |
45 * config.in: Add size_t. | |
46 | |
30901 | 47 2000-08-17 Eli Zaretskii <eliz@is.elta.co.il> |
48 | |
49 * w16select.c (set_clipboard_data): If there's not enough memory | |
50 to put text into clipboard, return 1, as Fw16_set_clipboard_data | |
51 expects. In case of other failures, return 3. | |
52 (system_error_msg): New error message. | |
53 (Fw16_set_clipboard_data): If set_clipboard_data returns 3, print | |
54 system_error_msg. | |
55 | |
30849 | 56 2000-08-16 Gerd Moellmann <gerd@gnu.org> |
57 | |
58 * term.c (write_glyphs): Also turn off inverse video after turning | |
59 off other appearances in case TS_exit_attribute_mode is not equal | |
60 to TS_end_standout_mode. | |
61 (insert_glyphs): Turn inverse video on/off for each run of glyphs | |
62 with the same face. | |
63 (turn_off_face): Reset standout_mode only if | |
64 TS_exit_attribute_mode has been output and TS_exit_attribute_mode | |
65 is equal to TS_end_standout_mode. | |
66 | |
30843 | 67 2000-08-16 Kenichi Handa <handa@etl.go.jp> |
68 | |
30846 | 69 * coding.c (encode_coding): Fix the bug of not flushing ISO escape |
70 sequence at the end of the source block. | |
71 | |
30843 | 72 * ccl.c (Fccl_program_p): Docstring modified. |
73 (Fccl_execute): Likewise. | |
74 (Fccl_execute_on_string): Likewise. | |
75 | |
30841 | 76 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il> |
77 | |
78 * msdos.c (IT_write_glyphs): Convert cbp to unsigned char *. | |
79 | |
30830 | 80 2000-08-16 Kenichi Handa <handa@etl.go.jp> |
81 | |
82 The following changes are mainly to fix bugs of | |
83 encode/decode-coding-string failing if encoding/decoding return | |
84 CODING_FINISH_INSUFFICIENT_DST. In addition, delete the global | |
85 variable conversion_buffer. | |
86 | |
87 * ccl.c (CCL_WRITE_CHAR): If CH is eight-bit-control char, | |
88 decrement dst_end to avoid buffer overflow in the later call of | |
89 string_as_multibyte | |
90 | |
91 * coding.h (conversion_buffer_size, conversion_buffer) | |
92 (get_conversion_buffer): Extern deleted. | |
93 | |
94 * coding.c (MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted. | |
95 (conversion_buffer, conversion_buffer_size): Variables deleted. | |
96 (get_conversion_buffer): Function deleted. | |
97 (struct conversion_buffer): New structure. | |
98 (MAX_ALLOCA): New macro. | |
99 (allocate_conversion_buffer): New macro. | |
100 (extend_conversion_buffer, free_conversion_buffer): New functions. | |
101 (ccl_coding_driver): Set coding->result. | |
102 (decode_coding): Set coding->result to CODING_FINISH_NORMAL if | |
103 this is the last block of source. | |
104 (encode_coding): Likewise. Handle the source block as the last | |
105 one only when the whole source text is consumed. | |
106 (decode_coding_string): Handle the case that the output buffer is | |
107 too small to decode the whole source text. Use | |
108 allocate_conversion_buffer, extend_conversion_buffer and | |
109 free_conversion_buffer, not get_conversion_buffer. | |
110 (encode_coding_string): Likewise. | |
111 (init_coding): Function deleted. | |
112 (init_coding_once): Delete code to initialize | |
113 conversion_buffer_size. | |
114 | |
115 * emacs.c (main): Don't call init_coding. | |
116 | |
117 * msdos.c (IT_write_glyphs): Use a locally declared | |
118 conversion_buffer. | |
119 | |
120 * term.c (write_glyphs): Use a locally declared conversion_buffer. | |
121 (insert_glyphs): Likewise. | |
122 | |
123 * w32console.c (write_glyphs): Use a locally declared | |
124 conversion_buffer. | |
125 | |
30827 | 126 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il> |
127 | |
128 * msdos.c (IT_update_begin): Don't crash if mouse_face_mouse_frame | |
129 member of display_info is NULL. | |
130 | |
30822 | 131 2000-08-15 Gerd Moellmann <gerd@gnu.org> |
132 | |
30825 | 133 * alloc.c (compact_small_strings): Use safe_bcopy, add an |
134 assertion. | |
135 | |
30822 | 136 * term.c (turn_off_face): Reset standout_mode when resetting |
30825 | 137 appearances with capability `me'. |
30822 | 138 (write_glyphs): Switch on inverse video before each face change. |
139 | |
30785 | 140 2000-08-14 Dave Love <fx@gnu.org> |
141 | |
142 * alloc.c [HAVE_UNISTD_H]: Include unistd.h; don't declare sbrk. | |
143 [!HAVE_UNISTD_H]: Use POINTER_TYPE to declare sbrk. | |
144 (lisp_free): Declare and make static. | |
145 | |
146 * window.c: Fix embedded comment. | |
147 (syms_of_window): Fix doc string. | |
148 | |
30781 | 149 2000-08-14 Gerd Moellmann <gerd@gnu.org> |
150 | |
151 * keymap.c (push_key_description): If C without modifiers is < 32, | |
152 make sure to print `C-' before `M-', like in the manual. | |
153 | |
30762 | 154 2000-08-11 Gerd Moellmann <gerd@gnu.org> |
155 | |
156 * fns.c (hashfn_eq, hashfn_eql): Don't handle strings specially | |
157 since they aren't relocated anymore. | |
158 (sxhash_string): Make sure returned hash code fits in a Lisp | |
159 integer. | |
160 | |
161 * xdisp.c (try_cursor_movement): Fix handling of cursor in | |
162 partially visible line which is smaller than the window's | |
163 height. | |
164 | |
30753 | 165 2000-08-11 Kenichi Handa <handa@etl.go.jp> |
166 | |
167 * ccl.c (CCL_READ_CHAR): If source is multibyte, pay attention to | |
168 the multibyte form of eight-bit-control characters. | |
169 (Fccl_execute_on_string): Initialize ccl->multibyte. | |
170 | |
171 * ccl.h (struct ccl_program): New member multibyte. | |
172 | |
173 * coding.c (ccl_coding_driver): Initialize ccl->multibyte. | |
174 | |
30751 | 175 2000-08-11 Kenichi Handa <handa@etl.go.jp> |
176 | |
177 * regex.c (regex_compile) <normal_char>: Pay attention to | |
178 multibyteness. | |
179 (analyse_first) <exactn>: Setup fastmap correctly for | |
180 eight-bit-control characters. | |
181 | |
182 2000-08-11 Kenichi Handa <handa@etl.go.jp> | |
183 | |
184 * termhooks.h (enum event_kind): New member | |
185 multibyte_char_keystroke. | |
186 | |
187 * keyboard.c (make_lispy_event): Handle the new event type | |
188 multibyte_char_keystroke. | |
189 | |
190 * xterm.c: Include coding.h. | |
191 (XTread_socket): Work around a bug of XmbLookupString. If the | |
192 input is from XIM, decode it according to the current locale. In | |
193 that case, generate multibyte_char_keystroke events. | |
194 | |
30746 | 195 2000-08-11 Kenichi Handa <handa@etl.go.jp> |
196 | |
197 * xdisp.c (TRACE_MOVE) [GLYPH_DEBUG]: Delete the last semicolon. | |
198 (TRACE_MOVE) [not GLYPH_DEBUG]: Define dummy. | |
199 | |
30745 | 200 2000-08-10 Gerd Moellmann <gerd@gnu.org> |
201 | |
202 * xdisp.c (trace_move) [GLYPH_DEBUG]: New variable. | |
203 (TRACE_MOVE) [GLYPH_DEBUG]: New macro. | |
204 (move_it_in_display_line_to): Record iterator's ascent and descent | |
205 before producing glyphs, and restore them when we know the glyph | |
206 doesn't fit on the line. | |
207 (move_it_to): Restructured so that it's easier to debug. If | |
208 moving to a vpos, and not moving to an x or character position, | |
209 stop as soon as the specified vpos is reached; don't move further | |
210 into that line because that might change the computed line height. | |
211 (try_cursor_movement): New function, extracted from the cursor | |
212 movement branch of redisplay_window. If ending on a partially | |
213 visible line, don't try to scroll if the cursor line is taller | |
214 than the window. | |
215 (redisplay_window): Use try_cursor_movement. | |
216 | |
217 * window.c (Fwindow_end): Rewritten to not use Fvertical_motion, | |
218 because that function doesn't cope with variable-height lines. | |
219 | |
220 * xterm.c (x_draw_bar_cursor): If cursor is on an image, draw a | |
221 box cursor because that's better visible for large images. | |
222 | |
30737 | 223 2000-08-10 Miles Bader <miles@gnu.org> |
224 | |
225 * w32term.c (note_mouse_highlight): Update calls to overlays_at. | |
226 | |
30729 | 227 2000-08-10 Gerd Moellmann <gerd@gnu.org> |
228 | |
229 * xdisp.c (Vmessages_buffer_name): New variable. | |
230 (message_dolog): Use it. | |
231 (syms_of_xdisp): Initialize it. | |
232 | |
30726 | 233 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il> |
234 | |
235 * msdos.c (IT_note_mouse_highlight): Update the calls to | |
236 overlays_at. | |
237 (toplevel) <kbd_buffer_store_event>: Remove prototype, it's | |
238 redundant now that keyboard.h is included. | |
239 | |
30715 | 240 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il> |
241 | |
242 * keyboard.c (kbd_buffer_events_waiting): New function. | |
243 | |
244 * keyboard.h (kbd_buffer_events_waiting): Add prototype. | |
245 | |
246 * msdos.c: Include keyboard.h. | |
247 (XMenuActivate): Empty no_event events from the event buffer. If | |
248 no events are left after that, call clear_input_pending. | |
249 (mouse_clear_clicks): New function, code moved from mouse_init. | |
250 (mouse_init, XMenuActivate): Call mouse_clear_clicks to force the | |
251 mouse driver to ``forget'' any past clicks. | |
252 | |
253 * Makefile.in (msdos.o): Depend on keyboard.h. | |
254 | |
30708 | 255 2000-08-09 Gerd Moellmann <gerd@gnu.org> |
256 | |
30724 | 257 * lisp.h (input_pending): External declaration. |
258 | |
259 * dispextern.h (Qredisplay_dont_pause): Declare extern. | |
260 | |
261 * xdisp.c (echo_area_display): Display thoroughly if input is | |
262 pending. Bind redisplay-dont-pause to t during the redisplay. | |
263 in case input is pending. | |
264 | |
265 * dispnew.c (Qredisplay_dont_pause): New variable. | |
266 (syms_of_display): Initialize and staticpro it. | |
267 (update_frame_1): Don't interrupt the display for pending input if | |
268 redisplay_dont_pause is set. | |
269 | |
30714 | 270 * dispnew.c (mode_line_string): Declare parameter MODE_LINE_P. |
271 | |
30708 | 272 * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix. |
273 | |
30702 | 274 2000-08-09 Miles Bader <miles@lsi.nec.co.jp> |
275 | |
276 * callproc.c (Fcall_process): Terminate the unwind-protect around | |
277 the post-read-conversion of coding system. | |
278 | |
30701 | 279 * buffer.c (overlays_at): Add CHANGE_REQ parameter. |
280 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change): Use it. | |
281 * buffer.h (overlays_at): Update prototype. | |
282 * xdisp.c (next_overlay_change): Update call to overlays_at. | |
283 * xfaces.c (face_at_buffer_position): Likewise. | |
284 * textprop.c (Fget_char_property): Likewise. | |
285 * xterm.c (note_mouse_highlight): Likewise. | |
286 | |
30685 | 287 * minibuf.c (do_completion): Don't consider a simple change of |
288 case as `completion'. | |
289 | |
30674
9aad40936cfe
*coding.c (find_safe_codings): CHAR_TABLE_SET index must be a lisp object.
Ken Raeburn <raeburn@raeburn.org>
parents:
30672
diff
changeset
|
290 2000-08-08 Ken Raeburn <raeburn@gnu.org> |
9aad40936cfe
*coding.c (find_safe_codings): CHAR_TABLE_SET index must be a lisp object.
Ken Raeburn <raeburn@raeburn.org>
parents:
30672
diff
changeset
|
291 |
30683
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
292 * keyboard.c (syms_of_keyboard): Initialize |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
293 last_point_position_buffer. |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
294 * undo.c (record_delete): Make sure last_point_position_buffer is |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
295 a buffer before comparing pointers. |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
296 |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
297 * coding.h (decode_coding_string): Declare. |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
298 |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
299 * intervals.h (Fprevious_single_char_property_change): Declare. |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
300 |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
301 * textprop.c (Fprevious_single_char_property_change): Don't do |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
302 arithmetic directly on lisp objects. |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
303 |
30693 | 304 * editfns.c (find_field): Use EQ, not ==, to compare Lisp |
30683
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
305 objects. |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
306 |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
307 * keyboard.h (menu_item_eval_property): Declare. |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
308 |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
309 * xdisp.c (message_dolog): Save and protect string "*Messages*" to |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
310 reuse as buffer name, instead of recreating (and discarding) every |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
311 time a message is logged. |
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
312 (with_echo_area_buffer): Make callback arg A2 a lisp object. |
30693 | 313 (current_message_1, truncate_message_1, set_message_1) |
314 (display_echo_area_1, resize_mini_window_1): Signatures changed. | |
315 (current_message, truncate_echo_area, display_echo_area) | |
316 (resize_echo_area_axactly): Changed calls. | |
30683
386d91b16514
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
30674
diff
changeset
|
317 |
30674
9aad40936cfe
*coding.c (find_safe_codings): CHAR_TABLE_SET index must be a lisp object.
Ken Raeburn <raeburn@raeburn.org>
parents:
30672
diff
changeset
|
318 * coding.c (find_safe_codings): CHAR_TABLE_SET index must be a |
30693 | 319 Lisp object. |
30674
9aad40936cfe
*coding.c (find_safe_codings): CHAR_TABLE_SET index must be a lisp object.
Ken Raeburn <raeburn@raeburn.org>
parents:
30672
diff
changeset
|
320 (Ffind_coding_systems_region_internal): First argument to Fappend |
30693 | 321 must be an integer, not a Lisp object. |
30674
9aad40936cfe
*coding.c (find_safe_codings): CHAR_TABLE_SET index must be a lisp object.
Ken Raeburn <raeburn@raeburn.org>
parents:
30672
diff
changeset
|
322 |
30672 | 323 2000-08-08 Kenichi Handa <handa@etl.go.jp> |
324 | |
325 * charset.c (Fchar_width): Doc fix. | |
326 | |
30671 | 327 2000-08-08 Gerd Moellmann <gerd@gnu.org> |
328 | |
329 * charset.c (Fstring_width): Doc fix. | |
330 | |
30632 | 331 2000-08-07 Gerd Moellmann <gerd@gnu.org> |
332 | |
30708 | 333 * xdisp.c (start_display): When starting display on a continuation |
30654 | 334 line, clear ascent and descent members of the iterator structure; |
335 the height of the continued line does not affect the height of the | |
336 continuation line. | |
337 (make_cursor_line_fully_visible): Do nothing if cursor is on a | |
338 line taller than the window. | |
339 (redisplay_window) <forced window start>: Handle case that the | |
340 middle of the window is not found in any row. | |
341 (dump_glyph_row): Show more information. | |
342 (compute_line_metrics): Use MATRIX_FIRST_TEXT_ROW to determine the | |
343 first text line in a glyph matrix. | |
344 | |
345 * xterm.c (x_draw_image_foreground): Avoid drawing outside | |
346 of the clip area when image doesn't have a mask. | |
347 | |
30639 | 348 * fns.c (sweep_weak_table): Fix survival conditions for |
349 key-or-value and key-and-value weakness. | |
350 | |
351 * .gdbinit (xhashtable): New command. | |
352 | |
30635 | 353 * fns.c (sweep_weak_hash_tables): Fix the code taking unmarked |
354 tables out of the list of all weak hash tables. | |
355 | |
30632 | 356 * xdisp.c (ensure_echo_area_buffers): If a buffer was killed, and |
30633 | 357 a new buffer is created, make sure echo_area_buffer[] references |
358 the new buffer. | |
30632 | 359 |
30629 | 360 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il> |
361 | |
362 * msdos.c (Fmsdos_set_mouse_buttons): Add missing backslashes in | |
363 the doc string. | |
364 | |
30625 | 365 2000-08-07 Kenichi Handa <handa@etl.go.jp> |
366 | |
367 * syntax.c (skip_chars): Fix previous change. Make the handling | |
368 of unibyte string consistent with that of regex search. | |
369 | |
30603 | 370 2000-08-05 Gerd Moellmann <gerd@gnu.org> |
371 | |
30614 | 372 * xmenu.c (popup_get_selection): Use xfree instead of free. |
373 | |
374 * fileio.c (Finsert_file_contents): Use xfree instead of free. | |
375 | |
376 * editfns.c (Ftranspose_regions): Use xfree instead of free. | |
377 | |
378 * callproc.c (child_setup): Use xfree instead of free. | |
379 | |
380 * sysdep.c (opendir, GetTempDirName, run_mac_command): Use xmalloc | |
381 instead of malloc. | |
382 (run_mac_command, closedir): Use `xfree' instead of `free'. | |
383 | |
384 * keymap.c (current_minor_maps): Use xmalloc instead of malloc. | |
385 | |
386 * eval.c (error): Use xfree instead of free. | |
387 | |
30603 | 388 * xfaces.c, xfns.c, w32fns.c: Replace `illegal' with `invalid'. |
389 | |
390 * fns.c: Replace `illegal' with `invalid'. | |
30614 | 391 (Fmake_hash_table, make_hash_table): Allow table size of 0. |
30603 | 392 |
30596
48a9e9f4fd9d
(skip_chars): Fix handling of multibyte<->unibyte conversion.
Kenichi Handa <handa@m17n.org>
parents:
30595
diff
changeset
|
393 2000-08-05 Kenichi Handa <handa@etl.go.jp> |
48a9e9f4fd9d
(skip_chars): Fix handling of multibyte<->unibyte conversion.
Kenichi Handa <handa@m17n.org>
parents:
30595
diff
changeset
|
394 |
48a9e9f4fd9d
(skip_chars): Fix handling of multibyte<->unibyte conversion.
Kenichi Handa <handa@m17n.org>
parents:
30595
diff
changeset
|
395 * syntax.c (skip_chars): Fix handling of multibyte<->unibyte |
48a9e9f4fd9d
(skip_chars): Fix handling of multibyte<->unibyte conversion.
Kenichi Handa <handa@m17n.org>
parents:
30595
diff
changeset
|
396 conversion. |
48a9e9f4fd9d
(skip_chars): Fix handling of multibyte<->unibyte conversion.
Kenichi Handa <handa@m17n.org>
parents:
30595
diff
changeset
|
397 |
30598
e0b06b3efefe
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30596
diff
changeset
|
398 2000-08-04 Noah Friedman <friedman@splode.com> |
e0b06b3efefe
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30596
diff
changeset
|
399 |
e0b06b3efefe
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30596
diff
changeset
|
400 * fns.c (Fmake_hash_table): Add missing `\n\' to end of line in |
e0b06b3efefe
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30596
diff
changeset
|
401 docstring. |
e0b06b3efefe
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30596
diff
changeset
|
402 |
30595 | 403 2000-08-04 Gerd Moellmann <gerd@gnu.org> |
404 | |
405 * syntax.c (skip_chars): Fix typo in error message. | |
406 | |
30588
bfbe4e93bdcf
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30582
diff
changeset
|
407 2000-08-04 Andreas Schwab <schwab@suse.de> |
bfbe4e93bdcf
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30582
diff
changeset
|
408 |
bfbe4e93bdcf
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30582
diff
changeset
|
409 * m/ia64.h: Moved from s/ia64.h. |
bfbe4e93bdcf
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30582
diff
changeset
|
410 |
30577 | 411 2000-08-04 Kenichi Handa <handa@etl.go.jp> |
412 | |
30582 | 413 * process.c (read_process_output): Big simplification. Handle |
414 composition and post-read-conversion of coding system correctly. | |
415 (send_process): Handle composition correctly. | |
416 | |
417 * callproc.c (Fcall_process): Handle post-read-conversion of | |
418 coding system if any. | |
419 | |
30577 | 420 * coding.c (decode_coding_iso2022): More strict check for handling |
421 single shifting. | |
30582 | 422 (coding_restore_composition): Pay attention to the case that |
423 cmp_data is not set properly (because of invalid code in the | |
424 source text). | |
425 (run_pre_post_conversion_on_str): Include text properties in the | |
426 resulting string. | |
427 (decode_coding_string): Set members of coding correctly. | |
30577 | 428 |
30576 | 429 2000-08-03 Gerd Moellmann <gerd@gnu.org> |
430 | |
431 * s/ia64.h: New file. | |
432 | |
433 * widget.c (set_frame_size, update_wm_hints, EmacsFrameSetValues): | |
434 Use NULL instead of 0 at the end of variable argument list of | |
435 XtVaGetValues and XtVaSetValues, because 0 fails on systems where | |
436 sizeof (int) < sizeof (void *). | |
437 | |
438 * xmenu.c (update_frame_menubar): Use NULL instead of 0 at the end | |
439 of variable argument lists of XtVaGetValues and XtVaSetValues. | |
440 | |
441 * xfns.c (Fx_file_dialog): Use NULL instead of 0 at the end of | |
442 variable argument lists of XtVaGetValues and XtVaSetValues. | |
443 | |
30564 | 444 2000-08-02 Gerd Moellmann <gerd@gnu.org> |
445 | |
446 * alloc.c (lisp_malloc, lisp_free): Use size_t and POINTER_TYPE. | |
447 (xrealloc, xmalloc): Use size_t. Some callers adjusted. | |
448 | |
449 * lisp.h (Fsingle_key_description, xmalloc, xrealloc): Change | |
450 prototype. | |
451 | |
452 * keyboard.c (read_char_minibuf_menu_prompt): Add new parameter | |
453 in call to Fsingle_key_description. | |
454 | |
455 * keymap.c (Fsingle_key_description): Add parameter NO_ANGLES. | |
456 Callers changed. | |
457 | |
458 2000-08-02 Colin Walters <walters@cis.ohio-state.edu> | |
459 | |
460 * window.c (display_buffer_reuse_frames): New variable. | |
461 (Fdisplay_buffer): If display_buffer_reuse_frames is set, reuse | |
462 frames displaying BUFFER. | |
463 (syms_of_window): Define Lisp variable | |
464 display-buffer-reuse-frames. | |
465 | |
30551 | 466 2000-08-01 Miles Bader <miles@gnu.org> |
467 | |
468 * editfns.c (Fconstrain_to_field): Fix the conditions for deciding | |
469 when to constrain NEW_POS (they were pretty screwed up before). | |
470 | |
30531 | 471 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il> |
472 | |
473 * msdos.c (run_msdos_command): Save and restore the master | |
474 environment, for the case that child_setup signals an error. | |
475 When mirroring slashes in DOS shell commands, don't fail when | |
476 argv[2] has embedded blanks. | |
30533 | 477 (Fmsdos_set_mouse_buttons, mouse_setup_buttons): New functions. |
478 (syms_of_msdos): Defsubr Fmsdos_set_mouse_buttons. | |
479 (dos_ttraw): Call mouse_setup_buttons. | |
30531 | 480 |
481 * callproc.c (child_setup) [MSDOS]: malloc pwd_var instead of | |
482 using alloca; free it after run_msdos_command returns. | |
483 | |
30507 | 484 2000-07-27 Dave Love <fx@gnu.org> |
485 | |
486 * s/irix6-5.h (IRIX_FORCE_32_BITS, LD_SWITCH_SYSTEM): Don't | |
487 define. | |
488 [_MIPS_SZLONG == 64]: Set up for 64-bit mode -- not currently | |
489 working. | |
490 | |
491 * m/iris4d.h (XUINT, XSET, XUNMARK) [_LP64]: Don't define. | |
492 | |
30504 | 493 2000-07-27 Eli Zaretskii <eliz@is.elta.co.il> |
494 | |
495 * editfns.c (lisp_time_argument): Fix last change. | |
496 | |
30502 | 497 2000-07-27 Gerd Moellmann <gerd@gnu.org> |
498 | |
30511 | 499 * fns.c (Fdelete): Make it work on vectors and strings in addition |
500 to lists. | |
501 | |
30502 | 502 * fns.c (Qkey_or_value, Qkey_and_value): New variables. |
503 (syms_of_fns): Initialize new variables. | |
504 (sweep_weak_table): Handle weakness `key-or-value' and | |
505 `key-and-value'. | |
506 (Fmake_hash_table): Recognize `key-and-value' and `key-or-value' | |
507 weakness, with t meaning the same as `key-and-value'. | |
508 | |
30490 | 509 2000-07-27 Kenichi Handa <handa@etl.go.jp> |
510 | |
511 * coding.h (struct coding_system): Member safe_charset deleted. | |
512 | |
513 * coding.c (Qsafe_charsets): This variable deleted. | |
514 (Qsafe_chars, Vchar_coding_system_table, Qchar_coding_system): New | |
515 variables. | |
516 (coding_safe_chars): New function. | |
517 (CODING_SAFE_CHAR_P): New macro. | |
518 (CHARSET_OK): New arg C. Call CODING_SAFE_CHAR_P instead of | |
519 checking safe_charsets member of the coding system. Caller | |
520 changed. | |
521 (detect_coding_iso2022): New local variable safe_chars. | |
522 (DECODE_DESIGNATION): Call CODING_SAFE_CHAR_P instead of checking | |
523 safe_charsets member of the coding system. | |
524 (decode_coding_iso2022): New local variable safe_chars. | |
525 (ENCODE_ISO_CHARACTER_DIMENSION1): Don't check unsafe chars here. | |
526 (ENCODE_ISO_CHARACTER_DIMENSION2): Likewise. | |
527 (ENCODE_ISO_CHARACTER): Arguments changed. Caller changed. | |
528 (ENCODE_UNSAFE_CHARACTER): New macro. | |
529 (encode_coding_iso2022): New local variable safe_chars. Check | |
530 unsafe chars. | |
531 (setup_coding_system): Delete the code to initialize | |
532 coding->safe_charses | |
533 (intersection, find_safe_codings): New functions. | |
534 (Ffind_coding_systems_region_internal): New function. | |
535 (syms_of_coding): Defsubr it. Initialize Qsafe_chars, | |
536 Qsafe_cding_system. Make Vchar_coding_system_table a Lisp | |
537 variable and initialize it. | |
538 | |
539 * fns.c (char_table_ref_and_index): New function. | |
540 | |
541 * lisp.h (char_table_ref_and_index): Add prototype. | |
542 | |
30480 | 543 2000-07-26 Sam Steingold <sds@gnu.org> |
544 | |
545 * editfns.c (lisp_time_argument): Added third argument `usec'. | |
30511 | 546 (Ffloat_time): New built-in Lisp function. |
30480 | 547 |
30473 | 548 2000-07-26 Gerd Moellmann <gerd@gnu.org> |
549 | |
30477 | 550 * dispextern.h (GLYPH_FROM_CHAR_GLYPH): Use CHARACTERBITS bits |
551 for the character code. | |
552 | |
553 * config.in (HAVE_SOUND): Define only for FreeBSD, NetBSD and | |
554 GNU/Linux. | |
555 | |
30473 | 556 * xmenu.c (menu_highlight_callback): Call show_help_echo directly |
557 if called for a popup menu. | |
558 (xmenu_show): Store help string in widget values. | |
559 | |
30466 | 560 2000-07-26 Dave Love <fx@gnu.org> |
561 | |
562 * syswait.h: Move some definitions. | |
563 (HAVE_SYS_WAIT_H): Undef for HPUX7, Convex. | |
564 [!HAVE_SYS_WAIT_H]: Define things unconditionally. More | |
565 perspicuous definitions. | |
566 (WTERMSIG): Fix bit pattern used. | |
567 | |
30460 | 568 2000-07-26 Kenichi Handa <handa@etl.go.jp> |
569 | |
570 * print.c (print_object): If vector printing is truncated, print | |
571 "..." to indicate it as well as the case of list printing. | |
572 | |
30444 | 573 2000-07-25 Gerd Moellmann <gerd@gnu.org> |
574 | |
30449 | 575 * xdisp.c (next_element_from_display_vector): Improve comments. |
576 | |
577 * lisp.h (GLYPH_MASK_CHAR, GLYPH_MASK_FACE): Use 19 bits | |
578 for the character code, and the rest for the face id as in 20.x. | |
579 (FAST_GLYPH_FACE, FAST_MAKE_GLYPH): Changed accordingly. | |
580 | |
581 * window.c (window_display_table): Cleaned up. | |
582 | |
30444 | 583 * syntax.c (Fforward_word): Add last arg nil in call of |
584 Fconstrain_to_field. | |
585 | |
30442 | 586 2000-07-25 Eli Zaretskii <eliz@is.elta.co.il> |
587 | |
30449 | 588 * fileio.c (Frename_file) [DOS_NT]: If the file names are |
30442 | 589 identical but for the letter-case, don't call |
590 barf_or_query_if_file_exists. | |
591 | |
30438 | 592 2000-07-25 Miles Bader <miles@gnu.org> |
593 | |
594 * editfns.c (find_field): Honor special `boundary' fields. | |
595 (Qboundary): New variables. | |
596 (syms_of_editfns): Initialize Qboundary. | |
597 (Fconstrain_to_field): Add the INHIBIT-CAPTURE-PROPERTY argument. | |
598 Use scan_buffer instead of find_before_next_newline, because it | |
599 allows us to detect the boundary case where there's a newline at | |
600 the search limit. | |
601 * lisp.h (Fconstrain_to_field): Update external declaration. | |
602 | |
30433 | 603 2000-07-24 Gerd Moellmann <gerd@gnu.org> |
604 | |
605 * print.c (temp_output_buffer_setup): Don't call1 Vrun_hooks | |
606 if that is nil. | |
30438 | 607 |
30431 | 608 2000-07-24 Dave Love <fx@gnu.org> |
609 | |
610 * s/sunos4-0.h, s/sol2.h: | |
611 (LIBS_TERMCAP): Move from m/sparc.h. | |
612 | |
613 * m/sparc.h (TERMINFO): Moved to system files (probably only | |
614 relevant for sunos4 judging by its vintage). | |
615 (BITS_PER_LONG, BITS_PER_EMACS_INT, _LP64): Define conditional on | |
616 __arch64__. | |
617 | |
30424 | 618 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il> |
619 | |
620 * xmenu.c (keymap_panes): Pass the keymap's prompt as the pane | |
621 name to single_keymap_panes. | |
622 | |
30418 | 623 2000-07-24 Andreas Schwab <schwab@suse.de> |
624 | |
625 * fns.c (Fmakehash): Pass Qeql to Fmake_hash_table if TEST is nil. | |
626 | |
30415 | 627 2000-07-24 Gerd Moellmann <gerd@gnu.org> |
628 | |
629 * xdisp.c (with_echo_area_buffer): Take additional EMACS_INT | |
630 parameters instead of using int parameters. Expect FN to accept | |
631 EMACS_INT parameters. | |
632 (display_echo_area, resize_echo_area_axactly, current_message) | |
633 (truncate_echo_area, set_message_1): Call with_echo_area_buffer | |
634 with new argument list. | |
635 (resize_mini_window_1): New callback function. | |
636 (current_message_1, truncate_message_1, set_message_1): Change | |
637 parameter lists to the new format expected by | |
638 with_echo_area_buffer. | |
639 | |
30397 | 640 2000-07-24 Kenichi Handa <handa@etl.go.jp> |
641 | |
642 * fontset.c (fontset_ref): Remove INLINE declaration. | |
643 (fontset_ref_via_base): Likewise. | |
644 (Fset_fontset_font): Convert FAMILY and REGISTRY specifications | |
645 to downcase. | |
646 | |
30382 | 647 2000-07-23 Eli Zaretskii <eliz@is.elta.co.il> |
648 | |
649 * msdos.c (IT_note_mouse_highlight): Process overlays in the | |
650 correct order of priority. If help echo was found in an overlay, | |
651 use that overlay as the object in which the help echo was found. | |
652 | |
30378 | 653 2000-07-22 Miles Bader <miles@gnu.org> |
654 | |
655 * textprop.c (Fprevious_single_char_property_change): The initial | |
656 property value should be from the position preceding POSITION, not | |
657 following it. | |
658 | |
30377 | 659 2000-07-22 Eli Zaretskii <eliz@is.elta.co.il> |
660 | |
661 * coding.c (syms_of_coding): Doc fix for | |
662 inhibit-iso-escape-detection. | |
663 | |
30364 | 664 2000-07-21 Gerd Moellmann <gerd@gnu.org> |
665 | |
30372 | 666 * xterm.c (note_mouse_highlight): Process overlays in the right |
667 order of priority. | |
30480 | 668 |
30370 | 669 * keyboard.c (show_help_echo, gen_help_event): Extend comments. |
670 | |
671 * xterm.c (note_mouse_highlight): If help-echo was found in an | |
672 overlay, use that overlay as the object in which the help was | |
673 found. | |
674 | |
30367 | 675 * window.c (foreach_window_1): Fix typo reversing an if-condition. |
30480 | 676 |
30364 | 677 * window.c (foreach_window): Instead of a fake variable argument |
678 list, take one USER_DATA argument. | |
679 (foreach_window_1): Likewise, and call callback functions with two | |
680 args, the window and USER_DATA. | |
681 (struct check_window_data): New struct. | |
682 (check_window_containing): Use it. | |
683 (window_from_coordinates): Set up a struct check_window_data for | |
684 foreach_window. | |
685 (add_window_to_list, freeze_window_start): Change parameters | |
686 according to new calling convention. | |
687 | |
688 * window.h (foreach_window): Change prototype. | |
689 | |
690 * buffer.c (Fprevious_overlay_change): Avoid memory leak. | |
691 | |
692 2000-07-21 Eli Zaretskii <eliz@is.elta.co.il> | |
693 | |
694 * xmenu.c (menu_help_callback): Call show_help_echo with | |
695 additional arguments OBJECT and POS. | |
696 | |
30355 | 697 2000-07-21 Kenichi Handa <handa@etl.go.jp> |
698 | |
30357 | 699 * data.c (Faset): Allow storing any multibyte character in a |
700 string. Convert unibyte string to multibyte if necessary. | |
701 | |
30355 | 702 * xfns.c (x_encode_text): New function. |
703 (x_set_name): Use x_encode_text. | |
704 (x_set_title): Likewise. | |
705 | |
706 * xselect.c (lisp_data_to_selection_data): Use x_encode_text. | |
707 | |
708 * xterm.h (x_encode_text): Add prototype. | |
709 | |
30346 | 710 2000-07-20 Dave Love <fx@gnu.org> |
711 | |
712 * ccl.c (Fccl_execute_on_string): Don't check xmalloc return. Use | |
713 xfree, not free. | |
714 | |
30342 | 715 2000-07-20 Eli Zaretskii <eliz@is.elta.co.il> |
716 | |
717 * msdos.c (help_echo_window): New variable. | |
718 (syms_of_msdos): Initialize and staticpro it. | |
719 (IT_note_mode_line_highlight): Set help_echo_window. | |
720 (IT_note_mouse_highlight): Ditto. | |
721 (dos_rawgetc): Store help_echo_window in the second event produced | |
722 for HELP_EVENTs. | |
723 | |
724 * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight): | |
725 Record the object that generated the help echo and the position of | |
726 that object in help_echo_object and help_echo_pos. Record that | |
727 some glyphs in a row are displayed in mouse-face. | |
728 (IT_update_begin): Don't clear mouse highlight unless one of the | |
729 enabled glyph rows is marked as being displayed in mouse-face. | |
730 (dos_rawgetc): Generate 2 events for HELP_EVENT. Pass the object | |
731 and position recorded in help_echo_object and help_echo_pos to the | |
732 event queue. | |
733 (IT_menu_display): Accept a new argument PN: the pane number of | |
734 the current menu pane. Record the pane number and the item | |
735 number of the item which has associated help string. | |
736 (XMenuActivate): Update the prototype for help_callback in | |
737 function declaration. Call IT_menu_display with the current menu | |
738 pane number as an additional argument. Call help_callback with | |
739 two additional arguments: the pane number and the item number of | |
740 the menu item associated with the help text. | |
741 (help_echo_object, help_echo_pos): New variables. | |
742 (syms_of_msdos): Initialize them and staticpro help_echo_object. | |
743 | |
744 * msdos.h (XMenuActivate): Update prototype. | |
745 | |
30318 | 746 2000-07-19 Gerd Moellmann <gerd@gnu.org> |
747 | |
30329 | 748 * xdisp.c (with_echo_area_buffer): Call FN with more arguments. |
749 Add some more prototypes. | |
750 | |
751 * xterm.c, xterm.h: Add some more prototypes. | |
752 | |
753 * lisp.h (Fnext_single_char_property_change): Add prototype. | |
754 | |
755 * dispnew.c (direct_output_for_insert): Remove confusing | |
756 outer local variable mouse_face_overwritten_p. | |
757 (glyph_row_slice_p): Put in #ifdef GLYPH_DEBUG. | |
758 | |
30318 | 759 * alloc.c (allocate_string_data): Don't copy old string contents. |
760 | |
30314 | 761 2000-07-19 Kenichi Handa <handa@etl.go.jp> |
762 | |
763 * coding.c (code_convert_region): Delete text properties before | |
764 shrinking the conversion region. | |
765 | |
30303 | 766 2000-07-18 Gerd Moellmann <gerd@gnu.org> |
767 | |
30308 | 768 * dispnew.c (update_text_area): Write the whole row if it |
769 has mouse-face in it. | |
770 | |
30305 | 771 * xfaces.c (face-alternative-font-family-alist): Remove |
772 DEFVAR_LISP; staticpro instead. | |
773 | |
30480 | 774 * xmenu.c (menu_help_callback): Call show_help_echo with |
30303 | 775 new arguments. |
776 | |
777 * keyboard.c (show_help_echo): Add parameter WINDOW. | |
778 (read_char): Call show_help_echo with window extracted from Lisp | |
779 help event. | |
780 (gen_help_event): Add parameter WINDOW. | |
781 | |
782 * keyboard.h (show_help_echo, gen_help_event): Change prototypes. | |
783 | |
784 * xterm.c (help_echo_window): New variable. | |
785 (note_mouse_highlight, note_tool_bar_highlight): Set | |
786 help_echo_window. | |
787 (XTread_socket): Pass help_echo_window to gen_help_event. | |
788 (syms_of_xterm): Initialize and staticpro help_echo_window. | |
789 | |
30298 | 790 2000-07-18 Dave Love <fx@gnu.org> |
791 | |
792 * Makefile.in: Fix dependencies of blockinput.h on atimer.h, | |
793 systime.h. | |
794 | |
30290 | 795 2000-07-18 Gerd Moellmann <gerd@gnu.org> |
796 | |
30296 | 797 * alloc.c (allocate_string_data): If string had already data |
798 assigned, copy old contents to new string data. | |
799 | |
800 * coding.c (syms_of_coding): Fix typo in spelling of variable | |
801 `inhibit-iso-escape-detection'. | |
802 | |
30290 | 803 * alloca.c (free) [emacs && EMACS_FREE]: Define as EMACS_FREE. |
804 | |
805 * Makefile.in: Add dependencies on dispextern.h. | |
806 (alloca.o): Don't define malloc and define EMACS_FREE instead of | |
807 `free'; both can conflict with system header files. | |
808 | |
30281 | 809 2000-07-18 Kenichi Handa <handa@etl.go.jp> |
810 | |
811 * charset.h (MAKE_CHAR): Return reasonable code even if CHARSET is | |
812 undefined. | |
813 | |
30266 | 814 2000-07-18 Dave Love <fx@gnu.org> |
815 | |
816 * window.c (Fwindow_list): Declare arg `window'. | |
817 | |
30262 | 818 2000-07-18 Kenichi Handa <handa@etl.go.jp> |
819 | |
820 * coding.c (setup_coding_system): Don't override the explicitly | |
821 specified designations. | |
822 | |
30245 | 823 2000-07-15 Miles Bader <miles@gnu.org> |
824 | |
825 * editfns.c (char_property_eq, char_property_stickiness): Renamed | |
826 from `text_property_eq' and `text_property_stickiness', respectively. | |
827 (find_field, Fconstrain_to_field, char_property_eq) | |
828 (char_property_stickiness): Changed to call char-property functions | |
829 instead of text-property-only ones. | |
830 | |
831 * textprop.c (Fnext_single_char_property_change): Made a subr (was | |
832 `next_single_char_property_change'). Do more error checking, and | |
833 cleanup limit behavior. | |
834 (Fprevious_single_char_property_change): New function. | |
835 (syms_of_textprop): Initialize new subrs. | |
836 | |
837 * xdisp.c (display_prop_end, invisible_text_between_p): | |
838 Call Fnext_single_char_property_change instead of | |
839 next_single_char_property_change. | |
840 | |
30241 | 841 2000-07-15 Jason Rumney <jasonr@gnu.org> |
842 | |
843 * w32menu.c (w32_menu_show): Call free_menubar_widget_value_tree | |
844 after menu is finished with. | |
845 (add_menu_item): Only consider wv->title as a menu title. | |
846 (w32_menu_display_help): Add OBJECT and POS to show_help_echo. | |
847 | |
848 * w32fns.c (w32_wnd_proc) [WM_DRAW_ITEM]: Do not try to draw a | |
849 null title. | |
850 (FONT_REGEXP): Remove unused macro, and its sub-components. | |
851 (syms_of_w32fns): Replace underscore in w32-enable-synthesized-fonts. | |
852 | |
853 * w32term.c (help_echo_object, help_echo_pos): New variables. | |
854 (note_mode_line_highlight): Store additional information about the | |
855 help-echo in help_echo_object and help_echo_pos. Check both | |
856 `local-map' and `keymap' properties for changing the cursor | |
857 (note_mouse_highlight): Store additional information about the | |
858 help-echo in help_echo_object and help_echo_pos. | |
859 (note_tool_bar_highlight): Set help_echo_object to nil and | |
860 help_echo_pos to -1. | |
861 (w32_read_socket): Use gen_help_event instead of filling | |
862 input_events manually. | |
863 (syms_of_w32term): Staticpro help_echo_object. | |
864 (x_update_window_end): Add parameter MOUSE_FACE_OVERWRITTEN_P. If | |
865 set, arrange for a mouse-highlight redisplay in | |
866 XTframe_up_to_date. | |
867 (x_clear_mouse_face): New function. | |
868 (w32_redisplay_interface): Add pointer to x_clear_mouse_face. | |
869 (x_update_window_begin): No need to turn off the mouse | |
870 highlight here. | |
871 (show_mouse_face): Set the mouse_face_p flag of glyph rows | |
872 depending on whether they contain glyphs highlighted in | |
873 mouse-face. | |
874 (x_fill_stretch_glyph_string): Consume runs of stretch | |
875 glyphs instead of a single one. | |
876 (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string | |
877 with new argument list. | |
878 (x_set_glyph_string_gc): Make sure the face's GC is valid. | |
879 (x_append_glyph, x_append_composite_glyph) | |
880 (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to | |
881 changes in struct glyph starting 1999-12-27. See comments for | |
882 xterm.c on 2000-07-05. | |
883 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
884 2000-07-14 Sam Steingold <sds@gnu.org> |
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
885 |
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
886 * xfaces.c (realize_x_face): Fix the last patch: |
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
887 check `default_face' before dereferencing. |
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
888 |
30229 | 889 2000-07-14 Dave Love <fx@gnu.org> |
890 | |
30266 | 891 * syntax.c (back_comment): Add null default in switch (for pcc). |
30229 | 892 |
30206 | 893 2000-07-14 Kenichi Handa <handa@etl.go.jp> |
894 | |
30210 | 895 * xfaces.c (realize_x_face): Make fontset using the base of the |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
896 default_face's fontset, not using the default fontset. |
30210 | 897 |
30206 | 898 * coding.c (inhibit_iso_escape_detection): New variable. |
899 (syms_of_coding): Make it a Lisp variable. | |
900 (detect_coding_iso2022): If inhibit_iso_escape_detection is | |
901 nonzero, ignore ISO2022's escape sequence. | |
902 | |
30203 | 903 2000-07-14 Gerd Moellmann <gerd@gnu.org> |
904 | |
30234 | 905 * alloca.c (malloc) [emacs]: Define as xmalloc. |
906 | |
30226 | 907 * xfns.c (Fx_show_tip): If frame parameters contain a position, |
908 use that instead of the mouse position. Add parameters DX and DY. | |
909 | |
910 * dispextern.h (Fx_show_tip): Adjust number of parameters | |
911 in prototype. | |
912 | |
30219 | 913 * keyboard.c (show_help_echo): Add parameters OBJECT and POS. |
914 if HELP is a function, call it with OBJECT and POS as parameters | |
915 to get the help to display. | |
916 (gen_help_event, kbd_buffer_store_help_event): New functions. | |
917 (kbd_buffer_get_event): Construct the Lisp help-event differently. | |
918 (read_char): Call show_help_echo with new parameters. | |
919 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
920 * keyboard.h (gen_help_event, kbd_buffer_store_help_event): |
30219 | 921 Add prototypes. |
922 | |
923 * xterm.c (help_echo_object, help_echo_pos): New variables. | |
924 (note_mode_line_highlight): Store additional information about the | |
925 help-echo in help_echo_object and help_echo_pos. Check both | |
926 `local-map' and `keymap' properties for changing the cursor | |
927 (note_mouse_highlight): Store additional information about the | |
928 help-echo in help_echo_object and help_echo_pos. | |
929 (note_tool_bar_highlight): Set help_echo_object to nil and | |
930 help_echo_pos to -1. | |
931 (XTread_socket): Use gen_help_event instead of filling | |
932 input_events manually. | |
933 (syms_of_xterm): Staticpro help_echo_object. | |
934 | |
935 * xmenu.c (menu_highlight_callback): Use | |
936 kbd_buffer_store_help_event instead of setting up and input_event | |
937 structure manually. | |
938 | |
939 * xdisp.c (eval_form): GCPRO argument sexpr. | |
940 (call_function): New function. | |
941 (handle_single_display_prop): Use call_function and FUNCTIONP | |
942 instead of checking whether if font_height is a symbol and | |
943 using eval_form. | |
944 | |
945 * eval.c (internal_condition_case_2): New function. | |
946 | |
947 * lisp.h (FUNCTIONP): New macro. | |
948 (internal_condition_case_2, call_function): Add prototypes. | |
949 | |
30203 | 950 * xterm.c (construct_mouse_click, x_scroll_bar_to_input_event) |
951 (x_scroll_bar_handle_click, SET_SAVED_MENU_EVENT, XTread_socket): | |
952 Always set `arg' member of input_events. | |
953 (construct_menu_click): Unused function removed. | |
954 | |
955 * msdos.c (dos_rawgetc): Always set `arg' member of input_events. | |
956 | |
957 * w32term.c (construct_mouse_click, construct_mouse_wheel) | |
958 (construct_drag_n_drop, x_scroll_bar_handle_click) | |
959 (w32_read_socket): Always set `arg' member of input_events. | |
960 | |
961 * keyboard.c (show_help_echo): Use eval_form. Add comment. | |
962 | |
963 * lisp.h (eval_form): Add prototype. | |
964 | |
965 * xdisp.c (eval_form): Make it externally visible. | |
966 | |
30183 | 967 2000-07-13 Gerd Moellmann <gerd@gnu.org> |
968 | |
969 * xterm.c (x_handle_tool_bar_click): Store the frame in the | |
970 frame_or_window slot of TOOL_BAR_EVENT input events instead of | |
971 consing. For prefix events, store the frame in the `arg' slot of | |
972 the event, otherwise store the key there. | |
973 (XTread_socket): Instead of consing, use the frame_or_window slot | |
974 of HELP_EVENTs for the frame, and the `arg' slot for the help | |
975 string. | |
976 | |
977 * xmenu.c (menu_highlight_callback): Store help string in the | |
978 `arg' member of the input event; don't cons. | |
979 (menubar_selection_callback): Use the `arg' slot of input events | |
980 to queue additional information, instead of consing. | |
981 | |
982 * msdos.c (dos_rawgetc): Adapt to change of HELP_EVENTs. | |
983 | |
984 * w32term.c (w32_handle_tool_bar_click): Adapt to changes in | |
985 TOOL_BAR_EVENTs. | |
986 (w32_read_socket): Adapt to changes in HELP_EVENTs. | |
987 | |
988 * w32menu.c (menubar_selection_callback): Use the `arg' slot of | |
989 input events to queue additional information, instead of consing. | |
990 | |
991 * keyboard.c (kbd_buffer_gcpro): Renamed from | |
992 kbd_buffer_frame_or_window. Now used for all Lisp objects | |
993 referenced from the input queue. | |
994 (kbd_buffer_store_event): Always use structure assignment for | |
995 copying input events. Record all Lisp objects referenced from | |
996 events in kbd_buffer_gcpro. | |
997 (kbd_buffer_get_event): Construct Lisp `help-echo' events | |
998 differently from input events. Test for prefix menu_bar_events | |
999 and TOOL_BAR_EVENTs differently. Reset all slots used by an input | |
1000 event in kbd_buffer_gcpro to nil. | |
1001 (make_lispy_event) <TOOL_BAR_EVENT>: Treat an input event whose | |
1002 frame_or_window is equal to its arg member as prefix events. | |
1003 (stuff_buffered_input): Reset all slots in kbd_buffer_gcpro | |
1004 used by an input event to nil. | |
1005 (init_keyboard): Use two times the size of the input queue | |
1006 for kbd_buffer_gcpro. | |
1007 (syms_of_keyboard): Likewise. | |
1008 | |
1009 * emacs.c (handle_USR2_signal, handle_USR1_signal): Use | |
1010 USER_SIGNAL_EVENT. | |
1011 | |
1012 * termhooks.h (struct input_event): Add member `arg'. | |
1013 (MENU_BAR_EVENT): Renamed from menu_bar_event. | |
1014 (USER_SIGNAL_EVENT): Renamed from user_signal. | |
1015 | |
1016 * xfaces.c (ASET): Remove definition. | |
1017 | |
1018 * lisp.h (AREF, ASET, ASIZE): New macros. | |
1019 | |
1020 * fontset.c (AREF, ASIZE): Remove definitions. | |
1021 | |
1022 * fns.c (AREF): Remove definition. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1023 |
30183 | 1024 * composite.c (AREF): Remove definition. |
1025 | |
30163 | 1026 2000-07-12 Gerd Moellmann <gerd@gnu.org> |
1027 | |
30166 | 1028 * dispnew.c (redraw_overlapped_rows): Add missing local. |
1029 (scrolling_window): Remove debug code. | |
1030 | |
30163 | 1031 * xdisp.c (try_window_reusing_current_matrix, try_window_id): |
1032 Before scrolling, turn off a mouse-highlight in the window | |
1033 being scrolled. | |
1034 | |
1035 * xterm.c (x_update_window_end): Add parameter | |
1036 MOUSE_FACE_OVERWRITTEN_P. If set, arrange for a mouse-highlight | |
1037 redisplay in XTframe_up_to_date. | |
1038 (x_clear_mouse_face): New function. | |
1039 (x_redisplay_interface): Add pointer to x_clear_mouse_face. | |
1040 | |
1041 * dispnew.c (make_current): Preserve the mouse_face_p flag of the | |
1042 current glyph row. | |
1043 (update_window_line): Add parameter MOUSE_FACE_OVERWRITTEN_P. Set | |
1044 it when any row is written to that contains glyphs highlighted in | |
1045 mouse-face. | |
1046 (update_window): Call the window update end hook with new | |
1047 parameter MOUSE_FACE_OVERWRITTEN_P. | |
1048 (direct_output_for_insert): Give up if row contains mouse-face. | |
1049 | |
1050 * dispextern.h (struct redisplay_interface): Add parameter | |
1051 MOUSE_FACE_OVERWRITTEN_P to update_window_end_hook function. | |
1052 (clear_mouse_face): New function pointer member. | |
1053 | |
30157
c0ab9f112c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30155
diff
changeset
|
1054 2000-07-11 Stefan Monnier <monnier@cs.yale.edu> |
c0ab9f112c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30155
diff
changeset
|
1055 |
c0ab9f112c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30155
diff
changeset
|
1056 * syntax.c (back_comment): Use one switch rather than a few `if's. |
c0ab9f112c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30155
diff
changeset
|
1057 Obey open_paren_in_column_0_is_defun_start. |
c0ab9f112c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30155
diff
changeset
|
1058 When reverting to the `slow' method, try to nicely handle the case |
c0ab9f112c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30155
diff
changeset
|
1059 of nested comments by checking that the comment-starter we found |
c0ab9f112c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30155
diff
changeset
|
1060 does indeed match the comment-ender. |
c0ab9f112c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30155
diff
changeset
|
1061 (scan_sexps_forward, scan_sexps_forward): |
c0ab9f112c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30155
diff
changeset
|
1062 Ignore excessive opening parenthesis rather than throwing an error. |
c0ab9f112c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30155
diff
changeset
|
1063 |
30155 | 1064 2000-07-11 Gerd Moellmann <gerd@gnu.org> |
1065 | |
1066 * doc.c (Fsubstitute_command_keys): Handle case that a GC | |
1067 in Fwhere_is_internal or get_keymap_1 relocates string contents. | |
1068 | |
1069 * dispnew.c (direct_output_forward_char): Give up if currently | |
1070 displaying a message instead of the minibuffer contents. | |
1071 | |
1072 * xterm.c (x_update_window_begin): No need to turn off the mouse | |
1073 highlight here. | |
1074 (show_mouse_face): Set the mouse_face_p flag of glyph rows | |
1075 depending on whether they contain glyphs highlighted in | |
1076 mouse-face. | |
1077 | |
1078 * dispnew.c (row_equal_p): Add parameter MOUSE_FACE_P. If set, | |
1079 compare the mouse_face_p flags of both rows. | |
1080 | |
1081 * dispextern.h (struct glyph_row): Add flag mouse_face_p. | |
1082 | |
30146 | 1083 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il> |
1084 | |
1085 * keyboard.c (show_help_echo): Accept additional parameter | |
1086 ok_to_overwrite_keystroke_echo. | |
1087 (read_char): Call show_help_echo with a zero | |
1088 ok_to_overwrite_keystroke_echo argument. | |
1089 * keyboard.h (show_help_echo): Update prototype of | |
1090 show_help_echo. | |
1091 * xmenu.c (menu_help_callback): Call show_help_echo with non-zero | |
1092 ok_to_overwrite_keystroke_echo argument. | |
1093 * w32menu.c (w32_menu_display_help): Call show_help_echo with | |
1094 non-zero ok_to_overwrite_keystroke_echo argument. | |
1095 | |
30135 | 1096 2000-07-10 Gerd Moellmann <gerd@gnu.org> |
1097 | |
30140 | 1098 * xdisp.c (try_window_id): If changes are all below what is |
1099 displayed in the window, and point is in the window, we still | |
1100 might have to find point on the display. | |
1101 | |
1102 * xterm.c (x_fill_stretch_glyph_string): Consume runs of stretch | |
1103 glyphs instead of a single one. | |
1104 (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string | |
1105 with new argument list. | |
1106 (x_set_glyph_string_gc): Make sure the face's GC is valid. | |
1107 | |
30135 | 1108 * keymap.c (get_keymap_1): Add comment that this function can GC. |
1109 (where_is_internal_2, where_is_internal_1): Add GCPROs, add | |
1110 comment that functions can GC. | |
1111 (Fset_keymap_parent): GCPRO arg KEYMAP. | |
1112 | |
30133 | 1113 2000-07-10 Eli Zaretskii <eliz@is.elta.co.il> |
1114 | |
1115 * msdos.c (XMenuActivate): After exiting the menu, restore the | |
1116 echo area message and erase it. | |
1117 | |
30125 | 1118 2000-07-10 Kenichi Handa <handa@etl.go.jp> |
1119 | |
1120 * fontset.c (Ffontset_info): Make the return value more compatible | |
1121 with that of Emacs 20. | |
1122 | |
30107 | 1123 2000-07-07 Gerd Moellmann <gerd@gnu.org> |
1124 | |
1125 * eval.c (Fsignal): Handle case that backtrace_list is null. | |
1126 | |
30104 | 1127 2000-07-07 Kenichi Handa <handa@etl.go.jp> |
1128 | |
1129 * ccl.c (Fccl_execute): Typo fixed. | |
1130 | |
30096 | 1131 2000-07-06 Gerd Moellmann <gerd@gnu.org> |
1132 | |
30103 | 1133 * window.c (window_loop): Add missing gcpro1 local variable. |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1134 |
30096 | 1135 * window.c (Fwindow_list): Reverse list at the end. |
1136 (candidate_window_p): Add parameter OWINDOW. ALL_FRAMES nil | |
1137 means allow windows on OWINDOW's frame, only. | |
1138 (window_loop): Simplified; use Fwindow_list. | |
1139 | |
1140 * Makefile.in (TAGS-LISP): Don't pass `$(lispsource)' to make. | |
1141 | |
30085 | 1142 2000-07-05 Gerd Moellmann <gerd@gnu.org> |
1143 | |
1144 * xterm.c (XTread_socket): Increment handling_signal at the start, | |
1145 decrement it at the end. | |
1146 | |
1147 * eval.c (handling_signal): New variable. | |
1148 (Fsignal): Abort if handling_signal is non-zero. | |
1149 | |
1150 * lisp.h (handling_signal): External declaration. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1151 |
30085 | 1152 * s/freebsd.h (WAITTYPE, WRETCODE): Put in #if 0. |
1153 | |
30079
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1154 2000-07-05 Ken Raeburn <raeburn@gnu.org> |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1155 |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1156 Sound support for NetBSD through "Linux emulation" support: |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1157 * config.in (HAVE_SOUNDCARD_H): Undef. |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1158 (HAVE_SOUND): Define if HAVE_SOUNDCARD_H. |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1159 * Makefile.in (LIBSOUND): New variable. |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1160 (LIBES): Include it. |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1161 * sound.c [HAVE_SOUNDCARD_H]: Include <sys/ioctl.h> and |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1162 <soundcard.h>. |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1163 (DEFAULT_SOUND_DEVICE): Define to "/dev/dsp" if not defined |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1164 elsewhere. |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1165 (vox_open): Use DEFAULT_SOUND_DEVICE. |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1166 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Define to /dev/audio. |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
30076
diff
changeset
|
1167 |
30076 | 1168 2000-07-05 Gerd Moellmann <gerd@gnu.org> |
1169 | |
1170 * print.c (print_error_message): If Vsignaling_function is set, | |
1171 show it in *Messages*. | |
1172 | |
1173 * lisp.h (Vsignaling_function): External declaration. | |
1174 | |
1175 * eval.c (Vsignaling_function): New variable. | |
1176 (Fsignal): Compute it. | |
1177 (syms_of_eval): Staticpro it. | |
1178 | |
30069 | 1179 2000-07-05 Dave Love <fx@gnu.org> |
1180 | |
1181 * syswait.h: Use the autoconf recommended approach. Old code | |
1182 #if'd out in case we need to revert. | |
1183 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1184 * config.in (HAVE_SYS_WAIT_H): Added. |
30069 | 1185 |
30067 | 1186 2000-07-05 Andrew Innes <andrewi@gnu.org> |
1187 | |
1188 * vm-limit.c (check_memory_limits) [REL_ALLOC]: Use real_morecore | |
1189 when non-NULL instead of __morecore, to take account of buffer | |
1190 memory. This also solves a problem with spurious memory warnings | |
1191 on Windows. | |
1192 | |
1193 * ralloc.c: Make real_morecore non-static. | |
1194 | |
1195 * eval.c (internal_condition_case): Comment out abort if | |
1196 interrupt_input_blocked is not zero. | |
1197 | |
1198 * makefile.nt: Add support for `bootstrap' and related targets. | |
1199 Include minimal debug info in emacs.exe in release build. | |
1200 Remove all dependencies on lisp.h, and fixup some others. | |
1201 | |
1202 * w32.c (init_environment): Install code from 20.7 for providing | |
1203 default values for environment variables, based on the | |
1204 executable's own location. | |
1205 (map_w32_filename): Handle filenames that are longer than | |
1206 MAX_PATH. | |
1207 (sys_socket): Install socket inheritance bug fix from 20.7. | |
1208 | |
1209 * alloca.c [emacs]: Include lisp.h (needed by atimer.h included | |
1210 here via blockinput.h). | |
1211 | |
30059
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1212 2000-07-05 Stefan Monnier <monnier@cs.yale.edu> |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1213 |
30098
54ef6ace438d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30096
diff
changeset
|
1214 * w32menu.c (w32_menu_display_help): |
54ef6ace438d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30096
diff
changeset
|
1215 * xmenu.c (menu_help_callback): Use show_help_echo. |
30059
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1216 |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1217 * keyboard.h (show_help_echo): Declare. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1218 |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1219 * keyboard.c (show_help_echo): New function, extracted from read_char. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1220 Feval its `msg' argument if it's a cons cell. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1221 (read_char): Use it. |
30118
67bba9343314
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30107
diff
changeset
|
1222 (follow_key): Pass `autoload' to get_keyelt. |
30059
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1223 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1224 * xterm.c (note_mode_line_highlight, note_mouse_highlight) |
30059
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1225 (note_tool_bar_highlight, XTread_socket): |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1226 * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight) |
30059
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1227 (dos_rawgetc): |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1228 * w32term.c (note_mode_line_highlight, note_mouse_highlight) |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1229 (note_tool_bar_highlight, w32_read_socket): |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1230 Do not gratuitously ignore non-string `help-echo' properties. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30049
diff
changeset
|
1231 |
30043 | 1232 2000-07-05 Gerd Moellmann <gerd@gnu.org> |
1233 | |
30049 | 1234 * eval.c (Feval): Put check for interrupt_input_block in #if 0. |
1235 | |
30046 | 1236 * window.c (delete_all_subwindows): Reset Vwindow_list. |
1237 | |
30043 | 1238 * xterm.c (x_append_glyph, x_append_composite_glyph) |
1239 (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to | |
1240 changes in struct glyph starting 1999-12-27. Some bit-fields of | |
1241 struct glyph were not set, which made glyphs unequal when compared | |
1242 with GLYPH_EQUAL_P. Redisplay outputs such glyphs, and flickering | |
1243 effects were the result. This also depended on the contents of | |
1244 memory returned by xmalloc. If flickering happens again, activate | |
1245 the code in clear_glyph_row that's in #if 0. If the flickering is | |
1246 gone with that, chances are that it is caused by something | |
1247 similar. | |
1248 | |
1249 * dispnew.c (clear_glyph_row): Add debug code in #if 0. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1250 |
30043 | 1251 * dispextern.h: Add some comments. |
1252 | |
1253 * window.c (add_window_to_list): Add parameter LIST. | |
1254 (window_list): Order list so that, for each frame, windows are | |
1255 in canonical order, and so that frames appear in the list in | |
1256 the order given by Vframe_list. | |
1257 (next_window): Reverse the handling of NEXT_P. | |
1258 | |
30031 | 1259 2000-07-04 Gerd Moellmann <gerd@gnu.org> |
1260 | |
30038 | 1261 * window.c (Vwindow_list): New variable. |
1262 (make_window, delete_window): Set Vwindow_list to nil. | |
1263 (check_window_containing): New function. | |
1264 (window_from_coordinates): Rewritten. | |
1265 (add_window_to_list, window_list, candidate_window_p) | |
1266 (decode_next_window_args, next_window): New functions. | |
1267 (Fnext_window, Fprevious_window): Rewritten in terms of | |
1268 next_window. | |
1269 (Fwindow_list): New function. | |
1270 (Fother_window): Cleaned up. | |
1271 (foreach_window): Add a longer "variable argument list". Let | |
1272 callback function return 0 to indicate that cycling over windows | |
1273 should stop. | |
1274 (foreach_window_1): Likewise. | |
1275 (freeze_window_start): Return int. | |
1276 (init_window): New function. | |
1277 (syms_of_window): Staticpro Vwindow_list and defsubr Swindow_list. | |
1278 | |
1279 * emacs.c (handle_USR1_signal, handle_USR2_signal) Clear | |
1280 input_event with bzero. | |
1281 (main): Call init_window. | |
1282 | |
30031 | 1283 * keymap.c (get_keyelt): Temporarily inhibit GC while evaluating |
1284 a menu filter. | |
1285 | |
30026 | 1286 2000-07-04 Kenichi Handa <handa@etl.go.jp> |
1287 | |
1288 * composite.h (make_composition_value_copy): Extern it. | |
1289 | |
1290 * composite.c (make_composition_value_copy): New function. | |
1291 | |
1292 * editfns.c (Fformat): While copying text properties, make each | |
1293 composition property value a copy. | |
1294 | |
1295 * fns.c (concat): While copying text properties, make each | |
1296 composition property value a copy. | |
1297 | |
29996 | 1298 2000-07-03 Gerd Moellmann <gerd@gnu.org> |
1299 | |
30012 | 1300 * m/macppc.h (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define. |
1301 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1302 * fns.c (sweep_weak_table): Mark only objects that are not |
30008 | 1303 marked already. |
1304 | |
29996 | 1305 * frame.c (next_frame, prev_frame): If MINIBUF is a window, |
1306 include those frames as candidates which have their focus | |
1307 redirected to the minibuffer frame. | |
1308 | |
29992
c1a99b7c6085
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29989
diff
changeset
|
1309 2000-07-03 Stefan Monnier <monnier@cs.yale.edu> |
c1a99b7c6085
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29989
diff
changeset
|
1310 |
c1a99b7c6085
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29989
diff
changeset
|
1311 * fns.c (Fputhash): Return `value' rather than nil. |
c1a99b7c6085
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29989
diff
changeset
|
1312 |
29988 | 1313 2000-06-30 Gerd Moellmann <gerd@gnu.org> |
1314 | |
29989 | 1315 * frame.c (next_frame): Don't check focus redirection in case |
1316 MINIBUF is a window. Doing so excludes frames using MINIBUF | |
29988 | 1317 unless their focus is redirected, which contradicts the |
1318 specification of next-frame, and leads to infinite loops in | |
1319 certain situations when cycling through windows with next-window. | |
1320 | |
29983 | 1321 2000-06-30 Kenichi Handa <handa@etl.go.jp> |
1322 | |
29984 | 1323 * coding.c (code_convert_region): Even if the length of text is |
29983 | 1324 zero, try to convert it if coding->type is coding_type_ccl. |
29984 | 1325 (decode_coding_string, encode_coding_string): Likewise. |
29983 | 1326 |
29972 | 1327 2000-06-28 Gerd Moellmann <gerd@gnu.org> |
1328 | |
29982 | 1329 * xdisp.c (try_window_reusing_current_matrix): Don't try to reuse |
29989 | 1330 the display if windows_or_buffers_changed. |
29982 | 1331 |
1332 * dispnew.c (struct row_entry): New structure. | |
1333 (row_entry_pool, row_entry_pool_size, row_entry_idx, row_table) | |
1334 (row_table_size, old_lines, new_lines, old_lines_size) | |
1335 (new_lines_size, run_pool, runs_size, runs): New variables. | |
1336 (add_row_entry): New function. | |
1337 (scrolling_window): Use data structures allocated with xmalloc and | |
29989 | 1338 held in global variables, instead of allocating them with alloca and |
29982 | 1339 holding them in local variables. Use a larger hash table whose |
1340 size depends on glyph matrix sizes. Don't use bzero to clear the | |
1341 hash table; instead, clear used slots only. | |
1342 | |
1343 * fns.c (next_almost_prime): Make it externally visible. | |
1344 | |
1345 * lisp.h (next_almost_prime): Add prototype. | |
1346 | |
29972 | 1347 * s/isc4-0.h (sigunblock): Define. |
1348 | |
1349 * s/sco5.h (sigunblock): Define. | |
1350 | |
29965 | 1351 2000-06-27 Dave Love <fx@gnu.org> |
1352 | |
1353 * s/osf1.h (C_SWITCH_SYSTEM, LIBS_SYSTEM): Revert last change | |
1354 (moved to osf5-0.h). | |
1355 [!NOT_C_CODE]: Protect string.h stuff. | |
1356 | |
1357 * s/osf5-0.h (C_SWITCH_SYSTEM, WAIT_USE_INT, SYS_SIGLIST_DECLARED) | |
1358 (sys_siglist, NSIG): Definitions moved here from osf1.h. | |
1359 | |
29961 | 1360 2000-06-27 Gerd Moellmann <gerd@gnu.org> |
1361 | |
29989 | 1362 * xdisp.c (resize_mini_window): Subtract the extra line spacing |
29961 | 1363 below the last line from the needed window height. |
1364 | |
29955
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
1365 2000-06-26 Stefan Monnier <monnier@cs.yale.edu> |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
1366 |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
1367 * fns.c (Fplist_member): Renamed from Fwidget_plist_member. |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
1368 (Fwidget_get): Use it. |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
1369 (syms_of_fns): Defsubr it. |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
1370 |
29939 | 1371 2000-06-26 Gerd Moellmann <gerd@gnu.org> |
1372 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1373 * xterm.c (xim_initialize) [!USE_XIM]: Don't set up the |
29949 | 1374 display info for XIM. |
1375 (xim_open_dpy): Likewise. | |
1376 (xim_close_dpy): Don't free the display info's XIM. | |
1377 | |
1378 * xfns.c (x_window) [!USE_XIM]: Don't call create_frame_ic. | |
1379 | |
1380 * config.in (USE_XIM): New define. | |
1381 | |
29942 | 1382 * keymap.c (get_keyelt): For menu-items containing a `:filter |
1383 FILTER', apply FILTER to the menu-item's definition to get the | |
1384 real definition to use. | |
1385 | |
1386 * lisp.h (QCfilter): External declaration. | |
1387 | |
29939 | 1388 * xfns.c (Fimage_size): New function. |
1389 (syms_of_xfns): Defsubr it. | |
1390 | |
29933 | 1391 2000-06-26 Andreas Schwab <schwab@suse.de> |
1392 | |
1393 * coding.c (decode_coding_string): Re-fetch STRING_BYTES after | |
1394 Fstring_as_unibyte. | |
1395 | |
29930 | 1396 2000-06-25 Dave Love <fx@gnu.org> |
1397 | |
1398 * term.c [!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, | |
1399 tgetnum. | |
1400 | |
1401 * Makefile.in (blockinput.h): Depend on atimer.h. | |
1402 (atimer.h): Depend on systime.h. | |
1403 | |
1404 * blockinput.h: Protect against multiple inclusion. Include | |
1405 atimer.h. | |
1406 | |
1407 * atimer.h: Protect against multiple inclusion. Include | |
1408 systime.h. | |
1409 | |
1410 * lisp.h (swap_in_global_binding): Declare. | |
1411 | |
29921
8a4552214d84
* process.c (Fopen_network_stream): Turn off atimers for duration of call to
Ken Raeburn <raeburn@raeburn.org>
parents:
29918
diff
changeset
|
1412 2000-06-24 Ken Raeburn <raeburn@gnu.org> |
8a4552214d84
* process.c (Fopen_network_stream): Turn off atimers for duration of call to
Ken Raeburn <raeburn@raeburn.org>
parents:
29918
diff
changeset
|
1413 |
8a4552214d84
* process.c (Fopen_network_stream): Turn off atimers for duration of call to
Ken Raeburn <raeburn@raeburn.org>
parents:
29918
diff
changeset
|
1414 * process.c (Fopen_network_stream): Turn off atimers for duration |
8a4552214d84
* process.c (Fopen_network_stream): Turn off atimers for duration of call to
Ken Raeburn <raeburn@raeburn.org>
parents:
29918
diff
changeset
|
1415 of call to connect. (Patch from Gerd.) |
8a4552214d84
* process.c (Fopen_network_stream): Turn off atimers for duration of call to
Ken Raeburn <raeburn@raeburn.org>
parents:
29918
diff
changeset
|
1416 |
29916 | 1417 2000-06-23 Dave Love <fx@gnu.org> |
1418 | |
29918 | 1419 * ralloc.c: Maybe include unistd.h |
1420 | |
29916 | 1421 * emacs.c (setgrp): Undefine before defining. |
1422 (malloc_warning, set_time_zone_rule, index): Prototype. | |
1423 | |
1424 * systime.h (EMACS_GET_TIME) [!GETTIMEOFDAY_ONE_ARGUMENT]: Use | |
1425 HAVE_STRUCT_TIMEZONE. | |
1426 | |
1427 * s/osf1.h: Move string.h hack here from alpha.h and make it | |
1428 conditional. | |
1429 (C_SWITCH_SYSTEM): Use _OSF_SOURCE, not -BSD, which clashes with | |
1430 _XOPEN_SOURCE. | |
1431 (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist, NSIG): Define. | |
1432 (SOCKLEN_TYPE): Don't define. | |
1433 | |
1434 * m/alpha.h: Remove string.h hack. | |
1435 | |
1436 * s/osf5-0.h: New file. | |
1437 | |
1438 * filelock.c: Use feature tests for fcntl.h, string.h. Don't | |
1439 include time.h, done by systime.h. | |
1440 [__FreeBSD__]: Remove redundant includes. | |
1441 | |
29942 | 1442 * callproc.c (setpgrp): Undefine before defining. |
29916 | 1443 (delete_temp_file): Return Qnil to avoid warning. |
1444 | |
1445 * config.in (HAVE_TERM_H, HAVE_STRUCT_TIMEZONE): Add. | |
1446 | |
1447 * xfaces.c: Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not | |
1448 HAVE_X_WINDOWS. | |
1449 | |
1450 * fontset.h (free_face_fontset): Renamed from fs_free_face_fontset. | |
1451 | |
1452 * composite.h (compose_text): Declare. | |
1453 | |
1454 * xterm.c: Don't include sys/types.h unconditionally. Don't | |
1455 protect its inclusion with !USG (following xmenu.c). | |
1456 | |
29888 | 1457 2000-06-23 Gerd Moellmann <gerd@gnu.org> |
1458 | |
1459 * xfns.c (x_create_tip_frame): Initialize frame's colors like | |
1460 in x_create_frame. | |
1461 | |
29878 | 1462 2000-06-23 Eli Zaretskii <eliz@is.elta.co.il> |
1463 | |
1464 * coding.c (decode_eol_post_ccl): Special handling for undecided | |
1465 and inconsistent EOL types. | |
1466 | |
29860 | 1467 2000-06-22 Gerd Moellmann <gerd@gnu.org> |
1468 | |
29868 | 1469 * xrdb.c (x_load_resources): Add default resource for scroll bar's |
1470 trough color and main window's background color. | |
1471 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1472 * xfns.c (Fx_file_dialog) [HAVE_MOTIF_2_1]: Handle events |
29868 | 1473 differently. |
1474 | |
1475 * xterm.h (Xt_app_con): External declaration. | |
1476 | |
1477 * widget.c (EmacsFrameRealize): Fix typo. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1478 |
29862 | 1479 * widget.c (EmacsFrameRealize): Remove SubstructureRedirectMask. |
1480 | |
29860 | 1481 * xdisp.c (handle_stop): Initialize it->add_overlay_start to zero. |
1482 (handle_invisible_prop): Record the start of invisible text in | |
1483 it->add_overlay_start. | |
1484 (struct overlay_entry): Add member `overlay'. | |
1485 (handle_overlay_change): Simplify. | |
1486 (next_overlay_string): After having processed overlay strings at the | |
1487 end of the buffer, record that fact in | |
1488 it->overlay_strings_at_end_processed_p. | |
1489 (compare_overlay_entries): If before- and after-strings come | |
1490 from the same overlay, let before-strings come first. | |
1491 (RECORD_OVERLAY_STRING): Record the overlay that strings come from. | |
1492 (load_overlay_strings): Take it->add_overlay_start into account | |
1493 when adding overlay strings. | |
1494 | |
1495 * dispextern.h (struct it): Add member add_overlay_start. | |
1496 | |
29852 | 1497 2000-06-22 Dave Love <fx@gnu.org> |
1498 | |
1499 * s/isc3-0.h (C_SWITCH_SYSTEM): Define _XOPEN_SOURCE=500. | |
1500 | |
1501 * s/gnu-linux.h (C_SWITCH_SYSTEM): Don't define _XOPEN_SOURCE here. | |
1502 | |
29846 | 1503 2000-06-22 Kenichi Handa <handa@etl.go.jp> |
1504 | |
1505 * ccl.c (ccl_driver) <CCL_End>: Decrement stack_idx only when it | |
1506 is greater than 0. | |
1507 | |
29843 | 1508 2000-06-21 Dave Love <fx@gnu.org> |
1509 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1510 * Makefile.in (GETLOADAVG_OBJ): Removed -- LIBOBJS does it. |
29843 | 1511 |
29836
f3aaf610f8a9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29834
diff
changeset
|
1512 2000-06-21 Stefan Monnier <monnier@cs.yale.edu> |
f3aaf610f8a9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29834
diff
changeset
|
1513 |
f3aaf610f8a9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29834
diff
changeset
|
1514 * syntax.c (back_comment): Simplify string-parity counting (with |
f3aaf610f8a9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29834
diff
changeset
|
1515 the added benefit of handling multiple string-styles as long as |
f3aaf610f8a9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29834
diff
changeset
|
1516 they are not intertwined). |
f3aaf610f8a9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29834
diff
changeset
|
1517 Jump to the slow code as soon as a comment starter is found in |
f3aaf610f8a9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29834
diff
changeset
|
1518 a "string_lossage" position. Fixes the case: " /* " /* " */. |
f3aaf610f8a9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29834
diff
changeset
|
1519 |
29834 | 1520 2000-06-21 Dave Love <fx@gnu.org> |
1521 | |
1522 * Makefile.in: Use GETLOADAVG_LIBS. | |
1523 | |
1524 * config.in: Add HAVE_FCNTL_H, _FILE_OFFSET_BITS, | |
1525 _LARGEFILE_SOURCE, _LARGE_FILES, _XOPEN_SOURCE. | |
1526 | |
29822
d24cc3dc6bbc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29820
diff
changeset
|
1527 2000-06-20 Stefan Monnier <monnier@cs.yale.edu> |
d24cc3dc6bbc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29820
diff
changeset
|
1528 |
d24cc3dc6bbc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29820
diff
changeset
|
1529 * syntax.c (describe_syntax): Recognize the `n'estable bit. |
d24cc3dc6bbc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29820
diff
changeset
|
1530 (Fforward_comment, scan_lists): |
d24cc3dc6bbc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29820
diff
changeset
|
1531 Check the comstyle of single-char comment-starters. |
d24cc3dc6bbc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29820
diff
changeset
|
1532 (scan_sexps_forward): Don't try to recognize `half comment-enders' if |
d24cc3dc6bbc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29820
diff
changeset
|
1533 we're just at the beginning of the comment (f.ex with (*) ... (*)). |
29824
26ad198aa883
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29822
diff
changeset
|
1534 Check the comstyle of single-char comment-starters. |
26ad198aa883
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29822
diff
changeset
|
1535 Clarify control-flow around the Scomment case. |
29822
d24cc3dc6bbc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29820
diff
changeset
|
1536 |
29815 | 1537 2000-06-20 Dave Love <fx@gnu.org> |
1538 | |
29824
26ad198aa883
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29822
diff
changeset
|
1539 * fns.c (make_hash_table, maybe_resize_hash_table): |
26ad198aa883
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29822
diff
changeset
|
1540 Cast arg of next_almost_prime. |
29815 | 1541 |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1542 * tparam.c [emacs]: Include lisp.h. |
29815 | 1543 |
1544 * termcap.c [emacs]: Test HAVE_FCNTL_H, not USG5. Include lisp.h | |
1545 and unistd.h. | |
1546 | |
29814 | 1547 2000-06-20 Gerd Moellmann <gerd@gnu.org> |
1548 | |
29820 | 1549 * keyboard.c (adjust_point_for_property): Check if display |
1550 property should be treated as intangible by looking at its | |
1551 value. | |
1552 | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1553 * xdisp.c (single_display_prop_intangible_p) |
29820 | 1554 (display_prop_intangible_p): New functions. |
1555 | |
1556 * dispextern.h (display_prop_intangible_p): Add prototype. | |
1557 | |
1558 * xdisp.c (dump_glyph_row): Show type of glyph->object. | |
30235
5a0d447b7eea
check default_face before dereferencing
Sam Steingold <sds@gnu.org>
parents:
30234
diff
changeset
|
1559 |
29814 | 1560 * s/isc4-0.h (sigblock): Redefined to pass a pointer as second |
1561 argument to sigprocmask. | |
1562 | |
1563 * s/sco5.h (sigblock): Redefined to pass a pointer as second | |
1564 argument to sigprocmask. | |
1565 | |
1566 * syssignal.h (sigblock, sigunblock) [USG5_4]: Set | |
1567 sigprocmask_set, and pass a pointer to it to sigprocmask. | |
1568 | |
1569 * sysdep.c (sigprocmask_set): New variable. | |
1570 | |
1571 * fileio.c (make_temp_name): Don't use `%s' in string passed to | |
1572 report_file_error. | |
1573 | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
1574 2000-06-20 Sam Steingold <sds@gnu.org> |
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
1575 |
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
1576 * xrdb.c: Don't declare xmalloc, xrealloc. |
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
1577 |
29802
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29796
diff
changeset
|
1578 2000-06-20 Stefan Monnier <monnier@cs.yale.edu> |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29796
diff
changeset
|
1579 |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29796
diff
changeset
|
1580 * regex.c (re_match, re_match_2): Protect calls to alloca (0). |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29796
diff
changeset
|
1581 (re_comp): Cast gettext return value to avoid complaints when |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29796
diff
changeset
|
1582 !HAVE_LIBINTL. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29796
diff
changeset
|
1583 |
29786 | 1584 2000-06-20 Dave Love <fx@gnu.org> |
1585 | |
29796 | 1586 * m/stride.h, m/mips.h: Don't define HAVE_GETWD, |
1587 HAVE_GETTIMEOFDAY. | |
1588 | |
29815 | 1589 * m/ibmrt-aix.h: Don't declare HAVE_GETTIMEOFDAY, HAVE_VFORK. |
29796 | 1590 |
29824
26ad198aa883
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29822
diff
changeset
|
1591 * m/ibmrs6000.h, m/ibmps2-aix.h, m/dpx2.h: Don't declare HAVE_GETWD. |
29796 | 1592 |
1593 * m/alpha.h: Don't declare xmalloc, xrealloc. | |
1594 | |
29790 | 1595 * s/ux4800.h: Don't declare GETTIMEOFDAY_ONE_ARGUMENT. |
1596 | |
1597 * s/usg5-4-2.h: Don't declare HAVE_GETWD, VFORK_RETURN_TYPE. | |
1598 | |
1599 * s/umips.h: Don't declare HAVE_GETWD, HAVE_GETTIMEOFDAY. | |
1600 | |
1601 * s/cxux.h, s/gnu-linux.h, s/iris3-6.h, s/irix3-3.h: Don't declare | |
1602 HAVE_GETWD. | |
1603 | |
29786 | 1604 * keyboard.h (poll_for_input_1): Declare. |
1605 | |
1606 * getloadavg.c: Don't define NLIST_STRUCT (handled by configure). | |
1607 | |
1608 * alloc.c (xmalloc, xrealloc, xfree): Define using POINTER_TYPE. | |
1609 | |
1610 * doprnt.c: Don't declare xmalloc, xrealloc. | |
1611 | |
1612 * lisp.h (x_set_tool_bar_lines, free_frame_xic, compose_text) | |
1613 (getenv, ctime, getwd): Removed. | |
1614 (xmalloc, xrealloc, xfree): Declare using POINTER_TYPE. | |
1615 | |
1616 * xterm.h: Remove duplicate prototypes. Declare free_frame_xic, | |
1617 x_set_tool_bar_lines. | |
1618 | |
1619 * config.in: Add HAVE_GETWD. Move some definitions above | |
1620 machine/system includes. | |
1621 | |
29766 | 1622 2000-06-20 Kenichi Handa <handa@etl.go.jp> |
1623 | |
29770 | 1624 * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1. |
1625 | |
29766 | 1626 * xfaces.c (font_list): Handle the case that REGISTRY doesn't |
1627 contain information about ENCODING. | |
1628 | |
1629 * fontset.c (FONTSET_ASCII): Use the first element of char table | |
1630 for an ASCII font, not defalt slot. | |
1631 (fontset_ref_via_base): If FONTSET doesn't contain information for | |
1632 C, try the default fontset. | |
1633 (make_fontset): Don't copy the default fontset. | |
1634 (fontset_font_pattern): Likewise. | |
1635 (accumulate_font_info): If ELT is nil, use the corresponding | |
1636 element in the default fontset. | |
1637 | |
29752 | 1638 2000-06-19 Dave Love <fx@gnu.org> |
1639 | |
29758 | 1640 * syntax.c (Fparse_partial_sexp): Doc fix. |
1641 | |
1642 * regex.h: Test PROTOTYPES as well as __STDC__. | |
1643 | |
29752 | 1644 * unexalpha.c: Include errno.h, string.h, unistd.h. Don't declare |
1645 errno, strerror. Put text after #endif in comment. | |
1646 | |
1647 * xdisp.c (dump_glyph_matrix): Add `static' to declaration (for | |
1648 pcc). | |
1649 | |
1650 * xterm.c (x_frame_of_widget): Likewise. | |
1651 | |
29747 | 1652 2000-06-19 Gerd Moellmann <gerd@gnu.org> |
1653 | |
1654 * abbrev.c (syms_of_abbrev): Set buffer_default's abbrev table | |
1655 to Vfundamental_mode_abbrev_table. | |
1656 | |
1657 * alloc.c (mark_object) [GC_CHECK_MARKED_OBJECTS]: Check that no | |
1658 bogus objects are marked. This slows down GC by ~80 percent, but | |
1659 it might be worth trying when debugging GC-related problems. | |
1660 This feature requires conservative stack marking to be enabled. | |
1661 | |
1662 * xterm.c (XTread_socket) <KeyPress>: In case XmbLookupString | |
1663 returns XLookupChars, reset `modifiers' to zero. | |
1664 | |
29738 | 1665 2000-06-19 Dave Love <fx@gnu.org> |
1666 | |
1667 * mktime.c: Unprotoized. | |
1668 | |
30337
5861c80aa795
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30329
diff
changeset
|
1669 2000-06-19 Richard Stallman <rms@gnu.org> |
29736 | 1670 |
1671 * data.c (set_internal): If variable is frame-local, | |
1672 store the new value immediately into the frame parameter alist. | |
1673 | |
29726
c9430bc1c824
* keyboard.c (follow_key, read_key_sequence): Use XUINT on key value, or checks
Ken Raeburn <raeburn@raeburn.org>
parents:
29720
diff
changeset
|
1674 2000-06-19 Ken Raeburn <raeburn@gnu.org> |
c9430bc1c824
* keyboard.c (follow_key, read_key_sequence): Use XUINT on key value, or checks
Ken Raeburn <raeburn@raeburn.org>
parents:
29720
diff
changeset
|
1675 |
29728
f0f1e1365670
fix jpeg error-handling setup
Ken Raeburn <raeburn@raeburn.org>
parents:
29727
diff
changeset
|
1676 * xfns.c (jpeg_load): Fetch error-handling data first, then fill |
f0f1e1365670
fix jpeg error-handling setup
Ken Raeburn <raeburn@raeburn.org>
parents:
29727
diff
changeset
|
1677 in the custom handler pointer. |
f0f1e1365670
fix jpeg error-handling setup
Ken Raeburn <raeburn@raeburn.org>
parents:
29727
diff
changeset
|
1678 |
29726
c9430bc1c824
* keyboard.c (follow_key, read_key_sequence): Use XUINT on key value, or checks
Ken Raeburn <raeburn@raeburn.org>
parents:
29720
diff
changeset
|
1679 * keyboard.c (follow_key, read_key_sequence): Use XUINT on key |
29727
a1a4b7597a40
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
29726
diff
changeset
|
1680 value, or checks for CHAR_META can fail when Lisp_Object is a |
a1a4b7597a40
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
29726
diff
changeset
|
1681 union type. |
29726
c9430bc1c824
* keyboard.c (follow_key, read_key_sequence): Use XUINT on key value, or checks
Ken Raeburn <raeburn@raeburn.org>
parents:
29720
diff
changeset
|
1682 * keymap.c (get_keyelt): Likewise. |
c9430bc1c824
* keyboard.c (follow_key, read_key_sequence): Use XUINT on key value, or checks
Ken Raeburn <raeburn@raeburn.org>
parents:
29720
diff
changeset
|
1683 |
29720 | 1684 2000-06-19 Kenichi Handa <handa@etl.go.jp> |
1685 | |
1686 * ccl.h (struct ccl_program): New member eol_type. | |
1687 (struct ccl_spec): New member cr_carryover. | |
1688 | |
1689 * ccl.c (CCL_WRITE_CHAR): Convert NL according to ccl->eol_type. | |
1690 (setup_ccl_program): Initialize ccl->eol_type to CODING_EOL_LF. | |
1691 | |
1692 * coding.c (setup_coding_system) <4>: Reset member `cr_carryover'. | |
1693 (ccl_coding_driver): On encoding, initialize ccl->eol_type. | |
1694 (decode_eol_post_ccl): New function. | |
1695 (decode_coding): Don't detect EOL format here for CCL based coding | |
1696 systems. | |
1697 (decode_coding) <coding_type_ccl>: Handle carryovered CR. Call | |
1698 decode_eol_post_ccl after running the CCL program. | |
1699 (code_convert_region): Don't detect EOL format here for CCL based | |
1700 coding systems. | |
1701 (decode_coding_string): Likewise. | |
1702 | |
29717
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1703 2000-06-18 Ken Raeburn <raeburn@gnu.org> |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1704 |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1705 * charset.c (update_charset_table): Use XINT on "iso_final_char" |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1706 when treating it as an integer. |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1707 |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1708 * coding.h (encode_coding_string): Declare. |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1709 |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1710 * keyboard.c (read_key_sequence): Use XINT on "pos" when treating |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1711 it as an integer. |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1712 |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1713 * keymap.c (Fwhere_is_internal): Rename argument "keymap" to |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1714 "xkeymap" to avoid shadowing the "enum map_type" value that needs |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1715 to be passed to get_local_map. |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1716 |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1717 * sound.c (Fplay_sound): Don't call make_number on |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1718 Frun_hook_with_args count argument. |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1719 |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1720 * xterm.c (x_send_scroll_bar_event): Fudge lisp object/integer |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1721 for lisp objects in X event structure data field, when lisp |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1722 objects are represented with unions. |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1723 (x_scroll_bar_to_input_event): Ditto. |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29712
diff
changeset
|
1724 |
29697
f24d81dfa064
* xdisp.c (decode_mode_spec): In "no_value" case, do NUL termination of string.
Ken Raeburn <raeburn@raeburn.org>
parents:
29696
diff
changeset
|
1725 2000-06-16 Ken Raeburn <raeburn@gnu.org> |
f24d81dfa064
* xdisp.c (decode_mode_spec): In "no_value" case, do NUL termination of string.
Ken Raeburn <raeburn@raeburn.org>
parents:
29696
diff
changeset
|
1726 |
f24d81dfa064
* xdisp.c (decode_mode_spec): In "no_value" case, do NUL termination of string.
Ken Raeburn <raeburn@raeburn.org>
parents:
29696
diff
changeset
|
1727 * xdisp.c (decode_mode_spec): In "no_value" case, do NUL |
29698
9ad6e18de5f7
* xdisp.c (decode_mode_spec): Fix sense of test whether Vline_number_display_limit is an integer.
Ken Raeburn <raeburn@raeburn.org>
parents:
29697
diff
changeset
|
1728 termination of string. Fix sense of test whether |
9ad6e18de5f7
* xdisp.c (decode_mode_spec): Fix sense of test whether Vline_number_display_limit is an integer.
Ken Raeburn <raeburn@raeburn.org>
parents:
29697
diff
changeset
|
1729 Vline_number_display_limit is an integer. |
29697
f24d81dfa064
* xdisp.c (decode_mode_spec): In "no_value" case, do NUL termination of string.
Ken Raeburn <raeburn@raeburn.org>
parents:
29696
diff
changeset
|
1730 |
29688 | 1731 2000-06-16 Gerd Moellmann <gerd@gnu.org> |
1732 | |
29712 | 1733 * xfaces.c (syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors |
1734 only if HAVE_X_WINDOWS. | |
1735 | |
29696 | 1736 * keymap.c (describe_buffer_bindings): Add `\f\n' in front |
1737 of titles. | |
1738 | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
1739 * dispnew.c (update_frame_1): Handle case that cursor vpos is |
29688 | 1740 out of bounds. |
1741 | |
29670 | 1742 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il> |
1743 | |
1744 * unexec.c (toplevel): Fix last change, so as not to deprive MSDOS | |
1745 of its headers. | |
1746 | |
29662 | 1747 2000-06-15 Kenichi Handa <handa@etl.go.jp> |
1748 | |
1749 * coding.c (decode_coding_emacs_mule): Always set src_base at the | |
1750 start of the while loop. | |
1751 | |
29661 | 1752 2000-06-15 Gerd Moellmann <gerd@gnu.org> |
1753 | |
29673 | 1754 * atimer.c (alarm_signal_handler): Add forward declaration. |
1755 | |
29661 | 1756 * data.c (set_internal): Remove debug code. |
1757 | |
29637 | 1758 2000-06-14 Gerd Moellmann <gerd@gnu.org> |
1759 | |
29657 | 1760 * Makefile.in (bootstrap-temacs): Add `-I../src'. |
1761 | |
29654 | 1762 * unexec.c (toplevel) [COFF]: Include coff.h. |
1763 | |
1764 * s/lynxos.h: New file. | |
1765 | |
1766 * keymap.c (Fsingle_key_description): Enclose function key and | |
1767 event symbol names in angle brackets. | |
1768 | |
29644 | 1769 * xdisp.c (setup_echo_area_for_printing): Call |
1770 message_log_maybe_newline if message_buf_print is not set. | |
1771 | |
1772 * print.c (printchar, strout): Don't check message_buf_print | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
1773 before calling setup_echo_area_for_printing because that |
29644 | 1774 function does something useful even when message_buf_print is |
1775 already set. | |
1776 | |
29637 | 1777 * xdisp.c (message_truncate_lines, Qmessage_truncate_lines): New |
1778 variables. | |
1779 (ensure_echo_area_buffers): Initialize echo buffer's | |
1780 truncate lines setting to nil. | |
1781 (with_echo_area_buffer): Don't set the echo buffer's truncate | |
1782 lines setting here. | |
29644 | 1783 (set_message_1): Set it here instead, based on the value |
29637 | 1784 of message_truncate_lines. |
1785 (resize_mini_window): Handle case that lines are truncated. | |
1786 (syms_of_xdisp): Initialize Qmessage_truncate_lines. DEFVAR_BOOL | |
1787 message-truncate-lines. | |
1788 | |
1789 * keyboard.c (read_char): Bind message-truncate-lines to t | |
1790 while displaying a help-echo. | |
1791 | |
1792 * lisp.h (Qmessage_truncate_lines): External declaration. | |
1793 | |
29620 | 1794 2000-06-13 Gerd Moellmann <gerd@gnu.org> |
1795 | |
29633 | 1796 * xdisp.c (Vline_number_display_limit): Renamed from |
1797 line_number_display_limit. | |
1798 (syms_of_xdisp): Use DEFVAR_LISP for line-number-display-limit. | |
1799 Extend documentation string. Initialize | |
1800 Vline_number_display_limit to nil meaning no limit. | |
1801 (decode_mode_spec): Use Vline_number_display_limit with its new | |
1802 meaning. | |
1803 | |
29620 | 1804 * xterm.c (x_check_font) [GLYPH_DEBUG]: Add prototype. |
1805 | |
30337
5861c80aa795
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30329
diff
changeset
|
1806 2000-06-13 Richard Stallman <rms@gnu.org> |
29620 | 1807 |
1808 * frame.c (Fmodify_frame_parameters): Doc fix. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
1809 |
29620 | 1810 * xfns.c (x_set_frame_parameters): Comment fix. |
1811 | |
1812 * frame.c (store_frame_param): Call swap_in_global_binding if the | |
1813 variable's current binding was chosen based on this frame. | |
1814 | |
1815 * data.c (swap_in_global_binding): New function. | |
1816 | |
29615 | 1817 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il> |
1818 | |
1819 * msdos.c (IT_write_glyphs): Don't use CODING_REQUIRE_ENCODING | |
1820 macro, instead AND with CODING_REQUIRE_ENCODING_MASK. | |
1821 | |
29612 | 1822 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il> |
1823 | |
1824 * msdos.h (EMACS_MSDOS_H): Renamed from MSDOS_H_. | |
1825 | |
29606 | 1826 2000-06-12 Jason Rumney <jasonr@gnu.org> |
1827 | |
1828 * w32bdf.h (EMACS_W32BDF_H): Renamed from __W32BDF_H__ | |
1829 | |
1830 * w32.h (EMACS_W32_H): Renamed from _NT_H_ | |
1831 | |
1832 * w32gui.h (EMACS_W32GUI_H): Renamed from __W32GUI_H__ | |
1833 | |
1834 * w32inevt.h (EMACS_W32INEVT_H): Renamed from __NTINEVT_H__ | |
1835 | |
29603 | 1836 2000-06-12 Gerd Moellmann <gerd@gnu.org> |
1837 | |
1838 * xfaces.c (Fdump_colors) [DEBUG_X_COLORS]: New function. | |
1839 (syms_of_xfaces): Defsubr Sdump_colors. | |
1840 (x_free_colors): Don't treat b&w specially on default visual. | |
1841 (x_free_dpy_colors): New function. | |
1842 (free_face_colors): Don't check visual class; it's done | |
1843 in x_free_colors. | |
1844 | |
1845 * xterm.c (x_frame_of_widget): New function. | |
1846 (x_alloc_nearest_color_for_widget): Use it. | |
1847 (x_copy_dpy_color): New function. | |
1848 (x_destroy_window): Free various colors. | |
1849 | |
29574 | 1850 2000-06-12 Kenichi Handa <handa@etl.go.jp> |
1851 | |
1852 * ccl.h (EMACS_CCL_H): Renamed from _CCL_H. | |
1853 | |
1854 * charset.h (EMACS_CHARSET_H): Renamed from _CHARSET_H. | |
1855 | |
1856 * coding.h (EMASC_CODING_H): Renamed from _CODING_H. | |
1857 | |
1858 * composite.h (EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H. | |
1859 | |
1860 * fontset.h (EMACS_FONTSET_H): Renamed from _FONTSET_H. | |
1861 | |
29560 | 1862 2000-06-11 Dave Love <fx@gnu.org> |
1863 | |
1864 * systime.h (EMACS_SYSTIME_H): Renamed from _SYSTIME_H. | |
1865 | |
29558 | 1866 2000-06-11 Eli Zaretskii <eliz@is.elta.co.il> |
1867 | |
1868 * msdos.h: Don't use _MSDOS_H_ as a symbol, use MSDOS_H_ instead. | |
1869 | |
29556 | 1870 2000-06-11 Gerd Moellmann <gerd@gnu.org> |
1871 | |
29603 | 1872 * xmenu.c (xmenu_show): Cast second parameter of lw_popup_menu |
29556 | 1873 to `XEvent *'. |
1874 | |
29537 | 1875 2000-06-10 Kenichi Handa <handa@etl.go.jp> |
1876 | |
29545 | 1877 * regex.c (MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env. |
1878 (regex_compile): Fix the code for handling the case of single byte | |
1879 char and multibyte char being mixed in a range within [...]. | |
1880 | |
29541 | 1881 * fileio.c (Finsert_file_contents): Be sure to setup src_multibyte |
1882 and dst_multibyte members of coding. | |
1883 | |
29537 | 1884 * charset.c (update_charset_table): Update the table |
1885 bytes_by_char_head. | |
1886 (init_charset_once): Initialize elements of bytes_by_char_head to | |
1887 1 except for leading codes for private charases. | |
1888 | |
1889 * charset.h (CHARSET_8_BIT_GRAPHIC): Define as 0x80. | |
1890 (UNIBYTE_STR_AS_MULTIBYTE_P): Fix for an invalid multibyte | |
1891 sequence. | |
1892 | |
29536
4def8a9e785a
* xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to
Ken Raeburn <raeburn@raeburn.org>
parents:
29517
diff
changeset
|
1893 2000-06-09 Ken Raeburn <raeburn@gnu.org> |
4def8a9e785a
* xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to
Ken Raeburn <raeburn@raeburn.org>
parents:
29517
diff
changeset
|
1894 |
4def8a9e785a
* xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to
Ken Raeburn <raeburn@raeburn.org>
parents:
29517
diff
changeset
|
1895 * xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to |
4def8a9e785a
* xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to
Ken Raeburn <raeburn@raeburn.org>
parents:
29517
diff
changeset
|
1896 access the data it doesn't point to. |
4def8a9e785a
* xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to
Ken Raeburn <raeburn@raeburn.org>
parents:
29517
diff
changeset
|
1897 |
29517 | 1898 2000-06-08 Gerd Moellmann <gerd@gnu.org> |
1899 | |
1900 * xterm.c (XTread_socket) <FocusIn>: Queue a FOCUS_IN_EVENT which | |
29556 | 1901 will be translated to a switch-frame event when reading the |
29517 | 1902 event queue. This is necessary because Emacs otherwise won't |
1903 perform a switch-frame to a new frame until some other event, for | |
1904 example a keystroke event, forces it to do so. This has various | |
1905 effects, one visible being that the cursor of a frame created with | |
1906 C-x 5 2 or switched to with a window manager key binding like | |
1907 A-TAB stays hollow because selected_window isn't on the newly | |
1908 focused frame until the switch-frame is performed. | |
1909 | |
1910 * keyboard.c (kbd_buffer_get_event): Handle FOCUS_IN_EVENT by | |
1911 generating a switch-frame event if necessary. | |
1912 | |
1913 * termhooks.h (enum event_kind): Add FOCUS_IN_EVENT. | |
1914 | |
1915 * xdisp.c (handle_fontified_prop): Don't GCPRO local var `pos'; | |
1916 it's an integer. | |
1917 | |
29502 | 1918 2000-06-08 Kenichi Handa <handa@etl.go.jp> |
1919 | |
1920 * fontset.c (Fset_fontset_font): The arg CHARACTER may be a | |
1921 charset. | |
1922 | |
29482 | 1923 2000-06-07 Gerd Moellmann <gerd@gnu.org> |
1924 | |
29489 | 1925 * window.c (displayed_window_lines): Take empty lines at |
1926 the bottom of a window into account. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
1927 |
29487 | 1928 * window.c (displayed_window_lines): New function. |
1929 (Fmove_to_window_line): Use displayed_window_lines to determine | |
1930 the number of lines to move, instead of using the window's height. | |
1931 | |
1932 * lread.c (readevalloop): If READCHARFUN sets point to ZV, arrange | |
1933 to stop reading, even if the form read sets point to a different | |
1934 value when evaluated. | |
1935 | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
1936 * xdisp.c (display_line): Fix code deciding in which line to |
29482 | 1937 put the cursor. |
1938 | |
29479 | 1939 2000-06-07 Kenichi Handa <handa@etl.go.jp> |
1940 | |
1941 * fileio.c (e_write): Free composition data if stored in | |
1942 coding->cmp_data. | |
1943 | |
29460 | 1944 2000-06-06 Gerd Moellmann <gerd@gnu.org> |
1945 | |
29475 | 1946 * xdisp.c (display_line): Set row's and iterator's |
1947 starts_in_middle_of_char_p and ends_in_middle_of_char_p flags. | |
1948 Set cursor even if row ends in the middle of a character. | |
1949 (dump_glyph_row): Print values of new flags. | |
1950 (redisplay_window) <cursor movement in unchanged window>: When | |
1951 point has been moved forward, and PT is at the end of the cursor | |
1952 row, don't place the cursor in the next row if the cursor row ends | |
1953 in the middle of a character or at ZV. | |
1954 | |
1955 * dispextern.h (struct it): Add starts_in_middle_of_char_p. | |
1956 (struct glyph_row): Add starts_in_middle_of_char_p and | |
1957 ends_in_middle_of_char_p. | |
1958 (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P): Test row's | |
1959 ends_in_middle_of_char_p flag. | |
1960 (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Likewise. | |
1961 | |
29463 | 1962 * term.c (append_glyph): Revert change of 2000-06-06. |
1963 | |
1964 * xdisp.c (display_line): Revert change of 2000-06-06. Treat | |
1965 padding glyph not fitting on line as whole character not | |
1966 fitting on line. | |
1967 | |
29460 | 1968 * xterm.c (x_produce_glyphs): Don't xassert `it->descent > 0'; |
1969 this isn't true for images with `:ascent 100'. | |
1970 | |
29450 | 1971 2000-06-06 Kenichi Handa <handa@etl.go.jp> |
1972 | |
29457 | 1973 * buffer.c (Fset_buffer_multibyte): Don't make the current buffer |
1974 as modified if it is originally unmodified. | |
1975 | |
29450 | 1976 * term.c (encode_terminal_code): Change the way to check if |
1977 terminal coding does any conversion. | |
1978 (append_glyph): Set glyph->pixel_width correctly. | |
1979 | |
29451 | 1980 * xdisp.c (display_line): While checking line continuation, pay |
1981 attention to a padding glyph. | |
1982 | |
29447 | 1983 2000-06-05 Gerd Moellmann <gerd@gnu.org> |
1984 | |
1985 * xdisp.c (redisplay_window): Always use set_buffer_internal_1. | |
1986 | |
29431 | 1987 2000-06-05 Dave Love <fx@gnu.org> |
1988 | |
29444 | 1989 * xdisp.c: Include fontset.h. |
1990 | |
1991 * xfns.c (x_real_positions): Declare tmp_nchildren as unsigned. | |
1992 | |
1993 * xterm.c (x_calc_absolute_position): Declare nchildren unsigned. | |
1994 | |
1995 * dispnew.c: Conditionally include term.h. | |
1996 | |
1997 * coding.h: Declare code_convert_string_norecord. | |
1998 | |
1999 * frame.h (struct frame): Use volatile unconditionally. | |
2000 | |
2001 * buffer.h: Remove Vbefore_change_function, Vafter_change_function. | |
2002 | |
2003 * xmenu.c (menu_item_selection): Declare volatile unconditionally. | |
2004 | |
2005 * systime.h: Protect against multiple inclusion. | |
2006 (timezone) [USG5_4]: Define as time_t. | |
2007 | |
2008 * lisp.h (DEFUN, EXFUN): Test PROTOTYPES. | |
2009 (Foptimize_char_table, make_temp_name): Declare. | |
2010 | |
2011 * Makefile.in (xdisp.o): Depend on fontset.h. | |
2012 | |
2013 * xterm.c (x_calc_absolute_position): Declare nchildren unsigned. | |
2014 | |
2015 * lisp.h (DEFUN, EXFUN): Test PROTOTYPES. | |
2016 (Foptimize_char_table, make_temp_name): Declare. | |
2017 | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
2018 * s/irix4-0.h: |
29431 | 2019 * s/irix5-0.h: |
2020 * s/netbsd.h: Don't define autoconfiscated MATHERR. | |
2021 | |
29397 | 2022 2000-06-02 Dave Love <fx@gnu.org> |
2023 | |
2024 * lread.c (_XOPEN_SOURCE, __EXTENSIONS__): Don't define. | |
2025 | |
29395 | 2026 2000-06-02 Gerd Moellmann <gerd@gnu.org> |
2027 | |
2028 * xfaces.c (realize_x_face): When copying BASE_FACE bitwise to the | |
29447 | 2029 result face, set flags in that face indicating that colors may not |
29395 | 2030 be freed. |
2031 | |
2032 * xterm.c (x_set_mouse_face_gc): If first glyph isn't a character | |
2033 glyph, use the ASCII NUL character to determine the face. | |
2034 | |
29388 | 2035 2000-06-02 Dave Love <fx@gnu.org> |
2036 | |
2037 * sysdep.c: Conditionally include stdlib.h, unistd.h. | |
2038 (VFORK_RETURN_TYPE): Remove. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
2039 |
29388 | 2040 * config.in: Add NO_MATHERR. |
2041 | |
29368 | 2042 2000-06-01 Dave Love <fx@gnu.org> |
2043 | |
29383 | 2044 * cmds.c (internal_self_insert): Don't check |
2045 Vbefore_change_function, Vafter_change_function. | |
2046 | |
2047 * insdel.c (signal_before_change, signal_after_change): Likewise. | |
2048 | |
2049 * buffer.c (Vbefore_change_function, Vafter_change_function): | |
2050 Variables and their initializations deleted. | |
2051 | |
29372 | 2052 * callint.c (Fcall_interactively): Doc fix. |
2053 | |
29368 | 2054 * terminfo.c (ospeed) [HAVE_SPEED_T]: Don't declare extern. |
2055 | |
29343 | 2056 2000-05-31 Dave Love <fx@gnu.org> |
2057 | |
2058 * textprop.c: Revert last change -- duplicated. | |
2059 | |
29338 | 2060 2000-05-31 Gerd Moellmann <gerd@gnu.org> |
2061 | |
2062 * dispnew.c (find_glyph_row_slice, swap_glyphs_in_rows): Put | |
2063 in #if 0. | |
2064 | |
2065 * lisp.h (eassert) [!ENABLE_CHECKING]: Define as `(void) 0'. | |
2066 | |
29331 | 2067 2000-05-31 Jason Rumney <jasonr@gnu.org> |
2068 | |
29334 | 2069 * search.c (Fre_search_forward, Fre_search_backward) |
2070 (Fposix_search_backward, Fposix_search_forward): Fix newlines in docs. | |
2071 | |
29331 | 2072 * w32select.c (Fw32_set_clipboard_data): Change QNil to Qnil. |
2073 | |
29308 | 2074 2000-05-30 Jason Rumney <jasonr@gnu.org> |
2075 | |
2076 * coding.h (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros. | |
2077 [WINDOWSNT]: Add extern for Vw32_system_coding_system. | |
2078 | |
2079 * dispextern.h (struct glyph) [WINDOWSNT]: Add w32_font_type | |
2080 member. | |
2081 | |
2082 * fileio.c (Fread_file_name) [HAVE_NTGUI]: Use file dialog. | |
2083 (Fread_file_name) [HAVE_NTGUI, USE_MOTIF]: Do not attempt to | |
2084 expand a nil default_filename. | |
2085 | |
2086 * keyboard.c (make_lispy_event) [WINDOWS_NT]: Pass a window | |
2087 pointer to glyph_to_pixel_coords, not a frame. | |
2088 | |
2089 * makefile.nt (w32fns.obj, w32menu.obj): Add charset.h and | |
2090 coding.h to dependencies. | |
2091 | |
2092 * w32bdf.c (w32_load_bdf_font): Initialize font->double_byte_p. | |
2093 | |
2094 * w32console.c (glyph_to_pixel_coords): Change first parameter to | |
2095 window pointer to be consistent with w32term.c and xterm.c. | |
2096 | |
2097 * w32fns.c: Format and doc changes to bring closer to xfns.c. | |
2098 (VIETNAMESE_CHARSET): Define if not defined in system headers. | |
2099 (Qline_spacing, Qcenter): New variables. | |
2100 (Qw32_charset_*, w32_codepage_for_font): Moved from w32term.c. | |
2101 (x_set_line_spacing): New function. | |
2102 (x_set_frame_parameters): Use FRAME_NEW_WIDTH, FRAME_NEW_HEIGHT | |
2103 macros. | |
2104 (x_specified_cursor_type): New function. | |
2105 (x_set_cursor_type): Use it. | |
2106 (x_set_name, x_set_title): Use ENCODE_SYSTEM to encode titlebar | |
2107 and icon strings. | |
2108 (validate_x_resource_name, x_get_resource_string): Measure lengths | |
2109 of external strings in bytes. | |
2110 (w32_wnd_proc) [WM_MEASURE_ITEM]: Avoid calling | |
2111 GetTextExtentPoint32 with NULL title. | |
2112 (Fx_create_frame): Initialize Qline_spacing. | |
2113 (w32_load_system_font): Initialize font->double_byte_p. | |
2114 (x_to_w32_charset): Use Vw32_charset_info_alist. | |
2115 (Image, busy cursor, tooltip functions): Merged changes from | |
2116 xfns.c. Not yet functional on Windows. | |
2117 | |
2118 * w32gui.h (W32FontStruct): Add double_byte_p member. | |
2119 | |
2120 * w32inevt.c (NUM_TRANSLATED_MOUSE_BUTTONS): New constant. | |
2121 (emacs_button_translation): Use it. | |
2122 (do_mouse_event): Allow up to 32 mouse buttons by allowing any bit | |
2123 in `mask' to be set. | |
2124 | |
2125 * w32menu.c (single_submenu, w32_menu_show): Call ENCODE_SYSTEM on | |
2126 menu strings. | |
2127 | |
2128 * w32term.c: Format and doc changes to bring closer to xterm.c. | |
2129 (w32_char_font_type): New enum. | |
2130 (Qw32_charset_*, w32_codepage_for_font): Moved to w32fns.c. | |
2131 (w32_per_char_metric): Use w32_char_font_type instead of unicode_p. | |
2132 (w32_encode_char): New function. | |
2133 (x_encode_char): Removed. | |
2134 (x_get_glyph_and_face_encoding): Use w32_encode_char in place of | |
2135 x_encode_char and w32_font_is_double_byte. | |
2136 (x_produce_image_glyph): Use image_ascent. | |
2137 (x_produce_glyphs): Use new version of w32_per_char_metric and | |
2138 handle NULL return value. Allow extra line spacing. | |
2139 (W32_TEXTOUT): Distinguish between Unicode and DBCS text. | |
2140 (w32_get_glyph_overhangs): Remove unicode_p param. Use | |
2141 w32_font_type member of glyph instead. | |
2142 (x_draw_glyph_string): Draw underline and strike-out for BDF fonts. | |
2143 (fast_find_position): Make sure not to consider rows not visible | |
2144 in the window. | |
2145 (w32_read_socket) [WM_MENUSELECT]: Cannot call | |
2146 w32_menu_display_help with input blocked, as it can abort. | |
2147 (x_display_and_set_cursor): Choose cursor depending | |
2148 on buffer-local value of cursor_type. | |
2149 (x_draw_bar_cursor): Add parameter WIDTH. | |
2150 | |
2151 * w32term.h (CP_DEFAULT): Define. | |
2152 (Fx_display_color_p, Fx_display_grayscale_p, image_ascent): Declare. | |
2153 | |
29302 | 2154 2000-05-30 Gerd Moellmann <gerd@gnu.org> |
2155 | |
2156 * search.c (Fre_search_forward, Fre_search_backward) | |
2157 (Fposix_search_backward, Fposix_search_forward): Doc fix. | |
2158 | |
29298 | 2159 2000-05-30 Kenichi Handa <handa@etl.go.jp> |
2160 | |
2161 * coding.c (detect_coding_iso2022): Fix code for checking | |
2162 CODING_CATEGORY_MASK_ISO_8_2. | |
2163 | |
29297
1c3d15e270b6
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29295
diff
changeset
|
2164 2000-05-29 Stefan Monnier <monnier@cs.yale.edu> |
1c3d15e270b6
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29295
diff
changeset
|
2165 |
1c3d15e270b6
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29295
diff
changeset
|
2166 * regex.c (PREFETCH_NOLIMIT): New function. |
1c3d15e270b6
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29295
diff
changeset
|
2167 (re_match_2_internal): Use it and adjust the end_match_2 logic. |
1c3d15e270b6
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29295
diff
changeset
|
2168 |
29285 | 2169 2000-05-29 Gerd Moellmann <gerd@gnu.org> |
2170 | |
29295 | 2171 * syntax.c (find_defun_start): Move test for |
2172 open_paren_in_column_0_is_defun_start outside of the loop. | |
2173 | |
29292 | 2174 * xdisp.c (redisplay_window): Really switch buffers when |
2175 displaying mode lines, and temporarily set selected_frame to the | |
2176 frame of the window that's redisplayed. | |
2177 | |
29285 | 2178 * xfaces.c (free_realized_faces): Block/unblock input. |
2179 (free_realized_multibyte_face): Ditto. | |
2180 | |
29283 | 2181 2000-05-29 Dave Love <fx@gnu.org> |
2182 | |
2183 * textprop.c (Qkeymap): New variable. | |
2184 (syms_of_textprop): Intern it. | |
2185 | |
2186 * keymap.c: Include intervals.h. | |
2187 (Fkey_binding, Fwhere_is_internal): Deal with `keymap' property. | |
2188 | |
2189 * Makefile.in (keymap.o): Depend on intervals.h. | |
2190 | |
2191 * keyboard.c (menu_bar_items, tool_bar_items) | |
2192 (Fexecute_extended_command): Deal with `keymap' property. | |
2193 (read_key_sequence): Track map from `keymap' property as well as | |
2194 `local_map'. | |
2195 | |
2196 * intervals.c (get_local_map): Extra arg to allow looking for | |
2197 `keymap' too. | |
2198 | |
2199 * intervals.h (map_property): New enum. | |
2200 (get_local_map): Extra arg using it. | |
2201 (Qkeymap): Declare. | |
2202 | |
29285 | 2203 * lisp.h (get_local_map): Don't declare here. |
29283 | 2204 |
29271 | 2205 2000-05-29 Kenichi Handa <handa@etl.go.jp> |
2206 | |
2207 * Makefile.in (callproc.o): Depend on composite.h. | |
2208 | |
2209 * callproc.c: Include composite.h. | |
2210 (Fcall_process): Handle composition correctly. | |
2211 | |
2212 * coding.h (coding_allocate_composition_data): Extern it. | |
2213 (coding_restore_composition): Likewise. | |
2214 | |
2215 * coding.c (DECODE_COMPOSITION_START): If coding->cmp_data is not | |
2216 yet allocated, finish decoding with result | |
2217 CODING_FINISH_INSUFFICIENT_CMP. | |
2218 (coding_allocate_composition_data): Make it non-static. | |
2219 (coding_restore_composition): Likewise. | |
2220 | |
29270 | 2221 2000-05-29 Eli Zaretskii <eliz@is.elta.co.il> |
2222 | |
2223 * charset.c (syms_of_charset): Revert last change. | |
2224 | |
29264 | 2225 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il> |
2226 | |
2227 * term.c (produce_glyphs): Treat characters from the eight-bit-* | |
30196
52c1b7a2e7a5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30183
diff
changeset
|
2228 charsets as unibyte, with 1-column screen width. Sent by Kenichi |
52c1b7a2e7a5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30183
diff
changeset
|
2229 Handa. |
29264 | 2230 |
29261 | 2231 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il> |
2232 | |
2233 * charset.c (syms_of_charset): Set width of character sets | |
2234 eight-bit-control and eight-bit-graphic to 1 column. | |
2235 | |
29254 | 2236 2000-05-26 Gerd Moellmann <gerd@gnu.org> |
2237 | |
2238 * config.in (HAVE_SPEED_T): New define. | |
2239 | |
2240 * sysdep.c, terminfo.c (ospeed) [HAVE_SPEED_T]: Declare as | |
2241 `extern speed_t'. | |
2242 | |
29248 | 2243 2000-05-26 Dave Love <fx@gnu.org> |
2244 | |
2245 * coding.c (shrink_decoding_region): Initialize eol_conversion. | |
2246 | |
2247 * data.c (Qsubrp, Qmany, Qunevalled): New variables. | |
2248 (Fsubr_arity): New function. | |
2249 (syms_of_data): Install them. | |
2250 | |
29226 | 2251 2000-05-26 Kenichi Handa <handa@etl.go.jp> |
2252 | |
29235 | 2253 * charset.c (init_charset_once): Set the table bytes_by_char_head |
2254 correctly. | |
2255 | |
29230 | 2256 * fontset.c (syms_of_fontset): Adjust the font name for ascii of |
2257 the default fontset to what Emacs uses by default. | |
29235 | 2258 (check_registry_encoding): This function deleted. |
2259 (Fset_fontset_font): Remove the adhoc condition for the default | |
2260 fontset. Allow cons in FONTNAME. | |
2261 | |
2262 * fns.c (map_char_table): Ignore char-table entries for | |
2263 charsets eight-bit-control and eight-bit-graphic. | |
29226 | 2264 |
29198
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29196
diff
changeset
|
2265 2000-05-25 Ken Raeburn <raeburn@gnu.org> |
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29196
diff
changeset
|
2266 |
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29196
diff
changeset
|
2267 * emacs.c (main): Initialize keyboard syms before initializing |
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29196
diff
changeset
|
2268 window code, so face names are available. |
b3592c1e9ddb
* emacs.c (main): Initialize keyboard syms before initializing
Ken Raeburn <raeburn@raeburn.org>
parents:
29196
diff
changeset
|
2269 |
29195
1da5b007c8c5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29193
diff
changeset
|
2270 2000-05-25 Stefan Monnier <monnier@cs.yale.edu> |
1da5b007c8c5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29193
diff
changeset
|
2271 |
1da5b007c8c5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29193
diff
changeset
|
2272 * regex.c (at_begline_loc_p): Also recognize the \\(?:^ case |
1da5b007c8c5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29193
diff
changeset
|
2273 of an anchor at the beginning of a shy-group. |
1da5b007c8c5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29193
diff
changeset
|
2274 |
29193 | 2275 2000-05-25 Gerd Moellmann <gerd@gnu.org> |
2276 | |
2277 * xdisp.c (handle_invisible_prop): Don't try to skip over | |
2278 invisible text if end of text is already reached. | |
2279 | |
29183 | 2280 2000-05-25 Dave Love <fx@gnu.org> |
2281 | |
29186 | 2282 * xdisp.c (Fdump_glyph_matrix): Declare the arg. |
2283 | |
29183 | 2284 * coding.c (encode_eol): Add null statement after label. |
2285 | |
29181 | 2286 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
2287 | |
2288 * w16select.c (Fw16_set_clipboard_data): Fix the change from | |
2289 2000-05-20. | |
2290 | |
29173 | 2291 2000-05-25 Kenichi Handa <handa@etl.go.jp> |
2292 | |
29174 | 2293 * ccl.c (ccl_driver): Fix previous change. |
29173 | 2294 |
29169 | 2295 2000-05-25 Kenichi Handa <handa@etl.go.jp> |
2296 | |
29171 | 2297 * coding.c (run_pre_post_conversion_on_str): Set point to the |
2298 beginning of buffer before calling coding->post_read_conversion. | |
2299 (decode_coding_string): Give correct args to | |
2300 run_pre_post_conversion_on_str. | |
2301 (encode_coding_string): Likewise. | |
2302 | |
29169 | 2303 * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2> |
2304 <CCL_WriteMultibyteChar2>: Handle charsets eight-bit-control and | |
2305 eight-bit-graphic correctly. | |
2306 | |
29153 | 2307 2000-05-24 Kenichi HANDA <handa@etl.go.jp> |
2308 | |
2309 * fileio.c (Finsert_file_contents): Even if a file is not found, | |
2310 execute codes for setting up coding system. Call | |
2311 after-insert-file-functions unconditionally. | |
2312 | |
29151 | 2313 2000-05-24 Gerd Moellmann <gerd@gnu.org> |
2314 | |
2315 * callproc.c, emacs.c, sysdep.c (setpgrp): Don't define if USG and | |
2316 BSD_PGRPS are not defined. | |
2317 | |
29142 | 2318 2000-05-24 Kenichi Handa <handa@etl.go.jp> |
2319 | |
2320 * charset.c (update_charset_table): Accept nil in LONG_NAME and | |
2321 DESCRIPTION. | |
2322 (syms_of_charset): Avoid building same strings. | |
2323 | |
29127 | 2324 2000-05-23 Gerd Moellmann <gerd@gnu.org> |
2325 | |
2326 * lread.c (Fload): Add a comment about the meaning of | |
2327 Vuser_init_file being t. | |
2328 | |
2329 * puresize.h (BASE_PURESIZE): Increase to 675000. | |
2330 | |
2331 * s/gnu-linux.h (setpgrp): Don't define it here because this | |
2332 prevents compilation on GNU/Linux systems with glib 2.2. | |
2333 | |
2334 * callproc.c, emacs.c, sysdep.c (setpgrp) [HAVE_SETPGID]: Define | |
2335 as setpgid. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
2336 |
29104 | 2337 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il> |
2338 | |
2339 * Makefile.in (SOME_MACHINE_LISP): Add disp-table.elc, | |
2340 dos-vars.elc, ccl.elc, and codepage.elc, all loaded by the MS-DOS | |
2341 version. | |
2342 (MSDOS_SUPPORT): Add dos-vars.elc, ccl.elc, and codepage.elc. | |
2343 | |
29092 | 2344 2000-05-23 Kenichi Handa <handa@etl.go.jp> |
2345 | |
29100
a941c97dc65b
(skip_chars): FETCH_STRING_CHAR_ADVANCE unconditionally.
Kenichi Handa <handa@m17n.org>
parents:
29096
diff
changeset
|
2346 * syntax.c (skip_chars): Use FETCH_STRING_CHAR_ADVANCE |
a941c97dc65b
(skip_chars): FETCH_STRING_CHAR_ADVANCE unconditionally.
Kenichi Handa <handa@m17n.org>
parents:
29096
diff
changeset
|
2347 unconditionally. |
a941c97dc65b
(skip_chars): FETCH_STRING_CHAR_ADVANCE unconditionally.
Kenichi Handa <handa@m17n.org>
parents:
29096
diff
changeset
|
2348 |
29096 | 2349 * msdos.c (IT_write_glyphs): Set coding->src_multibyte to 1. |
2350 | |
2351 * term.c (encode_terminal_code): Set coding->src_multibyte | |
2352 properly. | |
2353 | |
29092 | 2354 * coding.c (encode_eol): Fix a bug of DOS style EOL encoding. |
2355 | |
29064 | 2356 2000-05-22 Kenichi Handa <handa@etl.go.jp> |
2357 | |
29068
61a23dd336ab
(read_char): Allow character codes 128..255 to be
Kenichi Handa <handa@m17n.org>
parents:
29064
diff
changeset
|
2358 * keyboard.c (read_char): Allow character codes 128..255 to be |
61a23dd336ab
(read_char): Allow character codes 128..255 to be
Kenichi Handa <handa@m17n.org>
parents:
29064
diff
changeset
|
2359 handled by input-method-function. |
61a23dd336ab
(read_char): Allow character codes 128..255 to be
Kenichi Handa <handa@m17n.org>
parents:
29064
diff
changeset
|
2360 |
29064 | 2361 * insdel.c (adjust_markers_for_replace): Fix previous change. |
2362 (adjust_after_replace): If PREV_TEXT is nil, call | |
2363 adjust_markers_for_insert, not adjust_markers_for_replace. | |
2364 | |
29036 | 2365 2000-05-20 NIIBE Yutaka <gniibe@mri.co.jp> |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
2366 |
29036 | 2367 * s/gnu-linux.h (UNIX98_PTYS) [HAVE_GRANDPT]: Define. |
2368 (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_OPEN, PTY_TTY_NAME_SPRINTF) | |
2369 [HAVE_GRANDPT]: Define. | |
2370 (C_SWITCH_SYSTEM): Add -D_XOPEN_SOURCE. | |
2371 | |
2372 * sysdep.c (setup_pty): Treat case that UNIX98_PTYS is defined | |
2373 like SYSV_PTYS. | |
2374 | |
2375 * config.in (HAVE_GRANDPT, HAVE_GETPT): New defines. | |
2376 | |
2377 * process.c (toplevel) [UNIX98_PTYS]: Include stdlib.h. | |
2378 | |
29028 | 2379 2000-05-20 Kenichi Handa <handa@etl.go.jp> |
2380 | |
2381 The following changes are to handle 8-bit characters in a | |
2382 multibyte buffer/string without facing with byte combining | |
2383 problem. Two new charsets eight-bit-control (for 0x80..0x9F) and | |
2384 eight-bit-graphic (for 0xA0..0xFF) are introduced. | |
2385 | |
2386 * Makefile.in (fns.o): Depend on charset.h. | |
2387 | |
2388 * alloc.c (Fmake_byte_code): If BYTECODE-STRING is multibyte, | |
2389 convert it to unibyte. | |
2390 (make_string): Use parse_str_as_multibyte, not chars_in_text. | |
2391 | |
2392 * buffer.c (advance_to_char_boundary): Don't use DEC_POS to find a | |
2393 apparent char boundary. | |
2394 (Fset_buffer_multibyte): Convert 8-bit characters in the range | |
2395 0x80..0x9F to/from multibyte form. | |
2396 | |
2397 * bytecode.c (Fbyte_code): If arg BYTESTR is multibyte, convert it | |
2398 to unibyte. | |
2399 | |
2400 * callproc.c (Fcall_process): Always encode an argument string if | |
2401 it is multibyte. Setup src_multibyte and dst_multibyte members of | |
2402 process_coding properly. | |
29102 | 2403 |
29028 | 2404 * category.c (Fmodify_category_entry): Use SPLIT_CHAR, not |
2405 SPLIT_NON_ASCII_CHAR. | |
2406 | |
2407 * ccl.c (CCL_WRITE_CHAR): Be sure to write single byte characters | |
2408 as is. | |
2409 (CCL_MAKE_CHAR): Use MAKE_CHAR, not MAKE_NON_ASCII_CHAR. | |
2410 | |
2411 * charset.c (Qeight_bit_control, Qeight_bit_graphic): New | |
2412 variables. | |
2413 (SPLIT_CHARACTER_SEQ): This macro deleted. | |
2414 (SPLIT_MULTIBYTE_SEQ): Assume that multibyte sequence at STR is | |
2415 valid. | |
2416 (CHAR_COMPONENTS_VALID_P): Handle new charsets; eight-bit-control | |
2417 and eight-bit-graphic. | |
2418 (char_to_string): Likewise. Signal an error for too large | |
2419 character code. | |
2420 (char_printable_p): Return 0 for 8-bit characters. | |
2421 (update_charset_table): Update iso_charset_table only when a final | |
2422 character is non-negative. | |
2423 (find_charset_in_text): Renamed from find_charset_in_str. | |
2424 Arguments and return value changed. Callers changed. | |
2425 (Fdefine_charset): Args ISO-FINAL-CHAR and ISO-GRAPHIC-PLANE can | |
2426 be -1 if CHARSET is used only internally. | |
2427 (Fmake_char_internal): Handle new charsets; eight-bit-control and | |
2428 eight-bit-graphic. | |
2429 (Fcharset_after): Simplified. | |
2430 (char_valid_p): Use SPLIT_CHAR, not SPLIT_NON_ASCII_CHAR. | |
2431 (char_bytes): Return 2 for chars of the range 0xA0..0xFF. | |
2432 (multibyte_chars_in_text): Simplified by assuming there's no | |
2433 invalid multibyte sequence. | |
2434 (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte, | |
2435 str_as_unibyte): New functions. | |
2436 (Fstring): Simpified by assuming that byte combining never | |
2437 happens. | |
2438 (init_charset_once): Initialization for | |
2439 LEADING_CODE_8_BIT_CONTROL. | |
2440 (syms_of_charset): Intern and staticpro Qeight_bit_control and | |
2441 Qeight_bit_graphic. Include them in Vcharset_list. Make charsets | |
2442 eight-bit-control and eight-bit-graphic. | |
2443 | |
2444 * charset.h (LEADING_CODE_8_BIT_CONTROL, CHARSET_8_BIT_CONTROL, | |
2445 CHARSET_8_BIT_GRAPHIC): New macros. | |
2446 (SINGLE_BYTE_CHAR_P): Make it faster by using casting. | |
2447 (CHARSET_ISO_GRAPHIC_PLANE): Use XINT instead of XFASTINT. | |
2448 (CHARSET_REVERSE_CHARSET): Likewise. | |
2449 (CHARSET_VALID_P): Handle new charsets; eight-bit-control and | |
2450 eight-bit-graphic. | |
2451 (BYTES_BY_CHAR_HEAD, WIDTH_BY_CHAR_HEAD): Optimize for ASCII. | |
2452 (CHAR_CHARSET, MAKE_CHAR, SPLIT_CHAR, CHAR_BYTES): Likewise. | |
2453 (PARSE_MULTIBYTE_SEQ) [BYTE_COMBINING_DEBUG]: Abort if we | |
2454 encounter an invalid multibyte sequence. | |
2455 (PARSE_MULTIBYTE_SEQ) [not BYTE_COMBINING_DEBUG]: Assume multibyte | |
2456 sequence is always valid. | |
2457 (MAKE_NON_ASCII_CHAR, SPLIT_NON_ASCII_CHAR): These macros Deleted. | |
2458 (UNIBYTE_STR_AS_MULTIBYTE_P, MULTIBYTE_STR_AS_UNIBYTE_P): New | |
2459 macros. | |
2460 (CHAR_STRING): For 8-bit characters, call char_to_string. | |
2461 (INC_POS) [not BYTE_COMBINING_DEBUG]: Faster version. Assume | |
2462 multibyte sequence is always valid. | |
2463 (BUF_INC_POS) [not BYTE_COMBINING_DEBUG]: Likewise. | |
2464 (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte, | |
2465 str_as_unibyte): Extern them. | |
2466 (BCOPY_SHORT): Fix a bug. | |
2467 (CHAR_LEN): This macro deleted. Callers changed to use | |
2468 CHAR_BYTES. | |
2469 (FETCH_STRING_CHAR_ADVANCE): Check multibyteness of STRING. | |
2470 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): New macro. | |
2471 (FETCH_CHAR_ADVANCE): Check multibyteness of the current buffer. | |
2472 | |
29161 | 2473 * coding.c (ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->result to |
29028 | 2474 CODING_FINISH_INSUFFICIENT_SRC if there's not enough source. |
2475 (ONE_MORE_CHAR, EMIT_CHAR, EMIT_ONE_BYTE, EMIT_TWO_BYTE, | |
2476 EMIT_BYTES): New macros. | |
2477 (THREE_MORE_BYTES, DECODE_CHARACTER_ASCII, | |
2478 DECODE_CHARACTER_DIMENSION1, DECODE_CHARACTER_DIMENSION2): These | |
2479 macros deleted. | |
2480 (CHECK_CODE_RANGE_A0_FF): This macro deleted. | |
2481 (detect_coding_emacs_mule): Use UNIBYTE_STR_AS_MULTIBYTE_P to | |
2482 check the validity of multibyte sequence. | |
2483 (decode_coding_emacs_mule): New function. | |
2484 (encode_coding_emacs_mule): New macro. | |
2485 (detect_coding_iso2022): Use ONE_MORE_BYTE to fetch a byte from | |
2486 the source. | |
2487 (DECODE_ISO_CHARACTER): Just return a character code. | |
2488 (DECODE_COMPOSITION_START): Set coding->result instead of result. | |
2489 (decode_coding_iso2022, decode_coding_sjis_big5, decode_eol): Use | |
2490 EMIT_CHAR to produced decoded characters. Exit the loop only by | |
2491 macros ONE_MORE_BYTE or EMIT_CHAR. Don't handle the case of last | |
2492 block here. | |
2493 (ENCODE_ISO_CHARACTER): Don't translate character here. Produce | |
2494 only position codes for an invalid character. | |
2495 (encode_designation_at_bol): Return new destination pointer. 5th | |
2496 arg DSTP is changed to DST. | |
2497 (encode_coding_iso2022, decode_coding_sjis_big5): Get a character | |
2498 from the source by ONE_MORE_CHAR. Don't handle the case of last | |
2499 block here. | |
2500 (DECODE_SJIS_BIG5_CHARACTER, ENCODE_SJIS_BIG5_CHARACTER): These | |
2501 macros deleted. | |
2502 (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8, | |
2503 detect_coding_utf_16, detect_coding_ccl): Use ONE_MORE_BYTE and | |
2504 TWO_MORE_BYTES to fetch a byte from the source. | |
2505 (encode_eol): Pay attention to coding->src_multibyte. | |
2506 (detect_coding, detect_eol): Preserve members src_multibyte and | |
2507 dst_multibyte. | |
2508 (DECODING_BUFFER_MAG): Return 2 even for coding_type_raw_text. | |
2509 (encoding_buffer_size): Set magnification to 3 for all coding | |
2510 systems that require encoding. | |
2511 (ccl_coding_driver): For decoding, be sure that the result is | |
2512 valid multibyte sequence. | |
2513 (decode_coding): Initialize coding->errors and coding->result. | |
2514 For emacs-mule, call decode_coding_emacs_mule. For no-conversion | |
2515 and raw-text, always call decode_eol. Handle the case of last | |
2516 block here. If not coding->dst_multibyte, convert the resulting | |
2517 sequence to unibyte. | |
2518 (encode_coding): Initialize coding->errors and coding->result. | |
2519 For emacs-mule, call encode_coding_emacs_mule. For no-conversion | |
2520 and raw-text, always call encode_eol. Handle the case of last | |
2521 block here. | |
2522 (shrink_decoding_region, shrink_encoding_region): Detect cases | |
2523 that we can't skip data more rigidly. | |
2524 (code_convert_region): Setup src_multibyte and dst_multibyte | |
2525 members of coding. For decoding, if the buffer is multibyte, | |
2526 convert the source sequence to unibyte in advance. For encoding, | |
2527 if the buffer is multibyte, convert the resulting sequence to | |
2528 multibyte afterward. | |
2529 (run_pre_post_conversion_on_str): New function. | |
2530 (code_convert_string): Deleted and divided into the following two. | |
2531 (decode_coding_string, encode_coding_string): New functions. | |
2532 (code_convert_string1, code_convert_string_norecord): Call one of | |
2533 above. | |
2534 (Fdecode_sjis_char, Fdecode_big5_char): Use MAKE_CHAR instead of | |
2535 MAKE_NON_ASCII_CHAR. | |
2536 (Fset_terminal_coding_system_internal, | |
2537 Fset_safe_terminal_coding_system_internal): Setup src_multibyte | |
2538 and dst_multibyte members. | |
2539 (init_coding_once): Initialize iso_code_class with new enum | |
2540 ISO_control_0 and ISO_control_1. | |
2541 | |
2542 * coding.h (enum iso_code_class_type): Member ISO_control_code is | |
2543 devided into ISO_control_0 and ISO_control_1. | |
2544 (struct coding_system): New members src_multibyte, dst_multibyte, | |
2545 errors, and result. Delete member fake_multibyte. | |
2546 (CODING_REQUIRE_DECODING): Return 1 if coding->dst_multibyte is | |
2547 nonzero. | |
2548 (CODING_REQUIRE_ENCODING): Return 1 if coding->src_multibyte is | |
2549 nonzero. | |
2550 | |
2551 * data.c (Faref): Use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR. | |
2552 (Faset): Likewise. | |
2553 | |
2554 * editfns.c (Fformat): Be sure to convert 8-bit characters to | |
2555 multibyte form. | |
2556 (Ftranspose_region) [BYTE_COMBINING_DEBUG]: Abort if byte | |
2557 combining occurs. | |
2558 (Ftranspose_region): Delete codes for handling byte combining. | |
2559 | |
2560 * fileio.c (Finsert_file_contents): Setup src_multibyte and | |
2561 dst_multibyte members of coding. On handling REPLACE on unibyte | |
2562 buffer, convert the result of decode_coding to unibyte. On | |
2563 inserting into a mutibyte buffer, always call code_convert_region. | |
29161 | 2564 (e_write): Setup coding->src_multibyte according to the |
29028 | 2565 multibyteness of the source (buffer or string). |
2566 | |
2567 * fns.c (concat): Handle 8-bit characters correctly. | |
2568 (Fstring_as_unibyte): Be sure to make all 8-bit characters in | |
2569 unibyte in the result. | |
2570 (Fstring_as_multibyte): Be sure to make all 8-bit characters in | |
2571 valid multibyte form in the result. | |
2572 (map_char_table): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR. | |
2573 (Fbase64_encode_region, Fbase64_encode_string): If base64_encode_1 | |
2574 return -1, signal an error. | |
2575 (base64_encode_1): New arg MULTIBYTE. Get each character by | |
2576 CHAR_STRING_AND_LENGTH if MULTIBYTE is nonzero. If a multibyte | |
2577 character is found, return -1. | |
2578 (Fbase64_decode_region): Delete codes for handling byte-combining. | |
2579 Treat each decoded byte as a unibyte character. | |
2580 (Fbase64_decode_string): Return unibyte string. | |
2581 (Fcompare_strings, concat, string_byte_to_char): Use | |
2582 FETCH_STRING_CHAR_ADVANCE_NO_CHECK instead off | |
2583 FETCH_STRING_CHAR_ADVANCE. | |
2584 (Fstring_lessp): Use FETCH_STRING_CHAR_ADVANCE unconditionally. | |
2585 (mapcar1): If SEQ is string, always use FETCH_STRING_CHAR_ADVANCE. | |
2586 | |
2587 * fontset.c (fontset_ref): Use SPLIT_CHAR instead of | |
2588 SPLIT_NON_ASCII_CHAR. | |
2589 (fontset_ref_via_base, fontset_set): Likewise | |
2590 | |
2591 * insdel.c (adjust_markers_for_record_delete): Deleted. | |
2592 (adjust_markers_for_insert): Argument changed. Caller changed. | |
2593 (adjust_markers_for_replace): Likewise. | |
2594 (ADJUST_CHAR_POS, combine_bytes, byte_combining_error, | |
2595 CHECK_BYTE_COMBINING_FOR_INSERT): Deleted. | |
2596 (copy_text): Delete unused local varialbe c_save. For converting | |
2597 to multibyte, be sure to make all 8-bit characters in valid | |
2598 multibyte form. | |
2599 (count_size_as_multibyte): Handle 8-bit characters correctly. | |
2600 (insert_1_both, insert_from_string_1, insert_from_buffer_1, | |
2601 adjust_after_replace, replace_range, del_range_2) | |
2602 [BYTE_COMBINING_DEBUG]: Abort if byte combining occurs. | |
2603 (insert_1_both, insert_from_string_1, insert_from_buffer_1, | |
2604 adjust_after_replace, replace_range, del_range_2) Delete codes for | |
2605 handling byte combining. | |
2606 (adjust_before_replace): Deleted. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
2607 |
29028 | 2608 * keymap.c (Fsingle_key_description): Use SPLIT_CHAR instead of |
2609 SPLIT_NON_ASCII_CHAR. | |
2610 (describe_vector): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR. | |
2611 (Faccessible_keymaps): Use FETCH_STRING_CHAR_ADVANCE | |
2612 unconditionally. | |
2613 (Fkey_description): Likewise. | |
2614 | |
2615 * lread.c (read1): On reading multibyte string, be sure to make | |
2616 all 8-bit chararacters in valid multibyte form. | |
2617 (readchar): Use FETCH_STRING_CHAR_ADVANCE unconditionally. | |
2618 | |
2619 * print.c (print_object): Use FETCH_STRING_CHAR_ADVANCE | |
2620 unconditionally. | |
2621 | |
2622 * process.c (Fstart_process): GCPRO current_dir before calling | |
2623 Ffind_operation_coding_system. Encode arguments here. | |
2624 (create_process): Don't encode arguments here. Setup | |
2625 src_multibyte and dst_multibyte members of struct coding. | |
2626 (read_process_output): Setup src_multibyte and dst_multibyte | |
2627 members of struct coding. If the output is to multibyte buffer, | |
2628 always decode the output of the process. Adjust the | |
2629 representation of 8-bit characters to the multibyteness of the | |
2630 output. | |
2631 (send_process): Setup coding->src_multibyte according to the | |
2632 multibyteness of the source. | |
2633 | |
2634 * search.c (wordify): Use FETCH_STRING_CHAR_ADVANCE | |
2635 unconditionally. | |
2636 (Freplace_match): Use FETCH_STRING_CHAR_ADVANCE and | |
2637 FETCH_STRING_CHAR_ADVANCE_NO_CHECK appropriately. | |
2638 | |
2639 * term.c (produce_special_glyphs): Use CHAR_BYTES instead of | |
2640 CHAR_LEN. | |
2641 | |
2642 * w16select.c (Fw16_set_clipboard_data): Setup members | |
2643 src_multibyte and dst_multibyte of coding. Adjusted for the | |
2644 change for find_charset_in_str. | |
2645 (Fw16_get_clipboard_data): Likewise. | |
2646 | |
2647 * w32fns.c (w32_to_x_font): Setup members src_multibyte and | |
2648 dst_multibyte of coding. | |
2649 (x_to_w32_font): Likewise. | |
2650 | |
2651 * w32select.c (Fw32_set_clipboard_data): Setup members | |
2652 src_multibyte and dst_multibyte of coding. Adjusted for the | |
2653 change for find_charset_in_str. | |
2654 (Fw32_get_clipboard_data): Likewise. | |
2655 | |
2656 * xdisp.c (get_next_display_element): Handle 8-bit characters | |
2657 correctly. | |
2658 (next_element_from_display_vector): Use CHAR_BYTES instead of | |
2659 CHAR_LEN. | |
2660 (disp_char_vector): Use SPLIT_CHAR instead of | |
2661 SPLIT_NON_ASCII_CHAR. | |
2662 | |
2663 * xselect.c (selection_data_to_lisp_data): Setup members | |
2664 src_multibyte and dst_multibyte of coding. Adjusted for the | |
2665 change for find_charset_in_str. | |
2666 (lisp_data_to_selection_data): Likewise. | |
2667 | |
28988 | 2668 2000-05-19 Gerd Moellmann <gerd@gnu.org> |
2669 | |
28993 | 2670 * buffer.c (Fbury_buffer): Avoid trouble from burying a killed |
2671 buffer. | |
2672 | |
28988 | 2673 * dispextern.h (Vimage_types): Add extern declaration. |
2674 | |
2675 * xdisp.c (Vimage_types): Moved here from xfns.c. | |
2676 (syms_of_xdisp): Move `image-types' variable here from xfns.c. | |
2677 | |
2678 * xfns.c (Vimages_types): Moved to xdisp.c. | |
2679 (syms_of_xfns): Move `image-types' to xdisp.c. | |
2680 | |
2681 * w32fns.c (Vimage_types): Removed. | |
2682 (syms_of_w32fns): Remove `image-types'. | |
2683 | |
28965 | 2684 2000-05-18 Kenichi Handa <handa@etl.go.jp> |
2685 | |
2686 * fns.c (map_char_table): Pay attention to character number of | |
2687 charset. Check the validity of charset at the first level. For | |
2688 leaf nodes that has nil value, call C_FUNCTION or FUNCTION with | |
2689 the default value. | |
2690 | |
2691 * fontset.c: Include "buffer.h". | |
2692 (fs_load_font): If the face has fontset, record the face ID in | |
2693 that fontset. | |
2694 (Finternal_char_font): New function. | |
2695 (accumulate_font_info): New function. | |
2696 (Ffontset_info): Rewritten for the new fontset implementation. | |
2697 (syms_of_fontset): Register Vdefault_fontset in the first element | |
2698 of Vfontset_table. Include Vdefault_fontset in | |
2699 Vfontset_alias_alist. Declare `internal-char-font' as a Lisp | |
2700 function. | |
2701 | |
28945 | 2702 2000-05-16 Dave Love <fx@gnu.org> |
2703 | |
2704 * m/iris5d.h: Deleted -- unused. | |
2705 | |
28929 | 2706 2000-05-16 Gerd Moellmann <gerd@gnu.org> |
2707 | |
28939 | 2708 * xdisp.c, w32.c, print.c, msdos.c, emacs.c: Use the term |
2709 `invalid' instead of `illegal'. | |
2710 | |
2711 * indent.c (Fmove_to_column): When ending within a tab, insert | |
2712 spaces first so that markers at the end of the tab get adjusted. | |
2713 | |
28931 | 2714 * frame.c (frames_bury_buffer): Don't add a buffer to the frame's |
2715 buffer list that wasn't selected in that frame. | |
2716 | |
28929 | 2717 * filelock.c (get_boot_time): To obtain an 8 char file name, which |
2718 is needed on mescaline, use a 2 char prefix, and call | |
2719 make_temp_name with second arg non-zero. | |
2720 | |
2721 * fileio.c (make_temp_name): New function, extracted from | |
2722 Fmake_temp_name. | |
2723 (Fmake_temp_name): Use it. | |
2724 | |
28921 | 2725 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il> |
2726 | |
2727 * window.c (coordinates_in_window): Subtract 1 when computing | |
2728 right_x. | |
2729 | |
28919 | 2730 2000-05-15 Gerd Moellmann <gerd@gnu.org> |
2731 | |
2732 * Makefile.in (lisp): Add env.elc. | |
2733 | |
2734 * callproc.c (Fgetenv_internal): Renamed from Fgetenv. | |
2735 | |
28887 | 2736 2000-05-12 Gerd Moellmann <gerd@gnu.org> |
2737 | |
2738 * search.c (Freplace_match): Handle case of `\N' in the | |
2739 replacement when there's no group N. | |
2740 | |
28870 | 2741 2000-05-11 Gerd Moellmann <gerd@gnu.org> |
2742 | |
28877 | 2743 * xdisp.c (add_to_log): Don't pass the terminating NUL byte |
2744 of the message to message_dolog. | |
2745 | |
28872 | 2746 * keyboard.c (read_char): Don't clear current message for help |
2747 events; let the code handling help events handle this. Change | |
2748 code detecting help events that should be ignored. | |
2749 | |
28870 | 2750 * xdisp.c (handle_single_display_prop): Don't try to set PT if |
2751 we're interating over a string. | |
2752 | |
28848 | 2753 2000-05-09 Dave Love <fx@gnu.org> |
2754 | |
2755 * fileio.c (Fwrite_region): If APPEND arg is an integer, seek to | |
2756 that offset before writing. Move gcpro region past call of | |
2757 Ffile_regular_p. | |
2758 | |
28820 | 2759 2000-05-04 Dave Love <fx@gnu.org> |
2760 | |
2761 * buffer.c (syms_of_buffer) [auto-fill-function]: Doc fix. | |
2762 | |
28817 | 2763 2000-05-04 Gerd Moellmann <gerd@gnu.org> |
2764 | |
2765 * insdel.c (insert_from_buffer_1): Adjust FROM position by number | |
2766 of inserted characters when BUF equals the current buffer, and PT | |
2767 is in front of or equal to FROM. | |
2768 | |
28795 | 2769 2000-05-03 Gerd Moellmann <gerd@gnu.org> |
2770 | |
28805 | 2771 * xdisp.c (handle_single_display_prop): If display property value |
2772 is invalid, or something not supported on the frame, restore | |
2773 iterator's position to what it was initially. Make sure to return | |
2774 0 for invalid and unsupported property values. | |
2775 | |
28795 | 2776 * xterm.c (x_produce_glyphs) <composite chars>: Handle case |
2777 that x_per_char_metric returns null. | |
2778 | |
28782 | 2779 2000-05-02 Gerd Moellmann <gerd@gnu.org> |
2780 | |
28789 | 2781 * xterm.h (struct face): Add forward declaration. |
2782 (struct image): Ditto. | |
2783 (image_ascent): Add prototype. | |
2784 | |
2785 * xterm.c (x_produce_image_glyph, x_draw_image_foreground) | |
2786 (x_draw_image_relief, x_draw_image_foreground_1): Call function | |
2787 image_ascent instead of using IMAGE_ASCENT. | |
2788 | |
2789 * dispextern.h (DEFAULT_IMAGE_HEIGHT): New macro. | |
2790 (IMAGE_ASCENT): Removed. | |
2791 | |
2792 * xfns.c (Qcenter): New variable. | |
2793 (enum image_value_type): Add IMAGE_ASCENT_VALUE. | |
2794 (parse_image_spec): Handle IMAGE_ASCENT_VALUE. | |
2795 (image_ascent): New function. | |
2796 (lookup_image): Recognize `:ascent center'. | |
2797 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format) | |
2798 (tiff_format, gif_format, gs_format): Use IMAGE_ASCENT_VALUE. | |
2799 (xbm_load): Don't set image's ascent here. | |
2800 (xbm_image_p, xpm_image_p, pbm_image_p, png_image_p) | |
2801 (jpeg_image_p, tiff_image_p, gif_image_p, gs_image_p): Don't | |
2802 check ascent values here. | |
2803 (Fimagep, Flookup_image [GLYPH_DEBUG]: Removed. | |
2804 (syms_of_xfns) [GLYPH_DEBUG]: Don't defsubr removed functions. | |
2805 (syms_of_xfns): Initialize Qcenter. | |
2806 | |
28782 | 2807 * eval.c (Fsignal): If lisp_eval_depth or spepdl_size are near |
2808 to the limits, increase the limits. | |
2809 | |
28765 | 2810 2000-05-01 Kenichi Handa <handa@etl.go.jp> |
2811 | |
2812 * fontset.c (fs_load_font): By default, use 0x00..0x7f for ASCII. | |
2813 Check Vfont_encoding_alist against the full name of the opened | |
2814 font. | |
2815 | |
28755 | 2816 2000-04-28 Gerd Moellmann <gerd@gnu.org> |
2817 | |
2818 * xdisp.c (make_cursor_line_fully_visible): Handle case of rows | |
2819 taller than the window. | |
2820 | |
28752 | 2821 2000-04-28 Kenichi Handa <handa@etl.go.jp> |
2822 | |
2823 * xfaces.c (realize_x_face): Fix the argument of the second | |
2824 xassert. BASE_FACE may not be a face for ASCII. | |
2825 | |
28734 | 2826 2000-04-27 Gerd Moellmann <gerd@gnu.org> |
2827 | |
28748 | 2828 * print.c (print_object): Treat print-length < 0 as nil. |
2829 | |
2830 * Makefile.in (termcapobj): Don't use TERMCAP_OBJ. | |
2831 | |
2832 * s/freebsd.h (TERMCAP_OBJ): Removed. | |
2833 (LIBS_TERMCAP): Don't define for __FreeBSD_version >= 400000. | |
2834 | |
2835 * lread.c (read1): Don't treat period followed by certain | |
2836 characters as symbol start. | |
2837 | |
2838 * xfns.c (slurp_file): New function. | |
2839 (xbm_image_p): Handle case of in-memory XBM files. | |
2840 (xbm_scan): Rewritten to work on memory buffers instead of files. | |
2841 (xbm_read_bitmap_data): Renamed from xbm_read_bitmap_file_data. | |
2842 Work on memory buffers instead of files. If DATA is null test | |
2843 if buffer looks like an in-memory XBM file. | |
2844 (xbm_load_image): Renamed from xbm_load_image_file. Work on | |
2845 memory buffers instead of files. | |
2846 (xbm_file_p): New function. | |
2847 (xbm_load): Accept :data DATA where DATA is an in-memory XBM file. | |
2848 | |
28734 | 2849 * lread.c (end_of_file_error): New function. |
2850 (read1): Call it instead of signaling `end-of-file' directly. | |
2851 | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
2852 * print.c (print_error_message): Print data of `end-of-file' |
28734 | 2853 with Fprinc instead of Fprin1. |
2854 | |
28727
1a87cdb8289a
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
28724
diff
changeset
|
2855 2000-04-26 Ken Raeburn <raeburn@gnu.org> |
1a87cdb8289a
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
28724
diff
changeset
|
2856 |
1a87cdb8289a
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
28724
diff
changeset
|
2857 * window.c (freeze_window_start): Check that minibuffer scroll |
1a87cdb8289a
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
28724
diff
changeset
|
2858 window isn't nil before extracting the window structure pointer |
1a87cdb8289a
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
28724
diff
changeset
|
2859 from it. |
1a87cdb8289a
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
28724
diff
changeset
|
2860 |
1a87cdb8289a
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
28724
diff
changeset
|
2861 * undo.c (record_delete): If we hit the end of the undo list, stop |
1a87cdb8289a
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
28724
diff
changeset
|
2862 picking elements apart. |
1a87cdb8289a
*** empty log message ***
Ken Raeburn <raeburn@raeburn.org>
parents:
28724
diff
changeset
|
2863 |
28724 | 2864 2000-04-26 Gerd Moellmann <gerd@gnu.org> |
2865 | |
2866 * xdisp.c (display_line): If lines are continued, restore | |
2867 iterator's ascent/descent information to the values before the | |
2868 first glyph not fitting on the line. | |
2869 | |
28710 | 2870 2000-04-25 Gerd Moellmann <gerd@gnu.org> |
2871 | |
2872 * xdisp.c (try_window_id) <all changes above window start>: Adjust | |
2873 positions in glyph matrix. Don't compute new window end | |
2874 positions. | |
2875 | |
2876 * dispnew.c (increment_matrix_positions): Renamed from | |
2877 increment_glyph_matrix_buffer_positions. | |
2878 (increment_row_positions): Renamed from | |
2879 increment_glyph_row_buffer_positions. | |
2880 | |
2881 * dispextern.h: Change names of renamed functions from dispnew.c | |
2882 in prototypes. | |
2883 | |
28695 | 2884 2000-04-24 Gerd Moellmann <gerd@gnu.org> |
2885 | |
28699 | 2886 * fileio.c (Fdo_auto_save): Create directories for auto-save |
2887 list file if necessary. | |
2888 | |
28695 | 2889 * xdisp.c (init_iterator): Set iterator's extra_line_spacing |
2890 from buffer or frame. | |
2891 (automatic_hscrolling_p): New variable. | |
2892 (hscroll_windows): Scroll windows horizontally only if automatic | |
2893 hscrolling is allowed. | |
2894 (syms_of_xdisp): New variable `automatic-hscrolling'. | |
2895 | |
2896 * frame.h (struct frame): Add member extra_line_spacing. | |
2897 | |
2898 * xfns.c (x_set_line_spacing): New function. | |
2899 (Fx_create_frame): Set line spacing from resources. | |
2900 (Qline_spacing): New variable. | |
2901 (syms_of_xfns): Initialize Qline_spacing. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
2902 |
28695 | 2903 * emacs.c (USAGE2): Add `--line-spacing' and `-lsp'. |
2904 | |
2905 * buffer.c (init_buffer_once): Handle extra_line_spacing. | |
2906 (syms_of_buffer): Add `default-line-spacing' and `line-spacing'. | |
28699 | 2907 (reset_buffer): Don't initialize extra2 and extra3. Initialize |
28695 | 2908 extra_line_spacing from default value. |
2909 (init_buffer_once): Initialize default value of extra_line_spacing. | |
2910 | |
2911 * buffer.h (struct buffer): Add extra_line_spacing, remove extra2 | |
2912 and extra3. | |
2913 | |
2914 * xterm.c (x_produce_glyphs): Remove reference to struct it's | |
2915 prompt_width. Add extra line spacing. | |
2916 | |
2917 * term.c (produce_glyphs): Remove reference to struct it's | |
2918 prompt_width. | |
2919 | |
2920 * dispextern.h (struct it): Remove member prompt_width, add | |
2921 extra_line_spacing. | |
2922 | |
28683 | 2923 2000-04-22 Gerd Moellmann <gerd@gnu.org> |
2924 | |
2925 * dispnew.c (update_frame_line): When writing a whole line, make | |
2926 sure cursor is in the right row afterwards, otherwise a use of | |
2927 capability `ch' in cmgoto might leave the cursor in the row below. | |
2928 | |
28680 | 2929 2000-04-21 Gerd Moellmann <gerd@gnu.org> |
2930 | |
2931 * lisp.h (struct Lisp_Buffer_Cons): Remove. | |
2932 | |
2933 * keyboard.c (timer_check): Fix typo in comment. | |
2934 | |
28675 | 2935 2000-04-21 Kenichi Handa <handa@etl.go.jp> |
2936 | |
2937 * fontset.c (Fset_fontset_font): Fix docstring. Local variable | |
2938 name change: ch -> character. | |
2939 | |
28674 | 2940 2000-04-20 Gerd Moellmann <gerd@gnu.org> |
2941 | |
2942 * keyboard.c (echo_message_buffer): New variable. | |
2943 (echo_now): Set echo_message_buffer to the echo area buffer used | |
2944 to display the echo. | |
2945 (cancel_echoing): Reset echo_message_buffer to nil. | |
2946 (read_char): Code rewritten that handles canceling an echo or | |
2947 echoing a dash, respectively. | |
2948 | |
2949 * fileio.c (Ffile_writable_p) [WINDOWSNT]: Return nil if parent | |
2950 directory doesn't exist. | |
2951 | |
28668 | 2952 2000-04-19 Dave Love <fx@gnu.org> |
2953 | |
2954 * fns.c (syms_of_fns): Defsubr mapc. | |
28756 | 2955 (concat): Don't allow numeric args. |
2956 (Fconcat): Doc change. | |
28668 | 2957 |
28665
e6b28c64d3a5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28653
diff
changeset
|
2958 2000-04-19 Stefan Monnier <monnier@cs.yale.edu> |
e6b28c64d3a5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28653
diff
changeset
|
2959 |
e6b28c64d3a5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28653
diff
changeset
|
2960 * regex.c (re_match_2_internal): Don't shorten the strings anymore, |
e6b28c64d3a5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28653
diff
changeset
|
2961 instead define end_match(1|2) more carefully. |
e6b28c64d3a5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28653
diff
changeset
|
2962 Use GET_CHAR_BEFORE_2 for `begline'. |
e6b28c64d3a5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28653
diff
changeset
|
2963 |
28648 | 2964 2000-04-19 Gerd Moellmann <gerd@gnu.org> |
2965 | |
28653 | 2966 * frame.h (SELECTED_FRAME): Change definition to compile cleanly |
2967 on 64-bit systems where NULL is defined as `0'. | |
2968 | |
2969 * xdisp.c (with_echo_area_buffer): Add more `int' parameters for | |
2970 the `variable argument list' to make it work on Alpha. | |
2971 | |
28648 | 2972 * m/alpha.h (_LP64) [!_LP64]: Define. |
2973 (ORDINARY_LINK): Define for NetBSD. | |
2974 | |
2975 * m/macppc.h (ORDINARY_LINK): Define for NetBSD. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
2976 |
28637 | 2977 2000-04-19 Dave Love <fx@gnu.org> |
2978 | |
28644 | 2979 * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Revert 2000-04-14 |
2980 change. | |
2981 | |
2982 * Makefile.in (LIBS): Don't use. | |
2983 (GETLOADAVG_OBJ): Define again. | |
2984 (otherobj): Add GETLOADAVG_OBJ. | |
2985 | |
28637 | 2986 * buffer.c (Fmake_indirect_buffer): Escape newline in doc. |
2987 | |
28630 | 2988 2000-04-18 Gerd Moellmann <gerd@gnu.org> |
2989 | |
28634 | 2990 * lread.c (read_filtered_event): Cancel and start busy cursor. |
2991 | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
2992 * xterm.c (x_produce_glyphs) <ASCII chars>: Take into account |
28630 | 2993 that the per-character metrics may be null. |
2994 | |
28621 | 2995 2000-04-17 Gerd Moellmann <gerd@gnu.org> |
2996 | |
28626 | 2997 * buffer.c (clone_per_buffer_values): New function. |
2998 (Fmake_indirect_buffer): Add optional argument CLONE. Call | |
2999 clone_per_buffer_values if CLONE is not nil. | |
3000 | |
28621 | 3001 * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix. |
3002 | |
28610 | 3003 2000-04-16 Dave Love <fx@gnu.org> |
3004 | |
3005 * Makefile.in: Remove obsolete localcpp stuff. | |
3006 (GETLOADAVG_OBJ): Don't define. | |
3007 (obj): Move LIBOBJS... | |
3008 (otherobj): ... to here. | |
3009 (MSDOS_OBJ): Convert to make variable -- preprocessing zapped | |
3010 whitespace-only lines after the continuation (Irix). | |
3011 | |
28598 | 3012 2000-04-14 Gerd Moellmann <gerd@gnu.org> |
3013 | |
3014 * xfns.c (xpm_load) [DEBUG_X_COLORS]: Register colors. | |
3015 | |
3016 * s/freebsd.h (LD_SWITCH_SYSTEM): Add `-L /usr/local/lib'. | |
3017 | |
28595 | 3018 2000-04-14 Dave Love <fx@gnu.org> |
3019 | |
3020 * s/aix3-1.h, s/bsd4-2.h, s/bsd4-3.h, s/cxux.h, s/dgux.h, s/gnu.h: | |
3021 * s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/rtu.h: | |
3022 * s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h, s/usg5-2.h: | |
3023 * s/usg5-3.h, s/xenix.h, s/umax.h: Don't define autoconfiscated | |
3024 NLIST_STRUCT. | |
3025 | |
3026 * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Don't define | |
3027 autoconfiscated HAVE_GETLOADAVG. | |
3028 | |
3029 * s/nextstep.h, s/sco4.h, s/sco5.h: Don't define autoconfiscated | |
3030 BROKEN_MKTIME. | |
3031 | |
28591 | 3032 2000-04-14 Gerd Moellmann <gerd@gnu.org> |
3033 | |
3034 * filelock.c (MAKE_LOCK_NAME): Allocate 2 more bytes. | |
3035 (fill_in_lock_file_name): Avoid existing files that aren't | |
3036 links. | |
3037 | |
28588 | 3038 2000-04-14 Dave Love <fx@gnu.org> |
3039 | |
28598 | 3040 * Makefile.in (LIBS, LIBOBJS): New variable. |
28588 | 3041 (INTERVAL_SRC): Convert to make variable. |
3042 (INTERVAL_OBJ, MKTIME_OBJ, FLOAT_SUPPORT, FACE_SUPPORT) | |
3043 (HAVE_X_WINDOWS, OBJECTS_SYSTEM): Remove. | |
3044 (obj): Substitute INTERVAL_OBJ, add MKTIME_OBJ, GETLOADAVG_OBJ and | |
3045 add LIBOBJS. | |
3046 (SOME_MACHINE_OBJECTS): Remove interval stuff. | |
3047 (lisp): Substitute FACE_SUPPORT, FLOAT_SUP. | |
3048 (shortlisp): Add facemenu, float-sup, frame. | |
3049 (SOME_MACHINE_LISP): Remove them from here. | |
3050 (LIBES): Change unused LDLIBS to autoconf LIBS. | |
3051 | |
3052 * config.in: Add BROKEN_MKTIME, NLIST_STRUCT, NLIST_NAME_UNION. | |
3053 | |
28579 | 3054 2000-04-14 Kenichi Handa <handa@etl.go.jp> |
3055 | |
28580 | 3056 * composite.c (update_compositions): If FROM and TO are not in a |
28579 | 3057 valid range, do nothing. |
3058 | |
28577 | 3059 2000-04-13 Gerd Moellmann <gerd@gnu.org> |
3060 | |
3061 * tparam.c (tparam1): Abort when encountering an unknown | |
3062 `%'-specifier. | |
3063 | |
3064 * s/freebsd.h (TERMCAP_OBJ) [__FreeBSD__ >= 4]: Define as | |
3065 terminfo.o. | |
3066 | |
3067 * Makefile.in (termcapobj) [LIBS_TERMCAP && TERMCAP_OBJ]: Define | |
3068 as TERMCAP_OBJ. | |
3069 | |
28562 | 3070 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il> |
3071 | |
3072 * fileio.c (a_write): Remove redundant semi-colons. | |
3073 (e_write): Return -1 if failed to write all the data. | |
3074 This fixes the changes made at 1999-12-15. | |
3075 | |
28555
976bc44944da
(mapcar1): Test for null vals to support mapc.
Dave Love <fx@gnu.org>
parents:
28554
diff
changeset
|
3076 2000-04-12 Dave Love <fx@gnu.org> |
976bc44944da
(mapcar1): Test for null vals to support mapc.
Dave Love <fx@gnu.org>
parents:
28554
diff
changeset
|
3077 |
976bc44944da
(mapcar1): Test for null vals to support mapc.
Dave Love <fx@gnu.org>
parents:
28554
diff
changeset
|
3078 * fns.c (mapcar1): Test for null vals to support mapc. |
976bc44944da
(mapcar1): Test for null vals to support mapc.
Dave Love <fx@gnu.org>
parents:
28554
diff
changeset
|
3079 (Fmapc): New function. |
976bc44944da
(mapcar1): Test for null vals to support mapc.
Dave Love <fx@gnu.org>
parents:
28554
diff
changeset
|
3080 |
28554 | 3081 2000-04-12 Eli Zaretskii <eliz@is.elta.co.il> |
3082 | |
3083 * msdos.c (NUM_MOUSE_BUTTONS): Define. | |
3084 (IT_frame_up_to_date): Support the buffer local value of | |
3085 cursor-type, if defined. | |
3086 | |
28547 | 3087 2000-04-10 Dave Love <fx@gnu.org> |
3088 | |
3089 * editfns.c (preceding-char, following-char): Doc fix. | |
3090 | |
28546
74440e467c99
* Makefile.in (temacs): Revert 2000-03-12 change.
Ken Raeburn <raeburn@raeburn.org>
parents:
28543
diff
changeset
|
3091 2000-04-10 Ken Raeburn <raeburn@gnu.org> |
74440e467c99
* Makefile.in (temacs): Revert 2000-03-12 change.
Ken Raeburn <raeburn@raeburn.org>
parents:
28543
diff
changeset
|
3092 |
74440e467c99
* Makefile.in (temacs): Revert 2000-03-12 change.
Ken Raeburn <raeburn@raeburn.org>
parents:
28543
diff
changeset
|
3093 * Makefile.in (temacs): Revert 2000-03-12 change. |
74440e467c99
* Makefile.in (temacs): Revert 2000-03-12 change.
Ken Raeburn <raeburn@raeburn.org>
parents:
28543
diff
changeset
|
3094 |
28543 | 3095 2000-04-10 Jason Rumney <jasonr@gnu.org> |
3096 | |
3097 * xfaces.c (realize_face): Change FRAME_X_P to FRAME_WINDOW_P. | |
3098 | |
28538 | 3099 2000-04-10 Gerd Moellmann <gerd@gnu.org> |
3100 | |
28542 | 3101 * xdisp.c (setup_echo_area_for_printing): Choose an echo |
3102 area buffer, if it's not set up yet. | |
3103 | |
28538 | 3104 * indent.c (compute_motion): Set immediate_quit. |
3105 | |
28523 | 3106 2000-04-09 Gerd Moellmann <gerd@gnu.org> |
3107 | |
28530 | 3108 * xfaces.c (tty_suppress_bold_inverse_default_colors_p): New |
3109 variable. | |
3110 (realize_tty_face): Suppress boldness if colors are the inverse of | |
3111 the default colors, and tty_suppress_bold_inverse_default_colors_p | |
3112 is set. | |
3113 (Ftty_suppress_bold_inverse_default_colors): New function. | |
3114 (syms_of_xfaces): Defsubr it. | |
3115 | |
28523 | 3116 * buffer.c (Frestore_buffer_modified_p): New function. |
3117 (syms_of_buffer): Defsubr it. | |
3118 | |
28514
8696fafd68ae
fixing more int/lisp confusion, in coding.* and fontset.c
Ken Raeburn <raeburn@raeburn.org>
parents:
28509
diff
changeset
|
3119 2000-04-08 Ken Raeburn <raeburn@gnu.org> |
8696fafd68ae
fixing more int/lisp confusion, in coding.* and fontset.c
Ken Raeburn <raeburn@raeburn.org>
parents:
28509
diff
changeset
|
3120 |
28515
75bd73426842
* charset.c (Fmake_char_internal): CHAR_COMPONENTS_VALID_P takes a
Ken Raeburn <raeburn@raeburn.org>
parents:
28514
diff
changeset
|
3121 * charset.c (Fmake_char_internal): CHAR_COMPONENTS_VALID_P takes a |
75bd73426842
* charset.c (Fmake_char_internal): CHAR_COMPONENTS_VALID_P takes a
Ken Raeburn <raeburn@raeburn.org>
parents:
28514
diff
changeset
|
3122 charset id (int) argument, not a charset (Lisp_Object). |
75bd73426842
* charset.c (Fmake_char_internal): CHAR_COMPONENTS_VALID_P takes a
Ken Raeburn <raeburn@raeburn.org>
parents:
28514
diff
changeset
|
3123 |
28514
8696fafd68ae
fixing more int/lisp confusion, in coding.* and fontset.c
Ken Raeburn <raeburn@raeburn.org>
parents:
28509
diff
changeset
|
3124 * coding.h (code_convert_string): Declare. |
8696fafd68ae
fixing more int/lisp confusion, in coding.* and fontset.c
Ken Raeburn <raeburn@raeburn.org>
parents:
28509
diff
changeset
|
3125 * coding.c (code_convert_string_norecord): Pass an int, not a lisp |
8696fafd68ae
fixing more int/lisp confusion, in coding.* and fontset.c
Ken Raeburn <raeburn@raeburn.org>
parents:
28509
diff
changeset
|
3126 object, as the fourth argument to code_convert_string. |
8696fafd68ae
fixing more int/lisp confusion, in coding.* and fontset.c
Ken Raeburn <raeburn@raeburn.org>
parents:
28509
diff
changeset
|
3127 |
8696fafd68ae
fixing more int/lisp confusion, in coding.* and fontset.c
Ken Raeburn <raeburn@raeburn.org>
parents:
28509
diff
changeset
|
3128 * fontset.c (make_fontset_for_ascii_face): Use XINT on return |
8696fafd68ae
fixing more int/lisp confusion, in coding.* and fontset.c
Ken Raeburn <raeburn@raeburn.org>
parents:
28509
diff
changeset
|
3129 value. |
8696fafd68ae
fixing more int/lisp confusion, in coding.* and fontset.c
Ken Raeburn <raeburn@raeburn.org>
parents:
28509
diff
changeset
|
3130 (Fset_fontset_font): Use EQ to compare lisp objects. |
8696fafd68ae
fixing more int/lisp confusion, in coding.* and fontset.c
Ken Raeburn <raeburn@raeburn.org>
parents:
28509
diff
changeset
|
3131 |
28507
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3132 2000-04-05 Ken Raeburn <raeburn@gnu.org> |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3133 |
28509
022a7fd54bfe
* intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for a pointer
Ken Raeburn <raeburn@raeburn.org>
parents:
28508
diff
changeset
|
3134 * intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for |
022a7fd54bfe
* intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for a pointer
Ken Raeburn <raeburn@raeburn.org>
parents:
28508
diff
changeset
|
3135 a pointer that looks like a lisp object. |
022a7fd54bfe
* intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for a pointer
Ken Raeburn <raeburn@raeburn.org>
parents:
28508
diff
changeset
|
3136 (SET_INTERVAL_OBJECT): Don't explicitly compare the object with |
022a7fd54bfe
* intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for a pointer
Ken Raeburn <raeburn@raeburn.org>
parents:
28508
diff
changeset
|
3137 zero, instead see whether it's an integer object, since they can't |
022a7fd54bfe
* intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for a pointer
Ken Raeburn <raeburn@raeburn.org>
parents:
28508
diff
changeset
|
3138 have intervals. |
022a7fd54bfe
* intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for a pointer
Ken Raeburn <raeburn@raeburn.org>
parents:
28508
diff
changeset
|
3139 (GET_INTERVAL_OBJECT): Simply assign to the destination. |
022a7fd54bfe
* intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for a pointer
Ken Raeburn <raeburn@raeburn.org>
parents:
28508
diff
changeset
|
3140 |
28507
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3141 * dispnew.c (allocate_matrices_for_frame_redisplay, |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3142 direct_output_forward_char): Use X(U)INT and make_number as needed |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3143 to convert between (unsigned) int values and lisp integers. |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3144 * keyboard.c (read_key_sequence): Likewise. |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3145 * lread.c (substitute_object_recurse): Likewise. |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3146 * fns.c (concat, hash_lookup, hash_remove): Likewise. |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3147 * minibuf.c (do_completion, Fminibuffer_complete_word, |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3148 Fminibuffer_completion_help): Likewise. |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3149 * term.c (produce_special_glyphs): Likewise. |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3150 |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3151 * fileio.c (Fwrite_region): Use EQ when comparing lisp objects. |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3152 * print.c (print_preprocess, print_object): Likewise. |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3153 |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3154 * search.c (compile_pattern): Use NILP when checking for nil. |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28506
diff
changeset
|
3155 |
28508
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28507
diff
changeset
|
3156 * lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && |
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28507
diff
changeset
|
3157 __OPTIMIZE__]: Provide a GNU C macro version that handles |
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28507
diff
changeset
|
3158 lisp-object unions. |
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28507
diff
changeset
|
3159 (XSET) [!NO_UNION_TYPE]: Set the value field first, then the type |
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28507
diff
changeset
|
3160 field, to better cope with ENABLE_CHECKING and calls that modify a |
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28507
diff
changeset
|
3161 Lisp_Object using its old value. |
a68042252425
* lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 && __OPTIMIZE__]:
Ken Raeburn <raeburn@raeburn.org>
parents:
28507
diff
changeset
|
3162 |
28499 | 3163 2000-04-04 Gerd Moellmann <gerd@gnu.org> |
3164 | |
28506 | 3165 * window.c (compare_window_configurations): Signal an error |
3166 if parameters C1 or C2 aren't window configurations. | |
3167 | |
28499 | 3168 * bytecode.c (Fbyte_code): Add a bunch of BEFORE_POTENTIAL_GC/ |
3169 AFTER_POTENTIAL_GC calls around calls to functions that can | |
3170 signal an error and thus invoke the debugger. | |
3171 | |
28483 | 3172 2000-04-03 Gerd Moellmann <gerd@gnu.org> |
3173 | |
28496 | 3174 * fns.c (Fbase64_decode_region, Fbase64_decode_string): Signal |
3175 an error if decoding fails. | |
3176 | |
28483 | 3177 * keyboard.c (lispy_mouse_names): Variable removed. |
3178 (Vlispy_mouse_stem): New variable. | |
3179 (syms_of_keyboard): Initialize Vlispy_mouse_stem. | |
3180 (make_lispy_event) <mouse_click, scroll_bar_click>: Don't abort | |
3181 for any mouse button number. Increase size of mouse_syms and | |
3182 button_down_location as needed. Call modify_event_symbol with | |
3183 different arguments. | |
3184 (make_lispy_event) <scroll_bar_click> [USE_TOOLKIT_SCROLL_BARS]: | |
3185 Call modify_event_symbol with different arguments. | |
3186 (make_lispy_event) <w32_scroll_bar_click> [WINDOWSNT]: Don't abort | |
3187 for any button number. Call modify_event_symbol with different | |
3188 arguments. | |
3189 (modify_event_symbol): Rename NAME_ALIST to NAME_ALIST_OR_STEM. | |
3190 Accept a string for NAME_ALIST_OR_STEM. | |
3191 | |
3192 * lisp.h (larger_vector): Add prototype. | |
3193 | |
3194 * fns.c (larger_vector): Make externally visible. | |
3195 | |
3196 * termhooks.h (NUM_MOUSE_BUTTONS): Removed. | |
3197 | |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3198 2000-04-02 Stefan Monnier <monnier@cs.yale.edu> |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3199 |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3200 * regex.c (PTR_TO_OFFSET) [!emacs]: Remove. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3201 (RE_MULTIBYTE_P, RE_STRING_CHAR_AND_LENGTH): New macros. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3202 (GET_CHAR_BEFORE_2): Moved from charset.h plus fixed minor bug when |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3203 we are between str1 and str2. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3204 (MAX_MULTIBYTE_LENGTH, CHAR_STRING) [!emacs]: Provide trivial default. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3205 (PATFETCH): Use `TRANSLATE'. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3206 (PATFETCH_RAW): Fetch multibyte char if applicable. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3207 (PATUNFETCH): Remove. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3208 (regex_compile): Rely on PATFETCH to do most of the multibyte magic. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3209 When writing a char, write it directly into the pattern buffer rather |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3210 than going needlessly through a temp char-array. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3211 (re_match_2_internal): Similarly, rely on RE_STRING_CHAR to do the |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3212 multibyte magic and remove the useless `#ifdef emacs'. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3213 (bcmp_translate): Don't compare as multibyte chars when in a unibyte |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3214 buffer. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3215 |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3216 * regex.h (struct re_pattern_buffer): Make field `multibyte' |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3217 conditional on `emacs'. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3218 |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3219 * charset.h (GET_CHAR_BEFORE_2): Moved to regex.c. |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28472
diff
changeset
|
3220 |
28469
f66f2b4d5eb7
* alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand non-union-type
Ken Raeburn <raeburn@raeburn.org>
parents:
28466
diff
changeset
|
3221 2000-04-01 Ken Raeburn <raeburn@gnu.org> |
f66f2b4d5eb7
* alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand non-union-type
Ken Raeburn <raeburn@raeburn.org>
parents:
28466
diff
changeset
|
3222 |
f66f2b4d5eb7
* alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand non-union-type
Ken Raeburn <raeburn@raeburn.org>
parents:
28466
diff
changeset
|
3223 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand |
f66f2b4d5eb7
* alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand non-union-type
Ken Raeburn <raeburn@raeburn.org>
parents:
28466
diff
changeset
|
3224 non-union-type versions of XMARK and friends here, because XMARK |
f66f2b4d5eb7
* alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand non-union-type
Ken Raeburn <raeburn@raeburn.org>
parents:
28466
diff
changeset
|
3225 and friends won't work on an integer field if NO_UNION_TYPE is not |
f66f2b4d5eb7
* alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand non-union-type
Ken Raeburn <raeburn@raeburn.org>
parents:
28466
diff
changeset
|
3226 defined. |
f66f2b4d5eb7
* alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand non-union-type
Ken Raeburn <raeburn@raeburn.org>
parents:
28466
diff
changeset
|
3227 (make_number): Define as a function if it's not defined as a |
f66f2b4d5eb7
* alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand non-union-type
Ken Raeburn <raeburn@raeburn.org>
parents:
28466
diff
changeset
|
3228 macro. |
f66f2b4d5eb7
* alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand non-union-type
Ken Raeburn <raeburn@raeburn.org>
parents:
28466
diff
changeset
|
3229 |
28472
bae9218986ac
* composite.c (run_composite_function): Use NILP when checking for nil.
Ken Raeburn <raeburn@raeburn.org>
parents:
28471
diff
changeset
|
3230 * composite.c (run_composite_function): Use NILP when checking for |
bae9218986ac
* composite.c (run_composite_function): Use NILP when checking for nil.
Ken Raeburn <raeburn@raeburn.org>
parents:
28471
diff
changeset
|
3231 nil. |
bae9218986ac
* composite.c (run_composite_function): Use NILP when checking for nil.
Ken Raeburn <raeburn@raeburn.org>
parents:
28471
diff
changeset
|
3232 (syms_of_composite): Delete local var NARGS, pass an int as first |
bae9218986ac
* composite.c (run_composite_function): Use NILP when checking for nil.
Ken Raeburn <raeburn@raeburn.org>
parents:
28471
diff
changeset
|
3233 argument to Fmake_hash_table. |
bae9218986ac
* composite.c (run_composite_function): Use NILP when checking for nil.
Ken Raeburn <raeburn@raeburn.org>
parents:
28471
diff
changeset
|
3234 |
28471
f3d784d3eb5d
fix error in last log message
Ken Raeburn <raeburn@raeburn.org>
parents:
28470
diff
changeset
|
3235 * editfns.c (text_property_stickiness): Use NILP to test |
f3d784d3eb5d
fix error in last log message
Ken Raeburn <raeburn@raeburn.org>
parents:
28470
diff
changeset
|
3236 Lisp_Object boolean value. |
f3d784d3eb5d
fix error in last log message
Ken Raeburn <raeburn@raeburn.org>
parents:
28470
diff
changeset
|
3237 (Fmessage_or_box): Don't use NILP to test int variable. |
28470
93996c44b23a
* editfns.c (text_property_stickiness, Fmessage_or_box): Use NILP to test
Ken Raeburn <raeburn@raeburn.org>
parents:
28469
diff
changeset
|
3238 (Fformat): Use a temporary variable to avoid ENABLE_CHECKING |
93996c44b23a
* editfns.c (text_property_stickiness, Fmessage_or_box): Use NILP to test
Ken Raeburn <raeburn@raeburn.org>
parents:
28469
diff
changeset
|
3239 problems reading from and changing the same lisp value in an |
93996c44b23a
* editfns.c (text_property_stickiness, Fmessage_or_box): Use NILP to test
Ken Raeburn <raeburn@raeburn.org>
parents:
28469
diff
changeset
|
3240 XSETSTRING call. |
93996c44b23a
* editfns.c (text_property_stickiness, Fmessage_or_box): Use NILP to test
Ken Raeburn <raeburn@raeburn.org>
parents:
28469
diff
changeset
|
3241 |
28466 | 3242 2000-04-01 Gerd Moellmann <gerd@gnu.org> |
3243 | |
3244 * term.c (TN_no_color_video): New variable. | |
3245 (term_init): Intitialize TN_no_color_video. | |
3246 (enum no_color_bit): New enumeration. | |
3247 (MAY_USE_WITH_COLORS_P): New macro. | |
3248 (turn_on_face): Use it to determine if attributes may be used | |
3249 combined with colors. | |
3250 | |
28463
4591d285fb65
* window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents:
28462
diff
changeset
|
3251 2000-04-01 Ken Raeburn <raeburn@gnu.org> |
4591d285fb65
* window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents:
28462
diff
changeset
|
3252 |
4591d285fb65
* window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents:
28462
diff
changeset
|
3253 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues |
4591d285fb65
* window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents:
28462
diff
changeset
|
3254 with int lvalues via casts; instead, just yield lisp object |
4591d285fb65
* window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents:
28462
diff
changeset
|
3255 lvalues. |
4591d285fb65
* window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents:
28462
diff
changeset
|
3256 (enlarge_window): Variable sizep now points to Lisp_Object. Use |
4591d285fb65
* window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents:
28462
diff
changeset
|
3257 proper accessor macros. |
4591d285fb65
* window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents:
28462
diff
changeset
|
3258 (shrink_window_lowest_first): w->top is Lisp_Object; use XINT. |
4591d285fb65
* window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents:
28462
diff
changeset
|
3259 (grow_mini_window): Fix typo getting int value of root->height. |
4591d285fb65
* window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
Ken Raeburn <raeburn@raeburn.org>
parents:
28462
diff
changeset
|
3260 |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3261 * xdisp.c (compute_string_pos): Fix order of arguments to |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3262 string_pos_nchars_ahead. |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3263 (handle_fontified_prop, add_to_log): Pass int, not Lisp_Object, as |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3264 count arg to variable-arg routines like Frun_hook_with_args and |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3265 Fformat. |
28483 | 3266 (back_to_previous_visible_line_start) |
3267 (build_desired_tool_bar_string): Pass Lisp_Object, not int, to | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3268 fixed-arg routines like Fget_char_property and Fmake_string. |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3269 (reconsider_clip_changes): Use XINT when comparing integer lisp |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3270 objects, or passing them as int arguments. |
28483 | 3271 (mark_window_display_accurate, insert_left_trunc_glyphs) |
3272 (append_space, extend_face_to_end_of_line): Use make_number when | |
28464
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3273 storing or passing integer values as lisp objects. |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3274 (set_cursor_from_row, highlight_trailing_whitespace): Use |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3275 INTEGERP, not implicit test against zero, for glyph object. |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3276 (try_window_id): Don't use make_number when we want an int value. |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3277 |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3278 * xfaces.c (xlfd_symbolic_value): Make last argument a |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3279 Lisp_Object, to be consistent with callers. |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3280 (Fbitmap_spec_p): Use XINT to get numeric value of height. |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3281 (lface_hash): Apply XFASTINT to lisp values before folding in. |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3282 |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3283 * xfns.c (Fx_show_tip): Use make_number to get lisp objects to |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3284 fill in window width and height. Pass an int, not a lisp object, |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3285 as first arg to Finsert. |
cad4cc0508a0
Fix Lisp_Object/int type confusion revealed by making Lisp_Object a union type:
Ken Raeburn <raeburn@raeburn.org>
parents:
28463
diff
changeset
|
3286 |
28455 | 3287 2000-04-01 Gerd Moellmann <gerd@gnu.org> |
3288 | |
28462 | 3289 * xfaces.c (realize_basic_faces): Block input while realizing |
3290 the faces. | |
3291 | |
28455 | 3292 * keyboard.c (lispy_mouse_names): Add additional mouse names. |
3293 | |
3294 * termhooks.h (NUM_MOUSE_BUTTONS): Increase to 15. | |
3295 | |
28444 | 3296 2000-03-31 Gerd Moellmann <gerd@gnu.org> |
3297 | |
3298 * xterm.c (x_produce_glyphs): When displaying unibyte text | |
28462 | 3299 or ASCII, handle case that per-char metric is null. |
28444 | 3300 |
28417
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3301 2000-03-30 Ken Raeburn <raeburn@gnu.org> |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3302 |
28430
f805ef5a2a03
* lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
Ken Raeburn <raeburn@raeburn.org>
parents:
28417
diff
changeset
|
3303 * lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef. |
f805ef5a2a03
* lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
Ken Raeburn <raeburn@raeburn.org>
parents:
28417
diff
changeset
|
3304 |
28417
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3305 * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3306 XSUBR, XBUFFER): Verify correct object type before returning |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3307 pointer, using eassert. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3308 * frame.h (XFRAME): Likewise. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3309 |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3310 * buffer.c (Frename_buffer, Fset_buffer_multibyte, |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3311 swap_out_buffer_local_variables, Fmove_overlay): Don't apply |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3312 XSYMBOL, XBUFFER, etc, to values that may be nil or of the wrong |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3313 type. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3314 * data.c (set_internal): Likewise. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3315 * dispextern.h (WINDOW_WANTS_MODELINE_P, |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3316 WINDOW_WANTS_HEADER_LINE_P): Likewise. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3317 * fileio.c (auto_save_1): Likewise. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3318 * insdel.c (check_markers): Likewise. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3319 * marker.c (buf_charpos_to_bytepos, unchain_marker): Likewise. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3320 * undo.c (record_insert): Likewise. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3321 * vmsproc.c (child_sig): Likewise. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3322 * window.c (unshow_buffer, window_loop): Likewise. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3323 * xterm.c (x_erase_phys_cursor): Likewise. |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28415
diff
changeset
|
3324 |
28415 | 3325 2000-03-30 Gerd Moellmann <gerd@gnu.org> |
3326 | |
3327 * xfns.c (free_image_cache): Free the cache structure itself | |
3328 last, after all its members have been freed. | |
3329 | |
3330 * lisp.h (xstrdup): Add prototype. | |
3331 | |
3332 * alloc.c (xstrdup): Moved here from xfaces.c. | |
3333 (allocating_for_lisp): Variable removed. | |
3334 (lisp_malloc): Block input around the calls to malloc and | |
3335 mem_insert. | |
3336 | |
3337 * xfaces.c (realize_tty_face): Use find_symbol_value instead | |
3338 of Fsymbol_value. | |
3339 (xstrdup): Moved to alloc.c. | |
3340 | |
28406
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3341 2000-03-29 Ken Raeburn <raeburn@gnu.org> |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3342 |
28407
f15029804aba
* scroll.c (CHECK_BOUNDS): Renamed from CHECK.
Ken Raeburn <raeburn@raeburn.org>
parents:
28406
diff
changeset
|
3343 * scroll.c (CHECK_BOUNDS): Renamed from CHECK. |
f15029804aba
* scroll.c (CHECK_BOUNDS): Renamed from CHECK.
Ken Raeburn <raeburn@raeburn.org>
parents:
28406
diff
changeset
|
3344 |
f15029804aba
* scroll.c (CHECK_BOUNDS): Renamed from CHECK.
Ken Raeburn <raeburn@raeburn.org>
parents:
28406
diff
changeset
|
3345 * emacs.c (main): Fix sense of no-loadup test. |
f15029804aba
* scroll.c (CHECK_BOUNDS): Renamed from CHECK.
Ken Raeburn <raeburn@raeburn.org>
parents:
28406
diff
changeset
|
3346 |
28406
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3347 * config.in (ENABLE_CHECKING): Undef. |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3348 |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3349 * lisp.h (struct interval): Replace "parent" field with a union of |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3350 interval pointer and Lisp_Object; add new bitfield to use as |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3351 discriminant. Change other flag fields to bitfields. |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3352 (CHECK): New macro for consistency checking. If ENABLE_CHECKING |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3353 is defined and the supplied test fails, print a message and |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3354 abort. |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3355 (eassert): New macro. Use CHECK to provide an assert-like |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3356 facility. |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3357 |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3358 * intervals.h (NULL_INTERVAL_P): Now applies only to real interval |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3359 pointers; abort if the value looks like a lisp object. |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3360 (NULL_INTERVAL_P, NULL_PARENT, HAS_PARENT, HAS_OBJECT, SET_PARENT, |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3361 SET_OBJECT, INTERVAL_PARENT, GET_INTERVAL_OBJECT, COPY_PARENT): |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3362 Modify for new interval parent definition. |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3363 |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3364 * alloc.c (mark_interval_tree, MARK_INTERVAL_TREE, |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3365 UNMARK_BALANCE_INTERVALS): Update references that need an |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3366 addressable lisp object in the interval structure. |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3367 (die): New function. |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3368 (suppress_checking): New variable. |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3369 |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3370 * intervals.c (interval_start_pos): Just return 0 if there's no |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3371 parent object. |
451721e784a8
Stop assuming interval pointers and lisp objects can be distinguished by
Ken Raeburn <raeburn@raeburn.org>
parents:
28390
diff
changeset
|
3372 |
28390 | 3373 2000-03-29 Gerd Moellmann <gerd@gnu.org> |
3374 | |
3375 * lread.c (read1): Accept `.' (period) as symbol start like in CL | |
3376 and earlier Emacs versions. | |
3377 | |
3378 * keyboard.c (Ftop_level): Cancel busy-cursor. | |
3379 | |
3380 * eval.c (call_debugger): Cancel busy-cursor. | |
3381 | |
28385 | 3382 2000-03-29 Kenichi Handa <handa@etl.go.jp> |
3383 | |
3384 * search.c (Freplace_match): Adjust multibyteness of the current | |
28386 | 3385 buffer and NEWTEXT. Free allocated memory before signaling an |
3386 error. | |
28385 | 3387 |
28381
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3388 2000-03-28 Stefan Monnier <monnier@cs.yale.edu> |
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3389 |
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3390 * regex.c (analyse_first): New function obtained by ripping out most |
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3391 of re_compile_fastmap and generalizing it a little bit so that it |
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3392 can also just return whether a given (sub)pattern can match the empty |
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3393 string or not. |
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3394 (regex_compile): Use `analyse_first' to decide whether the loop-check |
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3395 needs to be done or not for *, +, *? and +? (the loop check is costly |
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3396 for non-greedy repetition). |
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3397 (re_compile_fastmap): Delegate the actual work to `analyse_first'. |
0a4fcbb850de
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28379
diff
changeset
|
3398 |
28375 | 3399 2000-03-28 Dave Love <fx@gnu.org> |
3400 | |
28379 | 3401 * s/gnu-linux.h (GC_SETJMP_WORKS): Define for i386, sparc, m68k, |
3402 alpha. | |
3403 | |
28375 | 3404 * alloc.c: Include stdio.h. Test STDC_HEADERS, not __STDC__. |
3405 | |
28373
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3406 2000-03-27 Stefan Monnier <monnier@cs.yale.edu> |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3407 |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3408 * regex.c (REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3409 an expression. |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3410 (enum re_opcode_t): Update description of succeed_n. |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3411 (PATFETCH): Always define. |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3412 (regex_compile): Use lookahead rather than PATUNFETCH (for repetition |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3413 operators, char classes, shy-groups and intervals). |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3414 Optimize special cases of intervals so as to only use succeed_n and |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3415 jump_n when really needed. |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3416 (re_compile_fastmap): Simplify handling of jump_n and succeed_n now |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3417 that we don't have to handle the special cases any more. |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3418 Simplify on_failure_jump handling as well. |
4f656f055122
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28371
diff
changeset
|
3419 |
28371 | 3420 2000-03-28 Jason Rumney <jasonr@gnu.org> |
3421 | |
3422 * lread.c (Fload): Move safe_p definition to above #ifdef DOS_NT. | |
3423 | |
28348 | 3424 2000-03-27 Gerd Moellmann <gerd@gnu.org> |
3425 | |
28366 | 3426 * s/freebsd.h (GC_SETJMP_WORKS): Define. |
3427 | |
3428 * s/msdos.h (GC_SETJMP_WORKS): Define. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
3429 |
28366 | 3430 * alloc.c (mark_maybe_object): New function. |
3431 (mark_memory): Use it. | |
3432 (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK): New macros. | |
3433 (setjmp_tested_p, longjmp_done): New variables. | |
3434 (test_setjmp): New function. | |
3435 (mark_stack) [!GC_SETJMP_WORKS]: Call test_setjmp. | |
3436 (init_alloc): Initialize setjmp_tested_p and longjmp_done. | |
3437 | |
28363 | 3438 * xdisp.c (face_before_or_after_it_pos): Pass multibyteness |
3439 to DEC_TEXT_POS and INC_TEXT_POS. | |
3440 | |
3441 * dispnew.c (direct_output_for_insert): Use DEC_TEXT_POS | |
3442 with parameter MULTIBYTE_P. | |
3443 | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
3444 * dispextern.h (INC_TEXT_POS, DEC_TEXT_POS): Add parameter |
28363 | 3445 MULTIBYTE_P. |
3446 | |
28359 | 3447 * editfns.c (Fsubst_char_in_region): Don't use INC_POS in unibyte |
28366 | 3448 buffers because it looks for multibyte character byte sequences |
3449 which don't exist in unibyte text. | |
28359 | 3450 |
28357 | 3451 * xterm.h (x_specified_cursor_type, x_copy_color): Add prototypes. |
3452 | |
28368 | 3453 * xfaces.c (register_color, unregister_color, unregister_colors) |
28357 | 3454 [DEBUG_X_COLORS]: New functions. |
3455 (x_free_colors) [DEBUG_X_COLORS]: Unregister colors. | |
3456 | |
3457 * xfns.c (x_set_cursor_color): Get color reference counts right. | |
3458 | |
3459 * xterm.c (x_copy_color): New function. | |
3460 (x_alloc_nearest_color) [DEBUG_X_COLORS]: Call register_color. | |
3461 | |
3462 * buffer.h (MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS. | |
3463 (PER_BUFFER_VAR_OFFSET): Renamed from BUFFER_LOCAL_VAR_OFFSET. | |
3464 (PER_BUFFER_VAR_IDX): Renamed from BUFFER_LOCAL_VAR_IDX. | |
3465 (PER_BUFFER_VALUE_P): Renamed from BUFFER_HAS_LOCAL_VALUE_P. | |
3466 (SET_PER_BUFFER_VALUE_P): Renamed from SET_BUFFER_HAS_LOCAL_VALUE_P. | |
3467 (PER_BUFFER_IDX): Renamed from BUFFER_LOCAL_IDX. | |
3468 (PER_BUFFER_DEFAULT): Renamed from BUFFER_LOCAL_DEFAULT_VALUE. | |
3469 (PER_BUFFER_VALUE): Renamed from BUFFER_LOCAL_VALUE. | |
3470 (PER_BUFFER_SYMBOL): Renamed from BUFFER_LOCAL_SYMBOL. | |
3471 (PER_BUFFER_TYPE): Renamed from BUFFER_LOCAL_TYPE. | |
3472 | |
28368 | 3473 * category.c, data.c, syntax.c, print.c, lread.c: Use new macro |
3474 names for handling per-buffer variables. | |
28357 | 3475 |
3476 * buffer.c (buffer_permanent_local_flags): Use MAX_PER_BUFFER_VARS | |
3477 instead of MAX_BUFFER_LOCAL_VARS. | |
3478 (last_per_buffer_idx): Renamed from max_buffer_local_idx. | |
3479 | |
3480 * xfaces.c (lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P. | |
3481 | |
28348 | 3482 * xfns.c (x_specified_cursor_type): New function. |
3483 (x_set_cursor_type): Use it. | |
3484 | |
3485 * buffer.h (struct buffer): Add cursor_type. | |
3486 | |
28346
9ef17fa48577
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28335
diff
changeset
|
3487 2000-03-26 Stefan Monnier <monnier@cs.yale.edu> |
9ef17fa48577
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28335
diff
changeset
|
3488 |
9ef17fa48577
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28335
diff
changeset
|
3489 * regex.c (enum re_opcode_t): New opcode on_failure_jump_nastyloop. |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
3490 (print_partial_compiled_pattern, re_compile_fastmap): Handle new |
28348 | 3491 opcode. |
28346
9ef17fa48577
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28335
diff
changeset
|
3492 (regex_compile): Use on_failure_jump_nastyloop for non-greedy loops. |
9ef17fa48577
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28335
diff
changeset
|
3493 (re_match_2_internal): Add code for on_failure_jump_nastyloop when |
9ef17fa48577
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28335
diff
changeset
|
3494 executing it as well as when popping it off the stack to find infinite |
9ef17fa48577
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28335
diff
changeset
|
3495 loops in non-greedy repetition operators. |
9ef17fa48577
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28335
diff
changeset
|
3496 |
28320 | 3497 2000-03-26 Gerd Moellmann <gerd@gnu.org> |
3498 | |
28335 | 3499 * doc.c (Qfunction_documentation): New variable. |
3500 (syms_of_doc): Initialize Qfunction_documentation. | |
3501 (Fdocumentation): If FUNCTION is a symbol with non-nil | |
3502 `function-documentation' property, return a documentation derived | |
3503 from that. | |
3504 | |
28333 | 3505 * buffer.c (syms_of_buffer): Add default-cursor-type. |
3506 (init_buffer_once): Don't let cursor_type have a local value | |
3507 in every buffer. | |
3508 | |
28323 | 3509 * xterm.c (x_display_and_set_cursor): Choose cursor depending |
3510 on buffer-local value of cursor_type. | |
3511 (x_draw_bar_cursor): Add parameter WIDTH. | |
3512 | |
3513 * buffer.c (reset_buffer): Initialize buffer's cursor_type. | |
3514 (init_buffer_once): Set default cursor_type value to t. | |
3515 Mark cursor_type as local everywhere. | |
3516 (syms_of_buffer): New per-buffer variable cursor-type. | |
3517 | |
28320 | 3518 * buffer.h (struct buffer): Remove member local_var_flags, |
3519 add local_flags. | |
3520 (MAX_BUFFER_LOCAL_VARS): New macro. | |
3521 (BUFFER_LOCAL_VAR_OFFSET, BUFFER_LOCAL_VAR_IDX) | |
3522 (BUFFER_HAS_LOCAL_VALUE_P, SET_BUFFER_HAS_LOCAL_VALUE_P) | |
3523 (BUFFER_LOCAL_IDX, BUFFER_LOCAL_DEFAULT_VALUE, BUFFER_LOCAL_VALUE) | |
3524 (BUFFER_LOCAL_SYMBOL, BUFFER_LOCAL_TYPE): New macros. | |
3525 | |
3526 * print.c (print_object): Use new macros for per-buffer | |
3527 variables. | |
3528 | |
3529 * category.c (Fset_category_table): Use new macros for per-buffer | |
3530 variables. | |
3531 | |
3532 * buffer.c (buffer_permanent_local_flags): Make a char array. | |
3533 (max_buffer_local_idx): New variable. | |
3534 (reset_buffer_local_variables, Fbuffer_local_variables): Rewritten | |
3535 for new handling of per-buffer variables. | |
3536 (buffer_slot_type_mismatch): Use new macros for per-buffer vars. | |
3537 (init_buffer_once): Initialize per-buffer vars differently. | |
3538 Set max_buffer_local_idx. | |
3539 | |
3540 * syntax.c (Fset_syntax_table): Use new macros for per-buffer | |
3541 variables. | |
3542 | |
3543 * lread.c (defvar_per_buffer): Use new macros for per-buffer | |
3544 variables. | |
3545 | |
3546 * data.c (do_symval_forwarding, store_symval_forwarding) | |
3547 (find_symbol_value, set_internal, default_value, Fset_default) | |
3548 (Fkill_local_variable, Flocal_variable_p): Use new macros for | |
3549 per-buffer variables. | |
3550 | |
3551 * Makefile.in (bootstrap-emacs): Use `mv -f' instead of `mv'. | |
3552 | |
28303 | 3553 2000-03-24 Gerd Moellmann <gerd@gnu.org> |
3554 | |
28308 | 3555 * xterm.c (x_term_init): Unblock input around call1 of |
3556 Qvendor_specific_keysyms. | |
3557 | |
28303 | 3558 * syntax.c (open_paren_in_column_0_is_defun_start): New variable. |
3559 (find_defun_start): Consider an open parenthesis in column 0 | |
3560 a defun start only if open_paren_in_column_0_is_defun_start is set. | |
3561 (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start. | |
3562 | |
28298
4ec88f0050a1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28294
diff
changeset
|
3563 2000-03-24 Stefan Monnier <monnier@cs.yale.edu> |
4ec88f0050a1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28294
diff
changeset
|
3564 |
4ec88f0050a1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28294
diff
changeset
|
3565 * eval.c (Fautoload): Add entry in load-history (if after dump). |
4ec88f0050a1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28294
diff
changeset
|
3566 * lread.c (load-history): Update docstring. |
4ec88f0050a1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28294
diff
changeset
|
3567 |
28294 | 3568 2000-03-24 Gerd Moellmann <gerd@gnu.org> |
3569 | |
3570 * indent.c (Fvertical_motion): Always use the current buffer. | |
3571 Temporarily change the window's buffer, if necessary. | |
3572 | |
28283 | 3573 2000-03-23 Gerd Moellmann <gerd@gnu.org> |
3574 | |
3575 * xterm.c (fast_find_position): Make sure not to consider rows | |
3576 not visible in the window. | |
3577 | |
28280
6f0261bc95b8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
3578 2000-03-22 Stefan Monnier <monnier@cs.yale.edu> |
6f0261bc95b8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
3579 |
6f0261bc95b8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
3580 * regex.c (enum syntaxcode): Provide default for non-Emacs. |
6f0261bc95b8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
3581 (re_compile_fastmap, re_match_2_internal): Undo Dave's previous fix. |
6f0261bc95b8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
3582 |
28276 | 3583 2000-03-22 Jason Rumney <jasonr@gnu.org> |
3584 | |
3585 * w32menu.c (single_submenu): Set help string to NULL if none. | |
3586 (w32_menu_show): Set help string correctly. | |
3587 (add-menu-item): Set help string in MIIM_DATA for menu item. | |
3588 Load SetMenuItemInfoA explicitly. | |
3589 (w32_menu_display_help): New function. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
3590 |
28276 | 3591 * w32fns.c (w32_wnd_proc): Handle WM_MENUSELECT message. |
3592 (QCdata): Moved to xdisp.c. | |
3593 | |
3594 * w32term.c (w32_read_socket): Handle WM_MENUSELECT message. | |
3595 (Vw32_charset_to_codepage_alist): Removed. | |
3596 (Vw32_charset_info_alist): New variable. | |
3597 (Qw32_charset_[ansi, default, symbol, shiftjis, hangul, gb2312, | |
3598 chinesebig5, oem, easteurope, turkish, baltic, russian, arabic, | |
3599 greek, hebrew, thai, johab, mac, unicode]): New symbols. | |
3600 (x_produce_glyphs): Remove out of date #ifdef 0'd section. Replace | |
3601 with TODO comment. | |
3602 (w32_codepage_for_font): Use Vw32_charset_info_alist. | |
3603 (syms_of_w32term): Remove Vw32_charset_to_codepage_alist. | |
3604 Define Vw32_charset_info_alist and w32_charset symbols. | |
3605 | |
3606 2000-03-22 Jason Rumney <jasonr@gnu.org> | |
3607 | |
3608 * makefile.nt (w32bdf.obj): Update dependencies. | |
3609 | |
3610 * w32bdf.c: Include frame.h and dispextern.h before fontset.h. | |
3611 | |
3612 * w32fns.c: Include fontset.h after dispextern.h. | |
3613 (Fx_create_frame): Do not create fontset. | |
3614 (w32_load_system_font): Doc fix. | |
3615 (Fx_close_connection): Free full_name if it is not shared. | |
3616 | |
3617 * w32term.c: Include fontset.h after dispextern.h. | |
3618 (x_get_glyph_face_and_encoding): New parameter two_byte_p. Callers | |
3619 updated. | |
3620 (w32_per_char_metric): If PCM is invalid, delete and return NULL. | |
3621 (x_get_char_and_face_encoding): Use FACE_FOR_CHAR to get face_id. | |
3622 (w32_font_is_double_byte): New function, needs body. | |
3623 (x_append_glyph): Set glyph->glyph_not_available_p. | |
3624 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set | |
3625 it->charset. If it->multibyte_p is zero and it->c is a multibyte | |
3626 character, convert it to a unibyte character. | |
3627 (struct glyph_string): Delete member `charset'. | |
3628 (W32_TEXTOUT): Temporarily remove charset_dim until another way of | |
3629 calculating it is found. | |
3630 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle | |
3631 the case that per char metric is not available correctly. | |
3632 (x_fill_glyph_string): Handle the case that the specific glyph is | |
3633 not available correctly. | |
3634 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset. | |
3635 (BUILD_COMPOSITE_GLYPH_STRING): Likewise. | |
3636 (x_new_font): Call FS_LOAD_FONT, not fs_load_font. | |
3637 (x_new_fontset): Call fontset_ascii to get ASCII font name of the | |
3638 fontset. Don't call FS_LOAD_FONT. | |
3639 | |
28269
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3640 2000-03-22 Ken Raeburn <raeburn@gnu.org> |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3641 |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3642 * intervals.h (NULL_INTERVAL): Cast to INTERVAL type. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3643 (INT_LISPLIKE): New macro. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3644 (NULL_INTERVAL_P): Use it. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3645 (INTERVAL_HAS_PARENT, INTERVAL_HAS_OBJECT, SET_INTERVAL_PARENT, |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3646 SET_INTERVAL_OBJECT, INTERVAL_PARENT, COPY_INTERVAL_PARENT, |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3647 GET_INTERVAL_OBJECT, INTERVAL_PARENT_OR_NULL): New macros. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3648 |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3649 * alloc.c (make_interval, gc_sweep): Use new macros; eliminate all |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3650 explicit references to "parent" field of struct interval and |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3651 associated unclean type conversions. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3652 * intervals.c (create_root_interval, root_interval, rotate_right, |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3653 rotate_left, balance_possible_root_interval, split_interval_right, |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3654 split_interval_left, interval_start_pos, find_interval, |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3655 next_interval, previous_interval, update_interval, |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3656 adjust_intervals_for_insertion, delete_node, delete_interval, |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3657 adjust_intervals_for_deletion, merge_interval_right, |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3658 merge_interval_left, reproduce_tree, graft_intervals_into_buffer, |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3659 copy_intervals_to_string): Likewise. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3660 * intervals.h (AM_LEFT_CHILD, AM_RIGHT_CHILD, RESET_INTERVAL): |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3661 Likewise. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3662 * syntax.c (update_syntax_table): Likewise. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3663 |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3664 * intervals.c (reproduce_tree_obj): New function, like |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3665 reproduce_tree but takes a Lisp_Object for the parent. Declare |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3666 with prototype. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3667 (graft_intervals_into_buffer): Use it when appropriate. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3668 (reproduce_tree): Declare with prototype. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3669 (balance_possible_root_interval): Check that the parent is a lisp |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3670 object before trying to examine its type. |
fd13be8ae190
Changes towards better type safety regarding intervals, primarily
Ken Raeburn <raeburn@raeburn.org>
parents:
28267
diff
changeset
|
3671 |
28267 | 3672 2000-03-22 Gerd Moellmann <gerd@gnu.org> |
3673 | |
3674 * xfaces.c (lface_same_font_attributes_p): Compare font attributes | |
3675 as strings only if both are known to be strings. | |
3676 | |
3677 * s/openbsd.h (LIBS_TERMCAP): Undef. | |
3678 | |
28262
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3679 2000-03-21 Stefan Monnier <monnier@cs.yale.edu> |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3680 |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3681 * regex.c (CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3682 definitions for non-Emacs compilation. |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3683 (enum re_opcode_t): Remove (not)wordchar and move (not)syntaxspec |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3684 outside of `#ifdef emacs'. |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3685 (print_partial_compiled_pattern): Update. |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3686 (regex_compile): Use (not)syntaxspec(Sword) instead of (not)wordchar. |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3687 (re_compile_fastmap): Merge handling of charset and charset_not (for |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3688 emacs and non-emacs compilation as well). |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3689 Similarly for (not)categoryspec and (not)syntaxspec. |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3690 Don't use the fastmap when reaching `anychar' since the added |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3691 complexity is not justified. |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3692 (re_match_2_internal): Merge (not)wordchar (emacs and non-emacs) |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3693 and (not)syntaxspec. Merge (not)categoryspec. |
5fafac497e27
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28255
diff
changeset
|
3694 |
28253 | 3695 2000-03-22 Kenichi Handa <handa@etl.go.jp> |
3696 | |
28255 | 3697 * dispextern.h [!HAVE_WINDOW_SYSTEM] (FACE_SUITABLE_FOR_CHAR_P, |
3698 FACE_FOR_CHAR): Define them differently for the configuration of | |
3699 --without-x. | |
28253 | 3700 |
28242 | 3701 2000-03-21 Dave Love <fx@gnu.org> |
3702 | |
3703 * fontset.c (Fset_fontset_font, Ffontset_font): Fix newlines in | |
3704 doc string. | |
3705 | |
28238 | 3706 2000-03-21 Gerd Moellmann <gerd@gnu.org> |
3707 | |
3708 * xfaces.c (check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error. | |
3709 (lface_fully_specified_p): Don't check contents of | |
3710 LFACE_FONT_INDEX because that attribute is optional. | |
3711 (realize_x_face): Remove now unwarranted xassert. | |
3712 | |
28218 | 3713 2000-03-21 Kenichi HANDA <handa@etl.go.jp> |
3714 | |
28219 | 3715 The following changes are to make font selection based on |
3716 characters, not charset. In addition, they recover fontset | |
3717 facilities while utilizing the new font selection mechanism. | |
28218 | 3718 |
28233 | 3719 * Makefile.in (fontset.o): Depend on dispextern.h. |
3720 | |
3721 * alloc.c (mark_face_cache): Don't mark face->registry. | |
3722 | |
28218 | 3723 * dispextern.h (struct glyph): New member glyph_not_available_p. |
3724 Use 22 bits for face_id. | |
3725 (enum lface_attribute_index): Add LFACE_FONT_INDEX. | |
3726 (struct face): Delete member registry, new member ascii_face. | |
3727 (FACE_SUITABLE_FOR_CHAR_P): Renamed from | |
3728 FACE_SUITABLE_FOR_CHARSET_P. Caller changed. | |
3729 (FACE_FOR_CHAR): Renamed from FACE_FOR_CHARSET. Caller changed. | |
3730 (struct it): Delete member charset, new member | |
3731 glyph_not_available_p. | |
3732 | |
3733 * fontset.h (FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed. | |
3734 (struct fontset_info, struct fontset_data): Structs removed. | |
3735 (allloc_fontset_data, free_fontset_data, fs_regiser_fontset, | |
3736 Vglobale_fontset_alist, font_idx_temp): Externs removed. | |
3737 (fs_load_font, fs_query_fontset): Adjusted for new argument. | |
3738 (fs_free_face_fontset, fontset_font_pattern, | |
3739 face_suitable_for_char_p, face_for_char, | |
3740 make_fontset_for_ascii_face): Extern them. | |
3741 (FS_LOAD_FONT): Adjusted for the change of fontset implementation. | |
3742 (FS_LOAD_FACE_FONT): New macro. | |
3743 | |
3744 * fontset.c: All codes rewritten or adjusted for the change of | |
3745 fontset implementation. Now fontset is represented by char table. | |
3746 (Vglobal_fontset_alist, font_idx_temp, my_strcasetbl): Variables | |
3747 removed. | |
3748 (my_strcasecmp): Function removed. | |
3749 (Vfontset_table, next_fontset_id, Vdefault_fontset): New | |
3750 variables. | |
3751 (AREF, ASIZE): New macros. | |
3752 (FONTSET_FROM_ID, FONTSET_ID, FONTSET_NAME, FONTSET_FRAME, | |
3753 FONTSET_ASCII, FONTSET_BASE, BASE_FONTSET_P, FONTSET_REF, | |
3754 FONTSET_REF_VIA_BASE, FONTSET_SET): New macros. | |
3755 (fontset_ref, fontset_ref_via_base, fontset_set, make_fontset, | |
3756 fontset_id_valid_p, font_family_registry, fontset_name, | |
3757 fontset_ascii, free_face_fontset, face_suitable_for_char_p, | |
3758 face_for_char, make_fontset_for_ascii_face, fontset_font_pattern): | |
3759 New functions. | |
3760 (fs_load_font): New arg FACE. Caller changed. | |
3761 (fs_query_fontset): Argument changed. Caller changed. | |
3762 (Fquery_fontset): call fs_query_fontset. | |
3763 (fs_register_fontset, alloc_fontset_data, free_fontset_data): | |
3764 Functions removed. | |
3765 (clear_fontset_elements, check_registry_encoding, | |
3766 check_fontset_name): New functions. | |
3767 (syms_of_fontset): Set char-table-extra-slots property of fontset | |
3768 to 3. Staticpro and initialize Vfontset_table and | |
3769 Vdefault_fontset. Defsubr fontset_font and fontset_list. | |
3770 | |
3771 * frame.h (struct frame): Member `fontset_data' removed. | |
3772 (FRAME_FONTSET_DATA): Macro removed. | |
3773 | |
3774 * frame.c (make_frame): Don't allocate f->fontset_data. | |
3775 (Fdelete_frame): Don't free f->fontset_data. | |
3776 | |
28233 | 3777 * msdos.c (XMenuActivate): Args to lookup_derived_face changed. |
3778 | |
28218 | 3779 * xdisp.c (charset_at_position): Function removed. |
3780 (init_iterator): Don't set member charset of struct `it'. | |
3781 (handle_face_prop, reseat_to_string, set_iterator_to_next, | |
3782 next_element_from_display_vector, insert_left_trunc_glyphs): | |
3783 Likewise. | |
3784 (face_before_or_after_it_pos): Call FACE_FOR_CHAR, not | |
3785 FACE_FOR_CHARSET. | |
3786 (get_next_display_element, append_space, | |
3787 extend_face_to_end_of_line): Likewise. | |
3788 | |
3789 * xfaces.c (Qx_charset_registry, Vface_default_registry): | |
3790 Variables removed. | |
3791 (clear_font_table, frame_update_line_height, load_face_font): | |
3792 Adjusted for the change of fontset implementation. | |
3793 (load_face_fontset_font): Function removed. | |
3794 (pixel_point_size): New function. | |
3795 (font_list): Argument type changed. Caller changed. | |
3796 (LFACE_FONT): New macro. | |
3797 (check_lface_attrs): Check attr[LFACE_FONT_INDEX]. | |
3798 (set_lface_from_font_name): Type of arg FONTNAME is changed to | |
3799 Lisp_Object. Determine the font name by actually loading a font | |
3800 by the specified pattern. Set LFACE_FONT (lface) to the specified | |
3801 pattern. Even if a font is not found, don't try alternatives. | |
3802 (Finternal_set_lisp_face_attribute): Handle `font' slot in lface. | |
3803 (set_font_frame_param): If `font' is specified in lface, use it. | |
3804 (Finternal_get_lisp_face_attribute): Handle `font' slot in lface. | |
3805 (lface_same_font_attributes_p): Likewise. | |
3806 (make_realized_face): Arguent changed. Caller changed. Set | |
3807 face->ascii_face to face itself. | |
3808 (free_realized_face): Free face->fontset if face is for ASCII. | |
3809 (face_suitable_for_iso8859_1_p, face_suitable_for_charset_p, | |
3810 deduce_unibyte_registry, x_charset_registry): Functions removed. | |
3811 (free_realized_multibyte_face): New function. | |
3812 (lookup_face, lookup_named_face, lookup_derived_face): Argument | |
3813 changed. Caller changed. | |
3814 (try_font_list): Argument type changed. | |
3815 (face_fontset): Check `font' slot of ATTRS, not `family' slot. | |
3816 (choose_face_font): Argument changed. Handle fontset properly. | |
3817 (choose_face_fontset_font): Function removed. | |
3818 (realize_default_face, realize_named_face): Don't remove the | |
3819 former face here. | |
3820 (realize_face): Argument changed. Caller changed. Remove face | |
3821 with the arg former_face_id in advance. Load font for the new | |
3822 face. | |
3823 (realize_x_face): Argument changed. Caller changed. For a | |
3824 multibyte character, share fontset with base_face. For a single | |
3825 byte character, make a new realized fontset. Don't load a font | |
3826 here. | |
3827 (realize_tty_face): Argument changed. Caller changed. | |
3828 (compute_char_face): Call FACE_FOR_CHAR, not FACE_FOR_CHARSET. | |
3829 (face_at_buffer_position): Don't check multibyte_p for returning | |
3830 DEFAULT_FACE_ID. | |
3831 (face_at_string_position): Call FACE_SUITABLE_FOR_CHAR_P, not | |
3832 FACE_SUITABLE_FOR_CHARSET_P. | |
3833 (syms_of_xfaces): Remove code for Qx_charset_registry and | |
3834 Vface_default_registry. | |
3835 | |
28233 | 3836 * xterm.c: Include fontset.h after dispextern.h. Undo the changes |
3837 related to PER_CHAR_METRIC done by Gerd on 2000-03-03. | |
28218 | 3838 (x_per_char_metric): Don't try FONT->default_char. Even if |
3839 pcm->width is zero, glyph bits may exist. | |
3840 (x_encode_char): Always initialize char2b->byte1. | |
3841 (x_get_char_face_and_encoding): Call FACE_FOR_CHAR to get face_id. | |
3842 (x_get_glyph_face_and_encoding): New arg two_byte_p. Caller | |
3843 changed. | |
3844 (x_append_glyph): Set glyph->glyph_not_available_p. | |
3845 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set | |
3846 it->charset. Handle the case that per char metric is not | |
3847 available. If it->multibyte_p is zero and it->c is a multibyte | |
3848 character, convert it to a unibyte character. | |
3849 (struct glyph_string): Delete member `charset'. | |
3850 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle | |
3851 the case that per char metric is not available correctly. | |
3852 (x_fill_glyph_string): Handle the case that the specific glyph is | |
3853 not available correctly. | |
3854 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset. | |
3855 (BUILD_COMPOSITE_GLYPH_STRING): Likewise. | |
3856 (x_new_font): Call FS_LOAD_FONT, not fs_load_font. | |
3857 (x_new_fontset): Call fontset_ascii to get ASCII font name of the | |
3858 fontset. Don't call FS_LOAD_FONT. | |
3859 | |
3860 * xfns.c (Fx_create_frame): Don't cal fs_register_fontset. | |
3861 (x_create_tip_frame): Likewise. | |
3862 (Fx_close_connection): Free full_name of font_info. | |
3863 | |
3864 * fns.c (optimize_sub_char_table): New function. | |
3865 (Foptimize_char_table): New function. | |
3866 (syms_of_fns): Defsubr Soptimize_char_table. | |
3867 | |
28209 | 3868 2000-03-20 Gerd Moellmann <gerd@gnu.org> |
3869 | |
3870 * buffer.c (Fset_buffer_modified_p): Set update_mode_lines | |
3871 only if buffer is displayed in some window. | |
3872 | |
3873 * xdisp.c (handle_single_display_prop): Initialize local `value'. | |
3874 (try_window_reusing_current_matrix): Don't call scroll run | |
3875 function if run's current and desired position are the same; | |
3876 this prevents cursor flickering. | |
3877 | |
28204
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3878 2000-03-19 Stefan Monnier <monnier@cs.yale.edu> |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3879 |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3880 * regex.h (RE_TRANSLATE. RE_TRANSLATE_P): Moved to regex.c. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3881 |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3882 * regex.c (RE_STRING_CHAR): New macro. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3883 (GET_CHAR_AFER_2): Remove. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3884 (RE_TRANSLATE, RE_TRANSLATE_P): New macros moved from regex.h. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3885 (enum re_opcode_t): Remove on_failure_jump_exclusive. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3886 (print_partial_compiled_pattern, re_compile_fastmap) |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3887 (re_match_2_internal): Remove on_failure_jump_exclusive. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3888 (regex_compile): Turn optimizable P+ loops into PP*, so that the |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3889 optimization only need to work for * (ie. can use of_keep_string_jump). |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3890 Remove the special case for .*\n since it is now covered by the general |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3891 optimization. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3892 (re_search_2): Don't bother with `room'. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3893 (skip_one_char): New function. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3894 (skip_noops): Simplify since `memory' is not needed any more. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3895 (mutually_exclusive_p): Restructure slightly to use `switch' and |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3896 add handling for "all" remaining cases. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3897 (re_match_2_internal): Change on_failure_jump_smart to use |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3898 on_failure_keep_string_jump (and redirect the end-of-loop jump) |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3899 rather than on_failure_jump_exclusive. |
a71f5d1c6615
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28201
diff
changeset
|
3900 |
28201 | 3901 2000-03-19 Gerd Moellmann <gerd@gnu.org> |
3902 | |
3903 * xfns.c (select_visual): Don't set dpyinfo->n_planes to the | |
3904 number of bits per RGB because it's everywhere used as the depth | |
3905 of the visual. | |
3906 | |
3907 * term.c (calculate_costs): Remove code dealing with X frames. | |
3908 | |
30337
5861c80aa795
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30329
diff
changeset
|
3909 2000-03-19 Richard M. Stallman <rms@gnu.org> |
28197
aaa6448240eb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28194
diff
changeset
|
3910 |
aaa6448240eb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28194
diff
changeset
|
3911 * lread.c (syms_of_lread): Doc fix for load-convert-to-unibyte. |
aaa6448240eb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28194
diff
changeset
|
3912 |
28194 | 3913 2000-03-18 Gerd Moellmann <gerd@gnu.org> |
3914 | |
3915 * lread.c (read_integer): Unread the last char not consumed. | |
3916 | |
28184 | 3917 2000-03-17 Gerd Moellmann <gerd@gnu.org> |
3918 | |
3919 * xterm.c (x_update_window_cursor): Don't update in frames | |
28194 | 3920 which are in the process of being deleted. |
28184 | 3921 |
28166 | 3922 2000-03-16 Gerd Moellmann <gerd@gnu.org> |
3923 | |
28176 | 3924 * Makefile.in (mostlyclean): Add `*.core'. |
3925 (clean): Add `bootstrap-emacs'. | |
3926 | |
28166 | 3927 * lread.c (read_integer): New function. |
3928 (read1): Support read syntax #o, #x, #b, #r. | |
3929 | |
28164
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3930 2000-03-15 Stefan Monnier <monnier@cs.yale.edu> |
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3931 |
28166 | 3932 * regex.c (re_match_2): Fix string shortening (to fit `stop') to |
3933 make sure POINTER_TO_OFFSET gives the same value before and after | |
3934 PREFETCH. Use `dfail' to guarantee "atomic" matching. | |
28164
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3935 (PTR_TO_OFFSET): Use POINTER_TO_OFFSET. |
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3936 (debug): Now only active if > 0 rather than if != 0. |
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3937 (DEBUG_*): Update for the new meaning of `debug'. |
28166 | 3938 (print_partial_compiled_pattern): Add missing `succeed' case. Use |
3939 CHARSET_* macros in the charset(_not) branch. Fix off-by-two bugs | |
3940 in `succeed_n', `jump_n' and `set_number_at'. | |
28164
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3941 (store_op1, store_op2, insert_op1, insert_op2) |
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3942 (at_begline_loc_p, at_endline_loc_p): Add prototype. |
28166 | 3943 (group_in_compile_stack): Move to after its arg's types are |
3944 declared and add a prototype. | |
28164
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3945 (PATFETCH): Define in terms of PATFETCH_RAW. |
28166 | 3946 (GET_UNSIGNED_NUMBER): Add the usual `do { ... } while(0)' |
3947 wrapper. | |
28164
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3948 (QUIT): Redefine as a nop except for NTemacs. |
28166 | 3949 (regex_compile): Handle intervals {,M} as if it was {0,M}. Fix |
3950 indentation of the greedy-op and shy-group code. | |
28164
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3951 (at_(beg|end)line_loc_p): Fix argument's types. |
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3952 (re_compile_fastmap): Ifdef out failure_stack_ptr to shut up gcc. |
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3953 (re_search_2): Use POS_AS_IN_BUFFER. Simplify `room' computation. |
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3954 (MATCHING_IN_FIRST_STRING): Remove. |
28166 | 3955 (re_match_2): Use POS_AS_IN_BUFFER. Ifdef out failure_stack_ptr |
3956 to shut up gcc. Use FIRST_STRING_P and POINTER_TO_OFFSET. Use | |
3957 QUIT unconditionally. | |
28164
62db832482e1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28159
diff
changeset
|
3958 |
28159 | 3959 2000-03-15 Gerd Moellmann <gerd@gnu.org> |
3960 | |
3961 * minibuf.c (Fminibuffer_complete): Set point to ZV if finding | |
3962 a sole completion. | |
3963 | |
3964 * process.c (send_process): Add a hint that the function | |
3965 can call Lisp code to its comment. | |
3966 | |
3967 * lread.c (load_dangerous_libraries): New variable. | |
3968 (Vbytecomp_version_regexp): New variable. | |
3969 (safe_to_load_p): New function. | |
3970 (Fload): Handle files not compiled with Emacs specially. | |
3971 (syms_of_lread): New Lisp variable load-dangerous-libraries. | |
3972 | |
28139 | 3973 2000-03-14 Gerd Moellmann <gerd@gnu.org> |
3974 | |
28147 | 3975 * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon. |
3976 | |
3977 * xterm.c (xim_close_dpy, xim_initialize): Use X11R6-style XIM | |
3978 support functions only if HAVE_X11R6_XIM is defined. | |
3979 (xim_instantiate_callback): Define only if HAVE_X11R6_XIM. | |
3980 | |
3981 * s/sol2.h (INHIBIT_X11R6_XIM): Define. | |
3982 | |
3983 * xfns.c (X_I18N_INHIBITED): Don't define. | |
3984 (create_frame_xic): Remove conditional compilation on | |
3985 X_I18N_INHIBITED. | |
3986 (x_kill_gs_process, x_window): Use FRAME_X_VISUAL. | |
3987 | |
3988 * config.in (HAVE_X_I18N): Moved here from xterm.h. | |
3989 (HAVE_X11R6_XIM): Define. | |
3990 | |
3991 * xterm.h (HAVE_X_I18N) [HAVE_X11R6]: Moved to config.in. | |
3992 | |
28139 | 3993 * xterm.c (x_term_init): Add support for X resource `synchronous'. |
3994 If set, call XSynchronize. | |
3995 | |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28137
diff
changeset
|
3996 2000-03-13 Stefan Monnier <monnier@cs.yale.edu> |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28137
diff
changeset
|
3997 |
28139 | 3998 * regex.c: Declare a new type `re_char' used throughout the code |
3999 for the string char type. It's `const unsigned char' to match the | |
4000 rest of Emacs. Consistently make sure all pointers to strings use | |
4001 it and make sure all pointers into the pattern use `unsigned | |
4002 char'. | |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28137
diff
changeset
|
4003 (re_match_2_internal): Use `PREFETCH+STRING_CHAR' instead of |
28139 | 4004 GET_CHAR_AFTER_2. Also merge wordbound and notwordbound to reduce |
4005 code duplication. | |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28137
diff
changeset
|
4006 |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28137
diff
changeset
|
4007 * charset.h (GET_CHAR_AFTER_2): Remove. |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28137
diff
changeset
|
4008 (GET_CHAR_BEFORE_2): Use unsigned chars, like everywhere else. |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28137
diff
changeset
|
4009 |
28133
afb4e92f898d
* Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary variable before
Ken Raeburn <raeburn@raeburn.org>
parents:
28122
diff
changeset
|
4010 2000-03-12 Ken Raeburn <raeburn@gnu.org> |
afb4e92f898d
* Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary variable before
Ken Raeburn <raeburn@raeburn.org>
parents:
28122
diff
changeset
|
4011 |
afb4e92f898d
* Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary variable before
Ken Raeburn <raeburn@raeburn.org>
parents:
28122
diff
changeset
|
4012 * Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary |
afb4e92f898d
* Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary variable before
Ken Raeburn <raeburn@raeburn.org>
parents:
28122
diff
changeset
|
4013 variable before the invocation of YMF_PASS_LDFLAGS, in case both |
afb4e92f898d
* Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary variable before
Ken Raeburn <raeburn@raeburn.org>
parents:
28122
diff
changeset
|
4014 of them try to use backquotes. |
afb4e92f898d
* Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary variable before
Ken Raeburn <raeburn@raeburn.org>
parents:
28122
diff
changeset
|
4015 |
28122 | 4016 2000-03-12 Dave Love <fx@gnu.org> |
4017 | |
4018 * unexelf.c: Restore changes of 1999-10-19. | |
4019 (unexec): Don't adjust bss for sbss type SHT_PROGBITS; otherwise | |
4020 fix its type and alignment; copy it from current process. | |
4021 | |
28098 | 4022 2000-03-12 Gerd Moellmann <gerd@gnu.org> |
4023 | |
28120 | 4024 * atimer.c (cancel_atimer): Break out of the loop as soon as timer |
4025 has been found. Fix bug not computing timer's predecessor. | |
4026 | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
4027 * fileio.c (Fread_file_name): Handle case that DIR contains a |
28118 | 4028 file name. |
4029 | |
28109 | 4030 * window.c (Fsave_window_excursion): Doc fix. |
4031 | |
28098 | 4032 * xfns.c (x_defined_color): Rewritten to use |
4033 x_allocate_nearest_color. | |
4034 | |
28095 | 4035 2000-03-12 Eli Zaretskii <eliz@is.elta.co.il> |
4036 | |
4037 * msdos.c (vga_installed): New function, code moved from | |
4038 dos_set_window_size. | |
4039 (Qbar, Qcursor_type, outside_cursor): New variables. | |
4040 (syms_of_msdos): Intern and staticpro them. | |
4041 (dos_ttraw) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Save the cursor | |
4042 shape used outside Emacs when called for the first time. | |
4043 (dos_ttcooked) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Restore the | |
4044 cursor shape used outside Emacs. | |
4045 (msdos_set_cursor_shape, IT_set_cursor_type): New functions. | |
4046 (IT_frame_up_to_date): Call IT_set_cursor_type, in case the cursor | |
4047 type has changed. | |
4048 (IT_set_frame_parameters): Call IT_set_cursor_type if the frame | |
4049 parameters specify the cursor. Make qreverse a global | |
4050 variable (renamed to Qreverse). | |
4051 | |
28073 | 4052 2000-03-09 Gerd Moellmann <gerd@gnu.org> |
4053 | |
4054 * fns.c (Fy_or_n_p): Cancel busy-cursor. | |
4055 | |
28063
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4056 2000-03-08 Stefan Monnier <monnier@cs.yale.edu> |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4057 |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4058 This is a big redesign of failure-stack and register handling, prompted |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4059 by bugs revealed when trying to add shy-groups. Overall, what happened |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4060 is that loops are now structured a little differently, groups can be |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4061 shy and the code is a little simpler. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4062 |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4063 * regex.h: Update the copyright. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4064 (RE_SHY_GROUPS): New value. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4065 (RE_UNMATCHED_RIGHT_PAREN_ORD): Renumber. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4066 (RE_SYNTAX_EMACS): Add RE_SHY_GROUPS. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4067 |
28073 | 4068 * regex.c (enum re_opcode_t): Remove jump_past_alt, |
4069 maybe_pop_jump, push_dummy_failure and dumy_failure_jump. Add | |
4070 on_failure_jump_(exclusive, loop and smart). Also fix the comment | |
4071 for (start|stop)_memory since they now only take one argument (the | |
4072 second has becomes unnecessary). | |
4073 (print_partial_compiled_pattern): Adjust for changes in | |
4074 re_opcode_t. | |
4075 (print_compiled_pattern): Use %ld to printf long ints and flush to | |
4076 make debugging a little easier. | |
28063
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4077 (union fail_stack_elt): Make the integer unsigned. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4078 (struct fail_stack_type): Add a `frame' element. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4079 (INIT_FAIL_STACK): Init `frame' as well. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4080 (POP_PATTERN_OP): New macro for re_compile_fastmap. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4081 (DEBUG_PUSH, DEBUG_POP): Remove. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4082 (NUM_REG_ITEMS): Remove. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4083 (NUM_NONREG_ITEMS): Adjust. |
28073 | 4084 (FAILURE_PAT, FAILURE_STR, NEXT_FAILURE_HANDLE) |
4085 (TOP_FAILURE_HANDLE): New macros for the cycle detection. | |
28063
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4086 (ENSURE_FAIL_STACK): New macro for PUSH_FAILURE_(REG|POINT). |
28073 | 4087 (PUSH_FAILURE_REG, POP_FAILURE_REG, CHECK_INFINITE_LOOP): New |
4088 macros. | |
4089 (PUSH_FAILURE_POINT): Don't push registers any more. The pattern | |
4090 address pushed is not the destination of the jump but the source | |
4091 of it instead. | |
28063
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4092 (NUM_FAILURE_ITEMS): Remove. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4093 (POP_FAILURE_POINT): Adapt to the new stack structure (i.e. pop |
28073 | 4094 registers before the actual failure point). Don't hardcode any |
4095 meaning for str==NULL anymore. | |
28063
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4096 (union register_info_type, REG_MATCH_NULL_STRING_P, IS_ACTIVE) |
28073 | 4097 (MATCHED_SOMETHING, EVER_MATCHED_SOMETHING, SET_REGS_MATCHED): |
4098 Remove. | |
28063
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4099 (REG_UNSET_VALUE): Use NULL (why not?). |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4100 (compile_range): Remove declaration since it doesn't exist. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4101 (struct compile_stack_elt_t): Remove inner_group_offset. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4102 (old_reg(start|end), reg_info, reg_dummy, reg_info_dummy): Remove. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4103 (regex_grow_registers): Remove dead code. |
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4104 (FIXUP_ALT_JUMP): New macro. |
28073 | 4105 (regex_compile): Add shy-groups Change loops to use |
4106 on_failure_jump_smart&jump instead of | |
4107 on_failure_jump&maybe_pop_jump. Change + loops to eliminate the | |
4108 initial (dummy_failure_)jump. Remove c1_base (looks like unused | |
4109 variable to me). Use `jump' instead of `jump_past_alt' and don't | |
4110 bother with push_dummy_failure in alternatives since it is now | |
4111 unnecessary. Use FIXUP_ALT_JUMP. Eliminate a useless `#ifdef | |
4112 emacs' for (re)allocating the stack. | |
4113 (re_compile_fastmap): Remove dead variables i and num_regs. Exit | |
4114 from loop when bufp->can_be_null rather than jumping to `done'. | |
4115 Avoid jumping backwards so as to ensure termination. Use | |
4116 PATTERN_STACK_EMPTY and POP_PATTERN_OP. Improved handling of | |
4117 backreferences. Remove dead code in handling of `anychar'. | |
28063
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4118 (skip_noops, mutually_exclusive_p): New functions taken from the |
28073 | 4119 handling of `maybe_pop_jump' in re_match_2_internal. Slightly |
4120 improve mutually_exclusive_p to handle ".+\n". | |
4121 (lowest_active_reg, highest_active_reg, | |
4122 NO_(LOWEST|HIGHEST)_ACTIVE_REG) Remove. | |
4123 (re_match_2_internal): Use %p instead of 0x%x when printf'ing | |
4124 ptrs. Don't SET_REGS_MATCHED anymore. Remove many dead | |
4125 variables. Push register (in `start_memory') on the stack rather | |
4126 than storing it in old_reg(start|end). Remove the cycle detection | |
4127 from `stop_memory', replaced by the use of on_failure_jump_loop | |
4128 for greedy loops. Add code for the new on_failure_jump_<foo>. | |
4129 Remove ad-hoc code in `on_failure_jump' to push more registers in | |
4130 the case of a loop. Take out code from `maybe_pop_jump' into | |
4131 separate functions and adapt it to the semantics of | |
4132 `on_failure_jump_smart'. Remove jump_past_alt, dummy_failure_jump | |
4133 and push_dummy_failure. Remove dummy_failure handling and | |
4134 handling of `failures to jump to on_failure_jump' (this last one | |
4135 was already dead code, it seems). | |
4136 (group_match_null_string_p, alt_match_null_string_p) | |
4137 (common_op_match_null_string_p): Remove. | |
28063
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28060
diff
changeset
|
4138 |
28059 | 4139 2000-03-08 Dave Love <fx@gnu.org> |
4140 | |
28060 | 4141 * config.in: Don't depend on __STDC__ for volatile. |
4142 Add POINTER_TYPE, PTR, PROTOTYPES. | |
4143 | |
28059 | 4144 * hftctl.c, strftime.c: Use PROTOTYPES. |
4145 * eval.c (find_handler_clause): Likewise. | |
4146 | |
4147 * mem-limits.h: Use POINTER_TYPE. | |
4148 | |
4149 * lisp.h (P_): Define based on PROTOTYPES, not __STDC__. | |
4150 (memory_warnings): Declare using POINTER_TYPE. | |
4151 | |
28046 | 4152 2000-03-08 Gerd Moellmann <gerd@gnu.org> |
4153 | |
28051 | 4154 * xfns.c (x_set_cursor_type): If ARG is nil, give frame no cursor. |
4155 | |
28048 | 4156 * xdisp.c (display_echo_area): Temporarily inhibit garbage |
4157 collection. | |
4158 | |
28046 | 4159 * xfns.c: Remove obsolete code in #if 0. |
4160 (Fx_focus_frame): New function. | |
4161 | |
28137 | 4162 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp> |
4163 | |
4164 * coding.c (coding_category_name): Add coding-category-utf-8, | |
4165 coding-category-utf-16-be, coding-category-utf-16-le. | |
4166 (UTF_8_1_OCTET_P, UTF_8_EXTRA_OCTET_P, UTF_8_2_OCTET_LEADING_P, | |
4167 UTF_8_3_OCTET_LEADING_P, UTF_8_4_OCTET_LEADING_P, | |
4168 UTF_8_5_OCTET_LEADING_P, UTF_8_6_OCTET_LEADING_P): New macros. | |
4169 (detect_coding_utf_8): New function. | |
4170 (UTF_16_INVALID_P, UTF_16_HIGH_SURROGATE_P | |
4171 UTF_16_LOW_SURROGATE_P): New macros. | |
4172 (detect_coding_utf_16): New function | |
4173 (detect_coding_mask): When priorities are specified, skip any | |
4174 categories that have `nil' coding-system. Fix bug of returning | |
4175 wrong mask when PRIORITIES is specified and detect_coding_XXX() | |
4176 returns a mask not set in PRIORITIES. | |
4177 (detect_eol_type_in_2_octet_form): New function. | |
4178 (detect_eol): selects detect_eol_type_XXX to call according to | |
4179 cooding->category_idx. | |
4180 (detect_coding_system): Remove `nil' coding-system in the result. | |
4181 (Fupdate_coding_systems_internal): Update all coding-categories. | |
4182 | |
4183 * coding.h (CODING_CATEGORY_IDX_UTF_8, | |
4184 CODING_CATEGORY_IDX_UTF_16_BE, CODING_CATEGORY_IDX_UTF_16_LE): New | |
4185 macros. | |
4186 (CODING_CATEGORY_IDX_RAW_TEXT, CODING_CATEGORY_IDX_BINARY, | |
4187 CODING_CATEGORY_IDX_MAX): Adjusted for the above macros. | |
4188 CODING_CATEGORY_IDX_UTF_16_LE. | |
4189 (CODING_CATEGORY_MASK_UTF_8, CODING_CATEGORY_MASK_UTF_16_BE, | |
4190 CODING_CATEGORY_MASK_UTF_16_LE): New macros. | |
4191 (CODING_CATEGORY_MASK_ANY): Include the above macros. | |
4192 (CODING_CATEGORY_MASK_UTF_16_BE_LE): New macro. | |
4193 | |
28026 | 4194 2000-03-07 Gerd Moellmann <gerd@gnu.org> |
4195 | |
28037 | 4196 * doc.c (Fdocumentation_property): If value is not a string, |
4197 and doesn't refer to etc/DOC, evaluate it to obtain a string. | |
4198 | |
28035 | 4199 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Don't try to |
4200 close the display with XtCloseDisplay. This caused a bus error | |
4201 on OpenWindows. | |
4202 | |
28027 | 4203 * minibuf.c (Fminibuffer_complete): Move point to ZV when input is |
4204 complete but not unique. | |
28026 | 4205 |
28011 | 4206 2000-03-06 Gerd Moellmann <gerd@gnu.org> |
4207 | |
28014 | 4208 * process.c (send_process): Remove local variable `procname' that |
4209 might become invalid when a GC happens. Instead, access the | |
4210 process name slot directly. | |
4211 | |
28011 | 4212 * xfns.c (x_set_menu_bar_lines_1): Adjust window's orig_top and |
4213 orig_height if set. | |
4214 | |
4215 * frame.c (set_menu_bar_lines_1): Adjust window's orig_top and | |
4216 orig_height if set. | |
4217 | |
28009 | 4218 2000-03-06 Eli Zaretskii <eliz@is.elta.co.il> |
4219 | |
4220 * msdos.c (IT_note_mouse_highlight): Return immediately if frame's | |
4221 glyph matrices have been freed. | |
4222 | |
27995 | 4223 2000-03-05 Gerd Moellmann <gerd@gnu.org> |
4224 | |
28005 | 4225 * Makefile.in (tags): Include ../lwlib/TAGS in TAGS. |
28007 | 4226 (bootstrap-temacs): Set LC_ALL to C like for temacs. |
28005 | 4227 |
4228 * xfns.c (QCdata): Moved to xdisp.c. | |
4229 | |
4230 * xdisp.c (QCdata): Moved here from xfns.c. | |
4231 (syms_of_xdisp): Initialize QCdata. | |
4232 | |
4233 * frame.h (FRAME_INTERNAL_BORDER_WIDTH) [!HAVE_X_WINDOWS]: Define. | |
4234 | |
4235 * window.c (coordinates_in_window): Use | |
4236 FRAME_INTERNAL_BORDER_WIDTH_SAFE instead of | |
4237 FRAME_INTERNAL_BORDER_WIDTH. | |
4238 | |
27995 | 4239 * xdisp.c (try_window_id): Recompute unchanged information if |
28011 | 4240 it is obviously invalid. |
27995 | 4241 |
4242 * xterm.c (x_term_init): Create a colormap if not using the | |
4243 default visual. | |
4244 | |
4245 * xterm.h (select_visual): Change prototype. | |
4246 | |
4247 * xfns.c (select_visual): Rewritten. Recognize user-specified | |
4248 visual classes. | |
4249 (visual_classes): New variable. | |
4250 | |
27989 | 4251 2000-03-04 Gerd Moellmann <gerd@gnu.org> |
4252 | |
4253 * xfns.c (x_defined_color, x_set_mouse_color, lookup_rgb_color) | |
4254 (lookup_pixel_color, x_laplace, x_build_heuristic_mask) | |
4255 (png_load): Access colormap of frame using FRAME_X_COLORMAP. | |
4256 (x_decode_color): Don't handle allocation of white and black | |
4257 specially. | |
4258 (x_window) [USE_X_TOOLKIT]: Set XtNvisual, XtNdepth, and | |
4259 XtNcolormap resources. | |
4260 (x_window) [!USE_X_TOOLKIT]: Pass colormap to XCreateWindow. | |
4261 (Fx_create_frame): Initialize color members of x_output structure. | |
4262 (xpm_load): Pass colormap to XPM lib. | |
4263 | |
4264 * xfaces.c (x_free_colors): Access colormap of frame using | |
4265 FRAME_X_COLORMAP. Be paranoid about freeing black and white | |
4266 when default colormap is used. | |
4267 | |
4268 * xterm.c (x_term_init): Set Colormap member of x_display_info | |
4269 structure. Copy colormap if resource `privateColormap' is | |
4270 specified (PseudoColor only). | |
4271 (x_setup_relief_color): Access colormap of frame using | |
4272 FRAME_X_COLORMAP. | |
4273 | |
4274 * xterm.h (struct x_display_info): Add Colormap member `cmap'. | |
4275 (FRAME_X_COLORMAP, FRAME_X_VISUAL): New macros. | |
4276 | |
27983 | 4277 2000-03-04 Jason Rumney <jasonr@gnu.org> |
4278 | |
4279 * xfaces.c Change many FRAME_X... macros to FRAME_WINDOW... or | |
4280 other non-platform-specific equivalents. | |
27989 | 4281 [WINDOWSNT]: Include w32term.h, fontset.h and define X |
27983 | 4282 specific functions and macros as their w32 equivalents where |
4283 non-platform-specifics are not available. | |
4284 [HAVE_X_WINDOWS]: Change most of these to HAVE_WINDOW_SYSTEM. | |
4285 (x_create_gc, x_free_gc) [WINDOWSNT]: Add W32 versions. | |
4286 (clear_font_table) [WINDOWSNT]: Call w32_unload_font. | |
4287 (frame_update_line_height): Use macros to access f->output_data. | |
4288 (defined_color): Remove FIXME comments; fixed. | |
4289 (x_face_list_fonts, prepare_face_for_display): Put X specifics | |
4290 into #ifdef blocks. Add WINDOWSNT blocks. | |
4291 (Fx_list_fonts): Use macros for accessing font data. | |
4292 (set_lface_from_font_name): Different default fonts for X and | |
4293 WINDOWSNT. | |
4294 (font_scalable_p) [WINDOWSNT]: Treat wildcard XLFD_AVGWIDTH as | |
4295 scalable for backward compatibility. | |
27989 | 4296 (realize_tty_face) [MSDOS]: Do the same for WINDOWSNT. |
27983 | 4297 (syms_of_xfaces) [WINDOWSNT]: Allow scalable fonts by default. |
4298 | |
27989 | 4299 * emacs.c (main) [HAVE_NTGUI]: Call syms_of_xfaces instead of |
27983 | 4300 syms_of_w32faces. |
4301 | |
4302 * makefile.nt (w32faces.obj): Remove. | |
4303 (xfaces.obj): Add. | |
4304 | |
27978 | 4305 2000-03-03 Jason Rumney <jasonr@gnu.org> |
4306 | |
4307 * keyboard.c (make_lispy_event): Call buffer_posn_from_coords with | |
4308 correct parameters. | |
4309 | |
27977
026eb782382e
* unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
Ken Raeburn <raeburn@raeburn.org>
parents:
27976
diff
changeset
|
4310 2000-03-03 Ken Raeburn <raeburn@gnu.org> |
026eb782382e
* unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
Ken Raeburn <raeburn@raeburn.org>
parents:
27976
diff
changeset
|
4311 |
026eb782382e
* unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
Ken Raeburn <raeburn@raeburn.org>
parents:
27976
diff
changeset
|
4312 * unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide |
026eb782382e
* unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
Ken Raeburn <raeburn@raeburn.org>
parents:
27976
diff
changeset
|
4313 standard ELF definitions here if the system header does not. |
026eb782382e
* unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
Ken Raeburn <raeburn@raeburn.org>
parents:
27976
diff
changeset
|
4314 |
27976 | 4315 2000-03-03 Gerd Moellmann <gerd@gnu.org> |
4316 | |
4317 * xterm.c (PER_CHAR_METRIC): Removed. | |
4318 (x_per_char_metric_1, x_default_char): New functions. | |
4319 (x_per_char_metric): If font's default char is invalid, return | |
4320 metrics of a suitably chosen usable default char. | |
4321 (x_draw_glyph_string_foreground): If font has an invalid default | |
27989 | 4322 char, replace occurrences of unprintable chars with a suitably |
4323 chosen usable default char. | |
27976 | 4324 |
27965 | 4325 2000-03-02 Gerd Moellmann <gerd@gnu.org> |
4326 | |
27969 | 4327 * xterm.c (note_mouse_highlight): Return quickly if frame's |
4328 glyph matrices have been freed. | |
4329 | |
4330 * dispnew.c (free_glyphs): Block input while freeing matrices. | |
4331 | |
27965 | 4332 * xfns.c (x_clear_image, x_kill_gs_process): Use x_free_colors. |
4333 | |
4334 * xterm.c (x_alloc_lighter_color, x_setup_relief_color): Use | |
4335 x_free_colors. | |
4336 | |
4337 * dispextern.h (x_free_colors): Add prototype. | |
4338 | |
4339 * xfaces.c (x_free_colors): New function. | |
4340 (unload_color, free_face_colors): Use it. | |
4341 | |
27958 | 4342 2000-03-02 Eli Zaretskii <eliz@is.elta.co.il> |
4343 | |
4344 * msdos.h (FRAME_INTERNAL_BORDER_WIDTH): Define to zero. | |
4345 | |
4346 * window.c [MSDOS]: Include msdos.h. | |
4347 | |
27954 | 4348 2000-03-02 Dave Love <fx@gnu.org> |
4349 | |
4350 * m/powerpcle.h, m/sparc.h: Don't set C_OPTIMIZE_SWITCH. | |
4351 | |
4352 * m/mips-siemens.h, m/news-r6.h, m/news-risc.h, m/tekxd88.h: Don't | |
4353 set C_OPTIMIZE_SWITCH for gcc. | |
4354 | |
27942 | 4355 2000-03-02 Kenichi Handa <handa@etl.go.jp> |
4356 | |
4357 * coding.c (coding_save_composition): Be sure to allocate | |
4358 composition data area in coding even if there's no composition in | |
4359 the current run. | |
4360 | |
27938 | 4361 2000-03-01 Jason Rumney <jasonr@gnu.org> |
4362 | |
4363 * w32term.c: Equivalent changes to those made to xterm.c on | |
4364 2000-02-25 and 2000-02-24. | |
4365 | |
4366 * w32fns.c: Equivalent changes to those made to xfns.c on | |
4367 2000-02-25 and 2000-02-21. | |
4368 | |
4369 * sysdep.c: [WINDOWSNT]: Use sys_read and sys_write to ensure | |
4370 correct line-end convention is followed. | |
4371 | |
4372 * w32menu.c [HAVE_BOXES]: Remove #undef. | |
4373 (single_keymap_panes): Remove code for simulating checkmarks. | |
4374 (single_menu_item): Remove notbuttons_ptr argument. Callers changed. | |
4375 Remove code for drawing simulated checkmarks. | |
4376 (w32_menu_show): make unibyte help string correctly. | |
4377 (add_menu_item): draw standard Windows checkmarks. Draw radio | |
4378 buttons as radio buttons if possible. | |
4379 | |
27919 | 4380 2000-03-01 Gerd Moellmann <gerd@gnu.org> |
4381 | |
27927 | 4382 * sysdep.c (start_of_text): Don't define this function for NetBSD |
4383 with ELF. | |
4384 | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
4385 * m/pmax.h (START_FILES, CANNOT_DUMP) [__NetBSD__ || __OpenBSD__]: |
27927 | 4386 Don't define. |
4387 (UNEXEC) [__NetBSD__ || __OpenBSD__]: Define to unexelf.o. | |
4388 (LINKER): Don't undef if __NetBSD__ is defined. | |
4389 | |
4390 * m/mips.h (LINKER) [__NetBSD__ || __OpenBSD__]: Don't define. | |
4391 | |
4392 * fileio.c [__NetBSD__]: Define `unix'. | |
4393 | |
27919 | 4394 * xfns.c (start_busy_cursor): Allow floats for busy-cursor-delay. |
4395 | |
27910 | 4396 2000-02-29 Gerd Moellmann <gerd@gnu.org> |
4397 | |
27914 | 4398 * atimer.c (start_atimer): Don't abort when timers are stopped. |
4399 (append_atimer_lists): New function. | |
4400 (cancel_atimer, stop_other_atimers, run_all_atimers): Handle | |
4401 arbitrary lists of stopped and running atimers. | |
4402 | |
27910 | 4403 * atimer.c (cancel_atimer): Handle canceling an atimer when |
4404 some timers are stopped. | |
4405 | |
4406 * xfns.c (cancel_busy_cursor): Set busy_cursor_atimer to null | |
4407 after canceling it. | |
4408 | |
4409 * fns.c (maybe_resize_hash_table): Handle case of new size | |
4410 coming out as being the same as old size. | |
4411 | |
27898 | 4412 2000-02-27 Jason Rumney <jasonr@gnu.org> |
4413 | |
4414 * makefile.nt: Add atimer.h to dependencies. | |
4415 * w32.c (init_environment): Set Vw32_num_mouse_buttons here. | |
4416 * w32console.c: Only disable window system features for dispextern.h | |
4417 (initialize_w32_display): Build a display info for the console. | |
4418 * w32faces.c (tty_defined_color): Apply xfaces.c change from 02-17. | |
4419 * w32fns.c (w32_wnd_proc) [WM_LBUTTON_DOWN, WM_RBUTTON_DOWN, | |
4420 WM_LBUTTON_UP, WM_RBUTTON_UP]: Do not treat 4 or more button mice | |
4421 as 2 button mice. | |
4422 * w32gui.h (struct W32FontStruct): Revert last change after change | |
4423 to xdisp.c. | |
4424 * w32menu.c (single_submenu): Set up help string. | |
4425 [!HAVE_MULTILINGUAL_MENU]: Don't overwrite item_name with descrip. | |
4426 (w32_dialog_show): Set up help string. | |
4427 * w32term.c (w32_display_info_for_display): Remove unused function. | |
4428 (w32_draw_bitmap): Use pre-built bitmaps. | |
4429 (w32_initialize_display_info): New function to initialize parts of | |
4430 display info that are common to both GUI and console frames. | |
4431 (w32_term_init): Use w32_initialize_display_info. Do not set | |
4432 Vw32_num_mouse_buttons here, as it is not called for console | |
4433 frames. Build bitmaps for indicating truncated lines etc. | |
4434 (x_delete_display): Destroy pre-built bitmaps. | |
4435 * xdisp.c (handle_single_display_prop): Use FONT_HEIGHT macro. | |
4436 (echo_area_display): Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM. | |
4437 | |
27886 | 4438 2000-02-27 Dave Love <fx@gnu.org> |
4439 | |
4440 * lisp.h: Add a bunch of prototypes. | |
4441 | |
27878 | 4442 2000-02-26 Kenichi Handa <handa@etl.go.jp> |
4443 | |
27879 | 4444 * keyboard.c (read_char): Set `usec' correctly. |
27878 | 4445 |
27876 | 4446 2000-02-25 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp> |
4447 | |
4448 * ccl.c (ccl_driver) [CCL_MapMultiple]: When the mapped value is | |
4449 `lambda', set reg[RRR] to the map index. | |
4450 (ccl_driver) [CCL_MapSingle]: When the mapped value is found, set | |
4451 reg[RRR] to 0. Otherwise, set it to -1. | |
4452 | |
27875 | 4453 2000-02-25 Gerd Moellmann <gerd@gnu.org> |
4454 | |
27927 | 4455 * emacs.c (main): Remove code snippet commented out with `//'. |
27875 | 4456 |
30337
5861c80aa795
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30329
diff
changeset
|
4457 2000-02-25 Richard M. Stallman <rms@gnu.org> |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
4458 |
27873 | 4459 * fileio.c (Ffile_symlink_p): If result starts with a `/' |
4460 and contains a `:', prepend `/:'. | |
4461 | |
4462 * window.c (select_window_1): If selected_window is nil, | |
4463 don't "swap out" the buffer's point. | |
4464 (Fset_window_configuration): Set selected_window to nil | |
4465 before calling Fselect_window. | |
4466 (unshow_buffer): Don't set point in buffer from window's point | |
4467 if another more recently selected window also shows the buffer. | |
4468 | |
27849 | 4469 2000-02-25 Gerd Moellmann <gerd@gnu.org> |
4470 | |
27868 | 4471 * keyboard.c (recursive_edit_1): Cancel busy-cursor. |
4472 | |
27866 | 4473 * xfns.c (inhibit_busy_cursor, busy_count): Removed. |
4474 (Fx_show_busy_cursor, Fx_hide_busy_cursor): Removed. | |
4475 (busy_cursor_atimer, busy_cursor_shown_p, Vbusy_cursor_delay): New | |
4476 variables. | |
4477 (DEFAULT_BUSY_CURSOR_DELAY): New define. | |
4478 (start_busy_cursor, cancel_busy_cursor, show_busy_cursor) | |
4479 (hide_busy_cursor): New functions. | |
4480 (syms_of_xfns): DEFVAR_LISP Vbusy_cursor_delay. | |
4481 | |
4482 * minibuf.c (read_minibuf): Cancel busy-cursor. | |
4483 | |
4484 * keyboard.c (command_loop_1): Call start_busy_cursor before | |
4485 Fcommand_execute and cancel_busy_cursor after it. | |
4486 (timer_check): Remove busy-cursor code. | |
4487 (Fread_key_sequence, Fread_key_sequence_vector): Start/cancel busy | |
4488 cursor timer. | |
4489 | |
4490 * process.c (wait_reading_process_input): Remove busy-cursor code. | |
4491 | |
4492 * eval.c (Fsignal): Call cancel_busy_cursor instead of | |
4493 Fx_hide_busy_cursor. | |
4494 | |
4495 * dispextern.h (Fx_show_busy_cursor, Fx_hide_busy_cursor): | |
4496 Remove prototyoes. | |
4497 (start_busy_cursor, cancel_busy_cursor): Add prototypes. | |
4498 | |
4499 * lisp.h (Fx_hide_busy_cursor): Remove prototype. | |
4500 | |
4501 * xterm.c (XTread_socket): Remove busy-cursor code. | |
4502 | |
27856 | 4503 * dispnew.c (flush_stdout) [GLYPH_DEBUG]: New function. |
4504 (build_frame_matrix_from_leaf_window): Put code handling | |
4505 glyph row's not being a slice of a frame row in #if 0. | |
4506 (sync_window_with_frame_matrix_rows): New function. | |
4507 (frame_row_to_window): New function. | |
4508 (mirror_line_dance): Handle copies between windows. | |
4509 | |
27853 | 4510 * lread.c (Fload): Use `xfree' instead of `free'. |
4511 (init_obarray): Use `xmalloc' instead of `malloc'. | |
4512 | |
27849 | 4513 * window.c (Fset_window_buffer): Set WINDOW to the window |
4514 after decoding. | |
27851 | 4515 (coordinates_in_window): Take frame's internal border width |
4516 into account. | |
27849 | 4517 |
27847 | 4518 2000-02-24 Gerd Moellmann <gerd@gnu.org> |
4519 | |
4520 * xterm.c (x_display_and_set_cursor): Display cursor of | |
4521 non-selected windows depending on the setting of | |
4522 cursor_in_non_selected_windows. | |
4523 | |
4524 * xdisp.c (cursor_in_non_selected_windows): New variable. | |
4525 (syms_of_xdisp): DEFVAR_BOOL it. | |
4526 | |
27820 | 4527 2000-02-23 Gerd Moellmann <gerd@gnu.org> |
4528 | |
27827 | 4529 * data.c (Fstring_to_number): If number is greater than what |
4530 fits into an integer, return a float. | |
4531 | |
27820 | 4532 * eval.c (specbind): Remove references to |
4533 keyword_symbols_constant_flag. | |
4534 | |
4535 * data.c (keyword_symbols_constant_flag): Removed. | |
4536 (Fmakunbound, set_internal, syms_of_data): Remove references to | |
4537 keyword_symbols_constant_flag. | |
4538 | |
4539 * bytecode.c (Fbyte_code): Remove keyword_symbols_constant_flag. | |
4540 | |
27813 | 4541 2000-02-23 Kenichi Handa <handa@etl.go.jp> |
4542 | |
4543 * syntax.c (multibyte_syntax_as_symbol): New variable. | |
4544 (syms_of_syntax): Declare it as a Lisp variable. | |
4545 (SYNTAX_WITH_MULTIBYTE_CHECK): New macro. | |
4546 (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are | |
4547 nonzero, treat all multibyte characters as symbol. | |
27847 | 4548 (init_syntax_once): Give syntax `word' to all multibyte |
27813 | 4549 characters. |
4550 | |
27801 | 4551 2000-02-22 Eli Zaretskii <eliz@is.elta.co.il> |
4552 | |
27853 | 4553 * frame.c (Fdelete_frame): Don't let echo_area_window remain on |
30196
52c1b7a2e7a5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30183
diff
changeset
|
4554 a deleted frame. |
27801 | 4555 |
27799 | 4556 2000-02-21 Gerd Moellmann <gerd@gnu.org> |
4557 | |
4558 * frame.c (Fmouse_position): GCPRO retval instead of x and y. | |
4559 | |
4560 * xfns.c (x_window_to_frame, x_any_window_to_frame) | |
4561 (x_non_menubar_window_to_frame): Check the busy-cursor window. | |
4562 | |
27796 | 4563 2000-02-21 Dave Love <fx@gnu.org> |
4564 | |
4565 * frame.c (Vmouse_position_function): New variable. | |
4566 (Fmouse_position): Use it. | |
4567 (syms_of_frame): Install it. | |
4568 | |
4569 * charset.c (find_charset_in_str): Fix use of `c' instead of `c1'. | |
4570 | |
27790 | 4571 2000-02-20 Gerd Moellmann <gerd@gnu.org> |
4572 | |
4573 * fileio.c (Finsert_file_contents): Unbind the binding of | |
4574 standard-output done by temp_output_buffer_setup. | |
27785 | 4575 |
4576 * eval.c (funcall_lambda): Don't bind Qmocklisp_arguments unless | |
4577 Vmocklisp_arguments is nil. Inline Fcar and Fcdr. | |
4578 (specbind, unbind_to): Handle most common case of non-constant | |
4579 symbol with trivial value specially. | |
4580 | |
4581 * bytecode.c (Fbyte_code) <Bvarset>: Inline most common case. | |
4582 | |
30337
5861c80aa795
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30329
diff
changeset
|
4583 2000-02-20 Richard M. Stallman <rms@gnu.org> |
27780
72cae205b4f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27776
diff
changeset
|
4584 |
72cae205b4f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27776
diff
changeset
|
4585 * data.c (Fmake_variable_buffer_local): Doc fix. |
72cae205b4f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27776
diff
changeset
|
4586 Init found_for_buffer to 0. |
72cae205b4f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27776
diff
changeset
|
4587 (Fmake_variable_frame_local): If the variable has already |
72cae205b4f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27776
diff
changeset
|
4588 been buffer-local, set the check_frame field. |
72cae205b4f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27776
diff
changeset
|
4589 |
27776 | 4590 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il> |
4591 | |
4592 * msdos.c (IT_write_glyphs): Allocate a larger screen_buf as data | |
4593 produced for CODING_MODE_LAST_BLOCK requires. | |
4594 | |
27767 | 4595 2000-02-18 Dave Love <fx@gnu.org> |
4596 | |
4597 * keyboard.c (echo_keystrokes): Remove declaration. | |
4598 (Vecho_keystrokes) New variable. | |
4599 (read_char, record_menu_key, read_key_sequence): Use it to allow | |
4600 use of float value. | |
4601 (syms_of_keyboard): Change Vecho_keystrokes declaration. | |
4602 | |
4603 * lread.c: Undef feature selection macros before defining. | |
4604 | |
27759 | 4605 2000-02-18 Gerd Moellmann <gerd@gnu.org> |
4606 | |
4607 * data.c (let_shadows_buffer_binding_p): Ignore specbindings | |
4608 for symbols other than the symbol in question. | |
4609 | |
27751 | 4610 2000-02-17 Dave Love <fx@gnu.org> |
4611 | |
4612 * s/sol2.h (C_DEBUG_SWITCH): Define to allow optimization. | |
4613 | |
27747 | 4614 2000-02-17 Gerd Moellmann <gerd@gnu.org> |
4615 | |
27749 | 4616 * emacs.c (main): Use #if GC_MARK_STACK instead of #ifdef. |
4617 | |
27747 | 4618 * alloc.c (enum mem_type): Compile unconditionally. |
4619 | |
27744 | 4620 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il> |
4621 | |
4622 * xfaces.c (tty_defined_color): Don't return faulire indication | |
4623 for unspecified-fg and unspecified-bg pseudo-colors. | |
4624 | |
27726 | 4625 2000-02-17 Gerd Moellmann <gerd@gnu.org> |
4626 | |
27742 | 4627 * alloc.c (mark_object): Don't mark symbol names in pure space. |
4628 (gc_sweep): Don't unmark symbol names in pure space. | |
4629 | |
4630 * lisp.h (GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS) | |
4631 (GC_MARK_STACK_CHECK_GCPROS, GC_USE_GCPROS_CHECK_ZOMBIES) | |
4632 [GC_MARK_STACK]: New defines. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
4633 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, UNGCPRO) |
27742 | 4634 [GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS]: Define as no-ops. |
4635 | |
4636 * emacs.c (main) [GC_MARK_STACK]: Initialize stack_base. | |
4637 | |
4638 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use | |
4639 allocate_buffer instead of xmalloc. | |
4640 | |
4641 * alloc.c (toplevel): Include setjmp.h. | |
4642 (PURE_POINTER_P): New define. | |
4643 (enum mem_type) [GC_MARK_STACK]: New enumeration. | |
4644 (Vdead) [GC_MARK_STACK]: New variable. | |
4645 (lisp_malloc): Add parameter TYPE, call mem_insert if | |
4646 GC_MARK_STACK is defined. | |
4647 (allocate_buffer): New function. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
4648 (lisp_free) [GC_MARK_STACK]: Call mem_delete. |
27742 | 4649 (free_float) [GC_MARK_STACK]: Set type to Vdead. |
4650 (free_cons) [GC_MARK_STACK]: Set car to Vdead. | |
4651 (stack_base, mem_root, mem_z) [GC_MARK_STACK]: New variables. | |
4652 (MEM_NIL) [GC_MARK_STACK]: New define. | |
4653 (struct mem_node) [GC_MARK_STACK]: New structure. | |
4654 (mem_init, mem_find, mem_insert, mem_delete, mem_insert_fixup) | |
4655 (mem_delete_fixup, mem_rotate_left, mem_rotate_right) | |
4656 (live_string_p, live_cons_p, live_symbol_p, live_float_p) | |
4657 (live_misc_p, live_vector_p, live_buffer_p, mark_memory) | |
4658 (mark_stack) [GC_MARK_STACK]: New functions. | |
4659 (Fgarbage_collect) [GC_MARK_STACK]: Call mark_stack. | |
4660 (clear_marks): Removed. | |
4661 (gc_sweep): Set free conses' car, free floats' type, free | |
4662 symbols' function to Vdead. Use lisp_free to free buffers. | |
4663 (init_alloc_once): Initialize Vdead. | |
4664 (survives_gc_p): Return non-zero for pure objects. | |
4665 | |
4666 * alloc.c: Add comments throughout the file. | |
4667 | |
27735 | 4668 * atimer.c (stop_other_atimers): Don't call cancel_atimer because |
4669 that unblocks alarms. | |
4670 | |
27729 | 4671 * alloc.c, bytecode.c, data.c, dispnew.c, ecrt0.c, editfns.c, |
4672 emacs.c, floatfns.c, fns.c, lread.c, print.c, config.in, lisp.h, | |
4673 Makefile.in: Remove `LISP_FLOAT_TYPE' and `standalone'. | |
4674 | |
27726 | 4675 * frame.c (make_frame): Set frame initiallly to `garbaged'. |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
4676 |
27720 | 4677 2000-02-17 Kenichi Handa <handa@etl.go.jp> |
4678 | |
27722 | 4679 * xdisp.c (decode_mode_spec_coding): Delete superfluous code to |
27723 | 4680 avoid infinite error signaling. Allocate sufficient memory for |
27722 | 4681 eol_str in the case that eoltype is Lisp_Int. |
27720 | 4682 |
27719
73926d5a4d9f
(Fforward_comment): Undo the previous change, since cc-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27710
diff
changeset
|
4683 2000-02-17 Stefan Monnier <monnier@cs.yale.edu> |
73926d5a4d9f
(Fforward_comment): Undo the previous change, since cc-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27710
diff
changeset
|
4684 |
73926d5a4d9f
(Fforward_comment): Undo the previous change, since cc-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27710
diff
changeset
|
4685 * syntax.c (Fforward_comment): Undo the previous change, since cc-mode |
73926d5a4d9f
(Fforward_comment): Undo the previous change, since cc-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27710
diff
changeset
|
4686 depends on the previous behavior. |
73926d5a4d9f
(Fforward_comment): Undo the previous change, since cc-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27710
diff
changeset
|
4687 |
27710 | 4688 2000-02-16 Gerd Moellmann <gerd@gnu.org> |
4689 | |
4690 * sysdep.c (vfork) [!HAVE_VFORK]: Removed. | |
4691 | |
27707 | 4692 2000-02-15 Gerd Moellmann <gerd@gnu.org> |
4693 | |
4694 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN): Define. | |
4695 | |
4696 * process.c (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]: | |
27710 | 4697 Workaround for FreeBSD bug. Clear output queue after EAGAIN in |
27707 | 4698 write(2). |
4699 | |
27702
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
4700 2000-02-15 Richard M. Stallman <rms@gnu.org> |
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
4701 |
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
4702 * data.c (set_internal): Don't make variable buffer-local |
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
4703 if within a let-binding for the same buffer. |
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
4704 (let_shadows_buffer_binding_p): New function. |
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
4705 |
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
4706 * eval.c (specbind): For buffer-local value, |
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
4707 record the current buffer also. |
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
4708 (unbind_to): Cope with that change. |
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
4709 |
27700 | 4710 2000-02-15 Gerd Moellmann <gerd@gnu.org> |
4711 | |
4712 * window.c (Fsave_window_excursion): Doc fix. | |
4713 | |
27698
9c61956399b2
(back_comment): Make sure we only consider comment-starters
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27697
diff
changeset
|
4714 2000-02-15 Stefan Monnier <monnier@cs.yale.edu> |
9c61956399b2
(back_comment): Make sure we only consider comment-starters
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27697
diff
changeset
|
4715 |
9c61956399b2
(back_comment): Make sure we only consider comment-starters
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27697
diff
changeset
|
4716 * syntax.c (back_comment): Make sure we only consider comment-starters |
9c61956399b2
(back_comment): Make sure we only consider comment-starters
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27697
diff
changeset
|
4717 of the relevant style and return -1 in case of a failure to find the |
9c61956399b2
(back_comment): Make sure we only consider comment-starters
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27697
diff
changeset
|
4718 beginning of the comment. |
9c61956399b2
(back_comment): Make sure we only consider comment-starters
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27697
diff
changeset
|
4719 (Fforward_comment): If back_comment fails, go back to the position just |
9c61956399b2
(back_comment): Make sure we only consider comment-starters
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27697
diff
changeset
|
4720 after the comment-end. |
9c61956399b2
(back_comment): Make sure we only consider comment-starters
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27697
diff
changeset
|
4721 (scan_lists): Add comment describing a very minor bug. |
9c61956399b2
(back_comment): Make sure we only consider comment-starters
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27697
diff
changeset
|
4722 |
27697
409a708c27b3
(Ftry_completion, Fall_completions): Add a reference to
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27696
diff
changeset
|
4723 2000-02-14 Stefan Monnier <monnier@cs.yale.edu> |
409a708c27b3
(Ftry_completion, Fall_completions): Add a reference to
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27696
diff
changeset
|
4724 |
409a708c27b3
(Ftry_completion, Fall_completions): Add a reference to
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27696
diff
changeset
|
4725 * minibuf.c (Ftry_completion, Fall_completions): Add a reference to |
409a708c27b3
(Ftry_completion, Fall_completions): Add a reference to
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27696
diff
changeset
|
4726 `completion-regexp-list' in the docstring. |
409a708c27b3
(Ftry_completion, Fall_completions): Add a reference to
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27696
diff
changeset
|
4727 |
27696 | 4728 2000-02-14 Dave Love <fx@gnu.org> |
4729 | |
4730 * xfaces.c (tty_defined_color): Declare color_idx unsigned long. | |
4731 | |
27692
bb0e45f6ca86
* regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27689
diff
changeset
|
4732 2000-02-14 Stefan Monnier <monnier@cs.yale.edu> |
bb0e45f6ca86
* regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27689
diff
changeset
|
4733 |
bb0e45f6ca86
* regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27689
diff
changeset
|
4734 * regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS |
bb0e45f6ca86
* regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27689
diff
changeset
|
4735 to Emacs' syntax. Also fix the comment about set/not-set meanings |
bb0e45f6ca86
* regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27689
diff
changeset
|
4736 since Emacs syntax is not the value 0 any more. |
bb0e45f6ca86
* regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27689
diff
changeset
|
4737 * search.c (compile_pattern_1): Remove RE_CHAR_CLASSES from the syntax |
bb0e45f6ca86
* regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27689
diff
changeset
|
4738 since it's now part of RE_SYNTAX_EMACS. |
bb0e45f6ca86
* regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27689
diff
changeset
|
4739 |
27689 | 4740 2000-02-12 Dave Love <fx@gnu.org> |
4741 | |
4742 * frame.h (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on | |
4743 Alpha. | |
4744 | |
27687 | 4745 2000-02-12 Gerd Moellmann <gerd@gnu.org> |
4746 | |
4747 * xdisp.c (syms_of_xdisp): Doc fix for scroll-conservatively. | |
4748 | |
27680 | 4749 2000-02-12 Dave Love <fx@gnu.org> |
4750 | |
4751 * s/aix3-2.h, s/osf-1.h: Define C_DEBUG_SWITCH for non-gcc. | |
4752 | |
4753 * s/ux4800.h, s/umips.h, s/umax.h, s/sol2.h, s/sco5.h, s/rtu.h: | |
27687 | 4754 * s/ptx4.h, s/umax.h, s/dgux.h, s/bsd4-2.h, s/bsd4-3.h: |
4755 * s/hpux.h: Don't define HAVE_VFORK. | |
27680 | 4756 |
4757 * s/gnu-linux.h: Don't define HAVE_VFORK or HAVE_SYS_SIGLIST. | |
4758 | |
4759 * s/nextstep.h: Don't define HAVE_ALLOCA. | |
4760 | |
4761 * config.in: Add vfork bits. | |
4762 | |
27672 | 4763 2000-02-12 Gerd Moellmann <gerd@gnu.org> |
4764 | |
4765 * process.c (Fopen_network_stream) [POLL_FOR_INPUT]: Register | |
4766 unwind function to undo the effect of stopping atimers. | |
4767 | |
4768 * keyboard.c (bind_polling_period): Stop all timers except | |
4769 poll_timer. | |
4770 | |
4771 * atimer.c (stopped_atimers): New variable. | |
4772 (stop_other_atimers, run_all_atimers, unwind_stop_other_atimers): | |
4773 New functions. | |
4774 | |
4775 * atimer.h (stop_other_atimers, run_all_atimers) | |
4776 (unwind_stop_other_atimers): Add function prototypes. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
4777 |
27672 | 4778 * s/hpux10.h (HAVE_XRMSETDATABASE): Define if not already defined. |
4779 | |
27665
105b01b90125
* Makefile.in (LIBX): Link in tiff library before jpeg, since tiff library may
Ken Raeburn <raeburn@raeburn.org>
parents:
27663
diff
changeset
|
4780 2000-02-11 Ken Raeburn <raeburn@gnu.org> |
105b01b90125
* Makefile.in (LIBX): Link in tiff library before jpeg, since tiff library may
Ken Raeburn <raeburn@raeburn.org>
parents:
27663
diff
changeset
|
4781 |
105b01b90125
* Makefile.in (LIBX): Link in tiff library before jpeg, since tiff library may
Ken Raeburn <raeburn@raeburn.org>
parents:
27663
diff
changeset
|
4782 * Makefile.in (LIBX): Link in tiff library before jpeg, since tiff |
105b01b90125
* Makefile.in (LIBX): Link in tiff library before jpeg, since tiff library may
Ken Raeburn <raeburn@raeburn.org>
parents:
27663
diff
changeset
|
4783 library may depend on jpeg. |
105b01b90125
* Makefile.in (LIBX): Link in tiff library before jpeg, since tiff library may
Ken Raeburn <raeburn@raeburn.org>
parents:
27663
diff
changeset
|
4784 (atimer.o): Depends on atimer.c. |
105b01b90125
* Makefile.in (LIBX): Link in tiff library before jpeg, since tiff library may
Ken Raeburn <raeburn@raeburn.org>
parents:
27663
diff
changeset
|
4785 |
27663 | 4786 2000-02-11 Kenichi Handa <handa@etl.go.jp> |
4787 | |
4788 * insdel.c (del_range_1): Call update_compositions. | |
4789 (del_range_both): Call update_compositions just once.. | |
4790 | |
27660 | 4791 2000-02-10 Dave Love <fx@gnu.org> |
4792 | |
4793 * xfns.c (create_frame_xic): Fix initialization of automatic | |
4794 aggregates for pcc. | |
4795 | |
27648 | 4796 2000-02-09 Kenichi Handa <handa@etl.go.jp> |
4797 | |
4798 * ccl.c (CCL_MAKE_CHAR): New macro. | |
4799 (ccl_driver) <CCL_TranslateCharacter>: Check the validity of | |
4800 registers by CCL_MAKE_CHAR before calling translate_char. | |
4801 <CCL_TranslateCharacterConstTbl> Likewise. | |
4802 | |
27646 | 4803 2000-02-08 Dave Love <fx@gnu.org> |
4804 | |
4805 * lread.c (__EXTENSIONS__): Define. | |
4806 | |
27644 | 4807 2000-02-08 Gerd Moellmann <gerd@gnu.org> |
4808 | |
4809 * puresize.h (BASE_PURESIZE): Increase to 650000. | |
4810 | |
27641 | 4811 2000-02-07 Eli Zaretskii <eliz@is.elta.co.il> |
4812 | |
4813 * msdos.c (XMenuActivate): Turn off the cursor after displaying | |
4814 the help message. | |
4815 | |
27639 | 4816 2000-02-07 Eli Zaretskii <eliz@is.elta.co.il> |
4817 | |
4818 * s/msdos.h (INTERNAL_TERMINAL): Add capabilities se, so, us, ue, | |
4819 md, mh, mb, mr, and me to the fake termcap entry. | |
4820 | |
27635
8344762c0da2
* sound.c (sound_cleanup): Don't call device close routine if pointer is null.
Ken Raeburn <raeburn@raeburn.org>
parents:
27634
diff
changeset
|
4821 2000-02-06 Ken Raeburn <raeburn@gnu.org> |
8344762c0da2
* sound.c (sound_cleanup): Don't call device close routine if pointer is null.
Ken Raeburn <raeburn@raeburn.org>
parents:
27634
diff
changeset
|
4822 |
8344762c0da2
* sound.c (sound_cleanup): Don't call device close routine if pointer is null.
Ken Raeburn <raeburn@raeburn.org>
parents:
27634
diff
changeset
|
4823 * sound.c (sound_cleanup): Don't call device close routine if the |
8344762c0da2
* sound.c (sound_cleanup): Don't call device close routine if pointer is null.
Ken Raeburn <raeburn@raeburn.org>
parents:
27634
diff
changeset
|
4824 function pointer is null. |
8344762c0da2
* sound.c (sound_cleanup): Don't call device close routine if pointer is null.
Ken Raeburn <raeburn@raeburn.org>
parents:
27634
diff
changeset
|
4825 |
27634
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4826 2000-02-06 Andrew Innes <andrewi@gnu.org> |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4827 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4828 * dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM, |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4829 around image definitions and prototypes. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4830 (gamma_correct) [WINDOWSNT]: New prototype. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4831 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4832 * w32term.c (x_make_frame_visible): Replace call to |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4833 input_poll_signal with poll_for_input. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4834 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4835 * window.c [WINDOWSNT]: Include w32term.h. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4836 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4837 * xdisp.c [WINDOWSNT]: Include w32term.h. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4838 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4839 * makefile.nt: Add dependencies on w32gui.h. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4840 (OBJ1): Include atimer.obj. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4841 ($(BLD)\atimer.obj): New dependency rule. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4842 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4843 * w32.c (sigmask): New function (does nothing). |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4844 (sigunblock): Ditto. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4845 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4846 * frame.c [WINDOWSNT]: Include w32term.h. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4847 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4848 * w32gui.h (struct W32FontStruct): Add ascent and descent slots. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4849 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4850 * lread.c (syms_of_lread): Fix literal newlines. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4851 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4852 * emacs.c (USAGE): Split into USAGE1 and USAGE2, to work-around |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4853 the string constant limit (2048 bytes) in MSVC. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4854 (main): Ditto. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27620
diff
changeset
|
4855 |
27620 | 4856 2000-02-05 INOUE Seiichiro <inoue@ainet.or.jp> |
4857 | |
4858 * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit | |
4859 area. | |
4860 (x_display_cursor) [HAVE_X_I18N]: Don't set it here. | |
4861 (XTread_socket) [HAVE_X_I18N]: <KeyPress, KeyRelease>: Don't | |
4862 dispatch the event. | |
4863 | |
27614 | 4864 2000-02-04 Dave Love <fx@gnu.org> |
4865 | |
4866 * fileio.c: Remove some unused vars. | |
4867 (_GNU_SOURCE): Define (for euidaccess). | |
4868 | |
4869 * lread.c (_XOPEN_SOURCE): Declare (for ftello). | |
4870 | |
4871 * minibuf.c (read_minibuf_noninteractive): Remove undeclared | |
4872 gcpro1, gcpro2. | |
4873 (read_minibuf): Deal with allow_props correctly. | |
4874 | |
27594 | 4875 2000-02-03 Eli Zaretskii <eliz@is.elta.co.il> |
4876 | |
4877 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Enlarge to 60000. | |
4878 | |
27635
8344762c0da2
* sound.c (sound_cleanup): Don't call device close routine if pointer is null.
Ken Raeburn <raeburn@raeburn.org>
parents:
27634
diff
changeset
|
4879 2000-02-03 Ken Raeburn <raeburn@gnu.org> |
27592
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
27591
diff
changeset
|
4880 |
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
27591
diff
changeset
|
4881 * search.c (compile_pattern): If a cache entry has a nil regexp, |
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
27591
diff
changeset
|
4882 fill in that entry instead of clobbering a previously cached |
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
27591
diff
changeset
|
4883 string regexp. |
5cd59d1800ad
* search.c (compile_pattern): If a cache entry has a nil regexp, fill in that
Ken Raeburn <raeburn@raeburn.org>
parents:
27591
diff
changeset
|
4884 |
27635
8344762c0da2
* sound.c (sound_cleanup): Don't call device close routine if pointer is null.
Ken Raeburn <raeburn@raeburn.org>
parents:
27634
diff
changeset
|
4885 2000-02-02 Ken Raeburn <raeburn@gnu.org> |
27591
459744c91b53
* puresize.h (BASE_PURESIZE): Increase to 610000.
Ken Raeburn <raeburn@raeburn.org>
parents:
27587
diff
changeset
|
4886 |
459744c91b53
* puresize.h (BASE_PURESIZE): Increase to 610000.
Ken Raeburn <raeburn@raeburn.org>
parents:
27587
diff
changeset
|
4887 * puresize.h (BASE_PURESIZE): Increase to 610000. |
459744c91b53
* puresize.h (BASE_PURESIZE): Increase to 610000.
Ken Raeburn <raeburn@raeburn.org>
parents:
27587
diff
changeset
|
4888 |
27587 | 4889 2000-02-02 Gerd Moellmann <gerd@gnu.org> |
4890 | |
4891 * frame.c (Fframe_parameters): Add GCPRO because tty_color_name | |
4892 can GC. | |
4893 | |
27565 | 4894 2000-02-02 Kenichi Handa <handa@etl.go.jp> |
4895 | |
27567 | 4896 * ccl.c (ccl_driver) <CCL_WriteExprRegister>: Set jump_address |
4897 instead of incrementing ic directly. | |
4898 <CCL_WriteExprConst> Likewise. | |
4899 <ccl_set_expr>: Set ic to jump_address. | |
4900 | |
27565 | 4901 * fileio.c (e_write): Fix the handling of |
4902 CODING_FINISH_INSUFFICIENT_SRC. | |
4903 | |
27561 | 4904 2000-02-01 Dave Love <fx@gnu.org> |
4905 | |
4906 * editfns.c (Fpropertize): Doc fix. | |
4907 | |
4908 * process.c (Fstart_process): Doc fix. | |
4909 | |
4910 * eval.c: Fix various doc strings not to duplicate information | |
4911 from help-manyarg-func-alist. | |
4912 | |
4913 * window.c (Fset_window_margins): Don't make interactive. Doc | |
4914 fix. | |
4915 | |
4916 * doc.c (Vhelp_manyarg_func_alist): New variable. | |
4917 (Fdocumentation): Use it. | |
4918 (syms_of_doc): Define it. | |
4919 | |
27531 | 4920 2000-01-31 Gerd Moellmann <gerd@gnu.org> |
4921 | |
27545 | 4922 * xterm.c (xim_open_dpy): Remove unused local variable. |
4923 | |
27541 | 4924 * emacs.c (USAGE): Use term `display options' instead of `X |
4925 options'. | |
4926 | |
4927 * xdisp.c (Ftrace_to_stderr) [GLYPH_DEBUG]: New function. | |
4928 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it. | |
4929 | |
27531 | 4930 * fns.c (sweep_weak_table): New function. |
4931 (sweep_weak_hash_tables): Use it. Keep on marking until there | |
4932 is no more change. | |
4933 | |
27527 | 4934 2000-01-30 Gerd Moellmann <gerd@gnu.org> |
4935 | |
4936 * xterm.c (x_delete_display): Update next_noop_dpyinfo to ensure | |
4937 that XTread_socket does not crash by trying to call XNoOp on a | |
4938 closed display. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
4939 |
27523 | 4940 2000-01-30 Jason Rumney <jasonr@gnu.org> |
4941 | |
4942 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to): | |
4943 Change selected_frame to SELECTED_FRAME (). | |
4944 (w32_console_mouse_position): Remove #ifndef MULE from around | |
4945 `insist' parameter. | |
4946 | |
4947 * makefile.nt: Remove dosfns.obj. | |
4948 | |
4949 * term.c (term_init) [WINDOWSNT]: Initialize TN_max_colors. | |
4950 | |
4951 * w32fns.c (w32_defined_color): Check for valid frame before | |
4952 applying gamma correction. Eliminate dependency on frame elsewhere. | |
4953 (w32_load_system_font): Switch FIXED_PITCH and VARIABLE_PITCH. | |
4954 (w32_to_x_font): Use resx and resy not height_in and width_in. | |
4955 (x_to_w32_font): Doc fix. | |
4956 (xlfd_strip_height): New function to strip and return font height. | |
4957 (w32_font_match): Compare height separately from rest of xlfd | |
4958 spec, using xlfd_strip_height. | |
4959 | |
4960 * w32term.c (w32_term_init): Swap resx and height_in, resy and | |
4961 width_in. Use w32_defined_color in place of defined_color. | |
4962 | |
4963 * w32faces.c: Merge more of DOS and X specifics in preparation for | |
4964 merge with xfaces.c. | |
4965 (defined_color): Remove FIXME comment. | |
4966 (tty_color_name): Provide w32-specific function. | |
4967 (realize_tty_face): Handle FACE_TTY_DEFAULT*_COLOR specially. | |
4968 | |
4969 * w32console.c (turn_on_face, turn_off_face): Removed. | |
4970 (w32_face_attributes): New function. | |
4971 (Global_variables): Reduce scope where possible. | |
4972 (clear_frame, ins_del_lines, scroll_line): Use char_attr_normal as | |
4973 fill attribute. | |
4974 (hl_mode): Don't modify text attributes. | |
4975 (write_glyphs): Don't do anything if len <= 0. Use | |
4976 w32_face_attributes to get attributes for drawing. Write | |
4977 terminating codes using char_attr_normal. | |
4978 (reset_terminal_modes, set_terminal_modes): Turn off highlight. | |
4979 (update_begin, update_end): Likewise. | |
4980 (vga_stdcolor_name): New function. | |
4981 (initialize_w32_display): Remove char_attr_reverse and char_attr. | |
4982 (Fset_screen_color): Remove char_attr_reverse. | |
4983 | |
27506 | 4984 2000-01-29 Gerd Moellmann <gerd@gnu.org> |
4985 | |
4986 * xfns.c (xic_set_preeditarea): Take window parameter and | |
4987 window-relative pixel-positions. | |
4988 | |
4989 * xterm.c (x_display_cursor): Set XIC pre-edit area only if window | |
4990 is its frame's selected window. | |
4991 (xim_instantiate_callback): Likewise. | |
4992 | |
4993 * xfns.c (x_create_im): Removed. | |
4994 (DEFAULT_STYLE, DEFAULT_FONT): Removed. | |
4995 (supported_xim_styles): Renamed from supported_styles. | |
4996 (best_xim_style): Renamed from best_style. | |
4997 (create_frame_xic): Renamed from xic_create_frame. | |
4998 (free_frame_xic): Renamed from xic_destroy_frame. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
4999 |
27506 | 5000 2000-01-29 INOUE Seiichiro <inoue@ainet.or.jp> |
5001 | |
5002 * xterm.c (XTread_socket) [HAVE_X_I18N]: If event is for none of | |
5003 our frames, call XFilterEvent with 2nd parameter `None'. | |
5004 (XTread_socket) <KeyPress> [HAVE_X_I18N]: Handle XmbLookupString | |
5005 returning XBufferOverflow. | |
5006 (XTread_socket) <ConfigureNotify> [HAVE_X_I18N]: Set XIC status | |
5007 area. | |
5008 (x_display_cursor) [HAVE_X_I18N]: Set XIC pre-edit area. | |
5009 (x_new_fontset) [HAVE_X_I18N]: Create XIC status area fontset. | |
5010 (xim_destroy_callback, xim_open_dpy, xim_instantiate_callback) | |
5011 (xim_initialize, xim_close) | |
5012 [HAVE_X_I18N && HAVE_X11R6]: New functions. | |
5013 (x_destroy_window) [HAVE_X_I18N]: Call xic_destroy_frame. | |
5014 (x_term_init) [HAVE_X_I18N]: Call xim_initialize. | |
5015 (x_delete_display) [HAVE_X_I18N]: Call xim_close. | |
5016 | |
5017 * xterm.h (struct x_display_info) [HAVE_X_I18N]: Add members `xim' | |
5018 and `xim_styles'. | |
5019 (struct x_output) [HAVE_X_I18N]: Remove member `xim', add | |
5020 `xic_style' and `xic_xfs'. | |
5021 (FRAME_MENUBAR_HEIGHT, FRAME_X_XIM, FRAME_X_XIM_STYLES) | |
5022 (FRAME_XIC_STYLE, FRAME_XIC_FONTSET): New macros. | |
5023 (FRAME_XIM): Removed. | |
5024 | |
5025 * xfns.c (supported_styles): New variable. | |
5026 (DEFAULT_STYLE, DEFAULT_FONT): New macros | |
5027 (xic_create_xfontset, best_style, xic_create_frame) | |
5028 (xic_destroy_frame, xic_set_preeditarea, xic_set_statusarea) | |
5029 (xic_set_xfontset): New functions. | |
5030 | |
27491 | 5031 2000-01-28 Dave Love <fx@gnu.org> |
5032 | |
5033 * s/irix6-5.h: Revert last change after change to irix5-0.h. | |
5034 | |
5035 * m/iris4d.h (C_SWITCH_MACHINE): Don't use -G0. | |
5036 | |
27473 | 5037 2000-01-28 Gerd Moellmann <gerd@gnu.org> |
5038 | |
27481 | 5039 * buffer.c (Fother_buffer): Don't call Fset_buffer_major_mode |
5040 for *scratch* if it already existed. | |
5041 | |
27473 | 5042 * emacs.c (USAGE): New macro. |
5043 (main): Use it to display usage information. | |
5044 | |
27464 | 5045 2000-01-27 Eli Zaretskii <eliz@is.elta.co.il> |
5046 | |
5047 Support for the menu-help feature: | |
5048 | |
5049 * msdos.h: Change prototypes of XMenuAddSelection and | |
5050 XMenuActivate. | |
5051 | |
5052 * msdos.c (IT_clear_end_of_line): Print the extent of the cleared | |
5053 part of the line to the termscript file. | |
5054 (IT_clear_to_end): Clear the entire line, not just its beginning. | |
5055 (menu_help_message, prev_menu_help_message): New variables. | |
5056 (IT_menu_make_room): Make room for the help_text member. | |
5057 (IT_menu_display): New argument disp_help; all callers changed. | |
5058 If disp_help is non-zero, store the help text of the active menu | |
5059 item in menu_help_message. | |
5060 (XMenuAddPane): Initialize the help_text member to NULL. | |
5061 (XMenuAddSelection): New argument help_text. Store it in the | |
5062 XMenu structure. | |
5063 (XMenuActivate): New argument help_callback. If the value of | |
5064 menu_help_message has changed since the last time, display the | |
5065 menu help message text while waiting for the mouse to move. Clear | |
5066 the echo area before exiting. | |
5067 (XMenuDestroy): Free the help_text member. | |
5068 | |
27459 | 5069 2000-01-27 Gerd Moellmann <gerd@gnu.org> |
5070 | |
5071 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT]: Pass help to | |
5072 XMenuAddSelection. Pass help callback to XMenuActivate. | |
5073 (menu_help_callback) [!USE_X_TOOLKIT]: New function. | |
5074 | |
27453 | 5075 2000-01-27 Eli Zaretskii <eliz@is.elta.co.il> |
5076 | |
5077 * atimer.c (start_atimer) [!HAVE_SETITIMER]: Use EMACS_SET_SECS | |
5078 and EMACS_SET_USECS. | |
5079 | |
27443 | 5080 2000-01-26 Dave Love <fx@gnu.org> |
5081 | |
27446 | 5082 * editfns.c (Fchar_after, Fchar_before): Doc fix. |
5083 | |
27443 | 5084 * bytecode.c (Fbyte_code): Use {BEFORE,AFTER}_POTENTIAL_GC where |
5085 an error may be signalled. | |
5086 | |
27439 | 5087 2000-01-26 Gerd Moellmann <gerd@gnu.org> |
5088 | |
27441 | 5089 * s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef |
5090 LD_SWITCH_SYSTEM inherited from irix5-0.h. | |
5091 | |
27439 | 5092 * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo. |
5093 | |
27435 | 5094 2000-01-25 Gerd Moellmann <gerd@gnu.org> |
5095 | |
5096 * charset.c (Fstring): If there is a multibyte char among | |
5097 the args, always return a multibyte string. | |
5098 | |
27433 | 5099 2000-01-25 Gerd Moellmann <gerd@gnu.org> |
5100 | |
5101 * sysdep.c (sys_select): Turn atimers off and on instead of | |
5102 recording and restoring old alarm handler | |
5103 | |
5104 * process.c (toplevel): Include atimer.h. | |
5105 (create_process_1): Rewritten. | |
5106 (create_process): Use atimers instead of alarm. | |
5107 (wait_reading_process_input) [hpux]: Turn atimers off instead | |
5108 of turning off SIGALRM. | |
5109 (wait_reading_process_input): Turn off atimers instead off | |
5110 calling stop_polling. | |
5111 | |
5112 * emacs.c (main): Call init_atimer. | |
5113 | |
5114 * keyboard.c (toplevel): Include systime.h and atimer.h. | |
5115 (polling_for_input): Removed because unused. | |
5116 (input_poll_signal) [POLL_FOR_INPUT]: Removed. | |
5117 (poll_timer): New variable. | |
5118 (poll_for_input, poll_for_input_1): New functions. | |
5119 (start_polling, stop_polling): Rewritten. | |
5120 | |
5121 * keyboard.h (polling_for_input): Removed. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
5122 |
27433 | 5123 * atimer.h, atimer.c: New files. |
5124 | |
5125 * Makefile.in (obj): Add atimer.o. | |
5126 (atimer.o): New target. | |
5127 | |
5128 * blockinput.h (pending_atimers): Add extern declaration. | |
5129 (UNBLOCK_INPUT): Rewritten. Handle pending atimers. | |
5130 | |
5131 * lisp.h (popup_activated_flag): Add extern declaration. | |
5132 | |
5133 * xmenu.c (popup_activated_flag): Make externally visible. | |
5134 (popup_activate_callback) [USE_MOTIF]: Increment | |
5135 popup_activated_flag. | |
5136 (popup_deactivate_callback) [USE_MOTIF]: Decrement it. | |
5137 | |
5138 * xterm.c (toplevel): Include atimer.h. | |
5139 (toolkit_scroll_bar_interaction): New variable. | |
5140 (Fxt_process_timeouts): Removed. | |
5141 (x_process_timeouts): New function. | |
5142 (xt_action_hook): Clear toolkit_scroll_bar_interaction. | |
5143 (x_send_scroll_bar_event): Set toolkit_scroll_bar_interaction. | |
5144 (x_make_frame_visible): Call poll_for_input_1 instead of | |
5145 input_poll_signal. Don't call alarm. | |
5146 (x_initialize): Install timer calling x_process_timeouts. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
5147 |
27413 | 5148 2000-01-24 Dave Love <fx@gnu.org> |
5149 | |
27446 | 5150 * s/irix5-0.h: Don't set LD_SWITCH_SYSTEM -- we use unexelf now. |
27413 | 5151 Don't use -cckr -- apparently not now necessary. |
5152 | |
27410 | 5153 2000-01-24 Eli Zaretskii <eliz@is.elta.co.il> |
5154 | |
5155 * msdos.c (IT_menu_display): Truncate long menu lines at the right | |
5156 screen boundary. | |
5157 | |
27408 | 5158 2000-01-23 Jason Rumney <jasonr@gnu.org> |
5159 | |
5160 * w32fns.c (w32_defined_color): Apply gamma correction before | |
5161 trying to map to the palette. | |
5162 (w32_wnd_proc) [WM_ERASE_BACKGROUND]: Pass device context of frame | |
5163 to w32_clear_rect. | |
5164 | |
5165 * w32term.c (w32_fill_rect): Do not try to deal with NULL hdc | |
5166 here. Callers changed to always pass real device context. | |
5167 (w32_draw_bitmap): Likewise. | |
5168 (w32_get_glyph_overhangs): Likewise. | |
5169 (w32_draw_box_rect): Make use of s->hdc rather than getting a new | |
5170 one. | |
5171 (w32_set_vertical_scroll_bar): Pass correct HWND parameters to | |
5172 pfnSetScrollInfo and SetScrollRange. | |
5173 (x_get_char_face_and_encoding): Don't turn iso8859-1 characters | |
5174 back into MULE characters after decoding them. | |
5175 (x_get_glyph_face_and_encoding): Likewise. | |
5176 (w32_per_char_metric): Use GetCharExtentPoint32W as fallback when | |
5177 GetCharABCWidthsW fails, since this is defined on Windows 9x. | |
5178 (x_produce_glyphs): Calculate per char metrics for a character | |
5179 that we know exists in default font when font_not_found_p is true. | |
5180 | |
27393 | 5181 2000-01-22 Jason Rumney <jasonr@gnu.org> |
5182 | |
5183 * makefile.nt (intervals.obj, composite.obj): New modules. | |
5184 (composite.h): Added as dependency where appropriate. | |
5185 | |
5186 * w32gui.h (XGCValue): New struct for emulating X GCs. | |
5187 | |
5188 * w32term.h (XCharStruct): New struct for emulating X. | |
5189 | |
5190 * w32console.c (turn_on_face, turn_off_face): New functions. | |
5191 (change_line_highlight): New prototype for new redisplay. | |
5192 (write_glyphs): Support multibyte text. Support faces. | |
5193 | |
5194 * w32faces.c: Complete rewrite for new redisplay based on new | |
5195 xfaces.c. | |
5196 | |
5197 * w32fns.c: Use SELECTED_FRAME macro in place of selected_frame | |
5198 throughout. struct frame * in place of FRAME_PTR. | |
5199 Skeleton support for images, toolbars, tooltips from xfns.c. | |
5200 (Fx_create_frame): Use system default for default scroll bar | |
5201 width. | |
5202 (w32_get_arg): Renamed from x_get_arg. | |
5203 (Fx_file_dialog): New function. | |
5204 (w32_list_fonts): Check cache before asking system. | |
5205 (Vw32_enable_synthesized_fonts): New variable. | |
5206 (Vw32_enable_italics): Obsolete, removed. | |
5207 | |
5208 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to): | |
5209 Use SELECTED_FRAME macro. | |
5210 | |
5211 * w32menu.c: Add skeleton support for help strings on menus. | |
5212 (add_menu_item): Native checkbox and radio support added, but not | |
5213 yet enabled due to bugs. | |
5214 (push_menu_item): Add parameters type, selection and help. | |
5215 Callers updated. | |
5216 Formatting changes to reduce unnecessary diffs with xmenu.c. | |
5217 | |
5218 * w32select.c (Fw32_set_clipboard_data): Update call to | |
5219 find_charset_in_str. | |
5220 | |
5221 * w32term.c: Complete rewrite for new redisplay based on new | |
5222 xterm.c with necessary sections merged back in from old w32term.c. | |
5223 | |
27702
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
5224 2000-01-21 Richard M. Stallman <rms@gnu.org> |
27390
10e53615a9d2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27372
diff
changeset
|
5225 |
10e53615a9d2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27372
diff
changeset
|
5226 * data.c (set_internal): Further fix in same criterion. |
10e53615a9d2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27372
diff
changeset
|
5227 |
27702
50df459c86d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27700
diff
changeset
|
5228 2000-01-20 Richard M. Stallman <rms@gnu.org> |
27372
79d08dbee5fd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27366
diff
changeset
|
5229 |
79d08dbee5fd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27366
diff
changeset
|
5230 * data.c (set_internal): Fix the criteria for whether |
79d08dbee5fd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27366
diff
changeset
|
5231 to swap out the old cached binding. |
79d08dbee5fd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27366
diff
changeset
|
5232 |
27366 | 5233 2000-01-19 Dave Love <fx@gnu.org> |
5234 | |
5235 * lread.c: (syms_of_lread) [user-init-file]: Doc change. | |
5236 | |
27354 | 5237 2000-01-18 Kenichi Handa <handa@etl.go.jp> |
5238 | |
5239 * regex.c (re_compile_fastmap): While checking a range table for | |
5240 `charset', skip flag bits for a character class correctly. | |
5241 | |
27344 | 5242 2000-01-17 Gerd Moellmann <gerd@gnu.org> |
5243 | |
27347 | 5244 * m/news-risc.h (LD_SWITCH_MACHINE): Define differently for GCC. |
5245 | |
27344 | 5246 * xfns.c (x_window): Call lw_create_widget with new parameter |
5247 list. | |
5248 | |
5249 * widget.c (EmacsFrameSetCharSize): Change size of children first | |
5250 because of problems with main window geometry management under | |
5251 Lesstif. | |
5252 | |
5253 * xmenu.c (enum menu_item_idx): New enumeration replacing defines | |
5254 MENU_ITEMS_ITEM_.*. | |
5255 (MENU_ITEMS_ITEM_HELP): New enumerator. | |
5256 (push_menu_item): Add parameter HELP. Record help in menu_items. | |
5257 (single_menu_item, single_submenu, list_of_items): Call | |
5258 push_menu_item with new parameter. | |
5259 (single_submenu): Set help string in widget value. | |
5260 (menu_highlight_callback): New function. | |
5261 (set_frame_menubar): Call lw_create_widget with new | |
5262 parameter list. | |
5263 (xmenu_show, xdialog_show): Ditto. | |
5264 | |
27316 | 5265 2000-01-13 Gerd Moellmann <gerd@gnu.org> |
5266 | |
5267 * sound.c (Fplay_sound): Improve doc string. | |
5268 | |
27300
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27299
diff
changeset
|
5269 2000-01-11 Richard M. Stallman <rms@gnu.org> |
27299
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5270 |
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5271 * lisp.h (set_internal): Enter the new arg. |
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5272 |
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5273 * eval.c (specbind): Record buffer-local variables specially, |
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5274 indicating which buffer's binding was saved. |
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5275 (unbind_to): Restore buffer-local variables specially |
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5276 in the proper buffer. |
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5277 |
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5278 * data.c (set_internal): New arg BUF. |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
5279 |
27299
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5280 * eval.c (specbind, unbind_to): Pass new arg to set_internal. |
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5281 * data.c (Fset): Pass new arg to set_internal. |
1d7b2d2038af
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
5282 * bytecode.c (Fbyte_code): Pass new arg to set_internal. |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
5283 |
27291 | 5284 2000-01-11 Gerd Moellmann <gerd@gnu.org> |
5285 | |
5286 * .gdbinit: Adapt to new strings. Add xbacktrace, xreload, | |
5287 xprintsym. | |
5288 | |
27300
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27299
diff
changeset
|
5289 2000-01-11 Richard M. Stallman <rms@gnu.org> |
27283
f3eca57846e3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27276
diff
changeset
|
5290 |
f3eca57846e3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27276
diff
changeset
|
5291 * minibuf.c (Ftry_completion): Doc fix. |
f3eca57846e3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27276
diff
changeset
|
5292 |
27276 | 5293 2000-01-11 Gerd Moellmann <gerd@gnu.org> |
5294 | |
5295 * keyboard.c (Fclear_this_command_keys): Clear recent_keys | |
5296 vector, too. | |
5297 | |
27273 | 5298 2000-01-11 Andreas Schwab <schwab@suse.de> |
5299 | |
5300 * coding.c (code_convert_region): Initialize total_skip. | |
5301 | |
27244 | 5302 2000-01-08 Dave Love <fx@gnu.org> |
5303 | |
5304 * eval.c (Fuser_variable_p): Check customizability too. | |
5305 | |
27237 | 5306 2000-01-07 Gerd Moellmann <gerd@gnu.org> |
5307 | |
5308 * minibuf.c (Fcompleting_read): Doc fix. | |
5309 | |
27158 | 5310 2000-01-05 Gerd Moellmann <gerd@gnu.org> |
5311 | |
27171 | 5312 * s/freebsd.h (C_SWITCH_SYSTEM): Add -I /usr/local/include and |
5313 -L /usr/local/lib. | |
5314 | |
27158 | 5315 * xfns.c (x_create_im): New function to set IM and IC of a frame. |
5316 Check that input style is supported before trying to create an | |
5317 IC for it. | |
5318 (x_window): Call x_create_im. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
5319 |
27143 | 5320 2000-01-04 Gerd Moellmann <gerd@gnu.org> |
5321 | |
27155 | 5322 * xfns.c (current_gif_memory_src): New variable. |
5323 (gif_load): Record the address of the current memory source | |
5324 in current_gif_memory_src. | |
5325 (gif_read_from_memory): Use current_gif_memory_src. | |
5326 | |
27150 | 5327 * systime.h (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME): Give |
5328 macros statement form. | |
5329 | |
27147 | 5330 * sound.c (struct sound): Renamed from struct sound_file. |
5331 (struct sound): Add members `data' and `header_size'. | |
5332 (enum sound_attr): Add SOUND_DATA. | |
5333 (current_sound, current_sound_device): Variables renamed from | |
5334 sound_file and sound_device. | |
5335 (parse_sound): Parse :data. | |
5336 (parse_sound): Handle sound data in strings. | |
5337 (find_sound_type): Function renamed from find_sound_file_type. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
5338 (wav_init, au_init): Fail if sound's header_size is smaller than |
27147 | 5339 needed header size. |
5340 (wav_play, au_play): Play sounds from string data. | |
5341 | |
27143 | 5342 * puresize.h (BASE_PURE_SIZE): Increase to 600000. |
5343 | |
5344 * lisp.h: Add prototype for allocate_string_data. | |
5345 | |
5346 * alloc.c (Fgarbage_collect): Return number of live and free | |
5347 strings. | |
5348 | |
5349 * alloc.c (mark_buffer): Remove code in #if 0. | |
5350 (gc_sweep): Ditto. | |
5351 (UNMARK_BALANCE_INTERVALS): Give the macro statement form. | |
5352 (strings_consed): New variable. | |
5353 (allocate_string): Set it. | |
5354 (syms_of_alloc): Add DEFVAR_INT for strings_consed. | |
5355 (Fmemory_use_counts): Return strings_consed. Use Flist. | |
5356 | |
5357 * alloc.c: General cleanup in comments etc. Remove conditional | |
5358 compilation for `standalone'. | |
5359 | |
5360 * lisp.h (struct Lisp_String): Make DATA member `unsigned char *'. | |
5361 | |
5362 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): | |
5363 (GC_STRING_BYTES, GC_STRING_CHARS): New macros. | |
5364 (DONT_COPY_FLAG): Removed. | |
5365 (SBLOCK_SIZE, LARGE_STRING_BYTES): New macros. | |
5366 (struct sdata, struct sblock): New | |
5367 (struct string_block): Rewritten. | |
5368 (STRINGS_IN_STRING_BLOCK): New macro. | |
5369 (oldest_sblock, current_sblock, total_strings, total_free_strings) | |
5370 (large_sblocks, string_blocks, string_free_list): New variables. | |
5371 (NEXT_FREE_LISP_STRING, SDATA_OF_STRING, SDATA_SIZE): New macros. | |
5372 (init_strings): Rewritten. | |
5373 (allocate_string, allocate_string_data, compact_small_strings) | |
5374 (free_large_strings, sweep_strings): New functions. | |
5375 (STRING_BLOCK_SIZE, STRING_BLOCK_OUTSIZE) | |
5376 (struct string_block_head, current_string_block) | |
5377 (first_string_block, large_string_blocks, STRING_FULLSIZE) | |
5378 (STRING_PAD): Removed. | |
5379 (make_uninit_multibyte_string, make_pure_string): Rewritten. | |
5380 (Fgarbage_collect): Don't set mark bit in large strings. | |
5381 (mark_object): Mark strings differently. Mark symbol names | |
5382 differently. | |
5383 (survives_gc_p): Test marked strings differently. | |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
5384 (gc_sweep): Sweep strings differently, unmark strings in |
27143 | 5385 symbol names. |
5386 (compact_strings): Removed. | |
5387 | |
27138 | 5388 2000-01-04 Eli Zaretskii <eliz@is.elta.co.il> |
5389 | |
5390 * xfaces.c (syms_of_xfaces): defsubr Scolor_gray_p and | |
5391 Scolor_supported_p even if HAVE_X_WINDOWS is not defined. | |
5392 | |
27127 | 5393 2000-01-04 Kenichi Handa <handa@etl.go.jp> |
5394 | |
27133 | 5395 * fileio.c (Finsert_file_contents): Signal error if visiting file |
29803
3dec4cd5e361
Don't declare xmalloc, xrealloc.
Sam Steingold <sds@gnu.org>
parents:
29802
diff
changeset
|
5396 in a non-empty buffer. |
27133 | 5397 |
27130 | 5398 * term.c (encode_terminal_code): Fix the previous change. |
27127 | 5399 |
27122 | 5400 2000-01-03 Gerd Moellmann <gerd@gnu.org> |
5401 | |
5402 * xfaces.c (syms_of_xfaces): Change Sface_color_gray_p to | |
5403 Scolor_gray_p, Sface_color_supported_p to Scolor_supported_p. | |
5404 | |
5405 * s/hpux9.h (NO_EDITRES): Define even if HAVE_LIBXMU. | |
5406 | |
27119 | 5407 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
5408 | |
5409 * xdisp.c (handle_single_display_prop) [HAVE_WINDOW_SYSTEM]: No | |
5410 need to test for MSDOS frames. | |
5411 | |
27116 | 5412 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
5413 | |
5414 * dosfns.c (unspecified_colors): Remove. | |
5415 (msdos_stdcolor_idx): Use global variables unspecified_fg and | |
5416 unspecified_bg. | |
5417 (msdos_stdcolor_name): Return strings for unspecified fore- and | |
5418 back-ground colors. | |
5419 | |
5420 * xfaces.c (Qunspecified_fg, Qunspecified_bg): Remove. | |
27680 | 5421 (syms_of_xfaces): Remove their staticpro's. |
27116 | 5422 (tty_color_name): Return Lisp strings for unspecified fore- and |
5423 back-ground colors. | |
5424 (Finternal_set_lisp_face_attribute): Remove the special treatment | |
5425 for Qunspecified_{f,b}g. | |
5426 (realize_default_face): Replace Qunspecified_{f,b}g with a Lisp | |
5427 string. | |
5428 | |
27112 | 5429 2000-01-03 Gerd Moellmann <gerd@gnu.org> |
5430 | |
5431 * xdisp.c (reseat_at_next_visible_line_start): Position before | |
5432 newline only if ending up on a newline. | |
5433 (next_element_from_ellipsis): Return success. Handle case of | |
5434 displaying no ellipsis. Fix case of ellipsis defined in display | |
5435 table. | |
5436 (next_element_from_buffer): Return 0 if next_element_from_ellipsis | |
5437 returns 0. | |
5438 | |
27102 | 5439 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
5440 | |
5441 * xfaces.c (Fcolor_gray_p): Renamed from face-color-gray-p. | |
5442 (Fcolor_supported_p): Renamed from face-color-supported-p. | |
5443 | |
27091 | 5444 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il> |
5445 | |
5446 * xfaces.c (tty_defined_color): Pass frame to tty-color-desc. The | |
5447 list of colors renamed to tty-defined-color-alist. | |
5448 (tty_color_name): Pass the frame to tty-color-by-index. | |
5449 (realize_tty_face): tty-color-alist is now a function which | |
5450 accepts the frame as argument. | |
5451 | |
5452 * term.c (Ftty_display_color_p): Accept an optional argument | |
5453 FRAME. | |
5454 | |
27086 | 5455 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il> |
5456 | |
5457 * term.c (insert_glyphs): Pass glyph, not &glyph, to | |
5458 encode_terminal_code. | |
5459 | |
27084 | 5460 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il> |
5461 | |
5462 * dispnew.c (mode_line_string): Support termcap frames as well. | |
5463 | |
27067 | 5464 2000-01-01 Gerd Moellmann <gerd@gnu.org> |
5465 | |
27082 | 5466 * syntax.c (Fforward_word): Undo previous change. |
5467 | |
5468 * editfns.c (Fconstrain_to_field): Don't constrain if | |
5469 inhibit-field-text-motion is non-nil. | |
5470 (Fline_beginning_position): Undo previous change. | |
5471 (Fline_end_position): Ditto. | |
5472 | |
5473 * syntax.c (Fforward_word): Notice field boundaries only if | |
5474 inhibit-field-text-motion is nil. | |
5475 | |
5476 * lisp.h: Add extern declaration for Vinhibit_field_text_motion. | |
5477 | |
5478 * editfns.c (Vinhibit_field_text_motion): New variable. | |
5479 (inhibit-field-text-motion): New DEFVAR_LISP. | |
5480 (Fline_beginning_position, Fline_end_position): Notice field | |
5481 boundaries only if inhibit-field-text-motion is nil. | |
5482 | |
27072 | 5483 * xfns.c (x_create_x_image_and_pixmap): Remove parameter FILE. |
5484 All calls adjusted. | |
5485 (x_build_heuristic_mask): Likewise. | |
5486 (xbm_load_image_from_file): Change error output. | |
5487 (xbm_load, xpm_load, pbm_load, png_load, jpeg_load, tiff_load) | |
5488 (gif_load, gs_load, x_kill_gs_process): Ditto. | |
5489 | |
27067 | 5490 * xfns.c (gif_load): Avoid sign extension and thus out of bounds |
5491 color indices when accessing raster pixels. | |
27070 | 5492 (gif_image_p, png_image_p, jpeg_image_p, tiff_image_p): Allow only |
5493 one of :file or :data. | |
5494 (enum pbm_keyword_index): Add PBM_DATA. | |
5495 (pbm_format): Add :data. | |
5496 (pbm_image_p): Allow either :file or :data. | |
5497 (pbm_read_file): New function. | |
5498 (pbm_scan_number): Rewritten to read from string. | |
5499 (pbm_load): Support :data. | |
27067 | 5500 |
30727 | 5501 See ChangeLog.8 for earlier changes. |