]> code.delx.au - gnu-emacs/blob - src/ChangeLog
nnimap.el (gnutls-negotiate): Silence the byte compiler.
[gnu-emacs] / src / ChangeLog
1 2010-10-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * gnutls.c (emacs_gnutls_write): If we're trying to write before
4 gnutls is ready, return EAGAIN as the errno.
5
6 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
7
8 * vm-limit.c:
9 * unexhp9k800.c:
10 * unexelf.c:
11 * unexaix.c:
12 * termcap.c: Remove #ifdef emacs / #ifndef emacs code, unused.
13
14 * Makefile.in (temacs): Use $(ALL_CFLAGS) on the link line.
15 (PROFILING_LDFLAGS): Remove, not needed anymore.
16
17 * Makefile.in: Use $(...) everywhere instead of ${...}
18 (CRT_DIR): Move near potential user.
19 (START_FILE): Move near CRT_DIR, it might use it.
20
21 * sysdep.c (LPASS8): Remove, unused.
22 (emacs_ospeed): Change from being a global to a local in the only
23 user: init_baud_rate.
24
25 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
26
27 * gnutls.c (syms_of_gnutls): All the bootprops are keywords.
28 (emacs_gnutls_write): Remove the debuggin fsync call.
29 (emacs_gnutls_read): Return -1 if we got an error from
30 gnutls_read. This allows us to actually read lots of data from
31 the GnuTLS stream.
32 (emacs_gnutls_write): Check for GNUTLS_E_AGAIN and not EINTR.
33 According to the documentation, this is correct, and it seems to
34 make things work.
35
36 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
37
38 * xterm.c (x_draw_relief_rect): Clear corner pixels.
39
40 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
41
42 * keyboard.c: Revert last change; it was not intended to be
43 synchronized with the trunk.
44
45 2010-10-08 Kenichi Handa <handa@m17n.org>
46
47 * coding.c (complement_process_encoding_system): Fix previous change.
48
49 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
50
51 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
52 (Fdbus_init_bus): ... here. (Bug#7113)
53
54 2010-10-08 Glenn Morris <rgm@gnu.org>
55
56 * buffer.c (before-change-functions, after-change-functions):
57 Three-year overdue doc fix following 2007-08-13 change.
58
59 2010-10-08 Kenichi Handa <handa@m17n.org>
60
61 * coding.c (coding_inherit_eol_type): If parent doesn't specify
62 eol-format, inherit from the system's default.
63 (complement_process_encoding_system): Make a new coding system
64 inherit the original eol-format.
65
66 2010-10-08 Kenichi Handa <handa@m17n.org>
67
68 * coding.c (complement_process_encoding_system): New function.
69
70 * coding.h (complement_process_encoding_system): Extern it.
71
72 * callproc.c (Fcall_process): Complement the coding system for
73 encoding arguments.
74 (Fcall_process_region): Complement the coding system for encoding
75 the input to the process.
76
77 * process.c (Fstart_process): Complement the coding system for
78 encoding arguments.
79 (send_process): Complement the coding system for encoding what
80 sent to the process.
81
82 2010-10-08 Kenichi Handa <handa@m17n.org>
83
84 * xfont.c (xfont_open): Fix setting of font->average_width from
85 :avgwidth property (Bug#7123).
86
87 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
88
89 * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
90 is more portable.
91
92 * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
93 (kbd_buffer_get_event): ... here. This is needed for cygwin, which
94 has not defined SIGIO.
95
96 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
97
98 * xterm.c (x_draw_relief_rect): If box width is larger than 1,
99 draw the outermost line using the black relief, for legibility.
100 Omit drawing the four corner pixels.
101
102 2010-10-04 Chong Yidong <cyd@stupidchicken.com>
103
104 * keyboard.c (echo_prompt): Function moved into read_key_sequence.
105 (read_key_sequence): Inline echo_prompt.
106 (echo_dash): Add a dash only if key is continued (Bug#7137).
107
108 2010-10-04 Dan Nicolaescu <dann@ics.uci.edu>
109
110 Remove O_RDONLY, O_WRONLY definitions, not needed.
111 * unexcoff.c:
112 * lread.c:
113 * fileio.c:
114 * doc.c:
115 * callproc.c:
116 * alloc.c:
117 * termcap.c: Remove O_RDONLY O_WRONLY definitions.
118
119 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
120
121 * gnutls.h (GNUTLS_LOG2): Convenience macro.
122
123 * gnutls.c: Add property list symbol holders.
124 (emacs_gnutls_handshake): Clarify how sockets are passed to
125 GnuTLS.
126 (gnutls_log_function2): Convenience function using GNUTLS_LOG2.
127 (Fgnutls_boot): Get all parameters from a plist. Require trustfiles
128 and keyfiles to be a list of file names. Default to "NORMAL" for
129 the priority string. Improve logging.
130
131 2010-10-03 Glenn Morris <rgm@gnu.org>
132
133 * fileio.c (Vdirectory_sep_char): Remove.
134
135 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
136
137 * termhooks.h: Remove #ifdef CONSP.
138
139 * xterm.c (NO_INLINE, noinline): Move definitions to ../configure.in.
140
141 Include <fcntl.h> unconditionally.
142 * termcap.c:
143 * sysdep.c:
144 * lread.c:
145 * keyboard.c:
146 * filelock.c:
147 * fileio.c:
148 * doc.c:
149 * callproc.c:
150 * alloc.c: Remove include guards for <fcntl.h>, process.c already
151 does it.
152
153 * process.c: Do not include <sys/wait.h>, syswait.h does it.
154
155 * sysdep.c (flush_pending_output): Remove code, does not do
156 anything on any platform.
157
158 Remove unused code.
159 * sysdep.c (select_alarm, sys_select, read_input_waiting): Remove
160 select emulation, all systems support select.
161 (set_exclusive_use): Remove, the only user is in an #if 0 block.
162 * process.c (create_process): Remove #if 0 code.
163
164 Remove unused arguments for unexec.
165 The third one is never used, and the last two are always passed as zero.
166 * emacs.c (unexec): Add declaration.
167 (Fdump_emacs): Only pass the first two arguments to unexec.
168 Simplify #ifdef.
169 * unexw32.c (unexec):
170 * unexsol.c (unexec):
171 * unexhp9k800.c (unexec):
172 * unexcw.c (unexec): Remove the last 3 arguments, unused.
173 * unexelf.c (unexec): Remove the last 3 arguments, unused.
174 (find_section): Use const.
175 * unexmacosx.c (unexec): Remove the last 3 arguments, unused.
176 (unexec_error): Declare it NO_RETURN.
177 * unexcoff.c (make_hdr): Assume bss_start is always zero, remove
178 it as an argument, remove data_start and entry_address arguments, unused.
179 (unexec): Remove bss_start, data_start and
180 entry_address arguments.
181 * unexaix.c (make_hdr): Assume bss_start is always zero, remove
182 it as an argument, remove data_start and entry_address arguments, unused.
183 (unexec): Remove bss_start, data_start and
184 entry_address arguments.
185
186 2010-10-03 Juanma Barranquero <lekktu@gmail.com>
187
188 * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ).
189
190 * gnutls.c (emacs_gnutls_handshake, gnutls_make_error)
191 (gnutls_emacs_global_init, gnutls_emacs_global_deinit): Make static.
192 (Fgnutls_get_initstage, Fgnutls_deinit, Fgnutls_boot, Fgnutls_bye):
193 Fix typos in docstrings.
194 (Fgnutls_error_fatalp, Fgnutls_error_string): Doc fixes.
195 (Fgnutls_errorp): Doc fix; use ERR for the argument name.
196
197 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
198
199 * keyboard.c (command_loop_1): Make sure the mark is really alive
200 before using it (Bug#7044).
201
202 2010-10-02 Juanma Barranquero <lekktu@gmail.com>
203
204 * makefile.w32-in (tags): Rename target to full-tags.
205
206 2010-10-02 Eli Zaretskii <eliz@gnu.org>
207
208 * emacs.c (main): Remove !WINDOWSNT conditional.
209 (Fkill_emacs): Don't mention exemption on MS-Windows.
210
211 2010-10-02 Glenn Morris <rgm@gnu.org>
212
213 * character.c (Fchar_bytes): Remove obsolete function.
214 (syms_of_character): Remove Schar_bytes.
215
216 * emacs.c (fatal_error_signal): Also run Fkill_emacs on SIGINT.
217 (main) [!WINDOWSNT]: Handle SIGINT with fatal_error_signal
218 in batch-mode.
219 (Fkill_emacs): Doc fix. Also run the hook in batch mode.
220 (kill-emacs-hook): Doc fix.
221
222 2010-10-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
223
224 * xml.c (Flibxml_parse_xml_region, Flibxml_parse_html_region)
225 (parse_region): Reworked to take regions instead of strings, and
226 renamed to reflect that these are the libxml functions.
227
228 2010-10-01 Eli Zaretskii <eliz@gnu.org>
229
230 * term.c (init_tty) [DOS_NT]: Don't call Wcm_clear after setting
231 screen dimensions in tty->Wcm.
232
233 * xdisp.c (set_cursor_from_row): When the row is truncated and
234 point is outside the range of displayed characters, position the
235 cursor inside the scroll margin. (Bug#6349)
236
237 2010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
238
239 Do not include stdlib.h and string.h, config.h does it.
240 * xfont.c:
241 * w32term.c:
242 * w32reg.c:
243 * w32inevt.c:
244 * w32heap.c:
245 * w32console.c:
246 * w16select.c:
247 * unexsol.c:
248 * term.c:
249 * sound.c:
250 * scroll.c (m):
251 * gtkutil.c:
252 * font.c:
253 * filelock.c:
254 * fileio.c:
255 * dosfns.c:
256 * dbusbind.c:
257 * bidi.c:
258 * callproc.c:
259 * process.c:
260 * msdos.c:
261 * charset.c: Do not include stdlib.h and string.h, config.h does it.
262
263 * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h defines it.
264
265 * process.c: Move #include <pty.h> earlier.
266 (SIGCHLD): Remove conditional definition, syssignal.h defines it.
267 (pty_name): Move definition later.
268
269 * nsselect.m (syms_of_nsselect):
270 * nsmenu.m (syms_of_nsmenu):
271 * nsfns.m (syms_of_nsfns):
272 * msdos.c (syms_of_msdos):
273
274 * image.c (syms_of_image):
275 * charset.c (syms_of_charset): Use intern_c_string instead of intern.
276
277 * point.h: Remove, unused.
278
279 2010-10-01 Eli Zaretskii <eliz@gnu.org>
280
281 * makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
282 (TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
283 (nt-TAGS-gmake, nt-TAGS-nmake): New targets.
284
285 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
286
287 * xml.c (parse_string): Use const.
288
289 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
290
291 * eval.c (Fbacktrace): Don't overwrite print-level on exit. Also
292 only override Vprint_level if it isn't already bound, and increase
293 the level to 8 to produce more useful backtraces for bug reports.
294
295 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
296
297 * Makefile.in: ecrt0.c does not exist anymore, do not mention it.
298
299 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
300
301 * w32console.c (vga_stdcolor_name): Remove unused function;
302 presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
303
304 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
305
306 * gnutls.c (emacs_gnutls_handshake): Made into internal function.
307 (Fgnutls_boot): Start the handshake.
308 (emacs_gnutls_read): Perform the handshake from the reader loop.
309 (Fgnutls_boot): Remove some debugging messages.
310 Change indentation throughout to use the Emacs style.
311 (emacs_gnutls_handshake): Cast the fds to something that's
312 possibly the expected length.
313 (emacs_gnutls_write): Return -1 if we try to write before handshake.
314
315 * process.h (Lisp_Process): Add a gnutls_p field to Lisp_Process.
316
317 * process.c (make_process): Set the gnutls_p field to zero by
318 default.
319 (read_process_output): Always call the gnutls_read function if the
320 stream is a gnutls stream.
321 (send_process): Ditto for writes.
322
323 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Refuse to read
324 or write anything until the state is GNUTLS_STAGE_READY.
325 (Fgnutls_boot): Mark the stream as being a gnutls stream.
326
327 2010-09-29 Eli Zaretskii <eliz@gnu.org>
328
329 * xdisp.c (reseat_1): Initialize bidi_it.paragraph_dir to
330 NEUTRAL_DIR.
331 (handle_invisible_prop, iterate_out_of_display_property)
332 (next_element_from_buffer): If bidi_it.first_elt is set, call
333 bidi_paragraph_init with NO_DEFAULT_P argument non-zero.
334 (Bug#7128)
335
336 * print.c (print_object): Fix format string and argument types for
337 printing a Lisp_Misc_Marker.
338
339 * xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
340 (load_overlay_strings, get_overlay_strings_1)
341 (get_overlay_strings, forward_to_next_line_start)
342 (back_to_previous_visible_line_start, reseat, reseat_to_string)
343 (get_next_display_element, next_element_from_string)
344 (next_element_from_c_string, next_element_from_buffer)
345 (move_it_vertically_backward, move_it_by_lines, add_to_log)
346 (message_dolog, message_log_check_duplicate, message2_nolog)
347 (message3, message3_nolog, vmessage, set_message, set_message_1)
348 (hscroll_window_tree, text_outside_line_unchanged_p)
349 (set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
350 (find_last_unchanged_at_beg_row)
351 (find_first_unchanged_at_end_row, row_containing_pos)
352 (trailing_whitespace_p, display_mode_element, decode_mode_spec)
353 (display_count_lines, x_produce_glyphs, note_mouse_highlight): Use
354 EMACS_INT for buffer and string positions.
355
356 * dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
357 (row_containing_pos): Adjust prototype.
358
359 * lisp.h (pos_visible_p, message2, message2_nolog, message3)
360 (message2_nolog, set_message): Adjust prototypes.
361
362 2010-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
363
364 * gnutls.c (Fgnutls_boot): Remove unused vars `data' and `srp_cred'.
365 (Fgnutls_boot): Use SDATA.
366 (Fgnutls_handshake): Remove unused var `max_log_level'.
367
368 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
369
370 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
371 (Bug#7113)
372
373 2010-09-27 Jan Djärv <jan.h.d@swipnet.se>
374
375 * xgselect.c (xg_select): Clear file descriptors not set from
376 rfds and wfds.
377
378 * process.c (wait_reading_process_output): Add missing FD_CLR
379 for write_mask (must mirror connect_wait_mask).
380
381 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
382
383 * gnutls.c (gnutls_log_function): Show level and "gnutls.c"
384 prefix.
385 (Fgnutls_boot): Use changed process members. Use log level with a
386 function parameter to set it. Bring back Emacs-level debugging
387 messages at log level 1 and 2.
388
389 * process.c (make_process): Initialize gnutls_log_level.
390
391 * process.h: Add gnutls_log_level and rename x509_cred and
392 anon_cred to have the gnutls_ prefix for consistency.
393
394 * gnutls.h (GNUTLS_LOG): Add convenience macro.
395
396 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
397
398 * w32.c (g_b_init_get_sid_identifier_authority)
399 (GetSidIdentifierAuthority_Proc, get_sid_identifier_authority):
400 Remove, not used.
401 (globals_of_w32): Don't set g_b_init_get_sid_identifier_authority.
402 (init_winsock): Remove useless assignment.
403 (open_process_token, get_token_information, lookup_account_sid)
404 (get_sid_sub_authority, get_sid_sub_authority_count, get_file_security)
405 (get_security_descriptor_owner, get_security_descriptor_group)
406 (is_valid_sid, equal_sid, get_length_sid, copy_sid)
407 (get_native_system_info, get_system_times, init_user_info, crlf_to_lf)
408 (is_unc_volume, GetCachedVolumeInformation, get_volume_info)
409 (is_fat_volume, open_unc_volume, read_unc_volume, close_unc_volume)
410 (unc_volume_file_attributes, convert_from_time_t)
411 (create_toolhelp32_snapshot, process32_first, process32_next)
412 (open_thread_token, impersonate_self, revert_to_self)
413 (get_process_memory_info, get_process_working_set_size)
414 (global_memory_status, global_memory_status_ex, socket_to_fd)
415 (shutdown_handler): Make static.
416
417 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
418
419 * dbusbind.c (dbus_fd_cb, xd_get_dispatch_status)
420 (xd_pending_messages): Functions removed.
421 (xd_read_queued_messages): Add parameters fd, *data, for_read in
422 order to be compatible with add_read_fd. Determine bus from data,
423 and call xd_read_message just for this bus.
424 (xd_add_watch): Use xd_read_queued_messages as callback function.
425 Add data.
426
427 * lisp.h (xd_pending_messages, xd_read_queued_messages): Remove.
428
429 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
430
431 * gnutls.c (gnutls_log_function): Added more debugging.
432 (emacs_gnutls_read): Don't infloop while reading.
433
434 2010-09-27 Kenichi Handa <handa@m17n.org>
435
436 These changes are to remove restriction on the number of glyphs in
437 one composition.
438
439 * dispextern.h (struct glyph): Change the member "slice" to union.
440 Remove u.cmp.from and u.cmp.to. Give more bits to u.cmp.id.
441 (GLYPH_SLICE_EQUAL_P): Adjusted for the above change.
442
443 * dispnew.c (buffer_posn_from_coords): Use glyph->slice.img
444 instead of glyph->slice.
445 (marginal_area_string): Likewise.
446
447 * term.c (encode_terminal_code): Use glyph->slice.cmp instead of
448 glyph->u.cmp.
449 (append_composite_glyph): Likewise.
450
451 * xdisp.c (dump_glyph): Use glyph->slice.cmp instead of
452 glyph->u.cmp.
453 (fill_gstring_glyph_string, x_get_glyph_overhangs)
454 (append_composite_glyph): Likewise.
455 (fill_image_glyph_string): Use glyph->slice.img instead of
456 glyph->slice.
457 (append_glyph, produce_image_glyph, append_stretch_glyph)
458 (note_mouse_highlight): Likewise.
459
460 2010-09-26 Jan Djärv <jan.h.d@swipnet.se>
461
462 * process.c (add_keyboard_wait_descriptor)
463 (delete_keyboard_wait_descriptor): Reinstate ifdef subprocesses.
464 (wait_reading_process_output): Don't pass write_mask to select
465 if SELECT_CANT_DO_WRITE_MASK is defined.
466 (SELECT_CANT_DO_WRITE_MASK): Define if SELECT_CANT_DO_WRITE_MASK.
467
468 * process.h (add_read_fd, delete_read_fd, add_write_fd)
469 (delete_write_fd): Declare.
470
471 * process.c (gpm_wait_mask, max_gpm_desc): Remove.
472 (write_mask): New variable.
473 (max_input_desc): Renamed from max_keyboard_desc.
474 (fd_callback_info): New variable.
475 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd):
476 New functions.
477 (Fmake_network_process): FD_SET write_mask.
478 (deactivate_process): FD_CLR write_mask.
479 (wait_reading_process_output): Connecting renamed to Writeok.
480 check_connect removed. check_write is new. Remove references to gpm.
481 Use Writeok/check_write unconditionally (i.e. no #ifdef
482 NON_BLOCKING_CONNECT) instead of Connecting.
483 Loop over file descriptors and call callbacks in fd_callback_info
484 if file descriptor is ready for I/O.
485 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor.
486 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor.
487 (keyboard_bit_set): Use max_input_desc.
488 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor):
489 Remove #ifdef subprocesses. Use max_input_desc.
490 (init_process): Initialize write_mask and fd_callback_info.
491
492 * keyboard.c (readable_events, gobble_input): Remove DBUS code.
493
494 * dbusbind.c: Include process.h.
495 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch)
496 (xd_read_message_1): New functions.
497 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd.
498 Handle watch for both read and write.
499 (Fdbus_init_bus): Also register xd_toggle_watch.
500 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
501 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call
502 to dbus_connection_flush.
503 (xd_read_message): Move most of the code to xd_read_message_1.
504 Call xd_read_message_1 until status is COMPLETE.
505
506 2010-09-26 Dan Nicolaescu <dann@ics.uci.edu>
507
508 * term.c: Do not include sys/ioctl.h, not needed.
509 (init_tty): Reorder code to reduce the number of #ifdefs.
510 No code changes.
511
512 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
513
514 * process.h: Set up GnuTLS support.
515
516 * process.c (make_process, Fstart_process)
517 (read_process_output, send_process): Set up GnuTLS support for
518 process input/output file descriptors.
519
520 * gnutls.h: The GnuTLS glue for Emacs, macros and enums.
521
522 * gnutls.c: The source code for GnuTLS support in Emacs.
523
524 * emacs.c: Set up GnuTLS support and call syms_of_gnutls.
525
526 * config.in: Set up GnuTLS support.
527
528 * Makefile.in (LIBGNUTLS_LIBS, LIBGNUTLS_CFLAGS, ALL_CFLAGS)
529 (obj, LIBES): Set up GnuTLS support.
530
531 2010-09-26 Juanma Barranquero <lekktu@gmail.com>
532
533 * w32.c (get_emacs_configuration_options): Fix previous change.
534
535 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
536
537 * insdel.c (prepare_to_modify_buffer): Ensure the mark marker is
538 alive before using it (Bug#6977).
539
540 2010-09-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
541
542 * xdisp.c (face_before_or_after_it_pos): EMACS_INT/int fixup.
543
544 * dispextern.h: EMACS_INT/int fixup.
545
546 * xdisp.c (string_pos_nchars_ahead, init_iterator): EMACS_INT/int
547 fixup.
548
549 * xrdb.c (magic_file_p): EMACS_INT/int fixup.
550
551 2010-09-25 Eli Zaretskii <eliz@gnu.org>
552
553 * window.c (Fpos_visible_in_window_p, Fdelete_other_windows)
554 (Fselect_window, window_scroll_pixel_based)
555 (window_scroll_line_based, Frecenter, Fset_window_configuration):
556 Use EMACS_INT for buffer positions.
557
558 * textprop.c (validate_interval_range, interval_of)
559 (property_change_between_p, Fadd_text_properties)
560 (set_text_properties_1, Fremove_text_properties)
561 (Fremove_list_of_text_properties, Ftext_property_any)
562 (Ftext_property_not_all, copy_text_properties)
563 (text_property_list, extend_property_ranges)
564 (verify_interval_modification): Use EMACS_INT for buffer
565 positions.
566
567 * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT
568 for buffer positions.
569
570 * process.c (read_process_output, send_process)
571 (Fprocess_send_region, status_notify): Use EMACS_INT for buffer
572 and string positions and size.
573
574 * print.c (print_object, print_string, strout): Use EMACS_INT for
575 string indices.
576
577 * minibuf.c (string_to_object): Use EMACS_INT for string position
578 and size.
579
580 * marker.c (verify_bytepos): Use EMACS_INT for buffer positions.
581
582 * lread.c <read_from_string_index, read_from_string_index_byte>
583 <read_from_string_limit, readchar_count>: Define EMACS_INT.
584 (readchar, unreadchar, read_internal_start): Use EMACS_INT for
585 buffer positions and string length.
586
587 * keyboard.c <last_point_position, last_non_minibuf_size>: Declare
588 EMACS_INT.
589 (echo_truncate, adjust_point_for_property, read_char)
590 (gen_help_event, make_lispy_event, modify_event_symbol)
591 (Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT
592 for buffer positions and string length.
593
594 * keyboard.h (gen_help_event): Adjust prototype.
595
596 * termhooks.h <struct input_event>: Make `code' member EMACS_INT.
597
598 * commands.h <last_point_position>: Declare EMACS_INT.
599
600 * xdisp.c <help_echo_pos>: Define as EMACS_INT.
601 (truncate_echo_area): Accept EMACS_INT argument.
602
603 * dispextern.h <help_echo_pos>: Declare EMACS_INT.
604
605 * lisp.h (truncate_echo_area): Adjust prototype.
606
607 * composite.c (composition_adjust_point): Return EMACS_INT.
608
609 * composite.h (composition_adjust_point): Adjust prototype.
610
611 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
612
613 * process.c (Fmake_network_process): When arg :host is 'local,
614 use address 127.0.0.1, not name "localhost". (Bug#6781)
615
616 2010-09-24 Eli Zaretskii <eliz@gnu.org>
617
618 * indent.c (Fcurrent_indentation, indented_beyond_p)
619 (compute_motion): Use EMACS_INT for buffer position variables.
620
621 * lisp.h (indented_beyond_p): Adjust prototype.
622
623 * buffer.c (overlay_strings): Return EMACS_INT.
624
625 * buffer.h (overlay_strings): Adjust prototype.
626
627 * region-cache.c (pp_cache): Adjust format to arguments.
628
629 * eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT.
630 (call_debugger): Use EMACS_INT for specpdl_size related variables.
631 (verror): Use EMACS_INT for size of allocated buffer.
632
633 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer
634 positions.
635
636 * xdisp.c (redisplay_internal, try_window_id)
637 (set_cursor_from_row, find_first_unchanged_at_end_row): Use
638 EMACS_INT for buffer positions.
639
640 * dispextern.h (set_cursor_from_row): Adjust prototype.
641
642 * dispnew.c (increment_matrix_positions)
643 (increment_row_positions, copy_glyph_row_contents)
644 (mode_line_string, marginal_area_string): Use EMACS_INT for buffer
645 positions.
646
647 * dispextern.h (mode_line_string, marginal_area_string)
648 (increment_matrix_positions, increment_row_positions): Adjust
649 prototypes.
650
651 * data.c (Faref, Faset): Use EMACS_INT for string length and
652 positions.
653
654 * cmds.c (internal_self_insert): Use EMACS_INT for the count of
655 characters to insert.
656
657 * ccl.c (Fccl_execute_on_string): Use EMACS_INT for string
658 position and size.
659
660 * syntax.c (scan_words, update_syntax_table)
661 (prev_char_comend_first, back_comment, skip_chars)
662 (skip_syntaxes, Fforward_comment, Fbackward_prefix_chars): Use
663 EMACS_INT for buffer and string positions.
664
665 * syntax.h (scan_words, update_syntax_table): Adjust prototypes.
666
667 * casefiddle.c (operate_on_word): Use EMACS_INT for buffer
668 positions.
669
670 2010-09-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
671
672 * scroll.c (calculate_scrolling, line_ins_del)
673 (calculate_direct_scrolling, scroll_cost): Fix EMACS_INT/int
674 conversion.
675
676 * region-cache.c (move_cache_gap, set_cache_region, pp_cache)
677 (region_cache_backward, region_cache_forward)
678 (revalidate_region_cache, set_cache_region): FIX EMACS_INT/int
679 conversion.
680
681 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
682
683 * eval.c (verror): Fix EMACS_INT/int conversion.
684
685 * print.c (PRINTDECLARE, PRINTPREPARE, strout, print_string)
686 (print_preprocess, print_check_string_charset_prop)
687 (print_object): Fix EMACS_INT/int conversion.
688
689 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
690
691 2010-09-24 Eli Zaretskii <eliz@gnu.org>
692
693 * callproc.c (Fcall_process): Use EMACS_INT for count of
694 characters read from the subprocess.
695
696 * bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
697 positions.
698 (bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
699 positions.
700
701 * buffer.c (struct sortvec): Use EMACS_INT for buffer positions.
702 (struct sortstrlist, overlay_str_len): Use EMACS_INT for string
703 length.
704 (advance_to_char_boundary, Fset_buffer_multibyte)
705 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
706 (overlay_touches_p, record_overlay_string, overlay_strings)
707 (recenter_overlay_lists, fix_start_end_in_overlays)
708 (modify_overlay, Fmove_overlay, report_overlay_modification)
709 (evaporate_overlays): Use EMACS_INT for buffer positions.
710
711 * lisp.h (fix_start_end_in_overlays, overlay_touches_p): Adjust
712 prototypes.
713
714 * dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
715 positions.
716
717 * fns.c (Fcompare_strings, Fstring_lessp, concat)
718 (string_make_unibyte, Fstring_as_unibyte, Fsubstring)
719 (Fsubstring_no_properties, substring_both, Ffillarray)
720 (Fclear_string, mapcar1, Fmapconcat, Fmapcar, Fmapc)
721 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
722 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
723 (Fmd5): Use EMACS_INT for buffer and string positions and length
724 variables and arguments.
725
726 * lisp.h (substring_both): Adjust prototype.
727
728 2010-09-24 Juanma Barranquero <lekktu@gmail.com>
729
730 Remove W32 API function pointer unused since 2005-02-15 (revno 2005-02-15T23:19:26Z!jasonr@gnu.org).
731 * w32fns.c (clipboard_sequence_fn): Don't declare.
732 (globals_of_w32fns): Don't initialize it.
733
734 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
735
736 * syntax.c (back_comment): Detect the case where a 1-char comment
737 starter is also the 2nd char of a 2-char comment ender.
738
739 2010-09-23 Jan Djärv <jan.h.d@swipnet.se>
740
741 * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
742
743 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
744
745 * eval.c (verror): EMACS_INT/int cleanup.
746
747 * lisp.h (SPECPDL_INDEX): Cast to int, since we're not going to
748 unwind_protect more than 2GB worth of functions.
749
750 * editfns.c (Finsert_char): EMACS_INT/int cleanup.
751
752 * lisp.h: Have oblookup take EMACS_INT to allow interning big
753 string and avoid compiler warnings.
754 (USE_SAFE_ALLOCA): Cast to int to avoid compilation warnings in
755 all users.
756
757 * lread.c (oblookup): EMACS_INT/int cleanup.
758
759 * cmds.c (Fforward_line, Fdelete_char): EMACS_INT/int cleanup.
760
761 2010-09-23 Eli Zaretskii <eliz@gnu.org>
762
763 * editfns.c (clip_to_bounds): Return an EMACS_INT value.
764
765 * lisp.h (clip_to_bounds): Adjust prototype.
766
767 * intervals.c (adjust_for_invis_intang): Return EMACS_INT value.
768
769 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
770
771 * lisp.h: doprnt.c EMACS_INT/int cleanup.
772
773 * doprnt.c (doprnt): EMACS_INT/int cleanup.
774
775 * doc.c (Fsnarf_documentation, get_doc_string): EMACS_INT/int
776 cleanup.
777
778 * lisp.h: Change the definition of all marker.c functions that
779 take and return buffer stuff to be EMACS_INT instead of int.
780
781 * marker.c (buf_charpos_to_bytepos, CONSIDER, set_marker_both)
782 (buf_charpos_to_bytepos, bytepos_to_charpos)
783 (buf_bytepos_to_charpos, Fbuffer_has_markers_at)
784 (set_marker_restricted, set_marker_both): Convert int to EMACS_INT
785 for all buffer positions.
786
787 2010-09-23 Chong Yidong <cyd@stupidchicken.com>
788
789 * intervals.c (traverse_intervals, rotate_right, rotate_left)
790 (split_interval_right, find_interval, next_interval)
791 (delete_node, delete_interval, interval_deletion_adjustment)
792 (adjust_intervals_for_deletion, merge_interval_right)
793 (merge_interval_left, graft_intervals_into_buffer)
794 (copy_intervals): Convert EMACS_UINTs to EMACS_INT.
795
796 * intervals.h (traverse_intervals): Update prototype.
797
798 2010-09-23 Eli Zaretskii <eliz@gnu.org>
799
800 * indent.c (compute_motion): Use EMACS_INT for arguments to
801 region_cache_forward.
802
803 * region-cache.c (struct boundary, struct region_cache): Use
804 EMACS_INT for positions.
805 (find_cache_boundary, move_cache_gap, insert_cache_boundary)
806 (delete_cache_boundaries, set_cache_region)
807 (invalidate_region_cache, know_region_cache)
808 (region_cache_forward, region_cache_backward, pp_cache): Use
809 EMACS_INT for buffer positions.
810
811 * region-cache.h (know_region_cache, invalidate_region_cache)
812 (region_cache_forward, region_cache_backward): Adjust prototypes.
813
814 * search.c (string_match_1, fast_c_string_match_ignore_case)
815 (looking_at_1, scan_buffer, scan_newline)
816 (find_next_newline_no_quit, find_before_next_newline)
817 (search_command, trivial_regexp_p, search_buffer, simple_search)
818 (boyer_moore, wordify, Freplace_match): Use EMACS_INT for buffer
819 and string positions and length.
820
821 * lisp.h (scan_buffer, scan_newline, find_next_newline_no_quit)
822 (find_before_next_newline): Adjust prototypes.
823
824 * editfns.c (transpose_markers, update_buffer_properties)
825 (buildmark, clip_to_bounds, Fgoto_char, overlays_around)
826 (get_pos_property, Fconstrain_to_field)
827 (Fline_beginning_position, Fline_end_position, Fprevious_char)
828 (Fchar_after, Fchar_before, Finsert_char)
829 (Finsert_buffer_substring, Fcompare_buffer_substrings)
830 (Fsubst_char_in_region, Fformat, Ftranspose_regions): Use
831 EMACS_INT for buffer and string position variables.
832 (Finsert_char): Protect against too large insertions.
833
834 * lisp.h (clip_to_bounds): Adjust prototype.
835
836 * intervals.c (traverse_intervals, rotate_right, rotate_left)
837 (balance_an_interval, split_interval_right, split_interval_left)
838 (find_interval, next_interval, update_interval)
839 (adjust_intervals_for_insertion, delete_node, delete_interval)
840 (interval_deletion_adjustment, adjust_intervals_for_deletion)
841 (offset_intervals, merge_interval_right, merge_interval_left)
842 (graft_intervals_into_buffer, adjust_for_invis_intang)
843 (move_if_not_intangible, get_local_map, copy_intervals)
844 (copy_intervals_to_string, compare_string_intervals)
845 (set_intervals_multibyte_1): Use EMACS_INT for buffer positions
846 and for interval tree size.
847
848 * intervals.h (traverse_intervals, split_interval_right)
849 (split_interval_left, find_interval, offset_intervals)
850 (graft_intervals_into_buffer, copy_intervals)
851 (copy_intervals_to_string, move_if_not_intangible, get_local_map)
852 (update_interval): Adjust prototypes.
853
854 * xdisp.c (check_point_in_composition, reconsider_clip_changes):
855 Use EMACS_INT for buffer position variables and arguments.
856
857 * composite.c (get_composition_id, find_composition)
858 (run_composition_function, compose_text)
859 (composition_gstring_width, autocmp_chars)
860 (composition_update_it, Ffind_composition_internal): Use EMACS_INT
861 for buffer positions and string length variables and arguments.
862
863 * composite.h (get_composition_id, find_composition, compose_text)
864 (composition_gstring_width): Adjust prototypes.
865
866 * editfns.c (Fformat): Use EMACS_INT for string size variables.
867
868 * xdisp.c (store_mode_line_noprop, display_mode_element): Use
869 EMACS_INT for string positions.
870
871 * intervals.c (get_property_and_range): Use EMACS_INT for buffer
872 position arguments.
873
874 * intervals.h (get_property_and_range): Adjust prototype.
875
876 * character.c (parse_str_as_multibyte, str_as_multibyte)
877 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
878 (string_count_byte8, string_escape_byte8, c_string_width)
879 (strwidth, lisp_string_width, multibyte_chars_in_text): Use
880 EMACS_INT for string length variables and arguments.
881
882 * character.h (parse_str_as_multibyte, str_as_multibyte)
883 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
884 (c_string_width, strwidth, lisp_string_width): Adjust
885 prototypes.
886
887 * font.c (font_intern_prop): Use EMACS_INT for string length
888 variables.
889
890 * font.c (font_intern_prop): Use EMACS_INT for string length
891 variables.
892
893 * fns.c (Fstring_as_multibyte): Use EMACS_INT for string length
894 variables.
895
896 * alloc.c <total_string_size>: Declare as EMACS_INT, not int.
897 (Fmake_string): Protect against too large strings.
898 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
899 (live_misc_p): Use ptrdiff_t instead of int for pointer
900 differences.
901 (string_bytes, check_sblock, check_string_free_list)
902 (allocate_string_data, compact_small_strings, Fmake_string)
903 (Fmake_bool_vector, make_string, make_unibyte_string)
904 (make_multibyte_string, make_string_from_bytes)
905 (make_specified_string_string, Fmake_list, Fmake_vector): Use
906 EMACS_INT for string length variables and arguments.
907 (find_string_data_in_pure, make_pure_string, make_pure_c_string)
908 (Fpurecopy): Use EMACS_INT for string size.
909 (mark_vectorlike, mark_char_table, mark_object): Use EMACS_UINT
910 for vector size.
911
912 * lisp.h (make_string, make_unibyte_string, make_multibyte_string)
913 (make_string_from_bytes, make_specified_string_string)
914 (make_pure_string, string_bytes, check_point_in_composition):
915 Adjust prototypes.
916
917 2010-09-22 Eli Zaretskii <eliz@gnu.org>
918
919 * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal)
920 (check_translation): Use EMACS_INT for buffer positions and
921 length.
922
923 * undo.c (record_marker_adjustment, record_delete)
924 (record_change, record_point, record_insert)
925 (record_property_change, Fprimitive_undo): Use EMACS_INT for
926 buffer positions.
927
928 * lisp.h (record_marker_adjustment, record_delete)
929 (record_change, record_point, record_insert)
930 (record_property_change, Fprimitive_undo): Adjust prototypes.
931
932 2010-09-22 Juanma Barranquero <lekktu@gmail.com>
933 Eli Zaretskii <eliz@gnu.org>
934
935 * w32.c (get_emacs_configuration_options): Fix buffer overrun.
936
937 2010-09-22 Eli Zaretskii <eliz@gnu.org>
938
939 * minibuf.c (Fminibuffer_contents)
940 (Fminibuffer_contents_no_properties)
941 (Fminibuffer_completion_contents): Use EMACS_INT for minibuffer
942 positions.
943
944 * keyboard.c (command_loop_1): Use EMACS_INT to compare point with
945 mark.
946
947 * alloc.c (make_uninit_string, make_uninit_multibyte_string)
948 (allocate_string_data): Accept EMACS_INT for string length.
949
950 * editfns.c (Ffield_string, Ffield_string_no_properties)
951 (make_buffer_string, make_buffer_string_both, Fbuffer_substring)
952 (Fbuffer_substring_no_properties, find_field, Fdelete_field)
953 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
954 (Ffield_end): Use EMACS_INT for buffer positions.
955
956 * insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare
957 point with mark.
958
959 * lisp.h (allocate_string_data, make_uninit_string)
960 (make_uninit_multibyte_string, make_buffer_string)
961 (make_buffer_string_both): Adjust prototypes.
962
963 2010-09-22 Chong Yidong <cyd@stupidchicken.com>
964
965 * xml.c: Switch to GNU indentation.
966 (make_dom): Change parse tree format to match xml.el.
967 (Fxml_parse_html_string_internal): Rename from html-parse-string.
968 (Fxml_parse_string_internal): Rename from xml-parse-string.
969
970 2010-09-22 Kenichi Handa <handa@m17n.org>
971
972 * xdisp.c (compute_stop_pos): Call composition_compute_stop_pos
973 only if we are not at a composition.
974 (set_iterator_to_next): Give it->end_charpos to
975 composition_compute_stop_pos.
976 (set_iterator_to_next, next_element_from_buffer): Likewise.
977
978 * dispnew.c (buffer_posn_from_coords): Fix position when the
979 current display element is a grapheme cluster in bidi-reordered
980 region.
981
982 2010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
983
984 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
985 the regions may overlap.
986
987 2010-09-21 Juanma Barranquero <lekktu@gmail.com>
988
989 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
990
991 2010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
992
993 * emacs.c: Do not include sys/ioctl.h, not needed.
994
995 * doprnt.c: Do not include stdlib.h, config.h does it.
996 Move #include before macro definition.
997
998 2010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
999
1000 * Makefile.in (temacs): Link using $(CC) not $(LD).
1001 (LD_FIRSTFLAG): Define using autoconf.
1002 (LD): Remove.
1003
1004 Remove HAVE_TERMIOS definitions.
1005 * s/usg5-4-common.h (HAVE_TERMIOS):
1006 * s/template.h (HAVE_TERMIOS):
1007 * s/gnu-linux.h (HAVE_TERMIOS):
1008 * s/darwin.h (HAVE_TERMIOS):
1009 * s/cygwin.h (HAVE_TERMIOS):
1010 * s/bsd-common.h (HAVE_TERMIOS):
1011 * s/aix4-2.h (HAVE_TERMIOS):
1012 * s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
1013 defined on all non-MS platforms.
1014 (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
1015
1016 * xterm.c (xt_action_hook): Use const.
1017
1018 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
1019
1020 Don't make W32 code conditional on HAVE_SOCKETS, it's always defined.
1021 * w32.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
1022 (gethostname) [!HAVE_SOCKETS]: Remove.
1023 (SOCK_REPLACE_HANDLE): Remove macro.
1024 (socket_to_fd, sys_close, _sys_read_ahead, sys_read, sys_write)
1025 (term_ntproc, init_ntproc): Don't conditionalize on HAVE_SOCKETS.
1026 * w32proc.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
1027 (syms_of_ntproc): Don't conditionalize on HAVE_SOCKETS.
1028
1029 2010-09-18 Eli Zaretskii <eliz@gnu.org>
1030
1031 * deps.mk (xml.o): Add dependencies.
1032
1033 * xdisp.c (Fcurrent_bidi_paragraph_direction):
1034 Call bidi_paragraph_init with NO_DEFAULT_P non-zero. (Bug#7038)
1035
1036 * bidi.c (bidi_paragraph_init): Accept an additional argument
1037 NO_DEFAULT_P; all callers changed. If NO_DEFAULT_P is non-zero,
1038 search back until a paragraph with a strong directional character
1039 is found, and use that to determine paragraph's base direction.
1040
1041 * dispextern.h (bidi_paragraph_init): Update prototype.
1042
1043 2010-09-17 Eli Zaretskii <eliz@gnu.org>
1044
1045 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
1046 of w32api >= 3.15. (Bug#6989)
1047
1048 2010-09-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
1049
1050 * process.c (wait_reading_process_output): Don't message about
1051 accept-process-output unless the time limit really is zero.
1052
1053 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1054
1055 * frame.c (Ftool_bar_pixel_width): YAILOM (Yet another
1056 int/Lisp_Object mixup).
1057
1058 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
1059
1060 * keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL
1061 not HELP.
1062
1063 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
1064
1065 * frame.c (Ftool_bar_pixel_width): New function to expose tool
1066 bar's pixel width to Lisp (Bug#7048).
1067
1068 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
1069
1070 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
1071
1072 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
1073
1074 * gtkutil.c (xg_pack_tool_bar): Call gtk_handle_box_set_handle_position
1075 with argument top/left if tool bar is vertical/horizontal (Bug#7051).
1076
1077 2010-09-17 Kenichi Handa <handa@m17n.org>
1078
1079 * ftfont.c (ftfont_check_otf): Fix previous change.
1080
1081 2010-09-14 Kenichi Handa <handa@m17n.org>
1082
1083 * ftfont.c (ftfont_check_otf): Fix the case of checking just
1084 existence of GSUB or GPOS.
1085
1086 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
1087
1088 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
1089
1090 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
1091
1092 * xml.c (parse_buffer): Renamed to parse_string(), since that's
1093 what it does.
1094 (parse_string): Return nil when the document can't be parsed.
1095
1096 2010-09-14 Jan Djärv <jan.h.d@swipnet.se>
1097
1098 * xterm.c (get_current_vm_state): New function.
1099 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
1100 want_fullscreen so set_wm_state calls are few (Bug#7013).
1101 (x_handle_net_wm_state): Move code to get_current_vm_state and
1102 call that function.
1103
1104 2010-09-14 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
1105
1106 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
1107
1108 2010-09-14 Kenichi Handa <handa@m17n.org>
1109
1110 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
1111 we may use designation or locking-shift.
1112
1113 2010-09-14 Kenichi Handa <handa@m17n.org>
1114
1115 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
1116 sequence when the source is multibyte.
1117
1118 2010-09-14 Andreas Schwab <schwab@linux-m68k.org>
1119
1120 * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last change.
1121 Don't make first argument optional. Doc fix.
1122
1123 2010-09-14 Leo <sdl.web@gmail.com> (tiny change)
1124
1125 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
1126 parameters for the doc string.
1127
1128 2010-09-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
1129
1130 * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
1131
1132 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1133
1134 * fns.c (Fy_or_n_p): Move to lisp/subr.el.
1135 (syms_of_fns): Don't defsubr Sy_or_n_p.
1136 * lisp.h: Don't declare Fy_or_n_p.
1137 * fileio.c (barf_or_query_if_file_exists): Fy_or_n_p -> y-or-n-p.
1138
1139 2010-09-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
1140
1141 * xml.c (Fxml_parse_buffer): New function to parse XML files.
1142
1143 2010-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
1144
1145 * xml.c: New file.
1146 (Fhtml_parse_buffer): New function to interface to the libxml2
1147 html parsing function.
1148
1149 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
1150
1151 * biditype.h: Regenerate.
1152
1153 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
1154
1155 * nsimage.m (ns_load_image): Check argument types.
1156
1157 * image.c: Remove all uses of gcpro.
1158 (xpm_load): Check all lisp types.
1159 (pbm_load): Likewise.
1160 (png_load): Likewise.
1161 (jpeg_load): Likewise.
1162 (tiff_load): Likewise.
1163 (gif_load): Likewise.
1164 (imagemagick_load_image): Likewise.
1165 (imagemagick_load): Likewise.
1166 (svg_load): Likewise.
1167 (gs_load): Likewise.
1168
1169 2010-09-04 Eli Zaretskii <eliz@gnu.org>
1170
1171 * w32uniscribe.c (uniscribe_shape): Update commentary. Don't
1172 try to reorder grapheme clusters, since LGSTRING should always
1173 hold them in the logical order.
1174 (uniscribe_encode_char, uniscribe_shape): Force ScriptShape to
1175 return glyph codes in the logical order.
1176
1177 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
1178
1179 * image.c (imagemagick_image_p): Replace bcopy by memcpy.
1180 (imagemagick_load_image): Fix type mismatch.
1181 (Fimagemagick_types): Likewise. Doc fix.
1182
1183 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
1184
1185 * xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
1186
1187 * xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
1188
1189 * xselect.c: Remove declaration of cut-buffer objects and functions.
1190 (symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
1191 (x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
1192 (Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
1193 (Fx_rotate_cut_buffers_internal): Remove.
1194 (syms_of_xselect): Remove defsubr of above.
1195 Remove intern of QCUT_BUFFERn.
1196
1197 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
1198
1199 * cmds.c (Vblink_paren_function): Remove.
1200 (internal_self_insert): Make it insert N chars at a time.
1201 Don't call blink-paren-function.
1202 (Fself_insert_command): Adjust accordingly.
1203 (syms_of_cmds): Don't declare blink-paren-function.
1204
1205 2010-08-31 Kenichi Handa <handa@m17n.org>
1206
1207 * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
1208 characters.
1209
1210 * term.c (encode_terminal_code): Fix the previous change.
1211 (produce_glyphs): Don't set it->char_to_display here.
1212 Don't handle unibyte-display-via-language-environment here.
1213 (produce_special_glyphs): Set temp_it.char_to_display before
1214 calling produce_glyphs.
1215
1216 * xdisp.c (get_next_display_element): Set it->char_to_display
1217 here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit
1218 characters.
1219 (get_overlay_arrow_glyph_row): Set it.char_to_display too before
1220 calling PRODUCE_GLYPHS.
1221 (append_space_for_newline): Save and store it->char_to_display.
1222 Set it->char_to_display before calling PRODUCE_GLYPHS.
1223 (extend_face_to_end_of_line): Set it->char_to_display before
1224 calling PRODUCE_GLYPHS.
1225 (get_glyph_face_and_encoding): Set the glyph code an 8-bit
1226 character to its byte value.
1227 (get_char_glyph_code): New function.
1228 (produce_stretch_glyph): Set it2.char_to_display too before
1229 calling x_produce_glyphs.
1230 (x_produce_glyphs): Simplify by using the same code for ASCII and
1231 non-ASCII characters. Don't set it->char_to_display here.
1232 Don't handle unibyte-display-via-language-environment here. For a
1233 character of no glyph, use font->space_width instead of FONT_WIDTH.
1234
1235 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
1236
1237 * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
1238
1239 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
1240
1241 * keyboard.c (command_loop_1): Don't call x-set-selection on tty.
1242
1243 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
1244
1245 * marker.c (Fcopy_marker): Make the first arg optional.
1246
1247 2010-08-30 Kenichi Handa <handa@m17n.org>
1248
1249 * composite.c (composition_update_it): Fix computing of
1250 cmp_it->width.
1251
1252 2010-08-29 Kenichi Handa <handa@m17n.org>
1253
1254 * term.c (encode_terminal_code): Encode byte chars to the
1255 corresponding bytes.
1256
1257 2010-08-29 Jan Djärv <jan.h.d@swipnet.se>
1258
1259 * nsterm.m (ns_draw_window_cursor): Draw BAR_CURSOR correct for R2L.
1260
1261 2010-08-26 Kenichi Handa <handa@m17n.org>
1262
1263 * xdisp.c (compute_stop_pos): Pay attention to bidi scan direction
1264 on calling composition_compute_stop_pos.
1265
1266 2010-08-25 Kenichi Handa <handa@m17n.org>
1267
1268 * fontset.c (reorder_font_vector): Prefer a font-spec specifying
1269 :otf.
1270
1271 * composite.c (composition_compute_stop_pos): Don't break
1272 composition at PT.
1273 (composition_reseat_it): Likewise. Fix calculation of character
1274 position starting a composition.
1275 (Fcomposition_get_gstring): Don't limit the number of components
1276 for automatic composition.
1277
1278 2010-08-25 Kenichi Handa <handa@m17n.org>
1279
1280 * composite.c (composition_compute_stop_pos): In forward search,
1281 pay attention to the possibility that some character after ENDPOS
1282 will be composed with charactrs before ENDPOS.
1283
1284 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
1285
1286 * keyboard.c (command_loop_1): Don't clobber primary selection
1287 during handle-switch-frame (Bug#6872).
1288
1289 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
1290
1291 * dbusbind.c: Accept UNIX domain sockets as bus address.
1292 (Fdbus_close_bus): New function.
1293 (Vdbus_registered_buses): New variable.
1294 (xd_initialize): Implement string as bus address.
1295 (Fdbus_init_bus): Add bus to Vdbus_registered_buses).
1296 (Fdbus_get_unique_name, Fdbus_call_method)
1297 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
1298 (Fdbus_method_error_internal, Fdbus_send_signal)
1299 (Fdbus_register_signal, Fdbus_register_method): Remove bus type
1300 check. This is done in xd_initialize_bus. Adapt doc string, if
1301 necessary.
1302 (xd_pending_messages, xd_read_queued_messages): Loop over buses in
1303 Vdbus_registered_buses.
1304 (Vdbus_registered_objects_table): Create hash.
1305
1306 2010-08-22 Juri Linkov <juri@jurta.org>
1307
1308 * keyboard.c (Fexecute_extended_command): Move reading a command name
1309 with `completing-read' to a new Elisp function `read-extended-command'.
1310 Call it to read a command to `function' (bug#5364, bug#5214).
1311
1312 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1313
1314 * emacs.c (main): Remove handling of --unibyte arg (Bug#6886).
1315
1316 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
1317
1318 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
1319 instead of SAFE_ALLOCA.
1320
1321 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
1322
1323 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
1324 (Bug#6214).
1325
1326 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
1327
1328 * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
1329
1330 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
1331
1332 * doc.c (Fsnarf_documentation): Initialize skip_file before
1333 build-files test.
1334
1335 2010-08-22 Peter O'Gorman <pogma@thewrittenword.com> (tiny change)
1336
1337 * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
1338 New definitions.
1339 (HAVE_TERMIO): Remove.
1340
1341 2010-08-22 Eli Zaretskii <eliz@gnu.org>
1342
1343 * deps.mk (sysdep.o, msdos.o): Depend on sysselect.h.
1344
1345 * sysselect.h [WINDOWSNT]: Don't define the FD_* and select stuff
1346 for w32.
1347
1348 * s/ms-w32.h (HAVE_SYS_TIMEB_H): Don't #undef HAVE_SYS_SELECT_H,
1349 it's done in nt/config.nt.
1350
1351 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on sysselect.h.
1352
1353 * unexcoff.c (report_error, make_hdr, write_segment)
1354 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
1355 Convert argument lists and prototypes to ANSI C.
1356 (make_hdr, write_segment): Remove unused variables.
1357 (unexec): Remove commented-out line. Initialize `new' to shut up
1358 compiler warnings.
1359
1360 2010-08-22 Dan Nicolaescu <dann@ics.uci.edu>
1361
1362 Simplify termio code.
1363 All non-MSDOS non-WINDOWSNT platforms define HAVE_TERMIOS, so
1364 HAVE_TERMIO code is obsolete.
1365 Replace HAVE_TERMIOS conditionals with !DOS_NT.
1366 * systty.h: Do not define HAVE_TCATTR.
1367 Remove HAVE_TERMIO, HAVE_LTCHARS and HAVE_TCHARS code.
1368 Do not define EMACS_HAVE_TTY_PGRP. Only define
1369 EMACS_GET_TTY_PGRP for !DOS_NT.
1370 * sysdep.c: Include sysselect.h unconditionally. Do not include
1371 sys/ioctl.h and termios.h, systty.h does it. Use
1372 HAVE_SYS_UTSNAME_H instead of USG as an include guard.
1373 (init_baud_rate): Remove HAVE_TERMIO code.
1374 (child_setup_tty): Remove HAVE_TERMIO code.
1375 (emacs_get_tty, emacs_set_tty): Remove HAVE_TERMIO, HAVE_TCHARS
1376 and HAVE_LTCHARS code. Use !DOS_NT instead of HAVE_TCATTR.
1377 (new_ltchars, new_tchars): Remove, unused.
1378 (init_sys_modes): Remove HAVE_TERMIO, HAVE_TCHARS and HAVE_LTCHARS
1379 code. Remove special casing for __mips__, it was a no-op. Remove
1380 HAVE_TCATTR conditional, it is implied by HAVE_TERMIOS.
1381 (init_sys_modes): Remove HPUX special case.
1382 * process.c: Include stdlib.h unconditionally. Do not include
1383 fcntl.h, systty.h does it. Remove conditional code for
1384 HAVE_SERIAL, it is always true.
1385 (process_send_signal): Remove HAVE_TERMIOS conditional, it's
1386 always true when SIGNALS_VIA_CHARACTERS is true.
1387 (Fcontinue_process, Fprocess_send_eof): Simplify conditionals:
1388 !WINDOWSNT means HAVE_TERMIOS.
1389 (create_process): Remove HAVE_TERMIOS, it's inside a HAVE_PTYS
1390 conditional, which is true for all HAVE_TERMIOS systems.
1391 * keyboard.c (init_keyboard): Do not use HAVE_TERMIO, use !DOS_NT
1392 instead of HAVE_TERMIOS.
1393 * emacs.c (shut_down_emacs): Use !defined DOS_NT instead of
1394 EMACS_HAVE_TTY_PGRP.
1395 * callproc.c (child_setup): Move EMACS_SET_TTY_PGRP use to the
1396 non-MSDOS, non-WINDOWSNT code, it's only defined for such systems
1397 anyway.
1398
1399 2010-08-21 Eli Zaretskii <eliz@gnu.org>
1400
1401 * dispnew.c (buffer_posn_from_coords): Fix off-by-one error in
1402 mirroring pixel positions.
1403
1404 2010-08-20 Dan Nicolaescu <dann@ics.uci.edu>
1405
1406 * alloc.c (malloc_sbrk_used, malloc_sbrk_unused): Remove,
1407 write only.
1408 (init_alloc_once): Remove writes to malloc_sbrk_unused, and
1409 malloc_sbrk_used, nothing uses them.
1410
1411 * puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
1412 defined, unconditionally defined in lisp.h.
1413
1414 * term.c: Do not include <termios.h>, systty.h does it.
1415
1416 * s/unixware.h (HAVE_TCATTR):
1417 * s/aix4-2.h (HAVE_TCATTR): Remove definitions, not needed.
1418 systty.h defines it when HAVE_TERMIOS is defined.
1419
1420 2010-08-20 Eli Zaretskii <eliz@gnu.org>
1421
1422 * dispnew.c (buffer_posn_from_coords): Fix last change for text
1423 terminals: add one-character offset for R2L lines.
1424
1425 * emacs.c <emacs_version>: Add a comment regarding
1426 msdos/mainmake.v2's dependency on the syntax of this declaration.
1427
1428 2010-08-20 Eli Zaretskii <eliz@gnu.org>
1429
1430 * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer
1431 position for R2L lines by mirroring the pixel position wrt the
1432 text are box. Improve commentary.
1433
1434 2010-08-20 Andreas Schwab <schwab@linux-m68k.org>
1435
1436 * image.c (imagemagick_clear_image): Remove debugging output.
1437
1438 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
1439
1440 * cmds.c (Vself_insert_face, Vself_insert_face_command): Remove.
1441 (Qpost_self_insert_hook, Vpost_self_insert_hook): New vars.
1442 (internal_self_insert): Run Qpost_self_insert_hook rather than handle
1443 self-insert-face.
1444 (syms_of_cmds): Initialize the new vars.
1445
1446 2010-08-19 Jason Rumney <jasonr@gnu.org>
1447
1448 * w32menu.c (set_frame_menubar): Remove call to undefined function.
1449
1450 * w32fns.c (w32_wnd_proc): Don't check context before initializing.
1451
1452 2010-08-19 Jan Djärv <jan.h.d@swipnet.se>
1453
1454 * nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".
1455
1456 2010-08-18 Eli Zaretskii <eliz@gnu.org>
1457
1458 * xterm.c (x_draw_bar_cursor):
1459 * w32term.c (x_draw_bar_cursor): If the character under cursor is
1460 R2L, draw the bar cursor on its right rather than on its left.
1461
1462 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
1463
1464 * eval.c (Fdefmacro): Only obey one declaration.
1465
1466 * casefiddle.c (casify_region): Setup gl_state.
1467
1468 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
1469
1470 * nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
1471
1472 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
1473
1474 * gtkutil.c (update_frame_tool_bar): Literal strings are const char*.
1475
1476 2010-08-18 David De La Harpe Golden <david@harpegolden.net>
1477
1478 * nsselect.m (QCLIPBOARD, NXPrimaryPboard): Define.
1479 (symbol_to_nsstring): Map QCLIPBOARD => NSGeneralPboard,
1480 QPRIMARY => NXPrimaryPboard.
1481 (ns_string_to_symbol): NSGeneralPboard => QCLIPBOARD,
1482 NXPrimaryPboard => QPRIMARY.
1483 (nxatoms_of_nsselect): NXPrimaryPboard = PrimarySelection,
1484 NXSecondaryPboard = SecondarySelection.
1485 (syms_of_nsselect): Intern QCLIPBOARD (Bug#6677).
1486
1487 2010-08-18 Joakim Verona <joakim@verona.se>
1488
1489 * image.c: Add support for ImageMagick. When HAVE_IMAGEMAGICK is
1490 defined:
1491 (imagemagick_image_p): New function to test for ImageMagic image.
1492 (imagemagick_load): New function to load ImageMagick image.
1493 (imagemagick_load_image): New function, helper for imagemagick_load.
1494 (imagemagick-types): New function.
1495 (Qimagemagick): New Lisp_object.
1496 (imagemagick-render-type): New variable, decides which renderer to use.
1497
1498 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
1499
1500 * gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
1501 is a string.
1502
1503 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
1504
1505 * nsfns.m (ns_frame_parm_handlers): Add a slot for the
1506 x_set_tool_bar_position handler.
1507
1508 2010-08-17 Eli Zaretskii <eliz@gnu.org>
1509
1510 * w32fns.c <w32_frame_parm_handlers>: Add a slot for the
1511 x_set_tool_bar_position handler, needed to support changes from
1512 2010-07-29T16:49:59Z!jan.h.d@swipnet.se for positioning the tool bar. (Bug#6796)
1513
1514 2010-08-16 Jan Djärv <jan.h.d@swipnet.se>
1515
1516 * nsselect.m: include keyboard.h for QPRIMARY, remove its
1517 declaration (Bug#6863).
1518 (syms_of_nsselect): Don't intern QPRIMARY.
1519
1520 * xselect.c: Remove declaration of QPRIMARY (Bug#6864).
1521
1522 * keyboard.h (QPRIMARY): Declare (Bug#6864).
1523
1524 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
1525
1526 * keyboard.c (command_loop_1): Avoid setting selection twice,
1527 since it's done in deactivate-mark as well.
1528 (Vselect_active_regions): Change default to t. Replace `lazy'
1529 with non-default value `only', meaning only set PRIMARY for
1530 temporarily active regions.
1531
1532 * insdel.c (prepare_to_modify_buffer): Handle `only' value of
1533 select-active-regions.
1534
1535 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
1536
1537 * keyboard.c (parse_tool_bar_item): Put in a bad label if :label
1538 isn't a string.
1539
1540 2010-08-15 Andreas Schwab <schwab@linux-m68k.org>
1541
1542 * keyboard.c (parse_tool_bar_item): Avoid excessive use of strlen.
1543
1544 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
1545
1546 * keyboard.c (parse_tool_bar_item): malloc buf.
1547 Set TOOL_BAR_ITEM_LABEL to empty string if not set to
1548 new_lbl (Bug#6855).
1549
1550 2010-08-14 Eli Zaretskii <eliz@gnu.org>
1551
1552 * xterm.c (x_draw_stretch_glyph_string):
1553 * w32term.c (x_draw_stretch_glyph_string): In R2L rows, display
1554 the cursor on the right edge of the stretch glyph.
1555
1556 * xdisp.c (window_box_right_offset, window_box_right):
1557 Fix commentary.
1558
1559 * xdisp.c (Fcurrent_bidi_paragraph_direction): Fix paragraph
1560 direction when point is inside a run of whitespace characters.
1561
1562 * bidi.c (bidi_at_paragraph_end): Remove obsolete comment.
1563
1564 2010-08-14 Jason Rumney <jasonr@gnu.org>
1565
1566 * keyboard.c (lispy_function_keys): Do not define VK_PACKET (bug#4836)
1567
1568 2010-08-14 Chong Yidong <cyd@stupidchicken.com>
1569
1570 * fns.c (Fmake_hash_table): Doc fix (Bug#6851).
1571
1572 2010-08-13 Jason Rumney <jasonr@gnu.org>
1573
1574 * w32menu.c (simple_dialog_show): Use unicode message box if available.
1575 (MessageBoxW_Proc): New function typedef.
1576 (unicode-message-box): New function pointer.
1577 (globals_of_w32menu): Import it from user32.dll. (Bug#5629)
1578
1579 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
1580
1581 * frame.h (Qtool_bar_position): Declare.
1582
1583 * xfns.c (Fx_create_frame): Call x_default_parameter for
1584 Qtool_bar_position.
1585
1586 2010-08-13 Eli Zaretskii <eliz@gnu.org>
1587
1588 * unexcoff.c: Remove the parts used when "emacs" is not defined.
1589 (report_error, report_error_1): Ditto.
1590 (write_segment): Remove "#if 0" unused code.
1591 (make_hdr): Remove code that was "#ifndef NO_REMAP" before
1592 NO_REMAP was removed (in 2010-07-29T03:25:08Z!dann@ics.uci.edu).
1593 (start_of_text): Remove unused function (was used only if NO_REMAP
1594 was NOT defined).
1595
1596 * msdos.c (IT_set_face): Fix format string to match argument
1597 types.
1598 (IT_write_glyphs, IT_note_mode_line_highlight)
1599 (IT_set_frame_parameters): Remove unused variables.
1600 (x_set_menu_bar_lines): Declare set_menu_bar_lines.
1601 (IT_set_terminal_modes): Disambiguate expression in if clause.
1602 (Fmsdos_remember_default_colors): Return Qnil.
1603 (IT_set_frame_parameters): Add parens to disambiguate boolean
1604 expression for logging the cursor type to termscript.
1605 (keyboard_layout_list, keypad_translate_map)
1606 (grey_key_translate_map): Add braces in inner initializers.
1607 (dos_rawgetc): Add parens in condition for mouse-3 button-press.
1608 (dos_rawgetc): Remove unused label.
1609 (XMenuActivate): Add braces to remove ambiguous `else'.
1610 (dos_ttraw): Always return a value.
1611 (spawnve): Declare.
1612 (run_msdos_command): Cast 3rd arg of spawnve to "char **".
1613
1614 * dosfns.h (x_set_title): Declare.
1615
1616 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
1617 Remove unused variables.
1618
1619 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused
1620 variables.
1621 (init_dosfns): Declare get_lim_data.
1622 (system_process_attributes): Declare Fget_internal_run_time.
1623
1624 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument
1625 list to be consistent with menu.h.
1626
1627 * w32menu.c (add_menu_item, name_is_separator): Shut up compiler
1628 warnings due to mixing of "char *" and "const char *".
1629
1630 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
1631
1632 Introduce a new comment style "c" flag.
1633 * syntax.c (SYNTAX_FLAGS_COMMENT_STYLEB)
1634 (SYNTAX_FLAGS_COMMENT_STYLEC): New macros.
1635 (SYNTAX_FLAGS_COMMENT_STYLE): Use them, add an argument.
1636 (syntax_prefix_flag_p): New function.
1637 (Fstring_to_syntax): Understand new "c" flag.
1638 (Finternal_describe_syntax_value): Recognize new flag; use the
1639 SYNTAX_FLAGS_* macros.
1640 (scan_sexps_forward, Fparse_partial_sexp): Change representation of
1641 comment style to accomodate the new styles.
1642 (back_comment, forw_comment, Fforward_comment, scan_lists)
1643 (scan_sexps_forward): Update code to obey the new comment style flag.
1644
1645 * syntax.h: Move SYNTAX_FLAGS_FOO() macros to syntax.c.
1646
1647 * casefiddle.c (casify_region): Use the new syntax_prefix_flag_p.
1648
1649 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
1650
1651 * xfns.c (x_defined_color): If USE_GTK, call xg_check_special_colors
1652 first.
1653 (Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
1654
1655 * gtkutil.h (xg_check_special_colors): Declare.
1656
1657 * gtkutil.c (xg_check_special_colors, style_changed_cb): New functions.
1658 (xg_create_frame_widgets): Connect theme name changes to
1659 style_changed_cb.
1660
1661 * xterm.c (emacs_class): New char[] for EMACS_CLASS.
1662 (xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class.
1663 (x_term_init): Use char[] display_opt and name_opt instead of
1664 string literal. file is const char*.
1665
1666 * xsmfns.c (NOSPLASH_OPT): Change to char[].
1667 (smc_save_yourself_CB): Do xstrdup on all ->type and ->name for
1668 props. Free them at the end.
1669
1670 * xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "".
1671
1672 * xrdb.c (get_system_app): Make path const and use char *p for
1673 non-const char.
1674
1675 * xmenu.c (Fx_popup_dialog): error_name is const char*.
1676 (xmenu_show): error parameter is const char **. pane_string is const
1677 char *.
1678 (button_names): Is const char *.
1679 (xdialog_show): error_name and pane_string is const.
1680
1681 * process.h (synch_process_death): Is const char*.
1682
1683 * w32menu.c (w32_menu_show):
1684 * nsmenu.m (ns_menu_show): error parameter is const char **.
1685
1686 * menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter
1687 is const char **.
1688
1689 * menu.c (Fx_popup_menu): error_name is const.
1690
1691 * keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean
1692 with unsigned char and XtPointer with void *.
1693
1694 * gtkutil.h: Replace widget_value with struct _widget_value.
1695 (enum button_type, struct _widget_value): Remove and use the one from
1696 keyboard.h.
1697
1698 * gtkutil.c (get_utf8_string): Always return an allocated string.
1699 Parameter is const.
1700 (create_dialog, xg_create_one_menuitem, create_menus)
1701 (xg_item_label_same_p, xg_update_menu_item): Free result from
1702 get_utf8_string.
1703 (xg_separator_p, xg_item_label_same_p): label is const.
1704
1705 * font.h (font_open_by_name): Make name const.
1706
1707 * font.c (font_open_by_name): Make name const.
1708
1709 * floatfns.c (matherr): Use a const char* variable for x->name.
1710
1711 * emacs.c (main): Pass char[] to putenv instead of literal.
1712
1713 * callproc.c (synch_process_death): Make const.
1714 (Fcall_process): Make signame const.
1715
1716 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle)
1717 (addDisplayItemWithImage): Use const char*.
1718
1719 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle)
1720 (addDisplayItemWithImage, update_frame_tool_bar): Use const char*.
1721
1722 * nsfont.m (ns_descriptor_to_entity): Use const char*.
1723
1724 * keyboard.h (_widget_value): name, value and key are const char*.
1725
1726 * unexmacosx.c (unexec_error): Use const char *.
1727
1728 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
1729
1730 * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
1731 (font_parse_name, font_open_by_name):
1732 * font.c (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
1733 (font_parse_name, font_open_by_name): Remove const.
1734
1735 2010-08-09 Andreas Schwab <schwab@linux-m68k.org>
1736
1737 Use autoconf determined WORDS_BIGENDIAN instead of hardcoded
1738 definition.
1739
1740 * m/alpha.h: Don't define/undef WORDS_BIG_ENDIAN.
1741 * m/amdx86-64.h: Likewise.
1742 * m/arm.h: Likewise.
1743 * m/hp800.h: Likewise.
1744 * m/ia64.h: Likewise.
1745 * m/ibmrs6000.h: Likewise.
1746 * m/ibms390.h: Likewise.
1747 * m/intel386.h: Likewise.
1748 * m/iris4d.h: Likewise.
1749 * m/m68k.h: Likewise.
1750 * m/macppc.h: Likewise.
1751 * m/mips.h: Likewise.
1752 * m/sh3.h: Likewise.
1753 * m/sparc.h: Likewise.
1754 * m/template.h: Likewise.
1755 * m/vax.h: Likewise.
1756 * m/xtensa.h: Likewise.
1757 * fringe.c (init_fringe_bitmap): Test WORDS_BIGENDIAN instead of
1758 WORDS_BIG_ENDIAN.
1759 * lisp.h: Likewise.
1760 * md5.c: Likewise.
1761 * sound.c (le2hl, le2hs, be2hl, be2hs): Likewise.
1762
1763 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
1764
1765 Use const char* instead of char*.
1766 Reduce the number of warnings with -Wwrite-strings.
1767 * xrdb.c (get_environ_db, get_system_name):
1768 * unexelf.c (find_section):
1769 * term.c (string_cost, string_cost_one_line, per_line_cost)
1770 (get_named_tty, init_tty):
1771 * sysdep.c (sys_subshell):
1772 * sound.c (sound_perror, sound_warning, vox_open, vox_init)
1773 (alsa_sound_perror, alsa_open, alsa_configure, alsa_init):
1774 * search.c (Freplace_match):
1775 * process.c (Fmake_network_process, send_process, init_process):
1776 * lread.c (Fload, init_lread):
1777 * keymap.c (Fdescribe_buffer_bindings, describe_map_tree):
1778 * keyboard.c (parse_tool_bar_item, struct event_head):
1779 * gtkutil.h (xg_get_font_name):
1780 * gtkutil.c (get_dialog_title, create_dialog, xg_get_font_name)
1781 (make_widget_for_menu_item, make_menu_item, create_menus)
1782 (xg_make_tool_item):
1783 * font.c (parse_matrix, font_parse_name):
1784 * floatfns.c (rounding_driver, float_error_fn_name):
1785 * filelock.c (get_boot_time_1, lock_file_1):
1786 * fileio.c (barf_or_query_if_file_exists, check_writable):
1787 * editfns.c (get_system_name, get_operating_system_release)
1788 (Fencode_time, Fset_time_zone_rule):
1789 * dispextern.h (string_cost, per_line_cost, get_named_tty, init_tty):
1790 * buffer.c (defvar_per_buffer): Use const.
1791
1792 2010-08-08 Kenichi Handa <handa@m17n.org>
1793
1794 * charset.c: Include <stdlib.h>.
1795 (struct charset_sort_data): New struct.
1796 (charset_compare): New function.
1797 (Fsort_charsets): New function.
1798 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
1799
1800 * coding.c (decode_coding_iso_2022): Fix checking of dimension
1801 number in CTEXT extended segment.
1802
1803 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
1804
1805 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
1806 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
1807
1808 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
1809
1810 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
1811 (Fhash_table_size): Fix typos in docstrings.
1812 (Fmake_hash_table): Doc fix.
1813
1814 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
1815
1816 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
1817 Doc fix (bug#5625).
1818
1819 2010-08-08 Ken Brown <kbrown@cornell.edu>
1820
1821 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
1822 the MSDOS definition.
1823
1824 2010-08-08 Dan Nicolaescu <dann@ics.uci.edu>
1825
1826 Use const char* instead of char*.
1827 * xterm.c (x_create_toolkit_scroll_bar):
1828 * xfont.c (xfont_list_pattern):
1829 * xfns.c (x_default_scroll_bar_color_parameter)
1830 (xic_create_fontsetname, x_default_font_parameter)
1831 (x_screen_planes):
1832 * xdisp.c (c_string_pos, number_of_chars, reseat_to_string)
1833 (store_mode_line_string, decode_mode_spec, display_string):
1834 * menu.c (digest_single_submenu):
1835 * keymap.h (initial_define_key, initial_define_lispy_key):
1836 * keymap.c (initial_define_key, initial_define_lispy_key):
1837 * image.c (image_error, image_keyword):
1838 * gtkutil.h (xg_create_widget, xg_create_scroll_bar):
1839 * gtkutil.c (xg_create_widget, xg_create_scroll_bar):
1840 * ftfont.c (struct fc_charset_table, ftfont_spec_pattern)
1841 (ftfont_list, ftfont_match):
1842 * frame.c (frame_parm_table):
1843 * font.h (font_intern_prop, font_parse_xlfd, font_parse_fcname)
1844 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
1845 (font_add_log, font_deferred_log):
1846 * font.c (font_intern_prop, font_parse_xlfd, font_parse_fcname)
1847 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
1848 (font_add_log, font_deferred_log):
1849 * emacs.c (argmatch):
1850 * dispextern.h (struct it):
1851 * coding.c (ENCODE_DESIGNATION):
1852 * charset.c (define_charset_internal): Use const.
1853
1854 * s/freebsd.h (DECLARE_GETPWUID_WITH_UID_T): Remove, unused.
1855
1856 * xrdb.c: Remove include guard.
1857 Remove DECLARE_GETPWUID_WITH_UID_T conditional it had no effect.
1858 Remove #if 0 code. Replace malloc->xmalloc, free->xfree,
1859 realloc->xrealloc instead of using #defines.
1860
1861 2010-08-08 Eli Zaretskii <eliz@gnu.org>
1862
1863 * cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
1864 * editfns.c (Fline_beginning_position, Fline_end_position):
1865 State in the doc strings that start and end of line are in the
1866 logical order.
1867
1868 * xdisp.c (display_line): Move the handling of overlay arrow after
1869 the call to find_row_edges. (Bug#6699)
1870
1871 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
1872
1873 * keyboard.c (command_loop_1):
1874 * insdel.c (prepare_to_modify_buffer): Don't call validate_region.
1875
1876 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
1877
1878 * insdel.c (prepare_to_modify_buffer): Save active region text to
1879 Vsaved_region_selection.
1880
1881 * xselect.c (QPRIMARY): Move to keyboard.c.
1882
1883 * keyboard.c (Vselect_active_regions): Move from simple.el.
1884 (Vsaved_region_selection, Qx_set_selection, QPRIMARY, Qlazy): New vars.
1885 (command_loop_1): Set window selection prior to deactivating the mark.
1886
1887 2010-08-07 Juanma Barranquero <lekktu@gmail.com>
1888
1889 * alloc.c (lisp_malloc):
1890 * buffer.c (set_buffer_internal, set_buffer_internal_1):
1891 * charset.h (emacs_mule_charset):
1892 * dispextern.h (inhibit_free_realized_faces, redraw_frame)
1893 (redraw_garbaged_frames, scroll_cost, update_frame, scrolling)
1894 (bitch_at_user):
1895 * lisp.h (Fcheck_coding_system, Fget_text_property)
1896 (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize):
1897 Remove duplicate declarations.
1898
1899 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
1900
1901 * process.c: Simplify include logic.
1902
1903 * keyboard.h (quit_char): Add declaration.
1904 * process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
1905 (QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary):
1906 Add declarations.
1907 * sysdep.c:
1908 * w32.c: Remove the above declarations.
1909
1910 Remove extern declarations in .c files, .h files have them.
1911 * xterm.c:
1912 * xdisp.c:
1913 * msdos.c:
1914 * image.c:
1915 * gtkutil.c:
1916 * fileio.c:
1917 * eval.c: Remove declarations.
1918
1919 * frame.c (frame_params): Make const.
1920
1921 * lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
1922
1923 * emacs.c (emacs_copyright, emacs_version): Make static.
1924 (Vinitial_window_system, Vauto_save_list_file_name)
1925 (Vinhibit_redisplay): Remove declarations.
1926 (main): Remove HAVE_SHM code, unused. Remove _I386 conditional
1927 for AIX.
1928
1929 Use const for some arrays and functions.
1930 * xterm.h (xg_set_icon_from_xpm_data):
1931 * xfns.c (xg_set_icon_from_xpm_data):
1932 * term.c (fkeys):
1933 * keyboard.c (lispy_accent_keys, lispy_function_keys)
1934 (lispy_multimedia_keys, lispy_kana_keys, iso_lispy_function_keys)
1935 (lispy_drag_n_drop_names, scroll_bar_parts, modify_event_symbol)
1936 (frame.c frame_parms):
1937 * emacs-icon.h (gnu_xpm_bits):
1938 * callint.c (callint_argfuns): Use const.
1939
1940 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
1941
1942 * sysdep.c: Move include term.h last of includes (Bug#6812).
1943
1944 2010-08-06 Eli Zaretskii <eliz@gnu.org>
1945
1946 * dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
1947
1948 * msdos.c (IT_display_cursor): Log cursor position on termscript.
1949
1950 * .gdbinit (pgx): Display the avoid_cursor_p flag.
1951
1952 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
1953
1954 * makefile.w32-in ($(BLD)/xdisp.$(O)): Update dependencies.
1955
1956 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
1957
1958 * xterm.h (x_get_focus_frame): Declare.
1959
1960 * keyboard.h (poll_for_input_1): Unconditionally declare.
1961
1962 * nsterm.h (x_set_menu_bar_lines): Declare.
1963
1964 * window.c: Don't include menu.h, it depends on lots of other .h-files.
1965
1966 * xfaces.c (x_create_gc, x_free_gc): Convert to ANSI C prototypes.
1967
1968 * window.c: Include menu.h.
1969
1970 * unexmacosx.c (print_region_list, print_regions)
1971 (build_region_list, find_emacs_zone_regions)
1972 (unexec_regions_merge, read_load_commands, dump_it)
1973 (unexec_init_emacs_zone): Convert to ANSI C prototypes.
1974
1975 * term.c: Check HAVE_SYS_IOCTL_H.
1976
1977 * sysdep.c: Check HAVE_TERM_H.
1978
1979 * process.c: Check HAVE_UTIL_H. Include nsterm.h if HAVE_NS.
1980
1981 * nsterm.m (ns_init_paths, ns_alloc_autorelease_pool)
1982 (ns_ring_bell, ns_defined_color, hide_hourglass)
1983 (x_display_pixel_height, x_display_pixel_width, syms_of_nsterm):
1984 Convert to ANSI C prototypes.
1985 (x_set_window_size, ns_draw_fringe_bitmap, judge): Move declarations
1986 before code.
1987
1988 * nsterm.h : Include sysselect.h.
1989 (x_sync, x_get_focus_frame, x_set_mouse_position)
1990 (x_set_mouse_pixel_position, x_make_frame_visible)
1991 (x_make_frame_invisible, x_iconify_frame, x_char_width, x_char_height)
1992 (x_pixel_width, x_pixel_height, x_set_frame_alpha, x_set_tool_bar_lines)
1993 (x_activate_menubar, free_frame_menubar, ns_init_paths, ns_select)
1994 (syms_of_nsterm, syms_of_nsfns, syms_of_nsmenu, syms_of_nsselect):
1995 Declare.
1996
1997 * nsmenu.m (popup_activated, name_is_separator)
1998 (syms_of_nsmenu): Convert to ANSI C prototypes.
1999 (runMenuAt): Prototypes and move declarations before code.
2000
2001 * nsimage.m (ns_load_image): Move NSTRACE after declarations.
2002
2003 * nsfont.m (ns_fallback_entity, syms_of_nsfont): Convert to ANSI C
2004 prototypes.
2005
2006 * nsfns.m (have_menus_p, ns_display_info_for_name)
2007 (x_set_cursor_type, ns_appkit_version_str)
2008 (ns_appkit_version_int, ns_do_applescript)
2009 (x_set_scroll_bar_default_width, x_sync, compute_tip_xy)
2010 (syms_of_nsfns): Convert to ANSI C prototypes.
2011
2012 * menu.h (x_set_menu_bar_line): Declare.
2013 (free_menubar_widget_value_tree et.al): Add HAVE_NS for these functions.
2014
2015 * lisp.h (fmod_float): Declare.
2016
2017 * image.c (xpm_scan, xpm_make_color_table_v)
2018 (xpm_put_color_table_v, xpm_get_color_table_v)
2019 (xpm_make_color_table_h, xpm_put_color_table_h)
2020 (xpm_get_color_table_h, xpm_str_to_color_key, xpm_load_image)
2021 (xpm_load): Convert to ANSI C prototypes.
2022
2023 * emacs.c: Include nsterm.h if HAVE_NS.
2024
2025 * bidi.c (bidi_dump_cached_states): Fix fprintf warning.
2026
2027 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
2028
2029 * process.c: Remove HAVE_SOCKETS #ifdefs inside #ifdef
2030 subprocesses, only MSDOS does not define HAVE_SOCKETS.
2031 (socket_options): Use const char* for name.
2032
2033 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
2034
2035 Fix changes in 2010-08-05T23:15:24Z!dann@ics.uci.edu..2010-08-05T23:34:12Z!dann@ics.uci.edu for Windows build.
2036
2037 * xmenu.c [USE_X_TOOLKIT || USE_GTK]:
2038 Don't declare xmalloc_widget_value and digest_single_submenu.
2039
2040 * w32font.c (Qlatin): Remove declaration.
2041
2042 * menu.h (xmalloc_widget_value, digest_single_submenu): Declare.
2043
2044 * dired.c (compile_pattern): Restore declaration.
2045
2046 2010-08-05 Dan Nicolaescu <dann@ics.uci.edu>
2047
2048 Remove extern declarations in .c files, .h files have them.
2049 * data.c:
2050 * dired.c:
2051 * editfns.c:
2052 * filelock.c:
2053 * fns.c:
2054 * font.c:
2055 * fontset.c:
2056 * frame.c:
2057 * fringe.c:
2058 * ftfont.c:
2059 * gtkutil.c:
2060 * indent.c:
2061 * keyboard.c:
2062 * keymap.c:
2063 * lread.c:
2064 * menu.c:
2065 * print.c:
2066 * search.c:
2067 * sound.c:
2068 * window.c:
2069 * xdisp.c:
2070 * xfaces.c:
2071 * xfns.c:
2072 * xfont.c:
2073 * xftfont.c:
2074 * xmenu.c:
2075 * xterm.c: Remove declarations.
2076
2077 Cleanup syssignal.h.
2078 * syssignal.h (sighold, sigrelse, RETSIGTYPE): Remove, unused.
2079 (main_thread): Move down to remove #ifdef.
2080 (SIGMASKTYPE, SIGEMPTYMASK, SIGFULLMASK, sigmask, sigunblock):
2081 Remove conditional definition following unconditional ones.
2082
2083 * lisp.h: Remove HAVE_SHM code, unused.
2084 (QCmap, QCrehash_size, QCrehash_threshold, QCsize, QCtest)
2085 (QCweakness, Qabove_handle, Qbackquote, Qbar, Qbelow_handle)
2086 (Qborder, Qbottom, Qbox, Qcircular_list, Qcomma, Qcomma_at)
2087 (Qcomma_dot, Qcursor, Qdefault, Qdown, Qend_scroll, Qeq, Qeql)
2088 (Qequal, Qfile_exists_p, Qfont_param, Qfringe, Qfunction)
2089 (Qfunction_documentation, Qhandle, Qhbar, Qheader_line, Qhollow)
2090 (Qidentity, Qleft_margin, Qmenu, Qmenu_bar_update_hook)
2091 (Qmode_line_inactive, Qmouse, Qoverriding_local_map)
2092 (Qoverriding_terminal_local_map, Qratio, Qregion, Qright_margin)
2093 (Qscroll_bar, Qtool_bar, Qtop, Qup, Qvertical_border, Qwhen)
2094 (Qwindow_scroll_functions, Vafter_load_alist)
2095 (Vauto_save_list_file_name, Vface_alternative_font_family_alist)
2096 (Vface_alternative_font_registry_alist, Vface_font_rescale_alist)
2097 (Vface_ignored_fonts, Vinhibit_redisplay, Vminibuffer_list)
2098 (Vprint_length, Vprint_level, Vscalable_fonts_allowed)
2099 (Vshell_file_name, Vsystem_name, Vwindow_scroll_functions)
2100 (Vwindow_system_version, Vx_no_window_manager, initial_argc)
2101 (initial_argv, last_nonmenu_event, load_in_progress)
2102 (noninteractive_need_newline, scroll_margin): Add declarations.
2103
2104 * keyboard.h (xmalloc_widget_value, digest_single_submenu): Remove
2105 declarations, menu.h has them.
2106 (QCbutton, QCtoggle, QCradio, QClabel, extra_keyboard_modifiers)
2107 (Vinput_method_function, Qinput_method_function)
2108 (Qevent_symbol_element_mask, last_event_timestamp):
2109 * dispextern.h (Voverflow_newline_into_fringe):
2110 * font.h (QCantialias, Qp, syms_of_ftfont, syms_of_xfns)
2111 (syms_of_ftxfont, syms_of_xftfont, syms_of_bdffont)
2112 (syms_of_w32font, syms_of_nsfont):
2113 * fontset.h (find_font_encoding, Qlatin):
2114 * frame.h (Qtooltip, Qrun_hook_with_args, Vmenu_bar_mode)
2115 (Vtool_bar_mode, set_frame_menubar):
2116 * ftfont.h (ftfont_font_format, ftfont_get_fc_charset):
2117 * xterm.h (Qx_gtk_map_stock):
2118 * keymap.h (meta_prefix_char): Add declarations.
2119
2120 * term.c: Remove dead code.
2121
2122 Fix emacs -Q -f server-start & emacsclient -t on GNU/Linux.
2123 * term.c (dissociate_if_controlling_tty): Use USG5 instead of
2124 USG. This is equivalent to defined (USG) && !defined (BSD_PGRPS),
2125 which is what was there before BSD_PGRPS was removed.
2126
2127 2010-08-05 Eli Zaretskii <eliz@gnu.org>
2128
2129 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
2130
2131 * unexcoff.c: Renamed from unexec.c.
2132
2133 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
2134
2135 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
2136
2137 2010-08-03 Johan Bockgård <bojohan@gnu.org>
2138
2139 * data.c (Flocal_variable_p): Handle variable aliases correctly.
2140 (Bug#6744)
2141
2142 2010-08-02 Jan Djärv <jan.h.d@swipnet.se>
2143
2144 * xterm.c (x_create_toolkit_scroll_bar): Only set XtNbeNiceToColormap
2145 to TRUE if depth of screen is < 16.
2146
2147 * gtkutil.c (hierarchy_ch_cb, qttip_cb): Do not define unless
2148 USE_GTK_TOOLTIP.
2149 (xg_prepare_tooltip): Return 0 unless USE_GTK_TOOLTIP.
2150 (xg_show_tooltip, xg_hide_tooltip): Do nothing unless USE_GTK_TOOLTIP.
2151 (xg_create_frame_widgets): Surround tooltip-related code with ifdef
2152 USE_GTK_TOOLTIP.
2153 (xg_free_frame_widgets): Don't delete ttip_* unless USE_GTK_TOOLTIP.
2154
2155 * xterm.h (USE_GTK_TOOLTIP): New define.
2156 (struct x_output): Put ttip_* inside ifdef USE_GTK_TOOLTIP.
2157
2158 * sysdep.c (child_setup_tty): Enable ICANON in lflags and set VEOF
2159 to Control-D (Bug#6771).
2160
2161 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
2162
2163 * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
2164 Wording by Drew Adams <drew.adams@oracle.com>.
2165
2166 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
2167
2168 * xterm.h (struct x_output): Add ttip_widget, ttip_window and
2169 ttip_lbl.
2170
2171 * xterm.c (x_clear_frame): Check FRAME_GTK_WIDGET (f) before
2172 calling gtk_widget_queue_draw.
2173 (x_free_frame_resources): Call xg_free_frame_widgets.
2174
2175 * xfns.c (x_gtk_use_system_tooltips): New variable.
2176 (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call
2177 new gtkutil tooltip functions to show the tooltip.
2178 (Fx_hide_tip): Call xg_hide_tooltip.
2179 (syms_of_xfns): Defvar x-gtk-use-system-tooltips.
2180
2181 * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip)
2182 (xg_show_tooltip, xg_hide_tooltip): Declare.
2183
2184 * gtkutil.c (hierarchy_ch_cb, qttip_cb, xg_prepare_tooltip)
2185 (xg_show_tooltip, xg_hide_tooltip, xg_free_frame_widgets):
2186 New functions.
2187 (xg_create_frame_widgets): Set ttip_* to 0. Set a dummy tooltip
2188 text so qttip_cb is called. Connect query-tooltip to qttip_cb.
2189 Remove code that is commented out.
2190
2191 2010-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
2192
2193 * keymap.c (Fdefine_key, Flookup_key): Say what event is invalid.
2194
2195 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
2196
2197 * xselect.c (x_own_selection): Use list4.
2198
2199 2010-07-30 Dan Nicolaescu <dann@ics.uci.edu>
2200
2201 * buffer.c (Qwindow): Do not define, already defined in data.c.
2202 (syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
2203
2204 2010-07-29 Chad Brown <yandros@mit.edu>
2205
2206 Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf.
2207 * dired.c, sysdep.c: Test HAVE_DIRENT_H instead of SYSV_SYSTEM_DIR.
2208 * config.in: Undef HAVE_DIRENT_H.
2209 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h,
2210 * s/msdos.h, s/usg5-4.h: Don't define SYSV_SYSTEM_DIR.
2211
2212 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
2213
2214 Rename s/usg5-4.h -> s/usg5-4-common.h.
2215 * s/usg5-4.h: Rename file to ...
2216 * s/usg5-4-common.h: ... this for consistency with what we do for BSD.
2217 * s/unixware.h:
2218 * s/sol2-6.h:
2219 * s/irix6-5.h: Update includes accordingly.
2220
2221 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
2222
2223 * xfns.c (x_set_tool_bar_position): Remove debug fprintf.
2224
2225 * xterm.h (struct x_output): Add toolbar_top_height,
2226 toolbar_bottom_height, toolbar_left_width, toolbar_right_width.
2227 Remove toolbar_height.
2228 If USE_GTK: Add hbox_widget and toolbar_in_hbox.
2229 (FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
2230 (FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
2231 (FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
2232
2233 * xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
2234
2235 * xfns.c (x_set_tool_bar_position): New function.
2236 (xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
2237 (x_frame_parm_handlers): Add x_set_tool_bar_position.
2238 (syms_of_xfns): If USE_GTK, provide move-toolbar.
2239
2240 * window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
2241 and FRAME_TOOLBAR_LEFT_WIDTH.
2242
2243 * gtkutil.h (xg_change_toolbar_position): Declare.
2244
2245 * gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
2246 (xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
2247 (xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
2248 (xg_create_frame_widgets): Create a hobox for placing widgets
2249 vertically. Use gtk_box_pack_start.
2250 (xg_height_or_width_changed): Renamed from xg_height_changed.
2251 (x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
2252 (xg_update_frame_menubar, free_frame_menubar): Change to
2253 xg_height_or_width_changed.
2254 (xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
2255 size correctly. Remove hardcoded 4, instead use handlebox size -
2256 toolbar size.
2257 (xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
2258 size correctly. Use handlebox size + toolbar size as additional size.
2259 (xg_pack_tool_bar): POS is a new parameter.
2260 Set orientation of tool bar based on pos.
2261 Only make handlebox_widget if NULL.
2262 Check if tool bar goes to vbox or hbox depending on pos.
2263 (xg_update_tool_bar_sizes): New function.
2264 (update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
2265 height, call xg_update_tool_bar_sizes instead.
2266 (free_frame_tool_bar): Remove from hbox or vbox depending on
2267 toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
2268 (xg_change_toolbar_position): New function.
2269
2270 * frame.h (struct frame): Add tool_bar_position.
2271 (Qbottom): Declare.
2272
2273 * frame.c (Qtool_bar_position): New variable.
2274 (make_frame): Set tool_bar_position to Qtop.
2275 (frame_parms): Add tool-bar-position.
2276 (x_report_frame_params): Store tool_bar_position.
2277 (x_set_fringe_width): Reset wm size hint after fringe changes.
2278
2279 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
2280
2281 Make lisp_time_argument declaration work on all systems.
2282 * lisp.h (lisp_time_argument): Move declaration ...
2283 * systime.h (lisp_time_argument): ... here
2284 * editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
2285
2286 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
2287
2288 * vm-limit.c (POINTER): Add typedef for it.
2289 (start_of_data): Change return type from POINTER to char *.
2290
2291 * frame.h (Qtty_color_mode): Move declaration out of ifdef
2292 HAVE_WINDOW_SYSTEM.
2293
2294 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
2295
2296 * vm-limit.c: Do not include sys/resource.h, mem-limits.h does it.
2297 Remove reference to __osf__, unused.
2298
2299 * mem-limits.h: Remove duplicated includes.
2300 (NULL): Remove definition, unused.
2301 (POINTER): Remove definition.
2302 (start_of_data): Use char* in prototype, as the function
2303 definition does.
2304
2305 Remove extern declarations from .c files, and them to .h files.
2306 * keyboard.h (Qhelp_echo, waiting_for_input)
2307 (input_available_clear_time, ignore_mouse_drag_p)
2308 (Vdouble_click_time, real_this_command, Vthis_original_command):
2309 * keymap.h (Qremap, Qmenu_item, Voverriding_local_map)
2310 (Voverriding_local_map_menu_flag):
2311 * lisp.h (Qinteractive_form, use_file_dialog)
2312 (Qcursor_in_echo_area, QCascent, QCmargin, QCrelief, Qcount)
2313 (Qextension_data, QCconversion, QCcolor_symbols, QCheuristic_mask)
2314 (QCindex, QCmatrix, QCcolor_adjustment, QCmask)
2315 (Qrisky_local_variable, map_char_table_for_charset, Vprint_level)
2316 (Qfunction, debug_on_next_call, Qfield)
2317 (Vinhibit_field_text_motion, Vuser_login_name, lisp_time_argument)
2318 (Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string)
2319 (Qfile_directory_p, Qinsert_file_contents)
2320 (Qcompletion_ignore_case, Qcompletion_ignore_case)
2321 (Vcompletion_regexp_list, Vhistory_length, completion_ignore_case)
2322 (history_delete_duplicates, minibuffer_auto_raise, Qonly)
2323 (Qfile_name_handler_alist, Qfront_sticky, Qrear_nonsticky)
2324 (Qminibuffer_prompt)
2325 (Vtemporary_file_directory,char_ins_del_vector, Qface):
2326 * xterm.h (gray_bitmap_width, gray_bitmap_height)
2327 (gray_bitmap_bits, xic_create_fontsetname):
2328 * coding.h (Vtranslation_table_for_input): Add extern declarations.
2329
2330 * xsmfns.c (Vuser_login_name):
2331 * xrdb.c (Vdouble_click_time):
2332 * xfaces.c (xic_create_fontsetname):
2333 * w32select.c (waiting_for_input):
2334 * print.c (minibuffer_auto_raise):
2335 * msdos.c (Qhelp_echo):
2336 * macros.c (real_this_command):
2337 * keymap.c (Voverriding_local_map):
2338 * xterm.c (poll_for_input_1, gray_bitmap_width)
2339 (gray_bitmap_height, gray_bitmap_bits;
2340 * xmenu.c ( Voverriding_local_map)
2341 (Voverriding_local_map_menu_flag; Qmenu_item; use_dialog_box)
2342 (use_file_dialog, Xt_app_con):
2343 * xdisp.c (minibuffer_auto_raise, Voverriding_local_map)
2344 (Voverriding_local_map_menu_flag, Qmenu_item, Qface, Qinvisible)
2345 (Qwidth, Qinvisible, Qwindow, Qpriority, Qtool_bar_lines)
2346 (Qtool_bar_lines, ignore_mouse_drag_p):
2347 * minibuf.c (Voverriding_local_map, Qfield, Qfront_sticky)
2348 (Qrear_nonsticky, nconc2):
2349 * keyboard.c (current_global_map, minibuf_level, Qmenu_item)
2350 (Vhistory_length, Vtranslation_table_for_input, Qcomposition)
2351 (Qdisplay, Qafter_string, Qbefore_string, Qundefined):
2352 * fileio.c (use_dialog_box, use_file_dialog, Vuser_login_name)
2353 (minibuf_level, minibuffer_auto_raise, lisp_time_argument):
2354 * eval.c (Qinteractive_form, Qrisky_local_variable, Qfunction)
2355 (gc_in_progress):
2356 * doc.c (Voverriding_local_map, Qremap):
2357 * dired.c (completion_ignore_case, Qcompletion_ignore_case)
2358 (Vcompletion_regexp_list):
2359 * coding.c (Qmac, Qinsert_file_contents, Qwrite_region)
2360 (Qcompletion_ignore_case):
2361 * callint.c (Qcursor_in_echo_area, Qfile_directory_p, Qonly)
2362 (Vhistory_length, Vthis_original_command, real_this_command)
2363 (Qface, Qminibuffer_prompt, history_delete_duplicates):
2364 * image.c (Qrisky_local_variable):
2365 * fontset.c (QCname):
2366 * fns.c (minibuffer_auto_raise, QCname):
2367 * dispnew.c (char_ins_del_cost):
2368 * composite.c (font_fill_lglyph_metrics):
2369 * cmds.c (Qface, Vtranslation_table_for_input):
2370 * charset.c (map_char_table_for_charset, Qfile_name_handler_alist):
2371 * ccl.c (charset_unicode):
2372 * callproc.c (Vtemporary_file_directory):
2373 * buffer.c (emacs_strerror): Remove extern declarations.
2374
2375 * data.c (Qwindow): Make non-static, used from other files too.
2376 * frame.c (validate_x_resource_name): Remove shadow definition for i.
2377
2378 * unexec.c (make_hdr): Remove references to NO_REMAP, COFF,
2379 SEGMENT_MASK, SECTION_ALIGNMENT, ADJUST_EXEC_HEADER.
2380 * s/usg5-4.h (COFF):
2381 * s/template.h:
2382 * s/msdos.h (COFF, NO_REMAP):
2383 * s/ms-w32.h (NO_REMAP):
2384 * s/hpux10-20.h (NO_REMAP):
2385 * m/sparc.h (SEGMENT_MASK):
2386 * m/m68k.h (NO_REMAP):
2387 * m/intel386.h (SEGMENT_MASK):
2388 * m/arm.h (NO_REMAP):
2389 * m/alpha.h (COFF):
2390 * m/template.h: Remove references to unused defines.
2391
2392 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
2393
2394 * xsettings.c (Ftool_bar_get_system_style): Also check for
2395 Qtext_image_horiz.
2396
2397 * xdisp.c (Qtext_image_horiz): Define.
2398 (syms_of_xdisp): Initialize Qtext_image_horiz. Add text-image-horiz
2399 to documentation of tool-bar-style.
2400
2401 * lisp.h (Qtext_image_horiz): Declare.
2402
2403 * gtkutil.c (xg_make_tool_item, xg_show_toolbar_item): Handle tool bar
2404 style text_image_horiz.
2405
2406 2010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
2407
2408 * emacs.c (Fkill_emacs): Remove return statement.
2409
2410 * term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
2411 (encode_terminal_code, produce_composite_glyph): Remove unused variables.
2412 (set_tty_color_mode, term_mouse_highlight, term_get_fkeys): Remove
2413 local extern declarations.
2414
2415 * xmenu.c: Do not included lwlib.h, not needed.
2416
2417 * m/iris4d.h (XUINT, XSET): Remove, not needed.
2418
2419 * process.c: Move definitions earlier to minimize #ifdefs.
2420
2421 * xterm.h (x_get_customization_string, x_load_resources)
2422 (x_get_resource, x_text_icon, x_text_icon, x_check_errors)
2423 (x_check_errors, x_property_data_to_lisp, defined_color)
2424 (xic_set_xfontset, x_defined_color): Use const.
2425
2426 * xterm.c (xlwmenu_window_p, xlwmenu_redisplay): Remove declarations.
2427 (x_text_icon, x_check_errors, x_connection_closed): Use const.
2428
2429 * xselect.c (selection_data_to_lisp_data)
2430 (x_property_data_to_lisp):
2431 * xrdb.c (x_get_string_resource, file_p)
2432 (x_get_customization_string, magic_file_p, search_magic_path)
2433 (get_system_app, get_user_app, x_load_resources, x_get_resource)
2434 (x_get_string_resource): Use const.
2435
2436 * xfns.c: Include xlwmenu.h when USE_LUCID.
2437 (x_defined_color, xic_set_xfontset): Use const.
2438 (Fx_hide_tip): Remove local extern declaration.
2439
2440 * xfaces.c (Qmouse_face): Remove declaration.
2441 (face_color_gray_p, tty_defined_color, defined_color)
2442 (face_color_gray_p, face_color_supported_p): Add const.
2443
2444 * xdisp.c (do_mouse_tracking): Remove declaration.
2445 (add_to_log): Use const.
2446
2447 * minibuf.c (Qmouse_face): Remove declaration.
2448
2449 * msdos.c (IT_note_mouse_highlight): Remove local extern declaration.
2450
2451 * keyboard.h (do_mouse_tracking): Add declaration.
2452
2453 * image.c (QCwidth, QCheight, QCforeground, QCbackground, QCfile)
2454 (QCdata, QCtype, Qcenter): Remove declarations.
2455
2456 * frame.c (x_get_resource_string, x_get_string_resource)
2457 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
2458 (x_default_parameter): Use const.
2459
2460 * font.c (Qnormal, QCtype, QCfamily, QCweight, QCslant, QCwidth)
2461 (QCheight, QCsize, QCname): Remove declarations.
2462
2463 * emacs.c (main): Remove local extern declaration.
2464
2465 * editfns.c (region_limit, syms_of_editfns): Remove local extern
2466 declarations.
2467
2468 * dispnew.c: Remove duplicate #include <unistd.h>.
2469 (update_window, update_frame_1, init_display): Remove local extern
2470 declarations.
2471
2472 * dispextern.h (add_to_log): Remove declaration.
2473 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
2474 (x_frame_get_and_record_arg, x_default_parameter): Add const.
2475
2476 * dired.c (scmp): Add const.
2477 (directory_files_internal): Remove local extern declaration.
2478
2479 * data.c (Finteractive_form): Use const.
2480
2481 * composite.c (syms_of_composite): Remove local extern declarations.
2482
2483 * charset.c (add_to_log): Remove declaration.
2484
2485 * character.c (strwidth, parse_str_to_multibyte): Add const.
2486
2487 * character.h (strwidth, parse_str_to_multibyte): Likewise.
2488
2489 * buffer.c (Fset_buffer_multibyte): Remove local extern declaration.
2490
2491 * lisp.h (Fkill_emacs): Mark as NO_RETURN.
2492 (Lisp_Subr): Make doc and intspec constant.
2493 (QCsize, Qspace, Qcenter, QCalign_to, QCdata, QCfile, QCtype)
2494 (Qlocal, Qapply, Qnormal, QCfamily, QCweight, QCslant, QCwidth)
2495 (QCheight, QCsize, QCname, QCwidth, QCforeground)
2496 (QCbackground, add_to_log, stack_base, Vmark_even_if_inactive)
2497 (display_arg): Add declarations.
2498
2499 2010-07-27 Christoph Scholtes <cschol2112@gmail.com>
2500
2501 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
2502
2503 * window.c (Fwindow_height): Doc fix (bug#6518).
2504
2505 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
2506
2507 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
2508
2509 2010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
2510
2511 * keyboard.c (Ftop_level, Fexit_recursive_edit)
2512 (Fabort_recursive_edit): Remove return statements in NO_RETURN
2513 functions.
2514
2515 * frame.h (Qtty_color_mode): Add declaration.
2516
2517 * lisp.h (Ftop_level, Fexit_recursive_edit)
2518 (Fabort_recursive_edit): Mark as NO_RETURN.
2519
2520 2010-07-26 Kenichi Handa <handa@m17n.org>
2521
2522 * font.c (Ffont_shape_gstring): Terminate GSTRING by nil if the
2523 number of glyphs gets smaller than the original length. (Bug#6621)
2524
2525 2010-07-26 Juanma Barranquero <lekktu@gmail.com>
2526
2527 * lread.c (unreadpure, mapatoms_1): Make static.
2528
2529 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
2530
2531 * terminfo.c (tparam): Fix prototype of tparm.
2532
2533 2010-07-25 Andreas Schwab <schwab@linux-m68k.org>
2534
2535 * emacs.c (main) [PROFILING]: Use __executable_start if defined to
2536 find start of text segment.
2537 * dispnew.c (safe_bcopy): Don't define if HAVE___EXECUTABLE_START
2538 is defined.
2539
2540 * callproc.c (set_initial_environment): Avoid unbalanced braces.
2541
2542 2010-07-25 Ken Brown <kbrown@cornell.edu>
2543
2544 * vm-limit.c (check_memory_limits): Fix previous change;
2545 accidentally reverted an earlier change.
2546
2547 2010-07-25 Ken Brown <kbrown@cornell.edu>
2548
2549 * mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
2550 * vm-limit.c: ...add 'defined (CYGWIN)' here (Bug#6715).
2551
2552 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
2553
2554 * callproc.c (relocate_fd): Set inside #ifndef WINDOWSNT.
2555 * dired.c (opendir, readdir): Fix prototypes.
2556 * editfns.c (w32_get_internal_run_time): Fix prototypes.
2557 * keyboard.c (input_available_signal): Declare inside #ifdef SIGIO.
2558 * ndir.h (opendir, readdir, seekdir, closedir): Fix prototypes.
2559 (telldir): Remove declaration.
2560 * ralloc.c (real_morecore, __morecore): Fix prototypes.
2561 * sound.c (alsa_sound_perror): Declare inside #ifdef HAVE_ALSA.
2562 * syssignal.h (strsignal): Fix prototype.
2563 * term.c (tparam): Fix prototype.
2564 (term_get_fkeys_address, term_get_fkeys_kboard, term_get_fkeys_1)
2565 (term_get_fkeys): Set inside "#ifndef DOS_NT".
2566 * vm-limit.c (check_memory_limits): Fix prototypes of real_morecore
2567 and __morecore.
2568 * w32gui.h (XParseGeometry): Fix prototype.
2569 * w32heap.h (get_data_start, get_data_end, init_heap): Fix prototypes.
2570 * w32term.c (my_set_focus): Declare inside #if 0.
2571 * w32term.h (x_window_to_frame, x_display_info_for_name, w32_term_init)
2572 (w32_fill_rect, w32_clear_window, init_crit, delete_crit, signal_quit)
2573 (drain_message_queue, get_next_msg, post_msg, parse_button)
2574 (ClipboardSequence_Proc): Fix prototypes.
2575 (wait_for_sync): Remove declaration.
2576
2577 2010-07-24 Juanma Barranquero <lekktu@gmail.com>
2578
2579 * w32fns.c (w32_to_x_color): Remove, unused.
2580
2581 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
2582
2583 * lisp.h: Remove leftover P_.
2584
2585 2010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
2586
2587 * ecrt0.c, unexalpha.c: Remove files, unused.
2588
2589 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
2590
2591 * cmds.c (internal_self_insert): Make static.
2592 * lisp.h (internal_self_insert): Remove declaration.
2593
2594 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
2595
2596 * alloc.c (free_float):
2597 * font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse):
2598 * frame.c (delete_frame_handler):
2599 * ralloc.c (reorder_bloc):
2600 * w32menu.c (menubar_id_to_frame, add_left_right_boundary):
2601 Remove unused static functions.
2602
2603 * menu.c (cleanup_popup_menu): Set inside "#ifdef HAVE_NS";
2604 it is called only from NS code.
2605
2606 * w32term.c (my_set_focus): #ifdef away; it is called only from
2607 "#ifdef 0" code.
2608
2609 * w32fns.c (x_edge_detection):
2610 * xfaces.c (may_use_scalable_font_p):
2611 Remove obsolete static declarations.
2612
2613 2010-07-20 Juanma Barranquero <lekktu@gmail.com>
2614
2615 * alloc.c (emacs_blocked_free, emacs_blocked_malloc)
2616 (emacs_blocked_realloc, uninterrupt_malloc):
2617 * fringe.c (w32_reset_fringes):
2618 * image.c (convert_mono_to_color_image, lookup_rgb_color)
2619 (init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
2620 * sound.c (be2hs, do_play_sound):
2621 * vm-limit.c (get_lim_data, ret_lim_data):
2622 * w32term.c (x_free_frame_resources):
2623 * xfaces.c (x_create_gc, x_free_gc):
2624 Convert definitions to standard C.
2625
2626 2010-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
2627
2628 * eval.c (Feval, Ffuncall): Use the new names.
2629
2630 * lisp.h (struct Lisp_Subr): Rename `am' to aMANY and add aUNEVALLED.
2631 (DEFUN): Add braces around the union initialisation and use ## to
2632 specify the right union alternative and avoid a cast.
2633
2634 2010-07-18 Juanma Barranquero <lekktu@gmail.com>
2635
2636 * makefile.w32-in ($(BLD)/keyboard.$(O)): Update dependencies.
2637
2638 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
2639
2640 * frame.c (make_initial_frame): Use set_menu_bar_lines (Bug#6660).
2641
2642 2010-07-17 Jan Djärv <jan.h.d@swipnet.se>
2643
2644 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
2645 is related to the menu bar (Bug#6499).
2646 (xg_frame_resized): GTK_IS_MAPPED => gtk_widget_get_mapped, for Gtk 3.0.
2647
2648 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
2649
2650 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
2651
2652 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
2653
2654 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
2655 i.e. don't put back ButtonRelease (Bug#6608).
2656
2657 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
2658 instead of Window. Call xg_event_is_for_menubar when
2659 USE_GTK (Bug#6499).
2660
2661 * gtkutil.h (xg_event_is_for_menubar): Declare.
2662
2663 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
2664
2665 2010-07-16 Eli Zaretskii <eliz@gnu.org>
2666
2667 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
2668 when it's the same as the old foreground. (Bug#6609)
2669
2670 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
2671
2672 * xmenu.c (free_frame_menubar): Only call x_set_window_size if
2673 widget is non-null (Bug#6645).
2674
2675 2010-07-15 Andreas Schwab <schwab@linux-m68k.org>
2676
2677 * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font):
2678 Convert old-style definition.
2679
2680 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
2681 timestamp argument.
2682
2683 2010-07-15 Eli Zaretskii <eliz@gnu.org>
2684
2685 * fringe.c (update_window_fringes): Restore mistakenly reverted
2686 code from 2010-04-17T12:33:05Z!eliz@gnu.org merged in 2010-04-20T13:31:28Z!eliz@gnu.org.
2687
2688 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
2689
2690 * xterm.c (xm_scroll_callback, x_process_timeouts): K&R => prototype.
2691 (SET_SAVED_KEY_EVENT): Remove (not used).
2692 (SET_SAVED_MENU_EVENT): Rename to SET_SAVED_BUTTON_EVENT and
2693 remove size parameter.
2694 (handle_one_xevent): Check popup_activated () for menu for Xt also.
2695 Remove #ifdef USE_GTK around finish = X_EVENT_DROP.
2696 Remove #ifdef USE_MOTIF code that did SET_SAVED_BUTTON_EVENT for
2697 ButtonRelease.
2698 (x_set_window_size_1): scroll_bar_actual_width is always
2699 SCROLL_BAR_COLS * COLUMN_WIDTH for the purpose of frame sizing.
2700
2701 * xdisp.c (pending_menu_activation): Remove extern declaration.
2702 (prepare_menu_bars): Remove setting of pending_menu_activation.
2703
2704 * xmenu.c (pending_menu_activation): Remove.
2705 (x_activate_menubar): Set popup_activated_flag for Xt also.
2706 Remove setting of pending_menu_activation.
2707 (set_frame_menubar): Remove check of pending_menu_activation.
2708 Declare menubar_size before code. Correct spelling in comment.
2709
2710 2010-07-14 Kenichi Handa <handa@m17n.org>
2711
2712 * font.c (font_open_entity): Cancel previous change.
2713 (Ffont_get): Don't check FONT_ENTITY_INDEX of a font-object.
2714
2715 2010-07-13 Eli Zaretskii <eliz@gnu.org>
2716
2717 Remove subprocesses #ifdefs.
2718 * process.c <inhibit_sentinels>: Move to the common part.
2719 (Fwaiting_for_user_input_p): Move to the common part; return nil
2720 if async subprocesses aren't supported.
2721 * sysdep.c (wait_for_termination) [!MSDOS]: Don't compile on
2722 MS-DOS. Remove "#ifdef subprocesses".
2723 (sys_subshell, sys_select): Remove "#ifdef subprocesses".
2724 (gettimeofday): Remove "#ifdef subprocesses".
2725 (wait_without_blocking): Remove function.
2726 (flush_pending_output, child_setup_tty): Don't compile on MS-DOS.
2727 Remove "#ifdef subprocesses".
2728 (child_setup_tty): Use WINDOWSNT instead of DOS_NT, since not
2729 compiled on MS-DOS.
2730 * callproc.c (Fcall_process) [!MSDOS]: Don't call
2731 wait_for_termination on MS-DOS.
2732 * emacs.c (shut_down_emacs): Remove "#ifndef subprocesses" from
2733 initialization of inhibit_sentinels.
2734 * keyboard.c (record_asynch_buffer_change): Remove "#ifdef
2735 subprocesses" conditional.
2736 * callproc.c (Fcall_process) [!subprocesses]: Don't call
2737 wait_for_termination, since `buffer' cannot be an integer when
2738 async subprocesses are not supported
2739 * xdisp.c (decode_mode_spec): Use `MSDOS' instead of `subprocesses'
2740 for ifdefing away the call to Fprocess_status.
2741
2742 * process.c (add_keyboard_wait_descriptor) [!subprocesses]: Ifdef
2743 away the entire body of the function.
2744
2745 2010-07-13 Dan Nicolaescu <dann@ics.uci.edu>
2746
2747 Remove subprocesses #ifdefs from term.c.
2748 * process.c (add_keyboard_wait_descriptor)
2749 (delete_keyboard_wait_descriptor): Move to common section, do
2750 nothing when subprocesses is not defined.
2751 * term.c (Fsuspend_tty, Fresume_tty, init_tty):
2752 Remove subprocesses #ifdefs.
2753
2754 Convert maybe_fatal to standard C.
2755 * lisp.h (verror): Declare.
2756 * eval.c (verror): New function containing the code from ...
2757 (error): ... this. Call verror.
2758 * term.c (vfatal): New function containing the code from ...
2759 (fatal): ... this. Call vfatal.
2760 (maybe_fatal): Convert to standard C, use variable number of
2761 arguments. Declare as non-return.
2762 (init_tty): Fix maybe_fatal call.
2763
2764 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
2765
2766 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose)
2767 (_scroll_bar_note_movement): Convert definitions to standard C.
2768 * xmenu.c (menu_help_callback, pop_down_menu, xmenu_show):
2769 * xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
2770
2771 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
2772
2773 * xterm.c (x_frame_of_widget, x_alloc_nearest_color_for_widget)
2774 (x_alloc_lighter_color_for_widget, cvt_string_to_pixel)
2775 (cvt_pixel_dtor, x_window_to_menu_bar, xt_action_hook)
2776 (xaw_jump_callback, xaw_scroll_callback)
2777 (x_create_toolkit_scroll_bar, x_set_toolkit_scroll_bar_thumb)
2778 (x_wm_set_size_hint, x_activate_timeout_atimer): Convert
2779 definitions to standard C.
2780 * xmenu.c (menubar_id_to_frame, popup_get_selection)
2781 (popup_activate_callback, popup_deactivate_callback)
2782 (menu_highlight_callback, menubar_selection_callback)
2783 (apply_systemfont_to_dialog, apply_systemfont_to_menu)
2784 (free_frame_menubar, popup_selection_callback, as)
2785 (create_and_show_popup_menu, dialog_selection_callback)
2786 (create_and_show_dialog):
2787 * xfns.c (hack_wm_protocols, x_window):
2788 * xfaces.c (x_update_menu_appearance):
2789 * widget.c (get_default_char_pixel_size, pixel_to_char_size)
2790 (char_to_pixel_size, round_size_to_char, get_wm_shell)
2791 (set_frame_size, update_wm_hints, setup_frame_gcs)
2792 (update_various_frame_slots, update_from_various_frame_slots)
2793 (EmacsFrameInitialize, EmacsFrameRealize, EmacsFrameResize)
2794 (EmacsFrameSetValues, EmacsFrameQueryGeometry)
2795 (EmacsFrameSetCharSize, widget_store_internal_border): Likewise.
2796
2797 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
2798
2799 * dbusbind.c (xd_initialize): Don't compare boolean with a constant.
2800
2801 2010-07-12 Eli Zaretskii <eliz@gnu.org>
2802
2803 * process.c (setup_process_coding_systems): Move to the part
2804 shared by non-subprocesses systems, and make its body empty when
2805 subprocesses is not defined.
2806 (close_process_descs): Move to the part shared by non-subprocesses
2807 systems.
2808 (wait_reading_process_output) [!subprocesses]: Convert arg list to
2809 ANSI C.
2810
2811 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
2812
2813 * editfns.c (transpose_markers): Convert old-style definition.
2814 * emacs.c (abort, shut_down_emacs, fixup_locale)
2815 (synchronize_system_time_locale)
2816 (synchronize_system_messages_locale, syms_of_emacs): Likewise.
2817 * floatfns.c (extract_float, matherr, init_floatfns)
2818 (syms_of_floatfns): Likewise.
2819 * fns.c (make_hash_table): Likewise.
2820 * ftfont.c (ftfont_get_otf, ftfont_otf_features)
2821 (ftfont_otf_capability, ftfont_get_glyph_id, ftfont_get_metrics)
2822 (ftfont_drive_otf, ftfont_shape_by_flt, ftfont_shape)
2823 (ftfont_variation_glyphs): Likewise.
2824 * gtkutil.c (xg_create_widget, xg_modify_menubar_widgets): Likewise.
2825 * keymap.c (describe_map_tree, describe_map, describe_vector): Likewise.
2826 * lread.c (read_filtered_event): Likewise.
2827 * minibuf.c (read_minibuf_noninteractive, read_minibuf): Likewise.
2828 * process.c (wait_reading_process_output): Likewise.
2829 * scroll.c (do_line_insertion_deletion_costs): Likewise.
2830 * search.c (search_buffer, boyer_moore): Likewise.
2831 * syntax.c (scan_sexps_forward): Likewise.
2832 * xdisp.c (try_scrolling): Likewise.
2833 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
2834 (face_at_string_position): Likewise.
2835 * xfns.c (x_default_scroll_bar_color_parameter): Likewise.
2836 * xselect.c (x_get_window_property, receive_incremental_selection)
2837 (x_get_window_property_as_lisp_data, lisp_data_to_selection_data):
2838 Likewise.
2839 * xterm.c (x_draw_relief_rect, x_draw_box_rect): Likewise.
2840
2841 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
2842
2843 * callproc.c (child_setup): Remove subprocesses conditional.
2844 Remove code dealing with SET_EMACS_PRIORITY, unused.
2845
2846 * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
2847 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
2848
2849 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
2850 (__do_global_dtors, __main): Use void in definition.
2851 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
2852 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
2853 the only users from ...
2854 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
2855 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
2856 (HAVE_VOLATILE): Remove, unused.
2857
2858 Convert more function definitions to standard C.
2859 * xdisp.c (window_box_edges, handle_single_display_spec)
2860 (display_string): Convert definition to standard C.
2861 * scroll.c (do_direct_scrolling, scrolling_1):
2862 * dispnew.c (allocate_matrices_for_frame_redisplay)
2863 (mirrored_line_dance):
2864 * coding.c (code_convert_string):
2865 * charset.c (map_charset_chars):
2866 * ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
2867 (Fregister_ccl_program, Fregister_code_conversion_map):
2868 * keyboard.c (kbd_buffer_nr_stored): Likewise.
2869 (head_table): Make static and const.
2870
2871 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
2872
2873 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
2874 (PROFILING_LDFLAGS): Set from substitution.
2875 (ALL_CFLAGS): Add C_WARNINGS_SWITCH and PROFILING_CFLAGS, put
2876 CFLAGS last.
2877
2878 2010-07-12 Kenichi Handa <handa@m17n.org>
2879
2880 * Makefile.in (lisp): Change hebrew.el to hebrew.elc.
2881 (shortlisp): Likewise.
2882
2883 * font.h (enum font_property_index): New member FONT_ENTITY_INDEX.
2884
2885 * font.c (font_open_entity): Record ENTITY in FONT_OBJECT's slot
2886 of FONT_ENTITY_INDEX.
2887 (Ffont_get): If KEY is :otf and the font-object doesn't have the
2888 property, get the property value dynamically.
2889 (Ffont_put): Accept font-entity and font-object too.
2890 (Ffont_get_glyhphs): Renamed from Fget_font_glyphs. Arguments and
2891 return value changed.
2892 (syms_of_font): Adjusted for the above change.
2893
2894 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
2895
2896 * blockinput.h: Remove obsolete comment.
2897
2898 * lisp.h: Include <stddef.h>.
2899 (OFFSETOF): Don't define.
2900 (VECSIZE): Use offsetof instead of OFFSETOF.
2901 (PSEUDOVECSIZE): Likewise.
2902 * process.c (conv_sockaddr_to_lisp): Likewise.
2903 * alloc.c: Don't include <stddef.h>.
2904 * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof.
2905
2906 * process.c: Remove obsolete comment.
2907
2908 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
2909
2910 * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
2911
2912 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
2913
2914 * callint.c (Fcall_interactively): Use strchr, strrchr instead of
2915 index, rindex.
2916 * doc.c (get_doc_string, Fsnarf_documentation): Likewise.
2917 * editfns.c (Fuser_full_name, Fformat): Likewise.
2918 * emacs.c (argmatch, sort_args, decode_env_path): Likewise.
2919 * fileio.c (Ffile_symlink_p): Likewise.
2920 * filelock.c (current_lock_owner): Likewise.
2921 * font.c (font_parse_name, font_parse_family_registry): Likewise.
2922 * fontset.c (fontset_pattern_regexp): Likewise.
2923 * lread.c (read1): Likewise.
2924 * sysdep.c (init_system_name): Likewise.
2925 * xfns.c (select_visual): Likewise.
2926 * s/hpux10-20.h (index, rindex): Don't define.
2927 * s/ms-w32.h (index): Likewise.
2928 * s/usg5-4.h: Likewise.
2929
2930 * callproc.c (relocate_fd): Use F_DUPFD if defined.
2931
2932 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
2933 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
2934 (egetenv): Likewise.
2935 * doprnt.c (doprnt): Likewise.
2936 * editfns.c (set_time_zone_rule, format2): Likewise.
2937 * emacs.c (decode_env_path): Likewise.
2938 * eval.c (signal_error, error): Likewise.
2939 * insdel.c (replace_range_2): Likewise.
2940 * keyboard.c (cmd_error_internal): Likewise.
2941 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
2942 * print.c (write_string, write_string_1, print_error_message):
2943 Likewise.
2944 * vm-limit.c (warn_function, memory_warnings): Likewise.
2945 * xdisp.c (message1, message1_nolog, message_with_string)
2946 (vmessage, message, message_nolog): Likewise.
2947 * emacs.c: Remove duplicate declaration.
2948 * keyboard.h: Likewise.
2949 * lisp.h: Update prototypes.
2950
2951 * eval.c: Fix indentation problem.
2952
2953 * keyboard.c: Include "process.h"
2954
2955 * eval.c: Remove obsolete noinline declaration.
2956 * fns.c: Likewise.
2957
2958 2010-07-11 Ken Raeburn <raeburn@raeburn.org>
2959
2960 * doprnt.c (doprnt): Take a va_list argument instead of count and
2961 pointer.
2962 * eval.c (error): Change to a standard-C variadic function.
2963 * xdisp.c (vmessage): Renamed from message, made static, and
2964 changed to take a va_list argument.
2965 (message): New variadic wrapper.
2966 (message_nolog): Now a variadic function, calling vmessage.
2967 * lisp.h: Include stdarg.h for va_list.
2968 (doprnt, error, message, message_nolog): Decls updated.
2969
2970 2010-07-11 Eli Zaretskii <eliz@gnu.org>
2971
2972 * process.c (syms_of_process) <delete-exited-processes>: Define
2973 even if !subprocesses.
2974 (delete_exited_processes): Ditto.
2975
2976 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
2977 (delete_exited_processes): Don't define.
2978
2979 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
2980
2981 * frame.c (make_frame): Initialize menu_bar_lines and
2982 tool_bar_lines members.
2983 (make_initial_frame, make_terminal_frame): Initialize
2984 menu_bar_lines using value of menu-bar-mode.
2985
2986 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
2987
2988 2010-07-10 Eli Zaretskii <eliz@gnu.org>
2989
2990 * process.c: Reshuffle #include's. Condition some of the global
2991 and static variables on `subprocesses'.
2992 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
2993 Leave only one implementation.
2994 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
2995 (kill_buffer_processes, Flist_system_processes)
2996 (Fprocess_attributes, init_process, syms_of_process): Unify the
2997 implementations for with subprocesses and without them.
2998
2999 2010-07-09 Jan Djärv <jan.h.d@swipnet.se>
3000
3001 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
3002 correct size for Motif.
3003 (free_frame_menubar): Call x_set_window_size to update frame size.
3004
3005 * xfns.c (x_window): Set borderWidth to 0 for pane and
3006 EmacsFrame. Frame size calculation is wrong otherwise.
3007
3008 2010-07-09 Michael Albinus <michael.albinus@gmx.de>
3009
3010 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
3011 allows to suppress errors when polling in Emacs' main loop.
3012 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
3013 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
3014 (Fdbus_method_error_internal, Fdbus_send_signal)
3015 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
3016 (Fdbus_register_method): Use it. (Bug#6579)
3017
3018 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
3019
3020 * alloc.c: Convert DEFUNs to standard C.
3021 * buffer.c:
3022 * bytecode.c:
3023 * callint.c:
3024 * callproc.c:
3025 * casefiddle.c:
3026 * casetab.c:
3027 * category.c:
3028 * character.c:
3029 * charset.c:
3030 * chartab.c:
3031 * cmds.c:
3032 * coding.c:
3033 * composite.c:
3034 * data.c:
3035 * dbusbind.c:
3036 * dired.c:
3037 * dispnew.c:
3038 * doc.c:
3039 * dosfns.c:
3040 * editfns.c:
3041 * emacs.c:
3042 * eval.c:
3043 * fileio.c:
3044 * filelock.c:
3045 * floatfns.c:
3046 * fns.c:
3047 * font.c:
3048 * fontset.c:
3049 * frame.c:
3050 * fringe.c:
3051 * image.c:
3052 * indent.c:
3053 * insdel.c:
3054 * keyboard.c:
3055 * keymap.c:
3056 * lread.c:
3057 * macros.c:
3058 * marker.c:
3059 * menu.c:
3060 * minibuf.c:
3061 * msdos.c:
3062 * nsfns.m:
3063 * nsmenu.m:
3064 * nsselect.m:
3065 * print.c:
3066 * process.c:
3067 * search.c:
3068 * sound.c:
3069 * syntax.c:
3070 * term.c:
3071 * terminal.c:
3072 * textprop.c:
3073 * undo.c:
3074 * w16select.c:
3075 * w32console.c:
3076 * w32fns.c:
3077 * w32font.c:
3078 * w32menu.c:
3079 * w32proc.c:
3080 * w32select.c:
3081 * window.c:
3082 * xdisp.c:
3083 * xfaces.c:
3084 * xfns.c:
3085 * xmenu.c:
3086 * xselect.c:
3087 * xsettings.c:
3088 * xsmfns.c: Likewise.
3089
3090 2010-07-08 Eli Zaretskii <eliz@gnu.org>
3091
3092 * process.c (kbd_is_on_hold, hold_keyboard_input)
3093 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
3094
3095 2010-07-08 Jan Djärv <jan.h.d@swipnet.se>
3096
3097 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
3098 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
3099 unless USE_LUCID.
3100
3101 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
3102
3103 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative
3104 declaration.
3105
3106 Clean up include guards.
3107 * tparam.c: Remove include guards for config.h, string.h and code
3108 that assumes #ifndef emacs.
3109 * termcap.c:
3110 * unexalpha.c:
3111 * sysdep.c:
3112 * filemode.c:
3113 * filelock.c:
3114 * bidi.c: Likewise.
3115
3116 Remove prefix-args.c
3117 * prefix-args.c: Remove file.
3118 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
3119 * Makefile.in (temacs${EXEEXT}): Remove references to
3120 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
3121 (mostlyclean): Remove reference to prefix-args.
3122 (prefix-args): Remove.
3123
3124 Simplify cstart_of_data, start_of_code and related code.
3125 * mem-limits.h: Remove !emacs and _LIBC conditional code.
3126 (start_of_data): Merge into start_of_data function.
3127 * sysdep.c (start_of_text): Remove. Move simplified versions of
3128 it in the only users: unexaix.c and unexec.c.
3129 (read_input_waiting): Remove local declaration of quit_char.
3130 (start, etext): Remove declarations.
3131 (start_of_data): Merge with the version in mem-limits.h and move
3132 to vm-limits.c.
3133 * vm-limit.c (start_of_data): Merged and simplified version of the
3134 code formerly in mem-limits.h and sysdep.c.
3135 * unexec.c (start): New declaration, moved from sysdep.c.
3136 (start_of_text): Simplified version of the code formerly in sysdep.c.
3137 * unexaix.c (start_of_text): Simplified version of the code
3138 formerly in sysdep.c.
3139 * m/alpha.h (HAVE_TEXT_START): Remove.
3140 (TEXT_START): Move ...
3141 * unexalpha.c (TEXT_START): ... here.
3142 * s/hpux10-20.h (TEXT_START): Remove.
3143 * s/darwin.h (TEXT_START):
3144 * m/mips.h (TEXT_START):
3145 * m/macppc.h (HAVE_TEXT_START):
3146 * m/m68k.h (TEXT_START):
3147 * m/iris4d.h (TEXT_START):
3148 * m/intel386.h (TEXT_START):
3149 * m/ibmrs6000.h (TEXT_START):
3150 * m/ia64.h (HAVE_TEXT_START):
3151 * s/msdos.h (TEXT_START): Likewise.
3152
3153 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
3154
3155 * alloc.c (overrun_check_malloc, overrun_check_realloc)
3156 (overrun_check_free, xstrdup, allocate_string)
3157 (allocate_string_data, compact_small_strings, Fmake_string)
3158 (make_unibyte_string, make_multibyte_string)
3159 (make_string_from_bytes, make_specified_string, make_float)
3160 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
3161 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
3162 memcpy, memmove, memset, memcmp.
3163 * atimer.c (start_atimer, set_alarm): Likewise.
3164 * buffer.c (clone_per_buffer_values, report_overlay_modification)
3165 (mmap_realloc, init_buffer_once): Likewise.
3166 * callint.c (Fcall_interactively): Likewise.
3167 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
3168 (getenv_internal_1): Likewise.
3169 * casefiddle.c (casify_object): Likewise.
3170 * ccl.c (ccl_driver): Likewise.
3171 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
3172 * charset.c (load_charset_map_from_file)
3173 (load_charset_map_from_file, load_charset_map_from_vector)
3174 (Fdefine_charset_internal): Likewise.
3175 * cm.c (Wcm_clear): Likewise.
3176 * coding.c (decode_eol, decode_coding_object)
3177 (Fset_coding_system_priority, make_subsidiaries): Likewise.
3178 * data.c (Faset): Likewise.
3179 * dired.c (directory_files_internal, file_name_completion_stat):
3180 Likewise.
3181 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
3182 (clear_glyph_row, copy_row_except_pointers)
3183 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
3184 (save_current_matrix, restore_current_matrix)
3185 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
3186 (mirror_line_dance, scrolling_window): Likewise.
3187 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
3188 Likewise.
3189 * doprnt.c (doprnt): Likewise.
3190 * editfns.c (Fuser_full_name, make_buffer_string_both)
3191 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
3192 * emacs.c (sort_args): Likewise.
3193 * eval.c (Fapply, Ffuncall): Likewise.
3194 * fileio.c (Ffile_name_directory, make_temp_name)
3195 (Fexpand_file_name, search_embedded_absfilename)
3196 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
3197 (auto_save_error): Likewise.
3198 * fns.c (Fstring_equal, Fcopy_sequence, concat)
3199 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
3200 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
3201 (Fmake_hash_table): Likewise.
3202 * fringe.c (Fdefine_fringe_bitmap): Likewise.
3203 * ftfont.c (ftfont_text_extents): Likewise.
3204 * getloadavg.c (getloadavg): Likewise.
3205 * image.c (define_image_type, make_image, make_image_cache)
3206 (x_create_x_image_and_pixmap, xbm_image_p)
3207 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
3208 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
3209 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
3210 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
3211 (tiff_image_p, tiff_read_from_memory, gif_image_p)
3212 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
3213 Likewise.
3214 * indent.c (scan_for_column, compute_motion): Likewise.
3215 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
3216 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
3217 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
3218 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
3219 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
3220 (store_user_signal_events, menu_bar_items, tool_bar_items)
3221 (process_tool_bar_item, append_tool_bar_item)
3222 (read_char_minibuf_menu_prompt, read_key_sequence)
3223 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
3224 Likewise.
3225 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
3226 Likewise.
3227 * lisp.h (STRING_COPYIN): Likewise.
3228 * lread.c (Fload, read1, oblookup): Likewise.
3229 * msdos.c (Frecent_doskeys): Likewise.
3230 * nsfns.m (Fx_create_frame): Likewise.
3231 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
3232 Likewise.
3233 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
3234 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
3235 Likewise.
3236 * nsmenu.m (ns_update_menubar): Likewise.
3237 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
3238 * print.c (print_unwind, printchar, strout, print_string)
3239 (print_error_message): Likewise.
3240 * process.c (conv_lisp_to_sockaddr, set_socket_option)
3241 (Fmake_network_process, Fnetwork_interface_list)
3242 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
3243 (init_process): Likewise.
3244 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
3245 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
3246 Likewise.
3247 * scroll.c (do_scrolling, do_direct_scrolling)
3248 (scrolling_max_lines_saved): Likewise.
3249 * search.c (search_buffer, wordify, Freplace_match): Likewise.
3250 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
3251 * syntax.c (skip_chars, skip_syntaxes): Likewise.
3252 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
3253 (emacs_set_tty): Likewise.
3254 * term.c (encode_terminal_code, calculate_costs)
3255 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
3256 Likewise.
3257 * termcap.c (tgetst1, gobble_line): Likewise.
3258 * termhooks.h (EVENT_INIT): Likewise.
3259 * tparam.c (tparam1): Likewise.
3260 * unexalpha.c (unexec): Likewise.
3261 * unexec.c (write_segment): Likewise.
3262 * unexmacosx.c (unexec_write_zero): Likewise.
3263 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
3264 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
3265 * w32font.c (w32font_list_family, w32font_text_extents)
3266 (w32font_list_internal, w32font_match_internal)
3267 (w32font_open_internal, compute_metrics, Fx_select_font):
3268 Likewise.
3269 * w32menu.c (set_frame_menubar, add_menu_item)
3270 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
3271 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
3272 * w32uniscribe.c (uniscribe_list_family): Likewise.
3273 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
3274 * window.c (make_window, replace_window, set_window_buffer)
3275 (Fsplit_window): Likewise.
3276 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
3277 (add_to_log, message3, x_consider_frame_title)
3278 (append_space_for_newline, extend_face_to_end_of_line)
3279 (decode_mode_spec_coding, init_glyph_string): Likewise.
3280 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
3281 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
3282 (face_attr_equal_p, make_realized_face, make_face_cache)
3283 (free_realized_faces, lookup_named_face, smaller_face)
3284 (face_with_height, lookup_derived_face)
3285 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
3286 (Finternal_set_font_selection_order, realize_default_face)
3287 (compute_char_face, face_at_buffer_position)
3288 (face_for_overlay_string, face_at_string_position, merge_faces):
3289 Likewise.
3290 * xfns.c (xic_create_fontsetname, Fx_create_frame)
3291 (Fx_window_property, x_create_tip_frame)
3292 (Fx_backspace_delete_keys_p): Likewise.
3293 * xfont.c (xfont_list, xfont_match, xfont_list_family)
3294 (xfont_text_extents): Likewise.
3295 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
3296 * xrdb.c (magic_file_p, x_get_resource): Likewise.
3297 * xselect.c (x_queue_event, x_get_window_property)
3298 (receive_incremental_selection): Likewise.
3299 * xsmfns.c (x_session_check_input): Likewise.
3300 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
3301 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
3302 Likewise.
3303 * character.h (BCOPY_SHORT): Removed.
3304 * config.in: Regenerate.
3305 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
3306 * emacs.c (main) [PROFILING]: Don't declare
3307 dump_opcode_frequencies.
3308 * lisp.h (safe_bcopy): Remove declaration.
3309 (memset) [!HAVE_MEMSET]: Declare.
3310 (memcpy) [!HAVE_MEMCPY]: Likewise.
3311 (memmove) [!HAVE_MEMMOVE]: Likewise.
3312 (memcmp) [!HAVE_MEMCMP]: Likewise.
3313 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
3314 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
3315 Don't define.
3316 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
3317 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
3318 (BCOPY_DOWNWARD_SAFE): Don't define.
3319 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
3320 (memcpy) [!HAVE_MEMCPY]: Define.
3321 (memmove) [!HAVE_MEMMOVE]: Define.
3322 (memcmp) [!HAVE_MEMCMP]: Define.
3323
3324 2010-07-07 Jan Djärv <jan.h.d@swipnet.se>
3325
3326 * process.c (kbd_is_on_hold): New variable.
3327 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
3328 New functions.
3329 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
3330 select on empty input mask.
3331 (init_process): Initialize kbd_is_on_hold to 0.
3332
3333 * process.h (hold_keyboard_input, unhold_keyboard_input)
3334 (kbd_on_hold_p): Declare.
3335
3336 * keyboard.c (input_available_signal): Declare.
3337 (kbd_buffer_nr_stored): New function.
3338 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
3339 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
3340 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
3341 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
3342 (tty_read_avail_input): If input is on hold, return.
3343 Don't read more that free slots in kbd_buffer (Bug#6571).
3344
3345 2010-07-07 Eli Zaretskii <eliz@gnu.org>
3346
3347 * msdos.h:
3348 * msdos.c:
3349 * dosfns.c:
3350 * w16select.c: Convert function definitions to ANSI C.
3351
3352 * msdos.h (ctrl_break_func, install_ctrl_break_check):
3353 Remove unused prototypes.
3354
3355 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
3356
3357 * coding.c, sysdep.c: Convert some more functions to standard C.
3358
3359 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
3360
3361 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
3362 (encode_coding_object): Use SPECPDL_INDEX.
3363 (syms_of_coding): Use DOS_NT.
3364
3365 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
3366
3367 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
3368
3369 Make the function member of Lisp_Subr use standard C prototypes.
3370 * lisp.h (struct Lisp_Subr): Use a union for the function member.
3371 (DECL_ALIGN): Add a cast for the function.
3372 * eval.c (Feval, Ffuncall): Use the proper type for each type
3373 function call.
3374
3375 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
3376
3377 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
3378 fringe face id, so face-remapping-alist works (Bug#6091).
3379
3380 2010-07-06 Juanma Barranquero <lekktu@gmail.com>
3381
3382 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
3383 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
3384 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
3385
3386 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
3387
3388 * xterm.c (x_get_keysym_name): Change type of parameter to int.
3389 * lisp.h: Declare x_get_keysym_name.
3390 * keyboard.c (modify_event_symbol): Don't declare
3391 x_get_keysym_name here.
3392
3393 2010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
3394
3395 * ecrt0.c: Revert conversion to standard C.
3396
3397 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
3398
3399 * vm-limit.c (memory_warnings):
3400 * keyboard.c (modify_event_symbol):
3401 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
3402 (round2, emacs_rint):
3403 * process.c (send_process, old_sigpipe): Convert function
3404 definitions and declarations to standard C.
3405
3406 2010-07-05 Juanma Barranquero <lekktu@gmail.com>
3407
3408 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
3409 * xdisp.c: Convert function definitions to standard C.
3410
3411 * cm.c (cmputc): Arg C is now int, not char.
3412 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
3413
3414 2010-07-05 James Cloos <cloos@jhcloos.com>
3415
3416 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
3417
3418 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
3419 _NET_WM_ICON_NAME atoms.
3420
3421 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
3422 and _NET_WM_ICON_NAME properties, too, matching what is
3423 done in the Gtk+ case.
3424
3425 2010-07-05 Jan Djärv <jan.h.d@swipnet.se>
3426
3427 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
3428
3429 * xsmfns.c (SSDATA): New macro.
3430 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
3431 passed to strlen/strcpy/strcat.
3432 (create_client_leader_window): Surround with #ifndef USE_GTK. Cast
3433 7:th arg to XChangeProperty to (unsigned char *).
3434
3435 * xsettings.c (something_changedCB, parse_settings)
3436 (apply_xft_settings): Reformat prototype.
3437 (something_changedCB, init_gconf): Remove unused variable i.
3438 (read_settings): Remove unused variable long_len.
3439
3440 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
3441 (xg_get_image_for_pixmap, create_dialog)
3442 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
3443 (menuitem_highlight_callback, make_menu_item)
3444 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
3445 (xg_create_scroll_bar, xg_update_scrollbar_pos)
3446 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
3447 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
3448 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
3449 (xg_tool_bar_item_expose_callback): Reformat prototype.
3450 (xg_update_menubar): GList *group => GSList *group.
3451 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
3452 before use.
3453 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
3454 to GTK_IMAGE (wimage).
3455
3456 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
3457
3458 * atimer.c: Use "" instead of <> for local includes for
3459 consistency with the rest of the code.
3460
3461 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
3462 * xrdb.c (get_system_name):
3463 * window.c (shrink_windows):
3464 * syntax.c (forw_comment):
3465 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
3466 (ins_del_costs):
3467 * mem-limits.h (start_of_data):
3468 * lread.c (readevalloop):
3469 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
3470 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
3471 * frame.c (x_get_focus_frame):
3472 * floatfns.c (fmod_float):
3473 * fileio.c (choose_write_coding_system):
3474 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
3475 (malloc_initialize_hook, sort_args, synchronize_locale):
3476 * doprnt.c (doprnt):
3477 * dired.c (compile_pattern):
3478 * data.c (fmod_float):
3479 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
3480 (map_char_table_for_charset):
3481 * charset.c (define_charset_internal):
3482 * alloc.c (Fgarbage_collect): Convert declarations or definitions
3483 to standard C.
3484
3485 2010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
3486 Stefan Monnier <monnier@iro.umontreal.ca>
3487
3488 * lread.c (read1): Fix up last change to not mess up `c'.
3489
3490 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
3491
3492 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
3493
3494 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
3495
3496 Fix prototypes.
3497
3498 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
3499 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
3500 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
3501 arg, as required by internal_condition_case_1.
3502 * print.c (strout): Use const char* for arg PTR.
3503 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
3504 (analyse_first): Fix "const const".
3505 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
3506 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
3507 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
3508
3509 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
3510
3511 * alloc.c: Convert function definitions to standard C.
3512 * atimer.c:
3513 * bidi.c:
3514 * bytecode.c:
3515 * callint.c:
3516 * callproc.c:
3517 * casefiddle.c:
3518 * casetab.c:
3519 * category.c:
3520 * ccl.c:
3521 * character.c:
3522 * charset.c:
3523 * chartab.c:
3524 * cmds.c:
3525 * coding.c:
3526 * composite.c:
3527 * data.c:
3528 * dbusbind.c:
3529 * dired.c:
3530 * dispnew.c:
3531 * doc.c:
3532 * doprnt.c:
3533 * ecrt0.c:
3534 * editfns.c:
3535 * fileio.c:
3536 * filelock.c:
3537 * filemode.c:
3538 * fns.c:
3539 * font.c:
3540 * fontset.c:
3541 * frame.c:
3542 * fringe.c:
3543 * ftfont.c:
3544 * ftxfont.c:
3545 * gtkutil.c:
3546 * indent.c:
3547 * insdel.c:
3548 * intervals.c:
3549 * keymap.c:
3550 * lread.c:
3551 * macros.c:
3552 * marker.c:
3553 * md5.c:
3554 * menu.c:
3555 * minibuf.c:
3556 * prefix-args.c:
3557 * print.c:
3558 * ralloc.c:
3559 * regex.c:
3560 * region-cache.c:
3561 * scroll.c:
3562 * search.c:
3563 * sound.c:
3564 * strftime.c:
3565 * syntax.c:
3566 * sysdep.c:
3567 * termcap.c:
3568 * terminal.c:
3569 * terminfo.c:
3570 * textprop.c:
3571 * tparam.c:
3572 * undo.c:
3573 * unexelf.c:
3574 * window.c:
3575 * xfaces.c:
3576 * xfns.c:
3577 * xfont.c:
3578 * xftfont.c:
3579 * xgselect.c:
3580 * xmenu.c:
3581 * xrdb.c:
3582 * xselect.c:
3583 * xsettings.c:
3584 * xsmfns.c:
3585 * xterm.c: Likewise.
3586
3587 2010-07-03 Eli Zaretskii <eliz@gnu.org>
3588
3589 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
3590 frames other than the initial one. Fix reversal of colors when
3591 `reverse' is specified in the frame parameters. Call
3592 update_face_from_frame_parameter instead of
3593 internal-set-lisp-face-attribute. Initialize screen colors from
3594 initial_screen_colors[] when f->default_face_done_p is zero,
3595 instead of depending on being called with default-frame-alist as
3596 the alist argument.
3597
3598 * xfaces.c (update_face_from_frame_parameter): Move out of
3599 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
3600 with HAVE_WINDOW_SYSTEM.
3601
3602 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
3603 to menu-bar-mode, if not set in the frame parameters or in
3604 default-frame-alist.
3605
3606 * w32console.c (sys_tputs): Adjust argument list to prototype in
3607 term.c.
3608
3609 2010-07-03 Juanma Barranquero <lekktu@gmail.com>
3610
3611 * lisp.h (memory_warnings): Fix prototype.
3612
3613 * cm.h (evalcost): Fix prototype.
3614
3615 * cm.c (evalcost): Fix arg type.
3616
3617 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
3618
3619 * term.c (term_clear_mouse_face, Fidentity):
3620 * syssignal.h (signal_handler_t):
3621 * lisp.h (memory_warnings):
3622 * coding.h (preferred_coding_system):
3623 * cm.h (evalcost):
3624 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
3625
3626 2010-07-02 Eli Zaretskii <eliz@gnu.org>
3627
3628 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
3629 from prototypes.
3630
3631 * msdos.h (load_pixmap): Don't define away.
3632
3633 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
3634
3635 * lisp.h:
3636 * atimer.h: Remove define for P_.
3637
3638 * alloc.c: Remove __P and P_ from .c and .m files.
3639 * atimer.c:
3640 * buffer.c:
3641 * callint.c:
3642 * category.c:
3643 * charset.c:
3644 * chartab.c:
3645 * cm.c:
3646 * coding.c:
3647 * composite.c:
3648 * data.c:
3649 * dired.c:
3650 * dispnew.c:
3651 * doc.c:
3652 * editfns.c:
3653 * emacs.c:
3654 * eval.c:
3655 * fileio.c:
3656 * filelock.c:
3657 * fns.c:
3658 * font.c:
3659 * fontset.c:
3660 * frame.c:
3661 * ftfont.c:
3662 * ftxfont.c:
3663 * gmalloc.c:
3664 * gtkutil.c:
3665 * image.c:
3666 * indent.c:
3667 * intervals.c:
3668 * keyboard.c:
3669 * keymap.c:
3670 * lread.c:
3671 * marker.c:
3672 * menu.c:
3673 * minibuf.c:
3674 * print.c:
3675 * process.c:
3676 * scroll.c:
3677 * search.c:
3678 * sound.c:
3679 * strftime.c:
3680 * syntax.c:
3681 * sysdep.c:
3682 * term.c:
3683 * terminal.c:
3684 * textprop.c:
3685 * unexalpha.c:
3686 * w32console.c:
3687 * w32fns.c:
3688 * w32font.c:
3689 * w32menu.c:
3690 * w32term.c:
3691 * w32uniscribe.c:
3692 * window.c:
3693 * xdisp.c:
3694 * xfaces.c:
3695 * xfns.c:
3696 * xfont.c:
3697 * xftfont.c:
3698 * xmenu.c:
3699 * xselect.c:
3700 * xterm.c: Likewise.
3701
3702 Remove P_ and __P macros.
3703 * atimer.h: Remove P_ and __P macros.
3704 * buffer.h:
3705 * category.h:
3706 * ccl.h:
3707 * character.h:
3708 * charset.h:
3709 * cm.h:
3710 * coding.h:
3711 * composite.h:
3712 * dispextern.h:
3713 * disptab.h:
3714 * dosfns.h:
3715 * font.h:
3716 * fontset.h:
3717 * frame.h:
3718 * gtkutil.h:
3719 * indent.h:
3720 * intervals.h:
3721 * keyboard.h:
3722 * keymap.h:
3723 * lisp.h:
3724 * macros.h:
3725 * md5.h:
3726 * menu.h:
3727 * msdos.h:
3728 * nsterm.h:
3729 * puresize.h:
3730 * region-cache.h:
3731 * syntax.h:
3732 * syssignal.h:
3733 * systime.h:
3734 * termhooks.h:
3735 * w32font.h:
3736 * w32term.h:
3737 * widget.h:
3738 * window.h:
3739 * xgselect.h:
3740 * xsettings.h:
3741 * xterm.h: Likewise.
3742
3743 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
3744
3745 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
3746
3747 Cleanup old code.
3748 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
3749 * syssignal.h: Remove code for Lynx, not supported anymore.
3750 * vm-limit.c: Remove unused code the depends on emacs not being
3751 defined and NO_LIM_DATA being defined.
3752 * mem-limits.h: Remove dead code.
3753
3754 2010-07-01 Jan Djärv <jan.h.d@swipnet.se>
3755
3756 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
3757
3758 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
3759 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
3760
3761 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
3762 parameters, they are already absolute.
3763
3764 * nsterm.m (x_set_window_size, initFrameFromEmacs):
3765 Rename FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
3766
3767 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
3768
3769 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar):
3770 Update FRAME_TOOLBAR_HEIGHT.
3771
3772 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar):
3773 Add BLOCK/UNBLOCK_INPUT so asserts don't trigger.
3774
3775 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
3776
3777 * frame.c (get_future_frame_param, Fmake_terminal_frame): Don't
3778 check default-frame-alist.
3779
3780 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
3781
3782 * process.c (create_process): Avoid using invalid file descriptors.
3783
3784 * callproc.c (child_setup): Avoid closing a file descriptor twice.
3785
3786 2010-06-30 Jan Djärv <jan.h.d@swipnet.se>
3787
3788 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
3789 Improve documentation. Return font regardless of use_system_font.
3790 (syms_of_xsettings): Improve documentation for font-use-system-font.
3791
3792 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
3793
3794 * xfaces.c (realize_face): Garbage the frame if a face is removed
3795 (Bug#6593).
3796
3797 2010-07-05 Andreas Schwab <schwab@linux-m68k.org>
3798
3799 * keyboard.c: Remove duplicate <setjmp.h>.
3800 (read_key_sequence): Remove volatile qualifiers.
3801
3802 2010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3803
3804 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
3805 (struct glyph_row): New members left_fringe_offset and
3806 right_fringe_offset.
3807
3808 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
3809 specially.
3810 * w32term.c (w32_draw_fringe_bitmap): Likewise.
3811 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
3812
3813 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
3814 Take account of bitmap offset.
3815 (draw_window_fringes): Take account of window vscroll.
3816 (update_window_fringes): Likewise. Extend top-aligned top indicator
3817 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
3818 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
3819 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
3820
3821 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
3822
3823 * w32fns.c (Qtooltip): Declare.
3824 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
3825
3826 2010-07-03 Jan Djärv <jan.h.d@swipnet.se>
3827
3828 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
3829 grab on just Press (Bug#6499).
3830
3831 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
3832
3833 * frame.c (Qtooltip): New var.
3834 (delete_frame): Use it. Fix faulty if statement. Don't update
3835 mode line for tooltip frames. Suggested by Martin Rudalics.
3836
3837 * xfns.c (x_create_tip_frame):
3838 * w32fns.c (x_create_tip_frame): Use it.
3839
3840 2010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
3841
3842 * xftfont.c (xftfont_open): Check font width one by one also when
3843 spacing is dual.
3844
3845 * ftfont.c (ftfont_open): Ditto.
3846
3847 2010-06-30 Glenn Morris <rgm@gnu.org>
3848
3849 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
3850
3851 * Makefile.in (CANNOT_DUMP): Update for configure name change.
3852
3853 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
3854 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
3855 * s/darwin.h (SYSTEM_MALLOC):
3856 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
3857
3858 2010-06-29 Jan Djärv <jan.h.d@swipnet.se>
3859
3860 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
3861 (ns_get_screen): Don't assign integer to f.
3862 (Fx_display_color_cells): Declarations before statements.
3863
3864 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
3865
3866 * xfns.c (x_default_font_parameter): Remove got_from_system
3867 (Bug#6526).
3868
3869 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
3870 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper): New
3871 defines based on what configure finds.
3872
3873 * xterm.c (XTflash): Use gtk_widget_get_window.
3874 (xg_scroll_callback): Use gtk_adjustment_get_upper and
3875 gtk_adjustment_get_page_size.
3876 (handle_one_xevent): Use gtk_widget_get_mapped.
3877 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
3878 messages.
3879
3880 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
3881
3882 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
3883 HAVE_GTK_FILE_SELECTION_NEW.
3884
3885 * gtkutil.c (xg_display_open, xg_display_close): Remove
3886 HAVE_GTK_MULTIDISPLAY, it is always defined.
3887 (xg_display_open): Return type is void.
3888 (gtk_widget_set_has_window)
3889 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
3890 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
3891 (gtk_adjustment_set_page_increment)
3892 (gtk_adjustment_get_step_increment): #define these if not found
3893 by configure.
3894 (remove_submenu): New define based on Gtk+ version.
3895 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar): Use
3896 gtk_widget_get_window.
3897 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
3898 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
3899 (create_dialog): Use gtk_dialog_get_action_area and
3900 gtk_dialog_get_content_area.
3901 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
3902 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
3903 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
3904 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item): Use
3905 g_object_ref and g_object_unref.
3906 (xg_update_menu_item, xg_tool_bar_menu_proxy): Use
3907 gtk_widget_get_sensitive.
3908 (xg_update_submenu): Use remove_submenu.
3909 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
3910 properties instead to get old x and y position.
3911 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
3912 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
3913 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
3914 (xg_get_tool_bar_widgets): New function.
3915 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
3916 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
3917 (toolbar_set_orientation): New #define based on if configure
3918 finds gtk_orientable_set_orientation.
3919 (xg_create_tool_bar): Call toolbar_set_orientation.
3920 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
3921 instead of gtk_box_pack_start_defaults.
3922
3923 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
3924
3925 * cmds.c (Fdelete_backward_char): Move into Lisp.
3926
3927 2010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
3928
3929 * s/freebsd.h (BSD4_2): Remove redundant definition.
3930 bsd-common.h defines it already.
3931
3932 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
3933
3934 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
3935 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
3936 tool-bar-mode, which are now set using these X resources at
3937 startup, to determine the defaults (Bug#2249).
3938
3939 * w32fns.c (Fx_create_frame):
3940 * nsfns.m (Fx_create_frame): Likewise.
3941
3942 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
3943
3944 2010-06-24 Juanma Barranquero <lekktu@gmail.com>
3945
3946 * gtkutil.c (xg_update_scrollbar_pos):
3947 Avoid C99 mid-block variable declaration.
3948
3949 2010-06-22 Jan Djärv <jan.h.d@swipnet.se>
3950
3951 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
3952
3953 * gtkutil.h (xg_show_scroll_bar): Remove.
3954
3955 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
3956 if height is less than scroll bar min size.
3957 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
3958
3959 * xfns.c (x_default_font_parameter): Try to open font from system
3960 before using it (bug#6478). Rename got_from_gconf to got_from_system.
3961
3962 2010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
3963
3964 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
3965
3966 2010-06-20 Eli Zaretskii <eliz@gnu.org>
3967
3968 * xdisp.c (try_scrolling): When scroll-conservatively is set to
3969 most-positive-fixnum, be extra accurate when scrolling window
3970 start, to avoid missing the cursor line.
3971
3972 2010-06-19 Eli Zaretskii <eliz@gnu.org>
3973
3974 * xdisp.c (try_scrolling): Compute the limit for searching point
3975 in forward scroll from scroll_max, instead of an arbitrary limit
3976 of 10 screen lines. See
3977 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
3978 and
3979 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
3980 for details.
3981
3982 2010-06-16 Glenn Morris <rgm@gnu.org>
3983
3984 * editfns.c (Fbyte_to_string): Pacify compiler.
3985
3986 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
3987
3988 * lread.c (read1): Phase out old-style backquotes a bit more.
3989
3990 2010-06-12 Eli Zaretskii <eliz@gnu.org>
3991
3992 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
3993 bidimirror.h.
3994
3995 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
3996
3997 * bidi.c (bidi_initialize): Remove explicit initialization of
3998 bidi_type_table; include biditype.h instead. Don't support
3999 entries whose second codepoint is zero. Initialize bidi_mirror_table.
4000 (bidi_mirror_char): Use bidi_mirror_table.
4001
4002 * biditype.h: New file.
4003
4004 * bidimirror.h: New file.
4005
4006 * window.c (syms_of_window): Doc fix (bug#6409).
4007
4008 2010-06-12 Romain Francoise <romain@orebokech.com>
4009
4010 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
4011 ediff-hook.
4012
4013 2010-06-10 Glenn Morris <rgm@gnu.org>
4014
4015 * editfns.c (Fbyte_to_string): Pacify compiler.
4016
4017 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
4018
4019 2010-06-26 Andreas Schwab <schwab@linux-m68k.org>
4020
4021 * alloc.c (Fmake_byte_code): Don't access undefined argument
4022 (Bug#6517).
4023
4024 2010-06-25 Chong Yidong <cyd@stupidchicken.com>
4025
4026 * xdisp.c (next_element_from_image): Ensure that after-strings are
4027 read the next time we hit handle_stop (Bug#1336).
4028
4029 2010-06-23 Andreas Schwab <schwab@linux-m68k.org>
4030
4031 * lread.c (read1): Signal error if #s is not followed by paren.
4032
4033 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
4034
4035 * image.c (free_image): Mark frame as garbaged (Bug#6426).
4036
4037 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
4038
4039 2010-06-15 Glenn Morris <rgm@gnu.org>
4040
4041 * editfns.c (Fbyte_to_string): Pacify compiler.
4042
4043 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
4044
4045 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
4046 Check `object's type before accessing its guts.
4047
4048 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
4049
4050 * s/usg5-4.h: Fix previous change.
4051 Suggested by Lawrence Mitchell <wence@gmx.li>
4052
4053 2010-06-08 Andreas Schwab <schwab@linux-m68k.org>
4054
4055 * minibuf.c (Fall_completions): Add more checks.
4056
4057 2010-06-08 Juanma Barranquero <lekktu@gmail.com>
4058
4059 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
4060
4061 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
4062
4063 * lread.c (X_OK): Remove, unused.
4064
4065 * dispnew.c: Remove obsolete comment.
4066
4067 Remove INCLUDED_FCNTL.
4068 * xterm.c (INCLUDED_FCNTL):
4069 * callproc.c (INCLUDED_FCNTL):
4070 * alloc.c (INCLUDED_FCNTL):
4071 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
4072 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
4073
4074 2010-06-07 Martin Rudalics <rudalics@gmx.at>
4075
4076 * window.c (Fselect_window): Move `record_buffer' up to the
4077 beginning of this function, so the buffer gets recorded
4078 even if the selected window does not change.
4079 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
4080
4081 2010-06-07 Juanma Barranquero <lekktu@gmail.com>
4082
4083 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
4084 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
4085
4086 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
4087
4088 Remove BSTRING related code, all platforms define it.
4089 * s/usg5-4.h (BSTRING): Remove definition.
4090 * s/template.h (BSTRING):
4091 * s/msdos.h (BSTRING):
4092 * s/ms-w32.h (BSTRING):
4093 * s/hpux10-20.h (BSTRING):
4094 * s/gnu-linux.h (BSTRING):
4095 * s/darwin.h (BSTRING):
4096 * s/cygwin.h (BSTRING):
4097 * s/bsd-common.h (BSTRING):
4098 * s/aix4-2.h (BSTRING): Likewise.
4099 * sysdep.c: Remove code depending on BSTRING not being defined.
4100
4101 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
4102
4103 Remove obsolete macro BASE_LEADING_CODE_P.
4104 * character.h (BASE_LEADING_CODE_P): Remove.
4105 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
4106 * buffer.c (Fset_buffer_multibyte):
4107 * indent.c (scan_for_column, compute_motion):
4108 * insdel.c (count_combining_before, count_combining_after):
4109 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
4110
4111 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
4112
4113 Turn `directory-sep-char' into a noop.
4114
4115 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
4116 (DIRECTORY_SEP): Define unconditionally.
4117
4118 * s/ms-w32.h (DIRECTORY_SEP): Remove.
4119
4120 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
4121 call dostounix_filename directly.
4122
4123 * fileio.c (CORRECT_DIR_SEPS): Remove.
4124 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
4125 (Fsubstitute_in_file_name): Use dostounix_filename instead.
4126 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
4127 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
4128
4129 * w32proc.c (CORRECT_DIR_SEPS): Remove.
4130 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
4131
4132 2010-06-03 Andreas Schwab <schwab@linux-m68k.org>
4133
4134 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 address.
4135 (Bug#6346)
4136
4137 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
4138
4139 * ccl.c (Fccl_program_p): Fix typo in docstring.
4140
4141 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
4142
4143 Move UNEXEC definition to autoconf.
4144 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
4145 * s/sol2-10.h (UNEXEC):
4146 * s/irix6-5.h (UNEXEC):
4147 * s/hpux10-20.h (UNEXEC):
4148 * s/gnu-linux.h (UNEXEC):
4149 * s/darwin.h (UNEXEC):
4150 * s/cygwin.h (UNEXEC):
4151 * s/bsd-common.h (UNEXEC):
4152 * s/aix4-2.h (UNEXEC):
4153 * m/alpha.h (UNEXEC): Likewise.
4154 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
4155
4156 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
4157
4158 Remove obsolete pre-unicode2 macros.
4159 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
4160 * composite.c (composition_reseat_it):
4161 * data.c (Faset):
4162 * fns.c (Ffillarray):
4163 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
4164 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
4165
4166 2010-06-03 Juri Linkov <juri@jurta.org>
4167
4168 * buffer.c (Fother_buffer): Add CHECK_FRAME.
4169 (Fswitch_to_buffer): Remove unused variable `err'.
4170
4171 2010-06-03 Glenn Morris <rgm@gnu.org>
4172
4173 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
4174
4175 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
4176 now that AH_BOTTOM does it.
4177
4178 * m/hp800.h (HAVE_ALLOCA):
4179 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
4180
4181 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
4182 Remove NOT_C_CODE tests, it is always true now.
4183
4184 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
4185
4186 Fix config.h includes.
4187 * xsettings.c:
4188 * xgselect.c:
4189 * nsterm.m:
4190 * nsselect.m:
4191 * nsimage.m:
4192 * nsfont.m:
4193 * nsfns.m:
4194 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
4195 other files do.
4196
4197 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
4198
4199 * s/sol2-6.h: Remove obsolete comments.
4200
4201 Remove unnecessary alloca.h includes.
4202 * keymap.c: Do not include alloca.h, config.h does that.
4203 * sysdep.c: Likewise. Do not define fwrite, not used.
4204
4205 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
4206
4207 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
4208 the HAVE_TERMIO where it belongs (bug#6149).
4209
4210 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
4211
4212 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
4213 of bug#6305).
4214
4215 2010-05-30 Eli Zaretskii <eliz@gnu.org>
4216
4217 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
4218 state is always cached (bug#6306).
4219
4220 2010-05-29 Eli Zaretskii <eliz@gnu.org>
4221
4222 Fix cursor motion in bidi-reordered continued lines.
4223 * xdisp.c (try_cursor_movement): Backup to non-continuation line
4224 only after finding point's row. Fix the logic. Rewrite the loop
4225 over continuation lines in bidi-reordered buffers. Return
4226 CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
4227 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
4228
4229 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
4230
4231 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
4232
4233 2010-05-28 Kenichi Handa <handa@m17n.org>
4234
4235 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
4236 Don't sheck SPEC if it is nil.
4237 (font_list_entities): Call font_delete_unmatched if
4238 Vface_ignored_fonts is non-nil. (Bug#6287)
4239
4240 2010-05-28 Glenn Morris <rgm@gnu.org>
4241
4242 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
4243
4244 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
4245
4246 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
4247 whether to trash.
4248 (internal_delete_file, Frename_file): Callers changed.
4249 (delete_by_moving_to_trash): Doc fix.
4250 (Fdelete_directory_internal): Don't move to trash.
4251
4252 * callproc.c (delete_temp_file):
4253 * buffer.c (Fkill_buffer): Callers changed.
4254
4255 * lisp.h: Update prototype.
4256
4257 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
4258
4259 * xdisp.c (redisplay_window): After redisplay, check if point is
4260 still valid before setting it (Bug#6177).
4261
4262 2010-05-27 Glenn Morris <rgm@gnu.org>
4263
4264 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
4265 Convert comments to Makefile format.
4266
4267 * Makefile.in (bootstrap-clean): No more Makefile.c.
4268
4269 2010-05-26 Glenn Morris <rgm@gnu.org>
4270
4271 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
4272 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
4273
4274 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
4275 Remove.
4276 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
4277
4278 2010-05-26 Kenichi Handa <handa@m17n.org>
4279
4280 * composite.c (composition_compute_stop_pos): Fix condition for
4281 backward scanning.
4282
4283 2010-05-25 Glenn Morris <rgm@gnu.org>
4284
4285 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
4286 Move before TEMACS_LDFLAGS.
4287 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
4288 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
4289
4290 * Makefile.in (NOT_C_CODE): No longer define.
4291 (config.h): No longer include.
4292
4293 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
4294 variables it may reference.
4295
4296 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
4297 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
4298
4299 2010-05-25 Kenichi Handa <handa@m17n.org>
4300
4301 * dispextern.h (struct composition_it): New members rule_idx and
4302 charpos.
4303
4304 * xdisp.c (set_iterator_to_next): While scanning backward, assume
4305 that the character positions of IT point the last character of the
4306 current grapheme cluster.
4307 (next_element_from_composition): Don't change character positions
4308 of IT.
4309 (append_composite_glyph): Set glyph->charpos to
4310 it->cmp_it.charpos.
4311
4312 * composite.c (autocmp_chars): Change the first argument to RULE,
4313 and try composition with RULE only.
4314 (composition_compute_stop_pos): Record the index number of the
4315 composition rule in CMP_IT->rule_idx.
4316 (composition_reseat_it): Call autocmp_chars repeatedly until the
4317 correct rule of the composition is found.
4318 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
4319 is at the last character of the current grapheme cluster when
4320 CMP_IT->reversed_p is nonzero.
4321
4322 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
4323
4324 * editfns.c (Fbyte_to_string): New function.
4325
4326 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
4327
4328 * process.c (Fmake_network_process): Set :host to nil if it's not used.
4329 Suggested by Masatake YAMATO <yamato@redhat.com>.
4330
4331 2010-05-23 Eli Zaretskii <eliz@gnu.org>
4332
4333 * dispextern.h (init_iterator): Sync prototype with changed definition.
4334
4335 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
4336
4337 * s/netbsd.h: If terminfo is found, use it in preference to
4338 termcap. (Bug#6190) [Backport from trunk]
4339
4340 2010-05-19 Eli Zaretskii <eliz@gnu.org>
4341
4342 Redesign and reimplement bidi-aware edge positions of glyph rows.
4343
4344 * dispextern.h (struct glyph_row): New members minpos and maxpos.
4345 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
4346 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
4347 and maxpos members instead of start.pos and end.pos, respectively.
4348
4349 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
4350 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
4351 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
4352 (try_window_reusing_current_matrix, try_window_id):
4353 Use ROW->minpos rather than ROW->start.pos.
4354 (init_from_display_pos, init_iterator): Use EMACS_INT for
4355 character and byte positions.
4356 (find_row_edges): Rename from find_row_end. Accept additional
4357 arguments for minimum and maximum buffer positions seen by
4358 display_line for this row. Don't use iterator to find the
4359 position following the maximum one; instead, increment the
4360 position found by display_line directly. Fix logic; eol_pos
4361 should be tested before the rest. Handle the case of characters
4362 delivered from display vector (bug#6036). Fix tests related to
4363 it->method. Handle the truncated_on_right_p rows.
4364 (RECORD_MAX_MIN_POS): New macro.
4365 (display_line): Use it to record the minimum and maximum buffer
4366 positions for glyphs in the row being assembled. Record the
4367 position of the newline that terminates the line. If word wrap is
4368 in effect, restore minimum and maximum positions seen up to the
4369 wrap point, when iterator returns to it.
4370 (try_window_reusing_current_matrix): Give up if in bidi-reordered
4371 row and cursor not already at point. Restore original pre-bidi
4372 code for unidirectional buffers.
4373
4374 * dispnew.c (increment_row_positions, check_matrix_invariants):
4375 Increment and check row->start.pos and row->end.pos, in addition
4376 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
4377
4378 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
4379 Display truncated_on_left_p and truncated_on_right_p flags.
4380 Formatting fixes.
4381 (pmtxrows): Display the ordinal number of each row. Don't display
4382 rows beyond the last one.
4383
4384 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
4385 it is not copied by bidi_copy_it.
4386
4387 2010-05-22 Eli Zaretskii <eliz@gnu.org>
4388
4389 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
4390 (Bug#6237)
4391
4392 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
4393
4394 * image.c (Fimage_flush): Rename from image-refresh.
4395
4396 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
4397
4398 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
4399 just one window.
4400
4401 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
4402 (clear_image_cache): If the number of cached images is unusually
4403 large, decrease the cache eviction delay (Bug#6230).
4404
4405 2010-05-21 Glenn Morris <rgm@gnu.org>
4406
4407 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
4408 Move these rules to ns.mk.
4409 * ns.mk: New file.
4410
4411 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
4412
4413 * Makefile.in (CANNOT_DUMP): New, set by configure.
4414 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
4415
4416 2010-05-20 Juri Linkov <juri@jurta.org>
4417
4418 * fileio.c (Fdelete_file): Change interative spec to use
4419 `read-file-name' like in `find-file-read-args' where the default
4420 value is `default-directory' instead of `buffer-file-name'.
4421 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
4422
4423 2010-05-20 Kevin Ryde <user42@zip.com.au>
4424
4425 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
4426 (Voverriding_terminal_local_map, Vsystem_key_alist)
4427 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
4428
4429 2010-05-20 Glenn Morris <rgm@gnu.org>
4430
4431 * Makefile.in (DEPDIR): New constant.
4432 (DEPFLAGS): Set with configure, not cpp.
4433 (MKDEPDIR): New, set by configure.
4434 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
4435 (clean): Use $DEPDIR.
4436 (deps_frag): Include from configure.
4437 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
4438 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
4439
4440 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state): Fix
4441 reallocation of the cache. (Bug#6210)
4442
4443 2010-05-19 Glenn Morris <rgm@gnu.org>
4444
4445 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
4446
4447 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
4448 (GNULIB_VAR): Remove.
4449 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
4450
4451 * m/ibms390x.h (LINKER):
4452 * m/macppc.h (LINKER) [GNU_LINUX]:
4453 * s/aix4-2.h (ORDINARY_LINK):
4454 * s/cygwin.h (LINKER):
4455 * s/darwin.h (ORDINARY_LINK):
4456 * s/gnu.h (ORDINARY_LINK):
4457 * s/netbsd.h (LINKER):
4458 * s/usg5-4.h (ORDINARY_LINK):
4459 Move to configure.
4460
4461 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
4462
4463 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
4464
4465 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
4466 prevent stack overflow if number of arguments is too large
4467 (Bug#6214).
4468
4469 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
4470
4471 * charset.c (load_charset_map_from_file): Don't call close after fclose.
4472
4473 2010-05-18 Glenn Morris <rgm@gnu.org>
4474
4475 * s/gnu-linux.h: Combine two conditionals.
4476
4477 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
4478 $(POST_ALLOC_OBJ).
4479
4480 * Makefile.in (RALLOC_OBJ): New, set by configure.
4481 (rallocobj): Replace with the previous variable.
4482 (otherobj): Use $RALLOC_OBJ.
4483
4484 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
4485 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
4486
4487 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
4488 (gmallocobj, vmlimitobj): Replace with previous two variables.
4489 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
4490
4491 2010-05-17 Glenn Morris <rgm@gnu.org>
4492
4493 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
4494 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
4495
4496 2010-05-16 Glenn Morris <rgm@gnu.org>
4497
4498 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
4499
4500 * Makefile.in (clean): Get rid of HAVE_NS conditional.
4501
4502 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
4503 trailing "/".
4504
4505 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
4506 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
4507
4508 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
4509 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
4510 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
4511 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
4512 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
4513
4514 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
4515 Remove ${STARTFLAGS}, nothing ever sets it.
4516
4517 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
4518
4519 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
4520
4521 2010-05-16 Glenn Morris <rgm@gnu.org>
4522
4523 * Makefile.in (LIBX_BASE): Always define.
4524
4525 * Makefile.in (LIBX_OTHER): Move out of cpp section.
4526
4527 * Makefile.in (LIBXT): Always define.
4528
4529 2010-05-15 Glenn Morris <rgm@gnu.org>
4530
4531 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
4532
4533 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
4534 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
4535
4536 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
4537
4538 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
4539 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
4540
4541 * emacs.c (main): Initialize initial-environment and
4542 process-environment before generating from env, not after.
4543
4544 Handle --version reasonably in CANNOT_DUMP configuration.
4545 * emacs.c (emacs_version, emacs_copyright): New string variables.
4546 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
4547 (syms_of_emacs): Defvar them, and initialize them from the C
4548 string variables.
4549 (main): If initialization hasn't been done, print initial version
4550 info from the C strings, instead of starting an interactive session.
4551
4552 2010-05-15 Eli Zaretskii <eliz@gnu.org>
4553
4554 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
4555 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
4556 (bidi_paragraph_init): Remove redundant assertion that we are at
4557 the beginning of a line after call to bidi_find_paragraph_start.
4558
4559 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
4560 (syms_of_xdisp): Defsubr it.
4561
4562 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
4563
4564 * Makefile.in: Fix MSDOS-related comments.
4565
4566 2010-05-15 Glenn Morris <rgm@gnu.org>
4567
4568 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
4569 (really-lwlib, really-oldXMenu): Always define.
4570 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
4571
4572 * Makefile.in: Simplify cpp conditional.
4573
4574 * Makefile.in (${ns_appdir}): Simplify using umask.
4575
4576 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
4577
4578 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4579
4580 * eval.c (specbind): Remove left-over duplicate test.
4581 Disallow let-binding frame-local vars. Add comment.
4582
4583 2010-05-14 Eli Zaretskii <eliz@gnu.org>
4584
4585 Make the cache of bidi iterator states dynamically allocated.
4586 * bidi.c (bidi_cache_shrink): New function.
4587 (bidi_init_it): Call it.
4588 (bidi_cache_iterator_state): Enlarge the cache if needed.
4589
4590 * bidi.c (bidi_move_to_visually_next): Rename from
4591 bidi_get_next_char_visually. All callers changed.
4592
4593 2010-05-14 Kenichi Handa <handa@m17n.org>
4594
4595 * dispextern.h (struct composition_it): New member reversed_p.
4596
4597 * composite.c (composition_compute_stop_pos): Search backward if
4598 ENDPOS < CHARPOS.
4599 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
4600 Set CMP_IT->reversed_p.
4601 (composition_update_it): Pay attention to CMP_IT->reversed_p.
4602
4603 * xdisp.c (set_iterator_to_next):
4604 Call composition_compute_stop_pos with negative ENDPOS if we are
4605 scanning backward. Call composition_compute_stop_pos if scan
4606 direction is changed.
4607 (next_element_from_buffer): Call composition_compute_stop_pos with
4608 negative ENDPOS if we are scanning backward.
4609 (next_element_from_composition): Pay attention to
4610 IT->cmp_it.reversed_p.
4611
4612 2010-05-14 Kenichi Handa <handa@m17n.org>
4613
4614 * font.c (font_range): Return the range for the font found at first.
4615
4616 2010-05-14 Glenn Morris <rgm@gnu.org>
4617
4618 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
4619
4620 * Makefile.in (mktime, X11, register): Move undefs to configure.
4621
4622 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
4623 (MSDOS_X_OBJ): New variable.
4624 (MSDOS_SUPPORT_REAL): New constant.
4625 (MSDOS_SUPPORT): Set as a variable, not with cpp.
4626 (obj): Use MSDOS_X_OBJ.
4627 (lisp): Use MSDOS_SUPPORT as a variable.
4628
4629 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
4630 (GPM_MOUSE_SUPPORT): Now it's a constant.
4631 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
4632 not cpp.
4633
4634 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
4635 (ns_appresdir): Remove, unused.
4636
4637 * Makefile.in (SHELL): Move outside cpp section.
4638
4639 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
4640
4641 2010-05-13 Glenn Morris <rgm@gnu.org>
4642
4643 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
4644 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
4645
4646 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
4647 HAVE_WINDOW_SYSTEM must be too.
4648
4649 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
4650 (lisp): Remove WINNT_SUPPORT.
4651
4652 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
4653 Let configure set these variables (to empty) in this case as well.
4654
4655 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
4656 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
4657
4658 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
4659 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
4660 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
4661 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
4662 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
4663 the values output by configure.
4664 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
4665
4666 2010-05-12 Glenn Morris <rgm@gnu.org>
4667
4668 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
4669 (LINKER_WAS_SPECIFIED): Remove.
4670
4671 * Makefile.in (LIB_GCC): Set using configure, not cpp.
4672 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
4673 * m/arm.h (LIB_GCC) [GNU_LINUX]:
4674 * s/cygwin.h (LIB_GCC):
4675 * s/freebsd.h (LIB_GCC):
4676 * s/gnu-linux.h (LIB_GCC):
4677 * s/msdos.h (LIB_GCC):
4678 * s/netbsd.h (LIB_GCC):
4679 Move to configure.
4680
4681 2010-05-11 Karel Klic <kklic@redhat.com>
4682
4683 * ftfont.c: Fix incorrect parentheses of #if condition for
4684 definining M17N_FLT_USE_NEW_FEATURE.
4685
4686 2010-05-11 Glenn Morris <rgm@gnu.org>
4687
4688 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
4689 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
4690
4691 2010-05-10 Eli Zaretskii <eliz@gnu.org>
4692
4693 * xdisp.c (init_iterator): Don't turn on bidi reordering in
4694 unibyte buffers. See
4695 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
4696
4697 2010-05-10 Glenn Morris <rgm@gnu.org>
4698
4699 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
4700 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
4701 (LIBES): Use LIBS_SYSTEM as a variable.
4702 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
4703 * s/aix4-2.h (LIBS_SYSTEM):
4704 * s/freebsd.h (LIBS_SYSTEM):
4705 * s/hpux10-20.h (LIBS_SYSTEM):
4706 * s/sol2-6.h (LIBS_SYSTEM):
4707 * s/unixware.h (LIBS_SYSTEM):
4708 Move to configure.
4709
4710 * s/aix4-2.h (MAIL_USE_LOCKF):
4711 * s/bsd-common.h (MAIL_USE_FLOCK):
4712 * s/darwin.h (MAIL_USE_FLOCK):
4713 * s/gnu-linux.h (MAIL_USE_FLOCK):
4714 * s/irix6-5.h (MAIL_USE_FLOCK):
4715 * s/template.h (MAIL_USE_FLOCK):
4716 Move to configure.
4717
4718 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4719
4720 * Version 23.2 released.
4721
4722 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
4723
4724 * composite.c (autocmp_chars): Save point as marker before calling
4725 auto-composition-function (Bug#5984).
4726
4727 * lisp.h (restore_point_unwind): Add prototype.
4728
4729 * fileio.c (restore_point_unwind): Remove static attribute.
4730
4731 2010-05-08 Kenichi Handa <handa@m17n.org>
4732
4733 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
4734 new feature of libotf and m17n-flt.
4735 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
4736 Call OTF_check_features even if no specific feature is given.
4737 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
4738 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
4739 that OUT is NULL. Use OTF_drive_gsub_with_log and
4740 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
4741 OTF_drive_gpos.
4742 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
4743 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
4744 Setup mflt_enable_new_feature and mflt_try_otf.
4745
4746 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
4747
4748 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
4749
4750 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
4751 box and toolbar (Bug #6139).
4752 (xg_create_tool_bar): Remove comment (Bug #6139).
4753 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
4754 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
4755
4756 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
4757
4758 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
4759 Update dependencies.
4760
4761 2010-05-08 Eli Zaretskii <eliz@gnu.org>
4762
4763 * fringe.c (update_window_fringes): Set up truncation bitmaps for
4764 R2L lines.
4765
4766 2010-05-08 Glenn Morris <rgm@gnu.org>
4767
4768 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
4769
4770 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
4771 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
4772 (termcapobj): Replace with TERMCAP_OBJ.
4773 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
4774 (LIBES): Use LIBS_TERMCAP as a variable.
4775
4776 * s/freebsd.h (osreldate.h): No longer include, since this file
4777 does not use __FreeBSD_version any more.
4778
4779 * s/aix4-2.h (TERMINFO):
4780 * s/cygwin.h (TERMINFO):
4781 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
4782 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
4783 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
4784 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
4785 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
4786 * s/irix6-5.h (TERMINFO):
4787 * s/netbsd.h (LIBS_TERMCAP):
4788 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
4789 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
4790 * s/usg5-4.h (TERMINFO):
4791 Move to configure.
4792
4793 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
4794
4795 * eval.c (unbind_to): Don't unbind a local binding into the global
4796 binding when the local binding disappeared. Inversely, don't unbind
4797 a global binding into a newly created local binding.
4798 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
4799 can specify the frame to use, when applicable. Adjust callers.
4800
4801 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
4802 Stefan Monnier <monnier@iro.umontreal.ca>
4803
4804 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
4805
4806 2010-05-07 Eli Zaretskii <eliz@gnu.org>
4807
4808 * w32fns.c: Include w32.h.
4809 (Fw32_shell_execute): Decode the error message before passing it
4810 to `error'. (Bug#6126)
4811
4812 * msdos.c (dos_set_window_size):
4813 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
4814 instead of `XSYMBOL (foo)->value'.
4815
4816 2010-05-07 Eli Zaretskii <eliz@gnu.org>
4817
4818 Fix the MS-DOS build, broken by autoconfiscation.
4819
4820 * Makefile.in: Don't use Make-style comments past the "start of
4821 cpp stuff" line.
4822 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
4823
4824 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
4825 edited directly by msdos/sed1v2.inp).
4826
4827 2010-05-07 Glenn Morris <rgm@gnu.org>
4828
4829 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
4830 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
4831 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
4832 move out of cpp section.
4833 * s/freebsd.h (LD_SWITCH_SYSTEM):
4834 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
4835 * s/netbsd.h (LD_SWITCH_SYSTEM):
4836 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
4837
4838 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
4839
4840 Define LIB_STANDARD and START_FILES using autoconf.
4841 * s/usg5-4.h (LIB_STANDARD):
4842 * s/netbsd.h (START_FILES):
4843 * s/irix6-5.h (LIB_STANDARD):
4844 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
4845 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
4846 * s/freebsd.h (START_FILES):
4847 * s/darwin.h (START_FILES):
4848 * s/cygwin.h (START_FILES):
4849 * s/aix4-2.h (LIB_STANDARD):
4850 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
4851 * Makefile.in (STARTFILES): Rename to START_FILES, define using
4852 autoconf, not cpp.
4853
4854 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
4855
4856 Remove NEED_BSDTTY and NEED_UNISTD_H.
4857 * s/hpux10-20.h (NEED_BSDTTY): Remove.
4858 * s/aix4-2.h (NEED_UNISTD_H): Remove.
4859 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
4860 <sys/ptyio.h> and <unistd.h>.
4861
4862 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
4863
4864 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
4865 * s/gnu.h (START_FILES): Remove empty definition.
4866
4867 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
4868
4869 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
4870
4871 2010-05-06 Glenn Morris <rgm@gnu.org>
4872
4873 * Makefile.in (CPP, LN_S): Remove unused variables.
4874
4875 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
4876
4877 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
4878
4879 2010-05-05 Lawrence Mitchell <wence@gmx.li>
4880
4881 * m/sparc.h: Fix typo in earlier change.
4882
4883 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4884
4885 Misc tweaks.
4886 * eval.c (Fdefvaralias): Remove unintended nested if.
4887 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
4888
4889 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
4890
4891 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
4892
4893 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
4894
4895 Remove BSD_PGRPS.
4896 * s/bsd-common.h (BSD_PGRPS): Remove undef.
4897 * s/gnu-linux.h (BSD_PGRPS): Remove.
4898 * term.c (dissociate_if_controlling_tty):
4899 * sysdep.c (narrow_foreground_group, widen_foreground_group)
4900 (init_sys_modes, reset_sys_modes):
4901 * emacs.c (main):
4902 * callproc.c (Fcall_process, child_setup): Remove code depending
4903 on BSD_PGRPS.
4904
4905 Remove POSIX_SIGNALS.
4906 * s/usg5-4.h (POSIX_SIGNALS):
4907 * s/netbsd.h (POSIX_SIGNALS):
4908 * s/msdos.h (POSIX_SIGNALS):
4909 * s/ms-w32.h (POSIX_SIGNALS):
4910 * s/hpux11.h (POSIX_SIGNALS):
4911 * s/gnu.h (POSIX_SIGNALS):
4912 * s/gnu-linux.h (POSIX_SIGNALS):
4913 * s/freebsd.h (POSIX_SIGNALS):
4914 * s/darwin.h (POSIX_SIGNALS):
4915 * s/cygwin.h (POSIX_SIGNALS):
4916 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
4917 * s/unixware.h:
4918 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
4919 * process.c (create_process):
4920 * syssignal.h:
4921 * sysdep.c (wait_for_termination, init_signals):
4922 * process.c (create_process):
4923 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
4924 remove all code that assumes the contrary.
4925
4926 2010-05-04 Glenn Morris <rgm@gnu.org>
4927
4928 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
4929 variable.
4930 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
4931 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
4932 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
4933 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
4934 LD_SWITCH_SYSTEM_tmp.
4935 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
4936 New variables, set by configure.
4937
4938 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
4939 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
4940 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
4941 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
4942 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
4943
4944 * s/aix4-2.h (C_SWITCH_SYSTEM):
4945 * m/alpha.h (C_SWITCH_MACHINE):
4946 Move to configure.in.
4947 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
4948 New variables, set by configure.
4949 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
4950 $c_switch_machine and $c_switch_system.
4951
4952 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
4953
4954 * s/hpux10-20.h (LIB_STANDARD): New definition.
4955 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
4956 on it, not used anymore.
4957
4958 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
4959
4960 * eval.c (internal_condition_case_n): Rename from
4961 internal_condition_case_2.
4962 (internal_condition_case_2): New function.
4963
4964 * xdisp.c (safe_call): Use internal_condition_case_n.
4965
4966 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
4967 (internal_delete_file, Frename_file): Callers changed.
4968
4969 * buffer.c (Fkill_buffer):
4970 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
4971
4972 * lisp.h: Update prototypes.
4973
4974 2010-05-03 Glenn Morris <rgm@gnu.org>
4975
4976 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
4977 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
4978 (LIBXT): Set with configure, not cpp.
4979 (LIBX): Remove.
4980 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
4981
4982 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
4983
4984 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
4985 The FreeBSD is not needed, the default works, Solaris version is
4986 not needed, and the remaining case is not supported by configure.
4987
4988 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
4989
4990 * xsmfns.c (CHDIR_OPT): New define.
4991 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
4992 restarting emacs.
4993
4994 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
4995 shut_down_emacs.
4996
4997 * emacs.c (USAGE1): Mention --chdir.
4998 (main): Handle --chdir.
4999 (standard_args): Add --chdir.
5000 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
5001 #5552).
5002
5003 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
5004
5005 Remove LD_SWITCH_MACHINE.
5006 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
5007 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
5008
5009 Clean up IRIX code.
5010 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
5011 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
5012
5013 Clean up AIX code.
5014 * m/ibmrs6000.inp: Remove file, unused.
5015 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
5016 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
5017 definition ...
5018 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
5019
5020 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
5021 unused.
5022
5023 2010-05-01 Eli Zaretskii <eliz@gnu.org>
5024
5025 Emulate POSIX_SIGNALS on MS-Windows.
5026
5027 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
5028 (SIG_SETMASK, SIG_UNBLOCK): Define.
5029
5030 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
5031 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
5032 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
5033
5034 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
5035 New stubs.
5036
5037 Miscellaneous fixes of bidi display.
5038
5039 * xdisp.c (find_row_end): New function, refactored from display_line.
5040 (display_line): Use it.
5041 (extend_face_to_end_of_line): In almost-filled rows, extend only
5042 if the row is R2L and not continued.
5043 (display_line): Fix prepending of truncation glyphs to R2L rows.
5044 Preserve overlay and string info in row->end.
5045 (insert_left_trunc_glyphs): Support addition of left truncation
5046 glyphs to R2L rows.
5047 (set_cursor_from_row): Don't place cursor on the vertical border
5048 glyph between adjacent windows. Fix a crash when a display string
5049 is continued to the next line. Don't return zero if cursor was
5050 found by `cursor' property of a display string.
5051 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
5052 test for that explicitly.
5053
5054 2010-05-01 Glenn Morris <rgm@gnu.org>
5055
5056 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
5057 for clarity.
5058 (OTHER_OBJ): Remove.
5059 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
5060 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
5061
5062 2010-05-01 Karel Klíč <kklic@redhat.com>
5063
5064 * fileio.c (Ffile_selinux_context): Context functions may return null.
5065
5066 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
5067
5068 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
5069
5070 2010-04-30 Glenn Morris <rgm@gnu.org>
5071
5072 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
5073 (OTHER_OBJ): Define as a separate variable, for clarity.
5074
5075 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
5076
5077 * xsettings.c: include limits.h and update file comment.
5078
5079 2010-04-30 Glenn Morris <rgm@gnu.org>
5080
5081 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
5082 Set with configure, not cpp.
5083 (LIBW): Remove, replace with $TOOLKIT_LIBW.
5084
5085 * Makefile.in (mallocobj): Remove.
5086 (otherobj): Simplify using @OTHER_OBJ@.
5087
5088 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
5089 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
5090 Don't bother making nsgui.h dependency platform-specific.
5091
5092 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
5093
5094 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
5095
5096 * process.c (read_process_output, exec_sentinel): Don't burp if the
5097 sentinel/filter kills the current buffer (bug#6060).
5098
5099 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
5100 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
5101 Remove unused var `args'.
5102 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
5103 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
5104 * doc.c (store_function_docstring): Use XSETCAR.
5105
5106 2010-04-28 Glenn Morris <rgm@gnu.org>
5107
5108 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
5109 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
5110
5111 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
5112
5113 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
5114 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
5115
5116 * Makefile.in (FONT_OBJ): New, set by configure.
5117 (FONT_DRIVERS): Use $FONT_OBJ.
5118
5119 * Makefile.in (LIBXMU): Set with configure, not cpp.
5120 * s/aix4-2.h (LIBXMU):
5121 * s/hpux10-20.h (LIBXMU):
5122 Remove definition, now set in configure.
5123
5124 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
5125
5126 * m/amdx86-64.h [i386]: Move this test to configure.in.
5127
5128 2010-04-27 Glenn Morris <rgm@gnu.org>
5129
5130 * Makefile.in (LIBXTR6): Set with configure, not cpp.
5131 * s/unixware.h (NEED_LIBW): Remove definition.
5132
5133 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
5134 (TOOLKIT_LIBW): New, set by configure.
5135 (@X_TOOLKIT_TYPE@): No longer define it.
5136
5137 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
5138 (MOTIF_LIBW): Set with configure, not cpp.
5139 * s/aix4-2.h (LIB_MOTIF):
5140 * s/gnu-linux.h (LIB_MOTIF):
5141 * s/unixware.h (LIB_MOTIF): Move to configure.in.
5142
5143 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
5144
5145 Reduce CPP usage.
5146 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
5147 (obj): Use autoconf for unexec instead of cpp.
5148 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE): Remove
5149 definitions and undefs. Inline definitions in the only user.
5150 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
5151
5152 2010-04-27 Glenn Morris <rgm@gnu.org>
5153
5154 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
5155 since the defaults (set by the system file) are fine in most cases.
5156 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
5157 * m/ibms390x.h (START_FILES, LIB_STANDARD):
5158 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
5159 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
5160 Remove definitions, since they are set correctly in s/gnu-linux.h.
5161 * s/freebsd.h (START_FILES, LIB_STANDARD):
5162 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
5163 * s/hpux10-20.h (START_FILES):
5164 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
5165 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
5166
5167 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
5168 (MOTIF_LIBW): Use $LIBXP.
5169 (otherobj): Use $WIDGET_OBJ.
5170
5171 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
5172
5173 * Makefile.in (LIBS_MACHINE): Remove, unused.
5174
5175 Use autoconf instead of cpp for LIB_MATH.
5176 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
5177 * s/cygwin.h (LIB_MATH): Likewise.
5178 * Makefile.in (LIB_MATH): Do not define with cpp.
5179 (LIBES): Use autoconf for LIB_MATH.
5180
5181 2010-04-26 Kenichi Handa <handa@m17n.org>
5182
5183 * composite.c (Ffind_composition_internal): Fix the return value
5184 for an automatic composition.
5185
5186 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
5187
5188 Remove all NO_ARG_ARRAY uses.
5189 * fns.c (concat2, concat3, nconc2):
5190 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
5191 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
5192 * m/xtensa.h (NO_ARG_ARRAY):
5193 * m/template.h (NO_ARG_ARRAY):
5194 * m/sparc.h (NO_ARG_ARRAY):
5195 * m/sh3.h (NO_ARG_ARRAY):
5196 * m/mips.h (NO_ARG_ARRAY):
5197 * m/macppc.h (NO_ARG_ARRAY):
5198 * m/iris4d.h (NO_ARG_ARRAY):
5199 * m/intel386.h (NO_ARG_ARRAY):
5200 * m/ibms390x.h (NO_ARG_ARRAY):
5201 * m/ibms390.h (NO_ARG_ARRAY):
5202 * m/ibmrs6000.h (NO_ARG_ARRAY):
5203 * m/ia64.h (NO_ARG_ARRAY):
5204 * m/hp800.h (NO_ARG_ARRAY):
5205 * m/arm.h (NO_ARG_ARRAY):
5206 * m/amdx86-64.h (NO_ARG_ARRAY):
5207 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
5208
5209 2010-04-25 Eli Zaretskii <eliz@gnu.org>
5210
5211 * xdisp.c (display_line): Don't assume 2nd call to
5212 get_next_display_element cannot return zero. (Bug#6030)
5213 (iterate_out_of_display_property): New function, body from pop_it.
5214 (pop_it): Use it.
5215
5216 2010-04-24 Glenn Morris <rgm@gnu.org>
5217
5218 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
5219 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
5220 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
5221 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
5222
5223 2010-04-24 Eli Zaretskii <eliz@gnu.org>
5224
5225 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
5226 use `get_next_display_element' and `set_iterator_to_next' to
5227 advance to the next character, when looking for the character that
5228 begins the next row.
5229
5230 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
5231 definition of "struct Lisp_Symbol".
5232
5233 2010-04-24 Glenn Morris <rgm@gnu.org>
5234
5235 * Makefile.in (CRT_DIR): New variable, set by configure.
5236 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
5237 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
5238
5239 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
5240
5241 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
5242
5243 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
5244
5245 Remove redundant flags.
5246 * s/freebsd.h (C_SWITCH_SYSTEM):
5247 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
5248 * s/netbsd.h (C_SWITCH_SYSTEM):
5249 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
5250 of these.
5251
5252 Simplify m/intel386.h.
5253 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
5254 user: ecrt0.c.
5255 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
5256 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
5257 the only user: s/unixware.h.
5258 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
5259 from m/intel386.h.
5260 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Definitions
5261 moved here from m/intel386.h.
5262
5263 * m/mips.h: Remove #if 0 code.
5264
5265 2010-04-23 Eli Zaretskii <eliz@gnu.org>
5266
5267 Fix display of composed characters from L2R scripts in bidi buffers.
5268 * xdisp.c (set_iterator_to_next, next_element_from_composition):
5269 After advancing IT past the composition, resync the bidi iterator
5270 with IT's position. (Bug#5977)
5271
5272 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
5273
5274 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
5275 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
5276
5277 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
5278
5279 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
5280
5281 2010-04-23 Eli Zaretskii <eliz@gnu.org>
5282
5283 Support `display' text properties and overlay strings in bidi buffers.
5284 * xdisp.c (pop_it): When the stack is popped after displaying
5285 from a string, bidi-iterate to exit from the text portion covered
5286 by the `display' property or overlay. (Bug#5988, bug#5920)
5287
5288 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
5289
5290 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
5291 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
5292
5293 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
5294 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
5295
5296 Simplify STARTFILES definition.
5297 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
5298 relying on Makefile.in to define it.
5299 * s/cygwin.h (START_FILES): Likewise.
5300 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
5301
5302 Clean up Solaris code.
5303 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
5304 (LIB_MOTIF): Remove, configure takes care of this.
5305 (NOT_USING_MOTIF): Remove, unused.
5306 * xrdb.c: Remove #if 0-ed #include.
5307 (SYSV): Remove conditional for old SysV.
5308 * sysdep.c (closedir): Remove conditional code for Solaris,
5309 Solaris has closedir.
5310
5311 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
5312
5313 * xsettings.c (read_and_apply_settings): Check if current_font is
5314 NULL before strcmp (Bug#6001).
5315
5316 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
5317
5318 Clean up HP-UX files.
5319 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
5320 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
5321 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
5322 * s/hpux10-20.h: ... to the only user, here.
5323
5324 2010-04-21 Eli Zaretskii <eliz@gnu.org>
5325
5326 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
5327 use buffer-local values of paragraph-start and paragraph-separate.
5328 <paragraph_start_re, paragraph_separate_re>: Rename from
5329 fallback_paragraph_start_re and fallback_paragraph_separate_re.
5330 (Bug#5992)
5331
5332 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
5333
5334 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
5335 current_tool_bar_style are new.
5336 (store_config_changed_event): Rename from store_font_changed_event.
5337 (XSETTINGS_TOOL_BAR_STYLE): New define.
5338 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
5339 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
5340 HAVE_XFT.
5341 (something_changedCB): store_font_changed_event is now
5342 store_config_changed_event.
5343 (parse_settings): Rename from parse_xft_settings. Read
5344 non-xft xsettings outside #ifdef HAVE_XFT.
5345 (read_settings): Renamed from read_xft_settings.
5346 (apply_xft_settings): Take current settings as parameter. Do not
5347 call read_(xft)_settings.
5348 (read_and_apply_settings): New function.
5349 (xft_settings_event): Do non-xft stuff out of HAVE_XFT. Call
5350 read_and_apply_settings if there are settings to be read.
5351 (init_xsettings): Renamed from init_xfd_settings.
5352 Call read_and_apply_settings unconditionally.
5353 (xsettings_initialize): Call init_xsettings.
5354 (Ftool_bar_get_system_style): New function.
5355 (syms_of_xsettings): Define Qmonospace_font_name and
5356 Qtool_bar_style. Initialize current_tool_bar_style to nil.
5357 defsubr Stool_bar_get_system_style. Fprovide on
5358 dynamic-setting.
5359 Move misplaced HAVE_GCONF
5360
5361 * xsettings.h (Ftool_bar_get_system_style): Declare.
5362
5363 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
5364 Qtext, Qboth, Qboth_horiz are new.
5365 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
5366 Vtool_bar_style, tool_bar_max_label_size.
5367
5368 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
5369
5370 * keyboard.c: QClabel is new.
5371 (parse_tool_bar_item): Take out QClabel from tool bar items.
5372 Try to construct a label if ther is no QClabel.
5373 (syms_of_keyboard): Intern :label as QClabel.
5374
5375 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
5376 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
5377 New.
5378
5379 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
5380 dynamic-setting.el.
5381
5382 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
5383 (xg_make_tool_item, xg_show_toolbar_item): New function.
5384 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
5385 Call xg_make_tool_item to make a tool bar item.
5386 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
5387
5388 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
5389 into account for toolbars.
5390
5391 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
5392
5393 * data.c (make_blv): Declarations before code (Bug#5993).
5394
5395 2010-04-21 Glenn Morris <rgm@gnu.org>
5396
5397 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
5398 Define using autoconf, not cpp.
5399 (LIBXSM): New variable, set by autoconf.
5400 (LIBXT): Use $LIBXSM.
5401
5402 2010-04-21 Dan Nicolaescu <local_user@dannlt>
5403
5404 Remove NOMULTIPLEJOBS, unused.
5405 * s/template.h (NOMULTIPLEJOBS):
5406 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
5407
5408 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
5409 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
5410 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
5411 detects -znocombreloc and passes it to the linker
5412 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
5413
5414 2010-04-21 Glenn Morris <rgm@gnu.org>
5415
5416 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
5417
5418 2010-04-21 Karel Klíč <kklic@redhat.com>
5419
5420 * Makefile.in (LIBSELINUX_LIBS): New.
5421 (LIBES): Add $LIBSELINUX_LIBS.
5422 * eval.c, lisp.h (call7): New function.
5423 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
5424 (Ffile_selinux_context, Fset_file_selinux_context):
5425 New functions.
5426 (Fcopy_file): New parameter preserve-selinux-context.
5427 (Frename_file): Preserve selinux context when renaming by copy-file.
5428
5429 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
5430 Eli Zaretskii <eliz@gnu.org>
5431
5432 Don't depend on cm.c or termcap.c on Windows, use stubs.
5433 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
5434 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
5435 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
5436 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
5437 (sys_tputs, sys_tgetstr): New stubs.
5438 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
5439 (tputs, tgetstr): New; define to sys_*.
5440
5441 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
5442
5443 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
5444
5445 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
5446
5447 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
5448 Just signal a warning rather than an error when inside a let.
5449 (Fmake_variable_frame_local): Add the same test.
5450
5451 * font.c (syms_of_font): Make the style table vars read-only.
5452
5453 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
5454 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
5455
5456 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
5457
5458 2010-04-20 Eli Zaretskii <eliz@gnu.org>
5459
5460 Fix R2L paragraph display on TTY.
5461
5462 * xdisp.c (unproduce_glyphs): New function.
5463 (display_line): Use it when produced glyphs are discarded from R2L
5464 glyph rows.
5465 (append_composite_glyph): In R2L rows, prepend the glyph rather
5466 than appending it.
5467
5468 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
5469 rather than append it. Set up the resolved_level and bidi_type
5470 attributes of the appended glyph.
5471 (produce_special_glyphs): Mirror the backslash continuation
5472 character in R2L lines.
5473
5474 Implement display of R2L paragraphs in GUI sessions.
5475
5476 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
5477 append_stretch_glyph.
5478 (set_cursor_from_row) <cursor_x>: Remove unused variable. Fix
5479 off-by-one error in computing x at end of text in the row.
5480 (append_stretch_glyph): In reversed row, prepend the glyph rather
5481 than append it. Set resolved_level and bidi_type of the glyph.
5482 (extend_face_to_end_of_line): If the row is reversed, prepend a
5483 stretch glyph whose width is such that the rightmost glyph will be
5484 drawn at the right margin of the window. Fix off-by-one error on
5485 TTY frames in testing whether a line needs face extension. Fix
5486 face extension at ZV. If this is the last glyph row, use
5487 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
5488 region face.
5489 (set_cursor_from_row, display_line): Use
5490 MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
5491 row->continuation_lines_width.
5492 (next_element_from_buffer): Don't call bidi_paragraph_init if we
5493 are at ZV. Fixes a crash when reseated to ZV by
5494 try_window_reusing_current_matrix.
5495 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
5496 which happens with R2L glyph rows. Fixes a crash when inserting a
5497 character at end of an R2L line.
5498 (set_cursor_from_row): Don't be fooled by truncated rows: don't
5499 treat them as having zero-width characters. Improve comments.
5500 Don't reverse pos_before and pos_after for reversed glyph rows.
5501 Set cursor.x to negative value when the cursor might be on the
5502 left fringe.
5503 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
5504 left fringe, not the right one.
5505 (notice_overwritten_cursor, draw_phys_cursor_glyph)
5506 (erase_phys_cursor): For reversed cursor_row, support cursor on
5507 the left fringe.
5508
5509 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
5510 of continuation indicators on the fringes.
5511 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
5512 left fringe.
5513
5514 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
5515 draw cursor on the left fringe.
5516
5517 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
5518 cursor on the left fringe.
5519
5520 * dispnew.c (update_text_area): Handle reversed desired rows when
5521 the cursor is on the left fringe.
5522 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
5523 below, not by 0, for when the cursor is on the left fringe.
5524
5525 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
5526
5527 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
5528 widget is a scrollbar.
5529
5530 2010-04-20 Kenichi Handa <handa@m17n.org>
5531
5532 * charset.c (char_charset): Consider Vcharset_non_preferred_head
5533 only when the arg CHARSET_LIST is nil.
5534
5535 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
5536
5537 Make variable forwarding explicit rather the using special values.
5538 Basically, this makes the structure of buffer-local values and object
5539 forwarding explicit in the type of Lisp_Symbols rather than use
5540 special Lisp_Objects for that. This tends to lead to slightly more
5541 verbose code, but is more C-like, simpler, and makes it easier to make
5542 sure we handled all cases, among other things by letting the compiler
5543 help us check it.
5544 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
5545 Removing forwarding objects.
5546 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
5547 (struct Lisp_Symbol): Make the various forms of variable-forwarding
5548 explicit rather than hiding them inside Lisp_Object "values".
5549 (XFWDTYPE): New macro.
5550 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
5551 (XBUFFER_LOCAL_VALUE): Remove.
5552 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
5553 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
5554 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
5555 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
5556 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
5557 Remove the Lisp_Misc_* header.
5558 (struct Lisp_Buffer_Local_Value): Redefine.
5559 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
5560 (struct Lisp_Misc_Any): Add filler to get the right size.
5561 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
5562 Lisp_Intfwd.
5563 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
5564 (DEFVAR_KBOARD): Allocate a forwarding object.
5565 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
5566 (let_shadows_global_binding_p): New function.
5567 (union Lisp_Val_Fwd): New type.
5568 (make_blv): New function.
5569 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
5570 (store_symval_forwarding, swap_in_global_binding, Fboundp)
5571 (swap_in_symval_forwarding, find_symbol_value, Fset)
5572 (let_shadows_buffer_binding_p, set_internal, default_value)
5573 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
5574 (Fkill_local_variable, Fmake_variable_frame_local)
5575 (Flocal_variable_p, Flocal_variable_if_set_p)
5576 (Fvariable_binding_locus):
5577 * xdisp.c (select_frame_for_redisplay):
5578 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
5579 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
5580 * frame.c (store_frame_param):
5581 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
5582 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
5583 value structure.
5584 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
5585 (clone_per_buffer_values): Only adjust markers into the current buffer.
5586 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
5587 (Fbuffer_local_value, set_buffer_internal_1)
5588 (swap_out_buffer_local_variables):
5589 Adapt to the new symbol value structure.
5590 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
5591 (defvar_per_buffer): Take a new arg for the fwd object.
5592 (buffer_lisp_local_variables): Return a proper alist (different fix
5593 for bug#4138).
5594 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
5595 (Fgarbage_collect): Don't handle buffer_defaults specially.
5596 (mark_object): Handle new symbol value structure rather than the old
5597 special Lisp_Misc_* objects.
5598 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
5599 * term.c (set_tty_color_mode):
5600 * bidi.c (bidi_initialize): Don't access the ->value field directly.
5601 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
5602 a buffer_local_flags.
5603 * print.c (print_object): Get rid of impossible forwarding objects.
5604
5605 2010-04-19 Eli Zaretskii <eliz@gnu.org>
5606
5607 * bidi.c (bidi_get_type, bidi_get_category)
5608 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
5609 (bidi_type_of_next_char, bidi_level_of_next_char):
5610 Declare static. Use `INLINE' rather than `inline'.
5611
5612 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
5613
5614 * dired.c (Ffile_attributes): Fix typo in docstring.
5615
5616 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
5617
5618 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
5619 NSInteger (Bug#5811).
5620
5621 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5622
5623 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
5624 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
5625
5626 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5627
5628 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
5629
5630 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
5631
5632 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
5633 terminal frames (Bug#5837).
5634
5635 2010-04-19 Eli Zaretskii <eliz@gnu.org>
5636
5637 * .gdbinit (xsubchartable): New command.
5638
5639 2010-04-19 Eli Zaretskii <eliz@gnu.org>
5640
5641 * xdisp.c (display_line): Don't write beyond the last glyph row in
5642 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
5643 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
5644 and
5645 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
5646
5647 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
5648
5649 * alloc.c (Fpurecopy): Hash-cons if requested.
5650 (syms_of_alloc): Update purify-flag docstring.
5651
5652 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
5653
5654 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
5655 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
5656
5657 2010-04-17 Eli Zaretskii <eliz@gnu.org>
5658
5659 Fix a crash when an NSM character is inserted at BEGV.
5660
5661 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
5662 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
5663 NEUTRAL_B or UNKNOWN_BT.
5664
5665 2010-04-16 Eli Zaretskii <eliz@gnu.org>
5666
5667 * xdisp.c (set_cursor_from_row): Don't consider possibility of
5668 other rows with cursor unless they are different from this row and
5669 this row is part of a continued line. (Bug#5943)
5670
5671 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
5672
5673 * s/freebsd.h: Restore osreldate.h include.
5674 Suggested by Naohiro Aota.
5675
5676 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
5677
5678 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
5679
5680 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
5681
5682 * s/cygwin.h: Avoid linking against static libgcc.
5683
5684 2010-04-15 Juri Linkov <juri@jurta.org>
5685
5686 * window.c: Add Qscroll_command.
5687 Remove Vscroll_preserve_screen_position_commands.
5688 (window_scroll_pixel_based, window_scroll_line_based): Check the
5689 `scroll-command' property on the last command instead of searching
5690 the last command in Vscroll_preserve_screen_position_commands.
5691 (syms_of_window): Initialize and staticpro `Qscroll_command'.
5692 Put Qscroll_command property on Qscroll_up and Qscroll_down.
5693 (scroll-preserve-screen-position): Doc fix.
5694 (Vscroll_preserve_screen_position_commands): Remove variable.
5695
5696 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
5697
5698 * xdisp.c (message): Do not use NO_ARG_ARRAY.
5699
5700 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
5701
5702 Reduce cpp use in Makefile.in.
5703 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
5704 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
5705 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
5706 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
5707 (CRT0_COMPILE): Remove, inline it in the only user.
5708
5709 2010-04-14 Juri Linkov <juri@jurta.org>
5710
5711 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
5712 `scroll-up-command' and `M-v' from `scroll-down' to
5713 `scroll-down-command'.
5714
5715 2010-04-14 Juri Linkov <juri@jurta.org>
5716
5717 * window.c (Vscroll_preserve_screen_position_commands): New variable
5718 with the default value as the list of Qscroll_down and Qscroll_up.
5719 (window_scroll_pixel_based, window_scroll_line_based): Search the
5720 last command in the list Vscroll_preserve_screen_position_commands
5721 instead of comparing with Qscroll_up and Qscroll_down.
5722
5723 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
5724
5725 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
5726 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
5727 does that.
5728
5729 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
5730 to zero.
5731
5732 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
5733
5734 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
5735
5736 Try to solve the problem of spurious EOF chars in long lines of text
5737 sent to interactive subprocesses.
5738 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
5739 (system_process_attributes): Remove unused var `ttotal'.
5740 * process.c (send_process): Don't bother breaking long line with EOF
5741 chars when talking to ttys any more.
5742 (wait_reading_process_output): Output a warning when called in such
5743 a way that it could block without being interruptible.
5744
5745 Try to detect file modification within the same second.
5746 * buffer.h (struct buffer): New field modtime_size.
5747 * buffer.c (reset_buffer): Initialize it.
5748 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
5749 (Fverify_visited_file_modtime): Check it.
5750 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
5751 (Fset_visited_file_modtime): Set (or clear) it.
5752
5753 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
5754
5755 * process.c (status_notify): Remove unused var `ro'.
5756
5757 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
5758
5759 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
5760 more than one visual (Bug#5938).
5761
5762 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
5763
5764 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
5765 Undefine.
5766
5767 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
5768
5769 Remove C_SWITCH_SYSTEM_TEMACS.
5770 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
5771 (malloc, realloc, free): Use emacs, not temacs for conditional
5772 definition.
5773
5774 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
5775 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
5776
5777 Use autoconf, not cpp for some variables.
5778 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
5779 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
5780 (ALL_CFLAGS): Use them as make variables.
5781 (really-lwlib, really-oldXMenu): Do not pass them.
5782
5783 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
5784
5785 * xmenu.c (apply_systemfont_to_dialog): New.
5786 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
5787
5788 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
5789
5790 * process.c (exec_sentinel): Preserve current-buffer.
5791
5792 * process.c (read_process_output): Move the save-current-buffer to
5793 apply to both the filter and the non-filter branches.
5794
5795 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
5796
5797 * s/msdos.h (UNEXEC): New definition.
5798
5799 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5800
5801 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
5802 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
5803
5804 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
5805 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
5806 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
5807 TRY_WINDOW_CHECK_MARGINS.
5808
5809 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
5810 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
5811 width only when it is for padding.
5812
5813 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
5814
5815 * xfns.c (Fx_show_tip): Call try_window in a loop until
5816 fonts_changed_p is zero (Bug#2423).
5817
5818 2010-04-08 Eli Zaretskii <eliz@gnu.org>
5819
5820 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
5821 the end of TEXT_AREA. (Bug#5856)
5822
5823 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
5824
5825 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
5826 HAVE_GCONF.
5827
5828 2010-04-08 Eli Zaretskii <eliz@gnu.org>
5829
5830 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
5831 prev.orig_type, for resolving type of NSM. (Bug#5858)
5832
5833 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
5834
5835 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
5836 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
5837 in current_font.
5838 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
5839 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
5840 New functions.
5841 (syms_of_xsettings): Initialize current_font.
5842 defsubr Sfont_get_system_normal_font.
5843
5844 * xsettings.h (Ffont_get_system_normal_font)
5845 (xsettings_get_system_normal_font): Declare.
5846
5847 * xfns.c (extern xlwmenu_default_font): Remove.
5848 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
5849 to xlwmenu.c.
5850
5851 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
5852 menu items in UTF-8.
5853
5854 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
5855 (apply_systemfont_to_menu): New function.
5856 (set_frame_menubar, create_and_show_popup_menu): Call
5857 apply_systemfont_to_menu.
5858
5859 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
5860
5861 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
5862 FRAME_LINE_TO_PIXEL_Y.
5863
5864 * xterm.c (x_set_window_size_1): Don't add border_width/height to
5865 pixelwidth/height.
5866
5867 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
5868
5869 Simplify code for HP machines.
5870 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
5871 for GNU_LINUX, not needed.
5872 (UNEXEC, NEED_BSDTTY): Move definitions...
5873 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
5874
5875 * m/iris4d.h (UNEXEC): Move definition ...
5876 * s/irix6-5.h (UNEXEC): ... here.
5877
5878 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
5879
5880 * xfns.c (set_machine_and_pid_properties): New function.
5881 (Fx_create_frame): Call set_machine_and_pid_properties.
5882
5883 2010-04-03 Eli Zaretskii <eliz@gnu.org>
5884
5885 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char): Check
5886 bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
5887 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
5888
5889 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
5890 in this function. (Bug#5703)
5891
5892 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
5893
5894 * nsterm.h: Fix last change.
5895
5896 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
5897
5898 * m/intel386.h (NO_REMAP): Move definition ...
5899 * s/msdos.h (NO_REMAP): ... here.
5900
5901 * m/vax.h (CRT0_DUMMIES): Remove, unused.
5902
5903 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
5904 used on those platforms.
5905
5906 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
5907
5908 Remove extern errno declarations.
5909 * xterm.c:
5910 * xrdb.c:
5911 * w32term.c:
5912 * unexec.c:
5913 * unexaix.c:
5914 * sysdep.c:
5915 * process.c:
5916 * lread.c:
5917 * keyboard.c:
5918 * floatfns.c:
5919 * filelock.c:
5920 * fileio.c:
5921 * emacs.c (main):
5922 * ecrt0.c:
5923 * dispnew.c:
5924 * callproc.c:
5925 * buffer.c: Remove errno extern declarations.
5926 * s/netbsd.h (NEED_ERRNO): Remove.
5927
5928 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
5929
5930 Remove all uses of LIBX11_SYSTEM.
5931 * Makefile.in (LIBX11_SYSTEM): Remove.
5932 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
5933 instead.
5934
5935 2010-04-01 Eli Zaretskii <eliz@gnu.org>
5936
5937 Remove support for DJGPP v1.x (bug#5813).
5938
5939 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
5940 * s/msdos.h:
5941 * unexec.c (make_hdr, copy_text_and_data):
5942 * sysdep.c (wait_for_termination, sys_subshell):
5943 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
5944 (IT_set_terminal_modes, __write, _rename, gethostname)
5945 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
5946 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
5947 the value of __DJGPP__.
5948 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
5949 compatibility code.
5950 * lread.c:
5951 * gmalloc.c (memalign):
5952 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
5953 * emacs.c (main):
5954 * dosfns.c (init_dosfns):
5955 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
5956
5957 2010-04-01 Eli Zaretskii <eliz@gnu.org>
5958
5959 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
5960 string with `cursor' property comes from an `after-string'
5961 overlay. (Bug#5816)
5962
5963 2010-04-01 Glenn Morris <rgm@gnu.org>
5964
5965 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
5966 Define as Makefile variables.
5967 (LIBX): Use above variables rather than directly using autoconf.
5968
5969 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
5970
5971 Clean up BSD_SYSTEM use.
5972 * xterm.c:
5973 * process.c:
5974 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
5975 for including <sys/ioctl.h>.
5976 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
5977 code is only used for MSDOS.
5978
5979 2010-03-31 Juri Linkov <juri@jurta.org>
5980
5981 * image.c: Add `Qextension_data'.
5982 (syms_of_image): Initialize and staticpro `Qextension_data'.
5983 (Fimage_metadata): Rename from `Fimage_extension_data'.
5984 (gif_load): Put GIF extension data to the property
5985 `Qextension_data'.
5986
5987 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
5988
5989 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
5990 * nsterm.h: Fix prototype.
5991
5992 2010-03-31 Eli Zaretskii <eliz@gnu.org>
5993
5994 * xdisp.c (highlight_trailing_whitespace): Support highlight of
5995 trailing whitespace in right-to-left rows.
5996
5997 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
5998
5999 Get rid of the direct_output optimizations.
6000 * keyboard.c (nonundocount): Remove extern declaration.
6001 (command_loop_1): Remove brittle optimisation for cheap and
6002 common operations.
6003 * xdisp.c (redisplay_internal): Don't bother checking
6004 redisplay_performed_directly_p any more.
6005 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
6006 any more.
6007 * dispnew.c (redisplay_performed_directly_p)
6008 (direct_output_for_insert, direct_output_forward_char):
6009 * dispextern.h (redisplay_performed_directly_p)
6010 (direct_output_for_insert, direct_output_forward_char): Remove.
6011 * cmds.c (nonundocount): Make it static.
6012
6013 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
6014
6015 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
6016
6017 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
6018
6019 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
6020 invisible (Bug#5766).
6021
6022 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
6023
6024 * xdisp.c (x_consider_frame_title, update_window_cursor):
6025 Remove HAVE_NS conditionals.
6026 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
6027
6028 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
6029 filename for the title.
6030 (ns_set_doc_edited): Do nothing if the selected window is a
6031 minibuffer window.
6032
6033 * nsterm.h: Add prototypes for ns_set_name_as_filename and
6034 ns_set_doc_edited.
6035
6036 * nsterm.m: Remove unneeded prototype.
6037
6038 2010-03-31 Glenn Morris <rgm@gnu.org>
6039
6040 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
6041 in the DOC file. (Bug#5336)
6042
6043 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
6044
6045 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
6046
6047 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
6048
6049 * window.c (keys_of_window): Remove redundant/overridden bindings.
6050
6051 2010-03-30 Eli Zaretskii <eliz@gnu.org>
6052
6053 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
6054 Restore original behavior when the iterator is not bidi_p.
6055
6056 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
6057
6058 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
6059
6060 2010-03-30 Eli Zaretskii <eliz@gnu.org>
6061
6062 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
6063 are outside the range of cached character positions.
6064
6065 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
6066
6067 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
6068
6069 2010-03-30 Eli Zaretskii <eliz@gnu.org>
6070
6071 Initial support for bidirectional editing.
6072
6073 * Makefile.in (obj): Include bidi.o.
6074 (bidi.o): New target.
6075
6076 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
6077 ($(BLD)/bidi.$(O)): New target.
6078
6079 * bidi.c: New file.
6080
6081 * buffer.h (struct buffer): New members bidi_display_reordering
6082 and bidi_paragraph_direction.
6083
6084 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
6085 and bidi_paragraph_direction.
6086 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
6087 and bidi-paragraph-direction.
6088 (Fbuffer_swap_text): Swap the values of
6089 bidi_display_reordering and bidi_paragraph_direction.
6090
6091 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
6092 (bidi_type_t, bidi_dir_t): New types.
6093 (bidi_saved_info, bidi_stack, bidi_it): New structures.
6094 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
6095 prev_stop, base_level_stop, and eol_pos.
6096 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
6097 (IT_STACK_SIZE): Enlarge to 5.
6098 (struct glyph_row): New member reversed_p.
6099 <string_buffer_position>: Update prototype.
6100 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
6101 glyph_row if bidi_it.paragraph_dir == R2L.
6102 (struct glyph): New members resolved_level and bidi_type.
6103
6104 * dispnew.c (direct_output_forward_char): Give up if we need bidi
6105 processing or buffer's direction is right-to-left.
6106 (prepare_desired_row): Preserve the reversed_p flag.
6107 (row_equal_p): Compare the reversed_p attributes as well.
6108
6109 * xdisp.c (init_iterator): Initialize it->bidi_p. Call
6110 bidi_init_it and set it->paragraph_embedding from the current
6111 buffer's value of bidi_paragraph_direction.
6112 (reseat_1): Initialize bidi_it.first_elt.
6113 (set_iterator_to_next, next_element_from_buffer): Use the value of
6114 paragraph_embedding to determine the paragraph direction.
6115 (set_iterator_to_next): Under bidi reordering, call
6116 bidi_get_next_char_visually. Call bidi_paragraph_init if the
6117 new_paragraph flag is set in the bidi iterator.
6118 (next_element_from_buffer): If bidi_it.first_elt is set,
6119 initialize paragraph direction and find the first character to
6120 display in the visual order. If reseated to a middle of a line,
6121 prime the bidi iterator starting at the line's beginning. Handle
6122 the situation where we overstepped stop_charpos due to
6123 non-linearity of the bidi iteration. Likewise for when we back up
6124 beyond the previous stop_charpos. When moving across stop_charpos,
6125 record it in prev_stop.
6126 (display_line): Set row->end and it->start for the next row to the
6127 next character in logical order. Always extend reversed_p rows to
6128 the end of line, even if they end at ZV. Copy the reversed_p flag
6129 to the next glyph row. Keep calling set_cursor_from_row for
6130 bidi-reordered rows even if we already have a possible candidate
6131 for cursor position. Set row_end after all the row's glyphs have
6132 been produced, by looping over the glyphs. Record the position
6133 after EOL in it->eol_pos, and use it to set end_pos of the last
6134 row produced for a continued line.
6135 <Qright_to_left, Qleft_to_right>: New variables.
6136 (syms_of_xdisp): Initialize and staticpro them.
6137 (string_buffer_position_lim): New function.
6138 (string_buffer_position): Most of code moved to
6139 string_buffer_position_lim. Last argument and return value are
6140 now EMACS_INT; all callers changed.
6141 (set_cursor_from_row): Rewritten to support bidirectional text and
6142 reversed glyph rows.
6143 (text_outside_line_unchanged_p, try_window_id): Disable
6144 optimizations if we are reordering bidirectional text and the
6145 paragraph direction can be affected by the change.
6146 (append_glyph, append_composite_glyph)
6147 (produce_image_glyph, append_stretch_glyph): Set the
6148 resolved_level and bidi_type members of each glyph.
6149 (append_glyph): If the glyph row is reversed, prepend the glyph
6150 rather than appending it.
6151 (handle_stop_backwards): New function.
6152 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
6153 (reseat): call handle_stop_backwards to recompute prev_stop and
6154 base_level_stop for the new position.
6155 (handle_invisible_prop): Under bidi iteration, skip invisible text
6156 using bidi_get_next_char_visually. If we are `reseat'ed, init the
6157 paragraph direction. Update IT->prev_stop after skipping
6158 invisible text.
6159 (move_it_in_display_line_to): New variables prev_method
6160 and prev_pos. Compare for strict equality in
6161 BUFFER_POS_REACHED_P.
6162 (try_cursor_movement): Examine all the candidate rows that occlude
6163 point, to return the best match. If rows are bidi-reordered
6164 and point moved backwards, back up to the row that is not a
6165 continuation line, and start looking for a suitable row from
6166 there.
6167
6168 * term.c (append_glyph): Reverse glyphs by pre-pending them,
6169 rather than appending, if the glyph_row's reversed_p flag is set.
6170 Set the resolved_level and bidi_type members of each glyph.
6171
6172 * .gdbinit (pbiditype): New command.
6173 (pgx): Use it to display bidi level and type of the glyph.
6174 (pitx): Display some bidi information about the iterator.
6175 (prowlims, pmtxrows): New commands.
6176
6177 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
6178
6179 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
6180 * s/usg5-4.h (LIBS_DEBUG):
6181 * s/irix6-5.h (C_DEBUG_SWITCH):
6182 * s/gnu-linux.h (LIBS_DEBUG):
6183 * s/darwin.h (LIBS_DEBUG):
6184 * s/bsd-common.h (LIBS_DEBUG):
6185 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
6186 * m/iris4d.h (LIBS_DEBUG):
6187 * m/hp800.h (LIBS_DEBUG): Remove definitions.
6188
6189 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
6190 (LIBS_DEBUG): Remove definition.
6191
6192 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
6193
6194 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
6195 Windows.
6196
6197 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6198
6199 * process.c (Fmake_network_process): Don't call turn_on_atimers around
6200 `connect' (Bug#5723).
6201
6202 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
6203
6204 * process.c (Fmake_network_process): Call `select' for interrupted
6205 `connect' rather than creating new socket (Bug#5173).
6206
6207 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
6208
6209 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
6210
6211 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
6212
6213 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
6214
6215 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6216
6217 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
6218 XLoadQueryFont.
6219
6220 2010-03-24 Kenichi Handa <handa@m17n.org>
6221
6222 * coding.c (decode_coding_ccl): Fix previous change for the
6223 multibyte case.
6224 (encode_coding_ccl): Don't setup ccl program here. Fix for the
6225 case that the output buffer is fullfilled.
6226 (encode_coding): Setup ccl program here.
6227
6228 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
6229
6230 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
6231
6232 Simplify LIBS_MACHINE definitions.
6233 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
6234 * m/iris4d.h (LIBS_MACHINE): Likewise.
6235 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
6236 * s/aix4-2.h (LIBS_SYSTEM): ... here.
6237 * s/netbsd.h: Remove commented out code.
6238
6239 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
6240
6241 Remove dead code dealing with POSIX_SIGNALS.
6242 * atimer.c (set_alarm): Remove dead code, all USG systems define
6243 POSIX_SIGNALS.
6244 * data.c (arith_error): Likewise.
6245 * keyboard.c (input_available_signal, handle_user_signal)
6246 (interrupt_signal): Likewise.
6247 * process.c (sigchld_handler): Likewise.
6248 (create_process): Remove if 0 code. Remove HPUX conditional when
6249 !defined (POSIX_SIGNALS), it cannot be true.
6250 * syssignal.h: Remove USG5_4 and USG conditionals when
6251 !POSIX_SIGNALS, they cannot be true.
6252
6253 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
6254 NO_SOCK_SIGIO, not used anymore.
6255
6256 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
6257
6258 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
6259 support vax on BSDs.
6260
6261 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
6262 * s/aix4-2.h (ORDINARY_LINK): ... here.
6263
6264 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
6265
6266 * Makefile.in (abs_builddir): Define.
6267 (bootstrap_exe): Use it.
6268 (VPATH): Use $(srcdir) instead of @srcdir@.
6269
6270 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
6271
6272 * Makefile.in (bootstrap_exe): Use an absolute name.
6273
6274 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
6275
6276 Remove support for old GNU/Linux using libc version 5.
6277 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
6278 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
6279
6280 Consolidate redundant definitions in s/bsd-common.h.
6281 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
6282 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
6283 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
6284 doing it in all files that include this one.
6285 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
6286 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
6287 (LDAV_SYMBOL, KERNEL_FILE): Remove.
6288 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
6289 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
6290 (LDAV_SYMBOL, KERNEL_FILE): Remove.
6291 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
6292 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
6293 (LDAV_SYMBOL, KERNEL_FILE): Remove.
6294
6295 Consolidate redundant definitions.
6296 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
6297 it's undefined in all files that include this one.
6298 (POSIX_SIGNALS): Define here instead of doing it in all files that
6299 include this one.
6300 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
6301 (POSIX_SIGNALS): Do not define.
6302 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
6303 (POSIX_SIGNALS): Do not define.
6304 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
6305 (POSIX_SIGNALS): Do not define.
6306
6307 Remove support for old UNIX System V systems.
6308 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
6309 * s/usg-5-4-2.h: Remove.
6310
6311 Remove support for Solaris on PPC and for old versions.
6312 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
6313 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
6314 that cancel each other.
6315 * s/sol2-3.h:
6316 * s/sol2-4.h:
6317 * s/sol2-5.h: Remove.
6318 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
6319 (NO_REMAP): Remove, unused.
6320 (UNEXEC): Move definition ...
6321 * s/aix4-2.h (UNEXEC): ... here.
6322
6323 * s/openbsd.h: Remove support for non-ELF and for systems that do
6324 not support shared libraries.
6325 * s/netbsd.h:
6326 * s/freebsd.h: Likewise.
6327
6328 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
6329
6330 Remove non-working support for lynxos 3.0.
6331 * s/lynxos.h: Remove file.
6332
6333 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
6334 COFF_BSD_SYMBOLS, nothing defines it anymore.
6335
6336 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
6337
6338 Remove obsolete uses of HAVE_SHM.
6339 * emacs.c (standard_args):
6340 (Fdump_emacs):
6341 (syms_of_emacs): Remove code depending on HAVE_SHM.
6342
6343 * alloc.c: Remove HAVE_SHM dependent definition.
6344
6345 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
6346
6347 2010-03-18 Glenn Morris <rgm@gnu.org>
6348
6349 * emacs.c (USAGE4): Hard-code bug address.
6350 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
6351 (bug_reporting_address): Remove.
6352 (main): Don't call bug_reporting_address.
6353
6354 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
6355 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
6356
6357 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
6358
6359 * xfns.c (Fx_create_frame):
6360 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
6361 on left.
6362
6363 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
6364
6365 * editfns.c (Fformat): Account for string precision when computing
6366 field width (Bug#5710).
6367
6368 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
6369
6370 * xfns.c (Fx_create_frame): Set default to Qright.
6371
6372 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
6373 all window systems.
6374
6375 2010-03-12 Eli Zaretskii <eliz@gnu.org>
6376
6377 These changes remove termcap.c from the build on Posix platforms.
6378 * Makefile.in (termcapobj): Move termcap.o from here...
6379 (MSDOS_OBJ): ...to here.
6380 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
6381 now identical to when LIBS_TERMCAP is defined.
6382
6383 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
6384
6385 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
6386
6387 * config.in: Regenerated. (See top-level ChangeLog.)
6388
6389 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
6390
6391 * Branch for 23.2.
6392
6393 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
6394
6395 Cleanup setup of gl_state in various parts of the code.
6396 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
6397 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
6398 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
6399 (skip_chars):
6400 * regex.c (regex_compile): Use it.
6401 (re_compile_pattern): Don't set gl_state.current_syntax_table since
6402 it's now set in regex_compile when/if we need it.
6403
6404 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
6405
6406 Make it possible to C-g in a tight bytecode loop again (bug#5680).
6407 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
6408 (QUIT): Use it to consolidate code and remove redundancy.
6409 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
6410
6411 * regex.c (regex_compile): Setup gl_state as well.
6412
6413 * syntax.c (skip_chars): Setup gl_state (bug#3823).
6414 (in_classes): Use CONSP before XCAR/XCDR.
6415
6416 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
6417
6418 * keymap.c (Fwhere_is_internal): Use Fequal to compare
6419 definitions, so that keyboard macros are correctly handled
6420 (Bug#5481).
6421
6422 2010-03-02 Eli Zaretskii <eliz@gnu.org>
6423
6424 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
6425 text that could be relocated inside the call to emacs_mule_char.
6426 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
6427 (CODING_DECODE_CHAR): Add a comment describing its purpose.
6428
6429 2010-03-02 Kenichi Handa <handa@m17n.org>
6430
6431 * character.c (parse_str_as_multibyte): Fix handling of the
6432 multibyte form of raw-bytes.
6433 (str_as_multibyte): Likewise.
6434
6435 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
6436 form of raw-bytes.
6437
6438 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
6439
6440 * charset.c (load_charset_map_from_file)
6441 (load_charset_map_from_vector): Zero out allocated
6442 charset_map_entries before using them.
6443
6444 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
6445
6446 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
6447
6448 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
6449
6450 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
6451 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
6452
6453 2010-02-26 Kenichi Handa <handa@m17n.org>
6454
6455 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
6456
6457 * xdisp.c (reseat_to_string): Fix previous change.
6458
6459 2010-02-26 David Reitter <david.reitter@gmail.com>
6460
6461 * nsfont.m (nsfont_draw): ns_antialias_text should be a
6462 Lisp_Object (Bug#4736).
6463
6464 2010-02-25 Kenichi Handa <handa@m17n.org>
6465
6466 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
6467
6468 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
6469
6470 * xterm.c (XTflash): Move declarations before statements.
6471
6472 * gtkutil.c (xg_get_gdk_display): Remove (unused).
6473 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
6474 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
6475 (xg_create_tool_bar): Remove unused variables.
6476 (x_wm_set_size_hint): Move declarations before statements.
6477 (xg_create_frame_widgets): Remove variable grav.
6478
6479 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
6480
6481 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
6482
6483 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
6484
6485 * term.c (fatal): Add a final \n if needed (bug#5596).
6486
6487 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
6488
6489 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
6490
6491 2010-02-18 Glenn Morris <rgm@gnu.org>
6492
6493 * callint.c (Finteractive): Doc fix.
6494
6495 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
6496
6497 * coding.c (record_conversion_result):
6498 Handle CODING_RESULT_INSUFFICIENT_DST.
6499 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
6500 memory allocation error.
6501
6502 2010-02-17 Kenichi Handa <handa@m17n.org>
6503
6504 * coding.c (decode_coding_ccl): Don't setup ccl program here.
6505 Fix for the case that the output buffer is fullfilled.
6506 (decode_coding): Setup ccl program here. Keep looping when the
6507 decoder stopped because the output buffer is
6508 fullfilled (bug#5534).
6509
6510 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
6511
6512 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
6513
6514 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
6515 bug #5571.
6516 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
6517 overdrawn.
6518
6519 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
6520
6521 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
6522 doing_interact here.
6523 (ice_connection_closed): New function.
6524 (x_session_check_input, smc_die_CB, ice_io_error_handler)
6525 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
6526 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
6527 returns I/O error.
6528 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
6529 bug #5512.
6530
6531 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
6532
6533 * nsfont.m (nsfont_open): The system's value for the font descent
6534 is negative, so round it down to avoid clipping.
6535
6536 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
6537
6538 * charset.c (load_charset_map_from_file)
6539 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
6540 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
6541
6542 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
6543
6544 * charset.c (load_charset_map_from_file): Allocate large
6545 charset_map_entries structure on the heap rather than the stack.
6546 (Bug#5526).
6547
6548 2010-01-31 Kenichi Handa <handa@m17n.org>
6549
6550 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
6551 size in NAME is invalid, return -1 (Bug#5396).
6552
6553 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
6554
6555 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
6556 <deactivated@gmail.com> (Bug#3605).
6557
6558 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
6559
6560 * fileio.c (Frename_file): Correctly rename symlinks to
6561 directories (Bug#5496).
6562
6563 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
6564
6565 * nsterm.m (ns_ring_bell): Handle visible bell like X.
6566
6567 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
6568
6569 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
6570
6571 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
6572
6573 * frame.c (DEFAULT_ROWS): Change default to 35.
6574
6575 * xfns.c (x_default_font_parameter): Change default XFT font to
6576 monospace-10 (Bug#3643).
6577
6578 2010-01-29 Eli Zaretskii <eliz@gnu.org>
6579
6580 * w32inevt.c (key_event): Remove unnecessary comparison of
6581 event->uChar.AsciiChar with 128.
6582
6583 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
6584
6585 * fileio.c (Frename_file): Fix last change (Bug#5487).
6586
6587 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
6588
6589 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
6590
6591 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
6592
6593 * xfns.c (Fx_create_frame): Remove window size matching code from
6594 2010-01-15.
6595 (x_get_current_desktop, x_get_desktop_workarea): Remove.
6596
6597 2010-01-27 Jason Rumney <jasonr@gnu.org>
6598
6599 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
6600 (key_event): Use unicode for characters 128 and higher (Bug#4567).
6601
6602 2010-01-27 Kenichi Handa <handa@m17n.org>
6603
6604 * regex.c (analyse_first): Fix setting of fastmap for unibyte
6605 pattern string (Bug#4209).
6606
6607 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
6608
6609 * fileio.c (Frename_file): Call copy-directory and
6610 delete-directory for directories, in order to handle cross-device
6611 renaming (Bug#3353).
6612
6613 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
6614
6615 * xfns.c (Fx_create_frame): If frame height is too big, try
6616 sizes 24 and 10. Bug #3643.
6617
6618 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
6619
6620 Try and fix bug#788, hopefully for real this time.
6621 * keymap.c (shadow_lookup): Add `remap' arg.
6622 (describe_map, describe_vector): Update calls to shadow_lookup.
6623 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
6624 `remapped' so this flag is applicable to `sequence'. Be careful to
6625 perform remapping during shadow_lookup check of remapped_sequences.
6626
6627 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
6628
6629 * image.c (png_load): Use png_sig_cmp instead of the obsolete
6630 png_check_sig, which has been removed in libpng 1.4.
6631
6632 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
6633
6634 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
6635 lacks this header file).
6636
6637 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6638
6639 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
6640 as in Emacs 22.
6641
6642 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6643
6644 * lisp.h (make_pure_string): String pointer arg now points to const.
6645
6646 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
6647 args now point to const.
6648
6649 2010-01-22 Eli Zaretskii <eliz@gnu.org>
6650
6651 * lread.c (Fload): Don't treat files without .elc extension as
6652 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
6653 them. (bug#5303)
6654
6655 2010-01-20 Kenichi Handa <handa@m17n.org>
6656
6657 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
6658 treat the source as actual byte sequence.
6659
6660 2010-01-19 Alan Mackenzie <acm@muc.de>
6661
6662 Fix spurious before-change-functions invocation from (insert ?\n).
6663 * textprop.c (set_text_properties): Rename parameter
6664 `signal_after_change_p' to `coherent_change_p', and make the
6665 invocation of `modify_region' conditional on it.
6666
6667 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
6668
6669 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
6670 for debug purpose.
6671 (syms_of_xsettings): Declare xft-settings.
6672
6673 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
6674
6675 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
6676
6677 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
6678
6679 * xterm.c (event_handler_gdk): Block input (Bug#5037).
6680
6681 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
6682
6683 * emacs.c (standard_args): Adjust arg priorities to reflect how
6684 they are processed in startup.el.
6685
6686 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
6687
6688 * Makefile.in (lisp, shortlisp): Update.
6689
6690 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
6691
6692 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
6693 code, link the new kboard into all_kboard before running Lisp code,
6694 and protect the new terminal with GCPRO (Bug#5365).
6695 (x_term_init): Remove unused var `atom'.
6696 (x_delete_display, x_delete_terminal): Remove unused var `i'.
6697
6698 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
6699
6700 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
6701 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
6702 to find out usable size of the desktop. Don't make frames larger than
6703 this. Bug #3643.
6704
6705 2010-01-15 Kenichi Handa <handa@m17n.org>
6706
6707 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
6708
6709 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
6710
6711 * nsterm.m (Qnone): Define.
6712
6713 * nsfns.m (Qnone): Move definition to nsterm.m.
6714
6715 2010-01-14 Kenichi Handa <handa@m17n.org>
6716
6717 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
6718 systems.
6719
6720 2010-01-14 Kenichi Handa <handa@m17n.org>
6721
6722 Make auto-composition work on all buffers even if they are
6723 fundamental mode.
6724
6725 * composite.c (Vauto_composition_mode): New variable.
6726 (composition_compute_stop_pos): Check Vauto_composition_mode
6727 instead of Vauto_composition_function.
6728 (composition_adjust_point, Ffind_composition_internal): Likewise.
6729 (syms_of_composite): Declare Lisp variable
6730 "auto-composition-mode" here.
6731
6732 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
6733
6734 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
6735 during call to vendor-specific-keysyms (Bug#5365).
6736
6737 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6738
6739 * keyboard.c (input_available_signal) [SYNC_INPUT]:
6740 Call SIGNAL_THREAD_CHECK (Bug#5333).
6741
6742 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
6743 Call SIGNAL_THREAD_CHECK.
6744
6745 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
6746
6747 Try to fix bug#5314. This is probably not the final word, tho.
6748 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
6749 recent-auto-save-p as a side-effect.
6750 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
6751 * buffer.c (Fkill_buffer, reset_buffer):
6752 * editfns.c (Fsubst_char_in_region):
6753 * fileio.c (Finsert_file_contents, Fdo_auto_save)
6754 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
6755
6756 2010-01-13 Kenichi Handa <handa@m17n.org>
6757
6758 Display buffer name, etc. in mode line by composing correctly.
6759
6760 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
6761 STRING is not nil.
6762 (display_mode_element): Adjust for the change of
6763 decode_mode_spec and display_line.
6764 (decode_mode_spec): Change arg MULTIBYTE to STRING.
6765 (display_string): Handle the case that STRING is non-null and
6766 LISP_STRING is not nil.
6767
6768 * xterm.c (x_draw_composite_glyph_string_foreground):
6769 Pay attention to s->face->overstrike.
6770
6771 * composite.c (composition_reseat_it): Don't check PT if STRING is
6772 non nil.
6773
6774 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6775
6776 * keyboard.c (read_char): Don't apply previous change when current
6777 buffer is unchanged by command execution.
6778
6779 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
6780
6781 * keyboard.c (read_char): Return after executing from special map.
6782
6783 2010-01-12 Glenn Morris <rgm@gnu.org>
6784
6785 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
6786 bug-gnu-emacs rather than emacs-pretest-bug.
6787
6788 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
6789
6790 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
6791 initializing the Lisp variables that depend on them.
6792
6793 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6794
6795 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
6796 Clear areas that will not be updated after change of menu bar lines.
6797 Clear the menu bar window's current matrix when the window gets empty.
6798
6799 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
6800
6801 * intervals.h, textprop.c (extend_property_ranges): Return value
6802 and args changed. Discard properties that begin at or after the
6803 new end (Bug#5306).
6804
6805 * editfns.c (Fformat): Caller changed.
6806
6807 * nsterm.m (ns_set_default_prefs): Delete function.
6808 (syms_of_nsterm): Initialize ns_command_modifier,
6809 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
6810 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
6811
6812 * xdisp.c (pos_visible_p): Check for invisible text at the correct
6813 position (Bug#4040).
6814
6815 2010-01-09 Eli Zaretskii <eliz@gnu.org>
6816
6817 * editfns.c (Ffloat_time): Doc fix.
6818
6819 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
6820
6821 * xfns.c (Fx_create_frame): Don't create frame larger than display
6822 by default bug#3643.
6823
6824 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6825
6826 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
6827 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
6828 windows above internal border.
6829
6830 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
6831 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
6832 windows above internal border.
6833
6834 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
6835 tool bar windows specially.
6836
6837 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
6838
6839 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
6840 specially.
6841 (XTflash): Take account of menu bar height.
6842
6843 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
6844 specially.
6845
6846 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
6847
6848 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
6849 also be true before we can return early (bug #5339).
6850
6851 2010-01-06 David Reitter <david.reitter@gmail.com>
6852
6853 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
6854 (Fns_display_usable_bounds): Rewrite, computing bounds properly
6855 (Bug#3233).
6856
6857 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
6858
6859 * font.c (font_open_entity): Enable chache and call cached_font_ok
6860 for the driver if defined.
6861 (QCuser_spec): New symbol.
6862 (font_spec_from_name): Save name as user-spec.
6863 (font_load_for_lface): Keep user-spec instead of name.
6864 (font_open_by_name): Save name as user-spec.
6865 (syms_of_font): Initialize QCuser_spec.
6866 (font_clear_prop): Clear name if it exists in font (bug#5157).
6867
6868 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
6869 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
6870 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
6871
6872 * font.h (struct font_driver): Add cached_font_ok.
6873
6874 * xterm.c (x_clear_frame): Queue draw for scroll bars.
6875
6876 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
6877
6878 * xterm.c (x_new_font): Move code for setting rows/cols before
6879 resizing ...
6880 (x_set_window_size): ... to here. Bug #2568.
6881
6882 * gtkutil.c (xg_clear_under_internal_border): New function.
6883 (xg_frame_resized, xg_frame_set_char_size):
6884 Call xg_clear_under_internal_border.
6885 (xg_update_scrollbar_pos): Clear under old scroll bar position.
6886
6887 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
6888
6889 * keyboard.c (read_key_sequence): Catch keyboard switch after
6890 making a new tty frame (Bug#5095).
6891
6892 2010-01-05 Kenichi Handa <handa@m17n.org>
6893
6894 * fontset.c (fontset_find_font): Fix getting the frame pointer.
6895
6896 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
6897
6898 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
6899 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
6900 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
6901
6902 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
6903
6904 * dbusbind.c (xd_add_watch): Improve debug message.
6905 (xd_remove_watch): Improve debug message. If DATA is the session
6906 bus, unset D-Bus session environment.
6907 (Fdbus_init_bus): Pass the bus as argument to
6908 dbus_connection_set_watch_functions. (Bug#5283)
6909
6910 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
6911
6912 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
6913
6914 * lread.c (syms_of_lread): Make it clearer that these are the
6915 names of loaded files (Bug#5068).
6916
6917 * eval.c (run_hook_with_args): Handle the case where the global
6918 value has the obsolete single-function form (Bug#5026).
6919
6920 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
6921
6922 * minibuf.c (Fall_completions): Minor optimization.
6923
6924 2009-12-26 Eli Zaretskii <eliz@gnu.org>
6925
6926 * .gdbinit (pgx): Fix display of composite glyphs.
6927 Display cmp.from and cmp.to as well.
6928 (pitx): Fix last change.
6929
6930 2009-12-25 Kenichi Handa <handa@m17n.org>
6931
6932 * composite.h (composition_adjust_point): Update prototype.
6933
6934 * composite.c (composition_reseat_it): Don't make a composition
6935 spanning over point.
6936 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
6937 composable characters.
6938 (composition_adjust_point): New arg NEW_PT. Callers changed.
6939
6940 * keyboard.c (command_loop_1): Force redisplay if the last point
6941 was within a composition.
6942 (adjust_point_for_property): Don't adjust point for automatic
6943 composition when called after buffer modification.
6944
6945 2009-12-19 Eli Zaretskii <eliz@gnu.org>
6946
6947 * .gdbinit (pitx): Don't use enum names, use their values.
6948 Remove reference to non-existing value GET_FROM_COMPOSITION.
6949 (pgx): Don't use enum names, use their values.
6950 (pitmethod): New helper command.
6951 (pitx): Use it to display iteration method.
6952 (pgrowit): New command.
6953
6954 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
6955
6956 Update dependencies in Makefile.in.
6957
6958 * Makefile.in (alloc.o): Depend on termhooks.h.
6959 (atimer.o): Depend on blockinput.h.
6960 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
6961 and frame.h.
6962 (callint.o): Depend on systime.h, coding.h, and composite.h.
6963 (callproc.o): Depend on buffer.h.
6964 (casefiddle.o): Don't depend on charset.h.
6965 (casetab.o): Depend on character.h.
6966 (ccl.o): Depend on composite.h.
6967 (chartab.o): Depend on ccl.h.
6968 (cm.o): Depend on dispextern.h.
6969 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
6970 (coding.o): Don't depend on $(INTERVALS_H).
6971 (composite.o): Don't depend on dispextern.h explicitly (it's in
6972 $(INTERVALS_H)). Depend on ccl.h.
6973 (data.o): Depend on systime.h, coding.h, composite.h,
6974 dispextern.h, font.h, and ccl.h.
6975 (dired.o): Depend on composite.h.
6976 (dispnew.o): Depend on coding.h. Don't depend explicitly on
6977 composite.h (it's in $(INTERVALS_H)).
6978 (doc.o): Depend on systime.h, coding.h, and composite.h.
6979 (editfns.o): Don't depend explicitly on dispextern.h.
6980 (emacs.o): Depend on frame.h and coding.h.
6981 (eval.o): Depend on coding.h, composite.h, and xterm.h.
6982 (fileio.o): Depend on frame.h and commands.h. Don't depend
6983 explicitly on dispextern.h.
6984 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
6985 composite.h.
6986 (fns.o): Don't depend on termhooks.h.
6987 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
6988 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
6989 coding.h, $(INTERVALS_H), window.h, xterm.h.
6990 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
6991 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
6992 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
6993 fontset.h, ccl.h, and ftfont.h.
6994 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
6995 (gtkutil.o): Depend on dispextern.h and composite.h.
6996 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
6997 termhooks.h, and ccl.h.
6998 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
6999 (intervals.o): Depend on systime.h and coding.h.
7000 (keyboard.o): Depend on composite.h and coding.h.
7001 (keymap.o): Depend on coding.h and frame.h.
7002 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
7003 (macros.o): Depend on systime.h, coding.h, and composite.h.
7004 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
7005 and atimer.h.
7006 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
7007 dispextern.h explicitly.
7008 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
7009 Don't depend explicitly on dispextern.h and composite.h.
7010 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
7011 (regex.o): Don't depend on charset.h.
7012 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
7013 (search.o): Don't depend explicitly on composite.h.
7014 (sound.o): Depend on atimer.h and systime.h.
7015 (syntax.o): Don't depend explicitly on composite.h.
7016 (sysdep.o): Depend on coding.h and composite.h.
7017 (term.o): Depend on xterm.h and buffer.h.
7018 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
7019 (textprop.o): Don't depend on dispextern.h explicitly.
7020 (undo.o): Depend on dispextern.h.
7021 (window.o): Depend on coding.h and termhooks.h. Don't depend on
7022 dispextern.h and composite.h explicitly.
7023 (xdisp.o): Depend on ccl.h.
7024 (xfaces.o): Depend on coding.h and ccl.h.
7025 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
7026 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
7027 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
7028 ftfont.h.
7029 (xgselect.o): New dependency.
7030 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
7031 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
7032 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
7033 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
7034 (xsmfns.o): Depend on frame.h and dispextern.h.
7035 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
7036 sysselect.h.
7037
7038 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
7039
7040 * font.c (Fclear_font_cache): Pass correct cache argument to
7041 font_clear_cache.
7042
7043 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
7044
7045 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
7046 twice.
7047
7048 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
7049
7050 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
7051 calling file-remote-p. Reported by Jim Meyering.
7052
7053 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
7054
7055 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
7056 avoid compiler warnings. (Bug #5217)
7057
7058 2009-12-14 Kenichi Handa <handa@m17n.org>
7059
7060 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
7061 in 8-bit encoding.
7062
7063 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
7064
7065 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
7066 tooltip windows.
7067
7068 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
7069
7070 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
7071 Xatom_net_window_type.
7072
7073 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
7074 Xatom_net_window_type.
7075
7076 * xterm.c (my_log_handler): New function.
7077 (x_term_init): Set my_log_handler as log handler during gtk_init
7078 so we can filter out buggy messages. (Bug #5120).
7079
7080 * xterm.c (xg_scroll_callback): Parameter list changed,
7081 use parameter GtkScrollType to determine scroll/line/page.
7082 Only allow dragging if a button < 4 is grabbed (bug #5177).
7083 (xg_end_scroll_callback): New function.
7084 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
7085 xg_create_scroll_bar.
7086
7087 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
7088 (scroll_end_callback): Remove.
7089 (xg_create_scroll_bar): Add parameter end_callback, bind it to
7090 button-release-event. Replace value-changed event with change-value,
7091 bug #5177.
7092 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
7093 bug #5177.
7094
7095 * gtkutil.h (XG_LAST_SB_DATA): Remove.
7096 (xg_create_scroll_bar): Add GCallback end_callback.
7097
7098 * xftfont.c (QClcdfilter): New variable.
7099 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
7100 (syms_of_xftfont): Initialize QClcdfilter.
7101
7102 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
7103
7104 * xsettings.c (struct xsettings): Add member seen.
7105 (parse_xft_settings): Update member seen with what we have read.
7106 Return non-zero if Xft-settings have been parsed, 0 otherwise.
7107 (apply_xft_settings): Only update Xft settings with what member seen
7108 indicates as new.
7109
7110 2009-12-12 Eli Zaretskii <eliz@gnu.org>
7111
7112 * dispextern.h (struct text_pos): Use EMACS_INT.
7113 (struct glyph): Use EMACS_INT for charpos.
7114 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
7115 region_beg_charpos, region_end_charpos,
7116 redisplay_end_trigger_charpos, and also for
7117 iterator_stack_entry.end_charpos and
7118 iterator_stack_entry.stop_charpos.
7119
7120 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
7121
7122 * gtkutil.c (scroll_end_callback): New function (bug #5177).
7123 (xg_create_scroll_bar): Call scroll_end_callback on button release
7124 event (bug #5177).
7125 (xg_event_is_for_scrollbar): != replaced with ==.
7126
7127 2009-12-12 Kenichi Handa <handa@m17n.org>
7128
7129 * ftfont.c (struct ftfont_info): New member matrix.
7130 (ftfont_open): Setup xftfont_info->matrix.
7131 (MFLTFontFT): New member matrix.
7132 (FLOOR, CEIL, ROUND): New macros.
7133 (ftfont_get_metrics): Handle matrix transformation.
7134 (ftfont_shape_by_flt): New arg matrix. Callers changed.
7135
7136 * xftfont.c (struct xftfont_info): New member matrix.
7137 (xftfont_open): Setup xftfont_info->matrix.
7138
7139 2009-12-10 Kenichi Handa <handa@m17n.org>
7140
7141 * xdisp.c (append_space_for_newline): Consider face-remapping.
7142
7143 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
7144
7145 * xsettings.c: Include "keyboard.h".
7146
7147 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
7148
7149 Fix implicit function declarations.
7150 * cmds.c: Include "frame.h".
7151 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
7152 * frame.h: Move declaration of delete_frame outside of
7153 HAVE_WINDOW_SYSTEM.
7154
7155 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
7156
7157 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
7158
7159 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
7160 GTK builds.
7161
7162 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
7163
7164 * unexelf.c (unexec): Don't search for .data twice.
7165
7166 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
7167
7168 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
7169 if push failed.
7170 (handle_line_prefix): Set avoid_cursor_p here. Check return value
7171 of push_display_prop (Bug#5000).
7172
7173 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
7174 value of font_list_entities (Bug#5085).
7175
7176 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
7177
7178 Fix `string-to-number' to deal consistently with integers and floats.
7179 * lread.c (isfloat_string): New argument ignore_trailing to accept all
7180 trailing characters, not just whitespace.
7181 (read1): Pass new arg 0 to keep old behavior.
7182 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
7183 trailing chars, as it is already done for integers. Doc fixes.
7184 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
7185
7186 2009-12-04 Eli Zaretskii <eliz@gnu.org>
7187
7188 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
7189 Delete unused enumeration value.
7190
7191 2009-12-03 Eli Zaretskii <eliz@gnu.org>
7192
7193 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
7194
7195 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
7196
7197 * process.c (Fmake_network_process): Fix up the tests for
7198 "connectionless socket", so they DTRT for seqpacket sockets as well.
7199
7200 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
7201
7202 * process.c (Qseqpacket): New symbol.
7203 (HAVE_SEQPACKET): New macro.
7204 (Fmake_network_process): Accept new :type `seqpacket'.
7205 (init_process): Add `seqpacket' feature when applicable.
7206 (syms_of_process): Initialize Qseqpacket.
7207
7208 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7209
7210 * font.c (font_load_for_lface, font_open_by_name): Don't store name
7211 if entity is Qnil.
7212
7213 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
7214
7215 * print.c (print_preprocess): Preprocess the key_and_value table of
7216 hashtables, even tho they're "hidden" (bug#5082).
7217
7218 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
7219
7220 * frame.c (frame_make_pointer_invisible)
7221 (frame_make_pointer_visible): Declare f before statements.
7222
7223 2009-11-28 Eli Zaretskii <eliz@gnu.org>
7224
7225 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
7226 omitted dependencies on lisp.h.
7227
7228 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
7229
7230 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
7231 is NULL.
7232
7233 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
7234
7235 * frame.c (frame_make_pointer_invisible)
7236 (frame_make_pointer_visible): Just return if there isn't any selected
7237 frame.
7238
7239 * search.c (simple_search): Remove warning by making *p const.
7240
7241 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
7242
7243 * xdisp.c (power_letter): Remove duplicate const.
7244
7245 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
7246
7247 * term.c (delete_tty): Remove check for last terminal (bug#4970).
7248
7249 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
7250 defaults (bug #5025).
7251
7252 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
7253
7254 * insdel.c (adjust_markers_for_delete): Move it in the
7255 right direction! (bug#4803)
7256
7257 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7258
7259 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
7260
7261 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
7262
7263 2009-11-24 Glenn Morris <rgm@gnu.org>
7264
7265 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
7266
7267 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
7268
7269 * Makefile.in: Must create deps for ecrt0.o in its rule.
7270
7271 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
7272 because that is what Gtk+ font dialog understands.
7273
7274 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
7275 of Fcopy_sequence.
7276 (font_open_by_name): Put name given into QCname for font-object returned.
7277
7278 * frame.c (x_set_font): Save original font name as frame parameter
7279 font-parameter.
7280
7281 * xsettings.c (set_default_xft_settings): New function.
7282 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
7283 is found.
7284
7285 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
7286
7287 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
7288 searching backwards through multibyte buffer.
7289
7290 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
7291
7292 * xterm.c: #include xgselect.h.
7293 (x_initialize): Call xgselect_initialize.
7294
7295 * xsettings.c (something_changedCB): C++ comments => C comments.
7296 (init_gconf): Do not deal with any GLib file descriptors, xg_select
7297 does that now.
7298
7299 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
7300 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
7301 (scroll_bar_button_cb): Remove.
7302 (create_menus): C++ comments => C comments. Don't bind grab-notify
7303 event.
7304 (xg_create_scroll_bar): Don't bind button-press-event and
7305 button-release-event.
7306
7307 * process.c: Include xgselect.h if defined (USE_GTK) ||
7308 defined (HAVE_GCONF).
7309 (wait_reading_process_output): Call xg_select for the same condition.
7310
7311 * xgselect.c (xg_select): New function to better integrate with
7312 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
7313
7314 * xgselect.h: New file, declare xg_select, xgselect_initialize.
7315
7316 * Makefile.in (XOBJ): Add xgselect.o.
7317
7318 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
7319
7320 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
7321 Remove ignored second argument. All callers changed.
7322 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
7323 (RE_STRING_CHAR_AND_LENGTH): Likewise.
7324 * xdisp.c (string_char_and_length): Likewise.
7325
7326 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
7327
7328 * xterm.c (x_new_font):
7329 * print.c (print_object):
7330 * cmds.c (Fself_insert_command): Move declarations before statements.
7331
7332 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
7333
7334 * s/cygwin.h: Remove unneeded linker flags.
7335
7336 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
7337
7338 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
7339
7340 * xsettings.h: Declare xsettings_get_system_font.
7341
7342 * xsettings.c (xsettings_get_system_font): New function.
7343 (init_gconf): No use initiating gconf unless we have Xft also.
7344 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
7345 HAVE_GCONF.
7346
7347 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
7348 add a blank entry so it doesn't collapse into nothing.
7349
7350 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
7351
7352 * lread.c (Funintern): Comment out last change.
7353
7354 2009-11-19 Richard Stallman <rms@gnu.org>
7355
7356 * lread.c (Funintern): Error if symbol is t or nil.
7357
7358 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
7359
7360 * insdel.c (make_gap_larger): Don't make as many assumptions about the
7361 representation of Lisp integers.
7362 Reported by MJ Chan <mjchan.inbox@gmail.com>.
7363
7364 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
7365
7366 * lisp.h: Remove declaration of Ffont_get_system_font.
7367 * xfns.c: Move include of "xsettings.h".
7368 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
7369
7370 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
7371
7372 * xsettings.c (something_changedCB, Ffont_get_system_font):
7373 Check use_system_font.
7374 (syms_of_xsettings): DEFVAR font-use-system-font.
7375
7376 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
7377
7378 * xfns.c (x_default_font_parameter): Remove dead assignment.
7379
7380 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
7381
7382 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
7383
7384 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
7385 not have FC_LCD_*. #define them if not there.
7386
7387 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
7388
7389 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
7390
7391 * xterm.c (handle_one_xevent): Call xft_settings_event for
7392 ClientMessage, PropertyNotify and DestroyNotify.
7393 (x_term_init): If we have XFT, get DPI from Xft.dpi.
7394 Call xsettings_initialize.
7395
7396 * xftfont.c (xftfont_fix_match): New function.
7397 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
7398 Call xftfont_fix_match after XftFontMatch.
7399
7400 * xfont.c (xfont_driver): Initialize all members.
7401
7402 * xfns.c (x_default_font_parameter):
7403 Try font from Ffont_get_system_font.
7404 Do not get font from x_default_parameter if we got one from
7405 Ffont_get_system_font.
7406 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
7407
7408 * w32font.c (w32font_driver): Initialize all members.
7409
7410 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
7411
7412 * lisp.h: Declare syms_of_xsettings.
7413
7414 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
7415 Handle CONFIG_CHANGED_EVENT.
7416
7417 * ftfont.c (ftfont_filter_properties): New function.
7418
7419 * frame.c (x_set_font): Remove unused variable lval.
7420
7421 * font.h (struct font_driver): Add filter_properties.
7422
7423 * font.c (font_put_extra): Don't return if val is nil, it means
7424 boolean option is off.
7425 (font_parse_fcname): Collect all extra properties in extra_props
7426 and call filter_properties for all drivers with extra_props and
7427 font as parameter.
7428 (font_open_entity): Do not use cache, it does not pick up new
7429 fontconfig settings like hinting.
7430 (font_load_for_lface): If spec had a name in it, store it in entity.
7431
7432 * emacs.c (main): Call syms_of_xsettings.
7433
7434 * config.in: HAVE_GCONF is new.
7435
7436 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
7437 xsettings.o is new.
7438
7439 2009-11-17 Kenichi Handa <handa@m17n.org>
7440
7441 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
7442 back to the default font in case that no suitable font is found.
7443
7444 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
7445
7446 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
7447 Suggested by Chad Brown <yandros@mit.edu>.
7448 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
7449
7450 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
7451
7452 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
7453
7454 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
7455
7456 * Makefile.in: Ignore errors from mkdir when creating deps directory.
7457
7458 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
7459
7460 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
7461 has a parent.
7462
7463 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
7464 dependency files in deps/. Include those files into Makefile.
7465
7466 * config.in: Generated (AUTO_DEPEND).
7467
7468 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
7469
7470 * dbusbind.c (Vdbus_registered_objects_table): Rename from
7471 Vdbus_registered_functions_table, because it contains also
7472 properties. Fix docstring.
7473 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
7474
7475 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
7476
7477 * alloc.c (mark_object): Don't reprocess marked strings.
7478 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
7479 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
7480
7481 2009-11-13 Kenichi Handa <handa@m17n.org>
7482
7483 * category.c (word_boundary_p): Adjust for the change of the
7484 semantics of Vword_combining_categories.
7485 (Vword_combining_categories): Describe the slight change of the
7486 semantics.
7487
7488 2009-11-13 Eli Zaretskii <eliz@gnu.org>
7489
7490 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
7491
7492 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
7493
7494 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
7495
7496 * xdisp.c (syms_of_xdisp): Fix typo in last change.
7497
7498 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
7499
7500 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
7501
7502 2009-11-11 David Reitter <david.reitter@gmail.com>
7503
7504 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
7505 variables to fix 2009-11-09 change.
7506
7507 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
7508
7509 * process.c (ifflag_def): Make flag_sym constant.
7510 (Fnetwork_interface_info): Use a constant pointer.
7511 (ifflag_table):
7512 * xfns.c (cursor_bits):
7513 * xdisp.c (power_letter):
7514 * termcap.c (speeds, esctab):
7515 * sysdep.c (baud_convert):
7516 * keyboard.c (lispy_accent_codes, modifier_names):
7517 * image.c (xbm_format, xpm_format, pbm_format, png_format)
7518 (jpeg_format, tiff_format, gif_format, svg_format)
7519 (interlace_start, interlace_increment, gs_format):
7520 * gtkutil.c (separator_names):
7521 * fringe.c (swap_nibble):
7522 * fns.c (base64_value_to_char, base64_char_to_value):
7523 * fileio.c (make_temp_name_tbl):
7524 * coding.c (suffixes): Make constant.
7525
7526 * frame.c (make_initial_frame):
7527 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
7528 build_string.
7529 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
7530
7531 * s/freebsd.h:
7532 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
7533
7534 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
7535 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
7536
7537 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
7538 * xterm.c (syms_of_xterm):
7539 * xfaces.c (syms_of_xfaces):
7540 * xdisp.c (syms_of_xdisp):
7541 * lread.c (syms_of_lread):
7542 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
7543 build_string.
7544
7545 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
7546
7547 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
7548
7549 * fns.c (Fplist_get): Merge the active and the commented out code.
7550
7551 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
7552
7553 * keyboard.h: Declare timer_check.
7554
7555 * keyboard.c (timer_check_2): New function that does what the old
7556 timer_check did.
7557 (timer_check): Call timer_check_2 until -1 or a non-zero time is
7558 returned, i.e. don't return -1 with timers pending.
7559
7560 * process.c: Remove extern declaration of timer_check.
7561
7562 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
7563 even if timer_check returned -1.
7564
7565 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
7566 xg_dialog_data.
7567 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
7568 the event loop.
7569 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
7570 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
7571 Destroy the dialog after xg_dialog_run.
7572
7573 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
7574
7575 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
7576
7577 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
7578
7579 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
7580
7581 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
7582
7583 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
7584
7585 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7586
7587 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
7588 w32menu.c, and nsmenu.m.
7589 Simplify the obsolete case where position is nil.
7590 (cleanup_popup_menu): New function, moved from nsmenu.m.
7591 (struct skp): Remove slot `notreal'.
7592 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
7593 adjust callers.
7594 (single_menu_item): Adjust call to parse_menu_item.
7595 (syms_of_menu): Defsubr x-popup-menu.
7596 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
7597 (keymap_panes): Don't export any more.
7598 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
7599 (xmenu_show): Declare.
7600 * keyboard.c (parse_menu_item): Remove arg `notreal'.
7601 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
7602 * keyboard.h (parse_menu_item): Update declaration.
7603 * xmenu.c (Fx_popup_menu): Remove.
7604 (syms_of_xmenu): Don't defsubr x-popup-menu.
7605 * w32menu.c (Fx_popup_menu): Remove.
7606 (syms_of_w32menu): Don't defsubr x-popup-menu.
7607 * nsmenu.m (cleanup_popup_menu): Remove.
7608 (ns_menu_show): Rename from ns_popup_menu and remove all the code
7609 moved to menu.c's Fx_popup_menu.
7610 (Fx_popup_menu): Remove.
7611 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
7612 menu_items (it's done in menu.c already).
7613
7614 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7615
7616 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
7617 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
7618
7619 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
7620
7621 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
7622 xmenu_show. Hide any tooltip before opening a menu.
7623 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
7624 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
7625
7626 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
7627
7628 Let integers use up 2 tags to give them one extra bit and thus double
7629 their range.
7630 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
7631 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
7632 New macros.
7633 (enum Lisp_Type): Use them. Give explicit values.
7634 (Lisp_Type_Limit): Remove.
7635 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
7636 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
7637 Pay attention to USE_2_TAGS_FOR_INTS.
7638 (INTEGERP): Use LISP_INT_TAG_P.
7639 * fns.c (internal_equal): Simplify the default case.
7640 (sxhash): Use case_Lisp_Int.
7641 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
7642 any more.
7643 (Ftype_of): Use case_Lisp_Int.
7644 (store_symval_forwarding): Take into account the fact that Ints can
7645 now have more than one tag.
7646 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
7647 (buffer_slot_type_mismatch):
7648 * xfaces.c (face_attr_equal_p):
7649 * print.c (print_object):
7650 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
7651 Use case_Lisp_Int.
7652
7653 2009-11-06 Eli Zaretskii <eliz@gnu.org>
7654
7655 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
7656
7657 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
7658 warning.
7659
7660 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
7661
7662 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
7663
7664 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
7665
7666 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
7667 ButtonPressRelease and MotionNotify (bug#4870).
7668
7669 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
7670
7671 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
7672
7673 * xterm.c (syms_of_xterm):
7674 * xselect.c (syms_of_xselect):
7675 * xmenu.c (syms_of_xmenu):
7676 * xfns.c (syms_of_xfns):
7677 * xfaces.c (syms_of_xfaces):
7678 * xdisp.c (syms_of_xdisp):
7679 * window.c (syms_of_window):
7680 * w32fns.c (syms_of_w32fns):
7681 * undo.c (syms_of_undo):
7682 * textprop.c (syms_of_textprop):
7683 * terminal.c (syms_of_terminal):
7684 * syntax.c (syms_of_syntax):
7685 * sound.c (syms_of_sound):
7686 * search.c (syms_of_search):
7687 * print.c (syms_of_print):
7688 * minibuf.c (syms_of_minibuf):
7689 * macros.c (syms_of_macros):
7690 * keymap.c (syms_of_keymap, initial_define_key)
7691 (initial_define_lispy_key):
7692 * keyboard.c (syms_of_keyboard):
7693 * insdel.c (syms_of_insdel):
7694 * image.c (syms_of_image):
7695 * fringe.c (syms_of_fringe):
7696 * frame.c (syms_of_frame):
7697 * fontset.c (syms_of_fontset):
7698 * fns.c (syms_of_fns):
7699 * fns.c (syms_of_fns):
7700 * fileio.c (syms_of_fileio):
7701 * fileio.c (syms_of_fileio):
7702 * eval.c (syms_of_eval):
7703 * doc.c (syms_of_doc):
7704 * dispnew.c (syms_of_display):
7705 * dired.c (syms_of_dired):
7706 * dbusbind.c (syms_of_dbusbind):
7707 * data.c (syms_of_data):
7708 * composite.c (syms_of_composite):
7709 * coding.c (syms_of_coding):
7710 * cmds.c (syms_of_cmds):
7711 * charset.c (define_charset_internal, syms_of_character):
7712 * ccl.c (syms_of_ccl):
7713 * category.c (syms_of_category, init_category_once):
7714 * casetab.c (syms_of_casetab):
7715 * casefiddle.c (syms_of_casefiddle):
7716 * callint.c (syms_of_callint):
7717 * bytecode.c (syms_of_bytecode):
7718 * buffer.c (keys_of_buffer, syms_of_buffer):
7719 * alloc.c (syms_of_alloc):
7720 * process.c (syms_of_process, init_process):
7721 * lread.c (syms_of_lread, init_obarray):
7722 * font.c (build_style_table):
7723 * emacs.c (syms_of_emacs, main): Replace calls to intern with
7724 intern_c_string, calls to make_pure_string with
7725 make_pure_c_string. Use pure_cons instead of Fcons.
7726
7727 * process.c (socket_options): Make it const.
7728 (set_socket_option, init_process): Use a const pointer.
7729
7730 * lread.c (intern_c_string): New function.
7731 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
7732 (defvar_int): Uset it. Make the name const char*.
7733
7734 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
7735 (defvar_int): Update prototypes.
7736 (DEFUN, EXFUN): Support for prototypes is now required.
7737 (intern_c_string): New prototype.
7738 (struct Lisp_Subr): Make symbol_name constant.
7739
7740 * font.c (struct table_entry): Remove unused member. Make NAMES
7741 constant.
7742 (weight_table, slant_table, width_table): Make constant.
7743
7744 * emacs.c (struct standard_args): Make name and longname constant.
7745
7746 * character.h (DEFSYM): Use intern_c_string.
7747
7748 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
7749
7750 * alloc.c (make_pure_c_string): New function.
7751
7752 * eval.c (Fautoload): Purecopy all arguments.
7753
7754 2009-11-05 Kenichi Handa <handa@m17n.org>
7755
7756 * fileio.c (Finsert_file_contents): Be sure set coding-system of
7757 the buffer in case of replace.
7758
7759 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
7760
7761 * puresize.h (BASE_PURESIZE): Increase to 1620000.
7762
7763 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
7764
7765 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
7766 when applicable (bug#4851).
7767
7768 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
7769 (P_): Support for prototypes is now required.
7770
7771 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
7772
7773 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
7774 (Bug#4827).
7775
7776 2009-10-30 Eli Zaretskii <eliz@gnu.org>
7777
7778 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
7779
7780 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
7781
7782 * puresize.h (BASE_PURESIZE): Increase to 1470000.
7783
7784 * lread.c (Fload): Purecopy the file name when building
7785 Vpreloaded_file_list.
7786
7787 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
7788
7789 * w32fns.c (syms_of_w32fns): Change default value of
7790 w32-scroll-lock-modifier to nil. (Bug#2827)
7791
7792 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
7793
7794 * minibuf.c (Fall_completions): Fix typos in docstring.
7795
7796 2009-10-26 Andreas Schwab <schwab@redhat.com>
7797
7798 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
7799
7800 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
7801
7802 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
7803 For delta < 0, skip check that only makes sense when the mini-window
7804 is going to be enlarged. (Bug#4534)
7805
7806 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
7807
7808 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
7809 string in menu maps (Bug#4471).
7810
7811 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
7812
7813 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
7814 FRAME_NS_VIEW on terminal frames (Bug#4765).
7815
7816 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
7817
7818 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
7819 DBUS_TYPE_UINTnn separately to get proper sign extension.
7820
7821 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
7822 can properly handle unsigned types.
7823 (make_uid, make_gid): Remove.
7824
7825 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
7826 types again.
7827
7828 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
7829 (system_process_attributes): Likewise.
7830
7831 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
7832
7833 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
7834
7835 * eval.c (Fautoload): Purecopy the filename. Simplify.
7836
7837 * category.c (Fdefine_category): Purecopy docstring.
7838
7839 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
7840
7841 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
7842
7843 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
7844
7845 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
7846
7847 * window.c (Fwindow_edges, Fwindow_pixel_edges)
7848 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
7849 (Bug#4775).
7850
7851 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
7852
7853 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
7854 (init_fileio_once):
7855 * lisp.h (init_fileio_once): Remove.
7856 * emacs.c (main): Don't call init_fileio_once.
7857
7858 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
7859
7860 * puresize.h (BASE_PURESIZE): Increase to 1430000.
7861
7862 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
7863
7864 * doprnt.c (doprnt): Fix overflow check.
7865
7866 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
7867
7868 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
7869
7870 * xterm.h (x_wait_for_event): Declare it.
7871
7872 * xterm.c (pending_event_wait): New variable.
7873 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
7874 see pending_event_wait.eventtype.
7875 (handle_one_xevent): Don't change gravity when parent changes.
7876 (x_new_font): Call change_frame_size with new rows/columns before we
7877 try to resize the frame.
7878 (x_wait_for_event): New function.
7879 (x_set_window_size_1): Don't change gravity unless change_gravity
7880 is set.
7881 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
7882 don't change frame size, instead wait for the ConfigureNotify.
7883 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
7884 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
7885 (x_initialize): Initialize pending_event_wait.
7886
7887 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
7888 size.
7889
7890 * widget.c (EmacsFrameSetValues): Add comment.
7891 (EmacsFrameSetCharSize): Just call x_set_window_size.
7892
7893 * gtkutil.c (xg_frame_set_char_size): Flush events and call
7894 x_wait_for_event.
7895 (flush_and_sync): Remove again.
7896 (xg_get_font_name): Suggest monospace if no previous font is known.
7897
7898 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
7899
7900 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
7901 8th bit, since that only made sense in the ASCII world (bug#4751).
7902
7903 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7904
7905 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
7906 processing pending events when event is filtered for input method.
7907 (Bug#3681)
7908
7909 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
7910
7911 * fns.c: Add #endif accidentally removed in previous change.
7912
7913 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
7914
7915 * fns.c: Remove code for unsupported system: MAC_OS.
7916 * image.c: Likewise. Include setjmp.h.
7917
7918 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
7919
7920 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
7921 pixel -1 (bug #4742).
7922
7923 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
7924
7925 * process.c (create_pty): Remove conditionals for no longer
7926 supported systems: UNIPLUS and RTU.
7927
7928 * xterm.c:
7929 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
7930
7931 * alloc.c: Do not define struct catchtag.
7932 * eval.c: Move struct catchtag definition ...
7933 * lisp.h: ... here.
7934
7935 * image.c: Move png.h #include earlier to avoid warnings.
7936
7937 * xterm.c:
7938 * xsmfns.c:
7939 * xselect.c:
7940 * xrdb.c:
7941 * xmenu.c:
7942 * xftfont.c:
7943 * xfont.c:
7944 * xfns.c:
7945 * xfaces.c:
7946 * xdisp.c:
7947 * window.c:
7948 * widget.c:
7949 * w32xfns.c:
7950 * w32uniscribe.c:
7951 * w32term.c:
7952 * w32select.c:
7953 * w32reg.c:
7954 * w32proc.c:
7955 * w32menu.c:
7956 * w32inevt.c:
7957 * w32heap.c:
7958 * w32font.c:
7959 * w32fns.c:
7960 * w32console.c:
7961 * w32.c:
7962 * w16select.c:
7963 * vm-limit.c:
7964 * unexsol.c:
7965 * unexec.c:
7966 * unexcw.c:
7967 * unexaix.c:
7968 * undo.c:
7969 * tparam.c:
7970 * textprop.c:
7971 * terminfo.c:
7972 * terminal.c:
7973 * termcap.c:
7974 * term.c:
7975 * syntax.c:
7976 * sound.c:
7977 * sheap.c:
7978 * search.c:
7979 * scroll.c:
7980 * region-cache.c:
7981 * regex.c:
7982 * ralloc.c:
7983 * process.c:
7984 * print.c:
7985 * nsterm.m:
7986 * nsselect.m:
7987 * nsmenu.m:
7988 * nsimage.m:
7989 * nsfont.m:
7990 * nsfns.m:
7991 * msdos.c:
7992 * minibuf.c:
7993 * menu.c:
7994 * marker.c:
7995 * macros.c:
7996 * keymap.c:
7997 * keyboard.c:
7998 * intervals.c:
7999 * insdel.c:
8000 * indent.c:
8001 * gtkutil.c:
8002 * ftxfont.c:
8003 * ftfont.c:
8004 * fringe.c:
8005 * frame.c:
8006 * fontset.c:
8007 * font.c:
8008 * fns.c:
8009 * floatfns.c:
8010 * filelock.c:
8011 * fileio.c:
8012 * emacs.c:
8013 * editfns.c:
8014 * dosfns.c:
8015 * doprnt.c:
8016 * doc.c:
8017 * dispnew.c:
8018 * dired.c:
8019 * dbusbind.c:
8020 * data.c:
8021 * composite.c:
8022 * coding.c:
8023 * cmds.c:
8024 * cm.c:
8025 * chartab.c:
8026 * charset.c:
8027 * character.c:
8028 * ccl.c:
8029 * category.c:
8030 * casetab.c:
8031 * casefiddle.c:
8032 * callproc.c:
8033 * callint.c:
8034 * bytecode.c:
8035 * buffer.c:
8036 * atimer.c: Include setjmp.h. (Bug#4643)
8037
8038 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
8039
8040 Remove leftover table unibyte_to_multibyte_table.
8041 * character.c (unibyte_to_multibyte_table): Remove.
8042 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
8043 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
8044 * character.h (UNIBYTE_TO_CHAR): New macro.
8045 (MAKE_CHAR_MULTIBYTE): Use it.
8046 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
8047 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
8048 (message_dolog, set_message_1):
8049 * search.c (Freplace_match):
8050 * editfns.c (Fcompare_buffer_substrings):
8051 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
8052 (concat):
8053 * insdel.c (copy_text, count_size_as_multibyte):
8054 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
8055 * term.c (produce_glyphs):
8056 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
8057 * regex.c (RE_CHAR_TO_MULTIBYTE):
8058 * cmds.c (internal_self_insert):
8059 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
8060
8061 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
8062
8063 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
8064
8065 * puresize.h (BASE_PURESIZE): Increase to 1310000.
8066
8067 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
8068
8069 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
8070
8071 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
8072
8073 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
8074 still needed under Tiger.
8075
8076 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
8077
8078 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
8079 __Apple__.
8080
8081 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
8082
8083 2009-10-15 Kenichi Handa <handa@m17n.org>
8084
8085 * print.c (print_object): Escape a symbol like "2E10" too.
8086
8087 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
8088
8089 Cleanups and changes for 64-bit compile under Snow Leopard.
8090 Based on suggestions by Erik Charlebois.
8091
8092 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
8093
8094 * nsfont.m (ns_char_width): Replace deprecated call.
8095 (ns_findfonts, nsfont_list_family): Use long format in printf, and
8096 cast argument.
8097 (nsfont_open): Use ns_char_width() everywhere.
8098 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
8099
8100 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
8101
8102 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
8103 where appropriate.
8104
8105 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
8106 where appropriate.
8107 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
8108 Use stringWithUTF8String.
8109 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
8110
8111 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
8112 Add formal protocol mention to inheritance.
8113 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
8114
8115 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
8116 Fix printf format.
8117 (ns_query_color): Use CGFloat where appropriate.
8118 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
8119 (EmacsScroller-mouseDown:): Use long format in printf, and cast
8120 argument.
8121
8122 * config.in (NS_HAVE_NSINTEGER): Drop.
8123
8124 * dbusbind.c (dbus-method-return-internal)
8125 (dbus-method-error-internal): Use long format in printf, and cast
8126 argument.
8127
8128 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
8129 in printf, and cast argument.
8130
8131 * process.c (list_processes_1): Use long format in printf, and
8132 cast argument.
8133
8134 2009-10-11 Glenn Morris <rgm@gnu.org>
8135
8136 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
8137
8138 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
8139
8140 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
8141 menu bar with a small width so it doesn't enlarge the frame.
8142
8143 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
8144
8145 * fontset.c (Fset_fontset_font): Fix typos in error messages.
8146
8147 2009-10-06 Glenn Morris <rgm@gnu.org>
8148
8149 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
8150 SOME_MACHINE_LISP (this enters indirectly via DOC).
8151
8152 2009-10-05 Eli Zaretskii <eliz@gnu.org>
8153
8154 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
8155
8156 2009-10-04 Eli Zaretskii <eliz@gnu.org>
8157
8158 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
8159 Doc fix.
8160
8161 2009-10-03 Martin Rudalics <rudalics@gmx.at>
8162
8163 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
8164
8165 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
8166
8167 * lisp.h (Qdelete_directory_internal): Remove, because it is not
8168 used anymore outside fileio.c.
8169
8170 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
8171
8172 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
8173
8174 * lisp.h (Qdelete_directory_internal):
8175 Declare, instead of Qdelete_directory.
8176
8177 * w32fns.c (Fsystem_move_file_to_trash): Use it.
8178
8179 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8180
8181 * eval.c (Fcalled_interactively_p): Add `kind' argument.
8182
8183 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
8184
8185 * fileio.c (Fdelete_directory_internal): Rename from
8186 Fdelete_directory. It is not a command anymore. It has no file
8187 name handler.
8188
8189 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
8190
8191 * xdisp.c (get_next_display_element): Use an enum in last change.
8192
8193 2009-09-28 Kenichi Handa <handa@m17n.org>
8194
8195 * xdisp.c (get_next_display_element): Pay attention to
8196 unibyte_display_via_language_environment in handling
8197 Vnobreak_char_display.
8198
8199 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8200
8201 * nsterm.h (ns_app_name): New extern variable.
8202
8203 * nsterm.m (ns_app_name): New variable.
8204 (ns_term_init): Set and use it.
8205 (ns_term_shutdown): Use it.
8206
8207 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
8208 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
8209
8210 * nsfns.m (ns_set_name_iconic, ns_set_name)
8211 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
8212 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
8213
8214 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
8215 Remove double-casting in client_data comparison.
8216
8217 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8218
8219 * keyboard.c (make_lispy_event): Remember last wheel direction.
8220 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
8221
8222 2009-09-26 Glenn Morris <rgm@gnu.org>
8223
8224 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
8225 internal.elc. Add term/pc-win.elc.
8226 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
8227 term/x-win.elc.
8228 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
8229 term/w32-win.elc.
8230 (NS_SUPPORT): New.
8231 (lisp): Add NS_SUPPORT.
8232 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
8233
8234 2009-09-25 David Reitter <david.reitter@gmail.com>
8235
8236 * nsmenu.m (EmacsMenu-clear): Recognize application menu
8237 on Mac OS X 10.6+ (bug#4513).
8238
8239 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
8240
8241 * frame.c (xrdb_get_resource): Return nil for empty string resources;
8242 some parts of Emacs code (like font selection) don't grok them.
8243 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
8244
8245 2009-09-24 Andreas Schwab <schwab@redhat.com>
8246
8247 * coding.c (decode_coding_iso_2022): Fix operator precedence.
8248
8249 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
8250
8251 * dired.c (Fdirectory_files): Fix typo in docstring.
8252
8253 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
8254
8255 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
8256 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
8257 (EmacsScroller-setPosition:portion:whole:): Remove -display call
8258 under GNUstep.
8259 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
8260
8261 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
8262 glyph advancement.
8263
8264 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
8265
8266 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
8267 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
8268
8269 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
8270 deleted (bug #4492).
8271
8272 * nsfont.m (Vns_reg_to_script): New lisp variable.
8273 (syms_of_nsfont): Declare it.
8274 (ns_registry_to_script): New function.
8275 (ns_get_req_script): Call it.
8276 (ns_findfonts): Don't give up on non-unicode registry.
8277
8278 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
8279
8280 2009-09-20 Tom Tromey <tromey@redhat.com>
8281
8282 * eval.c (find_handler_clause): Make stack-trace-on-error work in
8283 batch mode (bug#4228).
8284
8285 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
8286
8287 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
8288 carefully. (Bug #4339)
8289
8290 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
8291
8292 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
8293
8294 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
8295
8296 * emacs.c (inhibit_x_resources): Update doc string for NS.
8297 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
8298 legacy code for -NXHost. Fix error printf in daemon case.
8299
8300 * nsterm.h (ns_no_defaults): Remove.
8301
8302 * nsterm.m (ns_no_defaults): Remove.
8303 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
8304 (ns_use_qd_smoothing): Remove legacy variable.
8305 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
8306 don't update the NSWindow itself.
8307 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
8308 state detection and store user rect ourselves. (Bug #3581)
8309
8310 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
8311 ns_use_qd_smoothing.
8312
8313 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
8314 platform versions. Drop support for emacs-20-style face specs.
8315 (x-close-connection): Drop PSFlush() under OS X.
8316 (x-focus-frame): Activate the app first. (Bug #4180)
8317
8318 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
8319
8320 * emacs.c (inhibit_x_resources): New variable.
8321 (main) [HAVE_NS]: Don't process --quick command line option.
8322 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
8323
8324 * lisp.h (inhibit_x_resources): Declare it extern.
8325
8326 * w32reg.c (x_get_string_resource):
8327 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
8328
8329 2009-09-17 Eli Zaretskii <eliz@gnu.org>
8330
8331 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
8332 Add lisp/term/internal.elc.
8333
8334 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8335
8336 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
8337 (bug#4461).
8338
8339 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
8340
8341 * puresize.h (BASE_PURESIZE): Increase to 1290000.
8342
8343 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
8344 (OBJECTS_MACHINE): Remove, unused.
8345
8346 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8347
8348 * frame.c (x_get_resource_string): Remove unused.
8349
8350 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
8351
8352 * xterm.c (x_new_font): Call change_frame_size before calling
8353 x_set_window_size, in case frame size won't change.
8354
8355 * frame.c (x_set_font): Remove dead code.
8356
8357 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
8358
8359 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
8360
8361 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8362
8363 * lread.c (Fload): Don't output a message after loading an obsolete
8364 package any more (done in Lisp now).
8365
8366 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
8367
8368 * fns.c (syms_of_fns): Doc fix (Bug#4227).
8369
8370 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8371
8372 * keymap.c (Fwhere_is_internal): Use nconc2.
8373
8374 2009-09-11 Alan Mackenzie <acm@muc.de>
8375
8376 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
8377 batch mode.
8378
8379 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
8380
8381 * xdisp.c (display_mode_element): Detect cycles.
8382
8383 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8384
8385 * keymap.c (where_is_internal): Don't erroneously return nil right after
8386 filling the cache.
8387 (where_is_internal_1): Fix up typo.
8388
8389 2009-09-11 Glenn Morris <rgm@gnu.org>
8390
8391 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
8392 share a common doc-string.
8393
8394 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8395
8396 * keymap.c (get_keymap): Return the actual keymap symbol rather than
8397 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
8398
8399 * keymap.c (QCadvertised_binding): New constant.
8400 (syms_of_keymap): Initialize it.
8401 (Fwhere_is_internal): Try and use bindings from :advertised-binding
8402 if applicable.
8403
8404 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
8405
8406 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
8407 (parse_menu_item): Streamline since bindings are recomputed all the
8408 time anyway. Don't bother checking Vdefine_key_rebound_commands any
8409 more and don't support lmenu's menu-alias any more either.
8410
8411 * keymap.c (where_is_internal_data): Make noindirect a boolean.
8412 (where_is_internal): Strip it down to only traverse the keymaps.
8413 Move the cache handling from Fwhere_is_internal to here.
8414 (Fwhere_is_internal): Move the handling of remapping and the choice of
8415 the best binding from where_is_internal to here.
8416 Unify the cached/noncached paths, so remapping is also handled
8417 correctly when the cache is used, and so the cache can be used to
8418 speed up remap-handling when applicable.
8419 Give preference to non-remapped bindings.
8420 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
8421 non-remapped bindings.
8422 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
8423 command remapping.
8424
8425 * xdisp.c (display_mode_element): Move list length limit from 50 to
8426 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
8427
8428 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
8429
8430 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
8431
8432 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
8433
8434 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
8435 (Bug#4334)
8436
8437 * keymap.c (where_is_internal): Filter out shadowed remappings.
8438 Assume that where_is_internal returns unshadowed bindings to simplify
8439 the code and get rid of the gotos. Use ASIZE.
8440
8441 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
8442
8443 * xterm.c (x_focus_changed): If we get a focusout and pointer
8444 is invisible, make it visible.
8445
8446 * xterm.h: Remove condition for declaration of
8447 x_*_window_to_frame.
8448
8449 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
8450
8451 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
8452 initial terminal as well.
8453
8454 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
8455
8456 * xterm.h: Rename x_non_menubar_window_to_frame to
8457 x_menubar_window_to_frame.
8458
8459 * xterm.c: Remove declarations also in xterm.h.
8460 (XTmouse_position): Do not return valid positions
8461 for clicks in the menubar and the toolbar for Gtk+.
8462
8463 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
8464 if the widget for the event has the same top level as a frame,
8465 return the frame.
8466 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
8467 internal windows, bug #4122.
8468 (x_non_menubar_window_to_frame): Remove.
8469
8470 2009-09-02 Glenn Morris <rgm@gnu.org>
8471
8472 * buffer.c (default-major-mode): Move most of the doc from here...
8473 (major-mode): ... to here.
8474
8475 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
8476
8477 * process.c (wait_reading_process_output): Keep the descriptor
8478 when pty is used by a non-child process, e.g., in I/O buffer of
8479 GDB this allows inferior to be restarted.
8480
8481 2009-08-29 Eli Zaretskii <eliz@gnu.org>
8482
8483 * xdisp.c (redisplay_internal): Remove redundant test and collapse
8484 both branches into one.
8485
8486 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
8487
8488 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
8489 (main): Use enable-multibyte-characters rather than
8490 default-enable-multibyte-characters. Output a warning message when
8491 running a unibyte session.
8492
8493 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8494
8495 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
8496 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
8497 (copy_data_segment): Also copy __program_vars section.
8498 (copy_dyld_info) [LC_DYLD_INFO]: New function.
8499 (dump_it) [LC_DYLD_INFO]: Use it.
8500
8501 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
8502
8503 2009-08-28 Eli Zaretskii <eliz@gnu.org>
8504
8505 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
8506 $(SRC)/buildobj.h.
8507 (buildobj.h): Renamed from $(SRC)/buildobj.h.
8508 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
8509 $(SRC)/buildobj.h.
8510 (clean): Add buildobj.h.
8511
8512 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
8513
8514 * print.c (print_object): Set escapeflag to 1 when printing
8515 hashtable keys and values.
8516
8517 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
8518
8519 * lread.c (read_integer): Use doubles (and potentially return a float
8520 number) as we do in string-to-number.
8521 (read1): Use strtol to read integers, signal errors on strtol's
8522 overflow and use floats if strtol's output is too large for
8523 Elisp integers.
8524
8525 2009-08-27 Eli Zaretskii <eliz@gnu.org>
8526
8527 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
8528 (make-buildobj-SH): Fix last change.
8529 (SRC): Move to before where it's first used.
8530
8531 2009-08-27 Kenichi Handa <handa@m17n.org>
8532
8533 * process.c (send_process): Use encode_coding_object instead of
8534 encode_coding_string to perform eol-conversion even if the string
8535 is unibyte.
8536
8537 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
8538 character.
8539
8540 * cmds.c (Fself_insert_command): Avoid unnecessay
8541 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
8542
8543 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
8544
8545 * callproc.c (Fcall_process): Remove always true #if.
8546
8547 * lisp.h: Replace #if 0 code for checking with text pointing to
8548 the --enable-checking configure flag.
8549
8550 * emacs.c (main): Mention the --enable-profiling configure flag
8551 instead of using CFLAGS.
8552
8553 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
8554
8555 * Makefile.in (buildobj.h): New target.
8556 (doc.o): Depend on it.
8557 (temacs${EXEEXT}): Don't generate buildobj.lst.
8558 (mostlyclean): Delete buildobj.h, not buildobj.lst.
8559 * makefile.w32-in ($(SRC)/buildobj.h): New target.
8560 ($(BLD)/doc.$(O)): Depend on it.
8561 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
8562 provided by Eli Zaretskii.)
8563 ($(TEMACS)): Don't generate buildobj.lst.
8564 * doc.c: Include buildobj.h.
8565 (buildobj): New static variable.
8566 (Fsnarf_documentation): Use it, instead of opening and reading
8567 buildobj.lst.
8568
8569 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
8570
8571 * dbusbind.c (Fdbus_call_method)
8572 (Fdbus_call_method_asynchronously): Use English numeric format for
8573 timeout values in doc string.
8574
8575 2009-08-25 Kenichi Handa <handa@m17n.org>
8576
8577 * alloc.c (mark_char_table): New function.
8578 (mark_object): Use mark_char_table for a char-table.
8579
8580 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
8581 (CHAR_TABLE_REF): Use it.
8582
8583 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
8584
8585 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
8586 before invoking the newly build emacs to check for load-path
8587 shadowing.
8588
8589 2009-08-22 Glenn Morris <rgm@gnu.org>
8590
8591 * Makefile.in (bootstrap_exe): New variable.
8592 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
8593 Use ${bootstrap_exe}.
8594
8595 2009-08-22 Eli Zaretskii <eliz@gnu.org>
8596
8597 * coding.h (encode_coding_string): Don't encode unibyte strings.
8598 (Bug#4047)
8599
8600 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
8601
8602 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
8603
8604 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
8605 intended as hotfix only.
8606 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
8607
8608 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
8609
8610 * nsterm.m (ns_get_color): Update documentation properly for last
8611 change, and clean up loose ends in the code left by it. Fix
8612 longstanding bug with 16-bit hex parsing, and add support for
8613 yet another X11 format (rgb:r/g/b) for compatibility.
8614 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
8615 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
8616
8617 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
8618
8619 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
8620
8621 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
8622
8623 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
8624 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
8625 (xd_initialize, xd_pending_messages): Check, whether
8626 $DBUS_SESSION_BUS_ADDRESS is set.
8627
8628 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8629
8630 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
8631
8632 * nsterm.m (ns_get_color): Remove incompatible color formats again.
8633
8634 2009-08-20 Glenn Morris <rgm@gnu.org>
8635
8636 * emacs.c (system-type): Doc fix.
8637
8638 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
8639
8640 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
8641 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
8642
8643 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
8644
8645 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
8646 New functions.
8647 (xd_initialize): Revert change from 2009-08-16.
8648
8649 2009-08-18 Kenichi Handa <handa@m17n.org>
8650
8651 * fontset.c (Ffontset_font): If a nil element is found in a
8652 font-group vector, return nil.
8653
8654 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
8655
8656 * process.c (status_notify): Don't perform redisplay.
8657 (Fdelete_process, list_processes_1, process_send_signal):
8658 Expliticly perform redisplay.
8659 (wait_reading_process_output): Always check process status, but
8660 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
8661
8662 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
8663
8664 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
8665 (XFLOAT_INIT): New macro for storing a float value.
8666 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
8667 * fns.c (sxhash): Copy out the value of a float in order to
8668 examine its bytes.
8669 * dbusbind.c (xd_append_arg): Likewise.
8670
8671 * emacs.c (main): Don't call syms_of_data twice.
8672
8673 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
8674
8675 * dbusbind.c (xd_initialize): Add connection file descriptor to
8676 input_wait_mask, in order to let select() detect, whether a new
8677 message has been arrived.
8678 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
8679
8680 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
8681
8682 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
8683 New functions.
8684
8685 * lisp.h (xd_pending_messages): Declare.
8686
8687 * keyboard.c (readable_events): Call xd_pending_messages.
8688
8689 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
8690
8691 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
8692
8693 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
8694
8695 * buffer.c (set_buffer_internal_1)
8696 (swap_out_buffer_local_variables): Check for unbound local
8697 variables (Bug#4138).
8698
8699 2009-08-14 Eli Zaretskii <eliz@gnu.org>
8700
8701 * process.c (create_pty): Fix last change.
8702
8703 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
8704
8705 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
8706 (xbm_load_image): Caller changed.
8707 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
8708
8709 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
8710
8711 * process.c (create_pty): New function.
8712 (Fstart_process): Use it to allow Emacs to just associate a pty
8713 with the buffer. See associated change in gdb-mi.el.
8714 (list_processes_1): Deal with no program name.
8715 (start_process_unwind): Use pid == -2 to mean no process.
8716
8717 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8718
8719 * cmds.c (nonundocount): New global variable.
8720 (keys_of_cmds): Initialize it.
8721 (Fself_insert_command): Use it to combine upto 20 sequential chars
8722 into a single undo entry, just like the Qself_insert_command code in
8723 keyboard.c does.
8724 Call frame_make_pointer_invisible, also like the Qself_insert_command
8725 code in keyboard.c does.
8726 * keyboard.c (command_loop_1): Use the new global nonundocount rather
8727 than its own local replacement for it.
8728
8729 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
8730
8731 * fns.c (concat): Don't re-set string length to its current value.
8732
8733 * coding.h (decode_coding_string, encode_coding_string):
8734 Use SBYTES macro.
8735
8736 * doprnt.c (doprnt_lisp): Delete unused function.
8737 (doprnt): Merge with doprnt1, discarding lispstrings code.
8738 * lisp.h (doprnt_lisp): Don't declare.
8739
8740 2009-08-07 Juri Linkov <juri@jurta.org>
8741
8742 * puresize.h (BASE_PURESIZE): Increase to 1270000.
8743
8744 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
8745
8746 * print.c (syms_of_print): Undo previous change.
8747
8748 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
8749
8750 * lread.c (read1, syms_of_lread): Read hashtables back from the
8751 readable format.
8752
8753 * print.c (print_preprocess, print_object): Print hashtables fully
8754 and readably.
8755 (syms_of_print): Provide 'hashtable-print-readable.
8756
8757 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
8758
8759 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
8760 no family set.
8761 (nsfont_open): Handle case when entity has no family.
8762
8763 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
8764
8765 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
8766 element, not a list, for match case.
8767
8768 2009-07-28 Kenichi Handa <handa@m17n.org>
8769
8770 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
8771 rigidly.
8772
8773 * xfont.c (xfont_list_pattern): Don't ignore the return value of
8774 font_parse_xlfd. Check font properties more rigidly.
8775
8776 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
8777
8778 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
8779 bsd-common.h.
8780
8781 2009-07-27 Kenichi Handa <handa@m17n.org>
8782
8783 * xfaces.c (face_with_height): Call font_clear_prop.
8784
8785 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
8786
8787 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
8788
8789 * xterm.c (x_term_init): Use Qx.
8790
8791 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
8792
8793 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
8794 (ns_get_color): Revert 2009-07-16 change.
8795
8796 2009-07-25 Eli Zaretskii <eliz@gnu.org>
8797
8798 * lread.c (syms_of_lread) <force_load_messages>: New variable.
8799 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
8800
8801 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
8802
8803 * coding.h (decode_coding_string, encode_coding_string):
8804 Use SCHARS macro.
8805
8806 * lread.c: Rewrite 2009-07-21 changes.
8807 (load_depth): Delete.
8808 (Qload_in_progress): New variable.
8809 (load_unwind): Don't reference load_depth or load_in_progress.
8810 (Fload): Likewise; specbind Qload_in_progress instead.
8811 (init_lread): Don't initialize load_depth.
8812 (syms_of_lread): Initialize and protect Qload_in_progress.
8813
8814 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
8815
8816 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
8817
8818 2009-07-23 Yavor Doganov <yavor@gnu.org>
8819
8820 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
8821
8822 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
8823
8824 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
8825 Bugs 3792, 3720, 2402.
8826 (ns_lookup_indexed_color): Check for bad index.
8827 (ns_index_color): Init unused slot to 0.
8828 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
8829 Bug 3714, possibly 3082.
8830
8831 2009-07-22 Jason Rumney <jasonr@gnu.org>
8832
8833 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
8834 Position IME window at cursor (Bug#2570).
8835 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
8836 (globals_of_w32fns): Dynamically load functions required above.
8837
8838 * w32term.c (w32_draw_window_cursor): Send message to reposition
8839 any IME window.
8840
8841 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
8842
8843 * fileio.c: Revert 2009-07-16 changes.
8844 (Vauto_save_include_big_deletions): New variable.
8845 (Fdo_auto_save): Disable auto-save only if
8846 auto-save-include-big-deletions is nil.
8847
8848 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
8849
8850 * xdisp.c (move_it_to): For continued lines ending in a tab, take
8851 the overflowed pixels into account (Bug#3879).
8852
8853 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
8854
8855 * lread.c (load_depth): New variable.
8856 (Fload, load_unwind, init_lread): Set it to the load recursion
8857 depth; set load_in_progress as a simple boolean based on the
8858 current load_depth. (Bug#3892)
8859
8860 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
8861
8862 * nsfont.m (ns_has_attribute): Remove.
8863 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
8864
8865 2009-07-18 Juri Linkov <juri@jurta.org>
8866
8867 * process.c (Fset_process_query_on_exit_flag): Mention killing
8868 a buffer in docstring.
8869
8870 2009-07-17 Kenichi Handa <handa@m17n.org>
8871
8872 * casetab.c (shuffle): Fix the logic of setting up the cycle.
8873
8874 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8875
8876 * nsfns.m (Fns_set_alpha): Remove function.
8877 (syms_of_nsfns): Don't defsubr it.
8878
8879 * nsterm.m (ns_get_color): Remove incompatible color formats.
8880 (ns_color_to_lisp): Generate #rrggbb color format string.
8881
8882 2009-07-16 Richard Stallman <rms@gnu.org>
8883
8884 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
8885 (Fset_buffer_auto_saved): Handle save_length = -2.
8886
8887 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
8888
8889 * xterm.c (Qx_gtk_map_stock): New var.
8890
8891 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
8892 of calling intern each time.
8893
8894 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8895
8896 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
8897 does tiling.
8898
8899 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
8900
8901 2009-07-14 Kenichi Handa <handa@m17n.org>
8902
8903 * font.c (font_vconcat_entity_vectors): New function.
8904 (struct font_sort_data): New member font_driver_preference.
8905 (font_compare): Check font_driver_preference.
8906 (font_sort_entities): The format of the first argument changed.
8907 (font_delete_unmatched): Likewise.
8908 (font_list_entities): The return type changed.
8909 (font_select_entity): The format of the second argument changed.
8910 (font_find_for_lface): Adjuste for the above changes.
8911 Don't suppress the checking of C even if the repertory supports it.
8912 (Flist_fonts): Adjust for the above changes.
8913
8914 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
8915 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
8916 Reject a font who has adstyle property that is different from a
8917 langname derived from registry property.
8918 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
8919
8920 2009-07-13 Eli Zaretskii <eliz@gnu.org>
8921
8922 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
8923 local copy of dirfilename.
8924
8925 2009-07-13 Kenichi Handa <handa@m17n.org>
8926
8927 * chartab.c (sub_char_table_ref_and_range): Fix the range check
8928 against max_char.
8929
8930 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
8931 calling XSYMBOL (sym).
8932
8933 2009-07-11 Eli Zaretskii <eliz@gnu.org>
8934
8935 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
8936 New function.
8937 (directory_files_internal) [WINDOWSNT]:
8938 Bind w32-get-true-file-attributes to either t or nil, depending whether
8939 the filesystem of the directory is fast or slow.
8940
8941 * w32.c (logon_network_drive): Don't assume PATH is an absolute
8942 file name.
8943 (is_slow_fs): New function.
8944 (stat): Use it to determine whether to issue more system calls to
8945 get accurate file attributes, when w32-get-true-file-attributes is
8946 `local'.
8947
8948 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
8949
8950 * xfns.c (Fx_select_font): Remember last font selected in
8951 x_last_font_name and use that the next time. Also try the frame
8952 parameter font-parameter as default to the font dialog.
8953
8954 2009-07-10 Kenichi Handa <handa@m17n.org>
8955
8956 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
8957
8958 2009-07-09 Eli Zaretskii <eliz@gnu.org>
8959
8960 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
8961
8962 * w32.c (stat): Treat UNC file names as residing on remote
8963 drives. (Bug#3542)
8964
8965 2009-07-09 Kenichi Handa <handa@m17n.org>
8966
8967 * fontset.c (fontset_find_font): Fix previous change.
8968
8969 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
8970
8971 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
8972 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
8973 error flag.
8974
8975 2009-07-08 Kenichi Handa <handa@m17n.org>
8976
8977 * fontset.c (fontset_find_font): Fix the logic of handling
8978 charset_matched.
8979 (font_for_char): Delete unused var.
8980 (generate_ascii_font_name): Delete it.
8981
8982 * coding.h (JIS_TO_SJIS2): Fix the code range check.
8983
8984 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
8985 (encode_coding_sjis): Fix the code range check.
8986
8987 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
8988
8989 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
8990 (Fexpand_file_name): Copy string data properly (Bug#3772).
8991
8992 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
8993
8994 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
8995 first MapNotify.
8996
8997 2009-07-07 Kenichi Handa <handa@m17n.org>
8998
8999 * character.h (unibyte_has_multibyte_table): Delete extern.
9000 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
9001
9002 * charset.c (Fset_charset_priority): Update charset_unibyte.
9003 (syms_of_charset): Initialize charset_unibyte.
9004
9005 * character.c (unibyte_has_multibyte_table): Delete it.
9006 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
9007 charset_unibyte.
9008 (multibyte_char_to_unibyte_safe): Likewise.
9009 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
9010
9011 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
9012 (x_produce_glyphs): Likewise.
9013
9014 * .gdbinit (xcharset): Fix the treating $arg0.
9015
9016 2009-07-04 Eli Zaretskii <eliz@gnu.org>
9017
9018 Emulation of `getloadavg' on MS-Windows.
9019 * w32.c: Include float.h.
9020 (g_b_init_get_native_system_info, g_b_init_get_system_times)
9021 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
9022 (get_native_system_info, get_system_times): New functions.
9023 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
9024 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
9025 (globals_of_w32): Initialize g_b_init_get_native_system_info,
9026 g_b_init_get_system_times, and num_of_processors.
9027
9028 2009-07-03 Jason Rumney <jasonr@gnu.org>
9029
9030 * w32term.c (w32_initialize): Use standard types.
9031
9032 2009-07-03 Eli Zaretskii <eliz@gnu.org>
9033
9034 * dired.c (Ffile_attributes): Decode user and group names by the
9035 locale's encoding. (Bug#3443)
9036
9037 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
9038
9039 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
9040 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
9041
9042 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
9043
9044 * term.c (init_tty): Remove spurious #ifdef.
9045
9046 * m/mips.h: Mention this file is also used for netbsd.
9047 * m/pmax.h: Remove file.
9048
9049 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
9050
9051 * xterm.h (struct x_display_info): Add invisible_cursor.
9052 (struct x_output): Add current_cursor.
9053
9054 * xterm.c (XTtoggle_invisible_pointer): New function.
9055 (x_define_frame_cursor): Don't define cursor if invisible or the
9056 same as before. Set current_cursor.
9057 (x_create_terminal): Set toggle_invisible_pointer_hook.
9058
9059 * xfns.c (make_invisible_cursor): New function.
9060 (x_set_mouse_color): Call make_invisible_cursor.
9061 Set current_cursor.
9062 (x_window): Set current_cursor.
9063
9064 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
9065
9066 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
9067 inserting a character.
9068 (read_avail_input): Call frame_make_pointer_visible.
9069
9070 * frame.c (Vmake_pointer_invisible): New variable.
9071 (frame_make_pointer_invisible, frame_make_pointer_visible):
9072 New functions.
9073 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
9074
9075 * frame.h: Declare frame_make_pointer_invisible and
9076 frame_make_pointer_visible.
9077 (struct frame): Add pointer_invisible.
9078
9079 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
9080
9081 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
9082 frame isn't visible.
9083 (xg_frame_resized): If width/height is -1, get size of window
9084 from X server.
9085
9086 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
9087 for MapNotify.
9088
9089 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
9090 here or call change_frame_size. Just call flush_and_sync.
9091 (flush_and_sync): Reintroduce.
9092
9093 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
9094
9095 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
9096
9097 * xterm.c (x_handle_net_wm_state): Also look for sticky.
9098 (x_term_init): Initialize Xatom_net_wm_state_sticky.
9099
9100 * frame.h: Declare Qsticky.
9101
9102 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
9103
9104 * nsfns.m (ns_frame_parm_handlers): Ditto.
9105
9106 * frame.c: Declare Qsticky.
9107 (frame_parms): Add sticky.
9108
9109 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
9110
9111 * xterm.h: Declare x_set_sticky.
9112
9113 * xterm.c (x_set_sticky): New function.
9114
9115 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
9116 (xg_tool_bar_menu_proxy): Attach enter/leave events to
9117 xg_tool_bar_proxy_help_callback.
9118
9119 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
9120
9121 * frame.c: Qmaximized is new.
9122 (x_set_frame_parameters): Do not handle fullscreen specially.
9123 Only set width and height if explicitly set.
9124 (x_set_fullscreen): Handle Qmaximized.
9125 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
9126 (syms_of_frame): Initialize Qmaximized.
9127
9128 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
9129 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
9130
9131 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
9132 for Expose event. Add call to x_check_fullscreen for MapNotify event.
9133 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
9134 set gravity to NorthWestGravity when USE_GTK.
9135 (set_wm_state): New function.
9136 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
9137 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
9138 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
9139 or the case when no window manager is running. That means remove calls
9140 to x_real_positions and x_fullscreen_adjust.
9141
9142 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
9143 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
9144 flush_and_sync.
9145 (xg_height_changed): New function.
9146 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
9147 and gtk_window_set_policy. Set frame gravity after parsing the
9148 geometry string.
9149 (xg_update_frame_menubar, free_frame_menubar)
9150 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
9151 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
9152 Remove calls to xg_frame_set_char_size.
9153
9154 2009-07-01 Kenichi Handa <handa@m17n.org>
9155
9156 * keyboard.c (decode_keyboard_code): New function.
9157 (tty_read_avail_input): Decode the input bytes if necessary.
9158
9159 * coding.c (setup_coding_system):
9160 Initialize coding->carryover_bytes to 0.
9161 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
9162 use Qno_conversion.
9163
9164 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9165
9166 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
9167
9168 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
9169
9170 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
9171
9172 2009-06-30 Jason Rumney <jasonr@gnu.org>
9173
9174 * w32term.c (w32_initialize): Use GetModuleHandle for library that
9175 is already loaded.
9176 Set user model ID if supported (bug#1849).
9177
9178 2009-06-29 Jim Meyering <meyering@redhat.com>
9179
9180 Remove useless if-before-xfree test.
9181 * nsfont.m (nsfont_close): Remove useless test.
9182 * term.c (delete_tty): Likewise.
9183 * w32.c (system_process_attributes): Likewise.
9184 * w32font.c (w32font_close): Likewise.
9185 * xfaces.c (x_free_gc): Likewise.
9186 * xselect.c (buffer): Likewise.
9187
9188 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
9189
9190 * process.c (send_process): Keep decoded string in a local
9191 variable and protect it from GC. (Bug#3521)
9192
9193 2009-06-28 Eli Zaretskii <eliz@gnu.org>
9194
9195 * term.c (create_tty_output) [MSDOS]: #ifdef away.
9196 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
9197
9198 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
9199
9200 * xdisp.c (start_display, handle_face_prop)
9201 (move_it_vertically_backward, cursor_row_fully_visible_p)
9202 (redisplay_window, try_window_id, produce_image_glyph):
9203 Delete some #ifdef-ed out code chunks that are now obsolete.
9204
9205 * xterm.c (x_update_window_begin, x_new_focus_frame)
9206 (x_scroll_bar_handle_click, handle_one_xevent)
9207 (handle_one_xevent, XTread_socket, x_focus_on_frame)
9208 (x_make_frame_visible, x_make_frame_invisible)
9209 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
9210 code chunks that are now obsolete.
9211
9212 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
9213
9214 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
9215 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
9216 for hours, when optimzation is enabled.
9217 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
9218 (xd_read_message): Make them static.
9219
9220 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
9221
9222 * term.c (turn_on_face): Allow simultaneously bold and dim
9223 terminal faces (Bug#3530).
9224
9225 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
9226
9227 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
9228
9229 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
9230 truncation glyphs (Bug#3686).
9231
9232 2009-06-27 Glenn Morris <rgm@gnu.org>
9233
9234 * m/pmax.h: Restore file, with only netbsd portions.
9235
9236 2009-06-26 David Reitter <david.reitter@gmail.com>
9237
9238 * nsterm.m (keydown): Avoid infinite loop.
9239
9240 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
9241
9242 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
9243 the arg FORCE_SYMBOL.
9244
9245 2009-06-25 Kenichi Handa <handa@m17n.org>
9246
9247 * fontset.c (fontset_find_font): When a usable rfont_def is found
9248 in a fallback font-group, make it the first element of the group.
9249
9250 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
9251
9252 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
9253
9254 2009-06-24 Kenichi Handa <handa@m17n.org>
9255
9256 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
9257 set for C.
9258 (fontset_font): Record the availability of a font for C both in
9259 the realized fontsets of the current one and the default one.
9260
9261 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
9262
9263 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
9264 conditional, it is always defined on AIX.
9265
9266 2009-06-23 Miles Bader <miles@gnu.org>
9267
9268 * window.c (Vrecenter_redisplay): New variable.
9269 (syms_of_window): Initialize it.
9270 (Qtty): New extern declaration.
9271 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
9272
9273 2009-06-23 Jim Meyering <meyering@redhat.com>
9274
9275 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
9276 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
9277 pointer dereferences are guaranteed to be valid.
9278
9279 2009-06-23 Kenichi Handa <handa@m17n.org>
9280
9281 * emacs.c (main): Call init_font ().
9282
9283 * font.h (Vfont_log): Extern it.
9284 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
9285
9286 * font.c (font_sort_entities, font_list_entities)
9287 (font_matching_entity, font_open_entity)
9288 (font_close_object): Change font_add_log to FONT_ADD_LOG.
9289 (Vfont_log): Delete static.
9290 (font_log_env_checked): Delete this variable.
9291 (font_add_log): Don't check font_log_env_checked.
9292 (font_deferred_log): Check Vfont_log.
9293 (init_font): New function.
9294
9295 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
9296
9297 * w32font.c: Change font_add_log to FONT_ADD_LOG.
9298
9299 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
9300
9301 * xfont.c: Change font_add_log to FONT_ADD_LOG.
9302
9303 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
9304 (face_for_char): Don't call font_deferred_log here.
9305 (font_for_char): Likewise.
9306
9307 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
9308
9309 * w32term.c (x_draw_glyph_string): Use the glyph string's width
9310 rather than its background_width for drawing the overline and
9311 underline (Bug#489).
9312
9313 * xterm.c (x_draw_glyph_string): Use the glyph string's width
9314 rather than its background_width for drawing the overline and
9315 underline (Bug#489).
9316 (xg_default_icon_file): New variable.
9317 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
9318 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
9319
9320 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
9321 (load_overlay_strings): Remove externs.
9322 (fast_find_position): Function deleted.
9323 (mouse_face_from_buffer_pos): New function, based on
9324 fast_find_position. Correctly handle before-strings,
9325 display-strings, and after-strings (Bug#1220).
9326 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
9327
9328 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
9329
9330 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
9331 (move_it_in_display_line_to, move_it_in_display_line_to)
9332 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
9333
9334 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
9335
9336 * Branch for 23.1.
9337
9338 2009-06-21 Jason Rumney <jasonr@gnu.org>
9339
9340 * w32term.c (keyboard_codepage): New static variable.
9341 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
9342 (w32_read_socket) [WM_CHAR]: Use it to decode character
9343 input (bug#3237).
9344 (w32_initialize): Initialize it.
9345 (codepage_for_locale): New function.
9346
9347 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
9348
9349 * process.c (status_message): Pass Faset index argument as a lisp
9350 object, so as to work with USE_LISP_UNION_TYPE.
9351
9352 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9353
9354 * coding.c (Ffind_coding_systems_region_internal):
9355 Cache checked characters.
9356
9357 2009-06-18 Kenichi Handa <handa@m17n.org>
9358
9359 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
9360
9361 2009-06-18 Andreas Schwab <aschwab@redhat.com>
9362
9363 * xdisp.c (redisplay_internal): Check that the frame is still
9364 live after redisplay of its windows.
9365 (redisplay_windows): Check that the window is still live.
9366
9367 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
9368
9369 * coding.c (detect_coding_utf_16): Fix previous change.
9370
9371 2009-06-16 Kenichi Handa <handa@m17n.org>
9372
9373 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
9374 UTF-16 by checking the dispersion of Eth and Oth bytes.
9375
9376 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
9377
9378 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
9379
9380 2009-06-15 Kenichi Handa <handa@m17n.org>
9381
9382 * process.c (status_message): Fix previous change. Be sure to
9383 decode a localized string.
9384
9385 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9386
9387 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
9388 add comment explaining why.
9389
9390 2009-06-14 Sidney Markowitz <sidney@sidney.com>
9391
9392 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
9393
9394 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
9395
9396 * nsfont.m (ns_attribute_value): Remove.
9397 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
9398 (ns_has_attribute): Shrink the normal range.
9399 (ns_findfonts): Don't worry about requested spec in determining
9400 need for synthItal.
9401 (ns_get_covering_families): Retain scriptToFamilies.
9402
9403 2009-06-14 Seiji Zenitani <zenitani@mac.com>
9404
9405 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
9406
9407 2009-06-11 Kenichi Handa <handa@m17n.org>
9408
9409 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
9410 overhang for the static composition case.
9411
9412 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9413
9414 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
9415 overhang for the automatic composition case.
9416
9417 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
9418 composition case.
9419
9420 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
9421
9422 * xdisp.c (get_next_display_element): When handling wrap-prefix
9423 and line-prefix, treat \n as a control character (bug#3502).
9424
9425 2009-06-10 Kenichi Handa <handa@m17n.org>
9426
9427 * font.c (font_parse_family_registry): Fix for one-char foundry.
9428 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
9429
9430 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
9431
9432 * process.c (status_message): Fix handling of multibyte signal
9433 string (Bug#3499).
9434
9435 2009-06-09 Jim Meyering <meyering@redhat.com>
9436
9437 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
9438 color name is missing.
9439
9440 2009-06-09 Kenichi Handa <handa@m17n.org>
9441
9442 * charset.c (Fmap_charset_chars): In docstring, state clearly that
9443 FROM-CODE and TO-CODE are codepoints of CHARSET.
9444
9445 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
9446
9447 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
9448
9449 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
9450
9451 Changes to support :script/:lang/:otf in NS font driver.
9452 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
9453 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
9454 indicate not part of font driver interface, and change callers.
9455 (ns_get_family): Remove pointless null check.
9456 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
9457 ns_spec_to_descriptor, ns_descriptor_to_entity.
9458 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
9459 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
9460 (ns_spec_to_descriptor, ns_descriptor_to_entity)
9461 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
9462 (ns_get_req_script, ns_accumulate_script_ranges)
9463 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
9464 New functions.
9465 (nsfont_list, nsfont_match): Use ns_findfonts.
9466 (nsfont_open): Use font descriptor instead of traits.
9467 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
9468 (dump_glyphstring): Rename to ns_dump_glyphstring.
9469
9470 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
9471
9472 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
9473
9474 * fontset.c (fontset_from_font): Remove NS-specific code.
9475
9476 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
9477
9478 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
9479 nonactive windows.
9480
9481 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
9482
9483 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
9484
9485 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
9486
9487 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
9488
9489 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
9490
9491 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
9492 account for the overflowing of newlines into the last glyph on the
9493 display line (Bug#3482).
9494
9495 2009-06-05 David Reitter <david.reitter@gmail.com>
9496
9497 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
9498 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
9499 Fns_selection_exists_p, Fns_selection_owner_p.
9500
9501 2009-06-03 Jason Rumney <jasonr@gnu.org>
9502
9503 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
9504 available. (Bug#3379)
9505
9506 2009-05-29 Kenichi Handa <handa@m17n.org>
9507
9508 * coding.c (get_translation_table):
9509 Check Venable_character_translation.
9510
9511 2009-05-26 David Reitter <david.reitter@gmail.com>
9512
9513 * nsterm.m (ns_raise_frame): Only raise frame if visible.
9514 (x_make_frame_visible): Move frame to front rather than calling
9515 ns_raise_frame().
9516 (keyDown:): Do not swallow events that aren't re-sent if frame
9517 isn't key window.
9518 (drawRect:): Do not set visibility/iconified flags because
9519 drawRect may be called by NSView even if the frame is hidden.
9520
9521 * nsfns.m (Fx_create_frame): Follow other ports in
9522 determining visibility; default to t. Ensure async_visible is set.
9523
9524 2009-05-23 Eli Zaretskii <eliz@gnu.org>
9525
9526 * dired.c (Ffile_attributes): Doc fix.
9527
9528 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
9529
9530 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
9531
9532 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
9533
9534 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
9535 and xfont_scratch_props.
9536 (syms_of_xfont): Do it here instead.
9537 (xfont_find_ccl_program): Delete, unused.
9538 (xfont_open): Delete unused var `i'.
9539
9540 2009-05-21 Kenichi Handa <handa@m17n.org>
9541
9542 * fontset.c (Qlatin): Don't make it static.
9543
9544 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
9545 New functions.
9546 (xfont_scripts_cache, xfont_scratch_props): New variables.
9547 (Qlatin, Vscalable_fonts_allowed): Extern it.
9548 (xfont_list_pattern): Argument changed. Callers changed.
9549 Check Vscalable_fonts_allowed. Check the support of a script.
9550 (xfont_list): Don't reject a font spec with :script property.
9551 (xfont_has_char): Fix setting of encoding.
9552 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
9553 xfont_scratch_props.
9554
9555 2009-05-19 Kenichi Handa <handa@m17n.org>
9556
9557 * font.c (font_sort_entities): Rename from font_sort_entites.
9558 Callers changed.
9559
9560 2009-05-18 Kenichi Handa <handa@m17n.org>
9561
9562 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
9563
9564 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
9565
9566 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
9567 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
9568
9569 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9570
9571 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
9572 (x_delete_terminal): Dissociate resource database from display and
9573 then call XrmDestroyDatabase before closing display.
9574
9575 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
9576
9577 * nsterm.m (ns_read_socket): Remove unused variable.
9578 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
9579 whether selected frame is viable before raising it (based on patch
9580 by David Reitter), and improve commentary.
9581 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
9582
9583 2009-05-15 Kenichi Handa <handa@m17n.org>
9584
9585 * font.c (Ffont_spec): Check arguments.
9586
9587 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
9588
9589 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
9590 weight when testing attributes (Bug#3282).
9591
9592 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9593
9594 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
9595 what we expect to get in the next ConfigureNotify event.
9596
9597 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
9598 before Xft one (Bug#1696).
9599
9600 2009-05-07 David Reitter <david.reitter@gmail.com>
9601
9602 * nsfns.m (Fx_display_planes): Compute bitplanes using
9603 NSBitsPerPixelFromDepth (Bug#3207).
9604
9605 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
9606
9607 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
9608
9609 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
9610
9611 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
9612
9613 2009-05-07 David Reitter <david.reitter@gmail.com>
9614
9615 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
9616 Respect mouse face background.
9617
9618 2009-05-07 David Reitter <david.reitter@gmail.com>
9619
9620 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
9621 Mouse movement/highlight: bracket drawing operations
9622 in ns_update_begin and ns_update_end.
9623
9624 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
9625
9626 * nsfns.m (ns_get_screen): Rewrite.
9627 Don't presume selected-frame is of type `ns'.
9628
9629 * font.c (font_update_drivers): Sanity fallback to avoid disabling
9630 all drivers.
9631
9632 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
9633
9634 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9635
9636 * keyboard.h (add_user_signal): Fix typo in extern.
9637
9638 * lisp.h (add_user_signal): Remove extern.
9639
9640 * unexelf.c (unexec): Consider a section to precede the .bss section
9641 if its addresses overlap that of .bss.
9642 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
9643 instead of dumping process.
9644
9645 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
9646
9647 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
9648
9649 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
9650
9651 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
9652
9653 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
9654
9655 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
9656 any statements.
9657
9658 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
9659
9660 * process.c (read_process_output): Make sure the current buffer is
9661 always restored.
9662
9663 * coding.c (record_conversion_result): Don't modify
9664 Vlast_code_conversion_error for successful result.
9665 (alloc_destination): Don't clobber conversion result. (Bug#1650)
9666
9667 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
9668
9669 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
9670 (load_charset_map): Remove unnecessary code.
9671
9672 2009-04-30 David Reitter <david.reitter@gmail.com>
9673
9674 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
9675 through f24.
9676
9677 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
9678
9679 * xfaces.c (face_at_buffer_position): New arg base_face_id.
9680
9681 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
9682 face_at_buffer_position.
9683 (face_before_or_after_it_pos, get_next_display_element)
9684 (note_mouse_highlight): Update face_at_buffer_position call.
9685
9686 * term.c (term_mouse_highlight):
9687 * msdos.c (IT_note_mouse_highlight):
9688 * fontset.c (Finternal_char_font):
9689 * font.c (font_at, font_range): Update face_at_buffer_position call.
9690
9691 * dispextern.h (face_at_buffer_position): Update prototype.
9692
9693 2009-04-30 Kenichi Handa <handa@m17n.org>
9694
9695 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
9696
9697 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
9698
9699 * callproc.c (Fcall_process): Fix GC protection. Make sure
9700 current buffer is always restored.
9701
9702 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9703
9704 * atimer.c (init_atimer): Also clear stopped_atimers.
9705
9706 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
9707
9708 * process.c (create_process): Clean up merger residues of
9709 2008-07-17 change.
9710
9711 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
9712
9713 * lread.c (Vread_circle): New variable.
9714 (read1): Disable recursive read if Vread_circle is nil.
9715
9716 2009-04-29 Kenichi Handa <handa@m17n.org>
9717
9718 * fontset.h (set_default_ascii_font): Delete extern.
9719
9720 * fontset.c (set_default_ascii_font): Delete this unused function.
9721
9722 * frame.c (x_set_font): When ARG is a font-object, check if the
9723 font-object matches with the ASCII font-spec of the frame's
9724 fontset. If not, create a new fontset for the frame. (Bug #3075)
9725
9726 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
9727
9728 * fns.c (Flocale_info): Protect vector from GC during decoding.
9729
9730 * process.c (Fstart_process): Protect argv strings from GC during
9731 encoding.
9732
9733 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
9734
9735 * sysdep.c: Include <ctype.h>.
9736
9737 2009-04-27 David Reitter <david.reitter@gmail.com>
9738
9739 * nsfont.m (nsfont_open): Remove unused variable shrink.
9740 Remove commented-out code.
9741
9742 2009-04-26 Johan Bockgård <bojohan@gnu.org>
9743
9744 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
9745
9746 2009-04-25 Jason Rumney <jasonr@gnu.org>
9747
9748 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
9749
9750 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9751
9752 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
9753 Swap bytes in short integer if fringe bitmap width > 8.
9754
9755 2009-04-23 Kenichi Handa <handa@m17n.org>
9756
9757 * xfaces.c (Fx_list_fonts): If a font size is specified in
9758 PATTERN, set it in returned scalable fonts.
9759
9760 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
9761
9762 * keyboard.c (Fset_input_meta_mode): Doc fix.
9763
9764 * dispnew.c (Fsend_string_to_terminal): Doc fix.
9765
9766 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
9767
9768 * coding.c (Fterminal_coding_system): Doc fix.
9769
9770 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
9771 (Fx_display_pixel_height, Fx_display_planes)
9772 (Fx_display_color_cells, Fx_server_max_request_size)
9773 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
9774 (Fx_display_mm_height, Fx_display_mm_width)
9775 (Fx_display_backing_store, Fx_display_visual_class)
9776 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
9777 Doc fixes, replacing "terminal id" with "terminal object".
9778 (check_x_display_info): Handle terminal objects instead of
9779 terminal ids.
9780
9781 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
9782 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
9783 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
9784 Doc fixes, replacing "terminal id" with "terminal object".
9785
9786 2009-04-21 Kenichi Handa <handa@m17n.org>
9787
9788 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
9789 (font_score): Check AVGWIDTH too.
9790
9791 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
9792 worst case.
9793 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
9794 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
9795
9796 2009-04-19 Jason Rumney <jasonr@gnu.org>
9797
9798 The following changes fix Bug#3005 for wide glyphs on each platform,
9799 without reintroducing Bug#1258 for stretch glyphs.
9800
9801 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
9802 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
9803 get_phys_cursor_geometry.
9804
9805 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
9806 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
9807 using get_phys_cursor_geometry.
9808
9809 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
9810 correctly calculated.
9811
9812 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
9813
9814 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
9815 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
9816 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
9817 is deprecated.
9818
9819 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
9820
9821 * font.c (font_put_frame_data): Use xfree instead of free.
9822
9823 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
9824
9825 * w32font.c (Qja, Qko): Remove declarations.
9826 (syms_of_w32font): Don't DEFSYM them.
9827
9828 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
9829
9830 * font.c (Qja, Qko): Move definitions here from ftfont.c.
9831
9832 * font.h (Qja, Qko): Extern them.
9833
9834 * ftfont.c (Qja, Qko): Remove declarations.
9835
9836 * xfont.c (Qja, Qko): Remove declarations.
9837
9838 2009-04-17 Kenichi Handa <handa@m17n.org>
9839
9840 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
9841 string from a vector to handle Latin-1 characters correctly.
9842
9843 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
9844 entity even if the cache hits.
9845
9846 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
9847
9848 * search.c (boyer_moore): Use zero as marker value for a possible
9849 match instead of depending on overflow behavior. (Bug#2844)
9850
9851 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
9852 * lisp.h: Adjust prototypes.
9853
9854 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
9855
9856 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
9857 change (Bug#3003).
9858
9859 2009-04-16 Kenichi Handa <handa@m17n.org>
9860
9861 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
9862
9863 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
9864 adstyle.
9865
9866 * ftfont.c (Qja, Qko): Don't make them static.
9867 (enum ftfont_cache_for): New enum.
9868 (fc_charset_table): Undo the previous change.
9869 (ftfont_get_latin1_charset): Delete it.
9870 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
9871 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
9872 non-scarable font, try to get AVERAGE_WIDTH.
9873 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
9874 Change ft_face_cache from a list of a hash-table. Don't check
9875 `ja' and `ko' adstyle here.
9876 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
9877 FTFONT_CACHE_FOR_CHARET.
9878 (ftfont_get_charset): Undo the previous change.
9879 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
9880 (ftfont_close): Likewise.
9881 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
9882
9883 * font.c (font_sort_entites): Change the meaning of the arg
9884 BEST-ONLY. Don't optimize for VEC of lenght 1.
9885 (font_select_entity): Just return the value of font_sort_entites.
9886
9887 * xfaces.c (merge_face_vectors): Reflect font properties in
9888 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
9889 font_clear_prop if a face attribute doesn't change.
9890
9891 * charset.h (charset_ksc5601): Extern it.
9892
9893 * charset.c (charset_ksc5601): New variable.
9894 (Fdefine_charset_internal): Set charset_ksc5601.
9895 (init_charset_once): Initialize charset_ksc5601 to -1.
9896
9897 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
9898
9899 * fileio.c (history_delete_duplicates): Remove unused declaration.
9900
9901 * callint.c (history_delete_duplicates): New declaration.
9902 (Fcall_interactively): Remove command history duplicates when
9903 history_delete_duplicates is true.
9904
9905 2009-04-14 Eli Zaretskii <eliz@gnu.org>
9906
9907 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
9908
9909 2009-04-14 Kenichi Handa <handa@m17n.org>
9910
9911 * font.c (Ffont_info): Fix docstring. Fix the second element of
9912 the returned value (bug#2949).
9913
9914 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
9915
9916 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
9917
9918 2009-04-14 Kenichi Handa <handa@m17n.org>
9919
9920 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
9921 encoding charset is ascii_compatible.
9922
9923 * charset.c (Fdefine_charset_internal): Make charset
9924 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
9925 code_offset is 0, and covers all ASCII characters.
9926
9927 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9928
9929 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
9930 (ns_string_to_pasteboard_internal):
9931 * nsmenu.m (process_dialog):
9932 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
9933 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
9934 * lisp.h (Fx_load_color_file): Declare.
9935
9936 2009-04-13 Kenichi Handa <handa@m17n.org>
9937
9938 * font.c (font_delete_unmatched): Preserve the order of list elements.
9939 (font_select_entity): Suppress the code to optimize for the same
9940 kind of fonts.
9941 (font_load_for_lface): Get a font that supports at least ASCII
9942 characters.
9943
9944 * ftfont.c (Qja, Qko): New variables.
9945 (fc_charset_table): Delete uniquifier data for iso8859-1.
9946 (ftfont_get_latin1_charset): New function.
9947 (get_adstyle_property): New function.
9948 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
9949 bitmap fonts.
9950 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
9951 Delete iso-8859-1 range from the charset of fonts whose adstyle is
9952 `ko' or `ja'.
9953 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
9954 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
9955 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
9956 property.
9957 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
9958 (syms_of_ftfont): DEFSYM Qja and Qko.
9959
9960 2009-04-09 Kenichi Handa <handa@m17n.org>
9961
9962 * charset.c (map_charset_chars): For a charset of `superset'
9963 method, fix calculation of code range.
9964
9965 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
9966 from the list of extra properties.
9967 (font_clear_prop): Be sure to delete `:name' font property.
9968
9969 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9970
9971 * dispnew.c (redraw_overlapping_rows): Fix detection of
9972 overlapping for topmost and bottommost rows.
9973
9974 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
9975
9976 2009-04-06 Jason Rumney <jasonr@gnu.org>
9977
9978 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
9979
9980 2009-04-06 Kenichi Handa <handa@m17n.org>
9981
9982 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
9983
9984 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
9985
9986 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9987
9988 * ftfont.c (ftfont_open): Fix checking of the return value of
9989 FT_Load_Char. Fix setting font->underline_thickness.
9990
9991 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
9992
9993 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
9994 (Fterminal_parameters, Fterminal_parameter)
9995 (Fset_terminal_parameter): In doc string, refer to terminal
9996 objects rather than terminal ids.
9997
9998 2009-04-04 Eli Zaretskii <eliz@gnu.org>
9999
10000 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
10001 ret_lim_data. (Bug#2867)
10002
10003 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
10004
10005 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
10006 so they don't get wider than the window, matching 2006-01-23
10007 change to the partner function in xdisp.c (Bug#2800).
10008
10009 2009-04-03 Kenichi Handa <handa@m17n.org>
10010
10011 * print.c (print_object): Make each lowest sub_char_table start a
10012 new line (Bug#2866).
10013
10014 2009-04-02 Kenichi Handa <handa@m17n.org>
10015
10016 * fontset.c (fontset_font): Record no-font when a fontset
10017 explicitly tells not to try another font-specs.
10018
10019 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
10020
10021 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
10022
10023 2009-03-30 Kenichi Handa <handa@m17n.org>
10024
10025 * fontset.c (fontset_from_font): Specify only registry in a
10026 font-spec for all characters supported by that registry.
10027
10028 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
10029 even if HAVE_M17N_FLT is not defined.
10030
10031 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
10032
10033 * ftfont.c: Conditionalize prototyping and use of
10034 ftfont_variation_glyphs.
10035
10036 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
10037
10038 * frame.c (delete_frame): Work around compiler bug.
10039
10040 * editfns.c (general_insert_function): Adjust to insdel.c changes.
10041 * insdel.c (prepare_to_modify_buffer, signal_before_change):
10042 Some more EMACS_INT.
10043 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
10044
10045 * xdisp.c (dump_glyph): Fix typo.
10046
10047 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
10048 (adjust_markers_gap_motion, adjust_markers_for_delete)
10049 (adjust_markers_for_insert, adjust_point)
10050 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
10051 (make_gap, copy_text, count_size_as_multibyte, insert)
10052 (insert_and_inherit, insert_before_markers)
10053 (insert_before_markers_and_inherit, insert_1)
10054 (count_combining_before, count_combining_after, insert_1_both)
10055 (insert_from_string, insert_from_string_before_markers)
10056 (insert_from_string_1, insert_from_gap, insert_from_buffer)
10057 (insert_from_buffer_1, adjust_after_replace)
10058 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
10059 (replace_range_2, del_range, del_range_1, del_range_byte)
10060 (del_range_both, del_range_2, modify_region)
10061 (prepare_to_modify_buffer, signal_before_change)
10062 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
10063 for buffer positions and sizes.
10064 * lisp.h: Adjust prototypes accordingly.
10065
10066 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
10067 (non_regular_inserted, non_regular_nbytes, read_non_regular)
10068 (Finsert_file_contents): Use EMACS_INT for buffer positions.
10069
10070 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
10071
10072 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
10073
10074 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
10075 lines and columns so we keep the same pixel height and width.
10076
10077 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
10078 the property _NET_WM_STATE has changed.
10079 (x_handle_net_wm_state): New function to update frame parameter
10080 fullscreen.
10081 (x_term_init): Initialize atoms for _NET_WM_STATE.
10082
10083 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
10084
10085 2009-03-27 Kevin Ryde <user42@zip.com.au>
10086
10087 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
10088 Gpm_GetEvent as an error that justifies closing the filedescriptor.
10089 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
10090 (Fgpm_mouse_stop): Pass that new parameter.
10091 * termhooks.h (close_gpm): Adjust prototype.
10092
10093 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
10094
10095 * lisp.h (Fx_focus_frame): Declare.
10096
10097 * callint.c (Fcall_interactively): For '^' just delegate the work to
10098 handle-shift-selection.
10099 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
10100
10101 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
10102
10103 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
10104
10105 * data.c (Qinteractive_form): New variable.
10106 (Finteractive_form): Use it.
10107
10108 * eval.c (Fcommandp): Use Qinteractive_form.
10109
10110 2009-03-24 Jason Rumney <jasonr@gnu.org>
10111
10112 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
10113 Calculate total size precisely. Decode environment variables
10114 before substituting. (Bug#38)
10115
10116 2009-03-24 Kenichi Handa <handa@m17n.org>
10117
10118 * font.c (find_font_encoding): Return Qnil for unsupported
10119 encoding (Bug#2722).
10120
10121 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
10122
10123 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
10124 that gdpy is set.
10125
10126 2009-03-22 Alan Mackenzie <acm@muc.de>
10127
10128 * callint.c (Finteractive): Clarify the doc string - even
10129 promptless elements need \n separators.
10130
10131 2009-03-22 Jason Rumney <jasonr@gnu.org>
10132
10133 * w32term.c (syms_of_w32term): Doc fix for
10134 x-use-underline-position-properties.
10135
10136 2009-03-21 Eli Zaretskii <eliz@gnu.org>
10137
10138 * w32.c (getpwuid): Change argument type to unsigned.
10139 (struct w32_id): Change type of `rid' member to unsigned.
10140 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
10141 argument ID to unsigned. All callers changed.
10142 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
10143
10144 2009-03-20 Eli Zaretskii <eliz@gnu.org>
10145
10146 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
10147 negative, produce a float value.
10148
10149 * dired.c (make_uid, make_gid): New functions.
10150 (Ffile_attributes): Use them to avoid negative UID and GID.
10151
10152 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
10153
10154 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
10155 (syms_of_keyboard) <command-hook-internal, input-method-function>:
10156 Fix typos in docstrings.
10157
10158 2009-03-19 Kenichi Handa <handa@m17n.org>
10159
10160 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
10161 changed, use font_load_for_lface to get a new font object.
10162 Call free_realized_fontset after handling ASCII font change.
10163
10164 * frame.c (x_set_font): Handle the case that ARG is a cons.
10165
10166 2009-03-19 Glenn Morris <rgm@gnu.org>
10167
10168 * fileio.c (Fsubstitute_in_file_name): Doc fix.
10169
10170 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
10171
10172 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
10173
10174 2009-03-19 Kenichi Handa <handa@m17n.org>
10175
10176 * charset.c (load_charset_map_from_file): When a mapfile can't be
10177 loaded, signal an error.
10178
10179 2009-03-18 Eli Zaretskii <eliz@gnu.org>
10180
10181 * dired.c (Ffile_attributes): Make sure UID and GID are always
10182 positive, even if the value is too large for a positive EMACS_INT.
10183 Doc fix.
10184
10185 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
10186
10187 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10188
10189 * xmenu.c (xdialog_show): Move Fredisplay call ...
10190 (Fx_popup_dialog): ... here.
10191
10192 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
10193
10194 * dired.c (file_name_completion): Disable the first optimization just
10195 installed, since it is not implemented correctly.
10196
10197 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
10198
10199 * dired.c (file_name_completion): Check completion-ignored-extensions
10200 only if the entry can affect bestmatch.
10201 Stop the search early, as Ftry_completion already does.
10202
10203 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
10204
10205 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
10206
10207 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
10208
10209 * keyboard.c (parse_menu_item): Don't display remappings as menu
10210 equivalent bindings (Bug#788).
10211
10212 2009-03-15 Jason Rumney <jasonr@gnu.org>
10213
10214 * w32term.h (WM_EMACS_PAINT): New message.
10215 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
10216 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
10217 before passing to lisp thread. (Bug#950)
10218
10219 2009-03-14 David Reitter <david.reitter@gmail.com>
10220
10221 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
10222 variable as it was never reset.
10223 (ns_term_init): Remove initialization of Lisp-settable defaults
10224 and ns_expand_space.
10225 (-setPanelFromDefaultValues): Remove ns_expand_space.
10226 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
10227 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
10228 i.e. no additional spacing, similar to Carbon port.
10229
10230 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
10231 * nsfns.m (ns-popup-prefs-panel): Remove.
10232
10233 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
10234
10235 * sound.c (alsa_configure): Remove call to deprecated
10236 snd_pcm_sw_params_set_xfer_align.
10237
10238 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
10239
10240 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
10241 after clicking in a detached tool bar.
10242 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
10243
10244 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
10245
10246 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
10247 int/Lisp_Object mixup).
10248
10249 2009-03-13 Kenichi Handa <handa@m17n.org>
10250
10251 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
10252 Handle NAME nil and t correctly. Callers changed.
10253 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
10254 (set_fontset_font): Change ARG to a vector. Handle range_list in
10255 ARG correctly.
10256 (Fset_fontset_font): Fix the case that TARGET is both a script
10257 name and charset name. Adjust the arg to set_fontset_font for
10258 the above change.
10259 (fontset_from_font): Fix previous change.
10260 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
10261 entry. If FONTSET is the default fontset, don't set the extra
10262 slot of the returning char-table.
10263
10264 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
10265
10266 * nsfns.m (Fx_close_connection): Doc fix.
10267 (Fns_do_applescript): Reflow docstring.
10268 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
10269 (Fx_display_pixel_width, Fx_display_pixel_height)
10270 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
10271 Fix typos in docstrings.
10272 (Fns_set_alpha): Fix typos in error messages.
10273
10274 2009-03-12 David Reitter <david.reitter@gmail.com>
10275
10276 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
10277 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
10278 were used for such events.
10279
10280 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
10281 (toggleToolbar, performDragOperation, runHelp): Use it.
10282
10283 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
10284 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
10285
10286 2009-03-11 Kenichi Handa <handa@m17n.org>
10287
10288 * font.h (font_open_by_spec): Extern it.
10289
10290 * font.c (font_open_by_spec): New function.
10291 (font_open_by_name): Use font_open_by_spec.
10292
10293 * frame.c (x_set_font): When ARG is a font-object, don't alter the
10294 fontset of the frame.
10295
10296 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
10297 modify the default font of frames that use this fontset.
10298 (num_auto_fontsets): New variable.
10299 (fontset_from_font): Use num_auto_fontsets to decide a fontset
10300 name. Be sure to set FONTSET_ASCII to the correct font name.
10301 (update_auto_fontset_alist): New function.
10302
10303 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
10304
10305 * makefile.w32-in: Update dependencies.
10306
10307 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
10308
10309 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
10310
10311 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
10312
10313 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
10314
10315 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
10316
10317 * lread.c (Feval_buffer): Doc fix.
10318
10319 2009-03-09 Kenichi Handa <handa@m17n.org>
10320
10321 * charset.c (Qfile_name_handler_alist): Extern it.
10322 (load_charset_map_from_file): Temporarily bind
10323 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
10324
10325 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
10326
10327 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
10328 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
10329
10330 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
10331
10332 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
10333 (x_set_window_size): Change back to calculated method of setting
10334 toolbar height under Cocoa. (Bug#2546)
10335 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
10336 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
10337
10338 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
10339
10340 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
10341 accelerator in parens under GNUstep.
10342
10343 2009-03-06 Kenichi Handa <handa@m17n.org>
10344
10345 These changes are to detect incorrect composition sequence without
10346 looking ahead the source. (Bug#2370)
10347
10348 * coding.h: Include "composite.h".
10349 (enum compisition_state): New enum.
10350 (struct compisition_status): New struct.
10351 (struct iso_2022_spec): New member cmp_status.
10352 (struct emacs_mule_spec): New struct.
10353 (struct coding_system): New members ctext_extended_segment_len and
10354 embedded_utf_8. Change the union member
10355 spec.emacs_mule_full_support to spec.emacs_mule.
10356
10357 * coding.c (CODING_ISO_CMP_STATUS): New macro.
10358 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
10359 (MAX_ANNOTATION_LENGTH): Define to 5.
10360 (ADD_COMPOSITION_DATA): New arg nbytes.
10361 (emacs_mule_char): New arg cmp_status.
10362 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
10363 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
10364 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
10365 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
10366 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
10367 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
10368 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
10369 (EMACS_MULE_COMPOSITION_END): New macro.
10370 (emacs_mule_finish_composition): New function.
10371 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
10372 (decode_coding_emacs_mule): Avoid long looking ahead while
10373 handling composition.
10374 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
10375 (ENCODE_COMPOSITION_RULE): New macro.
10376 (finish_composition): New function.
10377 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
10378 (DECODE_COMPOSITION_START): New implementation.
10379 (DECODE_COMPOSITION_END): Likewise.
10380 (STORE_COMPOSITION_RULE): New macro.
10381 (decode_coding_iso_2022): Avoid long looking ahead while handling
10382 composition, CTEXT extended segment, and embedded UTF-8.
10383 (setup_coding_system): For a coding of type iso-2022, reset
10384 CODING_ISO_EXTSEGMENT_LEN (coding) and
10385 CODING_ISO_EMBEDDED_UTF_8 (coding).
10386 (get_translation): Delete arguments last_block, from_nchars,
10387 to_nchars. Callers changed.
10388 (produce_chars): Don't modify charbuf. Adjusted for the change of
10389 get_translation.
10390 (produce_composition): Adjust for the new annotation sequence.
10391 (handle_composition_annotation): Likewise.
10392 (consume_chars): Adjust for the change of get_translation.
10393
10394 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
10395
10396 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
10397
10398 2009-03-05 Kenichi Handa <handa@m17n.org>
10399
10400 * font.c (font_select_entity): New function.
10401 (font_find_for_lface): Use font_select_entity to select a font.
10402
10403 * fontset.c (fontset_find_font): If a font found without
10404 restricting to the characters C doesn't support C, try to find a
10405 font with C restriction.
10406
10407 2009-03-04 Nikolaj Schumacher <me@nschum.de>
10408
10409 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
10410
10411 2009-03-04 Jason Rumney <jasonr@gnu.org>
10412
10413 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
10414 characters that have already been read. (Bug#2569)
10415
10416 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
10417 Log an error message if check_image_size failed.
10418 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
10419 (gs_load): Mention max-image-size in size error message. (Bug#2560)
10420
10421 2009-03-02 Eli Zaretskii <eliz@gnu.org>
10422
10423 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
10424 when decoding process output.
10425
10426 2009-03-01 Richard M Stallman <rms@gnu.org>
10427
10428 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
10429
10430 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
10431
10432 2009-02-28 Eli Zaretskii <eliz@gnu.org>
10433
10434 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
10435 (decode_coding_emacs_mule, decode_coding_iso_2022)
10436 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
10437 (decode_coding_raw_text, decode_coding_charset)
10438 (setup_coding_system, decode_eol, decode_coding, consume_chars):
10439 Honor inhibit-eol-conversion. (Bug #2186)
10440
10441 2009-02-28 Jason Rumney <jasonr@gnu.org>
10442
10443 * coding.c (detect_coding_charset): If not checking latin extra,
10444 fail on characters between 0x80 and 0xA0. (Bug#2354)
10445
10446 2009-02-28 Eli Zaretskii <eliz@gnu.org>
10447
10448 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
10449 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
10450
10451 2009-02-27 Glenn Morris <rgm@gnu.org>
10452
10453 * callint.c (Finteractive): Doc fix.
10454
10455 2009-02-27 Kenichi Handa <handa@m17n.org>
10456
10457 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
10458
10459 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
10460
10461 * font.c (font_style_to_value): Set value for unknown symbols to
10462 100 instead of 255.
10463 (weight_table, slant_table, width_table): Treat "unspecified" as
10464 the default value.
10465
10466 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
10467
10468 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
10469
10470 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
10471
10472 * lread.c (Fload): Stop checking Vloads_in_progress and signal
10473 error as soon as a recursive load is detected.
10474
10475 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
10476
10477 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
10478 before caching.
10479
10480 2009-02-24 Kenichi Handa <handa@m17n.org>
10481
10482 * fontset.c (fontset_find_font): Fix the condition for checking
10483 unavailable font.
10484
10485 2009-02-24 Glenn Morris <rgm@gnu.org>
10486
10487 * xfaces.c (Finternal_set_font_selection_order): Remove leading
10488 whitespace that confuses documentation.
10489
10490 2009-02-23 Miles Bader <miles@gnu.org>
10491
10492 * process.c (Flist_system_processes, Fprocess_attributes)
10493 (syms_of_process): Rename `system-process-attributes' to
10494 `process-attributes'.
10495
10496 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
10497
10498 * coding.h (struct coding_system): Make safe_charsets a pointer to
10499 unsigned char.
10500 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
10501 being 255.
10502 (SAFE_CHARSET_P): Likewise.
10503 (setup_iso_safe_charsets): Properly setup safe_charsets.
10504 (Fdefine_coding_system_internal): Likewise.
10505 (setup_coding_system): Likewise. Remove unneeded casts.
10506 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
10507 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
10508 unneeded casts.
10509
10510 * insdel.c (del_range_2): Don't modify gap contents when called
10511 from decode_coding_object. (Bug#1809)
10512
10513 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
10514
10515 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
10516 Qfont_object.
10517 (Ftype_of): Recognize font objects.
10518
10519 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
10520
10521 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
10522 moved to data.c.
10523
10524 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
10525
10526 * nsterm.m (x_make_frame_invisible): Unset async_visible,
10527 async_iconified. Based on a patch by Christian Lynbech
10528 <christian.lynbech@tieto.com>.
10529 (EmacsView-windowDidMiniaturize:): Unset async_visible.
10530
10531 2009-02-20 Glenn Morris <rgm@gnu.org>
10532
10533 * syntax.c (Fskip_chars_forward): Fix doc typo.
10534
10535 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
10536
10537 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
10538
10539 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
10540
10541 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
10542
10543 2009-02-19 Kenichi Handa <handa@m17n.org>
10544
10545 * coding.c (detect_coding): Preserve coding->mode.
10546 Don't overflow coding->carryover. (Bug#2370)
10547
10548 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
10549
10550 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
10551
10552 2009-02-18 Kenichi Handa <handa@m17n.org>
10553
10554 * font.c (font_check_otf_features): Fix handling of `nil' element.
10555 (Ffont_spec): Describe :lang and :otf in the docstring.
10556
10557 2009-02-16 Andreas Schwab <schwab@suse.de>
10558
10559 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
10560 string.
10561
10562 2009-02-16 Kenichi Handa <handa@m17n.org>
10563
10564 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
10565 (Bug#1723)
10566
10567 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
10568
10569 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
10570
10571 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
10572 (handle_line_prefix): Suppress wrapping of wrap prefixes.
10573
10574 2009-02-14 Eli Zaretskii <eliz@gnu.org>
10575
10576 * msdos.c (MAX_SCREEN_BUF): New macro.
10577 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
10578 Encode the entire run of glyphs sharing the same face, instead of
10579 doing that one glyph at a time (fixes a bug with displaying
10580 double-size characters).
10581
10582 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
10583
10584 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
10585
10586 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
10587 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
10588 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
10589
10590 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
10591 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
10592
10593 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
10594
10595 * keyboard.c (adjust_point_for_property): Allow stopping between two
10596 invisible areas.
10597
10598 2009-02-12 Jason Rumney <jasonr@gnu.org>
10599
10600 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
10601 (add_font_entity_to_list): Call check_face_name even when family
10602 is unspecified.
10603
10604 * w32term.c (x_display_pixel_height, x_display_pixel_width):
10605 Release DC when finished. Use NULL window to refer to desktop.
10606 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
10607
10608 * w32font.c (add_font_entity_to_list): Fix check for substituted
10609 raster fonts. (Bug#2219)
10610
10611 2009-02-12 Kenichi Handa <handa@m17n.org>
10612
10613 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
10614 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
10615 (autocmp_chars): Use fast_looking_at. Don't compose more
10616 characters than MAX_COMPOSITION_COMPONENTS.
10617 (find_automatic_composition): While looking forward and backward,
10618 check static composition. Fix where to stop looking forward.
10619 (composition_adjust_point): Fix checking of static composition.
10620 (Fcomposition_get_gstring): Pay attention to
10621 MAX_COMPOSITION_COMPONENTS.
10622
10623 * lisp.h (fast_looking_at): Extern it.
10624
10625 * search.c (fast_looking_at): New function.
10626
10627 * term.c (encode_terminal_code): Adjust for the change of
10628 <struct glyph>.u.cmp.to.
10629 (append_composite_glyph): Likewise.
10630
10631 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
10632 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
10633 composition.
10634 (append_composite_glyph): Adjust for the change of
10635 <strcut glyph>.u.cmp.to.
10636
10637 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
10638
10639 * casetab.c (init_casetab_once):
10640 * coding.c (ALLOC_CONVERSION_WORK_AREA):
10641 * font.c (font_update_lface):
10642 * fontset.c (Fnew_fontset):
10643 * ftfont.c (ftfont_drive_otf):
10644 * xfont.c (xfont_open):
10645 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
10646
10647 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
10648
10649 * fileio.c (Fwrite_region): !NILP -> CONSP.
10650
10651 2009-02-10 Andreas Schwab <schwab@suse.de>
10652
10653 * process.c (send_process): Properly relocate pointer into data
10654 when using encoded data. (Bug#2272)
10655
10656 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
10657
10658 * coding.c (detect_coding_charset): Fix previous change.
10659
10660 2009-02-08 Jason Rumney <jasonr@gnu.org>
10661
10662 * w32fns.c (w32_hide_hourglass): Handle case where frame
10663 disappeared while hourglass was displayed. (Bug #2193)
10664
10665 2009-02-07 Andreas Schwab <schwab@suse.de>
10666
10667 * unexelf.c (unexec): Fix error message.
10668
10669 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
10670
10671 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
10672 when modal window is active. (Bug #2152)
10673 (applicationShouldTerminate:): Remove now-unneeded while loop
10674 around NSRunAlertPanel.
10675
10676 * nsmenu.m (popupSession): New file-global variable.
10677 (pop_down_menu): End the popupSession before closing dialog.
10678 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
10679 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
10680 don't query NSApp for events (just sleep instead).
10681
10682 2009-02-07 Eli Zaretskii <eliz@gnu.org>
10683
10684 * coding.c (syms_of_coding) <translation-table-for-input>:
10685 Modify doc string to discourage use for character code unification.
10686
10687 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10688
10689 * atimer.c (run_timers): Update pending_atimers.
10690
10691 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
10692
10693 * image.c (svg_load_image): Fix last change.
10694
10695 * xfns.c (Fx_create_frame): Signal an error if no font is
10696 found (Bug#2147).
10697
10698 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
10699
10700 * character.c (syms_of_character) <script-representative-chars>:
10701 Fix typo in docstring.
10702
10703 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
10704
10705 * nsmenu.m (pop_down_menu): New function.
10706 (ns_popup_dialog): Call it on unwind.
10707 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
10708 call timer_check() (Bug#2154).
10709 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
10710 handling_signal is set.
10711 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
10712
10713 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
10714
10715 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
10716
10717 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
10718
10719 * keyboard.c (poll_for_input_1, handle_async_input):
10720 Set handling_signal under HAVE_NS.
10721
10722 2009-02-04 Glenn Morris <rgm@gnu.org>
10723
10724 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
10725
10726 2009-02-04 Kenichi Handa <handa@m17n.org>
10727
10728 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
10729
10730 * charset.c (Fchar_charset): New optional arg restriction.
10731
10732 * coding.h (coding_system_charset_list): Extern it.
10733
10734 * coding.c (coding_system_charset_list): New function.
10735
10736 * composite.c: Include coding.h and termhooks.h.
10737 (composition_gstring_p): Fix for the terminal case.
10738 (composition_gstring_width): Likewise.
10739 (fill_gstring_body): Likewise.
10740 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
10741 the frame.
10742 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
10743 is within a composition.
10744 (Fcomposition_get_gstring): Fix the terminal case.
10745
10746 * term.c (encode_terminal_code): Fix handling of composition.
10747 (produce_composite_glyph): For static composition, get pixel_width
10748 from struct composition.
10749
10750 2009-02-02 Andreas Schwab <schwab@suse.de>
10751
10752 * unexelf.c (unexec): Handle unaligned bss offset.
10753
10754 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
10755
10756 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
10757 XT,w32read_socket changes to ns_read_socket.
10758
10759 * keyboard.c (handle_interrupt): Don't call
10760 quit_throw_to_read_char() under NS.
10761
10762 * blockinput.h: Remove NS-specific code.
10763
10764 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
10765
10766 * dispnew.c (window_change_signal): Don't try to get the size of a
10767 suspended tty frame.
10768 * term.c (Fresume_tty): Resize if the size has changed while the
10769 tty was suspended.
10770
10771 * alloc.c (mark_stack): Properly conditionalize previous change.
10772
10773 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
10774
10775 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
10776 * w32term.c (w32_read_socket) [SYNC_INPUT]:
10777 Remove; this code is not used on Windows.
10778
10779 2009-01-30 Eli Zaretskii <eliz@gnu.org>
10780
10781 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
10782 EOLs that also has stray ^M characters.
10783
10784 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
10785
10786 * atimer.c (run_timers, alarm_signal_handler):
10787 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
10788 * w32inevt.c (w32_console_read_socket):
10789 * w32term.c (w32_read_socket):
10790 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
10791
10792 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
10793
10794 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
10795 Initialize it as a relative filename pattern.
10796 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
10797 (Fcall_process_region): Simplify temp file creation using
10798 temporary-file-directory.
10799
10800 2009-01-29 Eli Zaretskii <eliz@gnu.org>
10801
10802 * msdos.c: Rename pending_signals to msdos_pending_signals.
10803 (sig_suspender, sigprocmask): Adjust.
10804
10805 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
10806
10807 * keyboard.c (pending_signals): New var.
10808 (poll_for_input, input_available_signal, init_keyboard): Set it.
10809 (process_pending_signals): New function.
10810
10811 * lisp.h (QUIT): Check pending_signals instead of
10812 interrupt_input_pending. Use process_pending_signals.
10813
10814 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
10815
10816 * process.c (wait_reading_process_output): Use process_pending_signals.
10817
10818 * sysdep.c (emacs_write): Use process_pending_signals.
10819
10820 * xterm.c (XTread_socket): Update pending_signals.
10821
10822 * w32term.c (w32_read_socket): Update pending_signals.
10823
10824 * w32inevt.c (w32_console_read_socket): Update pending_signals.
10825
10826 2009-01-29 Kenichi Handa <handa@m17n.org>
10827
10828 * xftfont.c (xftfont_has_char): New function.
10829 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
10830
10831 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
10832
10833 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
10834 under GNUstep.
10835 (ns_query_color): New declaration.
10836
10837 * nsterm.m (ns_confirm_quit): New variable.
10838 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
10839 (EmacsApp-applicationShouldTerminate:): Use it.
10840 (EmacsPrefsController): Let user set it.
10841 (ns_query_color): New function.
10842 (ns_defined_color): Use it.
10843 (ns_initialize): Drop.
10844 (ns_term_init): Add two lines from ns_initialize(), and set
10845 input_interrupt_mode to nil.
10846
10847 * image.c (svg_load_image): Don't right-shift background RGB when
10848 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
10849
10850 2009-01-28 Kenichi Handa <handa@m17n.org>
10851
10852 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
10853 (fontset_get_font_group): Remember that no font-group is specified
10854 for C.
10855
10856 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
10857
10858 * fns.c (concat): Check for string overflow (bug#1787).
10859
10860 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
10861 Quadruple undo limits (bug#1501).
10862
10863 2009-01-27 Kenichi Handa <handa@m17n.org>
10864
10865 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
10866 directly use GT_Get_Char_index.
10867
10868 * xftfont.c (struct xftfont_info): New member `index'.
10869
10870 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
10871 (Ffontset_font): Adjust for the change of fontset entry.
10872
10873 2009-01-26 Kenichi Handa <handa@m17n.org>
10874
10875 * fontset.c (fontset_find_font): Fix handling of non-cons return
10876 value of fontset_get_font_group.
10877 (fontset_font): Revert last change.
10878
10879 2009-01-26 Jason Rumney <jasonr@gnu.org>
10880
10881 * w32font.c (w32font_list_internal): Return quickly if registry is
10882 unknown. Simplify final return.
10883 (add_font_entity_to_list): Break complex logic down into more
10884 manageable chunks. Move unknown registry check to
10885 w32font_list_internal.
10886
10887 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
10888
10889 Changes to remove Feval calls from GUI under NS.
10890
10891 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
10892 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
10893 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
10894
10895 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
10896 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
10897 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
10898 instead of NON_ASCII_KEYSTROKE_EVENT.
10899 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
10900 (EmacsApp-applicationShouldTerminate:): Query user.
10901 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
10902 instead of Feval.
10903
10904 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
10905
10906 * keyboard.c (kbd_buffer_get_event): Check for it.
10907 (keys_of_keyboard): Define lispy keys for
10908 ns-put/unput-working-text.
10909
10910 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
10911 versions.
10912 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
10913
10914 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
10915
10916 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
10917 setting current_buffer directly. (Bug#2044)
10918
10919 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
10920
10921 * fontset.c (fontset_font): If we know there is no font, don't do
10922 any work. (Bug#1952, bug#1990).
10923
10924 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
10925
10926 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
10927
10928 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
10929 (ns_no_defaults): New declaration.
10930 (main): Use it.
10931
10932 * nsterm.h (ns_no_defaults): New declaration.
10933
10934 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
10935
10936 * nsterm.m (ns_no_defaults): New variable.
10937 (ns_initialize): Don't read defaults when ns_no_defaults.
10938 (EmacsView-readSelectionFromPasteboard:)
10939 (writeSelectionToPasteboard:types:): New stubbed-out methods for
10940 NSServicesRequests protocol. (Bug#1435)
10941 (ns_dumpglyphs_stretch): New function.
10942 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
10943 of 2008-11-15 to other terms. (Bug#615)
10944
10945 * nsimage.m (setPixmapData:): Set to ignore image DPI.
10946
10947 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
10948
10949 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
10950 call for Sparc64.
10951
10952 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
10953
10954 * nsfns.m:
10955 * nsgui.h:
10956 * nsmenu.m:
10957 * nsselect.m:
10958 * nsterm.h:
10959 * nsterm.m: Remove '23' comments that indicated code added during
10960 update from emacs-20 -> emacs-23.
10961
10962 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
10963
10964 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
10965 ns_alternate_modifier. (Bug#1217)
10966
10967 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
10968 Display all shortcuts, including those w/o super modifier.
10969
10970 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
10971
10972 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
10973
10974 * fileio.c (Vwrite_region_post_annotation_function)
10975 (Vwrite_region_annotation_buffers): New vars.
10976 (build_annotations_unwind): Just reset
10977 Vwrite_region_annotation_buffers.
10978 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
10979 Call write-region-post-annotation-function.
10980 (build_annotations): Add to Vwrite_region_annotation_buffers if
10981 buffer changes.
10982
10983 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
10984
10985 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
10986 Tiger.
10987 * nsfns.m (ns_do_applescript):
10988 Conditionalize typeUTF16ExternalRepresentation on Tiger.
10989
10990 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
10991
10992 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
10993
10994 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
10995
10996 * nsmenu.m (NSMENUPROFILE): Change #if style.
10997
10998 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
10999
11000 * nsterm.m (x_set_frame_alpha): Add prototype.
11001 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
11002 handle Ctrl-tab. (Bug#1841)
11003 (ns_get_color): Use unsigned long long for scanned hex string value.
11004 (ns_term_shutdown): Abort on non SIGTERM signals.
11005 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
11006 (EmacsPrefsController-setPanelFromDefaultValues): New function.
11007 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
11008 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
11009 (ns_defined_color): Fix settings of the XColor variable fields:
11010 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
11011
11012 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
11013 DPI. (Bug#1316)
11014 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
11015 values in onTiger section.
11016
11017 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
11018
11019 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
11020 Check return value of font_spec_from_name.
11021 (Fx_list_fonts): Doc fix. (Bug#1951)
11022
11023 * font.c (font_spec_from_name): Return Qnil if font name could not
11024 be parsed.
11025 (font_parse_name): Treat a `?' character as part of an XLFD.
11026
11027 * fns.c (Fsubstring): Doc fix.
11028
11029 2009-01-19 Kenichi Handa <handa@m17n.org>
11030
11031 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
11032 (ftfont_list): Likewise.
11033
11034 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
11035
11036 * dbusbind.c (Fdbus_register_signal):
11037 * process.c (conv_sockaddr_to_lisp):
11038 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
11039
11040 * callproc.c (Fgetenv_internal): Doc fix.
11041
11042 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
11043
11044 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
11045 it is not even used.
11046
11047 2009-01-16 Glenn Morris <rgm@gnu.org>
11048
11049 * font.c (Ffont_variation_glyphs): Silence compiler.
11050
11051 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
11052
11053 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
11054 Reported by David Robinow <drobinow@gmail.com>.
11055
11056 2009-01-15 Kenichi Handa <handa@m17n.org>
11057
11058 * coding.c (detect_coding_system): Fix handling of null_byte_found.
11059
11060 2009-01-14 Jason Rumney <jasonr@gnu.org>
11061
11062 * frame.c (x_set_font): Always store a font to the font parameter,
11063 never a fontset. (Bug#1562)
11064
11065 2009-01-14 Kenichi Handa <handa@m17n.org>
11066
11067 * coding.c (TWO_MORE_BYTES): New macro.
11068 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
11069
11070 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
11071
11072 * font.c (font_clear_prop): If clearing the family, clear the font
11073 width index too.
11074
11075 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
11076
11077 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
11078
11079 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
11080 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
11081 functions, use sizeof.
11082
11083 2009-01-12 Martin Rudalics <rudalics@gmx.at>
11084
11085 * keyboard.c (read_char): Fix case where last_nonmenu_event
11086 returned a bad value with submenus. (Bug#447)
11087
11088 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
11089
11090 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
11091 family, clear the font width index too.
11092
11093 2009-01-11 Jason Rumney <jasonr@gnu.org>
11094
11095 * keyboard.c (cmd_error_internal): Exit when errors occur before
11096 frame creation and not in daemon mode. (Bug#1836)
11097
11098 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
11099
11100 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
11101 of a display vector, backtrack.
11102 (try_window_reusing_current_matrix): Check glyph type before
11103 referencing charpos member.
11104
11105 2009-01-10 Eli Zaretskii <eliz@gnu.org>
11106
11107 Fix Bug #876:
11108
11109 * coding.c (inhibit_null_byte_detection): New variable.
11110 (detect_coding, detect_coding_system): Don't pay attention to null
11111 bytes if inhibit_null_byte_detection is non-zero.
11112 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
11113 <inhibit-iso-escape-detection>: Doc fix.
11114
11115 2009-01-09 Jason Rumney <jasonr@gnu.org>
11116
11117 * w32font.c (add_font_entity_to_list): Don't report unknown
11118 Windows charset as any unrecognized registry. (Bug#1548)
11119 Only report Unicode Plane 2 fonts as unicode-sip.
11120
11121 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
11122
11123 * xfaces.c (Fx_font_family_list): Delete function.
11124 Move compatibility version to faces.el.
11125
11126 * font.c (Ffont_family_list): Return a list of strings, not symbols.
11127
11128 2009-01-09 Martin Rudalics <rudalics@gmx.at>
11129
11130 * frame.c (x_set_frame_parameters): Remember requested value for
11131 fullscreen before it's reset by the parameter handler.
11132
11133 2009-01-09 Glenn Morris <rgm@gnu.org>
11134
11135 * keyboard.c (last_command_char): For clarity, rename to...
11136 (last_command_event): ... and update all users.
11137 (last_input_char): For clarity, rename to...
11138 (last_input_event): ... and update all users.
11139 (last-command-char, last-input-char): Move to subr.el as aliases.
11140 * cmds.c, commands.h: Update for last_command_char rename.
11141
11142 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
11143
11144 * font.c (font_open_for_lface): Handle unspecified height attribute.
11145
11146 2009-01-08 Jason Rumney <jasonr@gnu.org>
11147
11148 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
11149 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
11150 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
11151 Don't declare.
11152 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
11153 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
11154
11155 2009-01-07 Kenichi Handa <handa@m17n.org>
11156
11157 * fileio.c (Finsert_file_contents): In the case of replace,
11158 remember the coding system used for decoding in
11159 coding_system (Bug#1039).
11160
11161 * coding.c (decode_coding_utf_8): Check byte_after_cr before
11162 breaking the loop. (Bug#870)
11163 (decode_coding_utf_16, decode_coding_emacs_mule)
11164 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
11165 (decode_coding_charset): Likewise.
11166
11167 2009-01-05 Martin Rudalics <rudalics@gmx.at>
11168
11169 * frame.c (x_set_frame_parameters): Make sure height (width) get
11170 applied when fullwidth (fullheight) is set. (Bug#1522)
11171
11172 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
11173
11174 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
11175 (utc_base): Declare as ULONGLONG, not long double.
11176 (convert_time_raw): Delete.
11177 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
11178 (initialize_utc_base): New function.
11179 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
11180 (convert_from_time_t): Use initialize_utc_base; compute result with
11181 64-bit arithmetic.
11182 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
11183
11184 2009-01-03 Eli Zaretskii <eliz@gnu.org>
11185
11186 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
11187 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
11188 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
11189 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
11190 [!subprocesses]: Define.
11191 (syms_of_process) [!subprocesses]: Intern and staticpro them.
11192 (Flist_system_processes, Fsystem_process_attributes)
11193 [!subprocesses]: Call list_system_processes and
11194 system_process_attributes instead of returning Qnil.
11195
11196 * dosfns.c (system_process_attributes, list_system_processes):
11197 New functions.
11198
11199 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
11200
11201 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
11202 Don't use the default (no-op) implementation.
11203
11204 2009-01-03 Jason Rumney <jasonr@gnu.org>
11205
11206 * keyboard.c (parse_modifiers_uncached): Wheel events are
11207 clicks (bug#687).
11208
11209 * w32term.c (x_query_colors, x_query_color): New functions.
11210
11211 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
11212 (svg_load_image): Cast returned pointers from dynamically loaded
11213 functions. Eliminate W32 specific code.
11214
11215 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
11216
11217 * nsfns.m (x_set_foreground_color, x_set_background_color)
11218 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
11219 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
11220 x_ prefix instead of ns_. Update references.
11221 (syms_of_nsfns): Add a FIXME comment.
11222
11223 * nsterm.m (x_set_cursor_type): New prototype.
11224 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
11225
11226 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
11227 for Solaris instead of incorrectly providing Qutime and Qcutime.
11228
11229 2009-01-02 Eli Zaretskii <eliz@gnu.org>
11230
11231 * w32.c (process_times): Compute sum of utime and stime.
11232 (system_process_attributes): Add Qtime to the alist.
11233
11234 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
11235 and add them to the alist.
11236
11237 * process.c (top level) <Qtime, Qctime>: New variables.
11238 (syms_of_process): staticpro them.
11239 (Fsystem_process_attributes): Add their documentation to the doc
11240 string.
11241
11242 * process.h: Declare Qtime and Qctime.
11243
11244 2009-01-02 Jason Rumney <jasonr@gnu.org>
11245
11246 * image.c (Qgobject): New symbol.
11247 (syms_of_image): Initialize it.
11248 (init_svg_functions): Load some functions from gobject library.
11249
11250 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
11251
11252 * frame.c (make_terminal_frame): Remove redundant code and useless
11253 block.
11254
11255 2009-01-01 Andreas Schwab <schwab@suse.de>
11256
11257 * process.c (conv_sockaddr_to_lisp): Add workaround for
11258 getsockname bug on BSD.
11259
11260 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
11261
11262 * xfns.c (x_create_tip_frame): Set border width of the X window.
11263
11264 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
11265
11266 2009-01-01 Jason Rumney <jasonr@gnu.org>
11267
11268 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
11269 Don't block input, as per earlier xterm.c changes.
11270
11271 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
11272
11273 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
11274 (ns_appkit_version_int): New function.
11275 (x-server-version): Use ns_appkit_version_int and follow 21+
11276 convention of returning 3 integers.
11277
11278 2008-12-30 Kenichi Handa <handa@m17n.org>
11279
11280 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
11281 (CHAR_SURROGATE_PAIR_P): New macro.
11282
11283 * font.h (struct font_driver): New member get_variation_glyphs.
11284
11285 * font.c (font_range): Don't require a font for a variation selector.
11286 (Ffont_variation_glyphs): New function.
11287 (syms_of_font): Defsubr it.
11288
11289 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
11290 ftfont_variation_glyphs.
11291 (setup_otf_gstring): New function.
11292 (ftfont_drive_otf): Use it.
11293 (ftfont_shape_by_flt): Handle variation selector.
11294 (ftfont_variation_glyphs): New function.
11295
11296 2008-12-30 Martin Rudalics <rudalics@gmx.at>
11297
11298 * frame.c (Vemacs_iconified): Remove.
11299
11300 2008-12-30 Jason Rumney <jasonr@gnu.org>
11301
11302 * frame.c (store_frame_param, x_get_arg): Enable newer code on
11303 WINDOWSNT too, as related changes have already been synced. (Bug#117)
11304
11305 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
11306
11307 * indent.c (Fvertical_motion): Don't advance iterator if we have
11308 reseated to the desired position.
11309
11310 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
11311 checking for pos match.
11312
11313 2008-12-30 Kenichi Handa <handa@m17n.org>
11314
11315 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
11316 just get the low 8-bit of the code.
11317
11318 * font.c (font_intern_prop): Validate str as multibyte.
11319
11320 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
11321
11322 * dispextern.h (struct face): Move lface and hash from the middle
11323 of bitfields.
11324
11325 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
11326
11327 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
11328
11329 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
11330 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
11331 instead of intervals.h.
11332
11333 2008-12-26 Andreas Schwab <schwab@suse.de>
11334
11335 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
11336 cons.
11337
11338 2008-12-26 Martin Rudalics <rudalics@gmx.at>
11339
11340 * textprop.c (Qminibuffer_prompt): New variable.
11341 (syms_of_textprop): Initialize it.
11342 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
11343 in minibuffer-prompt face. (Bug#1662)
11344
11345 2008-12-25 Jason Rumney <jasonr@gnu.org>
11346
11347 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
11348
11349 2008-12-24 Jason Rumney <jasonr@gnu.org>
11350
11351 * ralloc.c (r_alloc_reset_variable): New function.
11352
11353 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
11354 record of what points where. (Bug#716)
11355
11356 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
11357
11358 * minibuf.c (read_minibuf): Follow the non-interactive case when
11359 running as a daemon, before detaching.
11360
11361 2008-12-22 Andreas Schwab <schwab@suse.de>
11362
11363 * buffer.c (init_buffer): Use realloc instead of xrealloc.
11364 * gtkutil.c (free_widget_value): Use xfree instead of free.
11365
11366 2008-12-22 Martin Rudalics <rudalics@gmx.at>
11367
11368 * frame.c (delete_frame): New function derived from
11369 Fdelete_frame to handle Qnoelisp value for FORCE argument.
11370 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
11371 (Fdelete_frame): Call delete_frame. Remove line from doc-string
11372 saying that FORCE non-nil doesn't run `delete-frame-functions'.
11373 * frame.h: Extern delete_frame.
11374 * window.c (window_loop):
11375 * terminal.c (delete_terminal):
11376 * xterm.c (x_connection_closed):
11377 * xfns.c (Fx_hide_tip):
11378 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
11379
11380 2008-12-21 Jason Rumney <jasonr@gnu.org>
11381
11382 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
11383 when character maps to .notdef character.
11384
11385 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
11386
11387 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
11388
11389 2008-12-20 Jason Rumney <jasonr@gnu.org>
11390
11391 * frame.c (Fmake_terminal_frame): Raise an error when called from
11392 a graphical frame on Windows. (Bug#1325)
11393
11394 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
11395
11396 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
11397
11398 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
11399
11400 * minibuf.c (Fread_buffer): Doc fix.
11401
11402 2008-12-20 Jason Rumney <jasonr@gnu.org>
11403
11404 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
11405 server name in UNC paths. (Bug#719)
11406
11407 * coding.c (decode_coding): Clear chars_at_source flag when using
11408 charbuf. (Bug#1035)
11409
11410 2008-12-19 Daniel Engeler <engeler@gmail.com>
11411
11412 * sysdep.c (serial_configure): Fix typo.
11413
11414 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
11415
11416 * sysdep.c: Include alloca.h.
11417 (system_process_attributes): Add implementation for Solaris.
11418
11419 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
11420
11421 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
11422
11423 Reorganize implementation of Flist_system_processes and
11424 Fsystem_process_attributes. No functional changes.
11425 * process.c: Don't #include pwd.h, grp.h and limits.h.
11426 (Flist_system_processes): Just call list_system_processes.
11427 (Fsystem_process_attributes): Just call system_process_attributes.
11428 (procfs_list_system_processes, time_from_jiffies)
11429 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
11430 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
11431
11432 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
11433 (list_system_processes): Rename from
11434 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
11435 Provide a do nothing implementation.
11436 (system_process_attributes): Rename from
11437 procfs_list_system_processes.
11438 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
11439 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
11440
11441 * w32.c (list_system_processes): Rename from
11442 w32_list_system_processes.
11443 (system_process_attributes): Rename from
11444 w32_system_process_attributes.
11445
11446 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
11447
11448 * process.h (w32_list_system_processes)
11449 (w32_system_process_attributes): Remove.
11450 (list_system_processes, system_process_attributes):
11451 New prototypes.
11452
11453 2008-12-19 Kenichi Handa <handa@m17n.org>
11454
11455 * xfont.c (xfont_decode_coding_xlfd): New function.
11456 (xfont_encode_coding_xlfd): New function.
11457 (xfont_list_pattern): Decode XLFD by iso-8859-1.
11458 (xfont_list): Decode and encode XLFD by iso-8859-1.
11459 (xfont_match): Likewise.
11460 (xfont_list_family): Likewise.
11461 (xfont_open): Likewise.
11462
11463 * ftfont.c (ftfont_open): Generate a multibyte string if given
11464 names are utf-8.
11465
11466 * xftfont.c (xftfont_open): Generate a multibyte string if given
11467 names are utf-8.
11468
11469 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
11470
11471 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
11472 changed.
11473 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
11474 clicked on a detached tool bar button.
11475
11476 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
11477
11478 * emacs.c (main): Print and error and exit when no data is read
11479 from the pipe.
11480
11481 2008-12-17 Jason Rumney <jasonr@gnu.org>
11482
11483 * w32font.c (w32font_has_char): Always return -1.
11484
11485 2008-12-16 Kenichi Handa <handa@m17n.org>
11486
11487 * font.c (font_open_entity): Fix previous change.
11488
11489 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
11490
11491 * process.c: Include <limits.h>.
11492
11493 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
11494
11495 * font.c (font_update_drivers): Fix mistake in reconstructing the
11496 driver list.
11497
11498 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
11499
11500 * font.c (font_clear_cache): Fix format of font cache data.
11501
11502 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
11503
11504 * xftfont.c (xftfont_open): Free Xft font pattern if
11505 XftFontOpenPattern fails.
11506
11507 * xterm.c (x_free_frame_resources): Remove extraneous call to
11508 free_frame_faces.
11509
11510 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
11511
11512 * xterm.c (x_delete_display): Move xim_close_dpy call to
11513 x_delete_terminal.
11514 (x_delete_terminal): Call xim_close_dpy.
11515
11516 2008-12-13 Jason Rumney <jasonr@gnu.org>
11517
11518 * w32font.c (intern_font_name): New function.
11519 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
11520 (w32font_open_internal, Fx_select_font): Decode font name.
11521 (fill_in_logfont, list_all_matching_fonts): Encode font name.
11522
11523 * w32font.h (intern_font_name): Declare new function.
11524
11525 * w32uniscribe.c (add_opentype_font_name_to_list):
11526 Use intern_font_name.
11527
11528 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
11529
11530 * frame.c (Fdelete_frame): Call free_font_driver_list.
11531
11532 * font.c (free_font_driver_list): Implement missing function.
11533
11534 * w32term.c (w32_term_init): Don't initialize the image cache
11535 here; it will be done in init_frame_faces.
11536
11537 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
11538 (struct x_display_info): Remove unused member null_pixel. New
11539 member xim_callback_data.
11540
11541 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
11542 (xim_initialize): Save pointer to callback function data.
11543 (xim_close_dpy): Free callback function data. Call XCloseIM,
11544 reverting 2008-11-04 change by David Smith.
11545 (x_term_init): Don't initialize the image cache here; it will be
11546 done in init_frame_faces. Remove ancient "null_pixel" cruft.
11547 (x_delete_display): Free x_dnd_atoms member.
11548
11549 2008-12-13 Kenichi Handa <handa@m17n.org>
11550
11551 * font.c (font_rescale_ratio): Moved from xfaces.c.
11552 Argument type changed. Handle a font-spec too.
11553 (font_score): Check Vface_font_rescale_alist.
11554 (font_open_entity): Likewise. (Bug#1547)
11555
11556 * xfaces.c (font_rescale_ratio): Moved to font.c.
11557
11558 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
11559
11560 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
11561
11562 2008-12-12 Jason Rumney <jasonr@gnu.org>
11563
11564 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
11565 Vwindow_system_version to the real w32 major version.
11566
11567 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
11568
11569 * term.c (init_tty): Move setting the terminal name before the
11570 potential user: maybe_fatal.
11571
11572 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
11573
11574 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
11575 all callers changed. Call free_frame_faces to free the face cache.
11576
11577 2008-12-11 Jason Rumney <jasonr@gnu.org>
11578
11579 * w32font.c (fill_in_logfont): Don't assume symbol script means
11580 SYMBOL_CHARSET. (Bug#547)
11581
11582 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
11583 size for surrogates. (Bug#1096, bug#872)
11584
11585 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
11586
11587 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
11588
11589 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
11590
11591 * process.c (Fsystem_process_attributes, syms_of_process):
11592 Fix typo in name of Ssystem_process_attributes.
11593 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
11594
11595 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
11596
11597 * syntax.c (Fmodify_syntax_entry): Doc fix.
11598
11599 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
11600
11601 * font.c (Ffont_spec): Move usage to end of docstring.
11602
11603 2008-12-10 Jason Rumney <jasonr@gnu.org>
11604
11605 * w32font.c (Qcham): New symbol.
11606 (font_supported_scripts): Add cham, and comments for other new
11607 scripts in bitfield from OpenType spec.
11608 (add_font_entity_to_list): Limit unicode-sip fonts to those that
11609 contain characters beyond the bmp.
11610
11611 2008-12-10 Kenichi Handa <handa@m17n.org>
11612
11613 * ftfont.c (fc_charset_table): Add "unicode-sip".
11614 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
11615 Qunicode_sip.
11616
11617 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
11618
11619 * coding.c (QCdefault_char): Rename from QCdefalut_char.
11620 (Fcoding_system_put): Use QCdefault_char.
11621 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
11622
11623 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
11624
11625 * xftfont.c (syms_of_xftfont): Fix typo.
11626
11627 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
11628
11629 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
11630
11631 * emacs.c (main): Close daemon_pipe on exec.
11632
11633 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
11634
11635 * termchar.h (struct tty): New members termcap_term_buffer and
11636 termcap_strings_buffer.
11637
11638 * term.c (encode_terminal_code): Free any previous memory blocks
11639 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
11640 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
11641 All callers changed.
11642 (init_tty): Store termcap data and string buffers in new struct
11643 tty members termcap_term_buffer and termcap_strings_buffer.
11644 (delete_tty): Free them.
11645 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
11646
11647 2008-12-07 Seiji Zenitani <zenitani@mac.com>
11648
11649 * nsfns.m (ns_set_background_color): Remove code duplication.
11650 It was a substitute for face-transparency on OS X 10.3.
11651
11652 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
11653
11654 * coding.c (make_conversion_work_buffer): Disable buffer
11655 modification hooks in the work buffer.
11656
11657 2008-12-05 Eli Zaretskii <eliz@gnu.org>
11658
11659 * process.c (procfs_system_process_attributes): If `nread' has a
11660 negative value, assign zero to it.
11661
11662 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
11663
11664 * eval.c (Vdebug_on_error): Doc fix.
11665
11666 2008-12-05 Kenichi Handa <handa@m17n.org>
11667
11668 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
11669 second character is a combining character.
11670
11671 2008-12-05 Eli Zaretskii <eliz@gnu.org>
11672
11673 * process.c (procfs_system_process_attributes): Don't use cmd,
11674 cmdsize, and q without initializing them first.
11675
11676 2008-12-04 Jason Rumney <jasonr@gnu.org>
11677
11678 * w32font.c (w32font_draw): Initialize orig_clip before getting
11679 it, and delete it when finished.
11680
11681 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
11682
11683 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
11684 case when running as a daemon before detaching.
11685
11686 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
11687
11688 * w32.c (init_environment): Don't unload library shell32.dll.
11689
11690 2008-12-03 Kenichi Handa <handa@m17n.org>
11691
11692 * font.c (font_at): Set `multibyte' at first.
11693
11694 * coding.c (decode_coding_charset): Check type of an element of
11695 vector VALIDS.
11696 (encode_coding_emacs_mule): Be sure to set `code'.
11697
11698 * fontset.c (face_for_char): Handle invalid charset property correctly.
11699 (font_for_char): Likewise.
11700
11701 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
11702
11703 * font.c (Fopen_font): Compute pixel size correctly.
11704 (font_update_lface): Handle fonts with corrupted size specs,
11705 i.e. non-int and non-float.
11706
11707 * ftfont.c (ftfont_match): Initialize entity variable.
11708 (ftfont_resolve_generic_family): Avoid using uninitialized var.
11709 (ftfont_list_family): Initialize list var earlier.
11710
11711 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
11712
11713 * xterm.c (x_draw_glyph_string): Fall back on
11714 underline_minimum_offset for underline position.
11715
11716 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
11717
11718 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
11719
11720 * character.c (c_string_width): Specify the type for LEN.
11721
11722 2008-12-03 Kenichi Handa <handa@m17n.org>
11723
11724 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
11725 (decode_coding_utf_8): Likewise.
11726 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
11727 (produce_chars): Initialize consumed_chars to 0.
11728
11729 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
11730
11731 * keyboard.c (make_lispy_position): Only use PT if the selected
11732 window is current.
11733
11734 2008-12-02 Andreas Schwab <schwab@suse.de>
11735
11736 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
11737
11738 * doprnt.c (doprnt1): Fix size of charbuf.
11739
11740 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
11741
11742 * keyboard.c (timer_check): Revert last change.
11743
11744 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
11745
11746 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
11747
11748 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
11749
11750 * makefile.w32-in: Update dependencies.
11751 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
11752
11753 2008-12-01 Andreas Schwab <schwab@suse.de>
11754
11755 * font.c (register_font_driver): Use xmalloc.
11756 (font_put_frame_data): Likewise.
11757
11758 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
11759
11760 * xfaces.c (realize_x_face): Make abort condition clearer.
11761
11762 * gtkutil.c (update_frame_tool_bar): Initialize variable.
11763
11764 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
11765
11766 * keyboard.c (timer_check): After a timer runs, ensure that the
11767 selected window's buffer is current.
11768
11769 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
11770
11771 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
11772 It was accidentally restored by the Unicode merge.
11773
11774 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
11775
11776 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
11777
11778 * w32proc.c: Include "coding.h".
11779 (Fw32_short_file_name): Encode filename passed to Windows API.
11780 (Fw32_long_file_name): Encode filename passed to Windows API and
11781 decode back the result. (Bug#1433)
11782
11783 2008-11-29 Kenichi Handa <handa@m17n.org>
11784
11785 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
11786 not before accessing it.
11787
11788 * charset.c (Fdefine_charset_internal): After calculating
11789 min_char, max_char, and fastmap, copy the charset structure again.
11790 (encode_char): Fix the previous change.
11791
11792 2008-11-28 Seiji Zenitani <zenitani@mac.com>
11793
11794 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
11795
11796 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
11797
11798 * nsterm.m (x_set_frame_alpha): New function.
11799
11800 2008-11-27 Eli Zaretskii <eliz@gnu.org>
11801
11802 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
11803
11804 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
11805
11806 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
11807 pointer to check_face_name.
11808
11809 2008-11-27 Kenichi Handa <handa@m17n.org>
11810
11811 * category.h (SET_CATEGORY_SET): Call set_category_set.
11812 (set_category_set): Extern it.
11813
11814 * category.c (hash_get_category_set): New function.
11815 (Fmodify_category_entry): Adjusted for the change of
11816 char_table_ref_and_range. Call hash_get_category_set to get a
11817 category set to store in the table.
11818
11819 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
11820 Funify_charset.
11821
11822 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
11823 (DECODE_CHAR): Check if the decoder vector is ready.
11824 (ENCODE_CHAR): Check if the encoder char-table is ready.
11825 (maybe_unify_char): Extern it.
11826
11827 * charset.c (Vchar_unified_charset_table): Delete it.
11828 (inhibit_load_charset_map): New variable.
11829 (temp_charset_work): New variable.
11830 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
11831 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
11832 New macros.
11833 (load_charset_map): Meaning of control_flag changed. If
11834 inhibit_load_charset_map is nonzero, setup a table in
11835 temp_charset_work.
11836 (load_charset): New argument control_flag.
11837 (map_charset_for_dump): New function.
11838 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
11839 map_charset_for_dump.
11840 (Fdefine_charset_internal): If the charset method is MAP, load
11841 mapping tables by calling load_charset.
11842 (Funify_charset): Don't load a mapping table but directly set
11843 Vchar_unify_table.
11844 (maybe_unify_char): New function.
11845 (decode_char): Don't handle the deleted method MAP_DEFERRED.
11846 Handle the case of inhibit_load_charset_map being nonzero.
11847 (encode_char): Don't handle the deleted method MAP_DEFERRED.
11848 Handle the case of inhibit_load_charset_map being nonzero.
11849 (Fclear_charset_maps): Just free temp_charset_work.
11850 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
11851 variable.
11852
11853 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
11854 change of char_table_ref_and_range.
11855 (char_table_ref_and_range): Change the meaning of argument FROM
11856 and TO. Now the caller must provide initial values for *FROM
11857 and *TO.
11858
11859 * fontset.c (fontset_add): Adjusted for the change of
11860 char_table_ref_and_range.
11861 (fontset_get_font_group): Likewise.
11862 (Ffontset_info): Likewise.
11863
11864 * keymap.c (describe_vector): Adjusted for the change of
11865 char_table_ref_and_range. For char-table, put boundary between
11866 non-ASCII and 8-bit characters.
11867
11868 * print.c (print_object): For bool-vector, delete unnecessary
11869 check of ASCII_BYTE_P.
11870
11871 2008-11-26 Jason Rumney <jasonr@gnu.org>
11872
11873 * w32font.c (w32font_open_internal): Don't include external
11874 leading in font height. (Bug#879)
11875
11876 2008-11-26 Glenn Morris <rgm@gnu.org>
11877
11878 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
11879 redefinition with ifdef. (Bug#1383)
11880
11881 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
11882
11883 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
11884
11885 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
11886
11887 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
11888 New EmacsView methods.
11889 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
11890 Fixes bug #1048,1357,1414.
11891
11892 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
11893
11894 Fix bug #1362.
11895 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
11896 is not an indexed color.
11897 * nsterm.m (free_indexed_color): Add argument checking.
11898 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
11899
11900 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
11901
11902 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
11903 Document confirm-after-completion value for
11904 minibuffer-completion-confirm.
11905
11906 2008-11-24 Jason Rumney <jasonr@gnu.org>
11907
11908 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
11909 warning.
11910
11911 2008-11-23 Jason Rumney <jasonr@gnu.org>
11912
11913 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
11914 restored before returning.
11915
11916 * w32font.c (check_face_name): New function.
11917 (add_font_entity_to_list): Use it to filter out common substituted
11918 fonts. (Bug#642)
11919
11920 2008-11-22 Martin Rudalics <rudalics@gmx.at>
11921
11922 * buffer.c (Fswitch_to_buffer): Reword and mention new option
11923 confirm-nonexistent-file-or-buffer in doc-string.
11924
11925 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
11926
11927 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
11928 Fix copy/paste typo. Add checks.
11929
11930 2008-11-21 Kenichi Handa <handa@m17n.org>
11931
11932 * coding.c (detect_coding_iso_2022): Reject invalid composition
11933 sequence.
11934 (DECODE_COMPOSITION_START): If the current source is the last
11935 block, and the current composition doesn't end, regard this
11936 sequence as invalid.
11937 (decode_coding_iso_2022): Handle invalid composition sequence.
11938
11939 2008-11-20 Martin Rudalics <rudalics@gmx.at>
11940
11941 * window.c (coordinates_in_window): Don't return
11942 ON_VERTICAL_BORDER for the rightmost position of a mode/header
11943 line when the window is not the rightmost one. (Bug#1372)
11944
11945 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
11946
11947 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
11948
11949 2008-11-15 Eli Zaretskii <eliz@gnu.org>
11950
11951 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
11952 and bright_bg if noninteractive is non-zero.
11953
11954 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11955
11956 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
11957 x_draw_glyph_string_background.
11958
11959 * w32term.c (x_draw_glyph_string): Likewise.
11960
11961 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
11962
11963 * xterm.c (x_draw_glyph_string): Stop drawing the background of
11964 the next glyph string once past the overhang width.
11965
11966 * nsterm.m (ns_draw_glyph_string): Likewise.
11967
11968 * w32term.c (x_draw_glyph_string): Likewise.
11969
11970 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
11971
11972 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
11973 double file close.
11974
11975 2008-11-14 Martin Rudalics <rudalics@gmx.at>
11976
11977 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
11978 dedicated status of window before attempting to display another
11979 buffer in it.
11980
11981 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
11982
11983 * msdos.c (Fmsdos_long_file_names):
11984 (syms_of_msdos) <dos-unsupported-char-glyph>:
11985 * dosfns.c (Fint86): Fix typos in docstrings.
11986
11987 2008-11-14 Eli Zaretskii <eliz@gnu.org>
11988
11989 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
11990
11991 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
11992
11993 * puresize.h (BASE_PURESIZE): Increase to 1260000.
11994
11995 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
11996
11997 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
11998
11999 * frame.h: Negative alpha means "don't touch".
12000
12001 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
12002
12003 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
12004
12005 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
12006
12007 * hftctl.c:
12008 * chpdef.h:
12009 * acldef.h: Remove files used only for systems no longer supported.
12010
12011 * Makefile.in: Fix .o alphabetical ordering.
12012 (hftctl.o): Remove dependency, file removed.
12013 (keymap.o, print.o): Depend on charset.h.
12014
12015 2008-11-10 Kenichi Handa <handa@m17n.org>
12016
12017 * character.c (Fget_byte): Fix and make it faster for unibyte target.
12018
12019 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
12020
12021 * dired.c (file_name_completion): If completion_ignore_case is
12022 enabled, ignore case when checking completion-regexp-list.
12023
12024 2008-11-08 Eli Zaretskii <eliz@gnu.org>
12025
12026 * vm-limit.c (get_lim_data): Fix last change.
12027
12028 2008-11-08 Kenichi Handa <handa@m17n.org>
12029
12030 * character.c (Fget_byte): New function.
12031 (syms_of_character): Defsubr Fget_byte.
12032
12033 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
12034
12035 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
12036 cursor position is valid after scrolling.
12037
12038 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
12039
12040 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
12041
12042 2008-11-06 Glenn Morris <rgm@gnu.org>
12043
12044 * xterm.c (handle_one_xevent): Don't let popup menus cause
12045 mouse-autoselect-window related window switching. (Bug#1261)
12046
12047 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
12048
12049 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
12050
12051 2008-11-04 Andreas Schwab <schwab@suse.de>
12052
12053 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
12054
12055 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
12056
12057 * xfns.c (Fx_wm_set_size_hint): New function.
12058
12059 2008-11-03 Martin Rudalics <rudalics@gmx.at>
12060
12061 * textprop.c (Fprevious_single_char_property_change): Return 0
12062 when there's no change in a string. (Bug#1301)
12063
12064 2008-11-02 Martin Rudalics <rudalics@gmx.at>
12065
12066 * frame.c (do_switch_frame): New argument NORECORD passed to
12067 Fselect_window.
12068 (Fselect_frame): New argument NORECORD passed to
12069 do_switch_frame.
12070 (Fset_frame_selected_window): New argument NORECORD passed to
12071 Fselect_frame.
12072 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
12073 in call of do_switch_frame.
12074 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
12075 Handle NORECORD argument in call of Fselect_frame.
12076 * lisp.h (do_switch_frame, Fselect_frame)
12077 (Fset_frame_selected_window): Adjust declarations.
12078 * window.c (select_frame_norecord): New function.
12079 (run_window_configuration_change_hook): Use it and call
12080 Fselect_frame with NORECORD set.
12081 (Fselect_window): Pass NORECORD to Fselect_frame.
12082 (Fset_window_configuration): Handle NORECORD argument in call of
12083 do_switch_frame.
12084 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
12085 Fset_frame_selected_window.
12086 * keyboard.c (command_loop_1): Handle NORECORD in call of
12087 Fselect_frame (currently ifdefd).
12088
12089 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
12090
12091 * emacs.c (USAGE2): Untabify.
12092
12093 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
12094
12095 * composite.c (fill_gstring_header): Fix copy/paste typo.
12096
12097 2008-10-31 Martin Rudalics <rudalics@gmx.at>
12098
12099 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
12100 (Fother_window): Rename argument and rewrite doc-string.
12101 (select_window_norecord): Fix return value. (Bug#1276)
12102
12103 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
12104
12105 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
12106 new frames overriding foreground for tooltips. Based on similar patch
12107 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
12108
12109 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
12110
12111 * emacs.c (Fdaemon_initialized): Initialize nfd.
12112
12113 2008-10-29 Martin Rudalics <rudalics@gmx.at>
12114
12115 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
12116 (Fwindow_text_height): Clarify doc-strings.
12117 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
12118 doc-string of window-scroll-functions.
12119
12120 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
12121
12122 * category.c (syms_of_category): Fix typo in docstring.
12123
12124 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
12125
12126 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
12127 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
12128 Fix typos in docstrings.
12129
12130 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
12131
12132 * emacs.c (daemon_pipe): Make non-static.
12133 (IS_DAEMON): Move definition ...
12134 * lisp.h (IS_DAEMON): ... here.
12135 (daemon_pipe): Declare.
12136 (is_daemon): Remove.
12137 * dispnew.c (init_display): Use IS_DAEMON.
12138
12139 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
12140
12141 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
12142 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
12143
12144 * emacs.c (is_daemon): Remove.
12145 (main): Don't set is_daemon.
12146 (IS_DAEMON): New macro.
12147 (Fdaemonp, Fdaemon_initialized): Use it.
12148 (Fdaemon_initialized): Write a char into the pipe to make sure the
12149 parent exits.
12150 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
12151
12152 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
12153
12154 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
12155 over-sized glyph, draw it with the default glyph width.
12156
12157 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
12158 glyph, draw it with the default glyph width.
12159
12160 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
12161 glyph, draw it with the default glyph width.
12162
12163 * xdisp.c (try_scrolling): When computing the distance from the
12164 scroll margin to PT, try moving some distance past the window
12165 bottom before giving up.
12166
12167 2008-10-27 Martin Rudalics <rudalics@gmx.at>
12168
12169 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
12170 (Fset_window_buffer): Explain in doc-string that a window can be
12171 "strongly" dedicated to its buffer.
12172
12173 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
12174
12175 * emacs.c (daemon_name): New variable.
12176 (main): Deal with --daemon=SERVER_NAME.
12177 (Fdaemonp): Return a name if one was passed to --daemon.
12178
12179 2008-10-26 Romain Francoise <romain@orebokech.com>
12180
12181 * emacs.c (daemon_pipe): New variable.
12182 (main): Create a pipe before forking, make the parent exit only after
12183 the child has closed its end of the pipe. Move closing the
12184 descriptors ...
12185 (Fdaemon_initialized): ... here. New function.
12186
12187 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
12188
12189 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
12190 the previous unoptimized table.
12191
12192 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
12193 the distinction between non-nil and non-t value of `dedicated'.
12194
12195 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
12196
12197 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
12198 read_char_minibuf_menu_text is large enough to hold the menu string.
12199
12200 2008-10-25 Martin Rudalics <rudalics@gmx.at>
12201
12202 * window.c (Fget_buffer_window, Fdelete_windows_on)
12203 (Freplace_buffer_in_windows): Make buffer argument optional and
12204 rename to buffer_or_name.
12205
12206 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
12207
12208 * xdisp.c (handle_single_display_spec, handle_display_prop):
12209 Undo 2005-05-16 change.
12210 (handle_stop): Pop iterator if it's loaded with an empty string.
12211 (get_overlay_strings_1): Don't save iterator if it's loaded with
12212 an empty string (bug#1201).
12213
12214 2008-10-24 Kenichi Handa <handa@m17n.org>
12215
12216 * ftfont.c (ftfont_otf_features): Fix previous change.
12217 (ftfont_otf_capability): Check FeatureList.FeatureCount before
12218 calling ftfont_otf_features.
12219
12220 2008-10-24 Kenichi Handa <handa@m17n.org>
12221
12222 * font.c (font_match_p): Fix for the case that a vector of
12223 characters is in script-representative-chars.
12224
12225 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
12226
12227 * dbusbind.c (xd_in_read_queued_messages): New variable.
12228 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
12229 (xd_read_queued_messages): Catch Qdbus_error from the macros.
12230 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
12231 macro. (Bug#1186)
12232
12233 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
12234
12235 * s/sol2-10.h: New file.
12236
12237 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
12238
12239 * xdisp.c (fill_glyph_string): Fix typo in source (though the
12240 poor beast has survived 9+ years and the jump from xterm.c!).
12241
12242 2008-10-23 Martin Rudalics <rudalics@gmx.at>
12243
12244 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
12245 Reword doc-string.
12246 (Fbury_buffer): In doc-string say what happens to the buffer's window.
12247
12248 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
12249
12250 * character.c (syms_of_character) <script-representative-chars>:
12251 <unicode-category-table>: Doc fixes.
12252
12253 2008-10-23 Noah Friedman <friedman@splode.com>
12254
12255 * coding.c (make_conversion_work_buffer): Check that
12256 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
12257 Fget_buffer_create.
12258
12259 2008-10-23 Kenichi Handa <handa@m17n.org>
12260
12261 * font.c (font_add_log): Check the values of extra properties.
12262
12263 2008-10-22 Martin Rudalics <rudalics@gmx.at>
12264
12265 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
12266 Reword doc-string.
12267 (Fset_window_parameter): Use NILP.
12268 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
12269 (Frecenter): Use "selected" instead of "current" window in doc-strings.
12270
12271 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
12272
12273 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
12274
12275 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
12276
12277 * nsfns.m (ns_appkit_version): New function.
12278 (x-server-version): Use it.
12279 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
12280 (x-server-vendor): Don't check_ns().
12281
12282 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
12283
12284 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
12285
12286 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
12287 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
12288
12289 2008-10-22 Kenichi Handa <handa@m17n.org>
12290
12291 * syntax.c (scan_words): Call word_boundary_p instead of comparing
12292 scripts.
12293
12294 * category.c (word_boundary_p): Check scripts instead of charset.
12295 Handle nil value in word-separating-categories and
12296 word-combining-categories.
12297 (syms_of_category): Fix docstrings of word-separating-categories
12298 and word-combining-categories.
12299
12300 2008-10-21 Eli Zaretskii <eliz@gnu.org>
12301
12302 * coding.c (Fencode_coding_region, Fdecode_coding_region)
12303 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
12304
12305 2008-10-21 Martin Rudalics <rudalics@gmx.at>
12306
12307 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
12308 Rename arg "buffer" to "buffer_or_name".
12309 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
12310 it optional.
12311 (no_switch_window): Remove since the return value is not used.
12312 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
12313 Consider window as dedicated when Fwindow_dedicated_p returns a
12314 non-nil value.
12315 * lisp.h: Remove prototype for no_switch_window.
12316
12317 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
12318
12319 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
12320 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
12321
12322 2008-10-21 Kenichi Handa <handa@m17n.org>
12323
12324 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
12325 check Vlatin_extra_code_table.
12326
12327 2008-10-20 Eli Zaretskii <eliz@gnu.org>
12328
12329 * fileio.c (Fset_file_modes): Doc fix.
12330
12331 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
12332
12333 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
12334 in arrays.
12335
12336 2008-10-19 Martin Rudalics <rudalics@gmx.at>
12337
12338 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
12339 Mention kill-buffer in doc-string.
12340 (Fset_window_buffer): Reinsert tem check removed in last commit.
12341 (Fenlarge_window, Fshrink_window): Have argument names and
12342 doc-string follow Elisp manual more closely.
12343
12344 2008-10-18 Eli Zaretskii <eliz@gnu.org>
12345
12346 * fileio.c (Fset_file_modes): Doc fix.
12347
12348 2008-10-18 Martin Rudalics <rudalics@gmx.at>
12349
12350 * window.c (Fwindow_width, Fset_window_start)
12351 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
12352 (Fdelete_windows_on, Freplace_buffer_in_windows):
12353 Make doc-strings follow code and Elisp manual more closely.
12354 (Fwindow_dedicated_p): Make window argument optional.
12355 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
12356 (Fset_window_buffer): Respect any non-nil dedicated value for
12357 window. Rename "buffer" argument to "buffer_or_name".
12358
12359 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
12360
12361 * m/sh3.h: New file, machine description for SuperH.
12362
12363 2008-10-17 Martin Rudalics <rudalics@gmx.at>
12364
12365 * window.c (Fsplit_window): Rename arg horflag to horizontal.
12366
12367 2008-10-17 Kenichi Handa <handa@m17n.org>
12368
12369 * ftfont.c (ftfont_otf_features): Fix indexing
12370 gsub_gpos->FeatureList.Feature. Check the validity of indices.
12371
12372 2008-10-16 Magnus Henoch <mange@freemail.hu>
12373
12374 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
12375 (Fdbus_call_method_asynchronously): Ditto.
12376 This change makes C-h f display the argument list.
12377
12378 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
12379
12380 * fileio.c (Fexpand_file_name): Doc fix.
12381
12382 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
12383 of :foreground and :background equivalent to unspecified (20.x
12384 compatibility).
12385
12386 2008-10-15 Eli Zaretskii <eliz@gnu.org>
12387
12388 * buffer.c (syms_of_buffer): Doc fix.
12389
12390 2008-10-14 Kenichi Handa <handa@m17n.org>
12391
12392 * font.c (font_clear_prop): When clearing font width, clear the
12393 average width field too.
12394
12395 2008-10-12 Andreas Schwab <schwab@suse.de>
12396
12397 * ftfont.c (ftfont_shape_by_flt): Make static.
12398 * ftfont.h (ftfont_shape_by_flt): Don't declare.
12399
12400 * font.c: Don't include <m17n-flt.h>.
12401
12402 2008-10-10 Eli Zaretskii <eliz@gnu.org>
12403
12404 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
12405
12406 2008-10-09 Eli Zaretskii <eliz@gnu.org>
12407
12408 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
12409 away code.
12410
12411 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
12412
12413 * dispnew.c (update_text_area): Avoid looping due to large glyph
12414 overhangs (bug#1070).
12415
12416 2008-10-09 Kenichi Handa <handa@m17n.org>
12417
12418 * fontset.c (face_for_char): If face->fontset is negative, just
12419 return ascii_face.
12420
12421 * font.c (font_delete_unmatched): Fix previous change.
12422 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
12423
12424 2008-10-09 Martin Rudalics <rudalics@gmx.at>
12425
12426 * frame.c (Fraise_frame): On text-only terminals select frame in
12427 order to make it visible. (Bug#1061)
12428
12429 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
12430
12431 * fontset.c (fontset_find_font): Check frame validity.
12432
12433 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
12434
12435 * gtkutil.c (xg_display_open): Reset default display if none exists.
12436 (xg_display_close): Allow Emacs to close all displays (bug#985).
12437
12438 2008-10-06 Andreas Schwab <schwab@suse.de>
12439
12440 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
12441
12442 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
12443
12444 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
12445
12446 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
12447
12448 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
12449 during initialization.
12450
12451 2008-10-04 Eli Zaretskii <eliz@gnu.org>
12452
12453 * xdisp.c (redisplay_internal): If frame switched, redisplay the
12454 whole thing on MSDOS frames as well as on a TTY.
12455
12456 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
12457 well as for TTY.
12458 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
12459 well as on a TTY.
12460
12461 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
12462 as well as for TTY.
12463
12464 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
12465
12466 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
12467 MSDOS frames as well.
12468
12469 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
12470
12471 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
12472 correct arguments.
12473 * menu.c (find_and_return_menu_selection): Add cast.
12474
12475 2008-10-03 Glenn Morris <rgm@gnu.org>
12476
12477 * emacs.c (USAGE1): Add --daemon.
12478
12479 2008-10-02 Eli Zaretskii <eliz@gnu.org>
12480
12481 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
12482 100, so it's in percents as advertised.
12483
12484 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
12485
12486 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
12487 (ns_output.current_cursor, ns_output.desired_cursor)
12488 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
12489 (FRAME_NEW_CURSOR_COLOR): Remove.
12490
12491 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
12492 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
12493 enumeration (HOLLOW_BOX_CURSOR, etc.).
12494
12495 * nsterm.m (ns_frame_rehighlight): Remove commented code.
12496 (draw_window_cursor): Simplify code.
12497 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
12498 Don't change cursor type. In latter, call rehighlight instead of doing
12499 updates manually.
12500 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
12501 Use core Emacs cursor types.
12502
12503 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
12504
12505 2008-10-02 Martin Rudalics <rudalics@gmx.at>
12506
12507 * process.c (Faccept_process_output): Fix doc-string.
12508
12509 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
12510
12511 * gmalloc.c (__sbrk): Also define for uClibc.
12512
12513 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
12514 for uClibc.
12515
12516 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
12517
12518 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
12519 styles.
12520 (nsfont_open): Reenable the cache.
12521
12522 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
12523
12524 * font.c (font_matching_entity): Reflect ATTRS in font selection.
12525 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
12526
12527 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
12528
12529 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
12530 a suspended terminal.
12531
12532 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
12533
12534 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
12535
12536 2008-09-30 Eli Zaretskii <eliz@gnu.org>
12537
12538 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
12539
12540 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
12541
12542 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
12543 in a continued line coincides with a line beginning.
12544
12545 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
12546
12547 * nsfont.m (nsfont_trait_distance): Fix bug.
12548 (nsfont_list): Return a list rather than a vector (syncs with Handa
12549 changes of 2008-05-14).
12550 (nsfont_open): Improve logging.
12551
12552 2008-09-29 Andreas Schwab <schwab@suse.de>
12553
12554 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
12555
12556 2008-09-28 Martin Rudalics <rudalics@gmx.at>
12557
12558 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
12559 name as char-resolve-modifiers.
12560 Reported by: Markus Triska <markus.triska@gmx.at>
12561
12562 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
12563
12564 * dispnew.c (init_display): Return earlier when running as a daemon.
12565
12566 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
12567
12568 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
12569
12570 2008-09-27 Eli Zaretskii <eliz@gnu.org>
12571
12572 * composite.c (Fcomposition_get_gstring)
12573 (Fcompose_region_internal, Fcompose_string_internal)
12574 (Ffind_composition_internal): Doc fix.
12575 (syms_of_composite) <compose-chars-after-function>: Doc fix.
12576 (syms_of_composite) <auto-composition-function>: Doc fix.
12577 (syms_of_composite) <composition-function-table>: Doc fix.
12578
12579 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
12580
12581 * search.c (wordify): New argument for lax word-ends.
12582 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
12583
12584 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
12585
12586 * lisp.h (is_daemon): Declare.
12587 * dispnew.c (init_display): Do not try to initialize the terminal
12588 when running as a daemon.
12589
12590 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
12591
12592 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
12593 x_display_pixel_height.
12594
12595 2008-09-22 Martin Rudalics <rudalics@gmx.at>
12596
12597 * undo.c (record_point): Don't call Fundo_boundary for first
12598 change. (Bug#731)
12599
12600 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
12601
12602 * emacs.c (Fdaemonp): Doc fix.
12603
12604 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
12605
12606 * emacs.c (main): Place #ifdef in the proper place.
12607
12608 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
12609
12610 * emacs.c (standard_args): Add --daemon.
12611 (main): Disconnect from the terminal when --daemon is passed.
12612 (is_daemon): New variable.
12613 (Fdaemonp): New function.
12614 (syms_of_emacs): Defsubr it.
12615
12616 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
12617
12618 * xdisp.c (get_next_display_element): Handle string display
12619 correctly when checking for the end of a box run.
12620
12621 2008-09-20 Glenn Morris <rgm@gnu.org>
12622
12623 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
12624 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
12625 (Frename_file): Avoid copying to trash if a rename involves
12626 a delete. (Bug#964).
12627
12628 2008-09-20 Eli Zaretskii <eliz@gnu.org>
12629
12630 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
12631 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
12632 frames as well as termcap frames.
12633 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
12634 get_named_tty.
12635
12636 2008-09-19 Eli Zaretskii <eliz@gnu.org>
12637
12638 * process.c (procfs_system_process_attributes): Fix cmdline in
12639 case /proc/PID/cmdline is empty.
12640
12641 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
12642 x_display_pixel_height.
12643
12644 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
12645
12646 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
12647
12648 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
12649 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
12650
12651 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
12652
12653 * dispextern.h (struct it): Move line_wrap away from the middle of
12654 bitfields. Move voffset in struct iterator_stack_entry after the
12655 bitfields. Move tab_width near after another short.
12656
12657 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
12658
12659 * frame.h (struct frame): Move alpha from the middle of bitfields.
12660
12661 * window.h (struct window): Move frozen_window_start_p after the
12662 rest of the bitfields to reduce padding.
12663
12664 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
12665
12666 * xterm.h (x_display_info): Remove `height' and `width' members.
12667
12668 * nsterm.h (ns_display_info): Remove `height' and `width' members.
12669
12670 * w32term.h (w32_display_info): Remove `height', `width',
12671 `height_in', and `width_in' members.
12672
12673 * xterm.c (x_display_pixel_height, x_display_pixel_width):
12674 New functions.
12675 (x_calc_absolute_position): Use them.
12676 (x_term_init): Omit removed `height' and `width' members.
12677
12678 * w32term.c (x_display_pixel_height, x_display_pixel_width):
12679 New functions.
12680 (w32_read_socket, x_calc_absolute_position): Use them.
12681 (w32_initialize_display_info, w32_term_init): Omit removed members
12682 of w32_display_info.
12683
12684 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
12685 New functions.
12686 (ns_initialize_display_info): Omit removed members of ns_display_info.
12687
12688 * xterm.c (x_display_pixel_height, x_display_pixel_width):
12689 New functions.
12690 (x_calc_absolute_position): Use them.
12691 (x_term_init): Omit removed `height' and `width' members.
12692
12693 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
12694 (compute_tip_xy):
12695 * frame.c (x_fullscreen_adjust):
12696 * xmenu.c (menu_position_func): Use x_display_pixel_height and
12697 x_display_pixel_width.
12698
12699 2008-09-18 Kenichi Handa <handa@m17n.org>
12700
12701 * composite.c (fill_gstring_header): Don't check FROM and TO here.
12702 (composition_compute_stop_pos): Fix handling of static composition.
12703 (Fcomposition_get_gstring): Check FROM and TO at first.
12704
12705 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
12706
12707 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
12708 mixup (YAILOM).
12709
12710 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
12711
12712 * indent.c (Fvertical_motion): Use position reported by iterator
12713 instead of PT for determining screen motion (bug#943).
12714
12715 2008-09-17 Romain Francoise <romain@orebokech.com>
12716
12717 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
12718
12719 2008-09-17 Kenichi Handa <handa@m17n.org>
12720
12721 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
12722
12723 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
12724 if necessary.
12725
12726 2008-09-16 Kenichi Handa <handa@m17n.org>
12727
12728 * coding.c (make_conversion_work_buffer): Avoid calling
12729 Fget_buffer_create if it is not necessary.
12730
12731 2008-09-15 Martin Rudalics <rudalics@gmx.at>
12732
12733 * window.c (Fselect_window): Don't update window_select_count and
12734 use_time when norecord is not nil.
12735
12736 2008-09-14 Kenichi Handa <handa@m17n.org>
12737
12738 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
12739 specpdl_ptr.
12740
12741 2008-09-12 Kenichi Handa <handa@m17n.org>
12742
12743 * indent.c (scan_for_column): Don't handle automatic composition
12744 if the current buffer is not associated with a window.
12745
12746 * composite.c (composition_reseat_it): If the current buffer is
12747 not associated with a window, ignore the automatic composition.
12748 (find_automatic_composition): Likewise.
12749
12750 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12751
12752 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
12753 (Fgpm_mouse_stop): Use it.
12754 * termhooks.h (close_gpm): Declare.
12755 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
12756 connection if Gpm_GetEvent fails.
12757
12758 * window.c (set_window_buffer): Always preserve current-buffer.
12759
12760 2008-09-12 Glenn Morris <rgm@gnu.org>
12761
12762 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
12763
12764 2008-09-11 Glenn Morris <rgm@gnu.org>
12765
12766 * charset.c (charset-map-path): Doc fix.
12767
12768 2008-09-10 Kenichi Handa <handa@m17n.org>
12769
12770 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
12771
12772 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
12773 compose a grapheme cluster with the preceding base glyph.
12774
12775 * composite.c (composition_compute_stop_pos): Fix previous change.
12776 Reset cmp_it->id to -1 at first.
12777
12778 2008-09-10 Glenn Morris <rgm@gnu.org>
12779
12780 * Makefile.in (character.o, chartab.o): Fix config.h typo.
12781
12782 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
12783
12784 * keyboard.c (read_key_sequence): Reapply translation maps when
12785 switching keyboards.
12786
12787 2008-09-09 Kenichi Handa <handa@m17n.org>
12788
12789 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
12790 characters.
12791
12792 * composite.c (FORWARD_CHAR): Fix calculation
12793 of (POSITION).pos_byte.
12794 (composition_compute_stop_pos): Limit the search of composition to
12795 at most 500 characters ahead. If we reach the limit or find a
12796 newline, set cmp_it->ch to -2 and return 0.
12797 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
12798
12799 2008-09-08 Kenichi Handa <handa@m17n.org>
12800
12801 * indent.c (Fvertical_motion): Be sure to set
12802 it_overshoot_expected if it.cmp_it.id is non-negative.
12803
12804 2008-09-07 Andreas Schwab <schwab@suse.de>
12805
12806 * callproc.c (Fcall_process): Don't hold references to string data
12807 across garbage collection. Move initialisation of new_argv down
12808 to avoid compiler bug.
12809
12810 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12811
12812 * process.c (Fsystem_process_attributes): Doc fix.
12813
12814 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
12815
12816 * callproc.c (Fcall_process): Canonicalize current directory name.
12817
12818 * xdisp.c (move_it_to): When moving by vpos, ensure that the
12819 iterator advances to the next line if the current line ends in a
12820 continued tab.
12821
12822 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
12823
12824 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
12825 member to point to cmp_from.
12826
12827 * xdisp.c: Doc fix for references to gidx data member.
12828
12829 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
12830
12831 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
12832
12833 2008-09-07 Kenichi Handa <handa@m17n.org>
12834
12835 * composite.c (FORWARD_CHAR): Check STOP after
12836 incrementing (POSITION).pos.
12837
12838 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12839
12840 * process.c (Fsystem_process_attributes): Doc fix.
12841
12842 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
12843
12844 * keyboard.c (Ftop_level): Doc fix.
12845
12846 2008-09-06 Eli Zaretskii <eliz@gnu.org>
12847
12848 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
12849 minibuffer, don't let lower part of menu invade the echo area.
12850
12851 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
12852 "char *q" to access menu text and advance through it. Revert the
12853 change that displayed ">" instead of ASCII character 0x10.
12854
12855 2008-09-05 Eli Zaretskii <eliz@gnu.org>
12856
12857 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
12858 toggle boxes and radio buttons on MS-DOS as well.
12859
12860 2008-09-05 Kenichi Handa <handa@m17n.org>
12861
12862 * composite.c (autocmp_chars): Check lookback count.
12863 (composition_compute_stop_pos): Set cmp_it->lookback.
12864 (composition_reseat_it): Check lookback count.
12865 (struct position_record): New struct.
12866 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
12867 (find_automatic_composition): New function.
12868 (composition_adjust_point): Use find_automatic_composition.
12869
12870 * dispextern.h (struct composition_it): New member lookback.
12871
12872 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
12873
12874 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
12875 if moving by a single line.
12876
12877 2008-09-02 Andreas Schwab <schwab@suse.de>
12878
12879 * xterm.c (x_delete_display): Fix merge error.
12880
12881 * fileio.c (Fexpand_file_name): Remove unused variables.
12882
12883 2008-09-02 Eli Zaretskii <eliz@gnu.org>
12884
12885 * fileio.c (Fexpand_file_name): Copy argument `name' into local
12886 storage on all platforms, not just on DOS_NT.
12887
12888 2008-09-02 Jason Rumney <jasonr@gnu.org>
12889
12890 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
12891 Ensure mouse is not grabbed after menu is finished.
12892
12893 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
12894
12895 * xfaces.c (Finternal_set_alternative_font_family_alist)
12896 (Finternal_set_alternative_font_registry_alist): Properly copy
12897 entire alist structure.
12898
12899 2008-09-01 Kenichi Handa <handa@m17n.org>
12900
12901 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
12902 representative chars of the script is a vector.
12903 (ftfont_list): Handle the case where the representative chars of
12904 the script is a vector.
12905
12906 * character.c (syms_of_character): Docstring of
12907 script-representative-chars fixed.
12908
12909 2008-08-31 Eli Zaretskii <eliz@gnu.org>
12910
12911 * msdos.c (BUILD_CHAR_GLYPH): New macro.
12912 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
12913 the menu. Allocate larger buffer for `text', to account for
12914 possible ^C characters.
12915
12916 2008-08-31 Martin Rudalics <rudalics@gmx.at>
12917
12918 * xdisp.c (prepare_menu_bars): Don't call
12919 Vwindow_size_change_functions with arg Qt.
12920
12921 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
12922
12923 * font.h (font_range):
12924 * fileio.c (report_file_error):
12925 * composite.c (composition_update_it): Yet another int/Lisp_Object
12926 mixup (YAILOM).
12927
12928 2008-08-30 Glenn Morris <rgm@gnu.org>
12929
12930 * data.c (Fmake_variable_frame_local): Doc fix.
12931
12932 * frame.c (Fmodify_frame_parameters): Doc fix.
12933
12934 2008-08-30 Eli Zaretskii <eliz@gnu.org>
12935
12936 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
12937 needed by GetTokenInformation.
12938 (w32_system_process_attributes): Check return values of all system
12939 APIs.
12940
12941 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
12942 only when the state changes.
12943 (IT_update_begin, IT_update_end): Add termscript trace.
12944
12945 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
12946 clipboard is unavailable. Set dst to NULL if it doesn't point to
12947 malloc'ed data.
12948 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
12949 passing random values to xfree.
12950
12951 * dispnew.c (init_display): Set `tty's association in frame's
12952 parameters alist to the name of the terminal device, if that is known.
12953
12954 2008-08-29 Jason Rumney <jasonr@gnu.org>
12955
12956 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
12957
12958 2008-08-29 Eli Zaretskii <eliz@gnu.org>
12959
12960 * composite.c (fill_gstring_body): Avoid compiler warnings.
12961
12962 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
12963 LGLYPH_SET_CODE to avoid compiler warnings.
12964
12965 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
12966
12967 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
12968
12969 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
12970 LGLYPH_SET_CODE.
12971
12972 2008-08-29 Kenichi Handa <handa@m17n.org>
12973
12974 * fileio.c (report_file_error): Don't downcase the first character
12975 of errstring if it is still unibyte.
12976
12977 2008-08-29 Kenichi Handa <handa@m17n.org>
12978
12979 These changes are to re-implement the automatic composition so
12980 that it doesn't use text properties.
12981
12982 * Makefile.in (ftfont.o): Depend on composite.h.
12983 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
12984
12985 * character.h (Vunicode_category_table): Extern it.
12986
12987 * character.c (Vunicode_category_table): New variable.
12988 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
12989
12990 * chartab.c (optimize_sub_char_table): Perform more greedy
12991 optimization.
12992
12993 * composite.h (enum composition_method):
12994 Delete COMPOSITION_WITH_GLYPH_STRING.
12995 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
12996 (Vcomposition_function_table): Extern it.
12997 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
12998 (composition_gstring_put_cache, composition_gstring_from_id)
12999 (composition_gstring_p, composition_gstring_width)
13000 (composition_compute_stop_pos, composition_reseat_it)
13001 (composition_update_it, composition_adjust_point): Extern them.
13002 (Fcomposition_get_gstring): EXFUN it.
13003
13004 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
13005 (Vcomposition_function_table)
13006 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
13007 (gstring_hash_table, gstring_work, gstring_work_headers):
13008 New variables.
13009 (gstring_lookup_cache, composition_gstring_put_cache)
13010 (composition_gstring_from_id, composition_gstring_p)
13011 (composition_gstring_width, fill_gstring_header)
13012 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
13013 (composition_reseat_it, composition_update_it)
13014 (composition_adjust_point, Fcomposition_get_gstring): New functions.
13015 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
13016 and gstring_work_headers. DEFVAR_LISP composition-function-table.
13017 Defsubr composition_get_gstring.
13018
13019 * dispextern.h (struct glyph): New union u.cmp. Delete the member
13020 cmp_id.
13021 (struct glyph_string): Delete the member gidx. New members
13022 cmp_id, cmp_from, and cmp_to.
13023 (enum it_method): Delete GET_FROM_COMPOSITION.
13024 (struct composition_it): New struct.
13025 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
13026 Delete c, len, cmp_id, cmp_len in u.comp.
13027
13028 * font.h (enum lgstring_indices): Delete it.
13029 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
13030 (enum lglyph_indices): Likewise.
13031 (font_range): Adjust extern.
13032 (font_fill_lglyph_metrics): Extern it.
13033
13034 * font.c (QCf): New variable.
13035 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
13036 (font_prepare_composition): Delete this function.
13037 (font_range): Type and arguments changed.
13038 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
13039 (font_fill_lglyph_metrics): New function.
13040 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
13041 (syms_of_font): DEFSYM QCf. Delete defsubr for
13042 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
13043 Defsubr Sfont_shape_gstring.
13044
13045 * fontset.h (font_for_char): Extern it.
13046
13047 * fontset.c (font_for_char): New function.
13048
13049 * ftfont.c: Include composite.h.
13050 (ftfont_resolve_generic_family): Add langset "en" to pattern.
13051 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
13052
13053 * indent.c: Include composite.h and dispextern.h.
13054 (check_composition): Delete this function.
13055 (scan_for_column): Handle composition by
13056 composition_compute_stop_pos, composition_reseat_it, and
13057 composition_update_it.
13058 (compute_motion): Likewise.
13059 (Fvertical_motion): Fix checking of composition.
13060
13061 * keyboard.c (adjust_point_for_property): Check composition by
13062 composition_adjust_point.
13063
13064 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
13065 struct glyph_string.
13066
13067 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
13068 (append_composite_glyph): Adjust for the change of struct it and
13069 struct glyph.
13070 (produce_composite_glyph): Likewise.
13071
13072 * w32term.c (x_draw_composite_glyph_string_foreground):
13073 Adjust for the change of struct glyph_string.
13074 (x_draw_glyph_string): Likewise.
13075
13076 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
13077 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
13078
13079 * xdisp.c: Include font.h.
13080 (it_props): Delete the entry for Qauto_composed.
13081 (init_iterator): Initialize it->cmp_it.id to -1.
13082 (compute_stop_pos): Call composition_compute_stop_pos.
13083 (face_before_or_after_it_pos): Adjust for the change of struct it.
13084 (handle_auto_composed_prop): Delete it.
13085 (handle_composition_prop): Handle only static composition.
13086 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
13087 from xassert. Initialize it->cmp_it.stop_pos.
13088 (push_it): Adjust for the change of struct it.
13089 (pop_it): Likewise.
13090 (get_next_element): Delete next_element_from_composition.
13091 (CHAR_COMPOSED_P): New macro.
13092 (get_next_display_element): For automatic composition, get a face
13093 from the font in the glyph-string.
13094 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
13095 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
13096 (next_element_from_string): Check if the character at the current
13097 position is composed by CHAR_COMPOSED_P.
13098 (next_element_from_buffer): Likewise.
13099 (next_element_from_composition): Adjust for the change of struct it.
13100 Update it->cmp_it.
13101 (dump_glyph): Adjust for the change of struct glyph.
13102 (fill_composite_glyph_string): Adjust for the change of struct
13103 it and struct glyph. Don't handle automatic composition here.
13104 (fill_gstring_glyph_string): New function.
13105 (x_get_glyph_overhangs): Handle automatic composition.
13106 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
13107 (BUILD_GSTRING_GLYPH_STRING): New macro.
13108 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
13109 automatic composition.
13110 (append_composite_glyph): Adjust for the change of struct it and
13111 struct glyph.
13112 (x_produce_glyphs): Adjust for the change of struct it.
13113
13114 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
13115 the change of struct glyph_string.
13116 (x_draw_glyph_string): Likewise.
13117
13118 2008-08-29 Glenn Morris <rgm@gnu.org>
13119
13120 * buffer.c (word-wrap): Doc fix.
13121 * xdisp.c (truncate-partial-width-windows): Doc fix.
13122 Increase default to 50.
13123
13124 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
13125
13126 * xdisp.c (update_tool_bar_unwind): New function.
13127 (update_tool_bar): Temporarily set selected frame before building
13128 tool-bar items.
13129
13130 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
13131
13132 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
13133 snprintf, respectively.
13134 (xd_append_arg): Convert strings with Fstring_make_unibyte.
13135
13136 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
13137
13138 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
13139 LDFLAGS to GNUstep CC invocation.
13140
13141 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
13142
13143 * indent.c (Fvertical_motion): Revert last change. Handle the
13144 general case where we are moving forward, and PT spans multiple
13145 screen lines.
13146
13147 * eval.c (find_handler_clause): Temporarily increase
13148 max-lisp-eval-depth while printing the backtrace buffer, to
13149 guarantee that help-mode code can run.
13150
13151 2008-08-27 Eli Zaretskii <eliz@gnu.org>
13152
13153 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
13154 colors under -rv.
13155 (IT_set_frame_parameters): Don't swap foreground and background
13156 colors if `(reverse . t)' is present in the frame properties.
13157 (internal_terminal_init): Call init_frame_faces only for the
13158 initial frame.
13159
13160 2008-08-27 Andreas Schwab <schwab@suse.de>
13161
13162 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
13163
13164 2008-08-27 Andreas Schwab <schwab@suse.de>
13165
13166 * search.c (search_buffer): Set char_base to zero only at the end.
13167
13168 2008-08-27 Kenichi Handa <handa@m17n.org>
13169
13170 * fileio.c (report_file_error): Fix handling of multibyte error string.
13171
13172 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
13173
13174 * xterm.c (x_term_init): Temporarily hide the partially
13175 initialized terminal while calling vendor-specific-keysyms.
13176
13177 2008-08-26 Eli Zaretskii <eliz@gnu.org>
13178
13179 * msdos.c (internal_terminal_init): Most initializations done only
13180 once, especially initial_screen_colors[] and termscript open.
13181
13182 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
13183
13184 * eval.c (Fcondition_case): Doc fix.
13185
13186 * widgetprv.h (EmacsFramePart): Change font member to the new font
13187 struct.
13188
13189 * widget.c: Include character.h and font.h for XSETFONT.
13190 (setup_frame_gcs): Compute X font id from font struct, just once.
13191
13192 2008-08-26 Eli Zaretskii <eliz@gnu.org>
13193
13194 * term.c (get_named_tty): Fix last change.
13195
13196 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
13197
13198 * indent.c (Fvertical_motion): If moving forward starting from a
13199 multi-line string, move the iterator to the last line of that string.
13200
13201 2008-08-25 Eli Zaretskii <eliz@gnu.org>
13202
13203 * frame.c (do_switch_frame): Mark previously displayed frame as
13204 obscured for FRAME_MSDOS_P frames as well.
13205
13206 2008-08-24 Eli Zaretskii <eliz@gnu.org>
13207
13208 * frame.c (make_terminal_frame): Initialize f->terminal,
13209 f->terminal->reference_count, and scroll bars on MS-DOS as well.
13210 Set the top frame to newly created frame.
13211 (Fmake_terminal_frame): Reuse the_only_display_info.
13212
13213 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
13214 estimating available memory.
13215
13216 2008-08-23 David Reitter <david.reitter@gmail.com>
13217
13218 * nsterm.m (ns_draw_window_cursor): Don't call
13219 NSDisableScreenUpdates and NSEnableScreenUpdates on
13220 non-NS_IMPL_COCOA systems.
13221
13222 2008-08-23 Andreas Schwab <schwab@suse.de>
13223
13224 * process.c (procfs_system_process_attributes): Fix use of
13225 uninitialized variables.
13226
13227 2008-08-23 Eli Zaretskii <eliz@gnu.org>
13228
13229 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
13230
13231 * dispnew.c (init_display): Remove MS-DOS specific conditions for
13232 calling tty-set-up-initial-frame-faces.
13233
13234 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
13235 Allow MSDOS frames along with X frames.
13236
13237 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
13238 addition to output_termcap.
13239
13240 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
13241
13242 * termchar.h (FRAME_TTY): Support output_msdos_raw.
13243 (struct tty_display_info) [MSDOS]: Add fields related to mouse
13244 highlight.
13245
13246 * process.c [!subprocesses]: Define QCname.
13247 (syms_of_process): Intern and staticpro it.
13248
13249 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
13250 Adjust for changes in encoding/decoding routines.
13251 Use encode_coding_object and decode_coding_object instead of
13252 encode_coding and decode_coding.
13253
13254 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
13255
13256 * dosfns.c: Include frame.h before termhooks.h.
13257 (dos_cleanup): Use CURTTY ()->termscript instead of a global
13258 variable termscript.
13259
13260 * s/msdos.h (USER_FULL_NAME): Define.
13261 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
13262
13263 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
13264 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
13265 pw->pw_gecos.
13266
13267 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
13268 SELECTED_FRAME as additional (1st) argument.
13269 (tty_read_avail_input): Handle output_msdos_raw in
13270 addition to output_termcap.
13271
13272 * msdos.c: Include frame.h before termhooks.h.
13273 (mouse_on, mouse_off, mouse_moveto, mouse_init)
13274 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
13275 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
13276 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
13277 (IT_set_terminal_modes, IT_reset_terminal_modes)
13278 (IT_set_frame_parameters): Use tty->termscript instead of a global
13279 variable termscript.
13280 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
13281 global variable terminal_coding. Don't refer to
13282 Vnonascii_translation_table.
13283 (internal_terminal_init): Set Vwindow_system in current_kboard.
13284 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
13285 Announce date and time of session start, if termscript is open.
13286 Don't zero out the_only_display_info (it is done in
13287 term.c:init_tty). Open termscript only of not already open.
13288 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
13289 here instead of dos_ttraw. Don't initialize display if this is an
13290 initial tty. Don't set FRAME_FONT.
13291 (Vwindow_system_version): Bump to 23.
13292 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
13293 is available, set up mouse_position_hook.
13294 (dos_ttraw, IT_set_terminal_modes): If called with initial
13295 terminal, do nothing.
13296 (IT_set_frame_parameters): Handle the Qtty_type frame
13297 parameter by calling internal_terminal_init.
13298 (dos_set_window_size, show_mouse_face)
13299 (clear_mouse_face, IT_note_mode_line_highlight)
13300 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
13301 (dos_rawgetc): Use tty_display_info instead of x_display_info.
13302 (initialize_msdos_display): New function.
13303 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
13304 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
13305 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
13306 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
13307 Accept additional argument: a pointer to a frame. Update all callers.
13308 (request_sigio, unrequest_sigio): Don't define, now defined on
13309 sysdep.c.
13310 (IT_write_glyphs): Rewrite to use encode_terminal_code.
13311
13312 * term.c [MSDOS]: Include msdos.h.
13313 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
13314 conditional to DOS_NT. Allow only one call to this function in a
13315 session. Don't allocate a new struct tty_display_info; instead,
13316 reuse the_only_display_info. Call get_tty_size to get screen
13317 dimensions. Call init_baud_rate to set bad_rate.
13318 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
13319 (Fsuspend_tty) [MSDOS]: Don't close input and output.
13320 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
13321 (get_tty_terminal, get_named_tty, Ftty_type)
13322 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
13323 output_termcap.
13324 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
13325 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
13326 only when subprocesses are supported.
13327
13328 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
13329 f->output_data.x.
13330 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
13331 terminal devices.
13332
13333 * msdos.h: Remove definition of struct x_display_info and struct
13334 x_output.
13335 (FRAME_FONT): Use output_data.tty.
13336 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
13337 (struct x_display_info): Rename from display_info. Update all users in
13338 msdos.c.
13339 (struct x_output): Remove background_pixel and foreground_pixel.
13340 (the_only_display_info): Rename from the_only_x_display.
13341 (dos_ttraw): Update prototype.
13342
13343 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
13344 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
13345
13346 2008-08-23 Jason Rumney <jasonr@gnu.org>
13347
13348 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
13349 (fn_TIFFSetDirectory): New library function used.
13350 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
13351 (tiff_load): Use :index to select among multiple images. Set count
13352 property when multiple images exist.
13353 (gif_format): Use :index, not :image.
13354
13355 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
13356
13357 * xdisp.c (try_scrolling): Check INT_MAX instead of
13358 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
13359 to obtain INT_MAX.
13360
13361 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
13362
13363 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
13364
13365 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
13366
13367 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
13368 GNUstep library location.
13369
13370 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
13371
13372 * xfaces.c (x_update_menu_appearance): Check validity of menu font
13373 before using it.
13374
13375 * puresize.h (BASE_PURESIZE): Increase to 1250000.
13376
13377 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
13378
13379 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
13380 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
13381 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
13382 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
13383 (EmacsApp-cursor_blink_handler): Remove declaration.
13384 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
13385 match 01 Feb 2008 changes in xterm.c.
13386 (ns_read_socket): Add cast to avoid warning.
13387 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
13388 GNUstep.
13389
13390 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
13391
13392 * xselect.c (x_get_foreign_selection): Return nil if desired
13393 selection could not be obtained, instead of signalling an error.
13394
13395 2008-08-20 David Reitter <david.reitter@gmail.com>
13396
13397 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
13398 * nsterm.m: Remove ns-specific code for cursor blinking.
13399 (ns_draw_window_cursor): Clear cursor properly rather than
13400 redrawing the area. Respect width of bar cursors.
13401 These changes enable the use of generic blink-cursor-mode and
13402 generic cursor types in NS and support smooth cursor movements (do
13403 not blink off after command).
13404 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
13405 Nextstep, too.
13406
13407 2008-08-19 Kenichi Handa <handa@m17n.org>
13408
13409 * font.c (Vfont_log_deferred): New variable.
13410 (font_add_log): Check Vfont_log_deferred.
13411 (font_deferred_log): New function.
13412
13413 * font.h (font_deferred_log): Extern it.
13414
13415 * fontset.c (reorder_font_vector): Use encoding charset of fonts
13416 for sorting.
13417 (face_for_char): Use deferred log.
13418
13419 2008-08-18 Kenichi Handa <handa@m17n.org>
13420
13421 * fontset.c (face_for_char): Add font log.
13422
13423 * font.c (font_add_log): Add the font properties :script, :lang,
13424 and :otf in the log.
13425
13426 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
13427
13428 * xdisp.c: Remove dead code.
13429 (handle_invisible_prop, next_overlay_string): Defer call to
13430 setup_for_ellipsis.
13431 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
13432
13433 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
13434
13435 * xfaces.c (lookup_derived_face): Properly handle possible zero
13436 return value of get_lface_attributes.
13437 (merge_faces): Don't tell lookup_derived_face to signal an error
13438 if face is not found.
13439
13440 * dired.c (Fdirectory_files): Doc fix.
13441
13442 * process.c (make_process): Initialize kill_without_query struct
13443 member.
13444
13445 2008-08-15 Eli Zaretskii <eliz@gnu.org>
13446
13447 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
13448 Alternative calculation of totphys for Visual Studio 6.
13449
13450 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
13451
13452 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
13453 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
13454 All users changed.
13455 (stat): Only root directory passed to GetDriveType. Allow RAM
13456 disk as well as local fixed disk when w32-get-true-file-attributes
13457 is set to `local'.
13458 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
13459 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
13460 (w32_cached_id, w32_add_to_cache): New functions.
13461 (get_name_and_id): Look account names in the cache before calling
13462 lookup_account_sid.
13463 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
13464 New initialization flags.
13465 (globals_of_w32): Initialize them to zero.
13466 (w32_system_process_attributes): Use w32_cached_id and
13467 w32_add_to_cache.
13468
13469 2008-08-14 Lawrence Mitchell <wence@gmx.li>
13470
13471 * lread.c (Fread_char, Fread_char_exclusive): If no character
13472 event is read before timeout is reached, return nil, rather than
13473 converting to a number.
13474
13475 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
13476
13477 * fns.c (use_dialog_box): Doc fix.
13478
13479 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
13480 on OS X.
13481
13482 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
13483
13484 * frame.c (Qns_parse_geometry): New var.
13485 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
13486
13487 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
13488
13489 * xdisp.c (x_produce_glyphs): Handle the case when font has no
13490 space character in calculating tabs.
13491
13492 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
13493
13494 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
13495
13496 2008-08-10 Glenn Morris <rgm@gnu.org>
13497
13498 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
13499 silence gcc "limited range of data type" warnings in some
13500 make_fixnum_or_float calls.
13501
13502 2008-08-09 Eli Zaretskii <eliz@gnu.org>
13503
13504 * w32.c (w32_system_process_attributes): If the process does not
13505 exist, return nil.
13506
13507 * w32.c: Include thelp32.h, psapi.h and coding.h.
13508 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
13509 declarations.
13510 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
13511 (Process32Next_Proc): New typedefs.
13512 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
13513 (g_b_init_process32_next, g_b_init_open_thread_token)
13514 (g_b_init_impersonate_self, g_b_init_revert_to_self)
13515 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
13516 (g_b_init_get_process_working_set_size)
13517 (g_b_init_global_memory_status_ex): New static variables.
13518 (globals_of_w32): Initialize them.
13519 (create_toolhelp32_snapshot, process32_first, process32_next)
13520 (open_thread_token, impersonate_self, revert_to_self)
13521 (get_process_memory_info, get_process_working_set_size)
13522 (global_memory_status, global_memory_status_ex): New wrapper
13523 functions.
13524 (w32_list_system_processes, w32_system_process_attributes)
13525 (enable_privilege, restore_privilege, ltime, process_times):
13526 New functions.
13527 (convert_time_raw): New function.
13528 (convert_time): Remove conversion of FILETIME into time in 100
13529 nsec units, call convert_time_raw instead.
13530
13531 * process.h (w32_list_system_processes, w32_system_process_attributes):
13532 Add prototypes.
13533 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
13534 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
13535 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
13536 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
13537
13538 * process.c (Fsystem_process_attributes): Doc fix.
13539
13540 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
13541
13542 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
13543 a continued multi-char glyph; if so, advance to the actual glyph.
13544
13545 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
13546
13547 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
13548
13549 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
13550 (.m.o): Use it.
13551 * config.in: Regenerate.
13552
13553 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
13554
13555 * xdisp.c (redisplay_window): Revert last change.
13556 (try_window): Check bottom scroll margin too.
13557
13558 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
13559
13560 * config.in: Regenerate.
13561
13562 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
13563 -list-load-path-shadows'.
13564 (nsgui.h): Reduce number of things depending on it.
13565
13566 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
13567
13568 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
13569 instead of window-end which does the wrong thing at eob.
13570 (try_cursor_movement): Minor optimization.
13571 (redisplay_window): If scroll margin is defined, don't assume
13572 window doesn't need scrolling.
13573
13574 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
13575
13576 * config.in: Regenerate.
13577
13578 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
13579 (mostlyclean): Don't delete *.d under NS.
13580
13581 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
13582
13583 2008-08-06 Kenichi Handa <handa@m17n.org>
13584
13585 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
13586
13587 2008-08-06 Andreas Schwab <schwab@suse.de>
13588
13589 * config.in: Regenerate.
13590
13591 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
13592
13593 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
13594 forcing a window start.
13595
13596 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
13597 (auto_save_1): Update modtime when auto-save-list-file-name is on.
13598
13599 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
13600
13601 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
13602 argument.
13603
13604 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
13605
13606 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
13607 <scroll-down-aggressively, before-change-functions>:
13608 <after-change-functions>: Reflow docstrings.
13609
13610 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
13611 Ken Raeburn <raeburn@gnu.org>
13612
13613 Dock menu customization, based on a patch by Ken Raeburn, plus some
13614 other fixes.
13615 * nsmenu.m (dockMenu): New variable.
13616 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
13617
13618 * nsterm.h (dockMenu): Declare.
13619
13620 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
13621 (ns_term_init): Initialize dockMenu.
13622 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
13623 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
13624 left.
13625
13626 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
13627
13628 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
13629
13630 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
13631
13632 * config.in: Regenerate.
13633
13634 2008-08-04 Seiji Zenitani <zenitani@mac.com>
13635
13636 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
13637
13638 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
13639
13640 * nsterm.h (find_and_call_menu_selection): Fix prototype.
13641
13642 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
13643
13644 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
13645
13646 * keyboard.h: Comment an #endif.
13647
13648 * lisp.h (have_menus_p): Adjust comment.
13649
13650 * menu.c (find_and_return_menu_selection): Fix comparison with
13651 client_data.
13652
13653 * nsmenu.m (popup_activated_flag): New variable.
13654 (popup_activated): New function.
13655 (menu-or-popup-active-p): New exported lisp definition.
13656 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
13657 when popup done.
13658 (ns_popup_dialog): Set popup_activated_flag.
13659
13660 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
13661 version for GNUstep (handled by conditional typedef in nsterm.m).
13662 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
13663 in rgb.txt).
13664
13665 * process.c (init_process): Use DARWIN_OS, not DARWIN.
13666
13667 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
13668
13669 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
13670
13671 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
13672 shortcircuit if popup_activated like GTK and X toolkit.
13673
13674 * m/inter386.h: Change DARWIN to DARWIN_OS.
13675
13676 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
13677 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
13678 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
13679 comment on NO_SOCK_SIGIO.
13680
13681 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
13682
13683 * nsterm.m (windowDidResize): Remove stopModal call.
13684
13685 2008-08-03 Andreas Schwab <schwab@suse.de>
13686
13687 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
13688 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
13689
13690 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
13691
13692 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
13693 Don't use uninitialized pointer variable when using getrlimit.
13694
13695 2008-08-02 Jason Rumney <jasonr@gnu.org>
13696
13697 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
13698
13699 2008-08-02 Eli Zaretskii <eliz@gnu.org>
13700
13701 * alloc.c (NSTATICS): Bump to 0x640.
13702
13703 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
13704
13705 * lisp.h: Add prototype for directory_files_internal.
13706
13707 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
13708 New functions.
13709 (syms_of_process): Defsubr them. Add initializations for various
13710 Q* symbols used in procfs_system_process_attributes.
13711 (procfs_list_system_processes, procfs_system_process_attributes)
13712 [HAVE_PROCFS]: New functions.
13713 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
13714 (procfs_get_total_memory): New functions.
13715
13716 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
13717
13718 * xfaces.c (Fx_load_color_file): Fix previous change;
13719 it is #ifdef WINDOWSNT, not WINDOWS_NT.
13720
13721 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
13722
13723 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
13724
13725 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
13726
13727 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
13728
13729 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
13730
13731 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
13732
13733 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
13734 define NSApplicationDelegateReplySuccess.
13735 (EmacsView -converstationIdentifier): Use long instead of
13736 NSInteger for GNUstep, since it doesn't have NSInteger.
13737
13738 * xmenu.c: Revert last change.
13739
13740 * keyboard.h: Fix last change.
13741
13742 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
13743
13744 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
13745 on Windows.
13746
13747 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
13748
13749 Warning clearing and clean-up in NS port.
13750 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
13751 Add prototypes.
13752 * nsgui.h (FACE_DEFAULT): Remove, unused.
13753 (XGCValues): Change colors to unsigned long.
13754 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
13755 nsterm.m.
13756 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
13757 (ns_list_fonts): Remove, unused.
13758 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
13759 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
13760 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
13761 (nsfont_draw): Compare face colors to 0, not nil.
13762 * nsmenu.m (struct widget_value): Drop unneeded declaration.
13763 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
13764 (-addSubmenuWithTitle:): Use NSMenuItem class.
13765 (ns_popup_menu): Use NO, not NULL, for enabled setting.
13766 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
13767 (ns_clip_to_row): Make gc arg a BOOL.
13768 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
13769 ns_clip_to_row() call.
13770 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
13771 used). Cast FRAME_FONT assignments.
13772 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
13773 (ns_string_to_lispmod): Change arg to const char.
13774 (ns_term_init): Use NSMenuItem class.
13775 (EmacsApp -openFile:): Move to different section of file.
13776 (EmacsApp -application:openFiles:): Don't return a value, call
13777 -replyToOpenOrPrint:.
13778 (EmacsView -keyDown:): Fix up cast.
13779 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
13780 (EmacsView -menuDown:): Cast tag in call to
13781 find_and_call_menu_selection().
13782 (ns_list_fonts): Remove, unused.
13783 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
13784 (ns_fontname_to_xlfd): Make static.
13785 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
13786 Remove prototypes (now in keyboard.h).
13787 (next_menubar_widget_id): Remove, unused.
13788 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
13789 Remove prototypes (now in keyboard.h).
13790 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
13791
13792 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
13793
13794 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
13795 (floatfns.o): Depend on syssignal.h.
13796 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
13797
13798 * systty.h: Fix previous change that removed BSD_TERMIOS.
13799 Add comments to #ifdefs.
13800
13801 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
13802
13803 * w32fns.c (w32-load-color-file): Remove.
13804 (x-open-connection): Use renamed Fx_load_color_file.
13805 * xfaces.c (x-load-color-file): Add.
13806 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
13807 Emacs.clr.
13808 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
13809
13810 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
13811
13812 * dbusbind.c (Fdbus_call_method_asynchronously)
13813 (Fdbus_method_error_internal): New defuns.
13814 (xd_read_message): Handle also reply messages.
13815 (Vdbus_registered_functions_table): Extend docstring.
13816
13817 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
13818
13819 * keyboard.c (gobble_input): Fix previous change.
13820
13821 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
13822
13823 * bitmaps/README:
13824 * xfns.c:
13825 * termcap.c:
13826 * term.c:
13827 * syswait.h:
13828 * systty.h:
13829 * systime.h:
13830 * syssignal.h:
13831 * sysdep.c:
13832 * process.h:
13833 * process.c:
13834 * print.c:
13835 * ndir.h:
13836 * lread.c:
13837 * keyboard.c:
13838 * getpagesize.h:
13839 * floatfns.c:
13840 * fileio.c:
13841 * emacs.c:
13842 * doc.c:
13843 * dispnew.c:
13844 * dired.c:
13845 * data.c:
13846 * callproc.c:
13847 * buffer.c:
13848 * README:
13849 * Makefile.in:
13850 * s/template.h:
13851 * s/msdos.h:
13852 * m/vax.h: Remove VMS support.
13853 * s/vms.h:
13854 * vlimit.h:
13855 * uaf.h:
13856 * temacs.opt:
13857 * param.h:
13858 * ioctl.h: Remove file.
13859
13860 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
13861
13862 * s/ms-w32.h (MULTI_KBOARD): Remove.
13863 * xterm.c:
13864 * xselect.c:
13865 * xfns.c:
13866 * window.c:
13867 * w32term.c:
13868 * w32fns.c:
13869 * terminal.c:
13870 * termhooks.h:
13871 * term.c:
13872 * sysdep.c:
13873 * keyboard.h:
13874 * keyboard.c:
13875 * frame.h:
13876 * frame.c:
13877 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
13878 * config.in: Regenerate.
13879
13880 2008-07-30 Jason Rumney <jasonr@gnu.org>
13881
13882 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
13883
13884 * w32font.c (w32font_encode_char): Leave as unicode if in range.
13885 (w32font_open_internal): Get unicode version of textmetrics.
13886 Don't enable or disable glyph indices here.
13887 (w32font_open): Disable use of glyph indices.
13888
13889 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
13890
13891 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
13892
13893 * minibuf.c (Vread_buffer_function): Doc fix.
13894
13895 2008-07-30 John Paul Wallington <jpw@pobox.com>
13896
13897 * minibuf.c (read_buffer_completion_ignore_case): New var.
13898 (Fread_buffer): Use it.
13899
13900 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
13901
13902 * systty.h (sensemode): Remove empty #if. Remove reference to
13903 BSD_TERMIOS, unused.
13904
13905 * sysdep.c: Remove reference to DGUX.
13906 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
13907
13908 * config.in: Regenerate.
13909
13910 2008-07-30 Jason Rumney <jasonr@gnu.org>
13911
13912 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
13913
13914 2008-07-29 Jason Rumney <jasonr@gnu.org>
13915
13916 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
13917 is populated.
13918 (uniscribe_encode_char): Always use uniscribe.
13919 Avoid using context if cache is populated.
13920
13921 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
13922
13923 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
13924 open menu.
13925
13926 * gtkutil.c (menu_nav_ended): Remove.
13927 (create_menus): Remove signal connect for menu_nav_ended.
13928
13929 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
13930
13931 * xdisp.c (redisplay_window): Check return value of
13932 compute_window_start_on_continuation_line before forcing a window
13933 start.
13934
13935 2008-07-28 Jason Rumney <jasonr@gnu.org>
13936
13937 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
13938
13939 * w32term.c (w32_enable_unicode_output, cleartype_active):
13940 Remove obsolete display options.
13941 (x_draw_glyph_string_background): Don't use old cleartype_active
13942 workaround.
13943 (w32_initialize): Remove cleartype_active initialization.
13944 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
13945
13946 2008-07-28 Andreas Schwab <schwab@suse.de>
13947
13948 * lisp.h (init_weak_hash_tables, syms_of_font)
13949 (xd_read_queued_messages, syms_of_dbusbind): Declare.
13950 (remove_hash_entry): Don't declare.
13951 * eval.c (maybe_call_debugger): Make static and move before use.
13952 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
13953 * xdisp.c: Include "gtkutil.h" if USE_GTK.
13954 * xterm.h (x_set_frame_alpha): Declare.
13955
13956 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
13957
13958 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
13959 (create_menus): Connect selection-done to menu_nav_ended.
13960
13961 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
13962
13963 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
13964 Set Vx_resource_name to a fallback. Replace read of 'buffered'
13965 parameter with read of 'alpha' one.
13966 (Qns_frame_parameter): Remove.
13967 * nsselect.m (selection-coding-system)
13968 (next-selection-coding-system, Vselection_coding_system)
13969 (Vnext_selection_coding_system): Drop.
13970
13971 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
13972
13973 * nsfns.m (do-applescript, do_applescript): Rename to
13974 ns-do-applescript, ns_do_applescript, and move within file.
13975
13976 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
13977
13978 Remove support for Mac Carbon.
13979 * mactoolbox.c:
13980 * macterm.h:
13981 * macterm.c:
13982 * macselect.c:
13983 * macmenu.c:
13984 * macgui.h:
13985 * macfns.c:
13986 * mac.c: Remove file.
13987 * s/darwin.h:
13988 * m/intel386.h:
13989 * xfaces.c:
13990 * xdisp.c:
13991 * window.c:
13992 * tparam.c:
13993 * termhooks.h:
13994 * termcap.c:
13995 * term.c:
13996 * syssignal.h:
13997 * sysselect.h:
13998 * sysdep.c:
13999 * process.c:
14000 * lread.c:
14001 * lisp.h:
14002 * keyboard.c:
14003 * image.c:
14004 * fringe.c:
14005 * frame.h:
14006 * frame.c:
14007 * fontset.c:
14008 * font.h:
14009 * font.c:
14010 * fns.c:
14011 * fileio.c:
14012 * emacs.c:
14013 * dispnew.c:
14014 * dispextern.h:
14015 * config.in:
14016 * atimer.c:
14017 * Makefile.in: Remove code for Carbon.
14018
14019 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14020
14021 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
14022
14023 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14024
14025 * macterm.h (kCGBitmapByteOrder32Host): New define for
14026 non-universal SDKs.
14027
14028 * image.c (mac_create_cg_image_from_image, image_load_image_io)
14029 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
14030
14031 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
14032 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
14033
14034 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
14035
14036 * w32inevt.c: Include dispextern.h.
14037
14038 2008-07-26 Andreas Schwab <schwab@suse.de>
14039
14040 * print.c (print_object): Fix off-by-one in last change.
14041
14042 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
14043
14044 * term.c (syms_of_term): Don't initialize default_orig_pair,
14045 default_set_foreground and default_set_background on Windows.
14046
14047 2008-07-25 Jason Rumney <jasonr@gnu.org>
14048
14049 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
14050 ScriptItemize. Clean up return value checking. Remove unused
14051 variables.
14052 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
14053 shaping engine.
14054
14055 * w32font.c (w32font_has_char): Handle the case where we can't
14056 determine the script for a character.
14057
14058 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
14059
14060 * term.c (syms_of_term): Initialize default_orig_pair,
14061 default_set_foreground, and default_set_background.
14062
14063 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
14064 clash (bug#86).
14065 (getloadavg): Callers changed.
14066
14067 * image.c (svg_load_image): Fix last change.
14068 (svg_load_image): Use rsvg_handle_get_dimensions to check that
14069 image size is valid. Use g_object_unref instead of deprecated
14070 rsvg_handle_free to free rsvg handle.
14071 (x_from_xcolors): Don't initialize pixmap (silence compiler).
14072
14073 2008-07-25 Jason Rumney <jasonr@gnu.org>
14074
14075 * w32font.c (w32font_encode_char): Encode characters outside BMP as
14076 surrogates before looking up glyph index.
14077 (w32font_text_extents): Encode as surrogates if falling back to
14078 functions that need UTF-16 wide chars.
14079
14080 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
14081 BMP as surrogates before looking up glyph index.
14082
14083 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
14084
14085 * image.c (svg_load_image): Check for failure in return value of
14086 rsvg_handle_get_pixbuf. Free rsvg handle when done.
14087
14088 2008-07-25 Jason Rumney <jasonr@gnu.org>
14089
14090 * w32font.c (Fx_select_font): Reverse sense of second arg.
14091
14092 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
14093
14094 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
14095 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
14096
14097 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
14098 (PURESIZE): Use it.
14099
14100 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
14101
14102 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
14103 * m/alpha.h (TEXT_END):
14104 * m/ibmrs6000.h (TEXT_END):
14105 * m/macppc.h (TEXT_END):
14106 * s/darwin.h (TEXT_END):
14107 * s/msdos.h (TEXT_END): Remove, unused.
14108 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
14109 * s/cygwin.h: Remove comment.
14110
14111 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
14112 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
14113 * m/intel386.h (DOT_GLOBAL_START):
14114 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
14115 (USG): Remove, file not used on USG platforms.
14116
14117 * Makefile.in (HAVE_X11): Remove empty #else.
14118
14119 2008-07-24 Andreas Schwab <schwab@suse.de>
14120
14121 * fileio.c (Finsert_file_contents): Properly adjust undo list
14122 after format conversion.
14123
14124 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
14125
14126 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
14127 (menu_nav_ended): Remove.
14128 (create_menus): Remove signal connect for menu_nav_ended.
14129 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
14130 create_menus.
14131 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
14132
14133 2008-07-23 Jason Rumney <jasonr@gnu.org>
14134
14135 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
14136 with opened font.
14137 (w32font_open): Set font type to gdi.
14138
14139 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
14140
14141 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
14142
14143 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
14144 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
14145 defines it.
14146 * unexec.c (ADDR_CORRECT): Define unconditionally.
14147
14148 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
14149
14150 * unexec.c: Remove code depending on !COFF and USG, the file is
14151 not used for such systems.
14152
14153 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
14154 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
14155 (LD_SWITCH_SYSTEM_1): Remove, update users.
14156
14157 * s/darwin.h (DATA_END):
14158 * m/intel386.h (DATA_END):
14159 * m/ibmrs6000.h (DATA_END):
14160 * m/alpha.h (DATA_END): Remove, unused.
14161
14162 * config.in: Regenerate.
14163 * s/ms-w32.h (subprocesses): Define unconditionally.
14164 * s/template.h (subprocesses): Update comment.
14165 * s/vms.h (subprocesses):
14166 * s/usg5-4.h (subprocesses):
14167 * s/hpux10-20.h (subprocesses):
14168 * s/gnu-linux.h (subprocesses):
14169 * s/cygwin.h (subprocesses):
14170 * s/bsd-common.h (subprocesses):
14171 * s/aix4-2.h (subprocesses):
14172 * s/darwin.h (subprocesses): Do not define, defined by default now.
14173
14174 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
14175 Remove all references.
14176 (temacs): Add GNUstep specific ld flags.
14177
14178 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
14179 similarly to what X does.
14180
14181 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
14182
14183 * nsfns.m (x-list-fonts): Remove.
14184 (syms_of_nsfns): Drop the x-list-fonts declaration.
14185 * nsterm.m: Get rid of remaining "//" comments.
14186
14187 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
14188
14189 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
14190
14191 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
14192 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
14193 (Fns_own_selection_internal, Fx_disown_selection_internal)
14194 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
14195
14196 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
14197 ... */' style of docstrings. Doc fixes.
14198
14199 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
14200
14201 * terminfo.c (UP, BC, PC): Undo previous change.
14202
14203 * nsfns.m: Rename ns prefixed functions/variables to the
14204 corresponding x versions. Update references.
14205
14206 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
14207
14208 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
14209
14210 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
14211
14212 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
14213 Remove forwarding functions.
14214 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
14215 non-static.
14216 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
14217 non-static.
14218 (ns_frame_parm_handlers): Use the new names.
14219 (syms_of_nsfns): Move to the end of file.
14220
14221 * nsterm.m (syms_of_nsterm): Move to the end of file.
14222
14223 * dispnew.c (init_display): Remove code for X10.
14224
14225 2008-07-22 Jason Rumney <jasonr@gnu.org>
14226
14227 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
14228 bare drive.
14229
14230 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
14231
14232 * nsterm.m (syms_of_nsterm): Remove debugging println.
14233
14234 2008-07-22 David Reitter <david.reitter@gmail.com>
14235
14236 * nsfns.m (do_applescript, F_do_applescript): NS version of the
14237 Carbon implementation of the same functionality: execute arbitrary
14238 AppleScript code.
14239
14240 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
14241
14242 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
14243 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
14244 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
14245 (Fx_display_mm_height, Fx_display_mm_width)
14246 (Fx_display_backing_store, Fx_display_visual_class)
14247 (Fx_display_save_under, Fx_open_connection)
14248 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
14249 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
14250 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
14251 (Fx_display_pixel_width, Fx_display_pixel_height)
14252 (Fx_display_usable_bounds, Fx_display_planes)
14253 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
14254 ... */' style of docstrings.
14255
14256 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
14257
14258 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
14259 on this platform.
14260 (mips):
14261 * m/iris4d.h (mips): Do not define.
14262 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
14263
14264 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
14265
14266 * image.c:
14267 * nsfns.m:
14268 * nsselect.m:
14269 * nsterm.h:
14270 * nsterm.m: Rename ns prefixed functions/variables to the
14271 corresponding x versions. Update references.
14272
14273 * m/ibms390x.h (NO_REMAP): Do not undefine.
14274
14275 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
14276
14277 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
14278
14279 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
14280 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
14281 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
14282 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
14283 (Fns_display_mm_height, Fns_display_mm_width)
14284 (Fns_display_backing_store, Fns_display_visual_class)
14285 (Fns_display_save_under, Fns_open_connection)
14286 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
14287 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
14288 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
14289 (Fns_display_pixel_width, Fns_display_pixel_height)
14290 (Fns_display_usable_bounds, Fx_display_planes)
14291 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
14292
14293 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
14294
14295 * print.c (print_object): Check print_depth before searching for
14296 circularities.
14297
14298 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
14299
14300 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
14301 only sprintf.
14302
14303 2008-07-21 Kenichi Handa <handa@m17n.org>
14304
14305 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
14306
14307 2008-07-20 Andreas Schwab <schwab@suse.de>
14308
14309 * syntax.c (find_start_pos, find_start_value)
14310 (find_start_value_byte, find_start_begv, find_defun_start)
14311 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
14312
14313 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
14314
14315 * s/sol2-3.h: Insert contents of s/sol2.h.
14316 (LD_SWITCH_SYSTEM): Remove redundant definition.
14317 * s/sol2.h: Remove, unused.
14318
14319 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
14320
14321 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
14322
14323 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
14324
14325 * Makefile.in (ns_appdir): Fix typo in find command.
14326
14327 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
14328
14329 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
14330
14331 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
14332 added not supported anymore.
14333
14334 * s/usg5-4-2.h (LIBS_SYSTEM):
14335 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
14336
14337 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
14338 * s/lynxos.h (GETPGRP_NO_ARG):
14339 * s/hpux10-20.h (NO_SIOCTL_H):
14340 * s/gnu.h (GETPGRP_NO_ARG):
14341 * s/gnu-linux.h (NO_SIOCTL_H):
14342 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
14343 * s/cygwin.h (GETPGRP_NO_ARG):
14344 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
14345 (C_DEBUG_SWITCH): Remove duplicate definition.
14346
14347 * m/ibms390.h: Remove boilerplate comments.
14348
14349 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
14350
14351 * process.c (HAVE_SERIAL): Consolidate ifdefs.
14352 (wait_reading_process_output): Remove code for SunOS, platform not
14353 supported anymore. Use SOLARIS2 instead of sun.
14354
14355 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
14356
14357 * font.c (font_open_by_name): Under NS, default lface height to zero.
14358 (font_open_for_lface): Under NS, set size based on frame fontsize.
14359 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
14360 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
14361
14362 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
14363
14364 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
14365 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
14366 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
14367 YES/NO.
14368 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
14369 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
14370 * Makefile.in (clean): Clear out build destination dir.
14371
14372 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
14373
14374 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
14375 xterm, xselect.
14376 * lisp.h: Remove declaration of hash_remove.
14377 * nsgui.h: Remove redefinitions of hash_remove.
14378 * fns.c (hash_remove): Rename to hash_remove_from_table.
14379
14380 2008-07-19 Seiji Zenitani <zenitani@mac.com>
14381
14382 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
14383 strdup() the family UTF8String before modifying it.
14384
14385 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
14386
14387 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
14388 NS_FACE_BACKGROUND with 0 instead of nil.
14389 * nsfont.m (nsfont_draw): Same.
14390
14391 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
14392
14393 * nsfns.m (ns_set_background_color): Fix crash.
14394
14395 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
14396
14397 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
14398
14399 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
14400
14401 * puresize.h (BASE_PURESIZE): Increase to 1240000.
14402
14403 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14404
14405 * gtkutil.c: Include <config.h> instead of "config.h".
14406
14407 * lisp.h (Foverlay_buffer): Add EXFUN.
14408
14409 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
14410 child process to complete child_setup. Undo 2005-09-21 change.
14411
14412 * s/darwin.h: Mention setsid after vfork.
14413
14414 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14415
14416 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
14417 Depend on macgui.h.
14418
14419 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
14420 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
14421
14422 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
14423 and f19.
14424 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
14425
14426 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
14427 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
14428 Remove enumerators.
14429
14430 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
14431 Check if FACE_FROM_ID returns NULL.
14432
14433 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
14434
14435 * w32inevt.c (change_frame_size): Remove extern declaration.
14436 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
14437 change_frame_size.
14438
14439 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
14440
14441 * getloadavg.c: Revert last change (2008-07-15).
14442
14443 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
14444
14445 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
14446 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
14447 from configure.
14448
14449 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
14450
14451 * s/sol2.h:
14452 * s/sol2-4.h: Reorganize conditionals.
14453
14454 * ecrt0.c: Remove code depending on m68000, not used anymore.
14455
14456 * fns.c (hash_remove): Make static.
14457 * lisp.h (hash_remove): Don't prototype.
14458
14459 * m/ibmrs6000.h:
14460 * m/ibms390x.h:
14461 * m/macppc.h: Remove boilerplate comments.
14462
14463 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
14464 Solaris, which does not need them.
14465
14466 * m/vax.h: Remove comments about unsupported systems.
14467
14468 * s/darwin.h: Reorganize ifdefs.
14469
14470 2008-07-17 Andreas Schwab <schwab@suse.de>
14471
14472 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
14473
14474 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
14475
14476 Use SDATA. Follow coding convention of placing operators at
14477 beginning of next line rather than end of previous line, and placing
14478 spaces around infix operators.
14479
14480 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
14481 in case it was defined already.
14482 USE @GNUSTEP_MAKEFILES@ rather than envvars.
14483 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
14484 ns_default.
14485 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
14486 Lisp_Objects.
14487 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
14488 (ns_defined_color, ns_color_to_lisp): Declare.
14489 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
14490 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
14491 it's accepted even with USE_LISP_UNION_TYPE.
14492 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
14493 (update_frame_tool_bar): Remove apparently obsolete tests for
14494 non-integerness of f->tool_bar_lines.
14495 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
14496 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
14497 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
14498 (nsfont_open): Don't confuse NULL for Qnil.
14499 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
14500 * menu.h (find_and_call_menu_selection):
14501 * menu.c (find_and_call_menu_selection): Use just int for vector size.
14502 (find_and_return_menu_selection): Always return something.
14503 * frame.h: Include dispextern.h for Display_Info.
14504 (display_x_get_resource): Declare.
14505
14506 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
14507
14508 * syntax.c: Remove stdio.h include accidentally introduced in
14509 Emacs.app commit.
14510 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
14511 NS_IMPL_COCOA.
14512 * keyboard.c (handle_async_input, input_available_signal): Remove
14513 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
14514
14515 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
14516
14517 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
14518 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
14519 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
14520 Use SDATA.
14521
14522 * keymap.c: Remove all NS-specific code.
14523 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
14524 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
14525 where_is_preferred_modifier, return a different value depending on how
14526 preferred is the binding.
14527 (where_is_internal): Adjust accordingly.
14528 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
14529 Adjust to new preferred_sequence_p.
14530 (syms_of_keymap): Declare `where-is-preferred-modifier'.
14531 * keyboard.c (parse_solitary_modifier): Not static any more.
14532 * keyboard.h (parse_solitary_modifier): Declare.
14533
14534 2008-07-16 Andreas Schwab <schwab@suse.de>
14535
14536 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
14537 of easymenu.
14538
14539 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
14540
14541 * xdisp.c (move_it_in_display_line): Account for word wrap, so
14542 that we don't move off the line.
14543
14544 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
14545
14546 * keyboard.c (Qsuper): Remove.
14547 (parse_menu_item): Don't call where_is_internal specially for NS.
14548
14549 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
14550
14551 * s/gnu-linux.h: Remove boilerplate comments.
14552
14553 * m/alpha.h (__ELF__): Consolidate conditions.
14554
14555 * m/m68k.h (linux): Use GNU_LINUX instead.
14556 Remove boilerplate comments.
14557
14558 * m/intel386.h: Undo refactoring from previous change.
14559 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
14560 too, remove dead code.
14561 (linux): Use GNU_LINUX instead.
14562
14563 2008-07-16 Jason Rumney <jasonr@gnu.org>
14564
14565 * w32gui.h: Repeat 26 June changes lost by last change.
14566
14567 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
14568
14569 * systty.h: Remove code for Aix on 386, unsupported platform.
14570
14571 * s/ms-w32.h: Remove boilerplate comments.
14572 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
14573
14574 * s/gnu-linux.h (TERM): Remove support.
14575 (HAVE_SYSVIPC): Remove, unused.
14576 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
14577 for this system.
14578
14579 * process.c: Remove support for IRIS, unused.
14580 Remove support for TERM, not relevant anymore.
14581
14582 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
14583 used with the definition.
14584
14585 * s/aix4-2.h (static): Do not undef.
14586
14587 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
14588 only used on Aix.
14589 (HAVE_SYSVIPC): Remove, unused.
14590
14591 * m/hp800.h (CANNOT_DUMP): Do not undef.
14592
14593 * m/alpha.h: Fix comment.
14594
14595 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
14596 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
14597 used by this configuration.
14598 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
14599 * unexec.c: Remove code depending on HPUX and
14600 USG_SHARED_LIBRARIES, not used with this file. Remove code
14601 depending on IRIS, unused. Remove if 0-ed code.
14602
14603 * s/template.h: Remove comments about static.
14604
14605 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
14606 Remove if 0-ed code.
14607 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
14608 were the same as the default.
14609 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
14610 Remove boilerplate comments.
14611 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
14612 (HAVE_SYSVIPC): Remove, unused.
14613 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
14614
14615 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
14616 Remove boilerplate comments.
14617 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
14618 Remove boilerplate comments.
14619 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
14620 Remove boilerplate comments.
14621 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
14622
14623 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
14624 USG systems which do not use DATA_SEG_BITS.
14625 Refactor code. Remove boilerplate comments.
14626
14627 * m/ibms390.h:
14628 * m/m68k.h:
14629 * s/bsd-common.h:
14630 * s/cygwin.h:
14631 * s/darwin.h:
14632 * s/freebsd.h:
14633 * s/gnu.h:
14634 * s/msdos.h: Remove boilerplate comments.
14635
14636 * m/iris4d.h: Remove boilerplate comments and code for systems that
14637 do not use this file.
14638 (IRIS_4D): Remove, unused.
14639
14640 * m/mips.h: Remove boilerplate comments and code for systems that
14641 do not use this file.
14642 (SIGN_EXTEND_CHAR):
14643 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
14644 * unexmips.c: Remove file, unused.
14645
14646 * editfns.c (Fuser_full_name): Replace the only use of
14647 USER_FULL_NAME with its value.
14648 * config.in: Regenerate.
14649
14650 2008-07-16 David Reitter <david.reitter@gmail.com>
14651
14652 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
14653 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
14654
14655 2008-07-16 Glenn Morris <rgm@gnu.org>
14656
14657 * emacs.c (system-type): Doc fix.
14658
14659 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
14660
14661 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
14662 If the cache doesn't work, let's fix it, rather than work around it.
14663
14664 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
14665
14666 * Makefile.in: Correct additions for nsfont.o in last commit.
14667 * nsfont.m: New file (forgot last commit).
14668
14669 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
14670
14671 * callproc.c (set_initial_environment): Initialize
14672 Vprocess_environment under CANNOT_DUMP (fixes crash when
14673 batch-compiling for bootstrap).
14674
14675 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
14676 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14677
14678 * frame.c (make_initial_frame): Call init_frame_faces(f) in
14679 CANNOT_DUMP case -- fix crash due to different init order.
14680
14681 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
14682
14683 Changes and additions for NeXTstep windowing system (Cocoa and
14684 GNUstep) support.
14685
14686 * Makefile.in:
14687 * config.in: Support defines and build commands for NS port.
14688 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
14689 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
14690 * dispextern.h: Include nsgui.h and add needed typedefs under NS
14691 windowing.
14692 (struct face): Add synth_ital field.
14693 * dispnew.c: Include nsterm.h when compiling under NS windowing.
14694 (init_display): Initialize Vinitial_window_system to "ns" when so
14695 compiled.
14696 * emacs.c: Include GSConfig.h when compiling under GNUstep.
14697 (display_arg): Use under NS.
14698 (main): Under NS, allocate autorelease pool and handle command line
14699 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
14700 (standard_args): Add NS-specific args.
14701 (shut_down_emacs): Shut down NS terminal if compiled under NS.
14702 * font.c (DEFAULT_ENCODING): New variable.
14703 (font_find_for_lface): Use it.
14704 (syms_of_font): Load syms_of_nsfont under NS.
14705 * font.h: Declare nsfont_driver when compiled under NS.
14706 * fontset.c: When compiling under NS, include nsterm.h.
14707 (fontset_from_font): Autoconstruct fontset under NS.
14708 * frame.c (various): Under NS, include nsterm.h, add Qns window system
14709 symbol, document and use it.
14710 (do_switch_frame): When for_deletion under Cocoa, add
14711 Fraise_frame(Qnil).
14712 (x_set_frame_parameters): Ensure font attribute changes are picked up.
14713 (x_get_arg): Allow "yes" and "no" as boolean values.
14714 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
14715 Qright under Cocoa.
14716 (focus-follows-mouse): Default to 0 under NS.
14717 * frame.h (enum output_method): Add output_ns.
14718 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
14719 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
14720 (FRAME_WINDOW_P): NS-specific definition.
14721 * fringe.c (max_used_fringe_bitmap): Make public.
14722 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
14723 (getloadavg): Use NeXT code under descendant OS's.
14724 * image.c (includes and header section, x_create_bitmap_from_data)
14725 (x_create_bitmap_from_file, free_bitmap_record, image_background)
14726 (image_background_transparent, x_clear_image_1)
14727 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
14728 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
14729 (x_to_xcolors, x_from_xcolors, x_disable_image)
14730 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
14731 other GUIs, including XPM support using code originally written for
14732 Carbon GUI.
14733 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
14734 using NS API.
14735 (image_ascent): Use font metrics macros instead of direct struct field
14736 access.
14737 * keyboard.c (includes): Add nsterm.h when compiling under NS.
14738 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
14739 Also, handle NS as GTK for menu bar purposes.
14740 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
14741 toolkit where they differ.
14742 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
14743 use cachelist, still needed under NS.
14744 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
14745 (struct widget_value): Define it here for menu.c.
14746 * keymap.c (includes): Include modifier internals.
14747 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
14748 NS.
14749 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
14750 support for preferring sequences using certain modifiers, specified by
14751 the FIRSTONLY argument.
14752 * lisp.h (hash_remove): Rename to avoid name clash when compiling
14753 under NS GNUstep implementation.
14754 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
14755 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
14756 * menu.c: Include nsterm.h under NS.
14757 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
14758 (free_menubar_widget_tree_value, update_submenu_strings)
14759 (find_and_call_menu_selection): Treat NS as X and NT.
14760 (find_and_return_menu_selection): New function, used for popup menus.
14761 * nsgui.h:
14762 * nsterm.h:
14763 * nsfns.m:
14764 * nsimage.m:
14765 * nsmenu.m:
14766 * nsselect.m:
14767 * nsterm.m: New files.
14768 * process.c (wait_reading_process_output): Under NS, call ns_select()
14769 instead of plain select().
14770 * syntax.c (char_quoted): Under NS, avoid a crash when called near
14771 beginning of buffer.
14772 * sysselect.h (init_process): Rename when compiling under Cocoa to
14773 avoid name conflict.
14774 * termhooks.h (display_info): Add ns_display_info to union.
14775 * terminal.c (Fterminal_live_p): Add ns to terminal types.
14776 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
14777 COCOA environment.
14778 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
14779 unexec() signature. (Note, this will dump, but the resulting file
14780 crashes; unexosx is used instead; keeping around for reference and
14781 possible aid in getting dump working under GNUstep.)
14782 * w32gui.h (button_type, widget_value): Remove definitions (now in
14783 keyboard.h).
14784 * window.c: Include nsterm.h when compiling under NS.
14785 * xdisp.c (includes): Include nsterm.h when compiling under NS.
14786 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
14787 other GUI windowing systems.
14788 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
14789 GTK.
14790 (x_consider_frame_title): Under NS, set icon type and frame
14791 modified-state indicator; use ns_set_name_as_filename() when using
14792 formatted title.
14793 (update_window_cursor): Make public when compiling under NS.
14794 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
14795 (hourglass_atimer, Vhourglass_delay
14796 * xfaces.c (header section, init_frame_faces, clear_font_table)
14797 (defined_color, unload_color, x_face_list_fonts)
14798 (prepare_face_for_display): Add NS support parallel to other GUIs.
14799 Emulate GCs like other non-X GUIs.
14800 (split_font_name): Don't lowercase font name under NS.
14801 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
14802 under NS.
14803 * s/darwin.h: Add support for compilation under NS.
14804
14805 2008-07-15 Jason Rumney <jasonr@gnu.org>
14806
14807 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
14808 (w32_show_hourglass): Rename from show_hourglass.
14809 (w32_hide_hourglass): Rename from hide_hourglass.
14810 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
14811 (Vhourglass_delay): Declare extern.
14812 (hourglass_started): Remove.
14813
14814 * xdisp.c (Vhourglass_delay): Remove static.
14815 (hourglass_started, start_hourglass, cancel_hourglass):
14816 Don't include these versions on WINDOWSNT.
14817
14818 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
14819
14820 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
14821 variables (formerly in xfns.c).
14822 (show_hourglass, hide_hourglass): New prototypes (same).
14823 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
14824 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
14825 in xfns.c).
14826 (syms_of_xdisp): Declare/initialize display-hourglass,
14827 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
14828 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
14829 formerly in xfns.c.
14830 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
14831 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
14832 (start_hourglass, cancel_hourglass): Remove.
14833 (show_hourglass, hide_hourglass): Remove prototypes and static
14834 modifiers.
14835 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
14836 hourglass_atimer, hourglass_shown_p declaration/initialization.
14837 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
14838 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
14839 (start_hourglass, cancel_hourglass): Remove.
14840 (show_hourglass, hide_hourglass): Remove prototypes and static
14841 modifiers.
14842 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
14843 hourglass_atimer, hourglass_shown_p declaration/initialization.
14844 * w32fns.c (display_hourglass_p, Vhourglass_delay)
14845 (DEFAULT_HOURGLASS_DELAY): Remove.
14846 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
14847 hourglass_shown_p declaration/initialization.
14848
14849 2008-07-14 Jason Rumney <jasonr@gnu.org>
14850
14851 * w32fns.c (w32_get_arg): Remove wrapper function.
14852 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
14853 directly.
14854 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
14855
14856 2008-07-14 Kenichi Handa <handa@m17n.org>
14857
14858 * xfont.c (xfont_open): Add workaround for X's bug.
14859
14860 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
14861
14862 * fontset.c: Include <stdio.h> unconditionally.
14863
14864 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
14865
14866 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
14867 for filtering.
14868
14869 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
14870
14871 * s/vms.h: Use __GNUC__ instead of _GNUC_.
14872
14873 * m/macppc.h:
14874 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
14875
14876 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default.
14877 (SPECIAL_EMACS_INT):
14878 * m/ia64.h (SPECIAL_EMACS_INT):
14879 * m/amdx86-64.h (SPECIAL_EMACS_INT):
14880 * s/gnu.h (NLIST_STRUCT):
14881 * s/aix4-2.h (X11R5_INHIBIT_I18N):
14882 * s/gnu-linux.h (LINUX):
14883 * s/msdos.h (HAVE_FACES):
14884 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
14885
14886 * systty.h:
14887 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
14888 anymore.
14889
14890 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
14891
14892 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
14893 always defined as int.
14894
14895 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
14896 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
14897 * s/gnu-linux.h (HAVE_WAIT_HEADER):
14898 * s/freebsd.h (HAVE_WAIT_HEADER):
14899 * s/bsd-common.h (HAVE_UNION_WAIT):
14900 * s/aix4-2.h (HAVE_WAIT_HEADER):
14901 * m/mips.h (HAVE_UNION_WAIT):
14902 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
14903 (COFF, static): Do not define, they are undefined later in the file.
14904
14905 * process.c (update_status): Don't use a union.
14906 (status_convert):
14907 (sigchld_handler): Use int instead of WAITTYPE.
14908
14909 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
14910
14911 * indent.c (Fvertical_motion): Restore hscroll before moving to
14912 goal column.
14913
14914 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
14915
14916 * lisp.h: Remove left over code.
14917
14918 2008-07-11 Andreas Schwab <schwab@suse.de>
14919
14920 * lisp.h: Fix logic in last change.
14921
14922 * menu.h: New file.
14923 * menu.c: Include it.
14924 * xmenu.c: Likewise.
14925 * Makefile.in: Update dependencies.
14926
14927 2008-07-11 Kenichi Handa <handa@m17n.org>
14928
14929 * fontset.c (fontset_from_font): Cancel the previous change.
14930
14931 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
14932
14933 * lisp.h:
14934 * w32heap.c:
14935 * emacs.c:
14936 * alloc.c: Replace all references of NO_UNION_TYPE with
14937 USE_LISP_UNION_TYPE.
14938
14939 * m/xtensa.h (NO_UNION_TYPE):
14940 * m/vax.h (NO_UNION_TYPE):
14941 * m/template.h (NO_UNION_TYPE):
14942 * m/sparc.h (NO_UNION_TYPE):
14943 * m/mips.h (NO_UNION_TYPE):
14944 * m/macppc.h (NO_UNION_TYPE):
14945 * m/m68k.h (NO_UNION_TYPE):
14946 * m/iris4d.h (NO_UNION_TYPE):
14947 * m/intel386.h (NO_UNION_TYPE):
14948 * m/ibms390x.h (NO_UNION_TYPE):
14949 * m/ibms390.h (NO_UNION_TYPE):
14950 * m/ibmrs6000.h (NO_UNION_TYPE):
14951 * m/ia64.h (NO_UNION_TYPE):
14952 * m/hp800.h (NO_UNION_TYPE):
14953 * m/arm.h (NO_UNION_TYPE):
14954 * m/amdx86-64.h (NO_UNION_TYPE):
14955 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
14956 defining it the same.
14957
14958 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
14959
14960 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
14961
14962 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
14963
14964 * fileio.c:
14965 * sysdep.c:
14966 * systty.h:
14967 * m/ibmrs6000.h:
14968 * m/iris4d.h:
14969 * s/aix4-2.h:
14970 * s/freebsd.h:
14971 * s/gnu-linux.h:
14972 * s/hpux10-20.h:
14973 * s/hpux11.h:
14974 * s/netbsd.h:
14975 * s/sol2-3.h:
14976 * s/sol2-4.h:
14977 * s/sol2.h:
14978 * s/usg5-4.h:
14979 * s/vms.h: Remove references to unused variables.
14980
14981 2008-07-10 Andreas Schwab <schwab@suse.de>
14982
14983 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
14984 pattern before matching the generic family.
14985
14986 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
14987
14988 * unexec.c:
14989 * s/vms.h:
14990 * s/usg5-4-2.h:
14991 * s/sol2-5.h:
14992 * s/freebsd.h:
14993 * s/darwin.h: Remove dead code.
14994
14995 * m/template.h:
14996 * m/sparc.h:
14997 * m/mips.h:
14998 * m/m68k.h:
14999 * m/iris4d.h:
15000 * m/intel386.h:
15001 * m/ibms390x.h:
15002 * m/ibms390.h:
15003 * m/ia64.h:
15004 * m/hp800.h:
15005 * m/arm.h:
15006 * m/amdx86-64.h: Remove dead code and references to unused
15007 and compiler defined symbols.
15008
15009 * unexmips.c:
15010 * unexelf.c: Remove references to desupported systems.
15011
15012 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
15013
15014 * m/powermac.h: Remove boilerplate comments.
15015 (NO_REMAP): Remove unused definition.
15016
15017 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
15018 define them.
15019
15020 2008-07-10 Kenichi Handa <handa@m17n.org>
15021
15022 * xfont.c (xfont_open): Log the reason of failure.
15023
15024 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
15025
15026 * fontset.c (fontset_get_font_group):
15027 * font.c (font_check_otf): Specify argument types.
15028
15029 2008-07-09 Kenichi Handa <handa@m17n.org>
15030
15031 * coding.c (detect_coding_utf_8): Set detect_info->found only when
15032 non-ASCII char is found.
15033
15034 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
15035 (reorder_font_vector): Change the arg preferred_family to font.
15036 Prefer the spec matching with font.
15037 (fontset_get_font_group): New function.
15038 (fontset_find_font): Change the format of an element of a realized
15039 fontset. Use fontset_get_font_group.
15040 (fontset_font): Try the current fontset, the default fontset, the
15041 fallbacks of the current fontset, and the fallbacks of the default
15042 fontset in this order.
15043 (face_for_char): Delete the shortcut to use the current font.
15044 (fontset_from_font): Don't set fonts for Latin in the fontset.
15045
15046 * font.h (font_make_object, font_match_p): Adjust prototypes.
15047
15048 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
15049
15050 * font.c (font_make_object): New arg entity and pixelsize.
15051 (font_check_otf_features, font_check_otf): New functions.
15052 (font_match_p): Check :lang, :script, and :otf properties.
15053
15054 * xfont.c (xfont_open): Adjust it for the change of
15055 font_make_object.
15056 (xfont_text_extents): Fix initial setting of metrics.
15057
15058 * ftfont.c (struct ftfont_info): New member index, delete member
15059 fc_charset_idx. Make the member order compatible with struct
15060 xftfont_info.
15061 (fc_charset_table): Change charset names to registry names.
15062 (ftfont_pattern_entity): Delete the args registry and
15063 fc_charset_idx. Change the value of :font-entity property
15064 to (FONTNAME . INDEX). Always set :registry property to
15065 `iso10646-1'.
15066 (struct ftfont_cache_data): New struct.
15067 (ftfont_lookup_cache): New arg for_face.
15068 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
15069 (ftfont_driver): Set the member otf_capability.
15070 (ftfont_get_charset): Adjust it for the change of
15071 fc_charset_table.
15072 (OTF_TAG_SYM): New macro.
15073 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
15074 for the change of fc_charset_table.
15075 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
15076 ftfont_pattern_entity. Add FC_INDEX to objset.
15077 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
15078 and ftfont_pattern_entity.
15079 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
15080 font_make_object, struct ftfont_info.
15081 (ftfont_has_char): Use ftfont_get_fc_charset.
15082 (ftfont_otf_features, ftfont_otf_capability): New functions.
15083 (ftfont_shape): Use ftfont_get_otf.
15084 (ftfont_text_extents): Fix initial setting of metrics.
15085
15086 * xftfont.c (struct xftfont_info): New member ft_size. Make the
15087 member order compatible with struct ftfont_info.
15088 (xftfont_open): Add FC_CHARSET to the pattern. Set
15089 xftfont_info->ft_size. Don't unlock the face. Check BDF
15090 properties if appropriate.
15091 (xftfont_close): Unlock the face.
15092 (xftfont_anchor_point, xftfont_shape): Deleted.
15093 (syms_of_xftfont): Don't set members anchor_point and shape of
15094 xftfont_driver.
15095
15096 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
15097 font_make_object.
15098
15099 * w32font.c (w32font_open): Adjust it for the change of
15100 font_make_object.
15101 (w32font_open_internal): Don't set properties of font_object here.
15102
15103 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
15104
15105 * macfns.c (x_create_tip_frame):
15106 * w32fns.c (x_create_tip_frame):
15107 * xfns.c (x_create_tip_frame): Pass parameter argument to
15108 face-set-after-frame-default.
15109
15110 * xfaces.c (Finternal_merge_in_global_face): Save merged
15111 attributes for the default face back into the face vector.
15112
15113 2008-07-08 Andreas Schwab <schwab@suse.de>
15114
15115 * fontset.h: Declare fontset_from_font. Don't declare
15116 new_fontset_from_font and fontset_from_font_name.
15117 * xterm.c: Include "fontset.h".
15118 * Makefile.in (xterm.o): Update dependencies.
15119
15120 2008-07-08 Glenn Morris <rgm@gnu.org>
15121
15122 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
15123 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
15124
15125 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
15126
15127 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
15128 (x_set_frame_parameters): Don't bind it.
15129
15130 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
15131
15132 * w32fns.c (map_w32_filename): Declare extern.
15133
15134 2008-07-07 Jason Rumney <jasonr@gnu.org>
15135
15136 * w32term.c (WS_EX_LAYERED): Define if not already.
15137
15138 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
15139
15140 * xfaces.c (set_font_frame_param): Don't try to set the font
15141 parameter if it is still unspecified in the lface.
15142
15143 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
15144
15145 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
15146 face if it didn't already exist.
15147
15148 * xdisp.c (try_window_id): Give up if word-wrapping is on.
15149
15150 2008-07-05 Andreas Schwab <schwab@suse.de>
15151
15152 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
15153
15154 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
15155
15156 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
15157 word-wrapping.
15158 (IT_DISPLAYING_WHITESPACE): New macro.
15159 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
15160 when word-wrapping. Simplify word-wrapping logic. Use correct
15161 pixel positions when saving copies of the iterator.
15162 (display_line): Use proper wrap point if the last character on a
15163 line was preceded by whitespace.
15164
15165 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
15166
15167 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
15168
15169 2008-07-04 Kenichi Handa <handa@m17n.org>
15170
15171 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
15172
15173 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
15174
15175 2008-07-02 Jason Rumney <jasonr@gnu.org>
15176
15177 * xfns.c (syms_of_xfns): Only define x-select-font when both
15178 HAVE_FREETYPE and USE_GTK.
15179
15180 * xdisp.c (next_element_from_display_vector): Move assignment out
15181 of if statement.
15182
15183 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
15184
15185 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
15186
15187 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
15188 (syms_of_fileio): Initialize and export them.
15189 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
15190
15191 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
15192 (Fsystem_move_file_to_trash): New function.
15193 (syms_of_w32fns): Export it to lisp.
15194
15195 2008-07-01 Jason Rumney <jasonr@gnu.org>
15196
15197 * w32font.c (w32font_text_extents): Don't count overhang as part
15198 of width.
15199
15200 2008-06-30 Miles Bader <miles@gnu.org>
15201
15202 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
15203 Add `avoid_cursor_p' field.
15204
15205 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
15206 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
15207 (append_glyph, append_composite_glyph, produce_image_glyph)
15208 (append_stretch_glyph): Initialize avoid_cursor_p.
15209 (get_it_property): Rename from `get_line_height_property'.
15210 (x_produce_glyphs): Use get_it_property.
15211 (handle_line_prefix, push_display_prop): New functions.
15212 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
15213 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
15214 New variables.
15215 (syms_of_xdisp): Initialize them.
15216
15217 2008-06-30 Kenichi Handa <handa@m17n.org>
15218
15219 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
15220 XftDefaultSubstitute (they are called in XftFontMatch).
15221 (xftfont_open): Fix args to ftfont_font_format.
15222
15223 * ftfont.c (fc_charset_table): New member lang.
15224 (ftfont_resolve_generic_family): New arg pattern.
15225 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
15226 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
15227 (ftfont_open): Fix args to ftfont_font_format.
15228 (ftfont_font_format): New arg filename.
15229
15230 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
15231
15232 * xfaces.c (Finternal_merge_in_global_face): If default face was
15233 modified, realize it again. Update the font face attribute.
15234
15235 2008-06-29 Jason Rumney <jasonr@gnu.org>
15236
15237 * w32term.c (x_set_frame_alpha): Fix logic.
15238
15239 2008-06-29 Kenichi Handa <handa@m17n.org>
15240
15241 * fontset.c (Finternal_char_font): Return font-object instead of
15242 font-name.
15243
15244 * composite.c (get_composition_id): Fix the width calculation for TAB.
15245
15246 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
15247
15248 * indent.c (Fvertical_motion): Properly handle float column arg.
15249
15250 2008-06-28 Jason Rumney <jasonr@gnu.org>
15251
15252 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
15253 (pfnSetLayeredWindowAttributes): New function pointer.
15254 (w32_initialize): Initialize it when supported.
15255 (x_set_frame_alpha): New function.
15256
15257 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
15258 (w32_frame_parm_handlers): Set alpha handler.
15259
15260 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
15261
15262 2008-06-27 Jason Rumney <jasonr@gnu.org>
15263
15264 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
15265 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
15266 (w32_to_x_charset, x_to_w32_charset)
15267 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
15268 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
15269 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
15270 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
15271 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
15272 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
15273 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
15274 (Qw32_charset_unicode): Remove.
15275 (syms_of_w32fns): Update for above changes.
15276
15277 * w32font.c (w32_to_x_charset, x_to_w32_charset)
15278 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
15279 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
15280 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
15281 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
15282 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
15283 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
15284 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
15285 (syms_of_w32font): Update for above changes.
15286
15287 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
15288
15289 * s/usg5-4.h: Fix previous change: keep the correct branch of a
15290 removed #if.
15291 (USG_SHARED_LIBRARIES): Remove duplicate definition.
15292
15293 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
15294 Eli Zaretskii <eliz@gnu.org>
15295
15296 * makefile.w32-in (LOCAL_FLAGS):
15297 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
15298
15299 * sysdep.c (_spawnlp, _getpid):
15300 Declare with explicit _cdecl instead of _CRTAPI1.
15301
15302 * editfns.c (Fget_internal_run_time):
15303 Check for WINDOWSNT with #ifdef, not #if.
15304
15305 2008-06-26 Jason Rumney <jasonr@gnu.org>
15306
15307 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
15308
15309 * w32term.c (x_draw_glyph_string_foreground)
15310 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
15311 Use FONT_HANDLE macro.
15312 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
15313
15314 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
15315 (uniscribe_encode_char): Use FONT_HANDLE macro.
15316
15317 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
15318 (w32font_text_extents): Use precast w32_font.
15319 (w32font_close): Free cached metrics.
15320 (w32font_open_internal): Allocate space for name on stack.
15321
15322 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
15323
15324 * xdisp.c (extend_face_to_end_of_line): Fix last change.
15325
15326 2008-06-26 Jason Rumney <jasonr@gnu.org>
15327
15328 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
15329 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
15330
15331 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
15332
15333 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
15334
15335 2008-06-26 Jason Rumney <jasonr@gnu.org>
15336
15337 * w32bdf.c, w32bdf.h: Remove obsolete files.
15338
15339 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
15340
15341 * w32gui.h: Don't include w32bdf.h.
15342 (XCharStruct, enum w32_char_font_type, W32FontStruct):
15343 Remove obsolete font support.
15344
15345 * w32font.h (struct w32font_info): Remove compat_w32_font.
15346 Add hfont member.
15347 (FONT_COMPAT): Remove obsolete macro.
15348
15349 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
15350 (w32font_encode_char, w32font_text_extents): Use new hfont member.
15351 (w32font_open_internal): Remove compat code. Set new hfont member.
15352 (Fx_select_font): Use new hfont member.
15353
15354 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
15355 (uniscribe_encode_char): Use new hfont member.
15356
15357 * w32term.c (x_draw_glyph_string_foreground)
15358 (x_draw_composite_glyph_string_foreground): Use new hfont member.
15359 (x_draw_glyph_string): Use metrics in w32font_info.
15360
15361 2008-06-26 Kenichi Handa <handa@m17n.org>
15362
15363 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
15364
15365 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
15366
15367 * unexnext.c:
15368 * m/ews4800.h:
15369 * m/hp9000s300.h:
15370 * m/ibm370aix.h:
15371 * m/mips-siemens.h:
15372 * m/ncr386.h:
15373 * m/next.h:
15374 * m/pmax.h:
15375 * m/powerpcle.h:
15376 * m/tandem-s2.h:
15377 * s/386bsd.h:
15378 * s/bsd386.h:
15379 * s/bsd4-1.h:
15380 * s/bsd4-2.h:
15381 * s/bsdos2-1.h:
15382 * s/bsdos2.h:
15383 * s/bsdos3.h:
15384 * s/bsdos4.h:
15385 * s/nextstep.h:
15386 * s/ultrix4-3.h:
15387 * s/usg5-0.h:
15388 * s/usg5-2-2.h:
15389 * s/usg5-2.h:
15390 * s/usg5-4-3.h:
15391 * s/ux4800.h:
15392 * s/uxpds.h:
15393 * s/uxpv.h: Remove support for obsolete systems.
15394 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
15395 Remove, insert contents in s/hpux10-20.h.
15396 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
15397 Remove, insert contents in s/aix4-2.h.
15398 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
15399 * s/bsd4-3.h: Rename to ...
15400 * s/bsd-common.h: ... this.
15401 * data.c:
15402 * doc.c:
15403 * ecrt0.c:
15404 * emacs.c:
15405 * fileio.c:
15406 * floatfns.c:
15407 * keyboard.c:
15408 * mem-limits.h:
15409 * print.c:
15410 * process.c:
15411 * sysdep.c:
15412 * syssignal.h:
15413 * systty.h:
15414 * syswait.h:
15415 * term.c:
15416 * unexec.c:
15417 * unexelf.c:
15418 * unexhp9k800.c:
15419 * m/hp800.h:
15420 * m/ibmrs6000.h:
15421 * m/mips.h:
15422 * m/vax.h:
15423 * s/darwin.h:
15424 * s/freebsd.h:
15425 * s/gnu.h:
15426 * s/ms-w32.h:
15427 * s/msdos.h:
15428 * s/netbsd.h:
15429 * s/template.h: Remove references to obsolete variables.
15430
15431 * Makefile.in: Add dependencies for all unexec files.
15432 (admindir): Remove unused variable.
15433 (UNEXEC_SRC): Remove references.
15434
15435 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
15436
15437 * xfns.c (x_default_font_parameter): If Xft is available, first
15438 try Monospace-12 for the default font.
15439
15440 2008-06-25 Jason Rumney <jasonr@gnu.org>
15441
15442 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
15443
15444 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
15445
15446 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
15447
15448 * buffer.c (syms_of_buffer): Remove default-word-wrap.
15449
15450 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
15451
15452 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
15453 <scroll-conservatively>: Fix typo in docstring.
15454
15455 * xselect.c (Fx_send_client_event): Doc fix.
15456
15457 2008-06-25 Kenichi Handa <handa@m17n.org>
15458
15459 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
15460
15461 * font.c (font_parse_fcname): Remove unused variables.
15462 (font_sort_entites): Delete the arg SPEC. Caller changed.
15463 Fix for the case of ! best_only.
15464 (font_delete_unmatched): Check DPI and AVGWIDTH too.
15465
15466 * lisp.h (Fstring_to_unibyte): EXFUN it.
15467
15468 * character.h (str_to_unibyte): Extern it.
15469
15470 * character.c (str_to_unibyte): New function.
15471
15472 * fns.c (Fstring_to_unibyte): New function.
15473 (syms_of_fns): Defsubr it.
15474
15475 2008-06-24 Kenichi Handa <handa@m17n.org>
15476
15477 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
15478 DPI too.
15479 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
15480
15481 2008-06-24 Andreas Schwab <schwab@suse.de>
15482
15483 * Makefile.in (${lispsource}loaddefs.el): Rename from
15484 ../lisp/loaddefs.el.
15485 (bootstrap-clean): Do what distclean does but don't remove
15486 Makefile.
15487 (distclean): Depend on bootstrap-clean and remove Makefile.
15488
15489 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
15490
15491 * buffer.h (struct buffer): New member word_wrap.
15492
15493 * buffer.c (syms_of_buffer): New variables default-word-wrap and
15494 word-wrap.
15495 (init_buffer_once): Initialize them.
15496
15497 * dispextern.h (struct it): Replace bool truncate_lines_p with a
15498 line_wrap enum possessing three possible values.
15499
15500 * termopts.h: Replace truncate_partial_width_windows with
15501 Vtruncate_partial_width_windows.
15502
15503 * dispnew.c (direct_output_for_insert): Avoid direct output when
15504 inserting a space with word wrap on.
15505
15506 * indent.c (compute_motion): Obey integer values of
15507 truncate-partial-width-windows.
15508
15509 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
15510 replacing truncate_partial_width_windows.
15511 (init_iterator): If Vtruncate_partial_width_windows is an integer,
15512 truncate only if the window width is below that integer.
15513 (start_display, resize_mini_window, produce_stretch_glyph)
15514 (display_string, move_it_in_display_line_to): Use line_wrap.
15515 (back_to_previous_visible_line_start, reseat_1): Reset
15516 string_from_display_prop_p.
15517 (display_line): Extend default face to end of line when wrapping.
15518
15519 2008-06-24 Kim F. Storm <storm@cua.dk>
15520
15521 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
15522 to wrap continued lines at word boundaries.
15523
15524 2008-06-24 Jason Rumney <jasonr@gnu.org>
15525
15526 * font.c (Ffont_face_attributes): Multiply pixel size before point
15527 conversion to avoid multiplying rounding error.
15528
15529 2008-06-23 Jason Rumney <jasonr@gnu.org>
15530
15531 * w32term.c (x_draw_glyph_string_background)
15532 (x_draw_glyph_string): Remove old bdf font code.
15533
15534 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
15535
15536 2008-06-22 Kenichi Handa <handa@m17n.org>
15537
15538 * font.c (font_find_for_lface): Try the adstyle specified in
15539 the property of LFACE_FONT of LFACE (if any).
15540
15541 2008-06-21 Seiji Zenitani <zenitani@mac.com>
15542 Ryo Yoshitake <ryo@shiftmode.net>
15543
15544 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
15545
15546 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
15547
15548 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
15549 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
15550 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
15551 (witness-emacs): Remove.
15552 (lisp, shortlisp): Move loaddefs.el earlier.
15553 (mostlyclean): Forget about witness-emacs.
15554
15555 2008-06-22 Glenn Morris <rgm@gnu.org>
15556
15557 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
15558 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
15559
15560 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
15561
15562 * Makefile.in (PRECOMP): Remove.
15563 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
15564 (witness-emacs): Run `compile-first'.
15565 (.el.elc): Use the new compile-onefile target.
15566
15567 2008-06-21 Kenichi Handa <handa@m17n.org>
15568
15569 * xftfont.c (xftfont_open): Handle QCembolden only when
15570 FC_EMBOLDEN is defined.
15571
15572 2008-06-21 Andreas Schwab <schwab@suse.de>
15573
15574 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
15575 (.el.elc): Likewise.
15576
15577 2008-06-21 Miles Bader <miles@gnu.org>
15578
15579 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
15580 build dir, not the lisp source dir.
15581
15582 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
15583
15584 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
15585 (bootstrapclean): Remove.
15586 (.el.elc): New rule.
15587 (PRECOMP): New var.
15588 (../lisp/subdirs.el): Remove.
15589 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
15590 (witness-emacs): New target.
15591 (mostlyclean): Remove witness-emacs as well.
15592 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
15593 Add witness-emacs dependency.
15594
15595 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
15596
15597 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
15598 defined by the font.
15599
15600 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
15601
15602 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
15603 (bootstrap-clean): New target that keeps TAGS around.
15604 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
15605 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
15606
15607 2008-06-20 Jason Rumney <jasonr@gnu.org>
15608
15609 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
15610 Remove obsolete font code.
15611
15612 * w32font.c (font_matches_spec): Use csb bitfield from font signature
15613 to determine language support.
15614
15615 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
15616
15617 * sysdep.c (cfsetspeed): New fun extracted from the code.
15618 (cfmakeraw): Move before first use.
15619
15620 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
15621
15622 * sysdep.c (cfmakeraw): Provide fallback implementation.
15623 (serial_configure): Provide fallback implementation of cfsetspeed.
15624
15625 2008-06-20 Kenichi Handa <handa@m17n.org>
15626
15627 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
15628 the pattern.
15629
15630 * fontset.c (fontset_from_font): Copy font_spec before changing
15631 the elements.
15632
15633 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
15634
15635 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
15636
15637 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
15638 for explicit `font' parameters.
15639
15640 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
15641
15642 2008-06-19 Kenichi Handa <handa@m17n.org>
15643
15644 * frame.c: Include <ctype.h>.
15645 (x_set_font_backend): Allow spacing characters in the X resource
15646 for FontBackend.
15647
15648 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
15649
15650 * w32fns.c, xfns.c (Qfont_param): New var.
15651 (syms_of_w32fns): Initialize it.
15652 (x_default_font_parameter): Record explicit `font' into
15653 `font-parameter'.
15654
15655 2008-06-18 Kenichi Handa <handa@m17n.org>
15656
15657 * font.c (font_parse_xlfd): Fix previous change.
15658 (font_parse_fcname): Don't use :fc-unknown-spec.
15659 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
15660 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
15661 (font_add_log): Prepend the driver name to the resulting fonts.
15662
15663 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
15664 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
15665 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
15666
15667 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
15668 (QCembolden): New variables.
15669 (syms_of_xftfont): DEFSYM them.
15670 (xftfont_open): Call XftFontMatch. Don't trust the result of
15671 XftTextExtents8 if the pixel_size is less than 5.
15672
15673 2008-06-18 Andreas Schwab <schwab@suse.de>
15674
15675 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
15676 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
15677
15678 2008-06-18 Jason Rumney <jasonr@gnu.org>
15679
15680 * w32font.c (w32font_list, w32font_match): Add logging.
15681
15682 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
15683
15684 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
15685
15686 * font.c (font_parse_fcname): Store divider characters for
15687 unknown-spec list. For known key symbols, intern using correct
15688 symbol name.
15689
15690 2008-06-17 Kenichi Handa <handa@m17n.org>
15691
15692 * xfaces.c (realize_default_face): If the frame is not on window
15693 system, set the fontset of face to nil.
15694
15695 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
15696
15697 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
15698
15699 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
15700
15701 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
15702 (build_font_name_from_vector): Delete externs.
15703
15704 * xfaces.c (struct font_name): Don't declare.
15705
15706 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
15707
15708 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
15709
15710 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
15711
15712 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
15713
15714 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
15715
15716 * font.c (Ffont_spec): Fix usage in docstring.
15717 (Ffont_face_attributes): Doc fix.
15718
15719 2008-06-16 Andreas Schwab <schwab@suse.de>
15720
15721 * font.c (Ffont_face_attributes): Fix definition.
15722
15723 2008-06-16 Jason Rumney <jasonr@gnu.org>
15724
15725 * font.h (font_style_symbolic_from_value): Remove.
15726
15727 * font.c (font_style_symbolic_from_value): Remove.
15728 (font_style_symbolic): Revert to pre 2008-06-13 version.
15729
15730 * w32font.c (w32_to_fc_weight): New function.
15731 (w32font_full_name, logfont_to_fcname): Use it.
15732
15733 2008-06-16 Kenichi Handa <handa@m17n.org>
15734
15735 * font.c (font_check_object): Delete it.
15736 (font_clear_cache): Check if a font-object is alive.
15737 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
15738 font-object to nil.
15739 (font_close_object): Don't check FONT_CLOSE_OBJECT.
15740 (font_at): Don't call font_check_object.
15741 (Ffont_get): Return a symbol for :weight, :slant, and :width.
15742
15743 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
15744
15745 * puresize.h (BASE_PURESIZE): Increase to 1230000.
15746
15747 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
15748
15749 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
15750
15751 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
15752
15753 * font.c (font_parse_fcname): Only one decimal point.
15754 (font_unparse_fcname): Handle data in family and foundry indices
15755 as symbols, not strings.
15756 (font_unparse_gtkname, Ffont_face_attributes): New functions.
15757
15758 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
15759
15760 * font.h (font_unparse_gtkname): Add prototype.
15761
15762 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
15763
15764 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
15765
15766 2008-06-15 Andreas Schwab <schwab@suse.de>
15767
15768 * font.c (font_update_drivers): Fix crash when no drivers match.
15769
15770 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
15771
15772 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
15773 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
15774
15775 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
15776
15777 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
15778
15779 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
15780
15781 * process.c (Fserial_process_configure, Fprocess_send_eof):
15782 Use EQ to compare Lisp_Objects.
15783
15784 2008-06-13 Jason Rumney <jasonr@gnu.org>
15785
15786 * w32fns.c (Fw32_select_font): Remove old font API function.
15787
15788 * w32font.c (logfont_to_fcname): New function.
15789 (Fx_select_font): New font dialog function compatible with
15790 GTK/fontconfig version.
15791
15792 * font.c (font_style_symbolic_from_value): New function.
15793 (font_style_symbolic): Use it.
15794
15795 * font.h (font_style_symbolic_from_value): Declare new function.
15796
15797 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
15798
15799 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
15800 <font-width-table>: Fix typos in docstrings.
15801
15802 2008-06-13 Daniel Engeler <engeler@gmail.com>
15803
15804 These changes add serial port access.
15805 * process.c: Add HAVE_SERIAL.
15806 (Fdelete_process, Fprocess_status, Fset_process_buffer)
15807 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
15808 (list_processes_1, select_wrapper, Fstop_process)
15809 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
15810 (status_notify): Modify to handle serial processes.
15811 [HAVE_SERIAL] (Fserial_process_configure)
15812 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
15813 New functions.
15814 * process.h (struct Lisp_Process): Add `type'.
15815 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
15816 New functions.
15817 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
15818 serial ports.
15819 (serial_open, serial_configure): New functions.
15820 * w32.h: Add FILE_SERIAL.
15821 (struct _child_process): Add ovl_read, ovl_write.
15822
15823 2008-06-13 Kenichi Handa <handa@m17n.org>
15824
15825 * dispextern.h (enum lface_attribute_index): New member
15826 LFACE_FOUNDRY_INDEX.
15827
15828 * font.c (font_score): Delete arg alternate_families. Check only
15829 weight, slant, width, and size. Ignore the difference of alias
15830 style symbols.
15831 (font_sort_entites): Adjust for the above change. Reflect the
15832 order of font-driver to scores.
15833 (font_list_entities): Don't check alternate_familes here.
15834 (font_clear_prop): Handle foundry.
15835 (font_update_lface): Don't parse "foundry-family" form here.
15836 Handle FONT_FOUNDRY_INDEX.
15837 (font_find_for_lface): Likewise. Handle alternate families here.
15838 If registry is nil, try iso8859-1 and ascii-0.
15839 (font_open_for_lface): Pay attention to size in ENTITY.
15840 (font_open_by_name): Simplify by calling font_load_for_lface.
15841 (free_font_driver_list): Delete it.
15842 (font_update_drivers): Preserve the order of backends.
15843 (syms_of_font): Setting of sort_shift_bits adjusted for the change
15844 of font_score and font_sort_entites.
15845 (font_update_sort_order): Likewise.
15846
15847 * xfaces.c (LFACE_FOUNDRY): New macro.
15848 (check_lface_attrs): Check foundry.
15849 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
15850 (merge_face_vectors): Check foundry.
15851 (merge_face_ref): Likewise.
15852 (Finternal_set_lisp_face_attribute): Likewise.
15853 (x_update_menu_appearance): Likewise.
15854 (Finternal_get_lisp_face_attribute): Likewise.
15855 (lface_hash): Likewise.
15856 (lface_same_font_attributes_p): Likewise.
15857 (x_supports_face_attributes_p): Likewise.
15858 (tty_supports_face_attributes_p): Likewise.
15859 (Finternal_set_alternative_font_family_alist): Intern strings.
15860 (Finternal_set_alternative_font_registry_alist): Downcase strings.
15861 (realize_default_face): Set LFACE_FOUNDRY (lface).
15862
15863 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
15864 font-driver at first.
15865
15866 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
15867
15868 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
15869
15870 * lread.c (Fload): Use xfree, not free on saved_doc_string.
15871
15872 2008-06-12 Jim Meyering <meyering@redhat.com>
15873
15874 Make unexec_free handle NULL the same way free does.
15875 * unexmacosx.c (unexec_free): Ignore a NULL argument.
15876
15877 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
15878
15879 * character.h (CHAR_TO_BYTE_SAFE): New macro.
15880 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
15881 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
15882 (WEAK_ALIAS): Simplify.
15883 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
15884 when searching a unibyte buffer.
15885
15886 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
15887
15888 * xfns.c (Fx_select_font): Rename from x-font-dialog.
15889
15890 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
15891
15892 * w32font.c: Include ctype.h.
15893
15894 2008-06-11 Jason Rumney <jasonr@gnu.org>
15895
15896 * w32font.c (w32font_encode_char): Detect missing glyphs that are
15897 misreported as space.
15898 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
15899 as aliases for registry iso10646-1.
15900
15901 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
15902
15903 * buffer.c (clone_per_buffer_values): Skip `name'.
15904
15905 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
15906
15907 * font.c (font_parse_fcname): Fix last change; accept decimal
15908 points in font size.
15909
15910 2008-06-10 Jason Rumney <jasonr@gnu.org>
15911
15912 * w32uniscribe.c (add_opentype_font_name_to_list):
15913 Skip non unicode fonts.
15914
15915 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
15916
15917 * xfns.c (Fx_font_dialog): New function.
15918
15919 * gtkutil.c (xg_dialog_response_cb): Rename from
15920 xg_file_response_callback.
15921 (pop_down_dialog): Rename from pop_down_file_dialog.
15922 (xg_get_file_name): Callers changed.
15923 (xg_get_font_name): New function.
15924
15925 * gtkutil.h (xg_get_font_name): Insert prototype.
15926
15927 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
15928
15929 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
15930 x_underline_minimum_display_offset.
15931 (syms_of_xdisp): Declare it here rather than in xterm.c.
15932 * dispextern.h (underline_minimum_offset): Declare it.
15933 * w32term.c (x_draw_glyph_string): Use it.
15934 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
15935 (syms_of_xterm): Don't declare it any more.
15936 (x_draw_glyph_string): Adjust to the new name.
15937
15938 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
15939
15940 * xterm.c (x_underline_minimum_display_offset): New var.
15941 (x_draw_glyph_string): Use it.
15942 (syms_of_xterm): Declare it.
15943
15944 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
15945
15946 * font.c (font_parse_fcname): Accept GTK-style font names too.
15947
15948 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
15949
15950 * dired.c (file_name_completion): Don't return t if the match is exact
15951 but with different capitalization.
15952 * minibuf.c (Ftry_completion): Simplify.
15953
15954 * window.c (Vwindow_point_insertion_type): New var.
15955 (set_window_buffer): Use it.
15956 (syms_of_window): Init and export it to Lisp.
15957
15958 2008-06-10 Kenichi Handa <handa@m17n.org>
15959
15960 * font.h (font_intern_prop): Prototype adjusted.
15961
15962 * font.c (font_intern_prop): New arg force_symbol.
15963 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
15964 Adjust for the change of font_intern_prop.
15965
15966 * ftfont.c (ftfont_pattern_entity):
15967 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
15968 (w32_registry):
15969 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
15970 the change of font_intern_prop.
15971
15972 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
15973
15974 * w32menu.c (digest_single_submenu): Declare extern.
15975
15976 2008-06-09 Jason Rumney <jasonr@gnu.org>
15977
15978 * w32term.c (x_make_frame_visible): Use alternate restore flags.
15979
15980 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
15981 (parse_single_submenu): Remove.
15982 (digest_single_submenu): Remove.
15983 (syms_of_w32menu): Don't initialise variables that have moved
15984 to menu.c.
15985 (set_frame_menubar): Sync with version in xmenu.c.
15986 (w32_menu_show): Sync with xmenu_show in xmenu.c.
15987
15988 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
15989 Make static again.
15990
15991 2008-06-09 Jason Rumney <jasonr@gnu.org>
15992
15993 Changes to w32 files related to the move of common menu code
15994 to menu.c on 2008-06-08 by Chong Yidong.
15995
15996 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
15997 defs to w32gui.h.
15998 (single_keymap_panes, push_menu_item, push_menu_pane):
15999 Make globally visible.
16000
16001 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
16002 (local_free, malloc_widget_value, free_widget_value)
16003 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
16004 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
16005 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
16006 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
16007 (menu_items, menu_items_allocated, menu_items_used)
16008 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
16009 (init_menu_items, finish_menu_items, discard_menu_items)
16010 (grow_menu_items, push_submenu_start, push_submenu_end)
16011 (push_left_right_boundary, push_menu_pane, push_menu_item)
16012 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
16013 (free_menubar_widget_tree_value, parse_single_submenu)
16014 (update_submenu_strings): Remove functions.
16015 (xmalloc_widget_value): Remove and declare extern.
16016
16017 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
16018 (OBJ1): Build it.
16019
16020 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
16021 (local_heap, local_alloc, local_free, malloc_widget_value)
16022 (free_widget_value): Define here.
16023
16024 2008-06-09 Kenichi Handa <handa@m17n.org>
16025
16026 * font.h (Qascii_0): Extern it.
16027
16028 * font.c (Qascii_0): New variable.
16029 (syms_of_font): DEFSYM it.
16030 (font_open_by_name): If the registry "iso8859-1" fails, try also
16031 "ascii-0".
16032
16033 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
16034
16035 2008-06-08 Kenichi Handa <handa@m17n.org>
16036
16037 * .gdbinit (xfont): New command.
16038
16039 2008-06-08 Andreas Schwab <schwab@suse.de>
16040
16041 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
16042 * Makefile.in (menu.o): Update dependencies.
16043
16044 * Makefile.in (obj): Always add menu.o.
16045 * emacs.c (main): Always call syms_of_menu.
16046 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
16047
16048 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
16049
16050 * Makefile.in: Compile menu.c.
16051
16052 * lisp.h: Declare syms_of_menu.
16053
16054 * emacs.c (main): Call syms_of_menu.
16055
16056 * keyboard.h: Relocate platform-independent menu definitions from
16057 xmenu.c.
16058
16059 * menu.c: New file. Relocate platform-independent menu
16060 definitions from xmenu.c. Suggested by Adrian Robert.
16061
16062 * xmenu.c: Remove platform-independent menu definitions.
16063 (menu_items, menu_items_inuse, menu_items_allocated)
16064 (menu_items_used, menu_items_n_panes)
16065 (menu_items_submenu_depth): Move to keyboard.h.
16066 (init_menu_items, finish_menu_items, unuse_menu_items)
16067 (discard_menu_items, restore_menu_items, save_menu_items)
16068 (grow_menu_items, push_submenu_start, push_submenu_end)
16069 (push_left_right_boundary, push_menu_pane, push_menu_item)
16070 (keymap_panes, single_keymap_panes, single_menu_item)
16071 (list_of_panes, list_of_items, find_and_call_menu_selection)
16072 (xmalloc_widget_value, free_menubar_widget_value_tree)
16073 (parse_single_submenu, digest_single_submenu)
16074 (update_submenu_strings): Move to menu.c.
16075
16076 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
16077
16078 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
16079
16080 2008-06-06 Miles Bader <miles@gnu.org>
16081
16082 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
16083 face, not frame default.
16084
16085 2008-06-05 Martin Rudalics <rudalics@gmx.at>
16086
16087 * window.c (pop_up_windows, pop_up_frames)
16088 (display_buffer_reuse_frames, Vpop_up_frame_function)
16089 (Vdisplay_buffer_function, Veven_window_heights)
16090 (Vspecial_display_buffer_names, Vspecial_display_regexps)
16091 (Vspecial_display_function, Vsame_window_buffer_names)
16092 (Vsame_window_regexps, split_height_threshold)
16093 (Vsplit_window_preferred_function): Move those vars to window.el.
16094 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
16095 (Fdisplay_buffer): Move those functions to window.el.
16096 (syms_of_window): Remove corresponding declarations.
16097 (display_buffer): New function.
16098 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
16099 * dispnew.c (Flast_nonminibuf_frame): New function.
16100 * buffer.c (Fpop_to_buffer): Move to window.el.
16101
16102 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
16103
16104 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
16105
16106 2008-06-05 Kenichi Handa <handa@m17n.org>
16107
16108 * coding.c (detect_coding): Fix previous change.
16109 (detect_coding_system): Likewise.
16110
16111 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
16112
16113 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
16114
16115 * keymap.c (Vminibuffer_local_filename_must_match_map):
16116 Rename from Vminibuffer_local_must_match_filename_map.
16117 (syms_of_keymap):
16118 * minibuf.c (Fcompleting_read): Adjust accordingly.
16119 * commands.h: Rename declaration as well.
16120
16121 2008-06-05 Kenichi Handa <handa@m17n.org>
16122
16123 * font.c (Ffont_spec): Don't use font_parse_family_registry for
16124 family name.
16125 (Ffont_put): Likewise.
16126
16127 * fontset.c (fontset_find_font): Call font_open_for_lface with the
16128 current font-spec.
16129
16130 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
16131 is unspecified.
16132
16133 * xfaces.c (realize_x_face): If the font-related face attributes
16134 are the same as those of default face, realize a new fontset from
16135 default->fontset.
16136 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
16137
16138 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
16139
16140 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
16141 (move_it_in_display_line): New wrapper.
16142
16143 * window.c (window_scroll_pixel_based_preserve_x)
16144 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
16145 (window_scroll_pixel_based, window_scroll_line_based):
16146 Use them to preserve column positions.
16147 (syms_of_window): Initialize them.
16148
16149 * indent.c (Fvertical_motion): Extend first arg to allow passing an
16150 (HPOS . VPOS) pair.
16151
16152 * dispextern.h (move_it_in_display_line): Declare.
16153
16154 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
16155
16156 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
16157 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
16158 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
16159
16160 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
16161
16162 * window.c (Fset_window_parameter): Doc fix.
16163 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
16164
16165 2008-06-04 Joakim Verona <joakim@verona.se>
16166
16167 * window.h (struct window): Add new member window_parameters.
16168
16169 * window.c (Fwindow_parameters, Fwindow_parameter)
16170 (Fset_window_parameter): New defuns.
16171 (syms_of_window): Defsubr the new defuns.
16172 (make_window): Initialize window_parameters to nil.
16173
16174 2008-06-04 John Paul Wallington <jpw@pobox.com>
16175
16176 * eval.c (Fdefmacro): Doc fix.
16177
16178 2008-06-04 Kenichi Handa <handa@m17n.org>
16179
16180 * coding.c (detect_coding): Fix handling of coding->head_ascii.
16181 Be sure to call setup_coding_system when we find a proper coding system.
16182 (detect_coding_system): Fix handling of coding->head_ascii.
16183
16184 2008-06-03 Andreas Schwab <schwab@suse.de>
16185
16186 * font.c (font_prop_validate_spacing): Fix last change.
16187
16188 2008-06-03 Kenichi Handa <handa@m17n.org>
16189
16190 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
16191 (font_parse_fcname): Fix handling of unknown key.
16192
16193 * xfont.c (xfont_list): Try an alias.
16194
16195 * charset.c (char_charset): Return NULL if the arg charset_list is
16196 specified and C doesn't belong to any of them.
16197
16198 2008-06-02 Chip Coldwell <coldwell@redhat.com>
16199
16200 * font.c (font_pixel_size): Don't take cdr of an integer.
16201
16202 2008-06-02 Jim Meyering <meyering@redhat.com>
16203
16204 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
16205 * alloc.c (xfree): Return right away for a NULL arg.
16206 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
16207 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
16208 * mac.c (create_apple_event_from_event_ref): Likewise.
16209 (create_apple_event_from_drag_ref, cfstring_create_normalized):
16210 Likewise.
16211 * doprnt.c (doprnt1): Likewise.
16212 * frame.c (frame): Likewise.
16213 * keyboard.c (wipe_kboard): Likewise.
16214 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
16215 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
16216 * term.c (tty_default_color_capabilities, maybe_fatal)
16217 (delete_tty): Likewise.
16218 * w16select.c (string): Likewise.
16219 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
16220 * w32bdf.c (w32_free_bdf_font): Likewise.
16221 * w32fns.c (w32_unload_font): Likewise.
16222 * w32font.c (w32font_close): Likewise.
16223 * window.c (size_window): Likewise.
16224 * xselect.c (receive_incremental_selection): Likewise.
16225 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
16226 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
16227 * w32.c (stat): Likewise.
16228
16229 Remove useless if-before-free tests.
16230 * editfns.c (Fset_time_zone_rule): Likewise.
16231 * lread.c (nosuffix): Likewise.
16232 * ralloc.c (get_bloc): Likewise.
16233 * regex.c (reg_free): Likewise.
16234 * xftfont.c (xftfont_open, xftfont_close): Likewise.
16235 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
16236 * xsmfns.c (smc_save_yourself_CB): Likewise.
16237
16238 2008-06-02 Kenichi Handa <handa@m17n.org>
16239
16240 * font.c (font_find_for_lface): Handle float font size.
16241 (font_open_for_lface): Likewise.
16242
16243 * xfaces.c (x_supports_face_attributes_p): Check face->font before
16244 comparing the properties.
16245
16246 2008-06-01 Jason Rumney <jasonr@gnu.org>
16247
16248 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
16249 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
16250 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
16251 Don't add empty script list.
16252 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
16253
16254 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
16255
16256 * Makefile.in (dot, dotdot): Remove, update users.
16257 ".." has been used elsewhere in the file for a long time.
16258 (LIBXT_STATIC): Remove conditional based on unused variable.
16259
16260 2008-06-01 Miles Bader <miles@gnu.org>
16261
16262 * xfaces.c (Vface_remapping_alist): New variable.
16263 (syms_of_xfaces): Initialize it.
16264 (enum named_merge_point_kind): New type.
16265 (struct named_merge_point): Add `named_merge_point_kind' field.
16266 (push_named_merge_point): Make cycle detection respect different
16267 named-merge-point kinds.
16268 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
16269 Remove face-name alias resolution.
16270 (lface_from_face_name): New definition using
16271 `lface_from_face_name_no_resolve'.
16272 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
16273 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
16274 (get_lface_attributes): New definition that layers face-remapping on
16275 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
16276 (lookup_basic_face): New function.
16277 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
16278 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
16279 `get_lface_attributes'.
16280 (face_at_buffer_position): Use `lookup_basic_face' to lookup
16281 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
16282 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
16283
16284 * xdisp.c (init_iterator): Pass base_face_id through
16285 `lookup_basic_face' when we actually use it as a face-id.
16286 (handle_single_display_prop): Use `lookup_basic_face' to lookup
16287 DEFAULT_FACE_ID.
16288
16289 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
16290 lookup the initial face-id.
16291
16292 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
16293
16294 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
16295
16296 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
16297 (Fremove_text_properties): Fix typos in docstrings.
16298
16299 2008-05-31 Kenichi Handa <handa@m17n.org>
16300
16301 * font.c (font_list_entities): Fix the car part of data to be
16302 stored in the cache.
16303
16304 * ftfont.c (ftfont_font_format): Don't use strcasestr.
16305
16306 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
16307
16308 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
16309 Add a `test' argument so another predicate than `equal' can be used.
16310 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
16311 (map_char_table): Remove unused vars `c' and `i'.
16312 * lisp.h (Foptimize_char_table): Adjust declaration.
16313 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
16314
16315 2008-05-30 Kenichi Handa <handa@m17n.org>
16316
16317 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
16318 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
16319 defined.
16320
16321 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
16322
16323 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
16324 (Fmake_variable_frame_local): Disallow mixing buffer-local and
16325 frame-local settings for the same variable.
16326
16327 2008-05-30 Kenichi Handa <handa@m17n.org>
16328
16329 * fontset.c (Ffont_info): Move to font.c.
16330 (syms_of_fontset): Delete defsubr of Sfont_info.
16331
16332 * font.c (font_style_to_value, font_score): Delete casting of the
16333 args to xstcasecmp.
16334 (register_font_driver): Increment num_font_drivers only when
16335 registering the driver globally.
16336 (Ffont_info): Move from fontset.c. Handle a font object too.
16337 (syms_of_font): Defsubr Sfont_info.
16338
16339 2008-05-29 Kenichi Handa <handa@m17n.org>
16340
16341 * coding.h (enum define_coding_utf8_arg_index): New enum.
16342 (enum coding_attr_index): Change coding_attr_utf_16_bom to
16343 coding_attr_utf_bom.
16344 (enum utf_bom_type): Rename from utf_16_bom_type.
16345 (struct utf_16_spec): Adjust for the above change.
16346 (struct coding_system): Add utf_8_bom in `spec' union.
16347
16348 * coding.c (CODING_UTF_8_BOM): New macro.
16349 (enum coding_category): Delete coding_category_utf_8, add
16350 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
16351 coding_category_utf_8_sig.
16352 (CATEGORY_MASK_UTF_8): Delete it.
16353 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
16354 (CATEGORY_MASK_UTF_8_SIG): New macros.
16355 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
16356 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
16357 CATEGORY_MASK_UTF_8_SIG.
16358 (CATEGORY_MASK_UTF_8): New macro.
16359 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
16360 (detect_coding_utf_8): Check BOM.
16361 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
16362 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
16363 (encode_coding_utf_16): Likewise.
16364 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
16365 (detect_coding, detect_coding_system): Handle utf-8-auto.
16366 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
16367 (syms_of_coding): Fix setting up of Vcoding_category_table.
16368
16369 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
16370
16371 * process.c (Faccept_process_output): If `millisec' is non-nil,
16372 `seconds' default to 0.
16373 (wait_reading_process_output): Also return non-nil if we read output
16374 from a non-running process.
16375
16376 2008-05-29 Jason Rumney <jasonr@gnu.org>
16377
16378 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
16379 `raster' specified.
16380 (add_font_entity_to_list): Allow non-opentype truetype fonts back
16381 in the uniscribe backend, but disallow any font that has no
16382 unicode subrange support.
16383
16384 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
16385
16386 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
16387 Fix typos in docstrings.
16388
16389 2008-05-29 Kenichi Handa <handa@m17n.org>
16390
16391 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
16392 (Fx_family_fonts): Set frame correctly.
16393
16394 2008-05-28 Jason Rumney <jasonr@gnu.org>
16395
16396 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
16397
16398 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
16399
16400 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
16401 calling build_annotations.
16402
16403 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
16404
16405 * coding.c (Fdecode_coding_region, Fencode_coding_region)
16406 (Fencode_coding_string):
16407 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
16408 <latin-extra-code-table>: Fix typos in docstrings.
16409 (syms_of_coding) <coding-system-alist>: Doc fix.
16410 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
16411
16412 2008-05-28 Kenichi Handa <handa@m17n.org>
16413
16414 * fontset.c (Ffont_info): Don't call font_close_object.
16415
16416 * font.c (font_parse_family_registry): Use Ffont_put to validate
16417 foundry and family.
16418 (font_delete_unmatched): Don't check spacing.
16419 (font_list_entities): Add spacing to the spec to list fonts.
16420
16421 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
16422 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
16423
16424 * coding.c (encode_coding_raw_text): Fix previous change.
16425 (encode_coding_object): When the dst_object is a buffer and is
16426 different from src_object, move gap to PT.
16427
16428 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
16429
16430 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
16431
16432 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
16433
16434 * coding.c (encode_coding_raw_text): Set coding->produced_char for
16435 all branches. Compute it differently.
16436
16437 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
16438
16439 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
16440
16441 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
16442 into "else if () ... else ...".
16443
16444 2008-05-27 Jason Rumney <jasonr@gnu.org>
16445
16446 * w32font.c (w32font_open_internal): Determine if glyph indices
16447 are likely to work here.
16448
16449 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
16450
16451 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
16452 draw overlap glyphs with appropriate highlighting.
16453
16454 2008-05-27 Kenichi Handa <handa@m17n.org>
16455
16456 * xfont.c (xfont_open): Fix calculation of font->average_width.
16457
16458 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
16459
16460 * casefiddle.c (casify_object): Try to guess better whether the
16461 argument is a byte or a char.
16462
16463 2008-05-26 Andreas Schwab <schwab@suse.de>
16464
16465 * xselect.c (x_reply_selection_request): Properly handle format == 32.
16466 Always send multiples of format size.
16467
16468 * xterm.c (x_set_frame_alpha): Fix type mismatch.
16469
16470 2008-05-26 Jason Rumney <jasonr@gnu.org>
16471
16472 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
16473 (compute_metrics): Don't set failure if we just cleared the cache.
16474 (w32_weight_table): Remove unused variable.
16475 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
16476 backwards compatibility.
16477
16478 2008-05-25 Kenichi Handa <handa@m17n.org>
16479
16480 * w32term.c (x_draw_glyph_string):
16481 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
16482
16483 * xfaces.c: Delete unused function prototypes.
16484 (xstrlwr, font_frame): Delete them.
16485 (clear_face_cache): Delete unused variable.
16486
16487 * xftfont.c (xftfont_open): Delete unused variable.
16488 If underline_thickness is not 1, adjust underline_position.
16489
16490 * ftxfont.c (ftxfont_open): Delete unused variable.
16491
16492 * fontset.c (face_for_char): Optimize for the case of no charset
16493 property.
16494
16495 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
16496 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
16497 (otf_open, font_otf_capability, generate_otf_features)
16498 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
16499 Comment out by surrounding "#if 0" and "#endif" for the moment.
16500 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
16501 (syms_of_font): Codes for accessing above commented out.
16502
16503 2008-05-24 Eli Zaretskii <eliz@gnu.org>
16504
16505 * w32proc.c: Include dispextern.h.
16506
16507 * w32.c: Include dispextern.h.
16508
16509 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
16510
16511 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
16512 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
16513 Fix typos in docstrings.
16514
16515 2008-05-23 Jason Rumney <jasonr@gnu.org>
16516
16517 * xsmfns.c: Remove includes that are already included by config.h.
16518
16519 2008-05-23 Kenichi Handa <handa@m17n.org>
16520
16521 * charset.c (Qemacs, charset_emacs): New variables.
16522 (char_charset): Fix for non-Unicode characters.
16523 (syms_of_charset): Define charset_emacs.
16524
16525 * w32term.c (x_draw_glyph_string): Be sure to update
16526 s->underline_thickness and s->underline_position. Be sure to draw
16527 underline within the current line area.
16528
16529 * xterm.c (x_draw_glyph_string): Be sure to update
16530 s->underline_thickness and s->underline_position. Be sure to draw
16531 underline within the current line area.
16532
16533 * fontset.c: Delete unused variables and add casting for char *
16534 throughout the file.
16535 (fontset_font): Try the fallback fonts of the current fontset
16536 before consulting the default fontset.
16537
16538 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
16539
16540 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
16541
16542 2008-05-22 Jason Rumney <jasonr@gnu.org>
16543
16544 * font.c: Don't include strings.h.
16545
16546 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
16547
16548 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
16549 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
16550 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
16551 to call xstrcasecmp.
16552
16553 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
16554
16555 * fontset.c (fs_query_fontset): Use xstrcasecmp.
16556
16557 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
16558
16559 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
16560
16561 2008-05-22 Kenichi Handa <handa@m17n.org>
16562
16563 * puresize.h (BASE_PURESIZE): Increase to 1220000.
16564
16565 * font.c (font_prop_validate_style): Adjust for the format
16566 change of font_style_table.
16567
16568 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
16569 two args.
16570
16571 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
16572 two args.
16573
16574 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
16575
16576 * minibuf.c (keys_of_minibuf): Delete.
16577 * lisp.h (keys_of_minibuf): Delete.
16578 * emacs.c (main): Don't call keys_of_minibuf.
16579
16580 2008-05-22 Kenichi Handa <handa@m17n.org>
16581
16582 * ftfont.c (ftfont_resolve_generic_family): Rename from
16583 ftfont_list_generic_family. Return a single family for each
16584 generic family.
16585 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
16586 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
16587 Call font_add_log.
16588 (ftfont_match): Call font_add_log.
16589
16590 * font.h (Ffont_xlfd_name): EXFUN adjusted.
16591 (FONT_DEBUG): Define it.
16592 (font_add_log): Extern it.
16593 (font_assert): Rename from xassert.
16594
16595 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
16596 (xfont_list_family): Call font_add_log.
16597 (xfont_match): Likewise.
16598 (memq_no_quit): Delete.
16599
16600 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
16601 call of Ffont_xlfd_name.
16602
16603 * xfaces.c (struct table_entry, slant_table, weight_table)
16604 (swidth_table): Move to font.c.
16605
16606 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
16607 xassert are changed to font_assert. Delete many unused variables.
16608 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
16609 New variables.
16610 (struct table_entry): Move from xfaces.c and modified.
16611 (weight_table, slant_table, width_table): Move from xfaces.c and
16612 contents adjusted for the change of struct table_entry.
16613 (font_style_to_value, font_style_symbolic): Adjust for the
16614 format change of font_style_table.
16615 (font_parse_family_registry): Don't overwrite existing foundry and
16616 family of font_spec.
16617 (font_score): Fix calculation of diff for sizes.
16618 (font_sort_entites): Call font_add_log.
16619 (font_delete_unmatched): Return a newly created list.
16620 (font_list_entities): Fix previous change. Call font_add_log.
16621 (font_matching_entity, font_open_entity, font_close_entity):
16622 Call font_add_log.
16623 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
16624 (Finternal_set_font_style_table): Delete.
16625 (BUILD_STYLE_TABLE): New macro.
16626 (build_style_table): New function.
16627 (Vfont_log, font_log_env_checked): New variables.
16628 (font_add_log): New function.
16629 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
16630 Declare Lisp variables "font-weight-table", "font-slant-table",
16631 "font-width-table", and "font-log". Initialize font_style_table.
16632
16633 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
16634
16635 * xterm.c (x_set_frame_alpha): Move declarations before statements.
16636
16637 2008-05-21 Seiji Zenitani <zenitani@mac.com>
16638 Ryo Yoshitake <ryo@shiftmode.net>
16639
16640 * frame.c (Qalpha): Add a new frame parameter `alpha'.
16641 (Vframe_alpha_lower_limit): New variable.
16642 (x_set_alpha): New function.
16643
16644 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
16645
16646 * xfns.c (x-create-frame, Qalpha):
16647 Initialize the frame parameter `alpha'.
16648 * xterm.c (OPAQUE, OPACITY): New.
16649 (x_set_frame_alpha): New function.
16650 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
16651
16652 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
16653 * w32fns.c (w32_frame_parm_handlers): Likewise.
16654
16655 2008-05-20 Jason Rumney <jasonr@gnu.org>
16656
16657 * w32font.c (add_font_entity_to_list): Don't add non-opentype
16658 truetype fonts to opentype list.
16659
16660 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
16661
16662 * fontset.c (Ffontset_info): Doc fix.
16663 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
16664 <ignore-relative-composition>: Fix typos in docstrings.
16665
16666 * font.c (syms-of-font) <font-encoding-alist>:
16667 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
16668 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
16669 (Ffont_otf_alternates): Doc fixes.
16670
16671 2008-05-20 Kenichi Handa <handa@m17n.org>
16672
16673 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
16674 font.h through out the file.
16675 (FONT_DRIVERS): Rename from FONTOBJ.
16676 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
16677 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
16678
16679 * emacs.c (main): Call syms_of_font unconditionally.
16680
16681 * font.h (find_font_encoding): Extern it.
16682
16683 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
16684 fontset.c.
16685 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
16686 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
16687 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
16688 only when HAVE_WINDOW_SYSTEM is defined.
16689 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
16690 when HAVE_WINDOW_SYSTEM is defined.
16691
16692 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
16693 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
16694
16695 * xfaces.c: Include font.h unconditionally.
16696 (merge_face_ref, merge_face_vectors)
16697 (Finternal_set_lisp_face_attribute): Cancel the previous change.
16698
16699 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
16700
16701 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
16702 indirect_variable.
16703 * eval.c (lisp_indirect_variable): New fun.
16704 (Fuser_variable_p): Use it.
16705
16706 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
16707
16708 * lisp.h (indirect_variable):
16709 * data.c (indirect_variable, let_shadows_buffer_binding_p):
16710 Use Lisp_Symbol pointers rather than Lisp_Object.
16711 Adjust callers.
16712 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
16713 To this end, change calling-convention.
16714
16715 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
16716 if some non-hidden buffers are selected by string&pred.
16717
16718 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
16719
16720 * process.c (wait_reading_process_output): Always check status
16721 when in batch mode.
16722
16723 2008-05-19 Kenichi Handa <handa@m17n.org>
16724
16725 * font.c (font_list_entities): Fix handling of cache.
16726 (font_matching_entity): Likewise.
16727
16728 * ftfont.c (cs_iso8859_1): Delete.
16729 (ft_face_cache): New variable.
16730 (struct ftfont_info): New member fc_charset_idx.
16731 (ftfont_build_basic_charsets): Delete.
16732 (fc_charset_table): New variable.
16733 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
16734 . FC_CHARSET_IDX) as :font-entity property in the font entity.
16735 Callers changed.
16736 (ftfont_lookup_cache, ftfont_get_charset): New functions.
16737 (ftfont_spec_pattern): New argument fc_charset_idx.
16738 Check registry more rigidly. Change callers.
16739 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
16740 change of :font-entity property of the font.
16741
16742 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
16743 property of the font.
16744
16745 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
16746
16747 * coding.c (Fcoding_system_p): Rename argument to match docstring.
16748 (Funencodable_char_position, Fcheck_coding_systems_region)
16749 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
16750 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
16751 (Ffind_operation_coding_system, Fset_coding_system_priority)
16752 (Fcoding_system_eol_type): Doc fixes.
16753
16754 2008-05-17 Glenn Morris <rgm@gnu.org>
16755
16756 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
16757
16758 2008-05-16 Eli Zaretskii <eliz@gnu.org>
16759
16760 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
16761 and st_gid.
16762
16763 * frame.c (Fdelete_frame): Don't call font_update_drivers if
16764 HAVE_WINDOW_SYSTEM is not defined.
16765
16766 * xfaces.c (merge_face_ref, merge_face_vectors)
16767 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
16768 HAVE_WINDOW_SYSTEM is defined.
16769 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
16770
16771 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
16772
16773 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
16774
16775 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16776
16777 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
16778
16779 2008-05-15 Kenichi Handa <handa@m17n.org>
16780
16781 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
16782 preference.
16783
16784 2008-05-15 Glenn Morris <rgm@gnu.org>
16785
16786 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
16787
16788 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
16789
16790 * fns.c (init_fns): Don't initialize weak_hash_tables here.
16791 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
16792
16793 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
16794
16795 2008-05-15 Kenichi Handa <handa@m17n.org>
16796
16797 * ftfont.c (ftfont_list): Downcase family name to check generic
16798 families.
16799
16800 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
16801 font-spec for QCfont value.
16802
16803 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
16804 buffer. Check the return value of it.
16805
16806 2008-05-14 Jason Rumney <jasonr@gnu.org>
16807
16808 * w32term.c (w32_get_glyph_overhangs): Remove.
16809 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
16810
16811 2008-05-14 Kenichi Handa <handa@m17n.org>
16812
16813 * font.c (font_prop_validate): Make nil a valid value.
16814 (font_clear_cache): Check if the cached vector of entities is nil
16815 or not.
16816
16817 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16818
16819 * emacs.c (main_thread): Conditionalize on
16820 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
16821 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
16822
16823 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
16824 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
16825 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
16826
16827 2008-05-14 Kenichi Handa <handa@m17n.org>
16828
16829 * coding.c (detect_coding_iso_2022): Ignore a coding category that
16830 has no corresponding coding system.
16831
16832 2008-05-14 Jason Rumney <jasonr@gnu.org>
16833
16834 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
16835
16836 * w32font.h (w32font_open_internal): Update declaration.
16837
16838 * w32font.c (w32font_open_internal): Change last argument from
16839 w32font_info struct to font object. Fill in font object from
16840 font_entity. Get Outline metrics if possible. Use them to
16841 calculate underline position and thickness. Use xlfd name as name
16842 property. Don't set codepage.
16843 (w32font_open): Pass font_object to w32font_open_internal. Don't
16844 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
16845 (w32font_draw): Use s->font.
16846 (clear_cached_metrics): Don't clear non-existent blocks.
16847
16848 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
16849 font was not found.
16850 (x_draw_glyph_string): Use underline position and thickness from font.
16851
16852 * w32uniscribe.c (uniscribe_open): Pass font_object to
16853 w32font_open_internal.
16854
16855 2008-05-14 Kenichi Handa <handa@m17n.org>
16856
16857 These changes are to delete all legacy font-handling codes, and
16858 make Emacs use only font-backends.
16859
16860 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
16861 (frame.o, image.o, print.o): Depend on $(FONTSRC).
16862
16863 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
16864
16865 * charset.h (Vcharset_non_preferred_head)
16866 (Vcurrent_iso639_language): Extern them.
16867
16868 * charset.c (Vcharset_non_preferred_head): New variable.
16869 (Vcurrent_iso639_language): New variable.
16870 (syms_of_charset): Declare it as a Lisp variable.
16871 (char_charset): Don't check non preferred charsets. As a last
16872 resort, return charset_unicode.
16873 (Fset_charset_priority): Update Vcharset_non_preferred_head.
16874
16875 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
16876 conditionals. Don't check enable_font_backend. Delete all codes
16877 used only when USE_FONT_BACKEND is not defined.
16878
16879 * dispextern.h (struct glyph_string): Change type of `font' to
16880 `struct font *'.
16881 (struct glyph_string): New member underline_position and
16882 underline_thickness.
16883 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
16884 (struct face): Change type of `font' to `struct font *'. Remove
16885 members `font_name', `font_info_id'.
16886 (per_char_metric, encode_char): Delete externs.
16887 (calc_pixel_width_or_height): Adjust the prototype.
16888
16889 * emacs.c (enable_font_backend): Delete extern.
16890 (main): Don't set enable_font_backend. Don't check the command
16891 line argument "-disable-font-backend".
16892
16893 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
16894 (enum font_property_index): New members FONT_DPI_INDEX,
16895 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
16896 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
16897 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
16898 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
16899 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
16900 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
16901 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
16902 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
16903 (struct font_spec, struct font_entity): New structs.
16904 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
16905 (struct font): Many members from old "struct font_info" moved to
16906 here. Members font and entity deleted.
16907 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
16908 the new font-related objects.
16909 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
16910 (CHECK_FONT_GET_OBJECT): Likewise.
16911 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
16912 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
16913 (struct font_driver): New members case_sensitive anc check. Type
16914 of the member list and open changed.
16915 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
16916 (font_symbolic_width, font_find_object, font_get_spec)
16917 (font_set_lface_from_name): Delete extern.
16918 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
16919
16920 * font.c: Include <strings.h>.
16921 (enable_font_backend): Delete it.
16922 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
16923 (CHECK_VALIDATE_FONT_SPEC): Delete it.
16924 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
16925 (null_string): Delete it.
16926 (null_vector): Make it static.
16927 (font_family_alist): Delete it.
16928 (Qnormal): Extern it.
16929 (QCextra, QClanguage): Delete it.
16930 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
16931 (font_make_spec, font_make_entity, font_make_object)
16932 (font_intern_prop): Renamed from intern_downcase. Don't downcase
16933 the string. Callers changed.
16934 (font_pixel_size): Adjusted for the format change of font-related
16935 objects.
16936 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
16937 (font_style_to_value, font_style_symbolic): New function.
16938 (build_font_family_alist): Delete it.
16939 (font_registry_charsets): Use Fassoc_string instead of
16940 assq_no_quit.
16941 (font_prop_validate_symbol): Don't return null_string.
16942 (font_prop_validate_style): Adjusted for the change of
16943 style-related values in a font vector.
16944 (font_property_table): Delete entries for QClanguage and
16945 QCantialias, add entries for QCavgwidth.
16946 (get_font_prop_index): Delete the 2nd argument FROM.
16947 (font_prop_validate): Arguments changed.
16948 (font_put_extra): Adjusted for the change of font-related objects.
16949 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
16950 (font_parse_fcname, font_unparse_fcname)
16951 (font_prepare_composition): Likewise.
16952 (font_parse_family_registry): Renamed from font_merge_old_spec.
16953 (otf_open): Delete the 1st arg entity.
16954 (font_otf_capability): Adjusted for the above change.
16955 (font_score): New arg alternate_families. Adjusted for the change
16956 of font-related objects.
16957 (font_sort_entites): New arg best_only.
16958 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
16959 Delete them.
16960 (font_match_p): Check alternate families.
16961 (font_find_object): Delete it.
16962 (font_check_object): New function.
16963 (font_clear_cache): Adjusted for the change of font-related objects.
16964 (font_delete_unmatched): New arg.
16965 (font_list_entities): Call font_driver->list with a spec that
16966 doesn't specify style-related properties.
16967 (font_matching_entity): Arguments changed. Caller changed.
16968 (font_open_entity): Adjusted for the change of font-related objects.
16969 (font_close_object, font_has_char, font_encode_char)
16970 (font_get_name, font_get_spec): Likewise.
16971 (font_spec_from_name, font_clear_prop, font_update_lface):
16972 New functions.
16973 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
16974 (font_prepare_for_face, font_done_for_face, font_open_by_name)
16975 (font_at): Adjusted for the change of font-related objects.
16976 (font_range): New function.
16977 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
16978 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
16979 (Fcopy_font_spec, Fmerge_font_spec): New function.
16980 (Ffont_family_list): Renamed from list-families.
16981 (Finternal_set_font_style_table): Arguments changed.
16982 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
16983 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
16984 change of font-related objects.
16985 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
16986
16987 * fontset.h (struct font_info): Delete it. Most members go to
16988 struct font.
16989 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
16990 (enum FONT_SPEC_INDEX): Delete it.
16991 (font_info, list_fonts_func, load_font_func, query_font_func)
16992 (set_frame_fontset_func, find_ccl_program_func)
16993 (get_font_repertory_func, new_fontset_from_font_name): Delete
16994 externs.
16995 (fontset_from_font_name): Extern it.
16996 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
16997 (FONT_INFO_FROM_FACE): Deleted.
16998 (face_for_font): Adjust prototype.
16999
17000 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
17001 conditionals. Don't check enable_font_backend. Delete all codes
17002 used only when USE_FONT_BACKEND is not defined.
17003 (get_font_info_func, list_font_func, load_font_func)
17004 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
17005 (get_font_repertory_func): Delete them.
17006 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
17007 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
17008 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
17009 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
17010 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
17011 (fontset_compare_rfontdef): New function.
17012 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
17013 rfont-defs by qsort. Adjusted for the change of font-group vector.
17014 (load_font_get_repertory): Deleted.
17015 (fontset_find_font): Use new macros to ref/set elements of
17016 font-def and rfont-def.
17017 (fontset_font): Fix the timing of remembering that no font for C.
17018 (free_face_fontset): Do nothing if the face has no fontset.
17019 (face_suitable_for_char_p): Use new macros to ref/set elements of
17020 rfont-def.
17021 (face_for_char): Likewise. Call face_for_char with font_object.
17022 (fs_load_font): Delete. Delete #pragma surrounding it.
17023 (fs_query_fontset): Use strcasecmp instead of strcmp.
17024 (generate_ascii_font_name): Adjusted for the format change of
17025 font-spec.
17026 (Fset_fontset_font): Likewise. Use new macros to set elements of
17027 font-def.
17028 (Fnew_fontset): Use font_unparse_xlfd to generate
17029 FONTSET_ASCII (fontset).
17030 (new_fontset_from_font_name): Deleted.
17031 (fontset_from_font): Renamed from new_fontset_from_font. Check if
17032 a fontset is already created for the font. FIx updating of
17033 Vfontset_alias_alist.
17034 (fontset_ascii_font): Deleted.
17035 (Ffont_info): Adjusted for the format change of font-spec.
17036 (Finternal_char_font): Likewise.
17037 (Ffontset_info): Likewise.
17038 (syms_of_fontset): Don't check load_font_func.
17039
17040 * fns.c (internal_equal): Handle PREV_FONT.
17041
17042 * frame.h: Delete USE_FONT_BACKEND conditional.
17043
17044 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
17045 conditionals. Don't check enable_font_backend. Delete all codes
17046 used only when USE_FONT_BACKEND is not defined.
17047 (x_set_font): Call x_new_font, not x_new_fontset2.
17048 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
17049 already set for the frame.
17050
17051 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
17052 a font-entity by font_make_entity. Use font_intern_prop instead
17053 of intern_downcase. Use FONT_SET_STYLE to set a style-related
17054 font property. If a font is scalable, set avgwidth property to 0.
17055 Set font-entity property by font_put_extra.
17056 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
17057 (ffont_driver): Adjusted for the change of struct font_driver.
17058 (ftfont_spec_pattern): New function.
17059 (ftfont_list): Return a list, not vector.
17060 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
17061 (ftfont_list_family): Don't downcase names.
17062 (ftfont_free_entity): Deleted.
17063 (ftfont_open): Return a font-object. Adjusted for the change of
17064 struct font. Get underline_thickness and underline_position from
17065 font property. Don't update dpyinfo->smallest_font_height and
17066 dpyinfo->smallest_char_width.
17067 (ftfont_close): Don't free `struct font'.
17068 (ftfont_has_char): Adjusted for the format change of font-entity.
17069 (ftfont_encode_char, ftfont_text_extents): Likewise.
17070
17071 * ftxfont.c (ftxfont_list): Return a list, not vector.
17072 (ftxfont_open): Return a font-object. Adjusted for the change of
17073 struct font. Get underline_thickness and underline_position from
17074 font property. Don't update dpyinfo->smallest_font_height and
17075 dpyinfo->smallest_char_width.
17076 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
17077 (ftxfont_draw): Adjusted for the change of struct font.
17078
17079 * image.c (image_ascent): Don't include "charset.h". Include
17080 "character.h" and "font.h".
17081
17082 * lisp.h (enum pvec_type): New member PREV_FONT.
17083 (Fassoc_string): EXFUN it.
17084
17085 * print.c: Include font.h.
17086 (print_object): Handle font-related objects.
17087
17088 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
17089 conditionals. Don't check enable_font_backend. Delete all codes
17090 used only when USE_FONT_BACKEND is not defined.
17091 (handle_auto_composed_prop): Do nothing if it->f is not on a
17092 window system. Check how many following characters can be
17093 displayed by the same font.
17094 (calc_pixel_width_or_height): Type of the 4th arg is changed to
17095 'struct font *'.
17096 (get_char_face_and_encoding): Assign the whole encoding task to
17097 the `encode-char' method of a font driver.
17098 (fill_composite_glyph_string): Adjusted for the change of `struct
17099 face' and `struct glyph_string'.
17100 (fill_glyph_string): Likewise.
17101 (get_per_char_metric): Arguments changed.
17102 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
17103 and `struct glyph_string'.
17104 (produce_stretch_glyph, calc_line_height_property)
17105 (x_produce_glyphs): Likewise.
17106
17107 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
17108 conditionals. Don't check enable_font_backend. Delete all codes
17109 used only when USE_FONT_BACKEND is not defined. Use
17110 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
17111 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
17112 (Qp): Extern them.
17113 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
17114 Deleted.
17115 (struct font_name): Deleted.
17116 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
17117 (compare_fonts_by_sort_order): New function.
17118 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
17119 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
17120 Deleted.
17121 (Fx_family_fonts): Use font_list_entities, and sort fonts by
17122 compare_fonts_by_sort_order.
17123 (Fx_font_family_list): Call Ffont_family_list.
17124 (face_numeric_value, face_numeric_weight, face_numeric_slant)
17125 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
17126 (face_symbolic_slant, face_symbolic_swidth)
17127 (split_font_name_into_vector, build_font_name_from_vector)
17128 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
17129 (font_rescale_ratio, split_font_name, build_font_name)
17130 (free_font_names, sort_fonts, x_face_list_fonts)
17131 (face_font_available_p, sorted_font_list, cmp_font_names)
17132 (font_list_1, concat_font_list, font_list, remove_duplicates):
17133 Deleted.
17134 (Fx_list_fonts): Use Ffont_list.
17135 (LFACE_AVGWIDTH): Deleted.
17136 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
17137 by FONTP.
17138 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
17139 (set_lface_from_font_name): Delete it.
17140 (set_lface_from_font): Renamed from
17141 set_lface_from_font_and_fontset. Caller changed. Don't set
17142 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
17143 for face.
17144 (merge_face_vectors): Copy font-spec if necessary.
17145 Clear properties of the font-spec if necessary.
17146 (merge_face_ref): Clear properties of the font-spec if necessary.
17147 (Finternal_set_lisp_face_attribute): Likewise.
17148 (set_font_frame_param): Use font_load_for_lface to load a
17149 font-object, and call Fmodify_frame_parameters with it.
17150 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
17151 font name by Ffont_xlfd_name.
17152 (Finternal_lisp_face_attribute_values): Don't check QCweight,
17153 QCslant, and QCwidth.
17154 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
17155 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
17156 Compare fonts by EQ.
17157 (lookup_non_ascii_face): Deleted.
17158 (face_for_font): The 2nd argument changed.
17159 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
17160 Check atomic font properties by case insensitive.
17161 (realize_non_ascii_face): Set face->overstrike correctly.
17162 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
17163 (dump_realized_face): Get font name from
17164 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
17165
17166 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
17167 conditionals. Don't check enable_font_backend. Delete all codes
17168 used only when USE_FONT_BACKEND is not defined.
17169 (xic_create_xfontset): Original code deleted and renamed from
17170 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
17171 (x_make_gc): Don't set GCFont in GCs.
17172 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
17173 opened by "fixed".
17174 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
17175 find_ccl_program_func, query_font_func, set_frame_fontset_func,
17176 get_font_repertory_func.
17177
17178 * xfont.c: Include <stdlib.h> and "ccl.h".
17179 (struct xfont_info): New structure.
17180 (xfont_query_font): Deleted.
17181 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
17182 moved from xterm.c.
17183 (xfont_driver): Adjusted for the change of struct font_driver.
17184 (compare_font_names): New function.
17185 (xfont_list_pattern): Sort font names case insensitively. Make
17186 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
17187 (xfont_list): Return a list, not vector.
17188 (xfont_match): If the font doesn't have QCname property, generate
17189 a name from the other font properties.
17190 (xfont_open): Return a font-object. Adjusted for the change of
17191 struct font. Get underline_thickness and underline_position from
17192 font property. Don't update dpyinfo->smallest_font_height and
17193 dpyinfo->smallest_char_width.
17194 (xfont_close): Don't free struct font.
17195 (xfont_prepare_face): Adjusted for the change of struct font.
17196 (xfont_done_face): Deleted.
17197 (xfont_has_char): Adjusted for the change of struct font.
17198 (xfont_encode_char, xfont_draw): Likewise.
17199 (xfont_check): New function.
17200
17201 * xftfont.c (xftfont_list): Adjusted for the change of `list'
17202 callback function.
17203 (xftfont_match): Adjusted for the format change of font-entity.
17204 (xftfont_open): Adjusted for the format change of font-entity and
17205 font-object. Adjusted for the change of struct font. Return a
17206 font-object. Don't update dpyinfo->smallest_font_height and
17207 dpyinfo->smallest_char_width.
17208 (xftfont_close): Block input while calling XftFontClose.
17209 (xftfont_prepare_face): Don't block input while calling
17210 xftfont_get_colors. Adjusted for the change of struct font.
17211 (xftfont_shape): Return value of error case fixed.
17212
17213 * xrdb.c (x_load_resources): Don't setup a fontset resource.
17214
17215 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
17216 conditionals.
17217 (FONT_WIDTH): Return (f)->max_width.
17218 (struct x_display_info): Delete member `font'.
17219 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
17220 (x_find_ccl_program, x_get_font_repertory): Delete externs.
17221 (struct x_output): Change type of `font' to `struct font *'.
17222
17223 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
17224 conditionals. Don't check enable_font_backend. Delete all codes
17225 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
17226 (x_per_char_metric, x_encode_char): Deleted.
17227 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
17228 (x_compute_glyph_string_overhangs): Adjusted for the change of
17229 `struct face'.
17230 (x_draw_glyph_string_foreground)
17231 (x_draw_composite_glyph_string_foreground): Likewise.
17232 (x_draw_glyph_string): Likewise. Use font->underline_position and
17233 font->underline_thickness.
17234 (x_new_font): Renamed from x_new_fontset2.
17235 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
17236 (x_check_font): Call `check' method of a font driver.
17237 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
17238 (x_query_font, x_get_font_repertory): Deleted.
17239 (x_find_ccl_program): Renamed and moved to xfont.c.
17240 (x_redisplay_interface): Adjusted for the change of `struct
17241 redisplay_interface'.
17242
17243 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
17244 conditionals. Don't check enable_font_backend. Delete all codes
17245 used only when USE_FONT_BACKEND is not defined. Surround non-used
17246 code by "#ifdef OLD_FONT" and "endif".
17247 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
17248
17249 * w32font.h (struct w32font_info): New member.
17250 (FONT_COMPAT): New macro.
17251 (w32font_open_internal): Prototype adjusted.
17252
17253 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
17254 OLD_FONT" and "endif".
17255
17256 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
17257 conditionals. Don't check enable_font_backend. Delete all codes
17258 used only when USE_FONT_BACKEND is not defined.
17259 (w32font_open): Return a font-object. Make a font-object by
17260 font_make_object. Adjusted for the change of struct w32font_info.
17261 (w32font_close): Don't free struct font. Adjusted for the change
17262 of struct w32font_info.
17263 (w32font_encode_char, w32font_text_extents, w32font_draw):
17264 Adjusted for the change of struct w32font_info.
17265 (w32font_draw): Likewise.
17266 (w32font_list_internal): Return a list, not vector.
17267 (w32font_open_internal): Change the 4th arg to font-object.
17268 Adjusted for the change of struct w32font_info and font-object format.
17269 (add_font_name_to_list): Don't downcase names.
17270 (w32_enumfont_pattern_entity): Make a font-entity by
17271 font_make_entity. Adjusted for the format change of font-entity.
17272 Use FONT_SET_STYLE to set a style-related font property. If a
17273 font is scalable, set avgwidth property to 0. Set font-entity
17274 property by font_put_extra.
17275 (font_matches_spec): Adjusted for the format change of font-entity.
17276 (w32_weight_table, w32_decode_weight): New variables.
17277 (w32_encode_weight): New function.
17278 (fill_in_logfont): Adjusted for the format change of font-spec.
17279 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
17280 weight value.
17281 (w32font_driver): Adjusted for the change of struct font_driver.
17282
17283 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
17284 conditionals. Don't check enable_font_backend. Surround non-used
17285 code by "#ifdef OLD_FONT" and "endif".
17286 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
17287 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
17288
17289 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
17290 conditionals. Don't check enable_font_backend. Delete all codes
17291 used only when USE_FONT_BACKEND is not defined. Surround non-used
17292 code by "#ifdef OLD_FONT" and "endif".
17293
17294 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
17295 (uniscribe_open): Return value changed to font-object.
17296 Adjusted for the format change of font-object.
17297 (uniscribe_otf_capability): Adjusted for the change of struct font.
17298 (add_opentype_font_name_to_list): Don't downcase names.
17299 (uniscribe_font_driver): Adjusted for the change of struct
17300 font_driver.
17301
17302 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
17303
17304 * dispnew.c (update_frame_1): Check if tty output is still valid
17305 before flushing it.
17306
17307 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
17308
17309 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
17310 to Gtk+ menus.
17311
17312 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
17313
17314 * dired.c (file_name_completion): Tweak the code so as to always do it
17315 in a single pass. Tighten the scope of some variables.
17316
17317 * dired.c (Qdefault_directory): New var.
17318 (file_name_completion): Use it instead of Fexpand_file_name.
17319 (syms_of_dired): Initialize it.
17320
17321 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
17322
17323 * fileio.c (double_dollars): Remove dead code.
17324
17325 2008-05-10 Eli Zaretskii <eliz@gnu.org>
17326
17327 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
17328 Mention w32-get-true-file-attributes in doc string.
17329
17330 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
17331
17332 2008-05-09 Glenn Morris <rgm@gnu.org>
17333
17334 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
17335 2008-04-23.
17336
17337 2008-05-09 Eli Zaretskii <eliz@gnu.org>
17338
17339 Support for reporting owner and group of each file on MS-Windows:
17340 * dired.c (stat_uname, stat_gname): New functions, with special
17341 implementation for w32.
17342 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
17343
17344 * w32.c: Rename the_passwd_* to dflt_passwd_*.
17345 (dflt_group_name): New static variable.
17346 (dflt_group): Rename from the_group.
17347 (init_user_info): Init dflt_group fields. Get user's group name
17348 from LookupAccountSid.
17349 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
17350 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
17351 New initialization states.
17352 (globals_of_w32): Initialize them to zero. Initialize the default
17353 group name to "None".
17354 (GetFileSecurity_Name): New global var, the name of the function
17355 to call for GetFileSecurity.
17356 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
17357 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
17358 (get_file_security, get_security_descriptor_owner)
17359 (get_security_descriptor_group, is_valid_sid)
17360 (get_file_security_desc, get_rid, get_name_and_id)
17361 (get_file_owner_and_group): New functions.
17362 (stat): Use get_file_security_desc and get_file_owner_and_group to
17363 report the owner and primary group of each file. Don't ignore the
17364 high 32 bits of file's size, now that st_size is 64-bit wide.
17365 Fix test when to get true file attributes.
17366 (init_user_info): Use get_rid instead of equivalent inline code.
17367 (fstat): Don't ignore the high 32 bits of file's size.
17368
17369 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
17370
17371 * image.c (png_load): Use correct bit-depth for setting background
17372 color.
17373
17374 2008-05-08 Eli Zaretskii <eliz@gnu.org>
17375
17376 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
17377 epa-hook.elc.
17378
17379 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
17380
17381 * font.c (Ffont_match_p): Don't use `iff' in docstring.
17382
17383 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
17384
17385 * macfns.c (Fx_create_frame): Make a copy of frame parameters
17386 because the original parameters are in pure storage now.
17387 (mac_window): Remove unused params. Update callers.
17388
17389 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
17390
17391 * lread.c (substitute_object_recurse): Use lower-level primitives.
17392 Don't signal errors when traversing sub-char-tables.
17393 Don't loop over all the possible characters when traversing char-tables.
17394
17395 * print.c (print_preprocess): Add sub-char-tables to the print-table,
17396 just like we do in print.c.
17397
17398 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
17399
17400 * minibuf.c (Ftry_completion): Remove code left over from when we used
17401 scmp instead of Fcompare_strings.
17402
17403 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
17404
17405 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
17406
17407 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17408
17409 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
17410 Create bitmap context in native byte order.
17411
17412 * macterm.c (XDrawLine)
17413 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
17414 context in native byte order.
17415
17416 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17417
17418 * config.in: Regenerate.
17419
17420 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
17421 New definitions for Image I/O support.
17422 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
17423 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
17424 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
17425 (mac_data_provider_release_data, image_load_image_io)
17426 [USE_MAC_IMAGE_IO]: New functions.
17427 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
17428 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
17429 (init_image_func_pointer) [MAC_OSX]: Remove function.
17430 (image_load_quartz2d) [MAC_OSX]: Check availability of
17431 CGImageCreateWithPNGDataProvider at compile time.
17432 Use lowercase `false' for boolean constant.
17433 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
17434 Use image_load_image_io.
17435 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
17436 Don't check MyCGImageCreateWithPNGDataProvider.
17437 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
17438 Don't call init_image_func_pointer.
17439
17440 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
17441
17442 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
17443 Make variable non-static.
17444 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
17445 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
17446
17447 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
17448 (RED_FROM_ULONG): Mask off higher bits.
17449 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
17450
17451 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
17452 Include AvailabilityMacros.h.
17453 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
17454 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
17455
17456 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
17457
17458 * chartab.c (Fset_char_table_range): If range is t, really set all
17459 chars to that value.
17460
17461 2008-05-03 Eli Zaretskii <eliz@gnu.org>
17462
17463 * dired.c (Ffile_attributes): Don't allow the device number become
17464 negative.
17465
17466 2008-05-02 Daiki Ueno <ueno@unixuser.org>
17467
17468 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
17469
17470 2008-05-02 Juri Linkov <juri@jurta.org>
17471
17472 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
17473 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
17474 DEFAULT argument as a list of default values in docstrings.
17475
17476 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
17477
17478 * puresize.h (BASE_PURESIZE): Increase to 1210000.
17479
17480 2008-05-01 Martin Rudalics <rudalics@gmx.at>
17481
17482 * dispnew.c (change_frame_size_1): Preserve small windows when
17483 shrinking frames by calling set_window_height|width with third
17484 arg 2.
17485
17486 * window.h (struct window): Replace field too_small_ok by field
17487 resize_proportionally.
17488
17489 * window.c (make_window): Initialize resize_proportionally.
17490 (enlarge_window): Temporarily set resize_proportionally to make
17491 sure that shrink_windows does scale the window proportionally.
17492 (shrink_windows): When window has resize_proportionally set try
17493 to shrink it proportionally by stealing from other windows.
17494 (struct saved_window, Fset_window_configuration)
17495 (compare_window_configurations): Handle resize_proportionally.
17496 (WINDOW_TOTAL_SIZE): New macro.
17497 (window_min_size, shrink_windows, size_window): Use it.
17498 (check_min_window_sizes): Remove. Invalid values of
17499 window-min-height|width are handled by window_min_size_2 now.
17500 (size_window, Fsplit_window, enlarge_window)
17501 (adjust_window_trailing_edge, grow_mini_window): Don't call
17502 check_min_window_sizes.
17503 (window_min_size_2, window_min_size_1, window_min_size):
17504 New argument safe_p for retrieving "safe" minimum sizes.
17505 (Fdisplay_buffer, Fsplit_window, enlarge_window)
17506 (adjust_window_trailing_edge, grow_mini_window):
17507 Adjust arguments of window_min_size... functions.
17508 (shrink_windows): Argument min_size removed. New argument
17509 safe_p allows shrinking windows to their safe minimum sizes.
17510 Calculate minimum size and decide whether a window shall be
17511 deleted for each window individually.
17512 (size_window): When nodelete_p equals 2, tell shrink_windows to
17513 delete windows only if their new minimum size is no more safe.
17514 (shrink_window_lowest_first): Call window_min_size_1 to make
17515 sure to preserve modeline of bottom-most window when resizing
17516 the minibuffer.
17517 (Fset_window_configuration, Fcurrent_window_configuration)
17518 (compare_window_configurations): Do not handle
17519 window-min-height|width any more.
17520 (syms_of_window): Clarify window-min-height|width doc-strings.
17521
17522 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
17523
17524 * dired.c (file_name_completion): Fix up the encoding/decoding issue
17525 some more. Copy some of the code from Ftry_completions.
17526 Remove special case code that dates back to initial revision when the
17527 slash was only added when necessary and that can't trigger nowadays.
17528
17529 2008-04-27 Kenichi Handa <handa@m17n.org>
17530
17531 * font.c (font_prop_validate): Signal `error' instead of `font'.
17532
17533 2008-04-29 Jason Rumney <jasonr@gnu.org>
17534
17535 * w32fns.c (Fw32_battery_status): New defun.
17536 (syms_of_w32fns): Defsubr it.
17537
17538 2008-04-28 Andreas Schwab <schwab@suse.de>
17539
17540 * dired.c (file_name_completion): Fix another mixing of encoded
17541 and decoded names.
17542
17543 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
17544
17545 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
17546
17547 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
17548
17549 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
17550
17551 2008-04-27 Andreas Schwab <schwab@suse.de>
17552
17553 * dired.c (file_name_completion): Fix inappropriate mixing of
17554 encoded and decoded names.
17555
17556 * xterm.c (XTread_socket): Fix use of uninitialized variable.
17557
17558 * puresize.h (BASE_PURESIZE): Increase to 1200000.
17559
17560 2008-04-26 Eli Zaretskii <eliz@gnu.org>
17561
17562 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
17563 2008-03-31, it's not needed anymore with `struct stat' definition
17564 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
17565 for the same reasons.
17566
17567 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
17568
17569 * m/sparc.h: Additional redefinitions for GNU/Linux.
17570
17571 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17572
17573 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
17574 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
17575 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
17576 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
17577 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
17578 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
17579 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
17580 Likewise.
17581
17582 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
17583 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
17584 (mac_ax_number_of_characters): Add externs.
17585 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
17586 [USE_MAC_TSM]: Likewise.
17587 (mac_handle_text_input_event) [MAC_OSX]:
17588 Handle kEventTextInputOffsetToPos for no active input area case.
17589 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
17590 (mac_handle_document_access_event)
17591 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
17592 (install_application_handler) [MAC_OSX]: Register handlers for
17593 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
17594 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
17595 Register mac_handle_document_access_event.
17596
17597 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
17598 Make functions non-static.
17599
17600 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
17601
17602 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
17603 (read_file_name_completion_ignore_case, insert_default_directory)
17604 (Qdefault_directory): Move to minibuffer.el.
17605 (Fread_file_name): Call the new `read-file-name' instead.
17606
17607 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17608
17609 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
17610 Make function non-static.
17611 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
17612 Remove function.
17613 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
17614 Move to mactoolbox.c.
17615 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
17616
17617 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
17618 (mac_rect_make): New macro.
17619
17620 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
17621 instead of float.
17622 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
17623 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
17624 (XSetBackground) [USE_CG_DRAWING]: Likewise.
17625 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
17626 CGRectMake.
17627 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
17628 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
17629 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
17630 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
17631 instead of WindowRef in argument type.
17632 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
17633 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
17634 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
17635 instead of DISPLAY. All uses changed.
17636 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
17637 (x_calc_absolute_position): Simplify so as not to use
17638 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
17639
17640 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
17641 instead of WindowRef in argument type.
17642 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
17643 [TARGET_API_MAC_CARBON]: Remove externs.
17644 (create_apple_event, mac_event_parameters_to_lisp)
17645 [TARGET_API_MAC_CARBON]: Add externs.
17646
17647 * mactoolbox.c (Vmac_ts_script_language_on_focus)
17648 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
17649 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
17650 is clicked.
17651 (x_activate_menubar): Remove extern for saved_menu_event_location.
17652 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
17653 Move from mac.c.
17654
17655 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17656
17657 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
17658 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
17659
17660 2008-04-23 Jason Rumney <jasonr@gnu.org>
17661
17662 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
17663 attributes only for local files.
17664
17665 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
17666 default to Qlocal.
17667
17668 2008-04-22 Juri Linkov <juri@jurta.org>
17669
17670 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
17671 read-buffer-to-switch instead of using the letter "B".
17672
17673 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
17674
17675 * fileio.c (Qdefault_directory): New variable.
17676 (Fread_file_name): Use it to pass `dir' to the completion functions.
17677
17678 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
17679
17680 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
17681
17682 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
17683
17684 * keyboard.c (Vpre_help_message): Remove.
17685 (show_help_echo): Remove default C code.
17686
17687 * dired.c (directory_files_internal, file_name_completion):
17688 Only call ENCODE_FILE if the string is indeed decoded.
17689
17690 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
17691
17692 * Makefile.in (TOOLKIT_DEFINES): Remove.
17693 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
17694
17695 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17696
17697 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
17698 (mactoolbox.o): New target.
17699
17700 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
17701 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
17702
17703 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
17704 Use mac_set_frame_window_background instead of XSetWindowBackground.
17705 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
17706 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
17707 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
17708 instead of SetWindowTitleWithCFString.
17709 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
17710 Move function to mactoolbox.c.
17711 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
17712 Use mac_set_window_modified instead of SetWindowModified.
17713 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
17714 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
17715 (Fx_focus_frame): Use mac_front_non_floating_window instead of
17716 FrontNonFloatingWindow. Use mac_activate_window instead of
17717 ActivateWindow. Use mac_active_non_floating_window instead of
17718 ActiveNonFloatingWindow.
17719 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
17720 Use mac_show_hourglass and mac_hide_hourglass.
17721 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
17722 instead of GetGlobalMouse.
17723 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
17724 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
17725 Use mac_bring_window_to_front instead of BringToFront.
17726 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
17727 mactoolbox.c.
17728 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
17729 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
17730 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
17731 mactoolbox.c.
17732
17733 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
17734 (XtPointer): Move typedef from macmenu.c.
17735 (enum button_type): Move enum from macmenu.c.
17736 (widget_value): Move typedef from macmenu.c.
17737 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
17738 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
17739 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
17740 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
17741 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
17742 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
17743 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
17744 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
17745 (Selection): Move typedef from macselect.c.
17746 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
17747 macterm.c.
17748 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
17749 (mac_is_window_collapsed, mac_bring_window_to_front)
17750 (mac_send_window_behind, mac_hide_window, mac_show_window)
17751 (mac_collapse_window, mac_front_non_floating_window)
17752 (mac_active_non_floating_window, mac_activate_window)
17753 (mac_move_window_structure, mac_move_window, mac_size_window)
17754 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
17755
17756 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
17757 (enum mac_menu_kind): Move enum to mactoolbox.c.
17758 (min_menu_id): Move variable to mactoolbox.c.
17759 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
17760 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
17761 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
17762 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
17763 [TARGET_API_MAC_CARBON]: Likewise.
17764 (XtPointer): Move typedef to macgui.h.
17765 (enum button_type): Move enum to macgui.h.
17766 (widget_value): Move typedef to macgui.h.
17767 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
17768 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
17769 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
17770 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
17771 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
17772 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
17773 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
17774 (popup_activated_flag): Make variable non-static.
17775 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
17776 (add_menu_item, fill_menu, dispose_menus):
17777 Move functions to mactoolbox.c.
17778 (restore_show_help_function, menu_target_item_handler)
17779 (install_menu_target_item_handler, mac_handle_dialog_event)
17780 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
17781 [TARGET_API_MAC_CARBON]: Likewise.
17782 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
17783 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
17784 (find_and_call_menu_selection, name_is_separator): Make function
17785 non-static.
17786 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
17787 to mactoolbox.c.
17788 (set_frame_menubar): Don't call install_menu_quit_handler.
17789 (menu_item_selection): New variable.
17790 (mac_menu_show): Use create_and_show_popup_menu.
17791 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
17792 selection but set variable menu_item_selection. All uses changed.
17793 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
17794 Call install_menu_quit_handler. Move to mactoolbox.c.
17795
17796 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
17797 (Selection): Move typedef to macgui.h.
17798 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
17799 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
17800 Make variables non-static.
17801 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
17802 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
17803 Make functions non-static.
17804 (Vmac_service_selection) [MAC_OSX]: Likewise.
17805 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
17806 (mac_valid_selection_target_p, mac_clear_selection)
17807 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
17808 (mac_put_selection_value, mac_selection_has_target_p)
17809 (mac_get_selection_value, mac_get_selection_target_list)
17810 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
17811 Move functions to mactoolbox.c.
17812 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
17813 Likewise.
17814 (copy_scrap_flavor_data, mac_handle_service_event)
17815 (install_service_handler) [MAC_OSX]: Likewise.
17816 (syms_of_macselect) <Vmac_dnd_known_types>:
17817 Use mac_dnd_default_known_types.
17818
17819 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
17820 Move to mactoolbox.c.
17821 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
17822 (Fx_selection_owner_p): Add EXFUN.
17823 (install_window_handler, remove_window_handler, XSetWindowBackground):
17824 Remove externs.
17825 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
17826 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
17827 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
17828 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
17829 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
17830 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
17831 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
17832 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
17833 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
17834 (create_and_show_popup_menu, mac_get_selection_from_symbol)
17835 (mac_valid_selection_target_p, mac_clear_selection)
17836 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
17837 (mac_put_selection_value, mac_selection_has_target_p)
17838 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
17839 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
17840 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
17841 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
17842 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
17843 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
17844 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
17845 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
17846 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
17847
17848 * mactoolbox.c: New file.
17849
17850 2008-04-18 Jason Rumney <jasonr@gnu.org>
17851
17852 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
17853
17854 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
17855
17856 * character.c (Fmultibyte_char_to_unibyte):
17857 Return latin1 chars unchanged.
17858
17859 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
17860 relocated if it points to `name'.
17861
17862 2008-04-17 Kenichi Handa <handa@m17n.org>
17863
17864 * data.c (Faset): Allow setting a multibyte character in an
17865 ASCII-only unibyte string.
17866
17867 * lisp.h (STRING_SET_MULTIBYTE): New macro.
17868
17869 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
17870
17871 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
17872 done in config.h.
17873
17874 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
17875
17876 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
17877 (Fchar_direction): Add usage in the docstring.
17878
17879 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
17880
17881 * keyboard.c (read_key_sequence): Remove always-true checks.
17882
17883 2008-04-14 Jason Rumney <jasonr@gnu.org>
17884
17885 * w32font.c (w32font_open_internal): Set max_bounds.descent in
17886 compatibility struct, for better underline positioning.
17887
17888 2008-04-13 David Hansen <david.hansen@gmx.net>
17889
17890 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
17891 string.
17892
17893 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
17894
17895 * m/hp800.h (XUINT, XSET): Remove.
17896
17897 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
17898
17899 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
17900 previous change.
17901
17902 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
17903
17904 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
17905 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
17906
17907 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
17908
17909 * keymap.h (map_keymap_canonical): Declare.
17910 * xmenu.c (single_keymap_panes): Use it.
17911
17912 2008-04-11 Glenn Morris <rgm@gnu.org>
17913
17914 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
17915 set the target's value to that of the alias.
17916
17917 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
17918
17919 * term.c (set_tty_color_mode): Left over typo.
17920
17921 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
17922
17923 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
17924 only after check for file name handler functions. Signal, when
17925 native functionality is not supported.
17926 (syms_of_fileio): Declare it unconditionally.
17927
17928 2008-04-10 Jason Rumney <jasonr@gnu.org>
17929
17930 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
17931 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
17932
17933 * w32.c (logon_network_drive): Also logon to remote drives that
17934 are mapped to drive letters.
17935
17936 2008-04-10 Glenn Morris <rgm@gnu.org>
17937
17938 * xdisp.c (truncate-partial-width-windows): Doc fix.
17939
17940 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
17941
17942 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
17943 Move functions to minibuffer.el.
17944 (syms_of_fileio): Don't declare them.
17945
17946 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
17947
17948 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
17949 (syms_of_minibuf): Remove its initialization.
17950
17951 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
17952
17953 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
17954
17955 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
17956
17957 2008-04-09 Jason Rumney <jasonr@gnu.org>
17958
17959 * makefile.w32-in (distclean): Delete makefile too.
17960 (maintainer-clean): New target.
17961
17962 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
17963
17964 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
17965 for new font backend and composite cases.
17966
17967 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
17968
17969 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
17970 Most of the code moved to run_timers.
17971 (do_pending_atimers): Call run_timers.
17972 (run_timers): New function.
17973
17974 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
17975 run atimers.
17976
17977 * process.c (wait_reading_process_output): The same as above.
17978
17979 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
17980
17981 * minibuf.c (last_exact_completion): Remove variable.
17982 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
17983 (complete_and_exit_1, complete_and_exit_2)
17984 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
17985 (Fdisplay_completion_list, display_completion_list_1)
17986 (Fminibuffer_completion_help, Fself_insert_and_exit)
17987 (Fexit_minibuffer, Fminibuffer_message): Move functions to
17988 minibuffer.el.
17989 (syms_of_minibuf): Remove corresponding initializations.
17990
17991 * keyboard.c (Qdeactivate_mark): New var.
17992 (command_loop_1): Use it to call `deactivate-mark'.
17993 (syms_of_keyboard): Initialize it.
17994
17995 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
17996 to another frame.
17997 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
17998 Don't call set_tty_color_mode.
17999 (store_frame_param): Reset previous_frame rather than call
18000 set_tty_color_mode.
18001 * term.c (set_tty_color_mode): Rewrite.
18002 * dispextern.h (set_tty_color_mode): New type.
18003 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
18004
18005 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
18006
18007 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
18008 for generic chars, which do not exist any more in emacs-unicode.
18009
18010 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
18011
18012 * coding.c (detect_coding_emacs_mule)
18013 (Ffind_operation_coding_system): Fix typo.
18014
18015 2008-04-08 Jason Rumney <jasonr@gnu.org>
18016
18017 * w32uniscribe.c (SNAME): Extract only symbol name.
18018
18019 * w32font.h (struct w32_metric_cache): New struct.
18020 (w32font_info): Use it.
18021 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
18022 (CACHE_BLOCKSIZE): New constants.
18023
18024 * w32font.c (Qja, Qko, Qzh): New symbols.
18025 (syms_of_w32font): Initialise them.
18026 (font_matches_spec): Use them to filter by language.
18027 (recompute_cached_metrics): Remove function.
18028 (compute_metrics, clear_cached_metrics): New functions.
18029 (w32font_encode_char): Use them to manage metric cache.
18030 (w32font_text_extents): Cache metrics for all glyphs on demand.
18031 Delay converting glyph indices to WORD until needed.
18032 (w32font_open_internal): Initialize metric cache to empty.
18033 (registry_to_w32_charset): Charset should always be a symbol.
18034 (fill_in_logfont, list_all_matching_fonts): Family should
18035 always be a symbol.
18036
18037 2008-04-06 Jason Rumney <jasonr@gnu.org>
18038
18039 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
18040 Give up if glyph indices not supported. Use uniscribe obtained
18041 ABC widths for individual metrics. Map glyph clusters back to
18042 characters using fClusterStart flag. Return number of glyphs
18043 produced, not chars processed.
18044 (uniscribe_shape): Map char at FROM to current glyph.
18045
18046 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18047
18048 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
18049 Use SetMenuItemHierarchicalMenu.
18050
18051 2008-04-05 Jason Rumney <jasonr@gnu.org>
18052
18053 * image.c (pbm_load): Allow color values up to 65535.
18054 Throw an error if max_color_idx is outside the supported range.
18055 Report an error when image size is invalid.
18056 Read two bytes at a time when raw images have max_color_idx above 255.
18057
18058 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
18059
18060 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
18061 append "CCL: Quitted" when the CCL program is quitted.
18062 (setup_ccl_program): Initialize ccl->quit_silently to zero.
18063
18064 * ccl.h (struct ccl_program): New member quit_silently.
18065
18066 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
18067
18068 * search.c (compile_pattern_1): Treat non-nil and non-string of
18069 search-spaces-regexp as nil.
18070
18071 * minibuf.c (Fassoc_string): Tweak docstring.
18072
18073 2008-04-05 Eli Zaretskii <eliz@gnu.org>
18074
18075 * dired.c (Ffile_attributes): Support inode numbers wider than 32
18076 bits. Remove ugly WINDOWSNT-specific kludge introduced on
18077 2008-03-14 to force inode be positive.
18078
18079 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
18080 _S_* ones, since we now use our own sys/stat.h.
18081 (stat, fstat): Don't mangle the inode number.
18082 (init_user_info): Don't restrict UID and GID to 0-60000 range.
18083
18084 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
18085
18086 * frame.h (struct frame): Give one more bit to `visible' since we use
18087 values larger than 1 to indicate obscured frames on ttys.
18088
18089 * keymap.c (Qkeymap_canonicalize): New var.
18090 (Fmap_keymap_internal): New fun.
18091 (describe_map): Use keymap-canonicalize.
18092
18093 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
18094 (Fundo_boundary): Set them.
18095 (syms_of_undo): Initialize them.
18096 (record_point): Use them instead of last_point_position*.
18097 (last_undo_buffer): Change type.
18098
18099 2008-04-04 Jason Rumney <jasonr@gnu.org>
18100
18101 * w32font.c (w32font_text_extents): Use font's ascent and descent.
18102 (recompute_cached_metrics): Don't set ascent and descent per char.
18103
18104 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
18105 (uniscribe_check_otf): Add GC protection before consing.
18106 Rearrange loop for counting features.
18107
18108 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
18109
18110 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
18111 buffer with byte-size of source buffer.
18112
18113 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
18114
18115 * callint.c (Fcall_interactively): Handle temporary region even
18116 when shift-select-mode is off.
18117
18118 2008-04-03 Jason Rumney <jasonr@gnu.org>
18119
18120 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
18121
18122 2008-04-03 Kenichi Handa <handa@m17n.org>
18123
18124 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
18125 (CATEGORY_MASK_UTF_16): Likewise.
18126 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
18127 binary file.
18128 (detect_coding): Add null-byte detection for a binary file.
18129 (detect_coding_system): Likewise.
18130
18131 2008-04-03 Jason Rumney <jasonr@gnu.org>
18132
18133 * w32uniscribe.c: New file.
18134
18135 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
18136
18137 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
18138
18139 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
18140 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
18141 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
18142 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
18143 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
18144 (Qphonetic): New symbols.
18145 (syms_of_w32font): Initialize them.
18146 (font_supported_scripts): Use them.
18147 (w32font_list_family): List all charsets.
18148 (w32font_text_extents, recompute_cached_metrics): Fix metric
18149 calculations.
18150 (w32_enumfont_pattern_entity): Make full_type a DWORD.
18151 Give opentype fonts their own format.
18152 (font_matches_spec): New arguments backend and logfont.
18153 Handle :otf spec for uniscribe backend.
18154 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
18155 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
18156
18157 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
18158 font backend.
18159 (globals_of_w32fns): Initialize uniscribe font backend.
18160
18161 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
18162 dependencies.
18163 (w32uniscribe.$(O)): New file to build.
18164 (FONT_OBJ): Include w32uniscribe.$(O).
18165 (LIBS): Add uniscribe libraries.
18166
18167 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
18168
18169 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
18170
18171 * callint.c (Vshift_select_mode): New var.
18172 (Finteractive): Document new ^ spec.
18173 (Fcall_interactively): Call handle-shift-selection if the ^ spec
18174 is present.
18175
18176 * keyboard.c (Vthis_command_keys_shift_translated): New var.
18177 (command_loop_1): Avoid running the direct display versions of
18178 forward-char and backward-char if shift-selection may occur.
18179 (read_key_sequence): Set Vthis_command_keys_shift_translated if
18180 shift-translation takes place.
18181
18182 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
18183 avoid clobbering by define-minor-mode.
18184
18185 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
18186 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
18187
18188 * syntax.c (Fforward_word): Add ^ interactive spec.
18189
18190 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
18191 (Fscroll_right): Add ^ interactive spec.
18192
18193 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
18194
18195 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
18196
18197 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
18198
18199 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
18200
18201 2008-03-31 Juri Linkov <juri@jurta.org>
18202
18203 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
18204
18205 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
18206
18207 * gtkutil.c (xg_set_geometry): Fix indentation.
18208 (xg_resize_outer_widget): Remove.
18209 (x_wm_size_hint_off): Fix indentation.
18210 (xg_frame_set_char_size): Call flush_and_sync after
18211 gtk_window_resize.
18212 (x_wm_set_size_hint): Pass NULL as geometry window to
18213 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
18214 Add menu bar and tool bar height to base height.
18215 (xg_update_frame_menubar, free_frame_menubar)
18216 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
18217 (update_frame_tool_bar, free_frame_tool_bar):
18218 Change xg_resize_outer_widget to xg_frame_set_char_size.
18219
18220 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
18221
18222 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
18223 (Fdbus_call_method): New parameter TIMEOUT.
18224 (dbus-send-signal): Optimize UNGCPRO call.
18225
18226 2008-03-29 Juri Linkov <juri@jurta.org>
18227
18228 * window.c (Fdisplay_buffer): Move call to
18229 Vsplit_window_preferred_function out of conditions that check
18230 if window is eligible for vertical splitting.
18231 When Vsplit_window_preferred_function is non-nil, call it and use
18232 its non-nil return value as window. Otherwise, continue doing
18233 vertical splitting using Fsplit_window with arg horflag=nil.
18234 (syms_of_window) <Vsplit_window_preferred_function>: Change the
18235 default value from `split-window' to nil.
18236
18237 2008-03-29 Juri Linkov <juri@jurta.org>
18238
18239 * callint.c (Fcall_interactively): Revert 2008-03-16 change
18240 for interactive code letters 'b' and 'B'.
18241
18242 2008-03-29 Eli Zaretskii <eliz@gnu.org>
18243
18244 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
18245 multibyte string.
18246
18247 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
18248
18249 * keyboard.c (pending_funcalls): New var.
18250 (timer_check): Run it.
18251 (syms_of_keyboard): Initialize it.
18252 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
18253 (Vdelete_terminal_functions): New vars.
18254 (syms_of_terminal): Initialize them.
18255 (Fdelete_terminal): Run delete-terminal-functions.
18256 * xdisp.c (safe_eval): Rewrite.
18257 (safe_call2): New fun.
18258 * frame.c (Qdelete_frame_functions): New var.
18259 (syms_of_frame): Initialize it.
18260 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
18261 * lisp.h (safe_call2, pending_funcalls): Declare.
18262
18263 2008-03-28 Andreas Schwab <schwab@suse.de>
18264
18265 * indent.c (Fmove_to_column): Move declaration before statements.
18266
18267 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
18268
18269 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
18270 (struct frame): Use bit fields for boolean vars.
18271
18272 * process.c (server_accept_connection): Simplify naming.
18273 (emacs_get_tty_pgrp): Use SDATA.
18274
18275 * coding.c (decode_coding_object): Fix last change.
18276
18277 2008-03-27 Jason Rumney <jasonr@gnu.org>
18278
18279 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
18280
18281 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
18282
18283 * charset.c (Fdefine_charset_internal): Change the way of
18284 registering charsets in Vcharset_order_list.
18285 (syms_of_charset): Make the charset `eight-bit' supplementary.
18286
18287 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
18288
18289 * regex.c (EXTEND_BUFFER): Change order of pointer addition
18290 operations, to avoid having the difference between pointers
18291 overflow.
18292
18293 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
18294
18295 * indent.c (check_display_width): New fun.
18296 (scan_for_column): Use it.
18297
18298 * data.c (syms_of_data): Mark most-positive-fixnum and
18299 most-negative-fixnum as constants.
18300
18301 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
18302
18303 * indent.c (scan_for_column): Extract from current_column_1.
18304 Merge with the same code from Fmove_to_column.
18305 (current_column_1, Fmove_to_column): Use it.
18306
18307 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
18308
18309 * keymap.c (map_keymap_internal): New fun.
18310 (map_keymap): Use it.
18311 (Fmap_keymap_internal): New fun.
18312 (Fmap_keymap): Remove left-out test from before make_save_value.
18313
18314 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
18315
18316 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
18317 Use XCAR/XCDR.
18318
18319 * process.h (struct Lisp_Process): Remove filter_multibyte.
18320 * process.c (QCfilter_multibyte): Remove.
18321 (setup_process_coding_systems): Don't use filter_multibyte.
18322 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
18323 (read_process_output): Don't adjust multibyteness to filter_multibyte.
18324 (Fset_process_filter_multibyte): Change the coding-system to
18325 approximate the previous behavior.
18326 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
18327 coding-system.
18328
18329 * coding.c (decode_coding_object): When not decoding into a buffer,
18330 obey the coding system's preference of (uni|multi)byte.
18331
18332 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
18333
18334 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
18335 every char is changed and has a different byte-length.
18336 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
18337 Fix int -> EMACS_INT.
18338
18339 2008-03-23 David Hansen <david.hansen@gmx.net>
18340
18341 * dbusbind.c (xd_read_message): Remove extra copying of message
18342 strings. Check for NULL `interface' or `member'.
18343
18344 2008-03-22 Eli Zaretskii <eliz@gnu.org>
18345
18346 * w32.c (readdir): If FindFirstFile/FindNextFile return in
18347 cFileName a file name that includes `?' characters, use the 8+3
18348 alias in cAlternateFileName instead.
18349
18350 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
18351
18352 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
18353
18354 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
18355
18356 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
18357 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
18358 work on current_buffer only instead (that was already the case
18359 for some of the code anyway).
18360 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
18361 (temp_set_point, temp_set_point_both): Use EMACS_INT.
18362 (SET_PT, SET_PT_BOTH): Adjust.
18363 * intervals.h (set_point, temp_set_point, set_point_both)
18364 (temp_set_point_both): Remove redundant declarations.
18365
18366 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
18367
18368 * fileio.c (Finsert_file_contents):
18369 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
18370 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
18371 when buffer != current_buffer anyway.
18372
18373 2008-03-20 Andreas Schwab <schwab@suse.de>
18374
18375 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
18376 as default.
18377
18378 2008-03-19 Jason Rumney <jasonr@gnu.org>
18379
18380 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
18381 (syms_of_w32fns): Initialize them.
18382 (HOURGLASS_ID): New constant.
18383 (x_window_to_frame): Don't check hourglass_window.
18384 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
18385 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
18386 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
18387 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
18388 Only change the cursor if hourglass is not active.
18389 (Fx_create_frame): Initialize frame's current_cursor.
18390 (hourglass_atimer): Remove.
18391 (hourglass_started): New function.
18392 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
18393 (show_hourglass): Adapt to w32, changing argument to frame.
18394
18395 * w32term.h (struct w32_output): Remove hourglass_window.
18396 Add current_cursor.
18397
18398 * eval.c (call_debugger, Fsignal):
18399 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
18400 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
18401 (Fexecute_extended_command, cancel_hourglass_unwind):
18402 * minibuf.c (read_minibuf):
18403 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
18404
18405 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
18406
18407 * window.c (run_funs): New fun.
18408 (run_window_configuration_change_hook): Use it to run the buffer-local
18409 and the global part of the hook.
18410
18411 * xdisp.c (format_mode_line_unwind_data): Add window argument.
18412 (unwind_format_mode_line): Restore selected window.
18413 (x_consider_frame_title, Fformat_mode_line): Set selected window.
18414
18415 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
18416
18417 * editfns.c (Fchar_equal): Check they are valid characters.
18418
18419 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
18420
18421 2008-03-17 Andreas Schwab <schwab@suse.de>
18422
18423 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
18424 against a charset.
18425
18426 * lisp.h (Fbuffer_list): Declare.
18427
18428 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
18429
18430 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
18431 handlebox_widget is != 0.
18432
18433 2008-03-16 Juri Linkov <juri@jurta.org>
18434
18435 * callint.c (Fcall_interactively): For interactive code letters
18436 'b' and 'B' put the buffer list into the list of default "future"
18437 values of the minibuffer.
18438
18439 2008-03-16 Andreas Schwab <schwab@suse.de>
18440
18441 * keyboard.c (read_key_sequence): Fix downcasing of letters with
18442 modifiers.
18443
18444 * regex.c (re_match_2_internal): Correct matching of a charset
18445 against latin-1 characters.
18446
18447 2008-03-16 Kenichi Handa <handa@m17n.org>
18448
18449 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
18450 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
18451 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
18452 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
18453 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
18454 CHAR_STRING_ADVANCE.
18455 (produce_chars): Fix for the case that the source and the
18456 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
18457 instead of CHAR_STRING_ADVANCE.
18458 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
18459 STRING_CHAR_ADVANCE.
18460
18461 2008-03-15 Andreas Schwab <schwab@suse.de>
18462
18463 * regex.c (re_match_2_internal): Correct matching of eight bit
18464 characters in unibyte strings.
18465
18466 2008-03-15 Martin Rudalics <rudalics@gmx.at>
18467
18468 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
18469 at end of range when it coincides with the end of the buffer.
18470
18471 2008-03-14 Eli Zaretskii <eliz@gnu.org>
18472
18473 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
18474
18475 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
18476
18477 2008-03-14 Jason Rumney <jasonr@gnu.org>
18478
18479 * editfns.c (initial_tz): New variable.
18480 (syms_of_editfns): Initialize it.
18481 (Fset_time_zone_rule): Set it when first called.
18482 Use it when TZSTRING is nil.
18483
18484 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
18485 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
18486 (monitor_from_point_fn, get_monitor_info_fn): New globals.
18487 (globals_of_w32fns): Initialize them.
18488 (compute_tip_xy): Use them to position tooltips.
18489
18490 2008-03-14 Glenn Morris <rgm@gnu.org>
18491
18492 * emacs.c (main): Revert previous change.
18493 (standard_args): Revert -internal-script back to -scriptload,
18494 and remove the long-option form.
18495
18496 2008-03-13 Glenn Morris <rgm@gnu.org>
18497
18498 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
18499 Remove option -enable-font-backend.
18500
18501 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
18502
18503 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
18504
18505 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
18506
18507 * xterm.c (x_connection_closed): For GTK: If this is the last
18508 terminal just exit without closing the display.
18509
18510 2008-03-11 Jason Rumney <jasonr@gnu.org>
18511
18512 * w32font.c (w32font_full_name): Use floor to round.
18513
18514 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
18515
18516 * sound.c (alsa_configure): Declare vol at beginning of block.
18517
18518 * fontset.c (Ffontset_info): Remove extra semicolon.
18519
18520 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
18521
18522 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
18523 size of resulting string.
18524
18525 2008-03-10 Jason Rumney <jasonr@gnu.org>
18526
18527 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
18528
18529 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18530
18531 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
18532 Don't pretend as if characters with display property haven't been
18533 consumed for string-replacing-string case.
18534
18535 2008-03-08 Kim F. Storm <storm@cua.dk>
18536
18537 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
18538 (get_next_display_element, next_element_from_string)
18539 (next_element_from_ellipsis, next_element_from_buffer): Use it.
18540
18541 2008-03-08 Andreas Schwab <schwab@suse.de>
18542
18543 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
18544
18545 2008-03-06 Jason Rumney <jasonr@gnu.org>
18546
18547 * w32font.c (w32_registry): Take font_type argument. Use ANSI
18548 when charset not specified. Only translate ANSI to unicode when
18549 font_type is truetype.
18550 (w32font_coverage_ok): New function.
18551 (add_font_entity_to_list): Use it to filter unsuitable fonts.
18552
18553 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
18554
18555 * lread.c (Fread_char): Resolve modifiers.
18556 (Fread_char_exclusive): Likewise.
18557
18558 * character.c (char_resolve_modifier_mask): New function.
18559 (char_string): Use char_resolve_modifier_mask.
18560 (Fchar_resolve_modifiers): New function.
18561 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
18562 function.
18563
18564 2008-03-04 Jason Rumney <jasonr@gnu.org>
18565
18566 * makefile.w32-in: Always include w32font.c in the build.
18567 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
18568
18569 2008-03-04 Andreas Schwab <schwab@suse.de>
18570
18571 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
18572 (versionclean): Likewise.
18573
18574 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
18575
18576 * .cvsignore: Add oo.
18577
18578 2008-03-03 Andreas Schwab <schwab@suse.de>
18579
18580 * coding.c (decode_coding_object): Inhibit gap shrinking while
18581 decoding in place.
18582
18583 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
18584
18585 * w32term.c: Remove unused include "gnu.h".
18586 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
18587
18588 * gnu.h: Rename to ...
18589 * emacs-icon.h: ... this.
18590 * xterm.c: Use emacs-icon.h instead of gnu.h.
18591 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
18592
18593 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
18594
18595 * w32font.c: Include math.h.
18596
18597 2008-03-03 Jason Rumney <jasonr@gnu.org>
18598
18599 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
18600 Compute options separately.
18601 (w32font_open_internal): Set glyph_idx before caching metrics.
18602
18603 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
18604 Define if system headers don't.
18605 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
18606 (w32font_encode_char): Don't declare here.
18607
18608 * w32font.c (Quniscribe, QCformat): New symbols.
18609 (syms_of_w32font): Define them.
18610 (w32font_has_char): Indicate uncertainty.
18611 (w32font_encode_char): Encode as glyph point. Make static.
18612 (recompute_cached_metrics): New function.
18613 (w32font_open_internal): Use it. Set font to use glyph points
18614 initially. Set format based on type of font.
18615 (w32font_text_extents, w32font_draw): Optionally use glyph points.
18616 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
18617 on it. Set format based on information available here.
18618 (add_font_entity_to_list): Identify backend based on opentype_only.
18619
18620 2008-03-02 Andreas Schwab <schwab@suse.de>
18621
18622 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
18623
18624 * coding.c (decode_coding_big5, produce_chars):
18625 Fix typos in last change.
18626
18627 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
18628
18629 * gnu.h: New icon.
18630
18631 2008-03-02 Kenichi Handa <handa@m17n.org>
18632
18633 * coding.c (decode_coding_utf_8): When eol-type of CODING is
18634 `dos', don't decode '\r' if that is the last in the source.
18635 (decode_coding_utf_16, decode_coding_emacs_mule)
18636 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
18637 (decode_coding_raw_text, decode_coding_charset): Likewise.
18638 (produce_chars): Don't decode EOL here. Use EMACS_INT.
18639
18640 2008-03-01 Jason Rumney <jasonr@gnu.org>
18641
18642 * w32font.c (w32font_full_name): Report point size for scalable fonts.
18643
18644 2008-03-01 Kim F. Storm <storm@cua.dk>
18645
18646 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
18647
18648 2008-03-01 Jason Rumney <jasonr@gnu.org>
18649
18650 * w32font.c (w32font_full_name): New function.
18651 (w32font_open_internal): Use it.
18652
18653 2008-03-01 Kim F. Storm <storm@cua.dk>
18654
18655 * dispnew.c (line_draw_cost): Fix invalid glyph check.
18656
18657 2008-03-01 Jason Rumney <jasonr@gnu.org>
18658
18659 * font.c (font_unparse_fcname): Increase len when style is a symbol.
18660
18661 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
18662
18663 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
18664 xg_frame_resized when the event is for the edit widget.
18665
18666 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
18667
18668 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
18669 set_char_size.
18670 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
18671 operations on widgets here. Just set frame size if needed.
18672 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
18673 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
18674 (x_wm_set_size_hint): Set size hints on the edit widget only, not
18675 the whole frame.
18676 (xg_create_tool_bar): Move attachment of the tool bar to
18677 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
18678 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
18679
18680 2008-03-01 Jason Rumney <jasonr@gnu.org>
18681
18682 * w32fns.c (w32_msg_pump): Disable debug code.
18683
18684 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18685
18686 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
18687
18688 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
18689
18690 * xdisp.c (next_overlay_string): Don't set
18691 overlay_strings_at_end_processed_p if we're currently reading from
18692 a display string.
18693
18694 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
18695
18696 * xdisp.c (get_overlay_strings_1): Fix typo.
18697
18698 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
18699
18700 * xdisp.c (get_overlay_strings_1): Add missing argument type.
18701
18702 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
18703
18704 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
18705
18706 * xdisp.c (display_mode_element): Cancel the previous change.
18707 (decode_mode_spec): Likewise.
18708 (handle_auto_composed_prop): Don't make composition if it->string
18709 is a string.
18710
18711 2008-02-27 Kim F. Storm <storm@cua.dk>
18712
18713 * lisp.h (GLYPH): Change type from int to struct with separate char
18714 and face_id members.
18715 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
18716 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
18717 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
18718 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
18719 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
18720 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
18721 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
18722 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
18723 handle new Lisp glyph code encoding, either an integer or a cons.
18724
18725 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
18726 (GLYPH_ALIAS): Delete.
18727 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
18728 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
18729 (GLYPH_FROM_CHAR): Replace macro by ...
18730 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
18731
18732 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
18733 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
18734 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
18735 (GLYPH_INVALID_P): New macro.
18736 (spec_glyph_lookup_face): Update prototype.
18737
18738 * dispnew.c (line_draw_cost): Adapt to new glyph type.
18739 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
18740 new glyph code encoding.
18741 (spec_glyph_lookup_face): No return value; update passed glyph instead.
18742 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
18743
18744 * xdisp.c (get_next_display_element, next_element_from_display_vector):
18745 Adapt to new glyph type and new glyph code encoding.
18746
18747 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
18748
18749 * indent.c (current_column, current_column_1, Fmove_to_column)
18750 (compute_motion): Adapt to new glyph code encoding.
18751
18752 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
18753
18754 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
18755
18756 * process.c (wait_reading_process_output): Check for window
18757 changes caused by timers.
18758 Suggested by Johan Bockgård.
18759
18760 2008-02-27 Glenn Morris <rgm@gnu.org>
18761
18762 * emacs.c (USAGE1): Add `--disable-font-backend'.
18763
18764 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
18765
18766 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
18767 is made to the buffer.
18768
18769 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
18770
18771 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
18772 (face_at_string_position):
18773 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
18774 (face_at_string_position):
18775 * xdisp.c (display_string, next_overlay_change):
18776 * buffer.h (overlays_at):
18777 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
18778 Update callers.
18779
18780 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
18781
18782 * editfns.c (Fformat): Doc fix.
18783
18784 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
18785
18786 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
18787 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
18788 (Ffont_otf_alternates, Fquery_font): Doc fixes.
18789
18790 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
18791
18792 * buffer.c (Fbuffer_swap_text): New function.
18793 (syms_of_buffer): Defsubr it.
18794
18795 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
18796
18797 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
18798
18799 2008-02-25 Jason Rumney <jasonr@gnu.org>
18800
18801 * w32font.c (w32font_draw): Draw one character at a time when padding.
18802
18803 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
18804
18805 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
18806 Handle a nil arg. Use run_window_configuration_change_hook.
18807 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
18808 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
18809 Use run_window_configuration_change_hook.
18810
18811 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
18812
18813 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
18814 1-pixel width.
18815
18816 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
18817
18818 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
18819 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
18820 if the glyph in the font is zero pixel with.
18821
18822 * dispextern.h (struct glyph_string): New member padding_p.
18823
18824 * w32font.c (w32font_draw): Pay attention to s->padding_p.
18825
18826 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
18827
18828 * xfont.c (xfont_draw): Pay attention to s->padding_p.
18829
18830 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
18831
18832 * font.c: If the font driver doesn't have `shape' function, return Qnil.
18833
18834 2008-02-25 Jason Rumney <jasonr@gnu.org>
18835
18836 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
18837
18838 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
18839
18840 Allow fine-grained image-cache flushing.
18841 * dispextern.h (struct image): Add `dependencies' field.
18842 (clear_image_caches): Change arg to Lisp_Object.
18843 * image.c (make_image): Initialize `dependencies' field.
18844 (clear_image_cache): Change arg to allow fine-grained flushing.
18845 Perform the flush even if image-cache-eviction-delay is nil.
18846 (clear_image_caches): Change arg to Lisp_Object.
18847 (Fclear_image_cache): Expand meaning of the argument.
18848 (mark_image): Mark `dependencies' field.
18849 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
18850 (lface_hash): Use XHASH rather than XFASTINT.
18851 (face_at_buffer_position): Fix int -> EMACS_INT position.
18852 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
18853 (select_frame_for_redisplay): Remove code duplication.
18854 (redisplay_internal): Adapt arg to call to clear_image_caches.
18855
18856 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
18857
18858 * s/vms4-0.h:
18859 * s/vms4-2.h:
18860 * s/vms4-4.h:
18861 * s/vms5-5.h: Remove, unused.
18862
18863 * s/irix5-2.h:
18864 * s/irix6-0.h:
18865 * s/riscos5.h:
18866 * s/mach-bsd4-3.h:
18867 * m/mips4.h: Remove files for obsolete systems.
18868
18869 * Makefile.in:
18870 * filelock.c:
18871 * unexmips.c:
18872 * m/hp9000s300.h:
18873 * m/iris4d.h:
18874 * s/aix3-1.h:
18875 * s/hpux.h:
18876 * s/msdos.h:
18877 * s/usg5-0.h:
18878 * s/usg5-2-2.h:
18879 * s/usg5-2.h:
18880 * s/usg5-3.h: Remove references to obsolete variables.
18881
18882 * s/irix5-0.h: Remove, move all the contents ...
18883 * s/irix6-5.h: ... here. Simplify.
18884 * config.in: Regenerate.
18885
18886 2008-02-24 Jason Rumney <jasonr@gnu.org>
18887
18888 * w32term.c (x_draw_glyph_string_background): Clear the background
18889 manually when cleartype is in use.
18890 (x_draw_glyph_string_foreground): Draw text transparently when
18891 cleartype is in use.
18892
18893 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
18894 a font into it unless we have to.
18895
18896 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
18897
18898 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
18899 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
18900
18901 2008-02-18 Jason Rumney <jasonr@gnu.org>
18902
18903 * w32fns.c (Fw32_shell_execute): Encode parameters.
18904
18905 2008-02-09 Eli Zaretskii <eliz@gnu.org>
18906
18907 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
18908
18909 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
18910
18911 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
18912
18913 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
18914
18915 * xterm.c (x_set_offset): Don't change the gravity if
18916 CHANGE_GRAVITY is -1.
18917
18918 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
18919
18920 * fileio.c (auto_save_error_occurred): New var.
18921 (auto_save_error): Set it.
18922 (Fdo_auto_save): Don't overwrite the error message if an auto-save
18923 error occurred.
18924
18925 2008-02-23 Eli Zaretskii <eliz@gnu.org>
18926
18927 * w32.c (globals_of_w32): Add initializations for
18928 g_b_init_get_sid_sub_authority and
18929 g_b_init_get_sid_sub_authority_count.
18930
18931 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
18932
18933 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
18934 (font_parse_xlfd): Use them for sanity check.
18935 (Finternal_set_font_style_table): Make sure the table is bijective.
18936
18937 Consolidate the image_cache to the terminal struct.
18938 * termhooks.h (P_): Remove redundant def.
18939 (struct terminal): New field `image_cache'.
18940 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
18941 of FRAME_X_IMAGE_CACHE.
18942 * xterm.h (struct x_display_info): Remove image_cache field.
18943 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
18944 * w32term.h (struct w32_display_info): Remove image_cache field.
18945 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
18946 * macterm.h (struct mac_display_info): Remove image_cache field.
18947 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
18948 * xterm.c (x_term_init):
18949 * w32term.c (w32_term_init):
18950 * macterm.c (mac_term_init): Set the image_cache in the terminal.
18951 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
18952 Remove declarations.
18953 (clear_image_caches, mark_image_cache): New declarations.
18954 * xfaces.c (clear_face_cache):
18955 * xdisp.c (redisplay_internal): Use clear_image_caches.
18956 * image.c (clear_image_cache): Don't check that a frame is on
18957 a window-system before checking if it shares the same cache.
18958 (clear_image_caches): New function.
18959 (Fclear_image_cache): Use it.
18960 (mark_image): Move from allo.c.
18961 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
18962 * alloc.c (mark_image, mark_image_cache): Move to image.c.
18963 (mark_object): Don't call mark_image_cache for frames.
18964 (mark_terminals): Call mark_image_cache.
18965
18966 * lisp.h (Fdelete_terminal): Declare.
18967
18968 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
18969 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
18970 wrong_type_argument.
18971
18972 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
18973
18974 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
18975 malayalam.el, and tamil.el. Add sinhala.el.
18976
18977 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
18978
18979 * xterm.c (x_connection_closed): Consolidate identical tests.
18980 (x_delete_terminal): Don't crash if called via x_connection_closed.
18981
18982 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
18983
18984 * xdisp.c (decode_mode_spec): New arg string.
18985 (display_mode_element): Adjust for the above change.
18986
18987 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
18988
18989 * callint.c (Fcall_interactively): Use AREF.
18990
18991 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
18992
18993 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
18994
18995 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
18996
18997 * xfns.c (Fx_show_tip): Set string to " " if empty.
18998
18999 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
19000
19001 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
19002 with Qt.
19003
19004 2008-02-17 Kenichi Handa <handa@m17n.org>
19005
19006 * ftfont.c (ftfont_shape): Return Lispy number.
19007
19008 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
19009 for GCs.
19010 (Finternal_set_font_selection_order): Call font_update_sort_order
19011 only when enable_font_backend is set.
19012 (realize_x_face): Set face->font_info to that of default face only
19013 when enable_font_backend is set.
19014
19015 * xdisp.c (handle_composition_prop): Set it->c to the fist
19016 character of the composed region.
19017 (fill_composite_glyph_string): Set base_face->font_info to
19018 s->font_info. Get a face for ascii from base_face->ascii_face.
19019 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
19020 with a face already decided.
19021 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
19022 non-negative.
19023 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
19024 call font_prepare_composition unconditionally.
19025
19026 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
19027
19028 * xterm.h (struct x_display_info): New member font.
19029
19030 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
19031 (x_set_mouse_face_gc, x_new_font): Likewise.
19032 (x_term_init): Setup display_info->font.
19033 (x_delete_terminal): Free display_info->font.
19034
19035 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
19036
19037 * ftxfont.c (ftxfont_default_fid): Delete it.
19038 (ftxfont_open): Set xfont->fid to 0.
19039 (ftxfont_end_for_frame): Clear data specific to the frame and the
19040 font-driver.
19041
19042 * xftfont.c (xftfont_default_fid): Delete it.
19043 (xftfont_open): Set xfont->fid to 0.
19044
19045 * fontset.c (FONTSET_OBJLIST): New macro.
19046 (fontset_find_font): Update font-object list of the fontset.
19047 (free_realized_fontset): New function.
19048 (free_face_fontset): Call free_realized_fontset.
19049 (Ffont_info): Call font_close_object only when enable_font_backend
19050 is set.
19051
19052 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
19053 [HAVE_NTGUI]: Include w32term.h.
19054 [MAC_OS]: Include macterm.ch.
19055 (font_otf_ValueRecord): Use make_number.
19056 (font_finish_cache): Fix handling of reference count.
19057 (font_clear_cache): Update num_fonts.
19058 (font_open_entity): Update smallest_char_width and
19059 smallest_font_height of the frame.
19060 (font_close_object): Update num_fonts.
19061 (Fclear_font_cache): Fix finding the target cache data.
19062
19063 2008-02-16 Glenn Morris <rgm@gnu.org>
19064
19065 * fontset.c (Finternal_char_font): Fix compilation warning.
19066
19067 2008-02-16 Eli Zaretskii <eliz@gnu.org>
19068
19069 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
19070 instead of char arrays. Enlarge the size of array passed to
19071 get_token_information.
19072
19073 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
19074 warnings.
19075
19076 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
19077
19078 * .gdbinit: Don't set `args', it breaks gdb --args.
19079
19080 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
19081
19082 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
19083 within a narrowed buffer.
19084
19085 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
19086
19087 * coding.c (decode_coding_object, encode_coding_object):
19088 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
19089
19090 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
19091
19092 * coding.c (coding_set_destination): Use BEG_BYTE rather than
19093 hardcoding 1.
19094 (detect_coding_system):
19095 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
19096 (string_char_to_byte, string_byte_to_char, insert_from_gap):
19097 * insdel.c (insert_from_gap):
19098 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
19099 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
19100 (string_to_multibyte):
19101 * character.c (chars_in_text, multibyte_chars_in_text):
19102 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
19103
19104 * character.h (FETCH_STRING_CHAR_ADVANCE)
19105 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
19106 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
19107 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
19108
19109 * casefiddle.c (casify_region): Only call after-change and composition
19110 functions on the part of the region that was changed.
19111
19112 * keyboard.c (read_avail_input):
19113 * frame.c (Fdelete_frame): Call Fdelete_terminal.
19114
19115 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
19116
19117 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
19118 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
19119
19120 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
19121
19122 * w32menu.c (push_submenu_start, push_submenu_end)
19123 (push_left_right_boundary, push_menu_pane, push_menu_item):
19124 * keyboard.c (read_key_sequence): Don't pass args with side effects
19125 to AREF, it fails when compiling with -DENABLE_CHECKING.
19126
19127 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
19128
19129 * Makefile.in (${lispsource}international/charprop.el):
19130 Delete this target.
19131
19132 * search.c (boyer_moore): Fix incorrect synching of the trunk and
19133 emacs-unicode-2.
19134
19135 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
19136
19137 * terminal.c (Fdelete_terminal): Clean up the `force' path.
19138
19139 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
19140
19141 * frame.c (Qnoelisp): New symbol.
19142 (syms_of_frame): Initialize it.
19143 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
19144 harmless Elisp code, from a strong `force' from x_connection_closed.
19145 * frame.h (Qnoelisp): Declare.
19146 * xterm.c (x_connection_closed): Pass `noelisp'.
19147
19148 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
19149 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
19150 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
19151 rather than `int' for the type of `type'.
19152
19153 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
19154
19155 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
19156
19157 * Makefile.in (GNUC): Remove support for gcc-1.x.
19158
19159 2008-02-10 Richard Stallman <rms@gnu.org>
19160
19161 * lisp.h (ASET): Use AREF, not ASLOT.
19162
19163 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
19164
19165 * lisp.h (ASET): Check bounds.
19166
19167 2008-02-10 Glenn Morris <rgm@gnu.org>
19168
19169 * buffer.c (mode-name): Doc fix.
19170
19171 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
19172
19173 * Makefile.in:
19174 * emacs.c:
19175 * gmalloc.c:
19176 * keyboard.c:
19177 * lisp.h:
19178 * m/ibm370aix.h:
19179 * process.c:
19180 * regex.c:
19181 * s/hpux.h:
19182 * sysdep.c:
19183 * sysselect.h:
19184 * systty.h:
19185 * unexec.c:
19186 * w32term.c:
19187 * xsmfns.c:
19188 * xterm.c: Remove code that deals with obsolete variables.
19189
19190 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
19191
19192 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
19193 nothing else needs it anymore.
19194
19195 2008-02-09 Eli Zaretskii <eliz@gnu.org>
19196
19197 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
19198 instead of unibyte_char_to_multibyte.
19199
19200 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
19201
19202 * s/gnu-linux.h: Remove commented out code.
19203
19204 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
19205
19206 * Makefile.in: Update what RMS says about using autoconf.
19207 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
19208 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
19209 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
19210 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
19211
19212 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
19213
19214 * keymap.c (Fkey_description): Move side effect outside of macro call.
19215
19216 * xfaces.c (Finternal_make_lisp_face):
19217 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
19218
19219 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
19220 (syms_of_fontset): Use ASET.
19221
19222 * fns.c (concat): Move side effect outside of macro call.
19223 (hash_clear): Use ASET.
19224
19225 2008-02-08 Richard Stallman <rms@gnu.org>
19226
19227 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
19228 If FORCE, and frame has a surrogate minibuffer for another frame,
19229 delete the other frame first.
19230
19231 2008-02-07 Timo Savola <timo.savola@iki.fi>
19232
19233 * xterm.c (x_detect_focus_change): Handle embed client message.
19234 (handle_one_xevent): Ditto.
19235 (handle_one_xevent): If embedded and we get a button press/release,
19236 request focus.
19237 (xembed_set_info, xembed_send_message): New functions.
19238 (x_make_frame_visible): Call xembed_set_info if embedded.
19239 (x_make_frame_invisible): Call xembed_set_info if embedded.
19240 (x_term_init): Initialize Xatom_XEMBED.
19241 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
19242 (x_iconify_frame): Ditto.
19243
19244 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
19245 (enum xembed_info, enum xembed_message, enum xembed_focus)
19246 (enum xembed_modifier, enum xembed_accelerator): New.
19247 (xembed_set_info, xembed_send_message): Declare.
19248 (FRAME_X_EMBEDDED_P): New.
19249
19250 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
19251 gtk_plug_new.
19252
19253 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
19254 window ID of a frame.
19255 (x_window): Reparent frame if embedded.
19256 (Fx_create_frame): Don't set border width if embedded.
19257
19258 * emacs.c (USAGE3): Add --parent-id.
19259 (standard_args): Ditto.
19260
19261 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
19262
19263 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
19264
19265 2008-02-07 Jim Meyering <meyering@redhat.com>
19266
19267 Use "do...while (0)", not "if (1)...else" in macro definitions.
19268 The latter provokes a warning from gcc about the empty else, when
19269 followed by ";". Also, without that trailing semicolon, it would
19270 silently swallow up any following statement.
19271 * syntax.h (SETUP_SYNTAX_TABLE)
19272 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
19273 * buffer.h (DECODE_POSITION): Likewise.
19274 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
19275 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
19276 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
19277 (FETCH_CHAR_ADVANCE): Likewise.
19278 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
19279
19280 2008-02-07 Jim Meyering <meyering@redhat.com>
19281
19282 * lread.c [lint]: Don't include <sys/inode.h>.
19283
19284 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
19285
19286 * xselect.c (x_handle_dnd_message):
19287 * xmenu.c (digest_single_submenu, xmenu_show):
19288 * xdisp.c (with_echo_area_buffer_unwind_data)
19289 (format_mode_line_unwind_data, unwind_format_mode_line)
19290 (display_menu_bar):
19291 * eval.c (Ffetch_bytecode):
19292 * doc.c (store_function_docstring):
19293 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
19294 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
19295 * buffer.c (add_overlay_mod_hooklist): Use ASET.
19296
19297 2008-02-07 Kenichi Handa <handa@m17n.org>
19298
19299 * ftxfont.c (ftxfont_open): Don't set
19300 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
19301
19302 * ftfont.c (ftfont_open): Fix previous change.
19303
19304 2008-02-06 Jason Rumney <jasonr@gnu.org>
19305
19306 * w32font.c (w32font_text_extents): Fill in lbearing metric.
19307 Use cached metrics for ASCII characters.
19308 (w32font_open_internal): Don't set font's owning_frame.
19309 Cache metrics for ASCII characters.
19310
19311 * w32font.h (struct w32font_info): Add ascii_metrics.
19312 Remove owning_frame.
19313
19314 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
19315
19316 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
19317 to negative value.
19318
19319 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
19320
19321 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
19322
19323 * charset.c (syms_of_charset): Set QCtest and Qeq.
19324
19325 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
19326
19327 * process.c (Fstart_process):
19328 * callproc.c (Fcall_process): Handle the case where
19329 Funhandled_file_name_directory returns nil.
19330
19331 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
19332 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
19333 * font.c (check_gstring): Use them and AREF to access the vector before
19334 we know it's really a gstring.
19335 (Ffont_shape_text): Fix typo.
19336 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
19337
19338 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
19339 Declare.
19340
19341 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
19342
19343 2008-02-05 Jason Rumney <jasonr@gnu.org>
19344
19345 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
19346 Set smallest_font_height and smallest_char_width in display info.
19347
19348 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
19349
19350 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
19351
19352 2008-02-05 Miles Bader <miles@gnu.org>
19353
19354 * xfaces.c (get_lface_attributes, merge_named_face)
19355 (lookup_named_face, lookup_derived_face, realize_named_face):
19356 Revert 2008-02-01 change by cyd@stupidchicken.com.
19357
19358 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
19359
19360 * fontset.c (Ffontset_info): Handle the case of inhibitting the
19361 fallback fonts.
19362 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
19363
19364 2008-02-04 Jason Rumney <jasonr@gnu.org>
19365
19366 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
19367 set full_name.
19368 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
19369
19370 2008-02-03 Jason Rumney <jasonr@gnu.org>
19371
19372 * makefile.w32-in (OBJ1): Include font.o here.
19373 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
19374
19375 2008-02-02 Jason Rumney <jasonr@gnu.org>
19376
19377 * makefile.w32-in (temacs): Bump EMHEAP to 21.
19378
19379 2008-02-01 Jason Rumney <jasonr@gnu.org>
19380
19381 * s/cygwin.h: Define VIRT_ADDR_VARIES.
19382
19383 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
19384
19385 2008-02-01 Andreas Schwab <schwab@suse.de>
19386
19387 * Makefile.in (shortlisp, lisp): Update for rename of
19388 ../lisp/language/myanmar.el.
19389
19390 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
19391
19392 * xfaces.c (get_lface_attributes): Delete function.
19393 (merge_named_face, lookup_named_face, lookup_derived_face)
19394 (realize_named_face): Call lface_from_face_name directly, and use
19395 the fact that merge_face_vectors does not alter its FROM argument.
19396
19397 2008-02-01 Jason Rumney <jasonr@gnu.org>
19398
19399 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
19400 input in the default locale. Handle non-Unicode multibyte input.
19401
19402 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19403
19404 * fontset.c (reorder_font_vector): Exclude nil elements from the
19405 font group. Don't try multiple fonts.
19406 (fontset_font): Adjust for the above change.
19407 (Finternal_char_font): Return nil if the found font doesn't
19408 contain the character ch.
19409
19410 * Makefile.in (lisp, shortlisp): Add cham.el.
19411
19412 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19413
19414 * font.h (FONTP): Make it return 1 also for a font-object.
19415
19416 * .gdbinit (xfontset): New function.
19417
19418 * font.c (font_find_for_lface): Check if the character C is
19419 supported or not only for the first font.
19420
19421 * fontset.c (reorder_font_vector): Fix typo.
19422 (fontset_find_font): Don't add a font-spec specifying a script.
19423 Use 0 (not Qt) for the indication of empty font-group. Change the
19424 format of RFONT-DEF. Return Qt if no font in the font-group
19425 support the character.
19426 (fontset_font): Adjust for the above change. If no font was
19427 found the character, remember that.
19428 (face_for_char): Adjust for the change of RFONT-DEF.
19429 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
19430 no font for the target.
19431 (Finternal_char_font): Adjust for the change of RFONT-DEF.
19432
19433 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19434
19435 * font.c (font_load_for_face): Handle the case that the font in
19436 face->lface is a string.
19437
19438 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19439
19440 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
19441
19442 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19443
19444 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
19445 Fix previous change. If the frame is not on a window system,
19446 signal an error.
19447
19448 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19449
19450 * coding.c (decode_coding_object, encode_coding_object): Adjust
19451 marker positions after conversion.
19452
19453 * lisp.h (struct Lisp_Marker): New member need_adjustment.
19454
19455 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19456
19457 * font.c (font_find_for_lface): Fix the handling of the return
19458 value of font_has_char.
19459 (Ffont_shape_text): Fix previous change.
19460
19461 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
19462 (fontset_ref_and_range): Delete it.
19463 (fontset_find_font): Call char_table_ref_and_range instead of
19464 FONTSET_REF_AND_RANGE.
19465 (make_fontset): Don't setup font groups of Latin here.
19466 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
19467 (new_fontset_from_font): Make the specified font the default for
19468 all Latin characters.
19469
19470 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19471
19472 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
19473 is on a window system before accessing the fontset of the frame.
19474
19475 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19476
19477 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
19478
19479 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
19480 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
19481
19482 * font.c (Ffont_shape_text): If the font driver doesn't have a
19483 shaper function, make zero-width glyphs to have at least one-pixel
19484 width. Fix setting of `to' field of glyphs.
19485
19486 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19487
19488 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
19489 glyphs.
19490
19491 * font.h (struct font_driver): Improve docstring of member `shape'.
19492
19493 2008-02-01 Kenichi Handa <handa@m17n.org>
19494
19495 * composite.c (syms_of_composite): Fix docstring of
19496 auto-composition-function.
19497
19498 * font.h (LGLYPH_SIZE): New macro.
19499
19500 * font.c (Ffont_fill_gstring): Stop filling when a character not
19501 supported by the font is found.
19502 (Ffont_shape_text): When a shape callback function returns nil,
19503 try at most two more times with larger gstring.
19504 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
19505
19506 * xdisp.c (handle_auto_composed_prop): Change the argument to
19507 auto-composition-function.
19508
19509 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
19510 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
19511 Lispy glyph and store it in the lgstring.
19512
19513 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
19514
19515 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
19516
19517 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19518
19519 * font.c (Ffont_shape_text): Avoid unnecessary composition.
19520
19521 * fontset.c (Vfont_encoding_charset_alist): New variable.
19522 (syms_of_fontset): DEFVAR it.
19523 (reorder_font_vector, fontset_find_font): Optimize for the case of
19524 no need of reordering.
19525 (face_for_char): Map the charset property by
19526 Vfont_encoding_charset_alist.
19527
19528 2008-02-01 Jason Rumney <jasonr@gnu.org>
19529
19530 * w32font.c (logfonts_match): Don't check adstyle here.
19531 (font_matches_spec): Check here against physical font instead.
19532 (add_font_entity_to_list): Avoid some substitutions.
19533
19534 * font.c (font_parse_fcname): Default weight and slant to normal.
19535 (font_score): Prefer normal fonts if weight or slant unspecified.
19536 (font_score) [WINDOWSNT]: Scale weight difference down to closer
19537 match freetype scores.
19538
19539 2008-02-01 Jason Rumney <jasonr@gnu.org>
19540
19541 * w32font.c (w32font_text_extents): Don't use the frame stored in the
19542 font, as it may have been deleted.
19543 (w32_enumfont_pattern_entity): Map generic family to adstyle using
19544 most common hyphenless variation.
19545 (logfonts_match): Check generic family.
19546 (font_matches_spec): Don't check generic family here.
19547 (fill_in_logfont): Set generic family based on adstyle.
19548
19549 * w32font.h (w32font_get_cache): Update declaration.
19550
19551 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19552
19553 * ftfont.c (ftfont_get_cache): Adjust the argument type.
19554
19555 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
19556 If none of the new drivers are available, call font_update_drivers
19557 with the old drivers.
19558
19559 * w32font.c (w32font_get_cache): Adjust the argument type.
19560
19561 * xfont.c (xfont_get_cache): Adjust the argument type.
19562
19563 * font.h (struct font_driver): Change argument type of get_cache.
19564
19565 * xftfont.c (xftfont_start_for_frame): Delete prototype.
19566
19567 * font.c (Ffont_get): Fix arguments to Fassoc.
19568 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
19569 (font_clear_cache): New function.
19570 (font_list_entities, font_matching_entity): Use font_get_cache.
19571 (font_update_drivers): Call font_clear_cache when finishing a driver.
19572
19573 * fontset.c (fontset_find_font): Fix previous change.
19574
19575 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19576
19577 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
19578 dpyinfo->font_table.
19579 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
19580 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
19581
19582 * font.c (font_at): Handle the case that the arg C is negative.
19583 Handle the unibyte case.
19584 (Ffont_at): Call font_at with the arg C -1.
19585
19586 * xdisp.c (handle_auto_composed_prop): Don't get a character at
19587 the position here, and call font_at with the arg C -1.
19588 Don't check the range of the existing composition at the point.
19589
19590 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19591
19592 * fontset.c (fontset_add): New args charset_id and family.
19593 Change caller.
19594 (load_font_get_repertory, fontset_find_font): Assume that
19595 font_spec is always a font-spec object.
19596 (Fset_fontset_font): Always store a font-spec object in a fontset.
19597
19598 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
19599 instead of get_property_and_range.
19600
19601 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19602
19603 * xftfont.c (struct xftfont_info): Delete the member ft_face.
19604 (xftfont_open): Don't keep locking face.
19605 (xftfont_close): Don't unlock face.
19606 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
19607
19608 * fontset.c (fontset_find_font): Don't prefer a font of
19609 supplementary charset.
19610
19611 2008-02-01 Kenichi Handa <handa@m17n.org>
19612
19613 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
19614 script, langsys_tag to langsys, new member script.
19615 (OTF_TAG_STR): Terminate by '\0'.
19616 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
19617 listing to the script specified in that property. Fix arg to
19618 OTF_check_features.
19619
19620 2008-02-01 Jason Rumney <jasonr@gnu.org>
19621
19622 * w32font.h: New file.
19623
19624 * w32font.c: Include it.
19625 (struct w32font_info): Add owning_frame field. Move to w32font.h.
19626 (w32font_open): Set owning_frame.
19627 (w32font_text_extents): Use owning_frame.
19628 (struct font_callback_data): Add opentype_only field.
19629 (add_font_entity_to_list): Use it to filter fonts.
19630 Don't check against full name.
19631 (w32font_list_internal): New function.
19632 (w32font_list): Use it.
19633 (w32font_match_internal): New function.
19634 (w32font_match): Use it.
19635 (w32font_open_internal): New function.
19636 (w32font_open): Use it.
19637 (w32font_get_cache, w32font_close, w32font_has_char)
19638 (w32font_encode_char, w32font_text_extents, w32font_draw):
19639 Make non-static.
19640
19641 * makefile.w32-in (w32font.o): Depend on w32font.h.
19642
19643 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19644
19645 * charset.c (Fdefine_charset_internal): Record a supplementary
19646 charset at the tail of Vcharset_order_list.
19647
19648 * font.c (Ffont_shape_text): Fix the return value.
19649
19650 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
19651
19652 * xdisp.c (handle_auto_composed_prop): Fix previous change.
19653
19654 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19655
19656 * ftfont.c (struct OpenTypeSpec): New struct.
19657 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
19658 (ftfont_get_open_type_spec): New function.
19659 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
19660
19661 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
19662
19663 2008-02-01 Jason Rumney <jasonr@gnu.org>
19664
19665 * w32font.c (add_font_entity_to_list): Compare only the beginning
19666 of full name.
19667
19668 2008-02-01 Kenichi Handa <handa@m17n.org>
19669
19670 * xdisp.c (handle_auto_composed_prop): Simplify the code.
19671 Never return HANDLED_RECOMPUTE_PROPS.
19672
19673 2008-02-01 Kenichi Handa <handa@m17n.org>
19674
19675 * font.c (font_gstring_produce): Delete it.
19676
19677 * composite.h (COMPOSITION_METHOD):
19678 Handle COMPOSITION_WITH_GLYPH_STRING.
19679
19680 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19681
19682 * xfont.c (Qx): Delete.
19683 (syms_of_xfont): Don't initialize Qx.
19684
19685 * composite.h (enum composition_method):
19686 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
19687
19688 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19689
19690 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
19691 (choose_face_font): Accept new form of font-spec.
19692
19693 * frame.h (font_driver_list): Declare it unconditionally.
19694 (struct frame): Define members font_driver_list and font_data_list
19695 unconditionally.
19696
19697 * fontset.c: Include "font.h" unconditionally.
19698 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
19699 (Fset_fontset_font): Accept a font-spec object.
19700
19701 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
19702 PIXEL_SIZE part a wild card.
19703
19704 * dispextern.h (struct glyph_string): Define members clip and
19705 num_clips unconditionally.
19706 (struct face): Define members font_info and extra unconditionally.
19707
19708 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
19709 ftfont_info only when HAVE_LIBOTF is defined.
19710
19711 2008-02-01 Andreas Schwab <schwab@suse.de>
19712
19713 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
19714 and end.
19715
19716 2008-02-01 Jason Rumney <jasonr@gnu.org>
19717
19718 * w32font.c (w32font_driver): Add new fields.
19719
19720 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19721
19722 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
19723 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
19724 (LIBES): Add @M17N_FLT_CFLAGS@.
19725
19726 * composite.c (compose_text): Don't treat the new style
19727 composition specially.
19728
19729 * emacs.c (main): Call syms_of_font unconditionally.
19730
19731 * font.h (FONT_ENTITY_NOT_LOADABLE)
19732 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
19733 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
19734 (struct font_driver): New member shape.
19735 (font_registry_charsets): Extern it.
19736 (font_find_for_lface, font_prepare_composition): Adjust prototype.
19737 (font_otf_capability, font_drive_otf): Delete their externs.
19738
19739 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
19740 (font_charset_alist, font_registry_charsets): Move from xfont.c
19741 and rename.
19742 (font_prop_validate_otf): New function.
19743 (font_property_table): Register it for QCotf.
19744 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
19745 (font_drive_otf): Delete.
19746 (font_prepare_composition): New arg F. Adjust for the change of
19747 lispy gstring.
19748 (font_find_for_lface): New arg C.
19749 (font_load_for_face): Adjust for the change of font_find_for_lface.
19750 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
19751 lispy gstring.
19752 (Ffont_shape_text): New function.
19753 (Fopen_font): If the font size is not given, use 12-pixel.
19754 (Ffont_at): New arg STRING.
19755 (syms_of_font): Initialize font_charset_alist.
19756 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
19757 conditionally.
19758
19759 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
19760 fonts of the same font-spec. Change the format of RFONT-DEF.
19761 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
19762 Adjust for the change of RFONT-DEF.
19763 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
19764
19765 * ftfont.h: New file.
19766
19767 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
19768 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
19769 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
19770 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
19771 font_otf_capability and font_drive_otf, set ftfont_shape.
19772 (ftfont_list): Adjust for the change of :otf property value.
19773 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
19774 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
19775 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
19776 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
19777 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
19778 (otf_gstring, gstring, m17n_flt_initialized): New variables.
19779
19780 * w32term.c (x_draw_composite_glyph_string_foreground):
19781 Adjust for the change of lispy gstring.
19782
19783 * xdisp.c (handle_composition_prop): Adjust for the change of
19784 lispy gstring. Call a function for auto-composition with the
19785 third arg it->window.
19786 (fill_composite_glyph_string): Adjust for the change of lispy string.
19787 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
19788
19789 * xfaces.c (set_font_frame_param): Adjust for the change of
19790 font_find_for_lface.
19791
19792 * xfont.c (x_font_charset_alist): Move to font.c and rename.
19793 (xfont_registry_charsets): Likewise. Change caller.
19794 (syms_of_xfont): Don't handle x_font_charset_alist.
19795
19796 * xftfont.c: Include "ftfont.h".
19797 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
19798 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
19799 (xftfont_close) [HAVE_LIBOTF]: Close otf.
19800 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
19801 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
19802 Set xftfont_driver.shape to xftfont_shape.
19803
19804 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
19805 the change of lispy gstring.
19806
19807 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19808
19809 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
19810
19811 2008-02-01 Jason Rumney <jasonr@gnu.org>
19812
19813 * w32font.c (w32font_draw): Fill background manually.
19814
19815 2008-02-01 Jason Rumney <jasonr@gnu.org>
19816
19817 * font.c (Qfontp): Remove unused symbol.
19818 (QCantialias): New symbol.
19819 (syms_of_font): Define it.
19820 (font_property_table): Set a validator for QCantialias.
19821
19822 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
19823 Define if not already.
19824 (QCfamily): Share with xfaces.c.
19825 (Qstandard, Qsubpixel, Qnatural): New symbols.
19826 (syms_of_w32font): Define them. Don't define QCfamily here.
19827 (w32_antialias_type, lispy_antialias_type): New functions.
19828 (w32_enumfont_pattern_entity): New arg requested_font.
19829 Set antialias parameter if non-default was requested.
19830 (fill_in_logfont): Fill in lfQuality if :antialias specified.
19831
19832 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19833
19834 * lread.c (read1): Undo the previous change.
19835
19836 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
19837
19838 * frame.c (Fdelete_frame): Call font_update_drivers only when
19839 USE_FONT_BACKEND is defined.
19840
19841 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19842
19843 * font.h (struct font_bitmap): New member bits_per_pixel.
19844 (struct font_driver): New members start_for_frame and end_for_frame.
19845 (struct font_data_list): New struct.
19846 (font_put_frame_data, font_get_frame_data): Extern them.
19847
19848 * frame.h (struct frame): New member font_data_list.
19849
19850 * font.c (font_update_drivers): Call driver->start_for_frame and
19851 driver->end_for_frame at proper timings.
19852 (font_put_frame_data, font_get_frame_data): New functions.
19853 (Ffont_spec): Add usage in the docstring.
19854
19855 * frame.c (make_frame): Initialize f->font_data_list to NULL.
19856 (Fdelete_frame): Call font_update_drivers.
19857
19858 * xftfont.c (struct xftface_info): Delete the member xft_draw.
19859 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
19860 (xftfont_get_xft_draw): New function.
19861 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
19862 (xftfont_end_for_frame): New function.
19863 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
19864
19865 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
19866 Change argument. Cache GCs in the per-frame data.
19867 (struct ftxfont_frame_data): New struct.
19868 (ftxfont_draw_bitmap): New arg gc_fore and flush.
19869 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
19870 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
19871 (ftxfont_end_for_frame): New function.
19872 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
19873
19874 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
19875
19876 2008-02-01 Kenichi Handa <handa@m17n.org>
19877
19878 * xselect.c (Vselection_coding_system)
19879 (Vnext_selection_coding_system): Delete them.
19880 (syms_of_xselect): Don't declare selection-coding-system and
19881 next-selection-coding-system. They are declared in select.el.
19882
19883 2008-02-01 Jason Rumney <jasonr@gnu.org>
19884
19885 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
19886
19887 * w32fns.c: Include imm.h.
19888 (get_composition_string_fn, get_ime_context_fn): New optional
19889 system functions.
19890 (globals_of_w32fns): Load them from imm32.dll.
19891 (ignore_ime_char): New flag.
19892 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
19893 WM_IME_ENDCOMPOSITION messages.
19894
19895 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
19896 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
19897
19898 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19899
19900 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
19901 (READCHAR_REPORT_MULTIBYTE): New macro.
19902 (readchar): New 2nd arg MULTIBYTE.
19903 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
19904 Make symbol's name multibyte according to the multibyteness of the
19905 source.
19906
19907 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19908
19909 * xfaces.c (face_for_overlay_string): Call lookup_face with
19910 correct arguments (fix of synching with the trunk).
19911
19912 2008-02-01 Kenichi Handa <handa@m17n.org>
19913
19914 * font.c (font_prop_validate_symbol, font_prop_validate_style)
19915 (font_prop_validate_non_neg, font_prop_validate_spacing):
19916 Delete argument prop_index.
19917 (font_property_table): Change arguments to validater. Change Callers.
19918 (font_lispy_object): Delete.
19919 (font_at): Use font_find_object instead fo font_lispy_object.
19920
19921 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
19922
19923 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
19924 and file names.
19925
19926 2008-02-01 Jason Rumney <jasonr@gnu.org>
19927
19928 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
19929 (font_matches_spec): Remove debug output.
19930 (add_font_entity_to_list): Avoid using substituted fonts.
19931
19932 2008-02-01 Jason Rumney <jasonr@gnu.org>
19933
19934 * doc.c (Fsnarf_documentation):
19935 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
19936
19937 2008-02-01 Miles Bader <miles@gnu.org>
19938
19939 * dispextern.h (struct glyph_row): Only define "clip" field if
19940 HAVE_WINDOW_SYSTEM is defined.
19941
19942 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
19943
19944 Fix up multi-tty merge.
19945
19946 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
19947 and indentation.
19948
19949 * xfaces.c (free_realized_face, clear_face_gcs):
19950 Include font_done_for_face in the input_blocked section, just in case.
19951
19952 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
19953 (get_char_face_and_encoding): Undo last change and remove the *other*
19954 duplicate definition (i.e. keep the one that's better scoped and that
19955 includes code for the font-backend).
19956
19957 * terminal.c (create_terminal): Default keyboard_coding to
19958 `no-conversion' and terminal_coding to `undecided'.
19959
19960 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
19961
19962 * fontset.c (free_realized_fontsets): Check that the table entry does
19963 contain a fontset before trying to compare it to `base'.
19964
19965 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
19966 syms_of_charset, and syms_of_coding earlier because init_window_once
19967 now needs Vcoding_system_hash_table to be setup.
19968
19969 * coding.h (default_buffer_file_coding): Remove.
19970
19971 * coding.c (default_buffer_file_coding): Remove.
19972 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
19973 than ->symbol, and use the terminal-local coding system.
19974 (syms_of_coding): Don't setup the coding-systems that are not
19975 terminal-local.
19976 (Fdefine_coding_system_internal): Use XCAR/XCDR.
19977
19978 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
19979 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
19980
19981 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
19982 in chartab.c and were re-added here by mistake.
19983 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
19984
19985 * doc.c (Fsnarf_documentation):
19986 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
19987 src to etc.
19988
19989 * ChangeLog.10: Add mistakenly removed entry.
19990
19991 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
19992
19993 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
19994
19995 2008-02-01 Miles Bader <miles@gnu.org>
19996
19997 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
19998 Add extra args to FACE_FOR_CHAR.
19999
20000 2008-02-01 Kenichi Handa <handa@m17n.org>
20001
20002 * keymap.c (where_is_internal_1): If key is a cons, store the copy
20003 in sequence.
20004
20005 * chartab.c (map_sub_char_table, map_char_table): If the range
20006 contains just one character, call the function with that character
20007 even if the depth is not 3.
20008
20009 2008-02-01 Jason Rumney <jasonr@gnu.org>
20010
20011 * w32font.c (w32font_text_extents): Calculate metrics for the
20012 whole string.
20013
20014 2008-02-01 Jason Rumney <jasonr@gnu.org>
20015
20016 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
20017
20018 2008-02-01 Jason Rumney <jasonr@gnu.org>
20019
20020 * w32term.c (x_set_glyph_string_clipping): Use
20021 get_glyph_string_clip_rects.
20022 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
20023 Adjust for the change of struct glyph_string.
20024
20025 * w32font.c (w32font_draw): Do clipping here.
20026
20027 2008-02-01 Kenichi Handa <handa@m17n.org>
20028
20029 * xftfont.c (xftfont_draw): Adjust for the change of struct
20030 glyph_string.
20031
20032 * xterm.c (x_set_glyph_string_clipping): Use
20033 get_glyph_string_clip_rects.
20034 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
20035 Adjust for the change of struct glyph_string.
20036
20037 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
20038 the resulting clip(s}.
20039 (expose_overlaps): Add arg r. Change callers. Set it to
20040 row->clip temporarily.
20041 (expose_window): Redraw rows overlapping the exposed area.
20042
20043 * dispextern.h (struct glyph_row): New member clip.
20044 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
20045 clip_height, new member clip, and num_clips.
20046
20047 2008-02-01 Kenichi Handa <handa@m17n.org>
20048
20049 * data.c (Fchar_or_string_p): Fix docstring.
20050
20051 2008-02-01 Kenichi Handa <handa@m17n.org>
20052
20053 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
20054 create a temporary XftDraw object.
20055
20056 2008-02-01 Kenichi Handa <handa@m17n.org>
20057
20058 * font.c (Ffontp): Fix docstring.
20059
20060 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
20061 strong evidence of ISO-2022.
20062
20063 2008-02-01 Kenichi Handa <handa@m17n.org>
20064
20065 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
20066 SYNTAX_ENTRY_FOLLOW_PARENT.
20067
20068 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
20069
20070 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
20071 its type.
20072 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
20073 Update to the new type of weak_hash_tables and next_weak.
20074
20075 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
20076 a plain C pointer to Lisp_Hash_Table.
20077
20078 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
20079 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
20080 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
20081 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
20082 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
20083 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
20084 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
20085 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
20086 (GC_EQ): Remove since they've been identical to their non-GC_
20087 alter-egos ever since the markbit was eradicated.
20088
20089 * alloc.c:
20090 * buffer.c:
20091 * buffer.h:
20092 * data.c:
20093 * fileio.c:
20094 * filelock.c:
20095 * fns.c:
20096 * frame.h:
20097 * lisp.h:
20098 * macterm.c:
20099 * print.c:
20100 * process.c:
20101 * w32fns.c:
20102 * w32menu.c:
20103 * w32term.c:
20104 * xfns.c:
20105 * xmenu.c:
20106 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
20107
20108 2008-02-01 Kenichi Handa <handa@m17n.org>
20109
20110 * chartab.c (map_sub_char_table): Make it work for the top-level
20111 char-table. Fix handling of parent char-table.
20112 (map_char_table): Adjust for the above change.
20113
20114 2008-02-01 Jason Rumney <jasonr@gnu.org>
20115
20116 * w32font.c (Qgdi): Rename from Qw32.
20117
20118 2008-02-01 Jason Rumney <jasonr@gnu.org>
20119
20120 * w32bdf.c (get_quoted_string): Make function static.
20121
20122 2008-02-01 Kenichi Handa <handa@m17n.org>
20123
20124 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
20125 bigger ascent and descent than those of the font, use them as
20126 font's ascent and descent.
20127
20128 2008-02-01 Kenichi Handa <handa@m17n.org>
20129
20130 * Makefile.in (${lispsource}international/charprop.el): Move this
20131 target within "#ifdef HAVE_UNIDATA" and "#endif".
20132
20133 2008-02-01 Kenichi Handa <handa@m17n.org>
20134
20135 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
20136 (shortlisp): Add ../lisp/language/tai-viet.el.
20137
20138 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
20139
20140 * Makefile.in (${lispsource}international/charprop.el): Depend on
20141 temacs${EXEEXT}.
20142
20143 2008-02-01 Jason Rumney <jasonr@gnu.org>
20144
20145 * w32font.c (w32font_close): Delete the GDI font object.
20146
20147 * w32menu.c: Include character.h.
20148
20149 * w32proc.c: Likewise.
20150
20151 * w32select.c: Likewise.
20152
20153 * makefile.w32-in (w32proc.o): Depend on character.h.
20154
20155 2008-02-01 Jason Rumney <jasonr@gnu.org>
20156
20157 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
20158
20159 * w32menu.c (syms_of_w32menu): Likewise.
20160
20161 * w32proc.c (syms_of_ntproc): Likewise.
20162
20163 * w32select.c (syms_of_w32select): Likewise.
20164
20165 * w32term.c (syms_of_w32term): Likewise.
20166
20167 2008-02-01 Jason Rumney <jasonr@gnu.org>
20168
20169 * w32font.c (w32font_draw): Delete brush after using it.
20170
20171 2008-02-01 Jason Rumney <jasonr@gnu.org>
20172
20173 * w32font.c (w32font_open): Don't set font_idx.
20174 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
20175 to font settings.
20176 (w32font_draw): Fill background explicitly.
20177
20178 2008-02-01 Jason Rumney <jasonr@gnu.org>
20179
20180 * w32term.c (w32_initialize): Don't call w32font_initialize.
20181
20182 * w32font.c (w32font_info): Remove subranges.
20183 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
20184 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
20185 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
20186 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
20187 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
20188 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
20189 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
20190 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
20191 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
20192 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
20193 New symbols.
20194 (font_callback_data): New struct.
20195 (w32font_list, w32font_match): Use it.
20196 (w32font_open): Don't populate subranges.
20197 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
20198 (w32font_encode_char): Always return unicode code-point as-is.
20199 (w32font_text_extents): Supply a transformation matrix to
20200 GetGlyphOutline. Never look up by glyph index. Avoid looping
20201 twice. Use unicode version of GetTexExtentPoint32 instead of
20202 glyph index version.
20203 (set_fonts_frame): Remove.
20204 (w32_enumfont_pattern_entity): Add frame parameter, use it to
20205 set frame parameter. Use backward compatible fake foundries.
20206 Save generic family in extra slot under QCfamily. Make width slot
20207 constant. Save QCspacing value. Save list of scripts instead of
20208 binary subranges.
20209 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
20210 (add_font_entity_to_list): Use font_callback_data struct. Filter
20211 unwanted fonts.
20212 (add_one_font_entity_to_list): Use font_callback_data struct.
20213 (w32_registry): Default to iso10646_1.
20214 (fill_in_logfont): Use dpi from extra slot. Don't bother with
20215 string font registries. Don't fill in font name if it is a generic
20216 family name, fill family instead. Use spacing, family and script
20217 extra info to fill pitch, family and charset fields.
20218 (list_all_matching_fonts): Use font_callback_data struct.
20219 (unicode_range_for_char): Remove.
20220 (font_supported_scripts): New function.
20221 (w32font_initialize): Remove.
20222 (syms_of_w32font): Update which symbols are defined.
20223
20224 2008-02-01 Jason Rumney <jasonr@gnu.org>
20225
20226 * font.c (font_pixel_size): Reverse assq_no_quit args.
20227
20228 * w32term.h (FONT_WIDTH): Report max width, not average.
20229 (FONT_MAX_WIDTH): Remove.
20230 (FONT_AVG_WIDTH): New macro.
20231
20232 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
20233 redefinition of FONT_WIDTH.
20234
20235 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
20236 (w32_cache_char_metrics): Use FONT_WIDTH.
20237
20238 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
20239
20240 2008-02-01 Jason Rumney <jasonr@gnu.org>
20241
20242 * w32font.c (w32font_open): Make lfHeight negative.
20243
20244 * w32fns.c (x_default_font_parameter): Use new style font name.
20245 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
20246
20247 2008-02-01 Jason Rumney <jasonr@gnu.org>
20248
20249 * w32font.c (QCsubranges): New symbol.
20250 (w32font_open, w32font_has_char): Get subranges from subproperty
20251 of extra.
20252 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
20253 (syms_of_w32font): Define :subranges symbol.
20254
20255 * font.c (font_put_extra): Expose externally.
20256
20257 * font.h (font_put_extra): Move declaration from font.c.
20258
20259 * font.c (Ffont_get): Use font driver to determine otf capability.
20260 (adjust_anchor): Check if driver defines anchor_point before using.
20261
20262 * w32font.c (w32font_open): Handle size, height and pixel_size better.
20263 (w32font_draw): Use options.
20264 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
20265 Fix detection of truetype fonts.
20266 (registry_to_w32_charset): Handle charsets other than iso8859-1
20267 expressed as lisp symbols.
20268 (w32_registry): Express charset as lisp symbol.
20269 (fill_in_logfont): Reverse pixel and point height logic.
20270 Don't set width here. Set quality to default.
20271
20272 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
20273 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
20274
20275 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
20276 Remove redundant loop and allocation.
20277
20278 * makefile.w32-in (font.o, w32font.o): New objects.
20279 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
20280 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
20281
20282 * xdisp.c (fill_composite_glyph_string): Make the first arg to
20283 STORE_XCHARB a valid l-value.
20284
20285 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
20286 calculations for non-Truetype fonts.
20287 (x_draw_glyph_string): Sync with xterm.c.
20288 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
20289 Remove redundant code.
20290 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
20291
20292 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
20293 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
20294
20295 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
20296 (x_to_w32_charset, w32_to_x_charset): Expose externally.
20297
20298 * w32font.c: New file for w32 font backend.
20299
20300 2008-02-01 Kenichi Handa <handa@m17n.org>
20301
20302 * term.c: Don't include "buffer.h" twice.
20303
20304 2008-02-01 Kenichi Handa <handa@m17n.org>
20305
20306 * character.c (Funibyte_string): New function.
20307 (syms_of_character): Defsubr it.
20308
20309 2008-02-01 Jason Rumney <jasonr@gnu.org>
20310
20311 * w32term.c [USE_FONT_BACKEND]:
20312 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
20313 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
20314 (x_draw_glyph_string, x_draw_glyph_string_foreground)
20315 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
20316 (x_free_frame_resources): Sync with xterm.c.
20317
20318 2008-02-01 Andreas Schwab <schwab@suse.de>
20319
20320 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
20321 char-table size.
20322
20323 2008-02-01 Kenichi Handa <handa@m17n.org>
20324
20325 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
20326
20327 2008-02-01 Kenichi Handa <handa@m17n.org>
20328
20329 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
20330 font_otf_gpos, add font_drive_otf.
20331
20332 * fontset.c (fontset_find_font): Pay attention to font size
20333 specified for a font.
20334 (reorder_font_vector): Check contents of font_def.
20335
20336 * font.c (struct otf_list): Delete it.
20337 (otf_list): Make it a lisp variable.
20338 (otf_open): Use lispy otf_list.
20339 (generate_otf_features): Rename from parse_gsub_gpos_spec.
20340 (check_otf_features): New function.
20341 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
20342 New functions.
20343 (font_drive_otf): New function merging font_otf_gsub and
20344 font_otf_gpos.
20345 (font_open_for_lface): New arg spec. Change argument order.
20346 (font_load_for_face): Adjust for the change of font_open_for_lface.
20347 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
20348 Ffont_otf_gpos.
20349 (syms_of_font): Staticpro otf_list. Delete defsubr of
20350 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
20351
20352 * xfaces.c (set_font_frame_param): Adjust for the change of
20353 font_open_for_lface.
20354
20355 * font.h (font_open_for_lface): Adjust prototype.
20356 (struct font_driver): Delete members otf_gsub and otf_gpos, add
20357 member otf_drive.
20358 (font_otf_gsub, font_otf_gpos): Delete externs.
20359 (font_drive_otf): Extern it.
20360
20361 2008-02-01 Kenichi Handa <handa@m17n.org>
20362
20363 * font.c (font_at): If the window W is not on a window system,
20364 return Qnil.
20365
20366 * coding.c (produce_chars, encode_coding): Don't call
20367 insert_from_gap if no characters to produce.
20368
20369 2008-02-01 Kenichi Handa <handa@m17n.org>
20370
20371 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
20372 Fclear_face_cache.
20373
20374 * xfaces.c (face_for_font): Check also face->font==font->font.font.
20375
20376 2008-02-01 Miles Bader <miles@gnu.org>
20377
20378 * emacs.c (main): Change default value of `enable_font_backend' to 1.
20379 Parse "--disable-font-backend" option.
20380 (standard_args): Add "--disable-font-backend" option.
20381
20382 2008-02-01 Kenichi Handa <handa@m17n.org>
20383
20384 * fontset.c (fontset_find_font): New function.
20385 (fontset_font): Use fontset_find_font.
20386 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
20387 Register the specified font for all Latin characters.
20388 (new_fontset_from_font): Register the specified font for all Latin
20389 characters.
20390 (dump_fontset): For a realized fontset, include the base fontset
20391 name in the returned vector.
20392
20393 2008-02-01 Kenichi Handa <handa@m17n.org>
20394
20395 * character.h (CHAR_STRING): Cast C to unsigned on calling
20396 char_string.
20397
20398 * character.c (char_string): Type of arg C changed to unsigned.
20399 Signal an error if C is an invalid character code.
20400
20401 * editfns.c (general_insert_function, Fchar_to_string):
20402 Use CHARACTERP, not INTEGERP.
20403
20404 2008-02-01 Kenichi Handa <handa@m17n.org>
20405
20406 * character.h (MIN_MULTIBYTE_LEADING_CODE)
20407 (MAX_MULTIBYTE_LEADING_CODE): New macros.
20408
20409 * regex.c (analyse_first): Fix for multibyte characters in "case
20410 charset:" and "case categoryspec:".
20411
20412 2008-02-01 Andreas Schwab <schwab@suse.de>
20413
20414 * Makefile.in (LIBES): Move standard libraries to the end.
20415
20416 2008-02-01 Kenichi Handa <handa@m17n.org>
20417
20418 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
20419 nonzero, don't shrink the buffer nextb.
20420
20421 * buffer.h (struct buffer_text): New member inhibit_shrinking.
20422
20423 * coding.c (coding_alloc_by_making_gap): New arg offset.
20424 (alloc_destination): Call coding_alloc_by_making_gap with the arg
20425 offset.
20426 (decode_coding_iso_2022): Update coding->safe_charsets.
20427 (decode_coding_gap): Temporarily set
20428 current_buffer->text->inhibit_shrinking to 1.
20429
20430 2008-02-01 Kenichi Handa <handa@m17n.org>
20431
20432 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
20433 indexing into elements of s->cmp and s->char2b.
20434
20435 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
20436
20437 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
20438
20439 2008-02-01 Kenichi Handa <handa@m17n.org>
20440
20441 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
20442 target_multibyte instead of multibyte.
20443 (re_match_2_internal): Call bcmp_translate with target_multibyte.
20444 (bcmp_translate): Change the argument name from multibyte to
20445 target_multibyte.
20446
20447 2008-02-01 Kenichi Handa <handa@m17n.org>
20448
20449 These changes are to compile a regexp into a pattern that can be
20450 used both for multibyte and unibyte targets.
20451
20452 * Makefile.in (search.o): Depend on charset.h.
20453
20454 * character.c (multibyte_char_to_unibyte_safe): New function.
20455
20456 * search.c: Include "charset.h".
20457 (compile_pattern_1): Delete argument multibyte. Don't set
20458 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
20459 (compile_pattern): Don't compare cp->buf.target_multibyte.
20460 Compare cp->buf.charset_unibyte.
20461 (compile_pattern): Set cp->buf.target_multibyte.
20462
20463 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
20464
20465 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
20466
20467 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
20468 multibyte. Change callers.
20469 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
20470 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
20471 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
20472 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
20473 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
20474 (regex_compile): Make the compiled pattern usable both for
20475 multibyte and unibyte targets.
20476 (analyse_first): Make the fastmap usable both for multibyte and
20477 unibyte targets.
20478 (TRANSLATE_VIA_MULTIBYTE): Delete.
20479 (re_match_2_internal): Pay attention to the case that the
20480 multibyteness of bufp and target may be different.
20481
20482 2008-02-01 Kenichi Handa <handa@m17n.org>
20483
20484 * xdisp.c (x_produce_glyphs): When a font is not found, make the
20485 empty box occupy at least one column width.
20486
20487 2008-02-01 Miles Bader <miles@gnu.org>
20488
20489 * Makefile.in: Remove redundant HAVE_XFT clause.
20490
20491 2008-02-01 Kenichi Handa <handa@m17n.org>
20492
20493 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
20494
20495 2008-02-01 Kenichi Handa <handa@m17n.org>
20496
20497 * fontset.c (Finternal_char_font): Fix for the case of POSITION
20498 being nil.
20499
20500 2008-02-01 Kenichi Handa <handa@m17n.org>
20501
20502 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
20503
20504 2008-02-01 Kenichi Handa <handa@m17n.org>
20505
20506 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
20507
20508 2008-02-01 Kenichi Handa <handa@m17n.org>
20509
20510 * search.c (simple_search): Fix previous change.
20511
20512 2008-02-01 Kenichi Handa <handa@m17n.org>
20513
20514 * xftfont.c (ftfont_font_format): Extern declaration.
20515
20516 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
20517
20518 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
20519 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
20520
20521 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
20522 (ftfont_font_format): Fix previous change.
20523
20524 * font.h (Ffont_xlfd_name): EXFUN it.
20525
20526 * font.c (font_parse_xlfd): Fix the array size of `f'.
20527 (register_font_driver): Use EQ to compare driver->type.
20528
20529 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
20530 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
20531 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
20532
20533 2008-02-01 Kenichi Handa <handa@m17n.org>
20534
20535 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
20536 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
20537
20538 2008-02-01 Kenichi Handa <handa@m17n.org>
20539
20540 * xfont.c (xfont_open): Set font->format.
20541
20542 * xftfont.c (xftfont_open): Set font->format.
20543
20544 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
20545 (ftfont_list): Include FC_FONTFORMAT in FcObject.
20546 (ftfont_open): Set font->format.
20547 (ftfont_font_format): New function.
20548
20549 * font.h (struct font): New member format.
20550
20551 * font.c (Qopentype): New variable.
20552 (syms_of_font): Defsym it.
20553 (Fquery_font): Change the format of the last element of the return
20554 value.
20555
20556 2008-02-01 Kenichi Handa <handa@m17n.org>
20557
20558 * xfns.c (xic_create_xfontset): Try the default fontset name as a
20559 last resort.
20560
20561 2008-02-01 Kenichi Handa <handa@m17n.org>
20562
20563 * coding.c (detect_coding_charset): Fix detection of multi-byte
20564 charset.
20565
20566 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
20567
20568 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
20569
20570 2008-02-01 Kenichi Handa <handa@m17n.org>
20571
20572 * xdisp.c (get_next_display_element): Set it->face_id for the
20573 first component of a composition.
20574 (x_produce_glyphs): Check if the font is changed or not for composition.
20575
20576 2008-02-01 Kenichi Handa <handa@m17n.org>
20577
20578 * fontset.c (Qlatin): New variable.
20579 (syms_of_fontset): Define it as a lisp symbol.
20580 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
20581
20582 2008-02-01 Kenichi Handa <handa@m17n.org>
20583
20584 * font.c (font_unparse_fcname): Pay attention to the case that
20585 some of font property is a null string.
20586
20587 2008-02-01 Kenichi Handa <handa@m17n.org>
20588
20589 * term.c: Include "composite.h".
20590 (encode_terminal_code): Output all components of composition.
20591 Check the size of encode_terminal_src.
20592 (produce_glyphs): For composition, call produce_composite_glyph.
20593 (append_composite_glyph, produce_composite_glyph): New functions.
20594
20595 * xdisp.c (x_produce_glyphs): In handling composition, if a font
20596 is not found, get font_info from the current ascii face.
20597
20598 2008-02-01 Kenichi Handa <handa@m17n.org>
20599
20600 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
20601 buffer-file-name to Qnil before calling insert_from_buffer.
20602
20603 * font.c (font_unparse_fcname): Pay attention to the case that
20604 foundry is a null string.
20605
20606 2008-02-01 Kenichi Handa <handa@m17n.org>
20607
20608 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
20609
20610 * font.c (Qunicode_sip): New variable.
20611 (syms_of_font): Declare it as a Lisp symbol.
20612
20613 * font.h (Qunicode_sip): Extern it.
20614
20615 2008-02-01 Kenichi Handa <handa@m17n.org>
20616
20617 * composite.c (get_composition_id): Pay attention to TAB component.
20618
20619 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
20620 TAB. Adjust for the change of s->char2b which always points to
20621 the first element of allocated memory.
20622
20623 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
20624
20625 * xdisp.c (handle_composition_prop): Set it->c to the first
20626 non-TAB component.
20627 (fill_composite_glyph_string): Change argument.
20628 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
20629 (x_produce_glyphs): Fix handling of left/right padding.
20630
20631 2008-02-01 Kenichi Handa <handa@m17n.org>
20632
20633 * coding.c (detect_coding_system): Fix for handling off
20634 inhibit_iso_escape_detection. Fix for the case that no coding
20635 system is defined for a specific coding category.
20636
20637 2008-02-01 Kenichi Handa <handa@m17n.org>
20638
20639 * font.c (font_matching_entity): Delete unused local var.
20640
20641 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
20642 opening a font.
20643
20644 * fileio.c (Finsert_file_contents): On recovering a file, assume
20645 Unix-like eol.
20646 (choose_write_coding_system): On auto-saving a file, force
20647 Unix-like eol.
20648
20649 * coding.c (setup_coding_system): Fix setting of
20650 coding->common_flags based on eol_type.
20651 (coding_inherit_eol_type): If PARENT is not nil, be sure to
20652 inherit from it.
20653
20654 2008-02-01 Kenichi Handa <handa@m17n.org>
20655
20656 * alloc.c (NSTATICS): Increas to 0x600.
20657
20658 2008-02-01 Kenichi Handa <handa@m17n.org>
20659
20660 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
20661 (ftfont_list): Don't check :name property.
20662 (ftfont_match): New function.
20663 (ftfont_pattern_entity): If the pattern doesn't contain
20664 FC_SPACING, don't assume FC_MONO.
20665
20666 * font.h (struct font_driver): New member `match'.
20667 (font_update_drivers): Adjust prototype.
20668
20669 * font.c (font_parse_fcname, font_parse_name): Don't change :name
20670 property of FONT.
20671 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
20672 them unconditionally.
20673 (font_matching_entity): New function.
20674 (font_open_by_name): Try font_matching_entity if exact match is
20675 not found.
20676 (font_update_drivers): Delete the arg FONT. Return a list of
20677 actually used backends. Don't free faces, font caches here.
20678 Don't store data in frame parameters. Don't call x_set_font.
20679 (Ffont_spec): Store :name property as is.
20680 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
20681 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
20682 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
20683 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
20684 Call font->driver->otf_gsub instead of font_otf_gsub.
20685
20686 * frame.c (x_set_font_backend): Do more works that were done in
20687 font_update_drivers before.
20688
20689 * xfont.c (xfont_match): New function.
20690 (xfont_driver): Set xfont_driver.match to xfont_match.
20691 (xfont_draw): Set font in GC if necessary.
20692
20693 * ftxfont.c (ftxfont_match): New function.
20694 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
20695
20696 * xftfont.c (xftfont_match): New function.
20697 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
20698
20699 2008-02-01 Kenichi Handa <handa@m17n.org>
20700
20701 * font.h (struct font): New member scalable.
20702 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
20703 (font_otf_gsub): Adjust prototype.
20704
20705 * font.c (font_otf_capability): Fix handling of the default langsys.
20706 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
20707 Check the contents of SPEC.
20708 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
20709 (check_gstring): New function.
20710 (REPLACEMENT_CHARACTER): New macro.
20711 (font_otf_gsub): New arg alternate_subst. Be sure to set all
20712 glyph codes of GSTRING.
20713 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
20714 (font_prepare_composition): Set cmp->glyph_len.
20715 (font_open_entity): Set font->scalable.
20716 (Ffont_get): Handle :otf property.
20717 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
20718 functions.
20719 (Fquery_font): Use font->font.full_name.
20720 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
20721 Sfont_otf_alternates.
20722
20723 * ftfont.c (ftfont_open): Set font->font.full_name and
20724 font->font.name properly. Fix calculation of font->font.height
20725 and font->min_width.
20726
20727 * ftxfont.c (ftxfont_create_gcs): New function.
20728 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
20729 (ftxfont_draw_backgrond): Fix filling region.
20730 (ftxfont_default_fid): New function.
20731 (ftxfont_open): Set xfont->fid to the return value of
20732 ftxfont_default_fid.
20733 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
20734 (ftxfont_done_face): Free only GCs that are created by
20735 ftxfont_create_gcs.
20736 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
20737
20738 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
20739 Clip to src->width, etc (not src->clip_XXX).
20740
20741 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
20742 FontBackend frame parameter.
20743
20744 2008-02-01 Kenichi Handa <handa@m17n.org>
20745
20746 * font.h (struct font_driver_list): New member `on'.
20747 (Fclear_font_cache): EXFUN it.
20748 (font_update_drivers): Extern it.
20749
20750 * font.c (font_unparse_fcname): Fix typo (swidth->width).
20751 (font_list_entities): Check driver_list->on.
20752 (register_font_driver): Initialize `on' member to 0.
20753 (font_update_drivers): New function.
20754 (Fclear_font_cache): Check driver_list->on.
20755
20756 * frame.h (Qfont_backend): Extern it.
20757 (x_set_font_backend): Extern it.
20758
20759 * frame.c (Qfont_backend): New variable.
20760 (frame_parms): New element for font-backend.
20761 (x_set_font_backend): New function.
20762
20763 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
20764 FontBackend frame parameter.
20765 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
20766 x_set_font_backend.
20767
20768 * xfont.c (xfont_list): Don't try listing by :name property if the
20769 name is not for XLFD.
20770
20771 2008-02-01 Kenichi Handa <handa@m17n.org>
20772
20773 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
20774 (LGLYPH_SET_TO): New macros.
20775 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
20776 element of G is vector or not.
20777 (font_at): Extern it.
20778
20779 * font.c: Include window.h.
20780 (font_lispy_object): New function.
20781 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
20782 end of valid glyph.
20783 (font_close_object): Fix getting (struct font *).
20784 (font_at): New function.
20785 (Ffont_get): If FONT is a font-object, get entity from it.
20786 (Ffont_make_gstring): Initialize elements of glyphs with nil.
20787 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
20788 range check.
20789 (Ffont_at): New function.
20790 (syms_of_font): Defsubr Sfont_at.
20791
20792 * xdisp.c (it_props): Move the entry for Qauto_composed to just
20793 before the entry for Qcomposition.
20794 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
20795 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
20796 the font in gstring.
20797 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
20798 LGLYPH_FORM (g) to detect the end of valid glyph.
20799 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
20800 we are composing with gstring.
20801
20802 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
20803 Check if adjustment is vector or not.
20804
20805 * Makefile.in (font.o): Make it depends on window.h.
20806
20807 2008-02-01 Kenichi Handa <handa@m17n.org>
20808
20809 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
20810 adjustment is vector or not.
20811
20812 2008-02-01 Miles Bader <miles@gnu.org>
20813
20814 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
20815
20816 2008-02-01 Kenichi Handa <handa@m17n.org>
20817
20818 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
20819 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
20820 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
20821
20822 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
20823 (DEVICE_DELTA): Fix typo.
20824 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
20825 LGLYPH format.
20826
20827 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
20828 the change of LGLYPH format.
20829
20830 2008-02-01 Kenichi Handa <handa@m17n.org>
20831
20832 * ftfont.c (ftfont_list): Fix typo.
20833 (ftfont_build_basic_charsets): Don't include letters with diacritics.
20834
20835 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
20836
20837 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
20838
20839 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
20840 xftface_info is non-NULL.
20841
20842 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
20843
20844 * ftfont.c (ftfont_list): Move misplaced #endif.
20845
20846 2008-02-01 Kenichi Handa <handa@m17n.org>
20847
20848 * ftfont.c (ftfont_list): Pay attention to the case that
20849 FC_CAPABILITY is not defined.
20850
20851 2008-02-01 Kenichi Handa <handa@m17n.org>
20852
20853 * xftfont.c (xftfont_open): Set charset related members to -1.
20854
20855 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
20856 QCname.
20857 (ftfont_open): Set charset related members to -1.
20858
20859 * fontset.c (Votf_script_alist): New variable.
20860 (syms_of_fontset): Initialize it.
20861 (fontset_font): Delete unused variable.
20862
20863 * fontset.h (Votf_script_alist): Extern it.
20864
20865 * font.c (font_find_for_lface): Optimize code.
20866
20867 * font.h (font_close_object, font_merge_old_spec): Extern them.
20868
20869 2008-02-01 Kenichi Handa <handa@m17n.org>
20870
20871 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
20872 (syms_of_font): Initialize them.
20873 (font_pixel_size): Allow float value in dpi.
20874 (font_prop_validate_type): Delete.
20875 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
20876 Change caller.
20877 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
20878 (font_prop_validate_extra): Delete.
20879 (font_prop_validate_spacing): New function.
20880 (font_property_table): Add elements for all known properties.
20881 (get_font_prop_index): Rename from check_font_prop_name. New
20882 argument FROM. Change caller.
20883 (font_prop_validate): Validate all known properties.
20884 (font_put_extra): Delete argument force. Change caller.
20885 (font_expand_wildcards): Make it static. Fix the way of shrinking
20886 the possible range.
20887 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
20888 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
20889 Change caller.
20890 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
20891 (font_parse_fcname): Delete argument merge. Fix parsing of point
20892 size. Don't validate properties values here. Change caller.
20893 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
20894 (font_open_by_name): Delete unused variable.
20895 (Ffont_spec): Likewise. Validate property values.
20896 (Ffont_match_p): New function.
20897
20898 * font.h (QCscalable): Extern it.
20899 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
20900
20901 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
20902
20903 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
20904 (xfont_list_pattern): New function.
20905 (xfont_list): Use xfont_list_pattern.
20906
20907 2008-02-01 Kenichi Handa <handa@m17n.org>
20908
20909 * font.h (Flist_fonts): EXFUN it.
20910
20911 2008-02-01 Jason Rumney <jasonr@gnu.org>
20912
20913 * w32term.c (w32_initialize): Add back smoothing_type and
20914 smoothing_enabled definitions.
20915
20916 2008-02-01 Kenichi Handa <handa@m17n.org>
20917
20918 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
20919 s->face->font on determining underline position.
20920
20921 2008-02-01 Kenichi Handa <handa@m17n.org>
20922
20923 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
20924 (font_has_char): Accept font-object too.
20925 (font_find_for_lface): Try at first with a size specified in face.
20926
20927 2008-02-01 Kenichi Handa <handa@m17n.org>
20928
20929 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
20930 font_open_by_name.
20931
20932 2008-02-01 Kenichi Handa <handa@m17n.org>
20933
20934 * font.h (QCspacing, QCdpi): Extern them.
20935 (enum font_spacing): New enum.
20936 (FONT_PIXEL_SIZE_QUANTUM): New macro.
20937
20938 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
20939 (QCspacing, QCdpi): New variables.
20940 (syms_of_font): Initialize them.
20941 (font_pixel_size): New function.
20942 (font_put_extra): New function.
20943 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
20944 in FONT_EXTRA.
20945 (font_parse_fcname): Handle enumerated values (e.g. bold).
20946 Fix handling font size. Add QCname property that contains only
20947 unknown properties.
20948 (font_score): Change argument. Change caller. Pay attention to
20949 FONT_PIXEL_SIZE_QUANTUM.
20950 (font_sort_entites, font_list_entities, font_find_for_lface)
20951 (font_open_for_lface, font_open_by_name): Fix handling of font size.
20952 (Ffont_spec): Add QCname property that contains only unknown properties.
20953
20954 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
20955 include weight in listing pattern, instead check weight of each
20956 listed font. Don't include scalable in pattern. Pay attention to
20957 FONT_PIXEL_SIZE_QUANTUM.
20958
20959 2008-02-01 Kenichi Handa <handa@m17n.org>
20960
20961 * font.c (font_parse_fcname): Fix parsing of point-size.
20962 (font_unparse_fcname): Produce symbolic names for style properties.
20963 (font_list_entities): Handle float size correctly.
20964 (font_open_by_name): Prefer `normal' property values if the name
20965 doesn't specify them.
20966
20967 * fontset.c (Finternal_char_font): Use font_get_name, not
20968 Ffont_xlfd_name.
20969
20970 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
20971 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
20972 pattern. Don't force scalable.
20973
20974 * xftfont.c (xftfont_open): For generating a name, start from
20975 96-byte buffer.
20976
20977 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
20978
20979 * frame.h (x_new_fontset2): Fix prototype.
20980
20981 2008-02-01 Kenichi Handa <handa@m17n.org>
20982
20983 * font.h (struct font_driver): Delete member parse_name.
20984 (font_match_p, font_get_spec, font_parse_fcname)
20985 (font_unparse_fcname): Extern them.
20986 (font_get_name): Adjust prototype.
20987
20988 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
20989 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
20990 (font_expand_wildcards): Fix handling ENCODING field. Avoid
20991 unnecessary checks for weight, slant, and swidth.
20992 (font_parse_fcname): New function.
20993 (font_unparse_fcname): New function.
20994 (font_parse_name): New function.
20995 (font_match_p): New function.
20996 (font_get_name): Change return value to Lisp string.
20997 (font_get_spec): New function.
20998 (Qunspecified, Qignore_defface): Don't extern them.
20999 (font_find_for_lface): Assume that LFACE is fully specified.
21000 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
21001 object, use it for FACE.
21002 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
21003 driver->parse_name.
21004 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
21005
21006 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
21007 prototype.
21008
21009 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
21010 argument F. Don't call Fnew_fontset. Instead, directly call
21011 make_fontset.
21012
21013 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
21014
21015 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
21016 of x_new_fontset2.
21017
21018 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
21019 (Qsans__serif): New variables.
21020 (ftfont_generic_family_list): New variable.
21021 (syms_of_ftfont): Initialize the above variables.
21022 (ftfont_pattern_entity): Delete argument NAME.
21023 (ftfont_list_generic_family): New function.
21024 (ftfont_parse_name): Delete this function.
21025 (ftfont_list): Try generic family only when FcFontList found no font.
21026 (ftfont_list_family): Fix args to FcObjectSetBuild.
21027
21028 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
21029 object in attrs[LFACE_FONT_INDEX].
21030 (set_lface_from_font_name): Cancel all changes for font-backend.
21031 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
21032 function.
21033 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
21034 font object in QCfont attribute.
21035 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
21036 (realize_default_face) [USE_FONT_BACKEND]: Call
21037 set_lface_from_font_and_fontset.
21038
21039 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
21040 "fixed", and signal error here if no suitable font was found.
21041
21042 * xfont.c (xfont_parse_name): Delete this function.
21043
21044 * xftfont.c (xftfont_open): Change coding style of error
21045 handling. Generate fontconfig's fontname pattern.
21046
21047 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
21048 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
21049
21050 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
21051 Both args FONTSET and FONT_OBJECT must be existing ones.
21052
21053 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21054
21055 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
21056
21057 2008-02-01 Kenichi Handa <handa@m17n.org>
21058
21059 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
21060
21061 * font.h (struct font): Fix typo.
21062
21063 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
21064 XLFD_XXX_INDEX.
21065 (enum xlfd_field_mask): New enum.
21066 (intern_font_field): Changed argument. Change caller. If digits
21067 are followed by non-digits, return a symbol.
21068 (font_expand_wildcards): New function.
21069 (font_parse_xlfd): Fix wildcard handling.
21070 (Ffont_spec): If :name is specified, reflect the info in the other
21071 properties.
21072
21073 * ftfont.c (ftfont_pattern_entity): Fix typo.
21074 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
21075 locale.
21076
21077 2008-02-01 Kenichi Handa <handa@m17n.org>
21078
21079 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
21080
21081 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
21082 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
21083 registry doesn't specify encoding part.
21084 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
21085 (font_open_by_name): At first try parsing the name.
21086 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
21087 as Lisp symbols.
21088
21089 * fontset.c (reorder_font_vector): Pay attention to the case that
21090 the 3rd element of font_def is nil.
21091 (fontset_font): For the default fontset, append one more fontset
21092 elements for a script-based font specification. Don't add script
21093 attribute on finding a font.
21094 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
21095 font name.
21096 (fontset_ascii_font): If a font can't be opened, return nil.
21097
21098 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
21099 (ftfont_pattern_entity): New function.
21100 (ftfont_get_cache): Assume that freetype_font_cache is already
21101 initialized.
21102 (ftfont_list): Handle the case that a file is specified in font
21103 name. Use ftfont_pattern_entity to generate entities.
21104 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
21105 (syms_of_ftfont): Initialize freetype_font_cache.
21106
21107 * xftfont.c (xftfont_open): Make the font name fontconfig's
21108 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
21109 (xftfont_close): Free font->font.name if not NULL.
21110
21111 * xfont.c (xfont_list): If script is specified for a font, return
21112 null_vector.
21113 (xfont_list_family): Declare argument type.
21114
21115 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
21116 name, set LFACE_FONT (lface) to nil.
21117
21118 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
21119 return Qnil.
21120
21121 2008-02-01 Kenichi Handa <handa@m17n.org>
21122
21123 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
21124 (standard_args): Add "-enable-font-backend".
21125
21126 2008-02-01 Kenichi Handa <handa@m17n.org>
21127
21128 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
21129 (struct xftdraw_list, xftdraw_list): Delete them.
21130 (register_xftdraw, check_xftdraw): Delete them.
21131 (xftfont_prepare_face): Don't call register_xftdraw.
21132 (xftfont_done_face): Don't call check_xftdraw.
21133 (xftfont_draw): Get background color only when with_background is
21134 nonzero.
21135
21136 * xfont.c (xfont_encode_char): Fix calculation of char2b.
21137
21138 2008-02-01 Kenichi Handa <handa@m17n.org>
21139
21140 These changes are for the new font handling codes.
21141
21142 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
21143 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
21144 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
21145 (FONTSRC, FONTOBJ): New variables.
21146 (obj): Add $(FONTOBJ).
21147 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
21148 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
21149 @LIBOTF_LIBS@.
21150 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
21151 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
21152
21153 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
21154
21155 * character.h (Vscript_representative_chars): Extern it.
21156
21157 * character.c (Vscript_representative_chars): New variable.
21158 (syms_of_character): Declare it as a Lisp variable.
21159
21160 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
21161 enable_font_backend is nonzero, accept the composition method
21162 COMPOSITION_WITH_GLYPH_STRING.
21163
21164 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
21165 enumeration COMPOSITION_WITH_GLYPH_STRING.
21166
21167 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
21168 members clip_x, clip_y, clip_width, and clip_height.
21169 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
21170
21171 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
21172 --enable-font-backend. Call syms_of_font.
21173
21174 * fns.c (assoc_no_quit): New function.
21175
21176 * fontset.h (FONT_INFO_FROM_FACE): New macro.
21177 (face_for_font, new_fontset_from_font)
21178 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
21179
21180 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
21181 (fontset_font, fontset_ascii, face_for_char)
21182 (make_fontset_for_ascii_face, Ffont_info)
21183 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
21184 is nonzero, use font-backend mechanism.
21185 (find_font_encoding): Make it non-static.
21186 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
21187 New functions.
21188
21189 * frame.h (struct frame): New members resx and resy.
21190 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
21191 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
21192
21193 * frame.c [USE_FONT_BACKEND]: Include "font.h".
21194 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
21195
21196 * lisp.h (assoc_no_quit): Extern it.
21197
21198 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
21199 Through out the file, use FONT_INFO_FROM_FACE instead of
21200 FONT_INFO_FROM_ID, use get_per_char_metric instead of
21201 rif->per_char_metric.
21202 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
21203 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
21204 (get_glyph_face_and_encoding, fill_composite_glyph_string)
21205 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
21206 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
21207 nonzero, use font-backend mechanism.
21208 (get_per_char_metric): New function.
21209
21210 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
21211 (set_lface_from_font_name)
21212 (set_font_frame_param, free_realized_face)
21213 (prepare_face_for_display, clear_face_gcs)
21214 (Finternal_set_font_selection_order, realize_x_face)
21215 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
21216 font-backend mechanism.
21217 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
21218 (load_face_font) [USE_FONT_BACKEND]: Abort.
21219 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
21220 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
21221
21222 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
21223 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
21224 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
21225 nonzero, register all available font drivers. Call
21226 x_default_font_parameter for deciding a font.
21227 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
21228
21229 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
21230 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
21231 (x_set_glyph_string_clipping_exactly)
21232 (x_compute_glyph_string_overhangs)
21233 (x_draw_glyph_string_foreground)
21234 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
21235 (x_free_frame_resources) [USE_FONT_BACKEND]: If
21236 enable_font_backend is nonzero, use font-backend mechanism.
21237 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
21238
21239 2008-02-01 Kenichi Handa <handa@m17n.org>
21240
21241 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
21242 system_eol_type.
21243 (syms_of_coding): Initialize system_eol_type.
21244
21245 * process.c (Fset_process_coding_system): Inherit system's eol
21246 format if necessary.
21247
21248 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21249
21250 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
21251
21252 2008-02-01 Kenichi Handa <handa@m17n.org>
21253
21254 * coding.c (decode_eol): Pay attention to buffer relocation in
21255 del_range_2.
21256 (decode_coding): Call decode_eol before restoring undo_list.
21257
21258 2008-02-01 Kenichi Handa <handa@m17n.org>
21259
21260 * charset.c (Fdefine_charset_internal): Fix setting of
21261 emacs_mule_bytes.
21262
21263 2008-02-01 Kenichi Handa <handa@m17n.org>
21264
21265 * keyboard.c (read_char): Check if C is a character or not before
21266 looking up Vkeyboard_translate_table.
21267
21268 2008-02-01 Kenichi Handa <handa@m17n.org>
21269
21270 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
21271 condition to terminate the loop.
21272
21273 2008-02-01 Kenichi Handa <handa@m17n.org>
21274
21275 * coding.c (produce_composition): Compare charbuf[i] instead of
21276 args[i] against 0.
21277 (Fterminal_coding_system): Use EQ to compare Lisp objects.
21278
21279 2008-02-01 Kenichi Handa <handa@m17n.org>
21280
21281 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
21282 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
21283 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
21284 detect_coding.
21285 (emacs_mule_char): Handle old style (Emacs 20) component character
21286 of a composition.
21287 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
21288 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
21289 composition rule.
21290 (decode_coding_emacs_mule): Handle invalid bytes correctly.
21291
21292 2008-02-01 Kenichi Handa <handa@m17n.org>
21293
21294 * coding.c (encode_coding_ccl): Allocate destination dynamically
21295 when necessary.
21296
21297 2008-02-01 Kenichi Handa <handa@m17n.org>
21298
21299 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
21300 the loop. When quitted, show a proper error message.
21301
21302 2008-02-01 Kenichi Handa <handa@m17n.org>
21303
21304 * xterm.c (x_set_glyph_string_clipping_exactly): Set
21305 src->clip_head and src->clip_tail temporarily instead of src->hl.
21306
21307 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
21308 character sequence.
21309 (Fccl_execute_on_string): Use ASET, not XSET.
21310
21311 2008-02-01 Kenichi Handa <handa@m17n.org>
21312
21313 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
21314
21315 2008-02-01 Kenichi Handa <handa@m17n.org>
21316
21317 * coding.c (decode_coding): Fix the condition of terminating the
21318 decoding loop.
21319
21320 2008-02-01 Kenichi Handa <handa@m17n.org>
21321
21322 * data.c (Faset): On setting a character bigger than 255 in a
21323 unibyte string, signal an error instead of make the string multibyte.
21324
21325 2008-02-01 Kenichi Handa <handa@m17n.org>
21326
21327 * charset.c (map_charset_chars): Fix for ascii-compatible charset
21328 made by a mapping table.
21329
21330 2008-02-01 Kenichi Handa <handa@m17n.org>
21331
21332 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
21333 not.
21334 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
21335 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
21336
21337 * xterm.c (x_draw_composite_glyph_string_foreground): Check
21338 s->face is NULL or not.
21339
21340 2008-02-01 Kenichi Handa <handa@m17n.org>
21341
21342 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
21343 (x_draw_glyph_string): Fix drawing of right_overhang and
21344 left_overhang around/on cursor.
21345
21346 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
21347
21348 2008-02-01 Kenichi Handa <handa@m17n.org>
21349
21350 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
21351
21352 2008-02-01 Kenichi Handa <handa@m17n.org>
21353
21354 * coding.c (Fdefine_coding_system_internal)
21355 (Fdefine_coding_system_alias): Avoid a duplicated element in
21356 Vcoding_system_alist.
21357
21358 2008-02-01 Kenichi Handa <handa@m17n.org>
21359
21360 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
21361
21362 * coding.c (Qcoding_system_define_form): New variable.
21363 (syms_of_coding): Intern and staticpro it.
21364 (Fcoding_system_p): Check Qcoding_system_define_form.
21365 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
21366
21367 * coding.h (CODING_SYSTEM_P): If ID is not available, call
21368 Fcoding_system_p.
21369 (CHECK_CODING_SYSTEM): If ID is not available, call
21370 Fcheck_coding_system.
21371 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
21372 Try also Fcheck_coding_system.
21373
21374 2008-02-01 Kenichi Handa <handa@m17n.org>
21375
21376 * coding.c (code_conversion_restore): GCPRO arg.
21377
21378 2008-02-01 Kenichi Handa <handa@m17n.org>
21379
21380 * character.c (lisp_string_width): Check multibyteness of STRING.
21381
21382 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21383
21384 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
21385 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
21386 (decode_mac_font_name): Use decode_coding_c_string instead of
21387 decode_coding.
21388 (x_load_font): Initialize fontp->fontset to -1. Set
21389 fontp->encoding_type.
21390
21391 2008-02-01 Kenichi Handa <handa@m17n.org>
21392
21393 * search.c (search_buffer): Give up BM search on case-fold-search
21394 if one of a target character has a case-equivalence of different
21395 byte length even if that target character is an ASCII.
21396 (simple_search): Fix calculation of byte length of matched text.
21397 (boyer_moore): Fix handling of case-equivalent multibyte characters.
21398
21399 2008-02-01 Kenichi Handa <handa@m17n.org>
21400
21401 * coding.c (decode_coding): Fix handling of invalid bytes.
21402
21403 2008-02-01 Kenichi Handa <handa@m17n.org>
21404
21405 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
21406 Unicode characters.
21407
21408 2008-02-01 Kenichi Handa <handa@m17n.org>
21409
21410 * coding.c (encode_coding_object): If a pre-write-conversion
21411 function makes a new buffer, kill it.
21412
21413 2008-02-01 Kenichi Handa <handa@m17n.org>
21414
21415 * coding.c (QCascii_compatible_p): New variable.
21416 (syms_of_coding): Initialize it.
21417 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
21418 calling string_char.
21419 (record_conversion_result): Add `default:' case.
21420 (coding_charset_list): Delete unused variable `coding_type'.
21421 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
21422 property in the plist of the coding system.
21423 (Fcoding_system_put): Check QCascii_compatible_p.
21424
21425 2008-02-01 Miles Bader <miles@gnu.org>
21426
21427 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
21428 removed calculation of frame `f', as it's now used.
21429
21430 2008-02-01 Kenichi Handa <handa@m17n.org>
21431
21432 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
21433 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
21434 (UNIDATA): New variable.
21435 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
21436 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
21437 $(RUN_TEMACS) unconditionally.
21438
21439 2008-02-01 Kenichi Handa <handa@m17n.org>
21440
21441 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
21442 (admindir): New variable.
21443 ($(lispsource)international/charprop.el): New target.
21444
21445 2008-02-01 Miles Bader <miles@gnu.org>
21446
21447 * character.c (chars-in-region): Remove obsolete function.
21448 (syms_of_character): Remove its initialization.
21449
21450 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
21451
21452 * w32select.c (validate_coding_system)
21453 (setup_windows_coding_system): New functions.
21454 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
21455 setup_windows_coding_system.
21456 (setup_config, Fw32_get_clipboard_data): Use
21457 validate_coding_system.
21458 (Fx_selection_exists): Move call to setup_config to a place
21459 where signals are allowed.
21460
21461 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
21462 (Fcheck_coding_system): Add declarations.
21463
21464 2008-02-01 Kenichi Handa <handa@m17n.org>
21465
21466 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
21467
21468 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21469
21470 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
21471 string as the second argument for x_new_fontset.
21472
21473 2008-02-01 Kenichi Handa <handa@m17n.org>
21474
21475 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
21476 (encode_coding_object): Use safe_call instead of call2.
21477
21478 2008-02-01 Kenichi Handa <handa@m17n.org>
21479
21480 * fontset.c (Fset_fontset_font): Check family element of a given vector.
21481
21482 * Makefile.in (lisp): Include charprop.el.
21483
21484 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21485
21486 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
21487 Not sure if it's unnecessary.
21488
21489 2008-02-01 Steven Tamm <steventamm@mac.com>
21490
21491 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
21492 some possibly unnecessary fontset checking code that crashed
21493 when creating a new frame.
21494
21495 2008-02-01 Kenichi Handa <handa@m17n.org>
21496
21497 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
21498 lookup_face.
21499
21500 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
21501
21502 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
21503
21504 2008-02-01 Kenichi Handa <handa@m17n.org>
21505
21506 * coding.c: Cancel the change done in HEAD on 2008-02-01.
21507 (coding_charset_list): New function.
21508
21509 * coding.h (coding_charset_list): Extern it.
21510
21511 2008-02-01 Kenichi Handa <handa@m17n.org>
21512
21513 * fontset.c (Fset_fontset_font): Call find_font_encoding with
21514 concatenation of family and registry.
21515
21516 2008-02-01 Kenichi Handa <handa@m17n.org>
21517
21518 * character.h (BYTE8_STRING): Fix typo.
21519
21520 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
21521 string to multibyte (sync to HEAD).
21522
21523 * casefiddle.c (casify_region): Handle changes in byte-length
21524 using replace_range_2 (sync to HEAD).
21525
21526 2008-02-01 Andreas Schwab <schwab@suse.de>
21527
21528 * chartab.c (map_char_table): GCPRO table and arg.
21529
21530 2008-02-01 Kenichi Handa <handa@m17n.org>
21531
21532 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
21533 already at limit.
21534
21535 2008-02-01 Kenichi Handa <handa@m17n.org>
21536
21537 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
21538 instead of fast_c_string_match_ignore_case.
21539 (find_font_encoding): Change argument to Lisp_Object. Use
21540 fast_string_match_ignore_case instead of
21541 fast_c_string_match_ignore_case. Change caller.
21542
21543 2008-02-01 Kenichi Handa <handa@m17n.org>
21544
21545 * xdisp.c (get_next_display_element): In unibyte case, decide to
21546 display in octal form by checking a character by
21547 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
21548
21549 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
21550
21551 * character.c (unibyte_has_multibyte_table): New variable.
21552
21553 * character.h (unibyte_has_multibyte_table): Extern it.
21554 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
21555
21556 2008-02-01 Kenichi Handa <handa@m17n.org>
21557
21558 * coding.c (encode_coding_iso_2022): Fix handling of charset
21559 annotation.
21560
21561 2008-02-01 Kenichi Handa <handa@m17n.org>
21562
21563 * coding.c (setup_coding_system): If coding_system is nil, use
21564 Qundecided.
21565 (Fterminal_coding_system): Return nil if terminal coding system is
21566 `undecided'.
21567 (syms_of_coding): Define coding-system `undecided' here. Setup
21568 terminal_coding as `undecided'.
21569
21570 2008-02-01 Kenichi Handa <handa@m17n.org>
21571
21572 * xdisp.c (message_dolog, set_message_1): Call
21573 unibyte_char_to_multibyte with arg type int.
21574
21575 * lread.c (read1): Fix reading of a char-table.
21576
21577 * print.c (print_object): Include sub char-table in circularities
21578 detection.
21579
21580 2008-02-01 Kenichi Handa <handa@m17n.org>
21581
21582 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
21583 Append the found sequences in car of ARGS instead of prepending.
21584
21585 2008-02-01 Kenichi Handa <handa@m17n.org>
21586
21587 * fileio.c (report_file_error): Make a unibyte string from
21588 strerror (errorno).
21589 (Fsubstitute_in_file_name): Fix the arg to
21590 unibyte_char_to_multibyte. It is evaluated twice.
21591
21592 2008-02-01 Kenichi Handa <handa@m17n.org>
21593
21594 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
21595
21596 2008-02-01 Kenichi Handa <handa@m17n.org>
21597
21598 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
21599 BOM is not found.
21600 (detect_coding, detect_coding_system): Optimization for ISO-2022
21601 when no 8-bit data is found.
21602
21603 2008-02-01 Jason Rumney <jasonr@gnu.org>
21604
21605 * w32fns.c (x_to_w32_font): Update to use new coding struct.
21606
21607 2008-02-01 Kenichi Handa <handa@m17n.org>
21608
21609 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
21610 CHARS.
21611
21612 2008-02-01 Steven Tamm <steventamm@mac.com>
21613
21614 * macterm.c (mac_encode_char): Add charset argument and update
21615 to use encoding_type.
21616 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
21617 switch to pure fontset.
21618 (decode_mac_font_name): Temporarily remove decoding.
21619 (x_font_name_to_mac_font_name): Temporarily remove encoding.
21620 (x_load_font): Temporarily remove encoding.
21621
21622 2008-02-01 Kenichi Handa <handa@m17n.org>
21623
21624 * xfaces.c (Fface_font): If frame is not on a window system,
21625 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
21626 refer to face->font.
21627 (split_font_name_into_vector, build_font_name_from_vector)
21628 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
21629 when HAVE_WINDOW_SYSTEM is defined.
21630
21631 2008-02-01 Kenichi Handa <handa@m17n.org>
21632
21633 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
21634 (x_produce_glyphs): Fix setting of members of cmp in case
21635 cmp->glyph_len is zero.
21636
21637 * fontset.c (Fset_fontset_font): Fix docstring.
21638 (Ffontset_info): Make it backward compatible. New arg ALL.
21639
21640 2008-02-01 Kim F. Storm <storm@cua.dk>
21641
21642 * process.c (read_process_output): Grow decoding_buf when needed;
21643 this could cause a crash in allocate_string and compact_small_strings.
21644
21645 2008-02-01 Kenichi Handa <handa@m17n.org>
21646
21647 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
21648
21649 2008-02-01 Kenichi Handa <handa@m17n.org>
21650
21651 * coding.c (setup_coding_system): Set coding->common_flags
21652 correctly for raw-text.
21653 (consume_chars): On encoding unibyte text by raw-text, don't check
21654 multibyte form.
21655 (encode_coding): On encoding by raw-text, never use translation tables.
21656
21657 * fileio.c (e_write): Short cut for the case of no encoding.
21658
21659 2008-02-01 Kenichi Handa <handa@m17n.org>
21660
21661 * coding.c (detect_coding, detect_coding_system): Delete unused
21662 variables.
21663
21664 2008-02-01 Kenichi Handa <handa@m17n.org>
21665
21666 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
21667 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
21668
21669 2008-02-01 Kenichi Handa <handa@m17n.org>
21670
21671 * coding.c (Ffind_coding_systems_region_internal): Include
21672 raw-text and no-conversion in the result.
21673
21674 2008-02-01 Kenichi Handa <handa@m17n.org>
21675
21676 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
21677 (load_font_get_repertory): Delete unnecessary check of ENCODING of
21678 FONT_DEF.
21679 (font_def_arg, add_arg, from_arg, to_arg): New args.
21680 (set_fontset_font): Change argument.
21681 (Fset_fontset_font): Fix for the case that TARGET is a script
21682 name and charset name.
21683 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
21684
21685 2008-02-01 Kenichi Handa <handa@m17n.org>
21686
21687 * fontset.c (fontset_font): Rename from fontset_face. Change return
21688 value.
21689 (face_suitable_for_char_p, face_for_char): Adjust for the change
21690 of fontset_font.
21691 (make_fontset_for_ascii_face): Fix setting of the fontset element
21692 for ASCII.
21693 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
21694 to get a font name.
21695 (Ffontset_info): Adjust for the change of fontset_font.
21696
21697 * coding.c (emacs_mule_char): Check invalid code more rigidly.
21698
21699 * character.h (LEADING_CODE_LATIN_1_MIN)
21700 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
21701
21702 2008-02-01 Kenichi Handa <handa@m17n.org>
21703
21704 * editfns.c (check_translation): New function.
21705 (Ftranslate_region_internal): Handle M:N mapping.
21706
21707 2008-02-01 Kenichi Handa <handa@m17n.org>
21708
21709 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
21710
21711 2008-02-01 Kenichi Handa <handa@m17n.org>
21712
21713 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
21714 goto invalid_code.
21715 (decode_coding_iso_2022): Fix handling of invalid designation.
21716
21717 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
21718 after calling code_conversion_save.
21719
21720 2008-02-01 Kenichi Handa <handa@m17n.org>
21721
21722 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
21723
21724 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
21725
21726 * fontset.c: Include "intervals.h".
21727 (fontset_face): Fix comparing of Lisp_Objects.
21728 (free_face_fontset, new_fontset_from_font_name): Fix
21729 Lisp_Object/int mixup.
21730
21731 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
21732
21733 * coding.c: Add many prototypes for static functions.
21734 (get_translation_table): Allow max_lookup to be NULL.
21735 (decode_coding, Ffind_coding_systems_region_internal)
21736 (Funencodable_char_position, Fcheck_coding_systems_region): Call
21737 get_translation_table with max_lookup NULL.
21738
21739 2008-02-01 Kenichi Handa <handa@m17n.org>
21740
21741 * coding.c (get_translation_table): Declare it as Lisp_Object.
21742 (LOOKUP_TRANSLATION_TABLE): New macro.
21743 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
21744 instead of CHAR_TABLE_REF.
21745
21746 2008-02-01 Kenichi Handa <handa@m17n.org>
21747
21748 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
21749 annotation data format.
21750 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
21751 Change arguments FROM and TO to single argument NCHARS. Change caller.
21752 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
21753 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
21754 (decode_coding_ccl, decode_coding_charset): Pay attention to
21755 coding->charbuf_used.
21756 (get_translation): New function.
21757 (produce_chars): New arguments translation_table and last_block.
21758 Translate characters here. Return number of carryover chars.
21759 Change caller.
21760 (produce_composition): New argument pos. Change caller.
21761 Adjust for the change of annotation data format.
21762 (produce_charset, produce_annotation): Likewise.
21763 (decode_coding, encode_coding): Don't call translate_chars.
21764 (consume_chars): New arg translation_table. Change caller.
21765 (translate_chars): Delete.
21766 (syms_of_coding): Make translation-table's number of extra slots 2.
21767
21768 2008-02-01 Kenichi Handa <handa@m17n.org>
21769
21770 * search.c (simple_search): Fix setting this_pos_byte in backward
21771 search.
21772
21773 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
21774 byte sequence.
21775 (detect_coding_ccl): Fix setting of the variable valids.
21776
21777 2008-02-01 Kenichi Handa <handa@m17n.org>
21778
21779 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
21780
21781 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
21782
21783 * editfns.c (Ftranslate_region_internal): Rename from
21784 Ftranslate_region. Accept a char-table in TABLE.
21785 (syms_of_editfns): Defsubr Stranslate_region_internal.
21786
21787 * xfaces.c (set_lface_from_font_name): If a font is specified for
21788 a frame, generate a fontset from the font.
21789 (build_scalable_font_name): If the scalable font is requested for
21790 a specific size, don't change that size.
21791 (try_font_list): Try a scalable font also in the case that a
21792 pattern string is specified.
21793
21794 2008-02-01 Kenichi Handa <handa@m17n.org>
21795
21796 * xfaces.c (Fface_font): New optional arg CHARACTER.
21797
21798 2008-02-01 Kenichi Handa <handa@m17n.org>
21799
21800 * charset.h (CHARSET_OFFSET): New macro.
21801
21802 2008-02-01 Kenichi Handa <handa@m17n.org>
21803
21804 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
21805
21806 * fontset.c (fontset_face): Handle the case that repertory is a
21807 char-table.
21808 (find_font_encoding): Return nil for unknown encoding.
21809 (Fset_fontset_font): Ignore a font of unknown encoding.
21810
21811 2008-02-01 Kenichi Handa <handa@m17n.org>
21812
21813 * keymap.c (describe_vector): Handle default value of a char table.
21814
21815 * fontset.c (fontset_face): Handle fallback fonts correctly.
21816 (Ffontset_info): Return infomation about fallback fonts.
21817
21818 2008-02-01 Kenichi Handa <handa@m17n.org>
21819
21820 * fontset.c (FONTSET_DEFAULT): New macro.
21821 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
21822 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
21823 the case that it is nil.
21824 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
21825 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
21826
21827 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
21828 subset or superset.
21829
21830 2008-02-01 Kenichi Handa <handa@m17n.org>
21831
21832 * emacs.c (main): Call init_charset after syms_of_XXX.
21833
21834 * charset.c (Vcharset_map_directory): Delete.
21835 (Vcharset_map_path): New variable.
21836 (load_charset_map_from_file): Use Vcharset_map_path instead.
21837 (init_charset): Initialize Vcharset_map_path.
21838 (syms_of_charset): Delete declaration of "charset-map-directory",
21839 add declaration of "charset-map-path".
21840
21841 2008-02-01 Kenichi Handa <handa@m17n.org>
21842
21843 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
21844 ASCII only string.
21845
21846 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
21847
21848 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
21849 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
21850
21851 2008-02-01 Kenichi Handa <handa@m17n.org>
21852
21853 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
21854
21855 * coding.c (QCmnemonic, QCdefalut_char)
21856 (QCdecode_translation_table, QCencode_translation_table)
21857 (QCpost_read_conversion, QCpre_write_conversion): New variables.
21858 (get_translation_table): Return a list of translation tables if
21859 necessary.
21860 (decode_coding): Call get_translation_table with ENCODEP 0.
21861 (char_encodable_p): If translation_table is non-nil, always call
21862 translate_char.
21863 (Fdefine_coding_system_internal): Accept list of translation
21864 tables as :encode-translation-table and :decode-translation-table.
21865 (Fcoding_system_put): New function.
21866 (syms_of_coding): Declare new symbols. Defsubr
21867 Scoding_system_put.
21868 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
21869 typically JISX0212.
21870
21871 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
21872 when the charset is superset type.
21873
21874 * character.c (translate_char): Accept list of translation tables.
21875
21876 2008-02-01 Kenichi Handa <handa@m17n.org>
21877
21878 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
21879 (CODING_ATTR_TRANS_TBL): New macro.
21880
21881 * coding.c (get_translation_table): New function.
21882 (translate_chars): Fix the bug of skipping annotation data.
21883 (decode_coding, encode_coding): Utilize get_translation_table.
21884 (char_encodable_p, Funencodable_char_position): Translate char if
21885 necessary.
21886 (Ffind_coding_systems_region_internal)
21887 (Fcheck_coding_systems_region): Setup translation table for encode
21888 in a coding system attribute vector in advance.
21889 (Fdefine_coding_system_internal): Allow a symbol as translation
21890 table. For shift-jis type coding system, allow 4th charset.
21891
21892 2008-02-01 Kenichi Handa <handa@m17n.org>
21893
21894 * coding.c (decode_coding_sjis): Check the first byte rigidly.
21895
21896 * xdisp.c (get_next_display_element): Pass -1 as POS to
21897 FACE_FOR_CHAR if displaying a C-string.
21898
21899 2008-02-01 Kenichi Handa <handa@m17n.org>
21900
21901 * composite.c (get_composition_id): Handle xoff and yoff in a
21902 composition rule.
21903
21904 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
21905 (struct composition): New member lbearing and rbearing.
21906
21907 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
21908 (x_get_glyph_overhangs): Handle a composition glyph.
21909 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
21910
21911 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
21912 composition glyph.
21913
21914 2008-02-01 Kenichi Handa <handa@m17n.org>
21915
21916 * print.c: Include charset.h.
21917 (Vprint_charset_text_property): New variable.
21918 (Qdefault): Extern it.
21919 (PRINT_STRING_NON_CHARSET_FOUND)
21920 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
21921 (print_check_string_result): New variable.
21922 (print_check_string_charset_prop): New function.
21923 (print_prune_charset_plist): New variable.
21924 (print_prune_string_charset): New function.
21925 (print_object): Call print_prune_string_charset if
21926 Vprint_charset_text_property is not t.
21927 (print_interval): Print nothing if interval->plist is nil.
21928 (syms_of_print): Declare Vprint_charset_text_property as a lisp
21929 variable. Init and staticpro print_prune_charset_plist.
21930
21931 2008-02-01 Kenichi Handa <handa@m17n.org>
21932
21933 * fontset.c (new_fontset_from_font_name): Use the specified font
21934 for all characters in the new fontset.
21935
21936 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
21937 OBJECT args.
21938
21939 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
21940 OBJECT args for composition too.
21941
21942 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
21943 OBJECT args.
21944
21945 2008-02-01 Kenichi Handa <handa@m17n.org>
21946
21947 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
21948
21949 * fontset.c (reorder_font_vector): Adjust for the change of
21950 FONT_DEF format.
21951 (fontset_face): New arg id. Change caller.
21952 (face_for_char): New args pos and object.
21953 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
21954 (fs_query_fontset): Check NAME by Fassoc too.
21955 (Fset_fontset_font): Allow non-XLFD font name.
21956 (Ffontset_info): Adjust for the change of FONT_DEF format.
21957
21958 * fontset.h (face_for_char): Adjust prototype.
21959
21960 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
21961 (append_space, extend_face_to_end_of_line)
21962 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
21963 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
21964
21965 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
21966 POS and OBJECT args.
21967
21968 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
21969 POS and OBJECT args.
21970
21971 2008-02-01 Jason Rumney <jasonr@gnu.org>
21972
21973 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
21974 of GlobalAlloc'ed memory.
21975
21976 2008-02-01 Kenichi Handa <handa@m17n.org>
21977
21978 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
21979
21980 * charset.h (charset_table_used): Delete extern.
21981
21982 * charset.c (charset_table_used): Make it static.
21983 (map_charset_chars): Fix args to c_function with.
21984
21985 * chartab.c (map_sub_char_table_for_charset): Fix args to
21986 c_function with.
21987
21988 * coding.h (enum coding_result_code): Delete
21989 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
21990
21991 * coding.c (Qinsufficient_source, Qinconsistent_eol)
21992 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
21993 (Vlast_code_conversion_error): New variables.
21994 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
21995 (ONE_MORE_BYTE): Record error if any instead of signaling an
21996 error. If non-ASCII multibyte char is found, return the negative
21997 value of the code. All callers changed to check it.
21998 (ONE_MORE_BYTE_NO_CHECK): Likewise.
21999 (record_conversion_result): New function. Change all codes setting
22000 coding->result to call this function.
22001 (detect_coding_utf_8, decode_coding_utf_8)
22002 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
22003 Don't use the local variable incomplete.
22004 (emacs_mule_char): Change the second arg to `const'.
22005 (decode_coding): Fix of flushing out unprocessed data.
22006 (make_conversion_work_buffer): Fix making of a work buffer.
22007 (decode_coding_object): Return coding->dst_object.
22008
22009 * fontset.c (set_fontset_font): Fix args.
22010
22011 * lisp.h (CHARACTERBITS): Define as 22.
22012
22013 * process.c (send_process): Be sure to set coding->src_multibyte.
22014
22015 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
22016
22017 2008-02-01 Kenichi Handa <handa@m17n.org>
22018
22019 * xdisp.c (handle_auto_composed_prop): Give limit to
22020 Fnext_single_char_property_change.
22021
22022 2008-02-01 Kenichi Handa <handa@m17n.org>
22023
22024 * composite.c (syms_of_composite): Don't make the composition hash
22025 table weak.
22026
22027 * fontset.c (Fset_fontset_font): Fix docstring.
22028
22029 * lisp.h (detect_coding_system): Adjust prototype.
22030
22031 * fileio.c (kill_workbuf_unwind): Delete this function.
22032 (Finsert_file_contents): Adjust the call of detect_coding_system.
22033 Get conversion_buffer by code_conversion_save. Use the macro
22034 CODING_MAY_REQUIRE_DECODING. After decoding, update
22035 coding_system.
22036
22037 * coding.h (make_conversion_work_buffer): Delete extern.
22038 (code_conversion_save): Extern it.
22039
22040 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
22041 (CODING_GET_INFO): Delete argument eol_type. Change callers.
22042 (decode_coding_utf_8): Don't do eol converion.
22043 (detect_coding_utf_16): Check coding->src_chars, not
22044 coding->src_bytes. Add heuristics for those that have no signature.
22045 (decode_coding_emacs_mule, decode_coding_iso_2022)
22046 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
22047 Don't do eol converion.
22048 (adjust_coding_eol_type): Return a new coding system.
22049 (detect_coding): Don't detect eol. Fix for utf-16 detection.
22050 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
22051 each change.
22052 (decode_coding): Pay attention to undo_list. Do eol conversion for
22053 all types of coding-systems (if necessary).
22054 (Vcode_conversion_work_buf_list): Delete it.
22055 (Vcode_conversion_reused_workbuf): Rename from
22056 Vcode_conversion_reused_work_buf.
22057 (Vcode_conversion_workbuf_name): New variable.
22058 (reused_workbuf_in_use): New variable.
22059 (make_conversion_work_buffer): Delete the arg DEPTH.
22060 (code_conversion_restore): Change argument to cons.
22061 (code_conversion_save): Delete the argument BUFFER. Change callers.
22062 (detect_coding_system): New argument src_chars. Change callers.
22063 Fix for utf-16 detection.
22064 (init_coding_once): Don't use ISO_carriage_return.
22065 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
22066 reused_workbuf_in_use.
22067
22068 2008-02-01 Kenichi Handa <handa@m17n.org>
22069
22070 * keymap.c (store_in_keymap): Pay attention to the case that idx
22071 is a cons specifying a character range.
22072
22073 2008-02-01 Kenichi Handa <handa@m17n.org>
22074
22075 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
22076 HANDLED_RECOMPUTE_PROPS.
22077
22078 * coding.c (Fdefine_coding_system_internal): Fix checking of
22079 ascii compatibility.
22080
22081 2008-02-01 Kenichi Handa <handa@m17n.org>
22082
22083 * charset.c (find_charsets_in_text): Delete unused locale variable.
22084 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
22085
22086 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
22087 Resync charset_list to Vemacs_mule_charset_list.
22088
22089 * keymap.c (store_in_keymap): Pay attention to the case that idx
22090 is a cons specifying a character range.
22091
22092 2008-02-01 Kenichi Handa <handa@m17n.org>
22093
22094 * composite.c (update_compositions): Bind inhibit-read-only, etc
22095 to t before calling remove-list-of-text-properties.
22096
22097 * print.c (print_object): Always print ASCII chars as is.
22098
22099 2008-02-01 Kenichi Handa <handa@m17n.org>
22100
22101 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
22102
22103 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
22104 is a char table.
22105
22106 2008-02-01 Kenichi Handa <handa@m17n.org>
22107
22108 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
22109
22110 2008-02-01 Kenichi Handa <handa@m17n.org>
22111
22112 * xfaces.c (set_lface_from_font_name): Fix for the case that
22113 FONTNAME is not fontset name.
22114
22115 2008-02-01 Kenichi Handa <handa@m17n.org>
22116
22117 * fns.c (base64_encode_1): Fix previous change.
22118
22119 2008-02-01 Kenichi Handa <handa@m17n.org>
22120
22121 * fontset.c (set_fontset_font): New function.
22122 (Fset_fontset_font): If a font is specified for a charset, use
22123 map_charset_chars to store the font spec in a fontset.
22124
22125 2008-02-01 Kenichi Handa <handa@m17n.org>
22126
22127 * fontset.c (fontset_face): Create a fallback fontset on demand.
22128 (make_fontset): Don't create a fallback fontset here.
22129 (free_face_fontset): Free a fallback fontset (if any) too.
22130 (n_auto_fontsets): Delete this variable.
22131 (auto_fontset_alist): New variable.
22132 (new_fontset_from_font_name): Check auto_fontset_alist.
22133 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
22134 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
22135 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
22136 Defsubr Sfontset_list_all.
22137
22138 2008-02-01 Kenichi Handa <handa@m17n.org>
22139
22140 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
22141
22142 2008-02-01 Kenichi Handa <handa@m17n.org>
22143
22144 * fontset.c (Fnew_fontset): Check NAME more rigidly.
22145
22146 2008-02-01 Kenichi Handa <handa@m17n.org>
22147
22148 * editfns.c (Fgoto_char): Fix docstring.
22149
22150 2008-02-01 Kenichi Handa <handa@m17n.org>
22151
22152 * insdel.c (insert_from_gap): Adjust intervals correctly.
22153
22154 2008-02-01 Jason Rumney <jasonr@gnu.org>
22155
22156 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
22157 (pfnGetFontUnicodeRanges): New dynamically loaded function.
22158 (w32_initialize): Try to load it.
22159 (x_get_font_repertory): Use it if available.
22160 (w32_encode_char): Add shortcut for unicode output.
22161
22162 * w32fns.c (w32_load_system_font): Default charset to -1.
22163 (x_to_w32_charset): Match all fonts for unicode.
22164 (w32_to_x_charset): New parameter matching. Don't return partial
22165 or wildcard charsets.
22166 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
22167 (w32_codepage_for_font): Return CP_UNICODE for unicode.
22168 (w32_to_x_font): Match charset to real charset.
22169 (enum_font_cb2): Always list unicode versions.
22170
22171 * makefile.w32-in (temacs): Increase EMHEAP.
22172
22173 2008-02-01 Jason Rumney <jasonr@gnu.org>
22174
22175 * w32term.c (w32_encode_char): New charset parameter.
22176 font_info.encoding becomes encoding_type.
22177 (x_get_font_repertory): New function. Warning: stub only!
22178 (x_new_font): Return quickly if font already set.
22179 (x_new_fontset): fontsetname parameter is Lisp_Object.
22180 Use new fs_query_fontset. Try new_fontset_from_font_name.
22181 Use fontset_name for return value.
22182
22183 * w32term.h: Declare x_get_font_repertory.
22184
22185 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
22186 place of find_charset_in_text. Use encode_coding_object in place
22187 of encode_coding.
22188 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
22189 decode_coding.
22190
22191 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
22192 of x_new_fontset.
22193 (w32_load_system_font): Initialize charset as unicode.
22194 font_info.encoding becomes encoding_type.
22195 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
22196 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
22197 (syms_of_w32fns): Set get_font_repertory_func.
22198
22199 * w32console.c: Include character.h. Use terminal_encode_buffer
22200 from term.c.
22201 (write_glyphs): Use new version of encode_terminal_code. Use
22202 encode_coding_object in place of encode_coding.
22203
22204 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
22205 encoding becomes encoding_type.
22206
22207 * term.c (terminal_encode_buffer): Make externally visible.
22208
22209 * makefile.w32-in: Add character.h dependancies.
22210 (character.o, chartab.o): New targets.
22211
22212 2008-02-01 Kenichi Handa <handa@m17n.org>
22213
22214 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
22215 CODING_ID_EOL_TYPE.
22216
22217 2008-02-01 Andreas Schwab <schwab@suse.de>
22218
22219 * coding.c (produce_chars): Revert last change.
22220
22221 2008-02-01 Kenichi Handa <handa@m17n.org>
22222
22223 * charset.h (charset_unicode): Extern it.
22224
22225 * charset.c (string_xstring_p): Check by (C >= 0x100).
22226 (find_charsets_in_text): Change format of the arc CHARSETS. New
22227 arg MULTIBYTE.
22228 (Ffind_charset_region, Ffind_charset_string): Adjust for the
22229 change of find_charsets_in_text.
22230 (Fsplit_char): Fix doc. Never return unknown.
22231
22232 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
22233
22234 * coding.c (Fdefine_coding_system_alias): Update
22235 Vcoding_system_list.
22236
22237 * fontset.c (load_font_get_repertory): Pay attention to the case
22238 that ENCODING of a font is specified by a char-table.
22239
22240 * xterm.c (x_get_font_repertory): Handle the case that the
22241 encoding of font is other than Unicode.
22242
22243 2008-02-01 Kenichi Handa <handa@m17n.org>
22244
22245 * term.c (encode_terminal_code): Don't handle glyph-table. Check
22246 if a character is encodable by the terminal coding system. If
22247 not, produces proper number of `?'s. Update
22248 terminal_encode_buffer and terminal_encode_buf_size if necessary.
22249 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
22250
22251 2008-02-01 Kenichi Handa <handa@m17n.org>
22252
22253 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
22254 variables.
22255 (encode_terminal_code): Change argument. Encode multiple
22256 characters at once. Store the result of encoding in
22257 terminal_encode_buffer.
22258 (write_glyphs, insert_glyphs): Adjust for the change of
22259 encode_terminal_code.
22260 (term_init): Initialize terminal_encode_buffer and
22261 terminal_encode_buf_size.
22262
22263 * coding.c (consume_chars): If coding->src_object is nil, don't
22264 check annotation.
22265
22266 2008-02-01 Kenichi Handa <handa@m17n.org>
22267
22268 * character.c (char_string): Use ASCII_CHAR_P instead of
22269 SINGLE_BYTE_CHAR_P.
22270
22271 2008-02-01 Kenichi Handa <handa@m17n.org>
22272
22273 * xdisp.c (handle_auto_composed_prop): Check if the last
22274 characters of auto-composed region is newly composed with the
22275 following characters.
22276 (handle_composition_prop): Fix checking of point being inside
22277 composition.
22278
22279 2008-02-01 Kenichi Handa <handa@m17n.org>
22280
22281 * fns.c (concat): Don't change multibyteness of the result by
22282 concatenating an 8-bit character.
22283
22284 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
22285 multibyteness of the result when newelt is an 8-bit character.
22286
22287 2008-02-01 Dave Love <fx@gnu.org>
22288
22289 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
22290 EMACS_INT.
22291
22292 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
22293
22294 * xfaces.c (face_numeric_value): Declare dim size_t.
22295 (Finternal_lisp_face_equal_p): Remove unused f.
22296
22297 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
22298 (MATRIX_ROW): Remove unused vars.
22299 (draw_glyphs, x_insert_glyphs, fast_find_position)
22300 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
22301 byte/char counts.
22302
22303 * regex.c (regex_compile): Remove unused var.
22304
22305 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
22306
22307 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
22308 (Faccessible_keymaps, where_is_internal): Remove unused vars.
22309
22310 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
22311
22312 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
22313
22314 * fileio.c (Fwrite_region): Remove unused var.
22315
22316 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
22317 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
22318
22319 * composite.c (Fremove_list_of_text_properties): Declare.
22320
22321 * coding.c (inhibit_pre_post_conversion): Remove (unused).
22322 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
22323 (coding_inherit_eol_type): Remove unused attrs.
22324 (detect_coding): Cast arg of detect_eol.
22325
22326 * charset.c (syms_of_charset): Remove unused var p.
22327 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
22328 byte/char counts.
22329
22330 * casetab.c (set_case_table): Remove unused var.
22331
22332 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
22333 unused vars.
22334
22335 2008-02-01 Dave Love <fx@gnu.org>
22336
22337 * xterm.c (x_bitmap_mask): Declare.
22338
22339 2008-02-01 Dave Love <fx@gnu.org>
22340
22341 * xterm.c (x_term_init): Fix type error.
22342
22343 * lisp.h: Add Funibyte_char_to_multibyte.
22344
22345 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
22346 (Fset_coding_system_priority): Doc fix.
22347
22348 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
22349
22350 * indent.c (check_composition): Make start and end EMACS_INT.
22351
22352 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
22353
22354 * xdisp.c (handle_composition_prop, check_point_in_composition):
22355 Make buffer positions EMACS_INT.
22356
22357 * composite.c (find_composition, run_composition_function)
22358 (update_compositions, Ffind_composition_internal): Make buffer
22359 positions EMACS_INT.
22360
22361 * composite.h (find_composition, update_compositions): Make
22362 position args EMACS_INT.
22363
22364 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
22365
22366 * intervals.c (get_property_and_range):
22367 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
22368
22369 * unexalpha.c: Don't include varargs.h.
22370
22371 2008-02-01 Dave Love <fx@gnu.org>
22372
22373 * coding.h (ENCODE_UTF_8): New.
22374
22375 * Makefile.in (gtkutil.o): Depend on coding.h.
22376
22377 * coding.c (Fset_coding_system_priority): Doc fix.
22378
22379 2008-02-01 Kenichi Handa <handa@m17n.org>
22380
22381 * fileio.c (Finsert_file_contents): Call setup_coding_system in
22382 the case of auto saving.
22383
22384 2008-02-01 Andreas Schwab <schwab@suse.de>
22385
22386 * chartab.c (map_char_table, map_char_table_for_charset): Protect
22387 `range' from GC.
22388
22389 2008-02-01 Kenichi Handa <handa@m17n.org>
22390
22391 * coding.c (decode_coding_sjis): Check bytes more rigidly.
22392
22393 2008-02-01 Kenichi Handa <handa@m17n.org>
22394
22395 * fileio.c (choose_write_coding_system): Return a decided coding system.
22396 (Fwrite_region): Set Vlast_coding_system_used to the return value
22397 of choose_write_coding_system.
22398
22399 2008-02-01 Kenichi Handa <handa@m17n.org>
22400
22401 * charset.c (Fset_charset_priority): Pay attention to duplicated
22402 arguments.
22403
22404 * coding.c (QCcategory): New variable.
22405 (syms_of_coding): Defsym it. Set all elements of
22406 Vcoding_category_table and their symbol values.
22407 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
22408 coding-category-XXX, and coding-category-list.
22409 (Fdefine_coding_system_internal): Add category in the plist.
22410
22411 2008-02-01 Kenichi Handa <handa@m17n.org>
22412
22413 * callproc.c (Fcall_process): Handle carryover correctly.
22414
22415 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
22416 (raw_text_coding_system): Check NILP (coding_system).
22417 (coding_inherit_eol_type): Check NILP (coding_system) and
22418 NILP (parent).
22419 (consume_chars): Fix for the case of raw-text.
22420
22421 * process.c (read_process_output): Handle carryover correctly.
22422
22423 2008-02-01 Dave Love <fx@gnu.org>
22424
22425 * regex.c (re_search_2): Fix last change.
22426
22427 2008-02-01 Kenichi Handa <handa@m17n.org>
22428
22429 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
22430 target_multibyte. Even in a unibyte case, return a converted
22431 multibyte char.
22432 (GET_CHAR_AFTER): New macro.
22433 (PATFETCH): Translate via multibyte char.
22434 (HANDLE_UNIBYTE_RANGE): Delete this macro.
22435 (SETUP_MULTIBYTE_RANGE): New macro.
22436 (regex_compile): Setup compiled code so that its multibyteness
22437 matches that of a target. Fix the handling of "[X-YZ]" using
22438 SETUP_MULTIBYTE_RANGE.
22439 (analyse_first) <charset>: For filling fastmap for all multibyte
22440 characters, don't check by BASE_LEADING_CODE_P.
22441 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
22442 the same as RE_MULTIBYTE_P (bufp) now.
22443 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
22444 (TARGET_CHAR_AND_LENGTH): Delete this macro.
22445 (TRANSLATE_VIA_MULTIBYTE): New macro.
22446 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
22447 It is the same as RE_MULTIBYTE_P (bufp) now.
22448 <exactn>: Translate via multibyte.
22449 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
22450 translate it.
22451 <charset, charset_not>: Fetch a character by
22452 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
22453 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
22454 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
22455 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
22456 by GET_CHAR_AFTER.
22457 (bcmp_translate): Likewise.
22458
22459 * search.c (compile_pattern): Check the member target_multibyte,
22460 not the member multibyte of buf.
22461
22462 * lread.c (read1): While reading a string, set force_singlebyte
22463 and force_multibyte correctly.
22464
22465 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
22466 up of unibyte_to_multibyte_table.
22467
22468 2008-02-01 Kenichi Handa <handa@m17n.org>
22469
22470 * coding.c (setup_coding_system): If coding has
22471 post-read-conversion or pre-write-conversion, set
22472 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
22473 respectively.
22474 (decode_coding_gap): Run post-read-conversion if any.
22475
22476 * fileio.c (Finsert_file_contents): Even if we read into a
22477 unibyte buffer, check if we must decode the result or not.
22478
22479 2008-02-01 Kenichi Handa <handa@m17n.org>
22480
22481 * coding.c (make_conversion_work_buffer): Change the work buffer
22482 name to the same one as that of Emacs 21.
22483
22484 2008-02-01 Kenichi Handa <handa@m17n.org>
22485
22486 * coding.h (make_conversion_work_buffer): Adjust prototype.
22487 (code_conversion_restore): Don't extern it.
22488
22489 * coding.c (detected_mask): Delete unused variable.
22490 (decode_coding_iso_2022): Pay attention to the byte sequence of
22491 CTEXT extended segment, and retain those bytes as is.
22492 (decode_coding_ccl): Delete unused variable `valids'.
22493 (setup_coding_system): Delete unused variable `category'.
22494 (consume_chars): Delete unused variable `category'. Make it work
22495 for non-multibyte case.
22496 (make_conversion_work_buffer): Change argument.
22497 (saved_coding): Delete unused variable.
22498 (code_conversion_restore): Don't check saved_coding->destination.
22499 (code_conversion_save): New function.
22500 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
22501 instead of record_unwind_protect.
22502 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
22503 (detect_coding_system): Delete unused variable `mask'.
22504 (Fdefine_coding_system_internal): Delete unused variable id.
22505
22506 * fileio.c (kill_workbuf_unwind): New function.
22507 (Finsert_file_contents): On replacing, call
22508 make_conversion_work_buffer with correct args, and call
22509 record_unwind_protect with the first arg kill_workbuf_unwind.
22510
22511 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
22512
22513 2008-02-01 Kenichi Handa <handa@m17n.org>
22514
22515 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
22516 (fontset_add): Fix for the case that TO is less than TO1.
22517 (Ffontset_info): Don't use fallback fontset on checking the
22518 default fontset.
22519 (dump_fontset): New function for debugging.
22520
22521 * coding.c (Fdefine_coding_system_internal): Fix for the case that
22522 coding_type is Qcharset.
22523
22524 2008-02-01 Kenichi Handa <handa@m17n.org>
22525
22526 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
22527 (map_char_table): Don't inherit the value from the parent on
22528 initializing VAL. Adjust for the above change.
22529
22530 2008-02-01 Kenichi Handa <handa@m17n.org>
22531
22532 * coding.c (Qsignature, Qendian): Delete these variables.
22533 (syms_of_coding): Don't initialize them.
22534 (CATEGORY_MASK_UTF_16_AUTO): New macro.
22535 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
22536 detect_info->found.
22537 (decode_coding_utf_16): Don't detect BOM here.
22538 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
22539 is NOT utf_16_without_bom.
22540 (setup_coding_system): For a coding system of type utf-16, check
22541 if the attribute :endian is Qbig or not (not nil or not), and set
22542 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
22543 (detect_coding): If coding type is utf-16 and BOM detection is
22544 required, detect it.
22545 (Fdefine_coding_system_internal): For a coding system of type
22546 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
22547
22548 2008-02-01 Kenichi Handa <handa@m17n.org>
22549
22550 * coding.c (coding_set_source): Fix for the case that the current
22551 buffer is different from coding->src_object.
22552 (decode_coding_object): Don't use the conversion work buffer if
22553 DST_OBJECT is a buffer.
22554
22555 2008-02-01 Dave Love <fx@gnu.org>
22556
22557 * lread.c (read_emacs_mule_char) [len==2]: Index
22558 emacs_mule_charset correctly.
22559
22560 2008-02-01 Dave Love <fx@gnu.org>
22561
22562 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
22563 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
22564 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
22565 treated specially.)
22566 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
22567 (detected_mask): Remove Big5 bits.
22568
22569 2008-02-01 Kenichi Handa <handa@m17n.org>
22570
22571 The following changes are to make the font rescaling facility
22572 compatible with Emacs 21.
22573
22574 * xfaces.c (Vface_font_rescale_alist): Rename from
22575 Vface_resizing_fonts.
22576 (struct font_name): Rename member resizing_ratio to rescale_ratio.
22577 (font_rescale_ratio): Rename from font_resizing_ratio.
22578 (split_font_name): Set font->rescale_ratio.
22579 (better_font_p): Pay attention to font->rescale_ratio.
22580 (build_scalable_font_name): Likewise. Change RESX, and RESY
22581 fields.
22582 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
22583
22584 2008-02-01 Kenichi Handa <handa@m17n.org>
22585
22586 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
22587 (Qutf_16_le): Remove these variables.
22588 (syms_of_coding): Don't DEFSYM them.
22589 (decode_coding_utf_16): Fix handling of BOM.
22590 (encode_coding_utf_16): Fix handling of BOM.
22591
22592 2008-02-01 Kenichi Handa <handa@m17n.org>
22593
22594 * fileio.c (Finsert_file_contents): On replacing, before decoding
22595 the file into the work buffer, set point of the work buffer to the end.
22596
22597 2008-02-01 Dave Love <fx@gnu.org>
22598
22599 * coding.c (Fcheck_coding_systems_region): Fix type errors.
22600
22601 2008-02-01 Dave Love <fx@gnu.org>
22602
22603 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
22604 and fix C types.
22605
22606 2008-02-01 Kenichi Handa <handa@m17n.org>
22607
22608 * xdisp.c (SKIP_GLYPHS): New macro.
22609 (set_cursor_from_row): Pay attention to string display properties.
22610
22611 * category.c (copy_category_entry): Fix for the case that RANGE
22612 is an integer.
22613
22614 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
22615
22616 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
22617
22618 2008-02-01 Kenichi Handa <handa@m17n.org>
22619
22620 * charset.c (Fcharset_id_internal): New function.
22621 (syms_of_charset): Defsubr it.
22622
22623 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
22624 with the last arg charset_list acquired from coding.
22625 (Fdefine_coding_system_internal): For ccl-based coding system, fix
22626 the attribute coding_attr_ccl_valids.
22627
22628 * coding.h (enum define_coding_ccl_arg_index): Set the first
22629 member coding_arg_ccl_decoder to coding_arg_max.
22630
22631 * ccl.h (ccl_driver): Adjust prototype.
22632
22633 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
22634 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
22635 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
22636 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
22637 last arg Qnil.
22638
22639 2008-02-01 Kenichi Handa <handa@m17n.org>
22640
22641 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
22642 call encode_char.
22643
22644 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
22645
22646 2008-02-01 Dave Love <fx@gnu.org>
22647
22648 * composite.c (syms_of_composite): Make composition_hash_table weak.
22649
22650 2008-02-01 Kenichi Handa <handa@m17n.org>
22651
22652 * dispextern.h (check_face_attributes, generate_ascii_font_name)
22653 (font_name_registry): Don't extern them.
22654 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
22655
22656 * fontset.h (Qfontset): Don't extern it.
22657 (new_fontset_from_font_name): Extern it.
22658
22659 * fontset.c: Give 8 extra slots to fontset objects.
22660 (Qfontset_info): New variable.
22661 (syms_of_fontset): Defsym it.
22662 (FONTSET_FALLBACK): New macro.
22663 (fontset_face): Try also the default fontset.
22664 (make_fontset): Realize a fallback fontset from the default fontset.
22665 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
22666 using split_font_name_into_vector and build_font_name_from_vector.
22667 (Fset_fontset_font): Access the elements of font_spec by enum
22668 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
22669 name by using split_font_name_into_vector.
22670 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
22671 generate a proper font name from the fontset name. Update
22672 Vfontset_alias_alist.
22673 (n_auto_fontsets): New variable.
22674 (new_fontset_from_font_name): New function.
22675 (Ffont_info): Store the information about fonts generated from the
22676 default fontset in the first extra slot of the returned char-table.
22677
22678 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
22679 (font_name_registry): Delete function.
22680 (split_font_name_into_vector): New function.
22681 (build_font_name_from_vector): New function.
22682 (font_list): The argument REGISTRY is now a list of registry names.
22683 (choose_face_font): If we are choosing an ASCII font, and ATTRS
22684 specifies an explicit font name, return the name as is. Make a
22685 list of registy names.
22686
22687 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
22688 of x_new_fontset.
22689 (Fx_create_frame): Don't call x_new_fontset here. Just use
22690 x_list_fonts to check the existence of fonts.
22691
22692 * xterm.h (x_new_fontset): Adjust prototype.
22693
22694 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
22695 string. Use new_fontset_from_font_name to create a fontset from a
22696 font name.
22697
22698 2008-02-01 Kenichi Handa <handa@m17n.org>
22699
22700 * syntax.c (Vfind_word_boundary_function_table): New name for
22701 Vnext_word_boundary_function_table.
22702 (find-word-boundary-function-table): New name for
22703 next-word-boundary-function-table.
22704
22705 2008-02-01 Dave Love <fx@gnu.org>
22706
22707 * Makefile.in: Fix some dependencies.
22708
22709 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
22710 set it to nil before returning.
22711
22712 * composite.c (update_compositions): Fix type error.
22713
22714 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
22715
22716 2008-02-01 Kenichi Handa <handa@m17n.org>
22717
22718 * xterm.c (x_new_font): Optimize for the case that the font is
22719 already set for the frame.
22720
22721 2008-02-01 Kenichi Handa <handa@m17n.org>
22722
22723 * chartab.c (char_table_ascii): Check if the char table contents
22724 is sub-char-table or not.
22725 (char_table_set, char_table_set_range): Fix argument to
22726 char_table_ascii.
22727
22728 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
22729 (detect_coding_utf_8, detect_coding_utf_16)
22730 (detect_coding_emacs_mule, detect_coding_iso_2022)
22731 (detect_coding_sjis, detect_coding_big5)
22732 (detect_coding_ccl, detect_coding_charset): Change argument MASK
22733 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
22734 sequence is valid in this coding system. Change callers.
22735 (MAX_ANNOTATION_LENGTH): New macro.
22736 (ADD_ANNOTATION_DATA): New macro.
22737 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
22738 ADD_ANNOTATION_DATA. Change the format of annotation data.
22739 (ADD_CHARSET_DATA): New macro.
22740 (emacs_mule_char): New argument ID. Change callers.
22741 (decode_coding_emacs_mule, decode_coding_iso_2022)
22742 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
22743 Produce charset annotation data in coding->charbuf.
22744 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
22745 to charset annotation data in coding->charbuf.
22746 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
22747 coding->common_flags if the coding system is iso-2022 based and
22748 uses designation.
22749 (produce_composition): Adjust for the new annotation data format.
22750 (produce_charset): New function.
22751 (produce_annotation): Handle charset annotation.
22752 (handle_composition_annotation, handle_charset_annotation): New
22753 functions.
22754 (consume_chars): Handle charset annotation. Utilize the above two
22755 functions.
22756 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
22757 buffer, get the deleted text as a string and set
22758 coding->src_object to that string.
22759 (detect_coding, detect_coding_system): Use the new struct
22760 coding_detection_info.
22761
22762 * coding.h (struct coding_detection_info): New structure.
22763 (struct coding_system): Adjust prototype of the member `detector'.
22764 (CODING_ANNOTATE_CHARSET_MASK): New macro.
22765
22766 2008-02-01 Kenichi Handa <handa@m17n.org>
22767
22768 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
22769
22770 2008-02-01 Dave Love <fx@gnu.org>
22771
22772 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
22773 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
22774 to new local and nullify apropos_accumulate before returning.
22775 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
22776
22777 2008-02-01 Kenichi Handa <handa@m17n.org>
22778
22779 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
22780 correctly.
22781
22782 2008-02-01 Dave Love <fx@gnu.org>
22783
22784 * fns.c (Flanginfo): Call synchronize_system_time_locale.
22785
22786 2008-02-01 Kenichi Handa <handa@m17n.org>
22787
22788 The following changes are to make character composition happen
22789 automatically on displaying.
22790
22791 * Makefile.in (lisp, shortlisp): Add composite.elc.
22792
22793 * composite.h (Qauto_composed, Vauto_composition_function)
22794 (Qauto_composition_function): Extern them.
22795
22796 * composite.c (Vcomposition_function_table)
22797 (Qcomposition_function_table): Delete variables.
22798 (Qauto_composed, Vauto_composition_function)
22799 (Qauto_composition_function): New variables.
22800 (run_composition_function): Don't call
22801 compose-chars-after-function.
22802 (update_compositions): Clear `auto-composed' text property.
22803 (compose_chars_in_text): Delete this function.
22804 (syms_of_composite): Staticpro Qauto_composed and
22805 Qauto_composition_function. Declare Vauto_composition_function as
22806 a Lisp variable.
22807
22808 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
22809
22810 * xdisp.c (it_props): Add an entry for Qauto_composed.
22811 (handle_auto_composed_prop): New function.
22812
22813 * xselect.c (selection_data_to_lisp_data): Don't call
22814 compose_chars_in_text.
22815
22816 2008-02-01 Dave Love <fx@gnu.org>
22817
22818 * keyboard.c (read_char): Modify checking around use of
22819 Vkeyboard_translate_table.
22820
22821 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
22822 and fix C types.
22823
22824 2008-02-01 Kenichi Handa <handa@m17n.org>
22825
22826 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
22827 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
22828 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
22829 the case that the last byte is '\r' correctly.
22830 (decode_coding): Flush out the unprocessed data correctly.
22831 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
22832
22833 2008-02-01 Dave Love <fx@gnu.org>
22834
22835 * xterm.c (XTread_socket): Fix changes for defined keysyms.
22836 Add XK_ISO... case.
22837 (xaw_scroll_callback): Revert last change.
22838
22839 2008-02-01 Kenichi Handa <handa@m17n.org>
22840
22841 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
22842
22843 2008-02-01 Kenichi Handa <handa@m17n.org>
22844
22845 * xfaces.c (Vface_resizing_fonts): New variable.
22846 (struct font_name): New member `resizing_ratio'.
22847 (font_resizing_ratio): New function.
22848 (split_font_name): Set font->resizing_ratio.
22849 (better_font_p): Pay attention to font->resizing_ratio.
22850 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
22851 RESX, and RESY fields.
22852 (try_alternative_families): Try scalable fonts if
22853 Vscalable_fonts_allowed is not Qt.
22854 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
22855
22856 2008-02-01 Dave Love <fx@gnu.org>
22857
22858 * xterm.c (xaw_scroll_callback): Cast correctly.
22859
22860 2008-02-01 Dave Love <fx@gnu.org>
22861
22862 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
22863 (lispy_kana_keys): Comment out.
22864 (make_lispy_event) [XK_kana_A]: Comment out.
22865
22866 * xterm.c (xaw_scroll_callback): Cast call_data.
22867 (XTread_socket): Deal with ASCII keysyms.
22868 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
22869
22870 2008-02-01 Dave Love <fx@gnu.org>
22871
22872 * xterm.c (Vx_keysym_table): New.
22873 (syms_of_xterm): Initialize it.
22874 (XTread_socket): Use it.
22875 From head: Eliminate incorrect optimization that tried to avoid
22876 decoding the output of X*LookupString.
22877 (x_get_font_repertory): Delete charset declaration.
22878
22879 2008-02-01 Kenichi Handa <handa@m17n.org>
22880
22881 * coding.c (detect_coding_charset): If only ASCII bytes are found,
22882 return 0.
22883 (Fdefine_coding_system_internal): Setup
22884 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
22885
22886 2008-02-01 Dave Love <fx@gnu.org>
22887
22888 * coding.c (Fcheck_coding_system): Doc fix.
22889
22890 * editfns.c (Finsert_byte): Return a proper value.
22891
22892 2008-02-01 Kenichi Handa <handa@m17n.org>
22893
22894 * coding.c (decode_coding): Fix args to translate_chars. Pay
22895 attention to Vstandard_translation_table_for_decode.
22896 (encode_coding): Fix args to translate_chars. Pay attention to
22897 Vstandard_translation_table_for_encode.
22898
22899 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
22900 SINGLE_BYTE_CHAR_P.
22901
22902 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
22903 not by SINGLE_BYTE_CHAR_P.
22904
22905 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
22906 SINGLE_BYTE_CHAR_P.
22907
22908 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
22909 SINGLE_BYTE_CHAR_P.
22910
22911 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
22912 by SINGLE_BYTE_CHAR_P.
22913
22914 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
22915 SINGLE_BYTE_CHAR_P.
22916
22917 2008-02-01 Dave Love <fx@gnu.org>
22918
22919 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
22920
22921 2008-02-01 Dave Love <fx@gnu.org>
22922
22923 * fns.c (Flanginfo): Fix typo.
22924
22925 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
22926
22927 2008-02-01 Kenichi Handa <handa@m17n.org>
22928
22929 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
22930 (detect_coding_emacs_mule, detect_coding_iso_2022)
22931 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
22932 incomplete byte sequence. Don't update *mask when correctly detected.
22933 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
22934 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
22935 (detect_coding, detect_coding_system): Adjust for the changes above.
22936
22937 2008-02-01 Kenichi Handa <handa@m17n.org>
22938
22939 * character.c (char_string): Rename from
22940 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
22941 (string_char): Rename from string_char.
22942
22943 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
22944 if C is greater than MAX_3_BYTE_CHAR.
22945 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
22946 string_char instead of string_char_with_unification.
22947
22948 2008-02-01 Dave Love <fx@gnu.org>
22949
22950 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
22951
22952 2008-02-01 Kenichi Handa <handa@m17n.org>
22953
22954 * keymap.c (push_key_description): Pay attention to force_multibyte.
22955
22956 * regex.c (re_search_2): Fix for the case of unibyte buffer.
22957
22958 2008-02-01 Dave Love <fx@gnu.org>
22959
22960 * charset.c (define_charset_internal): Rename `supprementary'.
22961
22962 * Makefile.in (lisp, shortlisp): Remove latin-N.
22963
22964 2008-02-01 Dave Love <fx@gnu.org>
22965
22966 * xfns.c (x_window, x_window): Use use_xim.
22967
22968 * xterm.c (use_xim): Initialize.
22969 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
22970 (x_term_init): Maybe set use_xim.
22971
22972 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
22973
22974 2008-02-01 Kenichi Handa <handa@m17n.org>
22975
22976 * search.c (search_buffer): Fix case-fold-search of multibyte
22977 characters.
22978 (boyer_moore): Rename the last argument to char_high_bits.
22979
22980 2008-02-01 Kenichi Handa <handa@m17n.org>
22981
22982 * xdisp.c (display_string): Fix for the case of zero width glyph.
22983
22984 * xfns.c (x_set_font): Change the error message of the case that
22985 x_new_fontset returns Qt.
22986
22987 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
22988 (Finternal_set_lisp_face_attribute): Use signal_error for the
22989 error of invalid fontset.
22990
22991 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
22992 fontset, return Qt.
22993
22994 2008-02-01 Dave Love <fx@gnu.org>
22995
22996 * unexelf.c (unexec): Make .got handling not SGI-specific.
22997
22998 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
22999
23000 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
23001
23002 * keyboard.c (read_key_sequence): Fix type error.
23003
23004 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
23005 type error.
23006
23007 * fontset.c (fontset_add): Return Lisp_Object.
23008
23009 2008-02-01 Dave Love <fx@gnu.org>
23010
23011 * charset.h (charset_ordered_list_tick): Declare extern.
23012
23013 2008-02-01 Kenichi Handa <handa@m17n.org>
23014
23015 The following changes (and some of 2008-02-01 changes of mine) are
23016 for handling syntax, category, and case conversion for unibyte
23017 characters by converting them to multibyte on the fly. With these
23018 changes, we don't have to setup syntax and case tables for unibyte
23019 characters in each language environment.
23020
23021 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
23022 multibyte if necessary.
23023
23024 * bytecode.c (Fbyte_code): Likewise.
23025
23026 * character.h (LEADING_CODE_LATIN_1_MIN)
23027 (LEADING_CODE_LATIN_1_MAX): New macros.
23028 (unibyte_to_multibyte_table): Extern it.
23029 (unibyte_char_to_multibyte): New macro.
23030 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
23031 (CHAR_LEADING_CODE): New macro.
23032 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
23033
23034 * character.c (unibyte_to_multibyte_table): New variable.
23035 (unibyte_char_to_multibyte): Move to character.h and define as macro.
23036 (multibyte_char_to_unibyte): If C is an eight-bit character,
23037 convert it to the corresponding byte value.
23038
23039 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
23040 not 1, signals an error. Update the elements of
23041 unibyte_to_multibyte_table.
23042 (init_charset_once): Initialize unibyte_to_multibyte_table.
23043 (syms_of_charset): Define the charset `iso-8859-1'.
23044
23045 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
23046 as is without converting it to unibyte. In a unibyte buffer,
23047 convert C to multibyte before checking the syntax.
23048
23049 * lisp.h (unibyte_char_to_multibyte): Delete extern.
23050
23051 * minibuf.c (Fminibuffer_complete_word): Use the macro
23052 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
23053
23054 * regex.h (struct re_pattern_buffer): New member target_multibyte.
23055
23056 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
23057 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
23058 that is zero, convert an eight-bit char to multibyte.
23059 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
23060 non-emacs case.
23061 (PATFETCH): Convert an eight-bit char to multibyte.
23062 (HANDLE_UNIBYTE_RANGE): New macro.
23063 (regex_compile): Setup the compiled pattern for multibyte chars
23064 even if the given regex string is unibyte. Use PATFETCH_RAW
23065 instead of PATFETCH in many places. To handle `charset'
23066 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
23067 only for ASCII chars.
23068 (analyse_first) <exactn>: Simplify because the compiled pattern
23069 is multibyte.
23070 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
23071 <charset>: Use CHAR_LEADING_CODE to get leading codes.
23072 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
23073 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
23074 multibyte always 1.
23075 (re_search_2): In emacs, set the locale variable multibyte to 1,
23076 otherwise to 0. New local variable target_multibyte. Check it
23077 to decide the multibyteness of STR1 and STR2. If
23078 target_multibyte is zero, convert unibyte chars to multibyte
23079 before translating and checking fastmap.
23080 (TARGET_CHAR_AND_LENGTH): New macro.
23081 (re_match_2_internal): In emacs, set the locale variable multibyte
23082 to 1, otherwise to 0. New local variable target_multibyte. Check
23083 it to decide the multibyteness of STR1 and STR2. Use
23084 TARGET_CHAR_AND_LENGTH to fetch a character from D.
23085 <charset, charset_not>: If multibyte is nonzero, check fastmap
23086 only for ASCII chars. Call bcmp_translate with
23087 target_multibyte, not with multibyte.
23088 <begline>: Declare the local variable C as `unsigned'.
23089 (bcmp_translate): Change the last arg name to target_multibyte.
23090
23091 * search.c (compile_pattern_1): Don't adjust the multibyteness of
23092 the regexp pattern and the matching target. Set cp->buf.multibyte
23093 to the multibyteness of the regexp pattern. Set
23094 cp->but.target_multibyte to the multibyteness of the matching target.
23095 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
23096 FETCH_STRING_CHAR_ADVANCE.
23097 (Freplace_match): Convert unibyte chars to multibyte.
23098
23099 * syntax.c (char_quoted, back_comment, scan_words)
23100 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
23101 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
23102 unibyte chars to multibyte.
23103 (skip_chars): Delete the arg syntaxp, and move the code for
23104 handling syntaxes to skip_syntaxes. Change callers.
23105 Fix the case that the multibyteness of STRING and the current
23106 buffer doesn't match.
23107 (skip_syntaxes): New function.
23108 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
23109 SINGLE_BYTE_CHAR_P.
23110
23111 2008-02-01 Kenichi Handa <handa@m17n.org>
23112
23113 * xfaces.c (QCfontset): New variable.
23114 (LFACE_FONTSET): New macro.
23115 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
23116 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
23117 (Finternal_set_lisp_face_attribute)
23118 (Finternal_get_lisp_face_attribute): Handle QCfontset.
23119 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
23120 check also LFACE_FONTSET_INDEX.
23121 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
23122 attrs[LFACE_FONT_INDEX].
23123 (syms_of_xfaces): Intern and staticpro QCfontset.
23124
23125 * dispextern.h (enum lface_attribute_index): New member
23126 LFACE_FONTSET_INDEX.
23127
23128 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
23129
23130 2008-02-01 Kenichi Handa <handa@m17n.org>
23131
23132 * coding.c (coding_set_destination): Fix coding->destination for
23133 the case converting a region.
23134 (encode_coding_utf_8): Encode eight-bit chars as single byte.
23135 (encode_coding_object): Fix coding->dst_pos and
23136 coding->dst_pos_byte for the case converting a region.
23137
23138 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
23139
23140 * character.h (BYTE8_STRING): New macro.
23141
23142 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
23143
23144 2008-02-01 Kenichi Handa <handa@m17n.org>
23145
23146 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
23147 characters by octal form.
23148
23149 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
23150
23151 * buffer.h (_fetch_multibyte_char_len): Delete extern.
23152 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
23153 _fetch_multibyte_char_len.
23154 (FETCH_CHAR_AS_MULTIBYTE): New macro.
23155
23156 * casetab.c (set_canon, set_identity, shuffle): Simplify.
23157
23158 * casefiddle.c (casify_object): Simplify. Handle the case that
23159 the case conversion change the byte length.
23160 (casify_region): Likewise.
23161
23162 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
23163
23164 * character.c (_fetch_multibyte_char_len): Delete this variable.
23165 (syms_of_character): Setup Vprintable_chars.
23166
23167 * editfns.c (Fchar_equal): Fix for the unibyte case.
23168 (Finsert_byte): New function.
23169 (syms_of_editfns): Defsubr it.
23170
23171 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
23172 of direct code 0x3ffff.
23173
23174 * search.c (Freplace_match): Fix for the unibyte case.
23175
23176 2008-02-01 Kenichi Handa <handa@m17n.org>
23177
23178 * lread.c (safe_to_load_p): Fix the logic.
23179
23180 * syntax.c (scan_words): Don't treat characters belonging to
23181 different scripts as constituting a word.
23182
23183 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
23184
23185 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
23186
23187 * emacs.c (main): In the case of --unibyte, instead of aborting on
23188 finding non-empty buffer, make it unibyte.
23189
23190 2008-02-01 Kenichi Handa <handa@m17n.org>
23191
23192 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
23193 to create a fontset.
23194
23195 2008-02-01 Dave Love <fx@gnu.org>
23196
23197 * character.c (Funibyte_char_to_multibyte): Doc fix.
23198
23199 * xfns.c [HAVE_STDLIB_H]: Fix last change.
23200
23201 2008-02-01 Kenichi Handa <handa@m17n.org>
23202
23203 * fontset.c (fontset_add): Make the type `int'.
23204 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
23205
23206 * character.c (unibyte_char_to_multibyte)
23207 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
23208 charset_unibyte, not charset_primary.
23209
23210 * charset.h (charset_unibyte): Extern it instead of charset_primary.
23211
23212 * charset.c (charset_unibyte): Rename from charset_primary.
23213 (Funibyte_charset): Rename from Fprimary_charset.
23214 (Fset_unibyte_charset): Rename from Fset_primary_charset.
23215 (syms_of_charset): Adjust for the above changes.
23216
23217 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
23218 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
23219 it->multibyte_p is zero.
23220
23221 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
23222 Delete extern.
23223
23224 2008-02-01 Kenichi Handa <handa@m17n.org>
23225
23226 * coding.c (Fdefine_coding_system_internal): Fix category setting
23227 for a coding system of type iso-2022.
23228
23229 2008-02-01 Kenichi Handa <handa@m17n.org>
23230
23231 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
23232
23233 2008-02-01 Kenichi Handa <handa@m17n.org>
23234
23235 * syntax.c (Vnext_word_boundary_function_table): New variable.
23236 (next-word-boundary-function-table): Declare it as a Lisp variable
23237 in syms_of_syntax.
23238 (scan_words): Call functions in Vnext_word_boundary_function_table
23239 if any.
23240
23241 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
23242
23243 * fontset.c (fs_load_font): If fontp->charset is not negative,
23244 return fontp without setting its members.
23245
23246 2008-02-01 Dave Love <fx@gnu.org>
23247
23248 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
23249
23250 * m/sparc.h (HAVE_ALLOCA): Delete.
23251
23252 * s/irix6-5.h: Don't include strings.h.
23253 (bcopy, bzero, bcmp): Don't undef.
23254
23255 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
23256
23257 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
23258 (TIOCSIGSEND): Don't test IRIX6.
23259 (bcopy, bzero, bcmp): Define conditionally.
23260
23261 2008-02-01 Kenichi Handa <handa@m17n.org>
23262
23263 * buffer.c (Qas, Qmake, Qto): New variables.
23264 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
23265 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
23266
23267 * callproc.c (Fcall_process): Don't call insert_1_both directly if
23268 we are inserting a process output into a multibyte buffer.
23269
23270 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
23271 multibyte_char_to_unibyte.
23272
23273 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
23274 by the primary charset, make it eight-bit char.
23275 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
23276
23277 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
23278 (charset_8_bit__control, charset_8_bit_graphic)
23279 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
23280 (define_charset_internal): New function.
23281 (syms_of_charset): Call define_charset_internal for pre-defined
23282 charsets.
23283
23284 * charset.h (charset_8_bit): Extern it.
23285
23286 * coding.c (make_conversion_work_buffer): Adjust for the change
23287 of Fset_buffer_multibyte.
23288 (encode_coding_raw_text): Increment p0 in the loop.
23289
23290 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
23291
23292 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
23293 for the change of Fset_buffer_multibyte.
23294
23295 * fns.c (Fstring_to_multibyte): New function.
23296 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
23297
23298 2008-02-01 Dave Love <fx@gnu.org>
23299
23300 * xfns.c (x_put_x_image): Declare args.
23301
23302 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
23303 (try_font_list): Declare an arg.
23304
23305 * xdisp.c (message2_nolog, set_message): Declare an arg.
23306
23307 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
23308
23309 * syntax.c (scan_sexps_forward): Declare an arg.
23310
23311 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
23312 Declare an arg.
23313
23314 * lisp.h (Fnew_fontset): Declare.
23315
23316 * keymap.c (push_key_description): Call CHARACTERP correctly.
23317
23318 * fontset.c (fontset_add): Declare args. Call make_number correctly.
23319 (face_for_char): Delete unused vars.
23320 (Fset_fontset_font): Doc fix. Delete unused vars.
23321
23322 * doc.c (Fsubstitute_command_keys): Delete unused vars.
23323
23324 * composite.c (update_compositions): Declare arg.
23325
23326 * cm.c (calccost, cmgoto): Declare args.
23327
23328 * charset.c: Remove `emacs' conditional. Doc fixes.
23329 (map_char_table_for_charset): Declare.
23330
23331 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
23332
23333 * ccl.c: Remove `emacs' conditional.
23334
23335 2008-02-01 Kenichi Handa <handa@m17n.org>
23336
23337 The following changes are to allow specifying multiple font
23338 patterns for a character range (specified by script or charset).
23339
23340 * Makefile.in (abbrev.o): Depend on syntax.h.
23341 (xfaces.o): Depend on charset.h.
23342
23343 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
23344 SINGLE_BYTE_CHAR_P.
23345
23346 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
23347
23348 * character.h (Vchar_script_table): Extern it.
23349
23350 * character.c (Vscript_alist): Delete.
23351 (Vchar_script_table, Qchar_script_table): New variable.
23352 (syms_of_character): Declare Vchar_script_table as a lisp variable
23353 and initialize it.
23354
23355 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
23356 have property char-table-extra-slots, make no extra slot.
23357
23358 * dispextern.h (struct face): Delete member `charset'.
23359 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
23360 SINGLE_BYTE_CHAR_P.
23361 (choose_face_font, lookup_non_ascii_face, font_name_registry):
23362 Add prototypes.
23363 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
23364 (generate_ascii_font_name): Rename from generate_ascii_font.
23365
23366 * fontset.h (get_font_repertory_func): New prototype.
23367 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
23368 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
23369
23370 * fontset.c (Qprepend, Qappend): New variables.
23371 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
23372 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
23373 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
23374 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
23375 (fontset_ref_and_range, fontset_add, reorder_font_vector)
23376 (load_font_get_repertory): New functions.
23377 (fontset_set): Delete.
23378 (fontset_face): New arg FACE. Return face ID, not face.
23379 Complete re-write to handle new fontset structure. Change caller.
23380 (free_face_fontset): Use ASET istead of AREF (X) = Y.
23381 (face_for_char): Don't call lookup_face.
23382 (make_fontset_for_ascii_face): New arg FACE.
23383 (fs_load_font): New arg CHARSET_ID. Don't check
23384 Vfont_encoding_alist here.
23385 (find_font_encoding): New function.
23386 (list_fontsets): Use STRINGP, not ! NILP.
23387 (accumulate_script_ranges): New function.
23388 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
23389 re-written to handle new fontset structure.
23390 (Ffontset_font): Return a copy of element.
23391 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
23392 docstring of font-encoding-alist.
23393
23394 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
23395 (Fset_fotset_font): Fix arguments to 5.
23396
23397 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
23398
23399 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
23400 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
23401 (highlight_trailing_whitespace): Adjust for the change of
23402 lookup_named_face.
23403
23404 * xfaces.c: Include charset.h.
23405 (load_face_font): Delete argument C. Change caller.
23406 (generate_ascii_font_name): Rename from generate_ascii_font.
23407 (font_name_registry): New function.
23408 (cache_face): Store ascii faces before non-ascii faces in buckets.
23409 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
23410 Lookup only ascii faces.
23411 (lookup_non_ascii_face): New function.
23412 (lookup_named_face): Delete argument C. Change caller.
23413 (lookup_derived_face): Delete argument C. Change caller.
23414 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
23415 a string, just call font_list with it.
23416 (choose_face_font): Delete arguments FACE and C. New arg
23417 FONT_SPEC. Change caller.
23418 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
23419 Change caller.
23420 (realize_non_ascii_face): New function.
23421 (realize_x_face): Call load_face_font here.
23422 (realize_tty_face): Delete argument C. Change caller.
23423 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
23424 get a face ID.
23425 (dump_realized_face): Don't print charset of FACE.
23426
23427 * xfns.c (x_set_font): Always call x_new_fontset and
23428 store_frame_parameter.
23429 (Fx_create_frame): Call x_new_fontset, not x_new_font.
23430 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
23431
23432 * xterm.h (x_get_font_repertory): Extern it.
23433
23434 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
23435 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
23436 it->multibyte_p is zero.
23437 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
23438 (x_new_fontset): If FONTSETNAME doesn't match any existing
23439 fontsets, create a new one.
23440 (x_get_font_repertory): New function.
23441
23442 2008-02-01 Kenichi Handa <handa@m17n.org>
23443
23444 * coding.c (Ffind_coding_systems_region_internal): Detect an
23445 ASCII only string correctly.
23446
23447 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
23448 version is 0.
23449
23450 2008-02-01 Kenichi Handa <handa@m17n.org>
23451
23452 * lread.c: Include "coding.h".
23453 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
23454 (load_each_byte, unread_char): New variables.
23455 (readchar_backlog): Delete.
23456 (readchar): Return a character unless load_each_byte is nonzero.
23457 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
23458 cons. If unread_char is not -1, simply return it.
23459 (unreadchar): Handle the case that readcharfun is
23460 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
23461 (read_multibyte): Delete.
23462 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
23463 (read_emacs_mule_char): New functions.
23464 (Fload): Even if the file doesn't have the extension ".elc", if
23465 safe_to_load_p returns a positive version number, assume that the
23466 file contains bytecompiled code. If the version is less than 22,
23467 load the file while decoding multibyte sequences by emacs-mule.
23468 (readevalloop): Don't use readchar_backlog.
23469 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
23470 (Fread_from_string): Pay attention to the case that STREAM is a cons.
23471 (read_escape): Delete the arg BYTEREP.
23472 (read1): Set load_each_byte to 1 temporarily while handling
23473 #@NUMBER. Don't call read_multibyte.
23474 (read_vector): Call Fread with a cons. If readcharfun is
23475 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
23476 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
23477 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
23478 and Qload_force_doc_strings.
23479
23480 2008-02-01 Kenichi Handa <handa@m17n.org>
23481
23482 * xdisp.c (face_before_or_after_it_pos): Call
23483 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
23484
23485 2008-02-01 Kenichi Handa <handa@m17n.org>
23486
23487 * character.h (TRAILING_CODE_P): New macro.
23488 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
23489 (string_char_with_unification): Fix prototype.
23490 (Vscript_alist): Extern it.
23491
23492 * character.c (Vscript_alist): New variable.
23493 (string_char_with_unification, str_as_unibyte)
23494 (string_escape_byte8): Add `const' to local variables.
23495 (syms_of_character): Declare script-alist as a Lisp variable.
23496
23497 * charset.h (Vcharset_ordered_list): Extern it.
23498 (charset_ordered_list_tick): Extern it.
23499 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
23500 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
23501 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
23502 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
23503 (Funify_charset): Adjust for the change of Funify_charset.
23504
23505 * charset.c (charset_ordered_list_tick): New variable.
23506 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
23507 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
23508 deunify instead of unify a charset.
23509 (string_xstring_p): Add `const' to local variables.
23510 (find_charsets_in_text): Add `const' to arguments and local variables.
23511 (encode_char): Adjust for the change of Funify_charset. Fix
23512 detecting of invalid code.
23513 (Fset_charset_priority): Increment charset_ordered_list_tick.
23514 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
23515 and TO_CODE.
23516
23517 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
23518 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
23519 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
23520 (decode_coding_ccl, consume_chars)
23521 (Ffind_coding_systems_region_internal)
23522 (Fcheck_coding_systems_region): Add `const' to local variables.
23523
23524 * print.c (print_object): Use octal form for printing the
23525 contents of a bool vector.
23526
23527 2008-02-01 Dave Love <fx@gnu.org>
23528
23529 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
23530 <version == 20>: Refuse to load.
23531
23532 2008-02-01 Dave Love <fx@gnu.org>
23533
23534 * fns.c: Move coding.h.
23535 (Qcodeset, Qdays, Qmonths): New.
23536 (concat): Use CHARACTERP instead of INTEGERP.
23537 (Flocale_codeset): Delete.
23538 (Flanginfo): New function.
23539 (syms_of_fns): Change accordingly.
23540
23541 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
23542
23543 2008-02-01 Dave Love <fx@gnu.org>
23544
23545 * casetab.c (init_casetab_once, init_casetab_once): Fix
23546 CHAR_TABLE_SET call.
23547
23548 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
23549
23550 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
23551
23552 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
23553 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
23554 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
23555
23556 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
23557
23558 * coding.c (ENCODE_DESIGNATION, decode_eol)
23559 (make_conversion_work_buffer, code_conversion_restore)
23560 (Fdefine_coding_system_internal): Convert Lisp types.
23561 (code_conversion_restore): Use EQ, not ==.
23562 (Fencode_coding_string): Fix code_convert_string call.
23563
23564 * coding.h (code_convert_region): Fix prototype.
23565
23566 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
23567
23568 * fontset.c (fontset_ref, fontset_set, fs_load_font)
23569 (Ffontset_info): Convert Lisp types.
23570
23571 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
23572
23573 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
23574
23575 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
23576
23577 * chartab.c: Include "...h", not <...h> in some cases.
23578
23579 * callproc.c (Fcall_process): Remove unused variables.
23580
23581 2008-02-01 Dave Love <fx@gnu.org>
23582
23583 * coding.c (Fset_coding_system_priority): Allow null arg list.
23584
23585 2008-02-01 Dave Love <fx@gnu.org>
23586
23587 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
23588 (Fself_insert_and_exit): Use CHARACTERP.
23589
23590 * callproc.c (Fcall_process): Remove unused vars.
23591
23592 * xterm.c (XTread_socket): Add extra dead keysyms.
23593
23594 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
23595
23596 * dispextern.h: Remove prototypes for redraw_frame,
23597 redraw_garbaged_frames.
23598
23599 * cmds.c (Fself_insert_command): Use CHARACTERP.
23600
23601 * chartab.c (make_sub_char_table): Remove unused var.
23602 (Fset_char_table_default, Fmap_char_table): Doc fix.
23603
23604 * keymap.c (access_keymap): Remove generic char code.
23605 (push_key_description): Use CHARACTERP.
23606
23607 2008-02-01 Dave Love <fx@gnu.org>
23608
23609 * charset.c: Doc fixes.
23610 (Funify_charset): Extra checking.
23611
23612 2008-02-01 Dave Love <fx@gnu.org>
23613
23614 * lread.c: Remove some unused variables.
23615 (safe_to_load_p): If safe, return the magic number version byte.
23616 (Fload): Maybe use load-with-code-conversion.
23617
23618 2008-02-01 Kenichi Handa <handa@m17n.org>
23619
23620 * category.c (Fmodify_category_entry): Don't modify the contents
23621 of category_set for characters out of the range. Avoid
23622 unnecessary modification.
23623
23624 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
23625 Vchar_unify_table. The default value of the table is now nil.
23626
23627 * character.c (syms_of_character): Setup Vchar_width_table for
23628 eight-bit-control and raw-byte chars.
23629
23630 * charset.h (enum define_charset_arg_index): Delete
23631 charset_arg_parents and add charset_arg_subset and
23632 charset_arg_superset.
23633 (enum charset_attr_index): Delete charset_parents and add
23634 charset_subset and charset_superset.
23635 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
23636 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
23637 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
23638 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
23639 (CHARSET_SUPERSET): New macros.
23640 (charset_work): Extern it.
23641 (ENCODE_CHAR): Use charset_work.
23642 (CHAR_CHARSET_P): Adjust for the change of encoder format.
23643 (map_charset_chars): Extern it.
23644
23645 * charset.c (load_charset_map): Set the default value of encoder
23646 and deunifier char-tables to nil.
23647 (map_charset_chars): Change argument. Change callers. Use
23648 map_char_table_for_charset instead of map_char_table.
23649 (Fmap_charset_chars): New optional args from_code and to_code.
23650 (Fdefine_charset_internal): Adjust for the change of
23651 `define-charset' (:parents -> :subset or :superset).
23652 (charset_work): New variable.
23653 (encode_char, syms_of_charset): Adjust for the change of
23654 Fdefine_charset_internal.
23655 (Ffind_charset_string): Setup the vector `charsets' correctly.
23656
23657 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
23658 the previous change.
23659 (char_table_ref_and_range): Adjust for the above change.
23660 (map_sub_char_table_for_charset): New function.
23661 (map_char_table_for_charset): New function.
23662
23663 * keymap.c (describe_vector): Handle a char-table directly here.
23664 (describe_char_table): Delete.
23665
23666 * lisp.h (map_charset_chars): Delete.
23667
23668 2008-02-01 Dave Love <fx@gnu.org>
23669
23670 * fns.c (count_combining): Comment out (unused).
23671 (Flocale_codeset): New.
23672 (syms_of_fns): Defsubr it.
23673
23674 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
23675 (size_t): Remove.
23676
23677 2008-02-01 Dave Love <fx@gnu.org>
23678
23679 * Makefile.in (chartab.o): Depend on charset.h.
23680
23681 2008-02-01 Kenichi Handa <handa@m17n.org>
23682
23683 * character.c (syms_of_character): Set the default value of
23684 Vprintable_chars to Qnil.
23685
23686 2008-02-01 Dave Love <fx@gnu.org>
23687
23688 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
23689
23690 2008-02-01 Kenichi Handa <handa@m17n.org>
23691
23692 * charset.c (load_charset_map): Handle the case that from < to
23693 correctly.
23694
23695 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
23696 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
23697 Pay attention to raw-8-bit chars.
23698
23699 2008-02-01 Kenichi Handa <handa@m17n.org>
23700
23701 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
23702 It is not bytecompiled now.
23703
23704 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
23705 (charset_jisx0208): New variables.
23706 (Fdefine_charset_internal): Setup them if appropriate.
23707 (init_charset_once): Initialize them to -1.
23708
23709 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
23710 (charset_jisx0208): Extern them.
23711
23712 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
23713 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
23714 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
23715 (setup_iso_safe_charsets): Fix arguments to Fassq.
23716 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
23717 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
23718 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
23719 (encode_coding_iso_2022): Change the 1st arg to
23720 ENCODE_ISO_CHARACTER to a variable.
23721
23722 2008-02-01 Kenichi Handa <handa@m17n.org>
23723
23724 * charset.h (enum define_charset_arg_index): New enums
23725 charset_arg_min_code and charset_arg_max_code.
23726 (struct charset): New member char_index_offset.
23727
23728 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
23729 Take charset->char_index_offset into account.
23730 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
23731 args[charset_arg_max_code]. Setup charset.char_index_offset.
23732 (syms_of_charset): Fix args to Fdefine_charset_internal.
23733
23734 2008-02-01 Dave Love <fx@gnu.org>
23735
23736 * coding.c (decode_coding_utf_8): Reject overlong sequences.
23737
23738 2008-02-01 Dave Love <fx@gnu.org>
23739
23740 * coding.c: Doc fixes.
23741 (Fcoding_system_aliases): Fix return value.
23742 (Qmac): Remove (duplicated) definition.
23743
23744 2008-02-01 Dave Love <fx@gnu.org>
23745
23746 * charset.c (Fcharset_priority_list, Fset_charset_priority):
23747 New functions.
23748
23749 * character.c (Fstring): Doc fix.
23750
23751 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
23752
23753 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
23754 (font-encoding-alist): Doc fix.
23755
23756 2008-02-01 Dave Love <fx@gnu.org>
23757
23758 * term.c (costs_set): Declare static, non-initialized for pcc.
23759 (encode_terminal_code): Remove unused var.
23760
23761 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
23762 for K&R.
23763
23764 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
23765
23766 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
23767 (suffixes): Move out of make_subsidiaries for K&R.
23768
23769 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
23770
23771 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
23772
23773 2008-02-01 Dave Love <fx@gnu.org>
23774
23775 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
23776
23777 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
23778
23779 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
23780
23781 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
23782
23783 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
23784
23785 2008-02-01 Kenichi Handa <handa@m17n.org>
23786
23787 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
23788 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
23789
23790 2008-02-01 Kenichi Handa <handa@m17n.org>
23791
23792 * coding.c (decode_coding_charset): Adjust for the change of
23793 Fdefine_coding_system_internal.
23794 (Fdefine_coding_system_internal): For a coding system of
23795 `charset' type, store a list of charset IDs in
23796 `charset_attr_charset_valids' element of coding attributes.
23797
23798 2008-02-01 Kenichi Handa <handa@m17n.org>
23799
23800 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
23801 (emacs_mule_char): New arg src. Delete arg `composition'. Change
23802 caller. Handle 2-byte and 3-byte charsets correctly.
23803 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
23804 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
23805 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
23806 (DECODE_EMACS_MULE_21_COMPOSITION): Call
23807 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
23808 sequence.
23809 (decode_coding_emacs_mule): Handle composition correctly. Rewind
23810 `src' and `consumed_chars' correctly before calling emacs_mule_char.
23811 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
23812 and alt&rule composition.
23813 (decode_coding_iso_2022): Handle composition correctly.
23814 (init_coding_once): Setup emacs_mule_bytes for private charsets.
23815
23816 * charset.c (Fdefine_charset_internal): Fix bug for the case of
23817 re-defining a charset. If the charset has :emacs-mule-id, setup
23818 emacs_mule_bytes.
23819 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
23820
23821 2008-02-01 Kenichi Handa <handa@m17n.org>
23822
23823 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
23824 (encode_coding_big5, encode_coding_charset): If coding requires safe
23825 encoding, produce a character specified by
23826 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
23827
23828 2008-02-01 Dave Love <fx@gnu.org>
23829
23830 * xterm.c (XSetIMValues): Declare.
23831
23832 * process.c: Conditionally include sys/wait.h, pty.h.
23833
23834 * print.c (print_object): Fix print format for 64-bit systems.
23835
23836 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
23837
23838 * buffer.c (emacs_strerror): Declare.
23839
23840 * fontset.c (Fclear_face_cache): Declare.
23841 (accumulate_font_info): Comment-out (unused).
23842 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
23843 variables.
23844
23845 * character.h (string_escape_byte8): Declare.
23846
23847 * charset.c (load_charset_map, load_charset_map_from_file): Remove
23848 unused vars.
23849 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
23850 (Fmap_charset_chars): Doc fix.
23851
23852 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
23853 (Fset_coding_system_priority, Fset_coding_system_priority)
23854 (Fdefine_coding_system_internal): Doc fix.
23855
23856 2008-02-01 Dave Love <fx@gnu.org>
23857
23858 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
23859
23860 2008-02-01 Kenichi Handa <handa@m17n.org>
23861
23862 * character.c (string_escape_byte8): Make multibyte string with
23863 correct size.
23864
23865 * charset.c (Fmake_char): Delete unnecessary code.
23866
23867 2008-02-01 Kenichi Handa <handa@m17n.org>
23868
23869 * xfns.c (x_encode_text): Allocate coding.destination here, and
23870 call encode_coding_object with dst_object Qnil.
23871
23872 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
23873 multibyte form correctly.
23874
23875 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
23876 against Vfont_encoding_alist.
23877
23878 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
23879 handling of charset list.
23880 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
23881 (decode_coding_object): Move point to coding->dst_pos before
23882 calling post-read-conversion function.
23883 (encode_coding_object): Give correct arguments to
23884 pre-write-conversion. Ignore the return value of
23885 pre-write-conversion function. Pay attention to the case that
23886 pre-write-conversion changes the current buffer. If dst_object is
23887 Qt, even if coding->src_bytes is zero, allocate at least one byte
23888 to coding->destination.
23889
23890 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
23891
23892 * charset.c (Fmake_char): Make it more backward compatible.
23893 (Fmap_charset_chars): Fix docstring.
23894
23895 2008-02-01 Dave Love <fx@gnu.org>
23896
23897 * coding.c: Doc fixes.
23898 (Fdefine_coding_system_alias): Use names, not symbols, in
23899 coding-system-alist.
23900
23901 2008-02-01 Kenichi Handa <handa@m17n.org>
23902
23903 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
23904 of calling free_realized_face.
23905
23906 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
23907
23908 * charset.c (read_hex): Don't treat SPC as a comment starter.
23909 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
23910 (Fdecode_char): Fix typo.
23911
23912 2008-02-01 Kenichi Handa <handa@m17n.org>
23913
23914 * charset.h (struct charset): New member `code_space_mask'.
23915
23916 * coding.c (coding_set_source): Delete the local variable beg_byte.
23917 (encode_coding_charset, Fdefine_coding_system_internal):
23918 Delete the local variable charset.
23919 (Fdefine_coding_system_internal): Setup
23920 attrs[coding_attr_charset_valids] correctly.
23921
23922 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
23923 member to check if CODE is valid or not.
23924 (Fdefine_charset_internal): Initialize `code_space_mask' member.
23925 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
23926 is within the range of charset->min_code and carset->max_code.
23927
23928 2008-02-01 Dave Love <fx@gnu.org>
23929
23930 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
23931
23932 * dispextern.h (generate_ascii_font): Fix return type.
23933
23934 * xfaces.c (generate_ascii_font): Fix arg declaration.
23935
23936 * coding.c (coding_inherit_eol_type)
23937 (Fset_terminal_coding_system_internal)
23938 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
23939
23940 2008-02-01 Kenichi Handa <handa@m17n.org>
23941
23942 * coding.c (decode_coding_charset, encode_coding_charset): Handle
23943 multiple charsets correctly.
23944
23945 2008-02-01 Kenichi Handa <handa@m17n.org>
23946
23947 * search.c (boyer_moore): Fix handling of multibyte character
23948 translation.
23949
23950 * xdisp.c (display_mode_element): When the variable `elt' is
23951 changed, update `this' and `lisp_string'.
23952
23953 2008-02-01 Kenichi Handa <handa@m17n.org>
23954
23955 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
23956
23957 * callproc.c (Fcall_process): Be sure to give the current buffer
23958 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
23959
23960 * charset.c (struct charset_map_entries): New struct.
23961 (load_charset_map): Rename from parse_charset_map. New args
23962 entries and n_entries. Change caller.
23963 (load_charset_map_from_file): Rename from load_charset_map.
23964 Change caller. New arg control_flag. Call load_charset_map at
23965 the tail.
23966 (load_charset_map_from_vector): New function.
23967 (Fdefine_charset_internal): Setup charset.compact_codes_p.
23968 (encode_char): If the charset is compact, change a character index
23969 to a code point.
23970
23971 * coding.c (coding_alloc_by_making_gap): Check the case that the
23972 source and destination are the same correctly.
23973 (decode_coding_raw_text): Set coding->consumed_char and
23974 coding->consumed to 0.
23975 (produce_chars): If coding->chars_at_source is nonzero, update
23976 coding->consumed_char and coding->consumed before calling
23977 alloc_destination.
23978 (Fdefine_coding_system_alias): Register ALIAS in
23979 Vcoding_system_alist.
23980 (syms_of_coding): Define `no-conversion' coding system at the tail.
23981
23982 * fileio.c (Finsert_file_contents): Set coding_system instead of
23983 val. If the current buffer is multibyte, always call
23984 decode_coding_gap.
23985
23986 * xfaces.c (try_font_list): Give higher priority to fontset's
23987 family than face's family.
23988
23989 2008-02-01 Kenichi Handa <handa@m17n.org>
23990
23991 * callproc.c (Fcall_process): Be sure to give the current buffer
23992 to decode_coding_c_string.
23993
23994 * xfaces.c (try_font_list): Give a family specified in a fontset
23995 higher priority than a family specified in a face.
23996
23997 2008-02-01 Kenichi Handa <handa@m17n.org>
23998
23999 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
24000 Fix arguments to insert_from_buffer.
24001
24002 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
24003
24004 2008-02-01 Kenichi Handa <handa@m17n.org>
24005
24006 * coding.c (produce_chars): Set the variable `multibytep' correctly.
24007 (decode_coding_gap): Set coding->dst_multibyte correctly.
24008
24009 2008-02-01 Kenichi Handa <handa@m17n.org>
24010
24011 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
24012 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
24013 (encode_coding_utf_16): Substitute coding->default_char for
24014 non-Unicode characters.
24015 (decode_coding): Don't call record_insert here.
24016 (setup_coding_system): Initialize `surrogate' of
24017 coding->spec.utf_16 to 0.
24018 (EMIT_ONE_BYTE): Fix for multibyte case.
24019
24020 * insdel.c (insert_from_gap): Call record_insert.
24021
24022 2008-02-01 Kenichi Handa <handa@m17n.org>
24023
24024 * casefiddle.c (casify_region): Fix multibyte case.
24025
24026 * character.c (c_string_width): Add return type `int'.
24027 (char_string_with_unification): Delete arg ADVANCED.
24028
24029 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
24030 (CHAR_STRING): Adjust for the change of char_string_with_unification.
24031 (CHAR_STRING_ADVANCE): Make it do-while statement.
24032
24033 * chartab.c (sub_char_table_set_range): Optimize for the case
24034 DEPTH == 3. Add workaround code for a GCC optimization bug.
24035
24036 * charset.c (parse_charset_map): Remove an unused variable.
24037
24038 * coding.c: Delete unused variables.
24039
24040 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
24041 earlier. If inserted is zero and the coding system doesn't
24042 require flushing, don't call decode_coding_gap.
24043
24044 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
24045
24046 2008-02-01 Kenichi Handa <handa@m17n.org>
24047
24048 The following changes are for using Unicode as an internal
24049 character model, and use UTF-8 format for buffer/string
24050 representation.
24051
24052 * .gdbinit (xchartable): Adjust for the change of char table structure.
24053 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
24054
24055 * Makefile.in (obj): Add character.o and chartab.o.
24056 (lisp, shortlisp): Remove utf-8.elc.
24057 (*.o): For many files, change dependency on charset.h to
24058 character.h, and add dependency on character.h.
24059 (character.o, chartab.o): New targets.
24060
24061 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
24062 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
24063 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
24064 of "charset.h".
24065
24066 * dired.c, filelock.c: Include "character.h".
24067
24068 * alloc.c: Include "character.h" instead of "charset.h".
24069 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
24070 (syms_of_alloc): Remove defsubr for Smake_char_table.
24071
24072 * buffer.c: Include "character.h" instead of "charset.h", don't
24073 include "coding.h".
24074 (Fset_buffer_multibyte): Adjust for UTF-8.
24075
24076 * buffer.h: EXFUN Fbuffer_live_p.
24077
24078 * callproc.c: Include "character.h" instead of "charset.h".
24079 (Fcall_process): Big change for the new code-conversion APIs.
24080
24081 * casetab.c: Include "character.h" instead of "charset.h".
24082 (set_canon, set_identity, shuffle): Adjust for the new
24083 map_char_table spec.
24084 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
24085 accessing the char table structure.
24086
24087 * chartab.c: New file that implements char table.
24088
24089 * category.c: Include "character.h".
24090 (copy_category_entry): New function.
24091 (copy_category_table): Call map_char_table and copy_category_entry.
24092 (Fmake_category_table): Initialize all top-level slots.
24093 (char_category_set): New function.
24094 (modify_lower_category_set): Delete.
24095 (Fmodify_category_entry): Call char_table_ref_and_range.
24096
24097 * category.h (CATEGORY_SET): Just call char_category_set.
24098
24099 * ccl.c: Include "character.h".
24100 (Qccl, Qcclp): New variables.
24101 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
24102 it's less than 256.
24103 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
24104 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
24105 and DST type.
24106 (ccl_driver): Change types of argument, adjust code accordingly.
24107 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
24108 ccl_driver.
24109 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
24110
24111 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
24112 New members src_multibyte, dst_multibyte, consumed, and produced.
24113 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
24114 (CODING_SPEC_CCL_PROGRAM): New macro.
24115 (ccl_driver): Update prototype.
24116 (Qccl, Qcclp, Fccl_program_p): Extern them.
24117 (CHECK_CCL_PROGRAM): New macro.
24118
24119 * character.c, character.h, chartab.c: New files.
24120
24121 * charset.c: Mostly re-written. Move character and multibyte sequence
24122 handling codes to character.c.
24123
24124 * charset.h: Mostly re-written. Move character and multibyte sequence
24125 handling codes to character.h.
24126
24127 * coding.c, coding.h: Mostly re-written.
24128
24129 * composite.c: Include "character.h" instead of "charset.h".
24130 (CHAR_WIDTH): Move to character.h.
24131 (HASH_KEY, HASH_VALUE): Delete.
24132
24133 * composite.h (enum composition_method): Change order of enumeration
24134 symbols.
24135
24136 * data.c: Include "character.h" instead of "charset.h".
24137 (Faref): Call CHAR_TABLE_REF for a char table.
24138 (Faset): Call CHAR_TABLE_SET for a char table.
24139
24140 * dispextern.h (free_realized_face, check_face_attribytes)
24141 (generate_ascii_font): Extern them.
24142 (free_realized_multibyte_face): Delete extern.
24143
24144 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
24145 table structure.
24146
24147 * editfns.c: Include "character.h" instead of "charset.h".
24148 (Fchar_to_string): Always call CHAR_STRING.
24149
24150 * emacs.c (main): Call init_charset_once, init_charset,
24151 syms_of_chartab, and syms_of_character.
24152
24153 * fileio.c: Include "character.h" instead of "charset.h".
24154 (Finsert_file_contents): Big change for the new code-conversion API.
24155 (choose_write_coding_system, Fwrite_region): Likewise.
24156 (build_annotations_2): Delete.
24157 (e_write): Big change for the new code-conversion API.
24158
24159 * fns.c: Include "character.h" instead of "charset.h".
24160 (copy_sub_char_table): Move to chartab.c.
24161 (Fcopy_sequence): Call copy_char_table for a char table.
24162 (concat): Delete codes calling count_multibyte.
24163 (string_char_to_byte, string_byte_to_char): Adjust for the new
24164 multibyte form.
24165 (internal_equal): Adjust for the change of char table structure.
24166 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
24167 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
24168 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
24169 (char_table_translate, optimize_sub_char_table)
24170 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
24171 chartab.c.
24172 (char_table_ref_and_index): Delete.
24173 (HASH_KEY, HASH_VALUE): Move to lisp.h.
24174 (Fmd5): Call preferred_coding_system instead of accessing
24175 Vcoding_category_list. Adjust for the new code-conversion API.
24176 (syms_of_fns): Move defsubr for char table related functions to
24177 chartab.c.
24178
24179 * fontset.c: Mostly re-written.
24180
24181 * fontset.h (struct font_info): Change type of the member encoding_type.
24182 (enum FONT_SPEC_INDEX): New enum.
24183 (fontset_font_pattern, fs_load_font): Update prototype.
24184 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
24185
24186 * indent.c: Include "character.h" instead of "charset.h".
24187 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
24188
24189 * insdel.c: Include "character.h" instead of "charset.h".
24190 (copy_text): Don't refer to Vnonascii_translation_table.
24191 (insert_from_gap): New function.
24192
24193 * keyboard.c: Include "character.h" instead of "charset.h".
24194 (command_loop_1): Never call direct_output_forward_char before
24195 a non-ASCII character.
24196 (read_char): If Vkeyboard_translate_table is a char table, always
24197 translate a character.
24198
24199 * keymap.c: Include "character.h".
24200 (store_in_keymap): Handle the case that IDX is a cons.
24201 (Fdefine_key): Handle the case that KEY is a cons and the car part
24202 is also a cons (range).
24203 (push_key_description): Adjust for the new character code.
24204 (describe_vector): Call describe_char_table for a char table.
24205 (describe_char_table): New function.
24206
24207 * keymap.h (describe_char_table): Extern it.
24208
24209 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
24210 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
24211 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
24212 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
24213 Delete.
24214 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
24215 structure.
24216 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
24217 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
24218 (CHARTAB_SIZE_BITS_3): New macros.
24219 (chartab_size): Extern it.
24220 (struct Lisp_Char_Table): Re-design.
24221 (struct Lisp_Sub_Char_Table): New structure.
24222 (HASH_KEY, HASH_VALUE): Move from fns.c.
24223 (CHARACTERBITS): Define as 22.
24224 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
24225 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
24226 (GC_SUB_CHAR_TABLE_P): New macro.
24227 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
24228 (code_convert_string_norecord): Deleted extern.
24229 (init_character_once, syms_of_character, init_charset)
24230 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
24231
24232 * lread.c: Include "character.h".
24233 (read_multibyte): New arg NBYTES.
24234 (read_escape): Change the meaning of returned *BYTEREP.
24235 (to_multibyte): Delete.
24236 (read1): Adjust the handling of char table and string.
24237
24238 * print.c: Include "character.h" instead of "charset.h".
24239 (print_string): Convert 8-bit raw bytes to octal form by
24240 string_escape_byte8.
24241 (print_object): Adjust for the new multibyte form. Print 8-bit
24242 raw bytes always in octal form. Handle sub char table correctly.
24243
24244 * process.c: Include "character.h" instead of "charset.h".
24245 (read_process_output, send_process): Adjust for the new
24246 code-conversion API.
24247
24248 * puresize.h (BASE_PURESIZE): Increase.
24249
24250 * regex.c: Include "character.h" instead of "charset.h".
24251 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
24252 (regex_compile): Accept a range whose starting and ending
24253 character have different leading bytes.
24254 (analyse_first): Adjust for the above change.
24255
24256 * search.c: Include "character.h" instead of "charset.h".
24257 (search_buffer, boyer_moore): Adjust for the new multibyte form.
24258 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
24259
24260 * syntax.c: Include "character.h" instead of "charset.h".
24261 (syntax_parent_lookup): Delete.
24262 (Fmodify_syntax_entry): Accept a cons as CHAR.
24263 (skip_chars): Adjust for the new multibyte form.
24264 (init_syntax_once): Call char_table_set_range instead of directly
24265 accessing the structure of a char table.
24266
24267 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
24268 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
24269 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
24270 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
24271
24272 * term.c: Include "buffer.h" and "character.h".
24273 (encode_terminal_code, write_glyphs): Adjust for the new
24274 code-conversion API.
24275 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
24276
24277 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
24278
24279 * xdisp.c: Include "character.h".
24280 (get_next_display_element): Adjust for the new multibyte form.
24281 (disp_char_vector): Adjust for the new char table structure.
24282 (decode_mode_spec_coding): Adjust for the new structure of
24283 coding system.
24284 (decode_mode_spec): Adjust for the new code-conversion API.
24285
24286 * xfaces.c: Include "character.h" instead of "charset.h".
24287 (load_face_font): Adjust for the change of choose_face_font and
24288 FS_LOAD_FONT.
24289 (generate_ascii_font): New function.
24290 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
24291 (set_font_frame_param): Adjust for the change of choose_face_font.
24292 (free_realized_face): Make it public.
24293 (free_realized_faces_for_fontset): Rename from
24294 free_realized_multibyte_face. Free also faces realized for ASCII.
24295 (choose_face_font): Change arguments. Adjust for the change of
24296 fontset_font_pattern and FS_LOAD_FONT.
24297
24298 * xfns.c: Include "character.h".
24299 (x_encode_text): Adjust for the new code-conversion API.
24300
24301 * xselect.c: Don't include "charset.h".
24302 (selection_data_to_lisp_data): Adjust for the new code conversion API.
24303
24304 * xterm.c: Include "character.h".
24305 (x_encode_char): New argument CHARSET. Change caller.
24306 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
24307 Call ENCODE_CHAR instead of SPLIT_CHAR.
24308 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
24309 CHAR_WIDTH instead of CHARSET_WIDTH.
24310 (XTread_socket): Adjust for the new code-conversion API.
24311 (x_new_font): Adjust for the change of FS_LOAD_FONT.
24312 (x_load_font): Adjust for the change of struct font.
24313
24314 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
24315
24316 * xfaces.c (face_at_buffer_position): Remove unused vars.
24317
24318 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24319
24320 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
24321 Fix overflow checking.
24322
24323 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24324
24325 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
24326 Cancel previous change.
24327
24328 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
24329
24330 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
24331 ccl->eight_bit_control. Fix check for buffer overflow.
24332 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
24333 (ccl_driver): Initialize extra_bytes to 0.
24334
24335 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
24336
24337 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
24338 return it ORed with ctrl_modifier.
24339
24340 2008-01-29 Miles Bader <miles@gnu.org>
24341
24342 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
24343
24344 2008-01-28 Jason Rumney <jasonr@gnu.org>
24345
24346 * w32.c (stat): Don't double check for networked drive.
24347
24348 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
24349
24350 * window.c (run_window_configuration_change_hook): New function.
24351 Code extracted from set_window_buffer. Set the selected frame.
24352 (set_window_buffer): Use it.
24353 * window.h (run_window_configuration_change_hook): Declare.
24354 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
24355
24356 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
24357
24358 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
24359
24360 * Makefile.in: Remove references to unused macros.
24361
24362 2008-01-26 Eli Zaretskii <eliz@gnu.org>
24363
24364 * w32.c (g_b_init_get_sid_sub_authority)
24365 (g_b_init_get_sid_sub_authority_count): New static variables.
24366 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
24367 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
24368 (init_user_info): Use them to retrieve uid and gid.
24369 Use 500/513, the Windows defaults, as Administrator's uid/gid.
24370 (fstat): Use pw_uid and pw_gid from the_passwd structure for
24371 st_uid and st_gid of the file.
24372
24373 2008-01-26 Jason Rumney <jasonr@gnu.org>
24374
24375 * w32.c (logon_network_drive): New function.
24376 (stat): Use it.
24377
24378 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
24379
24380 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
24381 invisible text covered with an ellipsis.
24382
24383 2008-01-25 Richard Stallman <rms@gnu.org>
24384
24385 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
24386 jump back to beginning. Move some other initializations after that.
24387 (Qwindow_text_change_functions, Vwindow_text_change_functions):
24388 New variables.
24389 (syms_of_xdisp): Init them.
24390
24391 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
24392
24393 * buffer.c (reset_buffer_local_variables):
24394 Implement `permanent-local-hook'.
24395 (Qpermanent_local_hook): New variable.
24396 (syms_of_buffer): Init and staticpro it.
24397
24398 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
24399
24400 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
24401
24402 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
24403
24404 * fns.c (Fclrhash): Return TABLE.
24405
24406 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24407
24408 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
24409 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
24410 is set even without positional changes.
24411 (x_scroll_bar_clear): Set bar->redraw_needed_p.
24412
24413 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
24414
24415 2008-01-23 Jason Rumney <jasonr@gnu.org>
24416
24417 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
24418
24419 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
24420 the unicode range available in MULE by locale-coding-system.
24421 Improve dbcs lead byte detection. Set event timestamp and modifiers
24422 earlier.
24423
24424 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24425
24426 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
24427 [MAC_OSX] (init_mac_osx_environment): Initialize it.
24428 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
24429 when used on child processes.
24430
24431 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
24432
24433 * dbusbind.c (Fdbus_method_return_internal): Rename from
24434 Fdbus_method_return.
24435 (Fdbus_unregister_object): Move to dbus.el.
24436 (Fdbus_call_method, Fdbus_method_return_internal)
24437 (Fdbus_send_signal): Improve debug messages.
24438
24439 2008-01-20 Martin Rudalics <rudalics@gmx.at>
24440
24441 * undo.c (undo_inhibit_record_point): New variable.
24442 (syms_of_undo): Initialize it.
24443 (record_point): Don't record point when undo_inhibit_record_point
24444 is set.
24445
24446 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
24447
24448 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
24449
24450 * xdisp.c (Qauto_hscroll_mode): New var.
24451 (syms_of_xdisp): Initialize it.
24452 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
24453 window's buffer.
24454 (hscroll_windows): Don't check automatic_hscrolling_p here.
24455
24456 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
24457 vscroll if we're setting window-buffer to the value it already has.
24458
24459 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
24460
24461 * m/intel386.h: Remove references to XENIX.
24462
24463 2008-01-17 Andreas Schwab <schwab@suse.de>
24464
24465 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
24466 instead of HAVE_X86_64_LIB64_DIR.
24467 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
24468
24469 2008-01-17 Glenn Morris <rgm@gnu.org>
24470
24471 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
24472 to HAVE_X86_64_LIB64_DIR.
24473
24474 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
24475
24476 * s/irix3-3.h:
24477 * s/irix4-0.h:
24478 * s/386-ix.h:
24479 * s/domain.h:
24480 * s/hpux9-x11r4.h:
24481 * s/hpux9shxr4.h: Remove files for systems no longer supported.
24482
24483 * sysdep.c: Remove code containing references to symbols defined
24484 by unsupported systems.
24485
24486 2008-01-16 Glenn Morris <rgm@gnu.org>
24487
24488 * coding.c (select-safe-coding-system-function): Doc fix.
24489
24490 2008-01-15 Glenn Morris <rgm@gnu.org>
24491
24492 * config.in: Revert 2008-01-13 change: this is a generated file.
24493
24494 2008-01-13 Tom Tromey <tromey@redhat.com>
24495
24496 * lisp.h: Fix typo.
24497
24498 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
24499
24500 * m/sequent-ptx.h:
24501 * m/sequent.h:
24502 * s/ptx.h:
24503 * s/ptx4-2.h:
24504 * s/ptx4.h: Remove files for systems no longer supported.
24505
24506 * callproc.c (Fcall_process): Fix previous change.
24507
24508 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
24509
24510 * unexsunos4.c: Remove file, system not supported anymore.
24511
24512 * m/mips.h:
24513 * m/intel386.h:
24514 * callproc.c:
24515 * config.in:
24516 * ecrt0.c:
24517 * emacs.c:
24518 * fileio.c:
24519 * frame.c:
24520 * getpagesize.h:
24521 * keyboard.c:
24522 * lread.c:
24523 * process.c:
24524 * puresize.h:
24525 * sysdep.c:
24526 * systty.h:
24527 * syswait.h:
24528 * unexec.c:
24529 * xdisp.c:
24530 * alloc.c: Remove code containing references to symbols defined by
24531 unsupported systems.
24532
24533 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
24534
24535 * coding.c (detect_coding_mask): Fix previous change.
24536
24537 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
24538
24539 * coding.c (detect_coding_iso2022): New arg
24540 latin_extra_code_state. Allow Latin extra codes only
24541 when *latin_extra_code_state is nonzero.
24542 (detect_coding_mask): If there is a NULL byte, detect the encoding
24543 as UTF-16 or binary. If Latin extra codes exist, detect the
24544 encoding as ISO-2022 only when there's no other proper encoding is
24545 found.
24546
24547 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24548
24549 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
24550 #ifdef MAC_OS.
24551
24552 2008-01-08 Richard Stallman <rms@gnu.org>
24553
24554 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
24555
24556 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
24557
24558 * keyboard.c (parse_menu_item): Don't enclose key bindings on
24559 menu bar in parentheses.
24560
24561 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
24562
24563 * m/7300.h:
24564 * m/acorn.h:
24565 * m/alliant-2800.h:
24566 * m/alliant.h:
24567 * m/alliant1.h:
24568 * m/alliant4.h:
24569 * m/altos.h:
24570 * m/amdahl.h:
24571 * m/apollo.h:
24572 * m/att3b.h:
24573 * m/aviion-intel.h:
24574 * m/aviion.h:
24575 * m/celerity.h:
24576 * m/clipper.h:
24577 * m/cnvrgnt.h:
24578 * m/convex.h:
24579 * m/cydra5.h:
24580 * m/delta88k.h:
24581 * m/dpx2.h:
24582 * m/dual.h:
24583 * m/elxsi.h:
24584 * m/f301.h:
24585 * m/gould-np1.h:
24586 * m/gould.h:
24587 * m/i860.h:
24588 * m/ibmps2-aix.h:
24589 * m/ibmrt-aix.h:
24590 * m/ibmrt.h:
24591 * m/irist.h:
24592 * m/is386.h:
24593 * m/isi-ov.h:
24594 * m/mega68.h:
24595 * m/mg1.h:
24596 * m/news-r6.h:
24597 * m/news-risc.h:
24598 * m/news.h:
24599 * m/nh3000.h:
24600 * m/nh4000.h:
24601 * m/ns16000.h:
24602 * m/ns32000.h:
24603 * m/nu.h:
24604 * m/orion.h:
24605 * m/orion105.h:
24606 * m/paragon.h:
24607 * m/pfa50.h:
24608 * m/plexus.h:
24609 * m/pyramid.h:
24610 * m/pyrmips.h:
24611 * m/sh3el.h:
24612 * m/sps7.h:
24613 * m/sr2k.h:
24614 * m/stride.h:
24615 * m/sun1.h:
24616 * m/sun2.h:
24617 * m/sun3-68881.h:
24618 * m/sun3-fpa.h:
24619 * m/sun3-soft.h:
24620 * m/sun3.h:
24621 * m/sun386.h:
24622 * m/symmetry.h:
24623 * m/tad68k.h:
24624 * m/tahoe.h:
24625 * m/targon31.h:
24626 * m/tek4300.h:
24627 * m/tekxd88.h:
24628 * m/tower32.h:
24629 * m/tower32v3.h:
24630 * m/ustation.h:
24631 * m/wicat.h:
24632 * m/xps100.h:
24633 * s/cxux.h:
24634 * s/cxux7.h:
24635 * s/dgux.h:
24636 * s/dgux4.h:
24637 * s/dgux5-4-3.h:
24638 * s/dgux5-4r2.h:
24639 * s/esix.h:
24640 * s/esix5r4.h:
24641 * s/hiuxmpp.h:
24642 * s/hiuxwe2.h:
24643 * s/iris3-5.h:
24644 * s/iris3-6.h:
24645 * s/isc2-2.h:
24646 * s/isc3-0.h:
24647 * s/isc4-0.h:
24648 * s/isc4-1.h:
24649 * s/newsos5.h:
24650 * s/newsos6.h:
24651 * s/osf1.h:
24652 * s/osf5-0.h:
24653 * s/riscix1-1.h:
24654 * s/riscix12.h:
24655 * s/sco4.h:
24656 * s/sco5.h:
24657 * s/sunos4-0.h:
24658 * s/sunos4-1.h:
24659 * s/sunos413.h:
24660 * s/sunos4shr.h:
24661 * s/umax.h:
24662 * s/unipl5-2.h:
24663 * s/xenix.h:
24664 * cxux-crt0.s:
24665 * unexapollo.c:
24666 * unexconvex.c:
24667 * unexenix.c:
24668 * unexsni.c: Remove files for systems no longer supported.
24669
24670 * m/intel386.h: Remove references to unsupported systems.
24671
24672 * w32.c (get_emacs_configuration): Remove reference to i860.
24673
24674 * sysdep.c: Remove dead code.
24675
24676 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
24677
24678 * s/rtu.h:
24679 * m/masscomp.h: Remove files. Platform is obsolete.
24680
24681 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
24682
24683 * dbusbind.c (Fdbus_method_return): New function.
24684 (xd_read_message): Add the serial number to the event.
24685 (Fdbus_register_method): Activate the function.
24686
24687 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
24688
24689 * keyboard.c (read_key_sequence): Fix typo.
24690
24691 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
24692
24693 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
24694 (xd_signature, xd_append_arg): Handle element type detection for
24695 empty arrays.
24696 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
24697 SDATA () calls; this must be solved more general.
24698 (Fdbus_register_signal): Use SBYTES instead of strlen.
24699
24700 2008-01-03 Magnus Henoch <magnus@zemdatav>
24701
24702 * dbusbind.c (xd_append_arg): Use unsigned char instead of
24703 unsigned int for byte values (necessary for big-endian platform).
24704 (Fdbus_call_method): Handle the case of no returned arguments.
24705
24706 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
24707
24708 * dbusbind.c (xd_read_message): Use non-static input_event struct.
24709
24710 2007-12-31 Magnus Henoch <mange@freemail.hu>
24711
24712 * dbusbind.c (xd_signature): Signature of variant is just "v".
24713
24714 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
24715
24716 * dbusbind.c: Fix several errors and compiler warnings.
24717 Reported by Tom Tromey <tromey@redhat.com>.
24718 (XD_ERROR, XD_DEBUG_MESSAGE)
24719 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
24720 (xd_append_arg): Part for basic D-Bus types rewritten.
24721 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
24722 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
24723 appropriate.
24724 (xd_read_message): Return Qnil. Don't signal an error; it is not
24725 useful during event reading.
24726 (Fdbus_register_signal): Signal an error if the check for
24727 FUNCTIONP fails.
24728 (Fdbus_register_method): New function. The implementation is not
24729 complete, the call of the function signals an error therefore.
24730 (Fdbus_unregister_object): New function, renamed from
24731 Fdbus_unregister_signal. The initial check signals an error, if
24732 the object is not well formed.
24733
24734 2007-12-30 Richard Stallman <rms@gnu.org>
24735
24736 * textprop.c (get_char_property_and_overlay):
24737 Signal error if POSITION is out of range in a buffer.
24738
24739 2007-12-29 Martin Rudalics <rudalics@gmx.at>
24740
24741 * w32fns.c (Fx_create_frame): Make copy of frame parameters
24742 because the original parameters are in pure storage now.
24743
24744 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24745
24746 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
24747
24748 2007-12-22 Eli Zaretskii <eliz@gnu.org>
24749
24750 * callint.c (syms_of_callint) <command-history>: Add reference to
24751 history-length in the doc string.
24752
24753 2007-12-17 Jason Rumney <jasonr@gnu.org>
24754
24755 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
24756 before passing as wParam.
24757
24758 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
24759
24760 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
24761 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
24762 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
24763 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
24764 as number.
24765 (Fdbus_call_method): Fix docstring.
24766
24767 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
24768
24769 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
24770 New macros.
24771 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
24772 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
24773 Simplify.
24774 (xd_signature): New function.
24775 (xd_append_arg): Compute also signatures. Major rewrite.
24776 (xd_retrieve_arg): Make debug messages friendly.
24777 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
24778 Check for signatures of arguments.
24779
24780 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
24781
24782 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
24783 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
24784 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
24785 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
24786 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
24787 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
24788 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
24789 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
24790 (xd_retrieve_value): Remove. Functionality included in ...
24791 (xd_append_arg): New function.
24792 (Fdbus_call_method, Fdbus_send_signal): Apply it.
24793
24794 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
24795
24796 * dbusbind.c (top): Include <stdio.h>.
24797 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
24798 dbus_message_new_method_call and dbus_message_new_signal.
24799 (Fdbus_register_signal): Rename unique_name to uname.
24800 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
24801 non-existing unique name. Fix typos in matching rule. Return an
24802 object which is useful in Fdbus_unregister_signal.
24803 (Fdbus_unregister_signal): Reimplementation, in order to remove
24804 only the corresponding entry.
24805 (Vdbus_registered_functions_table): Change the order of entries.
24806 Apply these changes in xd_read_message and Fdbus_register_signal.
24807
24808 2007-12-16 Andreas Schwab <schwab@suse.de>
24809
24810 * fileio.c (Finsert_file_contents): Fix overflow check to not
24811 depend on undefined integer overflow.
24812
24813 2007-12-14 Jason Rumney <jasonr@gnu.org>
24814
24815 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
24816 for characters above 127.
24817
24818 2007-12-13 Jason Rumney <jasonr@gnu.org>
24819
24820 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
24821 before dereferencing array.
24822 (lookup_vk_code): Remove zero comparison.
24823
24824 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
24825
24826 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
24827 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
24828 Use `unsigned int' instead of `uint'.
24829 (xd_read_message, Fdbus_register_signal): Split expressions into
24830 multiple lines before operators "&&" and "||", according to the
24831 GNU Coding Standards.
24832
24833 2007-12-14 Eli Zaretskii <eliz@gnu.org>
24834
24835 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
24836
24837 2007-12-12 Juri Linkov <juri@jurta.org>
24838
24839 * buffer.c (Frename_buffer): In interactive spec replace
24840 `read-buffer' with `read-string' that uses `buffer-name-history'
24841 as history, and the current buffer's name as default.
24842
24843 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
24844
24845 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
24846 manipulating the backtrace manually.
24847 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
24848 (struct backtrace, backtrace_list): Remove.
24849 (command_loop_1): Remove dead var `no_direct'.
24850
24851 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
24852 preserve non-built-in buffer-local variables.
24853 (Fkill_all_local_variables): Don't re-create&re-set permanent
24854 buffer-local variables.
24855
24856 2007-12-09 Juri Linkov <juri@jurta.org>
24857
24858 * buffer.c (Frename_buffer): Change interactive spec from "s" to
24859 Lisp code that uses `read-buffer' with current buffer as default.
24860
24861 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
24862
24863 * dbusbind.c (xd_read_message): Generate an event for every
24864 registered handler. There might be several handlers registered
24865 for the same signal.
24866 (Fdbus_register_signal): Don't overwrite a registration for the
24867 same signal. Add a new registration if handlers are different.
24868 (Vdbus_registered_functions_table): Rework doc string.
24869
24870 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
24871
24872 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
24873 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
24874 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
24875 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
24876 Unify argument lists.
24877 (xd_read_message, Fdbus_register_signal): Reorder and extend event
24878 arguments and hash table keys. Use unique name for service.
24879 (Fdbus_unregister_signal): Remove checks.
24880 (Vdbus_registered_functions_table): Fix doc string.
24881
24882 2007-12-05 Magnus Henoch <mange@freemail.hu>
24883
24884 * process.c (make_process): Initialize pty_flag to 0.
24885
24886 2007-12-05 Jason Rumney <jasonr@gnu.org>
24887
24888 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
24889 specified XBMs.
24890
24891 2007-12-05 Richard Stallman <rms@gnu.org>
24892
24893 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
24894
24895 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24896
24897 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
24898 New variable.
24899 (mac_try_close_socket) [MAC_OSX]: New function.
24900 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
24901 Update cfsockets_for_select. Replace invalid CFRunLoop source.
24902
24903 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
24904 Use mac_try_close_socket.
24905
24906 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24907
24908 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
24909 reloc_base.
24910 (copy_dysymtab): Compute relocation base here.
24911 (rebase_reloc_address) [__ppc64__]: New function.
24912 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
24913 changed.
24914
24915 2007-12-05 Jason Rumney <jasonr@gnu.org>
24916
24917 * w32proc.c (sys_spawnve): Quote args with wildcards.
24918
24919 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24920
24921 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
24922 __objc_* sections.
24923 (unrelocate) [_LP64]: Set relocation base to address of data segment.
24924
24925 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
24926
24927 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
24928 Move check for Vdbus_registered_functions_table to
24929 xd_read_queued_messages.
24930 (xd_read_queued_messages): Protect xd_read_message calls by
24931 internal_condition_case_1.
24932
24933 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
24934
24935 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
24936 Qdbus_system_bus and Qdbus_session_bus, respectively.
24937 (Vdbus_intern_symbols): Remove.
24938 (Vdbus_registered_functions_table): New hash table.
24939 (XD_SYMBOL_INTERN_SYMBOL): Remove.
24940 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
24941 Rewrite in order to manage registered functions by hash table
24942 Vdbus_registered_functions_table.
24943
24944 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
24945
24946 * xterm.c: Update URL to Window Manager Specification in comment.
24947
24948 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
24949
24950 * config.in (HAVE_DBUS): Add.
24951
24952 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
24953 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
24954 (obj): Add $(DBUS_OBJ).
24955 (LIBES): Add $(DBUS_LIBS).
24956 (dbusbind.o): New target.
24957
24958 * dbusbind.c: New file.
24959
24960 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
24961
24962 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
24963 (Qdbus_event): New Lisp symbol.
24964 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
24965 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
24966 (keys_of_keyboard): Define dbus-event.
24967
24968 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
24969
24970 2007-12-01 Richard Stallman <rms@gnu.org>
24971
24972 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
24973
24974 2007-11-30 Jason Rumney <jasonr@gnu.org>
24975
24976 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
24977 (w32con_reset_terminal_modes): Clear screen buffer.
24978 (w32_face_attributes): Don't use color indexes that are out of range.
24979 Only reverse the default colors.
24980
24981 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
24982 WINDOWSNT.
24983
24984 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
24985
24986 2007-11-29 Jason Rumney <jasonr@gnu.org>
24987
24988 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
24989 (w32_face_attributes): Use Vtty_defined_color_alist to determine
24990 if the terminal colors are initialized.
24991 (unspecified_fg, unspecified_bg): Remove unused declarations.
24992
24993 2007-11-29 Andreas Schwab <schwab@suse.de>
24994
24995 * keyboard.c (apply_modifiers): Fix typo.
24996
24997 2007-11-29 Richard Stallman <rms@gnu.org>
24998
24999 * keymap.c (Fcurrent_local_map): Doc fix.
25000
25001 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
25002
25003 * s/gnu-kfreebsd.h: New file.
25004
25005 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
25006
25007 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
25008 Don't cast redundantly.
25009
25010 * keyboard.c (KEY_TO_CHAR): New macro.
25011 (parse_modifiers, apply_modifiers): Accept integer arguments.
25012 (read_key_sequence): Use them to unify the "shift->unshift" mapping
25013 for chars and symbol keys.
25014 After doing such remapping, apply function-key-map again.
25015
25016 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
25017
25018 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
25019 compiled anymore.
25020
25021 2007-11-26 Andreas Schwab <schwab@suse.de>
25022
25023 * process.c (list_processes_1): Fix indentation level of the
25024 command column.
25025
25026 2007-11-23 Andreas Schwab <schwab@suse.de>
25027
25028 * editfns.c (Fformat): Handle %c specially since it requires the
25029 argument to be of type int.
25030
25031 2007-11-23 Markus Triska <markus.triska@gmx.at>
25032
25033 * emacs.c (main): Call init_editfns before init_process, since
25034 init_process sets Vprocess_connection_type depending on OS release.
25035
25036 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
25037
25038 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
25039 (find_symbol_value): Use do_symval_forwarding.
25040
25041 * data.c (set_internal): Set the value in the `cons-cell' (for
25042 Buffer_Local_values) not only for frame-local variables.
25043
25044 2007-11-22 Andreas Schwab <schwab@suse.de>
25045
25046 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
25047 values to sprintf.
25048 * keymap.c (Fsingle_key_description): Likewise.
25049 * print.c (print_object): Likewise.
25050
25051 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
25052
25053 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
25054 file for image is nil.
25055
25056 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
25057
25058 * term.c: Include stdarg.h.
25059 (fatal): Implement using varargs.
25060 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
25061
25062 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
25063
25064 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
25065 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
25066 Update call to buffer_slot_type_mismatch.
25067 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
25068 (buffer_slot_type_mismatch): Update.
25069 * buffer.c (buffer_local_types): Remove.
25070 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
25071 (defvar_per_buffer): Set the type in the buffer_objfwd.
25072
25073 2007-11-21 Jason Rumney <jasonr@gnu.org>
25074
25075 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
25076 CreateFileMapping returns NULL on failure.
25077
25078 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
25079
25080 * search.c (Fset_match_data): Remove the `evaporate' feature.
25081 (unwind_set_match_data): Don't use the `evaporate' feature.
25082
25083 2007-11-21 Jason Rumney <jasonr@gnu.org>
25084
25085 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
25086
25087 * w32console.c (w32con_write_glyphs): Remove unused variables.
25088
25089 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
25090
25091 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
25092
25093 * s/darwin.h (MULTI_KBOARD): Remove.
25094
25095 * macfns.c (x_create_tip_frame, Fx_create_frame)
25096 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
25097
25098 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
25099
25100 * buffer.c (Fbuffer_local_value): Remove redundant test.
25101 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
25102 than in `current-buffer' to match the comment.
25103 Do the swap using swap_in_global_binding.
25104
25105 * data.c (store_symval_forwarding, set_internal):
25106 * eval.c (specbind): Remove dead code.
25107
25108 * coding.c (detect_coding, Fupdate_coding_systems_internal):
25109 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
25110 Since we do not want to see internal Lisp_*fwd objects here.
25111
25112 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
25113
25114 * sysdep.c (init_system_name): Use getaddrinfo if available.
25115
25116 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
25117 (x_scroll_bar_note_movement): start, end, with, height in struct
25118 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
25119
25120 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
25121
25122 * puresize.h (BASE_PURESIZE): Increase to 1190000.
25123
25124 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
25125
25126 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
25127 This undoes Richard's change of 14-Oct-2002.
25128
25129 * alloc.c (allocate_other_vector):
25130 * lisp.h (allocate_other_vector): Remove.
25131
25132 * window.c (struct save_window_data): Move non-lisp data to the end
25133 and make it `int' rather than Lisp_Object.
25134 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
25135 Done wrap/unwrap integer values.
25136 (Fset_window_configuration, compare_window_configurations):
25137 Update use of fields to their new types.
25138
25139 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
25140 Turn integer fields into `int'. Merge x_window_low and x_window_high.
25141 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
25142 (SET_SCROLL_BAR_X_WINDOW): Remove.
25143 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
25144 Access the new x_window field directly.
25145 * xterm.c (x_scroll_bar_create): Use a pseudovector.
25146 Don't wrap/unwrap integers into Lisp_Objects.
25147 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
25148 (x_scroll_bar_report_motion):
25149 Don't wrap/unwrap integers into Lisp_Objects.
25150 (x_term_init): Use SDATA.
25151 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
25152 (x_scroll_bar_set_handle, x_scroll_bar_remove)
25153 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
25154 (x_scroll_bar_report_motion, x_scroll_bar_clear):
25155 * xfns.c (x_set_background_color):
25156 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
25157 Access the new x_window field directly.
25158
25159 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
25160 (allocate_pseudovector): Make non-static.
25161
25162 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
25163 (allocate_pseudovector): Declare.
25164 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
25165
25166 2007-11-15 Andreas Schwab <schwab@suse.de>
25167
25168 * editfns.c (Fformat): Correctly format EMACS_INT values.
25169 Also take precision into account when formatting an integer.
25170
25171 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
25172
25173 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
25174
25175 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
25176 (syms_of_keyboard): Defsubr it.
25177
25178 * data.c (swap_in_global_binding): Fix longstanding bug where
25179 store_symval_forwarding was not called with the right second argument,
25180 thus causing objfwd-ing from being dropped.
25181
25182 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
25183
25184 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
25185 (Fx_display_pixel_height, Fx_display_planes)
25186 (Fx_display_color_cells, Fx_server_max_request_size)
25187 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
25188 (Fx_display_visual_class, Fx_display_save_under):
25189 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
25190 (Fx_display_pixel_height, Fx_display_planes)
25191 (Fx_display_color_cells, Fx_server_max_request_size)
25192 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
25193 (Fx_display_mm_height, Fx_display_mm_width)
25194 (Fx_display_backing_store, Fx_display_visual_class)
25195 (Fw32_select_font, Fx_display_save_under):
25196 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
25197 (Fx_display_pixel_height, Fx_display_planes)
25198 (Fx_display_color_cells, Fx_server_max_request_size)
25199 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
25200 (Fx_display_save_under): Fix typos in docstrings.
25201
25202 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
25203
25204 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
25205 corresponding to deleted entries; they are an implementation detail.
25206 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
25207 Remove variables.
25208 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
25209 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
25210 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
25211 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
25212 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
25213 (Fw32_define_rgb_color, Fw32_load_color_file)
25214 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
25215 Fix typos in docstrings.
25216 (Fx_server_version): Reflow docstring.
25217 (Fw32_shell_execute): Doc fixes.
25218
25219 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
25220
25221 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
25222 if w32_parse_hot_key returned nil.
25223
25224 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
25225
25226 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
25227
25228 2007-11-09 Jason Rumney <jasonr@gnu.org>
25229
25230 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
25231
25232 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
25233
25234 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
25235 Remove W32_SCROLL_BAR_CLICK_EVENT.
25236
25237 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
25238 Add MULTIMEDIA_KEY_EVENT.
25239
25240 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
25241 (lispy_multimedia_keys) [WINDOWSNT]: New array.
25242 (make_lispy_event) [WINDOWSNT]: Use it to translate
25243 MULTIMEDIA_KEY_EVENT.
25244
25245 * w32term.h (WM_APPCOMMAND): Define if not already.
25246 (GET_APPCOMMAND_LPARAM): Likewise.
25247
25248 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
25249 WM_APPCOMMAND.
25250
25251 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
25252 (syms_of_w32fns): Export and initialize it.
25253 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
25254
25255 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
25256
25257 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
25258 twice.
25259
25260 * xdisp.c (handle_face_prop): Fix last change.
25261
25262 2007-11-09 Richard Stallman <rms@gnu.org>
25263
25264 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
25265 not just for after-strings and before-strings.
25266 Call face_for_overlay_string and pass the overlay to it.
25267 (handle_display_prop): Determine whether property came from an overlay.
25268 Pass OVERLAY arg to handle_single_display_spec.
25269 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
25270 (load_overlay_strings): Fill in it->string_overlays.
25271 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
25272
25273 * xfaces.c (face_for_overlay_string): Function renamed from
25274 face_at_buffer_position_no_overlays, and add arg OVERLAY.
25275
25276 * dispextern.h (struct it): New elt string_overlays.
25277 New elt from_overlay, also in stack.
25278 Rearrange a few elements.
25279 (face_for_overlay_string): Decl renamed from
25280 face_at_buffer_position_no_overlays, and add argument.
25281
25282 2007-11-09 Richard Stallman <rms@gnu.org>
25283
25284 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
25285 to get the base face for an overlay string.
25286
25287 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
25288
25289 * xfaces.c (face_at_buffer_position_no_overlays): New function.
25290
25291 * xdisp.c (handle_stop): Move some code out of loop.
25292
25293 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25294
25295 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
25296 Fix conversion from Lisp object to ATSUFontID.
25297
25298 2007-11-09 Jason Rumney <jasonr@gnu.org>
25299
25300 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
25301
25302 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25303
25304 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
25305 Don't assume regions are aligned to page boundary.
25306 (print_load_command_name): Add LC_UUID if defined.
25307
25308 2007-11-09 Richard Stallman <rms@gnu.org>
25309
25310 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
25311
25312 2007-11-07 Jason Rumney <jasonr@gnu.org>
25313
25314 * s/windows95.h: Remove.
25315
25316 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
25317
25318 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
25319 abort with a message on unhandled store_type values.
25320
25321 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
25322
25323 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
25324 Remove HAVE_X11R5 and HAVE_X11R4.
25325
25326 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
25327
25328 * Makefile.in: Remove references to sunfns.c and sunfns.o.
25329
25330 2007-11-01 Johan Bockgård <bojohan@gnu.org>
25331
25332 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
25333 Don't set s->stippled_p here, since it has already been set by
25334 x_set_glyph_string_gc from x_draw_glyph_string.
25335
25336 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
25337
25338 * sunfns.c: Remove file.
25339
25340 * m/sun386.h:
25341 * m/sun2.h:
25342 * m/sparc.h: Remove Sun windows code.
25343
25344 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
25345
25346 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
25347 (init_keyboard): Set current_kboard's window-system to nil.
25348 (tty_read_avail_input): Typo.
25349 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
25350
25351 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
25352
25353 * s/usg5-4.h:
25354 * s/usg5-3.h:
25355 * s/ptx.h:
25356 * m/is386.h:
25357 * m/ibmps2-aix.h:
25358 * Makefile.in: Remove all mentions of X10.
25359
25360 * dispnew.c (syms_of_display): Don't mention version 10.
25361
25362 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
25363
25364 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
25365 ($(BLD)/abbrev.$(O)): Remove.
25366
25367 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
25368
25369 Rewrite abbrev.c in Elisp.
25370 * image.c (Qcount): Don't declare as extern.
25371 (syms_of_image): Initialize and staticpro `Qcount'.
25372 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
25373 * emacs.c (main): Don't call syms_of_abbrev.
25374 * Makefile.in (obj): Remove abbrev.o.
25375 (abbrev.o): Remove.
25376 * abbrev.c: Remove.
25377
25378 2007-10-26 Martin Rudalics <rudalics@gmx.at>
25379
25380 * window.c (window_min_size_2): Don't count header-line.
25381
25382 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
25383
25384 * frame.h (struct frame): Move all bit fields after the first bit
25385 field to take advantage of the available space. Group all the
25386 chars together to reduce wasted space due to padding.
25387
25388 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
25389
25390 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
25391
25392 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
25393 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
25394 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
25395 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
25396 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
25397 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
25398 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
25399 (last_marked, mark_object_loop_halt): Make static.
25400
25401 * frame.c (syms_of_frame) <delete-frame-functions>:
25402 Fix typo in docstring.
25403
25404 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
25405
25406 * w32.c (init_environment): Fix tiny memory leak.
25407 (w32_get_resource): Remove unused variable `ok'.
25408
25409 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
25410
25411 Make `window-system' into a keyboard-local variable (rather than
25412 frame-local as done originally by multi-tty).
25413
25414 * keyboard.h (struct kboard): Add Vwindow_system.
25415 * keyboard.c (init_kboard): Set a default for Vwindow_system.
25416 (mark_kboards): Mark Vwindow_system.
25417
25418 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
25419 (init_display): Don't set the obsolete `window-system' frame-param.
25420
25421 * xterm.c (x_term_init):
25422 * w32term.c (w32_create_terminal):
25423 * term.c (init_tty): Set Vwindow_system.
25424 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
25425 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
25426
25427 * xfns.c (Fx_create_frame, x_create_tip_frame):
25428 * w32fns.c (Fx_create_frame, x_create_tip_frame):
25429 * macfns.c (Fx_create_frame):
25430 Don't set the obsolete `window-system' frame-param.
25431
25432 * frame.h (Qwindow_system): Remove.
25433 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
25434 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
25435
25436 2007-10-24 Richard Stallman <rms@gnu.org>
25437
25438 * frame.c (x_figure_window_size): For fullscreen case,
25439 set USPosition | PPosition without clobbering rest of window_prompting.
25440
25441 * keyboard.c (Fcurrent_idle_time): Doc fix.
25442
25443 * print.c (Fwith_output_to_temp_buffer): Doc fix.
25444
25445 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
25446
25447 * process.c (unwind_request_sigio): Only define if __ultrix__.
25448
25449 * callproc.c (child_setup): Remove spurious *.
25450
25451 * lisp.h (Fget_text_property): Declare.
25452 (have_menus_p): Declare it here rather than in sys-dep header files.
25453 * macterm.h (have_menus_p):
25454 * msdos.h (have_menus_p):
25455 * xterm.h (have_menus_p): Remove.
25456
25457 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
25458 (Fmake_variable_frame_local): Just check the variable's const-ness
25459 rather than checking nil or t.
25460
25461 2007-10-22 Jason Rumney <jasonr@gnu.org>
25462
25463 * w32fns.c: Include math.h.
25464 (w32_abort): Declaration moved to nt/config.nt.
25465
25466 * s/ms-w32.h (HAVE_STDLIB_H): Define.
25467 (abort): Redefinition moved to nt/config.nt.
25468
25469 * m/windowsnt.h: Remove.
25470
25471 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
25472
25473 * emacs.c (Fdump_emacs): Fix typo in message.
25474 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
25475 <installation-directory>: Reflow docstring.
25476
25477 2007-10-22 Juri Linkov <juri@jurta.org>
25478
25479 * minibuf.c: Allow minibuffer default to be a list of default values.
25480 With empty input use the first element of this list as returned default.
25481 (string_to_object)
25482 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
25483 (read_minibuf): If defalt is cons, set histstring to its car.
25484 (Fread_string): If default_value is cons, set val to its car.
25485 (Fread_buffer): If def is cons, use its car.
25486 (Fcompleting_read): If defalt is cons, set val to its car.
25487
25488 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
25489
25490 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
25491
25492 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
25493
25494 * doc.c (Fdocumentation): Check for advice in all cases.
25495
25496 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
25497
25498 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
25499
25500 2007-10-19 Richard Stallman <rms@gnu.org>
25501
25502 * doc.c (Fdocumentation): Check for and handle an advised function.
25503
25504 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
25505
25506 * process.c (Fset_process_filter): Doc fix.
25507
25508 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
25509
25510 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
25511 which caused key-translation-map to applied repeatedly (thus breaking
25512 double-mode).
25513
25514 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
25515
25516 * xselect.c (x_own_selection, x_handle_selection_clear)
25517 (x_clear_frame_selections):
25518 * w32menu.c (list_of_panes, list_of_items):
25519 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
25520 * textprop.c (validate_plist, interval_has_all_properties)
25521 (interval_has_some_properties, interval_has_some_properties_list)
25522 (add_properties, text_property_list):
25523 * process.c (Fget_buffer_process, list_processes_1, status_notify):
25524 * minibuf.c (Fassoc_string):
25525 * macselect.c (x_own_selection, x_clear_frame_selections)
25526 (Fx_disown_selection_internal):
25527 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
25528 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
25529
25530 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
25531
25532 * process.c: Link to libs for calling res_init() if available.
25533 (Fmake_network_process): Call res_init() before getaddrinfo or
25534 gethostbyname, if possible.
25535
25536 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
25537
25538 * lread.c (read1): Set pvectype for char_tables.
25539
25540 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
25541 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
25542 Add type checks.
25543 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
25544
25545 * alloc.c (free_misc): Use XMISCTYPE.
25546 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
25547
25548 2007-10-17 Glenn Morris <rgm@gnu.org>
25549
25550 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
25551 (syms_of_minibuf): Add Qcompletion_ignore_case.
25552 * dired.c (Qcompletion_ignore_case): Change to external.
25553 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
25554 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
25555 (Fread_file_name): Use it rather than intern'ing.
25556
25557 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
25558 (Fread_coding_system): Ignore case of user input.
25559
25560 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25561
25562 * xdisp.c (handle_display_prop): Ignore display specs after
25563 replacing one when string text is being replaced.
25564 (handle_single_display_spec): Pretend as if characters with display
25565 property haven't been consumed only when buffer text is being replaced.
25566
25567 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
25568
25569 * xfns.c (Fx_create_frame, Fx_display_list):
25570 * window.c (window_fixed_size_p, enlarge_window)
25571 (shrink_window_lowest_first):
25572 * macterm.c (init_font_name_table):
25573 * macfns.c (Fx_create_frame, Fx_display_list):
25574 * lread.c (close_load_descs):
25575 * keyboard.c (read_char_x_menu_prompt):
25576 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
25577 * coding.c (code_convert_region_unwind): Test the type of an object
25578 rather than just !NILP before extracting data from it.
25579
25580 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
25581
25582 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
25583 (XMISCANY): New macro.
25584 (XMISCTYPE): Use it.
25585 (struct Lisp_Misc_Any): New type.
25586 (union Lisp_Misc): Use it.
25587 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
25588 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
25589 (find_symbol_value, set_internal, default_value, Fset_default)
25590 (Fmake_variable_buffer_local, Fmake_local_variable)
25591 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
25592 (Flocal_variable_if_set_p, Fvariable_binding_locus):
25593 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
25594 * alloc.c (allocate_buffer): Set the size and tag.
25595 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
25596 Use XMISCANY.
25597 (die): Follow the GNU convention for error messages.
25598 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
25599 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
25600 tag any more.
25601 (set_buffer_internal_1):
25602 * frame.c (store_frame_param):
25603 * eval.c (specbind):
25604 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
25605
25606 * doc.c (Fsnarf_documentation): Simplify.
25607
25608 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
25609
25610 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
25611 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
25612
25613 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
25614
25615 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
25616
25617 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
25618
25619 * eval.c (do_autoload): Don't save autoloads.
25620
25621 * data.c (Ffset): Save autoload of the function being set.
25622
25623 2007-10-07 John Paul Wallington <jpw@pobox.com>
25624
25625 * xfns.c (x_create_tip_frame): Set the `display-type' frame
25626 parameter before setting up faces.
25627
25628 2007-10-13 Eli Zaretskii <eliz@gnu.org>
25629
25630 * ccl.c (Fregister_code_conversion_map):
25631 * keyboard.c (append_tool_bar_item): Reformat last change.
25632
25633 * lisp.h (eabs): Rename from `abs'. All callers changed.
25634
25635 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
25636
25637 * buffer.c (add_overlay_mod_hooklist):
25638 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
25639 * fontset.c (make_fontset):
25640 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
25641 (append_tool_bar_item):
25642 * macmenu.c (grow_menu_items):
25643 * w32menu.c (grow_menu_items):
25644 * xmenu.c (grow_menu_items): Use larger_vector.
25645
25646 2007-10-13 Eli Zaretskii <eliz@gnu.org>
25647
25648 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
25649 selected frame'' on MSDOS).
25650
25651 2007-10-12 Martin Rudalics <rudalics@gmx.at>
25652
25653 * frame.c (Qexplicit_name): New variable.
25654 (x_report_frame_params): Report it in parameter alist.
25655 (syms_of_frame): Intern and staticpro it.
25656
25657 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
25658
25659 * macfns.c (x_create_tip_frame): Set terminal for frame.
25660
25661 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
25662
25663 * frame.c (Qenvironment): Remove.
25664 (syms_of_frame) <Qenvironment>: Don't initialize.
25665 (Fdelete_frame): Don't treat the `environment' param specially.
25666 * frame.h (Qenvironment): Don't declare.
25667 * callproc.c (set_initial_environment): Don't set unused frame param.
25668
25669 * frame.c (Fframe_with_environment): Remove.
25670 (syms_of_frame) <Sframe_with_environment>: Don't declare.
25671
25672 * lisp.h (Fframe_with_environment): Don't declare.
25673
25674 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
25675
25676 * indent.c (indent_tabs_mode, last_known_column)
25677 (last_known_column_modified): Make static.
25678 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
25679
25680 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
25681
25682 * puresize.h (BASE_PURESIZE): Increase to 1170000.
25683
25684 2007-10-09 Jason Rumney <jasonr@gnu.org>
25685
25686 * w32term.c (x_set_window_size): Disable code that attempts to tell
25687 Lisp code about a size change before it actually happens.
25688
25689 2007-10-09 Richard Stallman <rms@gnu.org>
25690
25691 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
25692 return HANDLED_RETURN.
25693
25694 2007-10-08 Martin Rudalics <rudalics@gmx.at>
25695
25696 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
25697 when there's an unread command event.
25698
25699 * frame.c (focus_follows_mouse): Move here from frame.el to allow
25700 window autoselection act appropriately when leaving selected frame.
25701 (syms_of_frame): Initialize focus_follows_mouse.
25702 * frame.h (focus_follows_mouse): Extern it.
25703 * macterm.c (XTread_socket): When focus_follows_mouse is nil
25704 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
25705 * msdos.c (dos_rawgetc): Likewise.
25706 * w32term.c (w32_read_socket): Likewise.
25707 * xterm.c (handle_one_xevent): Likewise.
25708 * xdisp.c (syms_of_xdisp): In doc-string of
25709 mouse-autoselect-window mention focus-follows-mouse.
25710
25711 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25712
25713 * macterm.c (mac_load_query_font): Fix missing return value.
25714 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
25715 Add BLOCK_INPUT.
25716
25717 2007-10-08 Richard Stallman <rms@gnu.org>
25718
25719 * xdisp.c (get_window_cursor_type): Implement documented behavior
25720 for cursor-in-non-selected-windows = t.
25721
25722 2007-10-08 Jason Rumney <jasonr@gnu.org>
25723
25724 * w32.c (w32_get_resource): Always close registry keys.
25725
25726 2007-10-08 Jason Rumney <jasonr@gnu.org>
25727
25728 * makefile.w32-in (LIBS): Add COMCTL32.
25729
25730 * w32fns.c (globals_of_w32fns): Init common controls.
25731
25732 2007-10-08 Richard Stallman <rms@gnu.org>
25733
25734 * image.c (our_memory_buffer): Rename from omfib_buffer.
25735
25736 2007-10-08 Richard Stallman <rms@gnu.org>
25737
25738 * buffer.c (Foverlays_at): Doc fix.
25739
25740 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
25741
25742 * fns.c (Fplist_put): Preserve uneven tail data.
25743
25744 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
25745
25746 * termhooks.h (enum event_kind): Remove trailing comma.
25747
25748 * frame.h (enum): Remove trailing comma.
25749
25750 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
25751
25752 * w32proc.c (delete_child): Don't terminate threads of zombies.
25753
25754 2007-10-08 Martin Rudalics <rudalics@gmx.at>
25755
25756 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
25757
25758 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
25759 last-repeatable-command.
25760 (init_kboard): Initialize Vlast_repeatable_command.
25761 (command_loop_1): Set it to real_this_command unless that was
25762 bound to an input event.
25763 (mark_kboards): Mark it.
25764
25765 2007-10-08 Richard Stallman <rms@gnu.org>
25766
25767 * eval.c (condition-case): Doc fix.
25768
25769 2007-10-08 Masatake YAMATO <jet@gyve.org>
25770
25771 * xfaces.c (tty_supports_face_attributes_p): Fix code
25772 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
25773 was copied and not edited.
25774
25775 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
25776
25777 Add new `input-decode-map' keymap and use it for terminal
25778 escape sequences.
25779 * keyboard.h (struct kboard): Add Vinput_decode_map.
25780 Remove Vlocal_key_translation_map.
25781 * keyboard.c (read_key_sequence): Add support for input-decode-map.
25782 (init_kboard): Init input-decode-map.
25783 Replace local-key-translation-map back with key-translation-map.
25784 (syms_of_keyboard): Declare input-decode-map.
25785 Remove local-key-translation-map. Update docstrings.
25786 (mark_kboards): Mark Vinput_decode_map.
25787 Don't mark Vlocal_key_translation_map.
25788 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
25789 Replace local-key-translation-map back with key-translation-map.
25790 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
25791 Bind in input-decode-map rather than function-key-map.
25792
25793 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
25794 This was made redundant by the previous introduction of XSETPVECTYPE.
25795
25796 2007-10-09 Richard Stallman <rms@gnu.org>
25797
25798 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
25799
25800 2007-09-29 Richard Stallman <rms@gnu.org>
25801
25802 * eval.c (internal_condition_case_2, internal_condition_case_1)
25803 (internal_condition_case): Reenable abort if x_catching_errors ()
25804 to see if that really happens and why.
25805
25806 2007-10-06 Andreas Schwab <schwab@suse.de>
25807
25808 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
25809
25810 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
25811
25812 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
25813
25814 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
25815
25816 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
25817
25818 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
25819
25820 * window.h (struct window):
25821 * window.c (struct save_window_data, struct saved_window):
25822 * termhooks.h (struct terminal):
25823 * process.h (struct Lisp_Process):
25824 * frame.h (struct frame):
25825 * buffer.h (struct buffer):
25826 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
25827 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
25828 The size field of (pseudo)vectors is now unsigned.
25829 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
25830
25831 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
25832 Turn `count' into an integer.
25833
25834 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
25835 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
25836 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
25837 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
25838 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
25839
25840 * alloc.c (allocate_pseudovector): New fun.
25841 (ALLOCATE_PSEUDOVECTOR): New macro.
25842 (allocate_window, allocate_terminal, allocate_frame)
25843 (allocate_process): Use it.
25844 (mark_vectorlike): New function.
25845 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
25846 (mark_terminals): Use it.
25847 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
25848 (Fmake_byte_code): Use XSETPVECTYPE.
25849
25850 * frame.c (Fframe_parameters): Minor simplification.
25851
25852 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
25853
25854 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
25855
25856 * buffer.c (Fget_buffer_create, init_buffer_once):
25857 * lread.c (defsubr):
25858 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
25859
25860 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
25861 defined differently in the m/*.h files.
25862 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
25863 (XSETPVECTYPE): New macro.
25864 (XSETPSEUDOVECTOR): Use it.
25865
25866 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
25867 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
25868
25869 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
25870 * lread.c (defvar_per_buffer):
25871 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
25872
25873 * window.c (candidate_window_p): Only consider as visible frames that
25874 are on the same terminal.
25875
25876 * m/ibms390x.h (MARKBIT): Remove unused macro.
25877
25878 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
25879
25880 * lread.c (Fload): Fix typo in docstring.
25881
25882 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
25883
25884 * floatfns.c (Fexpt): Manually check for overflows, so that a power
25885 of a non-zero value can't yield zero.
25886
25887 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
25888
25889 * term.c (term_clear_mouse_face, term_mouse_highlight)
25890 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
25891
25892 * print.c (safe_debug_print): Use XHASH.
25893
25894 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
25895 Lisp elements such as tags.
25896 (XHASH): New macro.
25897 (EQ): Use it.
25898 (SREF, SSET, STRING_COPYIN): Use SDATA.
25899 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
25900
25901 * alloc.c (mark_terminal): Remove left-over declaration.
25902 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
25903 (allocate_vectorlike): Remove type argument. Adjust callers.
25904 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
25905 Only handle the one remaining MEM_TYPE_VECTORLIKE.
25906
25907 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
25908 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
25909 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
25910 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
25911 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
25912 Use them.
25913
25914 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
25915 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
25916 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
25917
25918 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
25919
25920 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
25921 loaded by default.
25922
25923 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
25924
25925 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
25926 on this tty.
25927 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
25928
25929 * term.c (mouse_face_window): Rename from Qmouse_face_window.
25930 Update all users.
25931 (handle_one_term_event): Use Gpm_DrawPointer.
25932 (Fgpm_mouse_start): Rename from Fterm_open_connection.
25933 Signal errors instead of returning nil. Always return nil.
25934 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
25935 Make it a noop if gpm-mouse was not activated.
25936 (syms_of_term): Update names.
25937
25938 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
25939
25940 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
25941 (init_sys_modes): Check that gpm_tty is the current tty.
25942
25943 * alloc.c (allocate_terminal): Set the vector size to only count the
25944 lisp fields. Initialize those to nil.
25945 (mark_object): Don't treat terminals specially.
25946 (mark_terminal): Remove.
25947 (mark_terminals): Use mark_object instead.
25948
25949 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
25950 the GC to the beginning.
25951
25952 * indent.h:
25953 * indent.c: Use EMACS_INT for ints coming from Elisp data.
25954
25955 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
25956
25957 2007-09-25 Jason Rumney <jasonr@gnu.org>
25958
25959 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
25960
25961 * w32console.c (create_w32cons_output): Remove.
25962
25963 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
25964
25965 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
25966 (reset_sys_modes): Use reset_terminal_modes_hook.
25967
25968 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
25969
25970 * eval.c (do_autoload): Don't output any message.
25971
25972 2007-09-24 Juri Linkov <juri@jurta.org>
25973
25974 * emacs.c (standard_args): Change priority of "--no-splash"
25975 from 40 to 3. Add "--no-desktop" with the same priority.
25976
25977 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
25978
25979 * alloc.c (gc_sweep): Check cons cell mark bits word by word
25980 and optimize the case where they are all 1.
25981
25982 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
25983
25984 * lisp.h (abs): Define if not defined.
25985 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
25986 Don't define `abs', since it's defined in lisp.h.
25987
25988 2007-09-22 Eli Zaretskii <eliz@gnu.org>
25989
25990 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
25991 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
25992 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
25993 (init_tty): Use DEV_TTY instead of "/dev/tty".
25994 [WINDOWSNT]: No need to protect from NAME arg being null.
25995
25996 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
25997
25998 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
25999 up the tty state.
26000
26001 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
26002
26003 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
26004 (gpm_tty): Change its type.
26005 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
26006 (gpm_tty): Change its type and initialize it.
26007 (Fterm_open_connection): Check the frame is indeed a tty.
26008 Use the new gpm_tty.
26009 (Fterm_close_connection): Use the new gpm_tty.
26010 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
26011 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
26012
26013 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
26014
26015 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
26016 underline_color, to draw strike-through.
26017
26018 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
26019
26020 * lisp.h (allocate_terminal): Declare.
26021
26022 * window.c (candidate_window_p): Consider frames that are being placed
26023 by the user as somewhere between visible and iconified.
26024 (window_loop): Prefer windows on the current frame.
26025 (Fselect_window): Move the use of select-frame to the beginning so we
26026 can just delegate all the work (it'll call us back anyway).
26027
26028 * frame.c (Qdisplay_environment_variable):
26029 * frame.h (Qdisplay_environment_variable): Delete.
26030
26031 * .gdbinit (xbacktrace): Print the arg's address rather than the value
26032 of the first arg, since that value may be a union.
26033
26034 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
26035 parameter rather than Qdisplay_environment_variable. If all else
26036 fails, look for DISPLAY in initial-environment.
26037
26038 2007-09-21 Glenn Morris <rgm@gnu.org>
26039
26040 * Makefile.in (emacstool): Remove target.
26041 (lisp, shortlisp): Remove termdev.elc.
26042
26043 2007-09-21 Markus Triska <markus.triska@gmx.at>
26044
26045 * xterm.c (x_delete_display): Compile session management conditionally.
26046
26047 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
26048
26049 * callproc.c (getenv_internal_1): New function.
26050 (getenv_internal): Use it.
26051 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
26052
26053 * terminal.c (get_terminal): Don't accept ints to represent terminals.
26054 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
26055 (Fset_terminal_parameter): Work with dead terminals as well.
26056 (Fmodify_terminal_parameters): Remove.
26057
26058 * terminal.c (get_terminal): Handle terminals.
26059 Make sure the terminal returned is live.
26060 (create_terminal): Use allocate_terminal.
26061 (mark_terminals): Move to alloc.c.
26062 (delete_terminal): Use terminal->name as liveness status.
26063 NULL out fields after freeing their contents.
26064 Don't deallocate the object.
26065 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
26066 rather than an int.
26067 (Fterminal_live_p): Accept non-integer arguments.
26068 (Fterminal_list): Return terminal objects rather than an ints.
26069
26070 * alloc.c (enum mem_type): New member for `terminal' objects.
26071 (allocate_terminal): New function.
26072 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
26073 Handle terminals.
26074 (mark_terminal): New fun.
26075 (mark_terminals): Move from terminal.c.
26076
26077 * term.c (get_tty_terminal): Don't treat output_initial specially.
26078 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
26079 (delete_tty): Use terminal->name as liveness status.
26080
26081 * termhooks.h (struct terminal): Make it into a pseudovector.
26082 Remove `deleted' replaced by checking `name's nullness.
26083
26084 * print.c (print_object): Handle terminals.
26085
26086 * lisp.h (enum pvec_type): New `terminal' pseudovector.
26087 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
26088
26089 * frame.c (make_terminal_frame):
26090 * keyboard.c (tty_read_avail_input):
26091 * w32term.c (x_delete_terminal):
26092 * xfns.c (Fx_create_frame, x_create_tip_frame):
26093 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
26094
26095 2007-09-20 Glenn Morris <rgm@gnu.org>
26096
26097 * process.c (Fmake_network_process): Doc fix.
26098
26099 2007-09-19 Jason Rumney <jasonr@gnu.org>
26100
26101 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
26102
26103 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
26104
26105 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
26106 Fix a C warning regarding variable constness.
26107
26108 * xterm.c (handle_one_xevent): Fix a C warning.
26109
26110 2007-09-18 Jason Rumney <jasonr@gnu.org>
26111
26112 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
26113
26114 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
26115
26116 * gtkutil.c (gdpy_def): New variable.
26117 (xg_initialize): Initialize gdpy_def.
26118 (xg_display_close): If no other display exists, set gdpy_def to a
26119 new connection.
26120
26121 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
26122
26123 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
26124 when we have no file name for the icon.
26125 (xg_tool_bar_expose_callback): Remove.
26126 (xg_create_tool_bar): Don't connect expose signal to
26127 xg_tool_bar_expose_callback.
26128 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
26129
26130 2007-09-16 Andreas Schwab <schwab@suse.de>
26131
26132 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
26133 values instead of zapping them.
26134
26135 2007-09-14 Glenn Morris <rgm@gnu.org>
26136
26137 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
26138 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
26139 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
26140 scope and rename to omfib_buffer for clarity.
26141 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
26142
26143 2007-09-14 Kenichi Handa <handa@m17n.org>
26144
26145 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
26146
26147 2007-09-13 Jason Rumney <jasonr@gnu.org>
26148
26149 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
26150
26151 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
26152
26153 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
26154 (mac_term_init): Call here instead, passing rif.
26155
26156 2007-09-13 Glenn Morris <rgm@gnu.org>
26157
26158 * s/hpux.h: No longer define `static' as nothing.
26159
26160 2007-09-13 Johan Bockgård <bojohan@gnu.org>
26161
26162 * callint.c (Fcall_interactively): Remove unused var `fun'.
26163
26164 2007-09-12 Romain Francoise <romain@orebokech.com>
26165
26166 * window.c (prefer_window_split_horizontally, display_buffer):
26167 Revert 2007-09-08 change.
26168
26169 2007-09-12 Glenn Morris <rgm@gnu.org>
26170
26171 * alloca.c: Remove file.
26172 * Makefile.in (alloca): Do not undef.
26173 (allocaobj, alloca.o): Remove.
26174 (otherobj): Remove allocaobj.
26175 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
26176 * regex.c (C_ALLOCA): Remove all references and code that was only
26177 used when this was defined.
26178 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
26179 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
26180 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
26181
26182 * Makefile.in (SOURCES, unlock, relock): Delete.
26183
26184 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
26185 (menu_grab_callback): All uses changed.
26186
26187 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
26188 (x_reply_selection_request): All uses changed.
26189
26190 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
26191
26192 * lread.c (load_warn_old_style_backquotes): Change message to look
26193 better when it appears in the middle of byte-compiler messages.
26194
26195 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
26196
26197 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
26198
26199 * xterm.c (x_create_terminal): Add comment.
26200
26201 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
26202
26203 2007-09-10 Richard Stallman <rms@gnu.org>
26204
26205 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
26206
26207 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
26208
26209 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
26210 (DEFUN): Document `intspec', use it instead of `prompt'.
26211
26212 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
26213
26214 * data.c (Finteractive_form): If the interactive specification starts
26215 with a `(', use it as a Lisp form.
26216
26217 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
26218 name and file modes.
26219
26220 * callint.c (Fcall_interactively): Comment fixes.
26221
26222 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
26223
26224 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
26225 and compiled functions.
26226
26227 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
26228
26229 * window.c (prefer_window_split_horizontally): New variable.
26230 (display_buffer): Consider splitting window horizontally depending
26231 on prefer_window_split_horizontally.
26232
26233 2007-09-08 Eli Zaretskii <eliz@gnu.org>
26234
26235 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
26236
26237 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
26238
26239 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
26240
26241 * frame.c (x_set_frame_parameters): Check number is positive before
26242 using XFASTINT.
26243
26244 * window.c (freeze_window_start): Don't presume selected_window holds
26245 a window object.
26246 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
26247
26248 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
26249
26250 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
26251
26252 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
26253
26254 * window.c (Vsplit_window_preferred_function): New var.
26255 (Fdisplay_buffer): Use it.
26256 (syms_of_window): Export, and initialize it.
26257
26258 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
26259
26260 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
26261
26262 2007-09-06 Glenn Morris <rgm@gnu.org>
26263
26264 * gtkutil.c (menu_grab_callback) <cnt>:
26265 * xselect.c (x_reply_selection_request) <cnt>: Move static
26266 variable to file scope.
26267
26268 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
26269
26270 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
26271 consistent values of selected_frame and selected_window.
26272
26273 2007-09-04 Jason Rumney <jasonr@gnu.org>
26274
26275 * w32console.c (initialize_w32_display): Zero unused hooks.
26276
26277 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
26278
26279 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
26280 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
26281
26282 2007-09-04 Jason Rumney <jasonr@gnu.org>
26283
26284 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
26285 in w32console.c. Set up input. Remove XXX comments that have been
26286 confirmed as correct.
26287
26288 * s/ms-w32.h (MULTI_KBOARD): Define.
26289
26290 * w32console.c (one_and_only_w32cons): Remove.
26291 (initialize_w32_display): Take terminal argument.
26292
26293 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
26294 initialize_w32_display.
26295 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
26296
26297 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
26298
26299 * keyboard.c (discard_mouse_events): Discard it.
26300 (make_lispy_event): Translate it to a lisp event.
26301 (lispy_wheel_names): Add wheel-left and right events.
26302 (syms_of_keyboard): Enlarge wheel_syms.
26303
26304 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
26305 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
26306
26307 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
26308
26309 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
26310 from WM_MOUSEHWHEEL.
26311 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
26312
26313 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
26314 terminal.
26315
26316 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
26317 keyboard for the terminal.
26318
26319 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
26320
26321 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
26322 (Vresume_tty_hook): Rename from Vresume_tty_functions.
26323 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
26324 and resume-tty-function to resume-tty-hook.
26325 (Fsuspend_tty, Fresume_tty): Use new names.
26326
26327 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
26328
26329 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
26330 if it starts with "n:".
26331
26332 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
26333
26334 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
26335
26336 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
26337
26338 * frame.h:
26339 * frame.c (Qterm_environment_variable): Remove.
26340 (syms_of_frame): Don't init and staticpro it.
26341
26342 * callproc.c (getenv_internal): Remove special case for $TERM.
26343
26344 * callproc.c (Vinitial_environment): New variable.
26345 (set_initial_environment): Initialize it.
26346 (syms_of_callproc): Declare it.
26347 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
26348 TERM under which a process runs is never related to the TERM in which
26349 Emacs is running.
26350
26351 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
26352
26353 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
26354 * s/darwin.h: ... do it here.
26355
26356 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
26357
26358 * lisp.h (set_initial_environment): Rename from set_global_environment.
26359
26360 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
26361 removed by mistake on the multi-tty branch.
26362
26363 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
26364 (Fmodify_frame_parameters): Return a value.
26365
26366 * image.c (png_load): Comment-out var only used in commented-out code.
26367
26368 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
26369 before passing it to mark_object.
26370
26371 * xfaces.c (internal_resolve_face_name): Return a value.
26372 (internal_resolve_face_name, resolve_face_name_error): Comment out.
26373
26374 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
26375 (x_icon): Comment-out var only used in commented-out code.
26376
26377 2007-08-29 Romain Francoise <romain@orebokech.com>
26378
26379 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
26380 QUIT hasn't been provided.
26381
26382 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
26383
26384 * callproc.c (child_setup, getenv_internal): Use the
26385 display-environment-variable and term-environment-variable frame params.
26386 (set_initial_environment): Initialise Vprocess_environment.
26387
26388 * config.in: Disable multi-keyboard support on a mac.
26389
26390 * frame.c (Qterm_environment_variable)
26391 (Qdisplay_environment_variable): New variables.
26392 (syms_of_frame): Intern and staticpro them.
26393 (Fmake_terminal_frame): Disable output method test.
26394
26395 * frame.h: Declare them here.
26396
26397 * macfns.c (x_set_mouse_color): Get rif from the frame.
26398 (x_set_tool_bar_lines): Don't use updating_frame.
26399 (mac_window): Add 2 new parameters for consistency with other systems.
26400 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
26401 frame parameters following what is done in X11 and w32. Don't use
26402 FRAME_MAC_DISPLAY_INFO.
26403 (Fx_open_connection, start_hourglass): Remove window-system check.
26404 (x_create_tip_frame): Get the keyboard from the terminal.
26405
26406 * macmenu.c: Reorder includes.
26407 (Fx_popup_menu): Use terminal specific mouse_position_hook.
26408
26409 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
26410 terminal parameter.
26411 (x_clear_frame): Add a frame parameter.
26412 (note_mouse_movement): Get rif from the frame.
26413 (mac_term_init): Initialize the terminal.
26414 (mac_initialize): Make static and move terminal initialization ...
26415 (mac_create_terminal): ... to this new function.
26416
26417 * macterm.h (struct mac_display_info): Add terminal.
26418 (mac_initialize): Delete declaration.
26419
26420 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
26421
26422 * sysdep.c: Comment out text after #endif.
26423
26424 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
26425 is defined. Better initialize ttys in windows. Use terminal
26426 specific mouse_position_hook.
26427
26428 * termhooks.h (union display_info): Add mac_display_info.
26429
26430 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
26431 Set the default minibuffer frame, window_system and the rest of the
26432 frame parameters following what is done in X11.
26433
26434 * w32term.c (w32_initialize): Make static.
26435
26436 * xselect.c (x_handle_selection_clear): Only access
26437 terminal->kboard when MULTI_KBOARD is defined.
26438
26439 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
26440 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
26441
26442 2007-08-29 Jason Rumney <jasonr@gnu.org>
26443
26444 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
26445 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
26446
26447 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
26448 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
26449
26450 * keyboard.c (restore_kboard_configuration): Only define when
26451 MULTI_KBOARD defined.
26452
26453 * makefile.w32-in: Update dependancies from Makefile.in.
26454 (OBJ1): Add terminal.$(O)
26455
26456 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
26457 Don't define function body.
26458 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
26459
26460 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
26461
26462 * w32.c (request_sigio, unrequest_sigio): Remove.
26463
26464 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
26465 (w32con_clear_frame, w32con_clear_end_of_line)
26466 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
26467 (w32con_delete_glyphs, w32con_set_terminal_window)
26468 (scroll_line, w32_sys_ring_bell): Add frame arg.
26469 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
26470 Add terminal arg.
26471 (PICK_FRAME): Remove.
26472 (w32con_write_glyphs): Use frame specific terminal coding.
26473 (one_and_only_w32cons): New global variable.
26474 (initialize_w32_display): Use it for storing hooks.
26475 (create_w32cons_output): New function.
26476
26477 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
26478 arg a frame.
26479
26480 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
26481 Set window_system.
26482 (x_set_tool_bar_lines): Don't use updating_frame.
26483 (Fx_create_frame): Set terminal and ref count.
26484 (Fx_open_connection): Remove window-system check.
26485
26486 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
26487
26488 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
26489 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
26490 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
26491 Add frame arg.
26492 (x_delete_terminal, w32_create_terminal): New functions.
26493 (w32_term_init): Create a terminal.
26494 (w32_initialize): Move terminal specific initialization to
26495 w32_create_terminal.
26496
26497 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
26498 (w32_clear_rect, w32_clear_area): Use background from frame.
26499 (w32_display_info): Add terminal.
26500 (w32_sys_ring_bell, x_delete_display): Declare here.
26501
26502 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
26503
26504 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
26505
26506 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
26507
26508 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
26509 Fix get_named_tty calls for the controlling tty.
26510
26511 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
26512
26513 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
26514
26515 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
26516
26517 * term.c (tty_insert_glyphs): Add missing first parameter.
26518
26519 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
26520
26521 * buffer.c (Fbuffer_list, Fbury_buffer):
26522 Take frame->buried_buffer_list into account.
26523
26524 * cm.c (current_tty): New variable, for cmputc().
26525 (cmputc): Use it.
26526 (cmcheckmagic): Add tty parameter, look up terminal streams there.
26527 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
26528 (cmgoto): Add tty parameter. Pass it on to calccost().
26529 Use emacs_tputs() instead of tputs().
26530
26531 * cm.h (emacs_tputs): New macro to set current_tty, and then call
26532 tputs().
26533 (current_tty): New variable, for cmputc().
26534 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
26535
26536 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
26537 (internal_condition_case, internal_condition_case_1)
26538 (internal_condition_case_2): Don't abort when x_catching_errors.
26539
26540 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
26541 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
26542 prevent crashes caused by bogus longjmps in read_char.
26543
26544 * keymap.h (Fset_keymap_parent): Add EXFUN.
26545
26546 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
26547 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
26548 Remove redundant definition.
26549
26550 * macfns.c (x_set_mouse_color, x_make_gc):
26551 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
26552
26553 * w32term.c (x_free_frame_resources):
26554 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
26555 (w32_initialize): Use the accessor macros for terminal characteristics.
26556
26557 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
26558 Use the accessor macros for terminal characteristics.
26559 * msdos.c (internal_terminal_init): Use the accessor macros for
26560 terminal characteristics.
26561 (ScreenVisualBell, internal_terminal_init):
26562 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
26563
26564 * termopts.h (no_redraw_on_reenter): Declare.
26565
26566 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
26567 (mark_terminals, mark_ttys): Declare.
26568 (Fgarbage_collect): Call them.
26569 (mark_object): Mark buried_buffer_list.
26570
26571 * prefix-args.c: Include stdlib.h for exit.
26572
26573 * syssignal.h: Add comment.
26574
26575 * indent.c: Include stdio.h.
26576
26577 * window.h (Vinitial_window_system): Declare.
26578 (Vwindow_system): Delete declaration.
26579
26580 * fontset.c (Finternal_char_font): Use FRAME_RIF.
26581
26582 * image.c (lookup_image): Don't initialize `c' until the xasserts
26583 have been run.
26584
26585 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
26586 FRAME_FOREGROUND_PIXEL.
26587
26588 * print.c (print_preprocess): Don't lose print_depth levels while
26589 iterating.
26590
26591 * widget.c (update_from_various_frame_slots):
26592 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
26593
26594 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
26595 frames.
26596 (window_internal_height): Remove bogus make_number call.
26597 (init_window_once): Call make_terminal_frame with two zero parameters.
26598
26599 * fileio.c (Fread_file_name): Update comment.
26600
26601 * callint.c (Fcall_interactively):
26602 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
26603 Make sure it is correctly unwound.
26604
26605 * xsmfns.c (x_session_close): New function.
26606
26607 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
26608 Delete declarations.
26609
26610 * xterm.h: Remove declaration for x_fully_uncatch_errors.
26611 (x_output): Remove background_pixel and foreground_pixel fields.
26612 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
26613 (x_delete_device, x_session_close): Declare.
26614
26615 * lread.c: Include setjmp.h. Update declaration of `read_char'.
26616 (read_filtered_event): Call `read_char' with a local
26617 `wrong_kboard_jmpbuf'.
26618
26619 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
26620 Don't call single_kboard_state. Use FRAME_RIF.
26621
26622 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
26623 systems.
26624
26625 * lisp.h (set_process_environment): Rename to `set_global_environment'.
26626 (Fframe_with_environment, Fset_input_meta_mode)
26627 (Fset_quit_char): EXFUN.
26628 (x_create_device, tty_output, terminal, tty_display_info): Declare.
26629 (init_sys_modes, reset_sys_modes): Update prototypes.
26630 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
26631
26632 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
26633 Vlocal_key_translation_map, and Vkeyboard_translate_table.
26634 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
26635 Delete declarations.
26636 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
26637 (temporarily_switch_to_single_kboard, tty_read_avail_input):
26638 New declarations.
26639
26640 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
26641 already does that during init_display(). Call syms_of_keymap
26642 before syms_of_keyboard. Call `syms_of_terminal'.
26643 Call set_initial_environment, not set_process_environment.
26644 (shut_down_emacs): Call reset_all_sys_modes() instead of
26645 reset_sys_modes().
26646
26647 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
26648 (internal_resolve_face_name, resolve_face_name_error): New functions.
26649 (resolve_face_name): Protect against loops and errors thrown by Fget.
26650 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
26651 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
26652
26653 * scroll.c: Replace CURTTY() with local variables throughout the
26654 file (where applicable).
26655 (calculate_scrolling, calculate_direct_scrolling)
26656 (scrolling_1, scroll_cost): Use the accessor macros for terminal
26657 characteristics.
26658
26659 * keymap.c (Vfunction_key_map): Remove.
26660 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
26661 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
26662 (Vkey_translation_map): Remove.
26663 (syms_of_keymap): Remove DEFVAR for key-translation-map.
26664 (Fdescribe_buffer_bindings)
26665 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
26666 Update for terminal-local key-translation-map.
26667
26668 * Makefile.in (callproc.o): Update dependencies.
26669 (lisp, shortlisp): Add termdev.elc.
26670 (obj): Add terminal.o.
26671 (terminal.o): Add dependencies.
26672 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
26673 (data.o, fns.o): Add termhooks.h dependency.
26674 (SOME_MACHINE_LISP): Add dnd.elc.
26675 (minibuf.o): Fix typo.
26676 Update dependencies.
26677
26678 * data.c (do_symval_forwarding, store_symval_forwarding)
26679 (find_symbol_value): Use the selected frame's keyboard, not
26680 current_kboard.
26681
26682 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
26683 Vwindow_system.
26684
26685 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
26686 Fmenu_bar_open.
26687 (syms_of_xmenu): Update defsubr.
26688 (mouse_position_for_popup, Fx_popup_menu)
26689 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
26690 (set_frame_menubar, free_frame_menubar)
26691 (create_and_show_popup_menu, xmenu_show)
26692 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
26693 an X frame.
26694
26695 * xselect.c (x_own_selection): Abort if not an X frame.
26696 (some_frame_on_display): Check if it is an X frame.
26697 (x_handle_selection_clear): Deal with MULTI_KBOARD.
26698
26699 * coding.c: Include frame.h and termhooks.h.
26700 (terminal_coding, keyboard_coding): Delete.
26701 (Fset_terminal_coding_system_internal)
26702 (Fset_keyboard_coding_system_internal)
26703 (Fkeyboard_coding_system)
26704 (Fterminal_coding_system): Add a terminal parameter.
26705 Get terminal_coding from the terminal.
26706 (init_coding_once): Don't call setup_coding_system here.
26707
26708 * dispextern.h (set_scroll_region, turn_off_insert)
26709 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
26710 (tty_clear_end_of_line, tty_setup_colors)
26711 (delete_tty, updating_frame)
26712 (produce_special_glyphs, produce_glyphs, write_glyphs)
26713 (insert_glyphs): Remove.
26714 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
26715 (tty_turn_off_highlight, get_tty_size): Add declaration.
26716 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
26717
26718 * frame.h (enum output_method): Add output_initial.
26719 (struct x_output): Delete.
26720 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
26721 Access foreground_pixel and background_pixel directly from the frame.
26722 (tty_display): Delete.
26723 (struct frame): Add buried_buffer_list, foreground_pixel,
26724 background_pixel and terminal. Delete kboard.
26725 (union output_data): Add tty.
26726 (FRAME_KBOARD): Get the kboard from the terminal.
26727 (FRAME_INITIAL_P): New macro.
26728 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
26729 (Qterm_environment_variable, Qdisplay_environment_variable)
26730 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
26731 New declarations.
26732
26733 * termchar.h (tty_output, tty_display_info): New structures.
26734 (tty_list): Declare.
26735 (FRAME_TTY, CURTTY): New macros.
26736 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
26737 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
26738 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
26739 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
26740
26741 * callproc.c: Include frame.h and termhooks.h, for terminal
26742 parameters.
26743 (add_env): New function.
26744 (child_setup): Use it.
26745 (child_setup, getenv_internal): Handle the new Vprocess_environment.
26746 (getenv_internal): Fix get_terminal_param call.
26747 (Fgetenv_internal, egetenv): Update doc.
26748 (syms_of_callproc): Initialize Vprocess_environment to nil.
26749 Register and initialize them. Remove obsolete defvars. Update doc
26750 strings.
26751 (child_setup): Handle Vlocal_environment_variables.
26752 (getenv_internal): Add terminal parameter.
26753 Handle Vlocal_environment_variables.
26754 (Fgetenv_internal): Add terminal parameter.
26755 (child_setup, getenv_internal, Fgetenv_internal): Store the local
26756 environment in a frame (not terminal) parameter. Update doc strings.
26757 (set_initial_environment): Rename from set_global_environment.
26758 Store Emacs environment in initial frame parameter.
26759
26760 * xdisp.c (redisplay_internal): Update references to
26761 `previous_terminal_frame'.
26762 (display_mode_line, Fformat_mode_line): Replace calls to
26763 `push_frame_kboard' with `push_kboard'.
26764 (get_glyph_string_clip_rects): Add extra parentheses and
26765 braces to prevent compiler warnings.
26766 (calc_pixel_width_or_height): Add xassert to check that the
26767 frame is alive. Don't call `lookup_image' on a termcap frame.
26768 (message2_nolog, message3_nolog, redisplay_internal)
26769 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
26770 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
26771 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
26772 (Fx_display_pixel_width, Fx_display_pixel_height)
26773 (Fx_display_planes, Fx_display_color_cells)
26774 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
26775 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
26776 (Fx_display_backing_store, Fx_display_visual_class)
26777 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
26778 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
26779
26780 * xfns.c (x_set_foreground_color x_set_background_color)
26781 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
26782 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
26783 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
26784 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
26785 terminal that is being deleted.
26786 (Fx_create_frame): Use `store_frame_param' to set `window-system'
26787 frame parameter, and make sure it overrides any user-supplied setting.
26788 (Fx_close_connection, Fx_synchronize): Unify argument names with
26789 the rest of the DEFUNs.
26790
26791 * dispnew.c (Fsend_string_to_terminal): Update call to
26792 `get_tty_terminal'.
26793 (Fredraw_frame, Fsend_string_to_terminal)
26794 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
26795 FRAME_TERMCAP_P and FRAME_TTY.
26796 (window_change_signal): Don't believe width/height values that are
26797 impossibly small.
26798 (Vinitial_window_system): Rename from Vwindow_system.
26799 (termscript, Wcm, rif): Delete.
26800
26801 * termhooks.h (struct terminal): New struct containing the
26802 previously global text display hooks and new members NAME,
26803 DELETED and PARAM_ALIST.
26804 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
26805 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
26806 (FRAME_RIF): New macros.
26807 (get_terminal_param, get_device): New declarations.
26808 (termscript): Delete declaration.
26809
26810 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
26811 (XTflash, x_free_frame_resources, x_scroll_bar_create)
26812 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
26813 FRAME_FOREGROUND_PIXEL.
26814 (x_fully_uncatch_errors): Disable definition.
26815 (x_scroll_bar_expose): Fix reference to foreground pixel.
26816 (XTread_socket): Disable loop on all X displays.
26817 (x_delete_terminal): Don't set terminal->deleted and let
26818 delete_terminal delete the frames on the terminal.
26819 (x_delete_display): Doc update to reflect changes in
26820 delete_terminal.
26821 (x_display_info) <terminal>: Move member earlier in the struct.
26822 (deleting_tty): Remove old variable.
26823 (Fsuspend_tty): Call clear_tty_hooks.
26824 (Fresume_tty, init_tty): Call set_tty_hooks.
26825 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
26826 errors on X frames.
26827 (x_catch_errors_unwind): Abort if x_error_message is NULL.
26828 (handle_one_xevent): Initialize `f' to NULL.
26829 (x_delete_terminal, x_create_terminal): New functions.
26830 (XTset_terminal_modes, XTreset_terminal_modes)
26831 (XTread_socket, x_connection_closed, x_term_init)
26832 (x_term_init, x_delete_display): Add terminal parameter.
26833 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
26834 X connections.
26835
26836 * frame.c: Include termchar.h.
26837 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
26838 (Qwindow_system, Qenvironment, Qterm_environment_variable)
26839 (Qdisplay_environment_variable): New vars.
26840 (Fframep): Deal with output_initial.
26841 (Fframe-live-p): Doc fix.
26842 (Fwindow-system): New function.
26843 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
26844 (make_terminal_frame): Don't create frames on a terminal that is
26845 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
26846 (store_frame_param): Check for found_for_frame before calling XFRAME.
26847 (Fmake_terminal_frame): Handle NULL tty names correctly.
26848 (syms_of_frame): Enhance doc string of `default-frame-alist'.
26849 (Fdelete_frame): Remove unused variable `count'. Don't allow other
26850 frames to refer to a deleted frame in their 'environment parameter.
26851 (Fframe_with_environment): New function.
26852 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
26853 (get_future_frame_param): New function.
26854 (Fmake_terminal_frame): Use it.
26855 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
26856
26857 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
26858 * sysdep.c (reset_sys_modes): Update for renames.
26859
26860 * keyboard.c (tty_read_avail_input): New function.
26861 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
26862 (syms_of_keyboard): Defsubr them.
26863 (Fset_input_meta_mode, Fset_quit_char): New functions.
26864 (Fset_input_mode): Split to above functions.
26865 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
26866 parameter. Use it in call to `read_char'.
26867 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
26868 Set wrong_kboard_jmpbuf correctly in recursive calls.
26869 Use current_kboard to access Vkeyboard_translate_table.
26870 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
26871 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
26872 Update longjmp invocations. Remember the original current_kboard,
26873 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
26874 changes it. Comment out unnecessary calls to
26875 `record_single_kboard_state' and `any_kboard_state'.
26876 Update recursive calls.
26877 (wrong_kboard_jmpbuf): Remove global variable.
26878 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
26879 Handle deleted interrupted_kboards correctly; that is a legal
26880 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
26881 and read_char calls. Abort if interrupted_kboard died in read_char.
26882 (any_kboard_state, single_kboard_state)
26883 (push_frame_kboard): Remove function.
26884 (pop_kboard): Switch out of single_kboard mode if the kboard has
26885 been deleted. Remove unused variable. Help debugging by not
26886 changing current_kboard unnecessarily. Set current_kboard to the
26887 kboard of the selected frame when the stored kboard object has
26888 been deleted before pop_kboard.
26889 (temporarily_switch_to_single_kboard): Change first parameter to a
26890 frame pointer. Throw an error when caller wants to change kboards
26891 while in single_kboard mode. Don't push_kboard if we weren't in
26892 single kboard state. Don't pop_kboard if we popped into any
26893 kboard state.
26894 (restore_kboard_configuration): Abort if pop_kboard changed the
26895 kboard in single_kboard mode. Call pop_kboard only after setting
26896 up single_kboard mode.
26897 (Frecursive_edit): Switch to single_kboard mode only in nested
26898 command loops.
26899 (cmd_error, command_loop, command_loop_1, timer_check):
26900 Comment out unnecessary call to `any_kboard_state' and
26901 `record_single_kboard_state'.
26902 (delete_kboard): Exit single_kboard mode if we have just deleted
26903 that kboard. Use FRAME_KBOARD.
26904 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
26905 `fatal_error_signal'.
26906 (record_single_kboard_state): Don't push_kboard if we weren't in
26907 single kboard state. Don't pop_kboard if we popped into any
26908 kboard state.
26909 (push_frame_kboard): Rename to push_kboard.
26910 (kbd_buffer_get_event): Use FRAME_TERMINAL.
26911 (read_avail_input): Read input from all terminals.
26912 (mark_kboards): Also mark Vkeyboard_translate_table.
26913 (kbd_buffer_store_event_hold): Simplify condition.
26914 (read_key_sequence): Reinitialize fkey and keytran at each replay.
26915 (Vkeyboard_translate_table): Move to struct kboard.
26916 (init_kboard): Initialize Vkeyboard_translate_table.
26917 (syms_of_keyboard): Use DEFVAR_KBOARD to define
26918 Vkeyboard_translate_table. Update doc strings. Update docs of
26919 local-function-key-map and function-key-map.
26920
26921 * terminal.c: New file.
26922
26923 * term.c: Include errno.h.
26924 (Vring_bell_function, device_list, initial_device)
26925 (next_device_id, ring_bell, update_begin, update_end)
26926 (set_terminal_window, cursor_to, raw_cursor_to)
26927 (clear_to_end, clear_frame, clear_end_of_line)
26928 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
26929 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
26930 (syms_of_term): Move their initialization to terminal.c.
26931 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
26932 (Ftty_display_color_cells)
26933 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
26934 (clear_tty_hooks, set_tty_hooks)
26935 (init_tty, maybe_fatal): New functions.
26936 (Ftty_type): Return nil if terminal is not on a tty instead of
26937 throwing an error. Doc update.
26938 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
26939 Doc update. Initialize new subrs and variables.
26940 (delete_tty): Use terminal->deleted.
26941 (tty_set_terminal_modes): Rename from set_terminal_modes.
26942 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
26943 (set_scroll_region): Rename to `tty_set_scroll_region'.
26944 (turn_on_insert): Rename to `tty_turn_on_insert'.
26945 (turn_off_insert): Rename to `tty_turn_off_insert'.
26946 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
26947 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
26948 (toggle_highligh): Rename to `tty_toggle_highlight'.
26949 (background_highlight): Rename to `tty_background_highlight'.
26950 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
26951 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
26952 (tty_set_scroll_region, tty_background_highlight)
26953 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
26954 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
26955 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
26956 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
26957 Add static modifier.
26958 (tty_reset_terminal_modes, tty_set_terminal_window)
26959 (tty_set_scroll_region, tty_background_highlight)
26960 (tty_highlight_if_desired, tty_cursor_to)
26961 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
26962 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
26963 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
26964 renames.
26965
26966 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
26967
26968 * keyboard.c: Qrtl is new.
26969 (parse_tool_bar_item): Handle :rtl keyword.
26970 (syms_of_keyboard): Intern :rtl keyword.
26971
26972 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
26973
26974 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
26975 so no Lisp code is executed.
26976 (file_for_image, find_rtl_image): New functions.
26977 (xg_get_image_for_pixmap): Use file_for_image.
26978 (update_frame_tool_bar): If direction is RTL, use RTL image if
26979 defined. Use Gtk stock images if defined.
26980
26981 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26982
26983 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
26984 for nonexistent or zero-width glyph in composition glyph.
26985
26986 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
26987
26988 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
26989
26990 * xdisp.c (Finvisible_p): New function.
26991 (syms_of_xdisp): defsubr it.
26992
26993 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
26994
26995 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
26996 Doc fixes.
26997
26998 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26999
27000 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
27001
27002 2007-08-24 Martin Rudalics <rudalics@gmx.at>
27003
27004 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
27005 whether decoding has modified buffer contents.
27006
27007 2007-08-24 Jason Rumney <jasonr@gnu.org>
27008
27009 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
27010 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
27011 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
27012 (init_svg_functions) [HAVE_NTGUI]: New function.
27013 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
27014 (svg_load_image): Use them.
27015 (svg_load_image) [HAVE_NTGUI]: Implement background.
27016
27017 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27018
27019 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
27020 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
27021 (LIBX): Remove @RSVG_LIBS@.
27022 (LIBES): Add $(RSVG_LIBS).
27023
27024 * image.c (svg_load_image): Blend with specified background if exists.
27025 Use IMAGE_BACKGROUND. Add Mac OS Support.
27026
27027 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
27028 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
27029 Remove macros.
27030 [MAC_OSX] (socket_callback): Do nothing.
27031 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
27032 ReceiveNextEvent.
27033 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
27034 socket_callback.
27035 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
27036
27037 2007-08-22 Glenn Morris <rgm@gnu.org>
27038
27039 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
27040
27041 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
27042
27043 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
27044
27045 * image.c: Add support for SVG images. Some additional comments
27046 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
27047 (svg_image_p): New function to test for SVG image.
27048 (svg_load): New function to load SVG image.
27049 (svg_load_image): New function, helper for svg_load.
27050 (Qsvg): New Lisp_object.
27051 (svg_keyword_index): New enum.
27052 (svg_format): New static `image_keyword' struct.
27053 (svg_type): New static `image_type' struct.
27054 (librsvg/rsvg.h): Include it.
27055
27056 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
27057
27058 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
27059
27060 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
27061
27062 * lread.c (Qold_style_backquotes): New var.
27063 (syms_of_lread): Init and staticpro it.
27064 (load_warn_old_style_backquotes): New fun.
27065 (Fload): Use them to warn about old style backquotes.
27066 (end_of_file_error, Fload): Remove unused vars.
27067
27068 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
27069
27070 * lread.c (Vold_style_backquotes): New var.
27071 (syms_of_lread): Init and export it to Elisp.
27072 (read1): Set it when we find an old-style (back)quote.
27073
27074 2007-08-22 Jason Rumney <jasonr@gnu.org>
27075
27076 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
27077
27078 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
27079
27080 * puresize.h (BASE_PURESIZE): Increase to 1140000.
27081
27082 2007-08-19 Richard Stallman <rms@gnu.org>
27083
27084 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
27085
27086 2007-08-19 Andreas Schwab <schwab@suse.de>
27087
27088 * alloc.c (pure): Round PURESIZE up.
27089
27090 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
27091
27092 * xterm.c (handle_one_xevent): Remove check that mouse click is in
27093 active frame.
27094
27095 2007-08-16 Richard Stallman <rms@gnu.org>
27096
27097 * eval.c (Fcommandp): Add parens to clarify.
27098
27099 * minibuf.c (Fall_completions): Use enum for type of table.
27100
27101 * emacs.c (USAGE2): Improve text.
27102
27103 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
27104
27105 * term.c (tty_default_color_capabilities): Declare static
27106 variables in file scope, to avoid HPUX compiler problem.
27107
27108 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
27109
27110 * gtkutil.c (update_frame_tool_bar): Use -1 as index
27111 to gtk_toolbar_insert.
27112
27113 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
27114
27115 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
27116
27117 * insdel.c (reset_var_on_error): New fun.
27118 (signal_before_change, signal_after_change):
27119 Use it to reset (after|before)-change-functions to nil in case of error.
27120 Bind inhibit-modification-hooks to t.
27121 Don't bind (after|before)-change-functions to nil while they run.
27122
27123 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27124
27125 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
27126 filling pixmap with stippled background.
27127
27128 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27129
27130 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
27131 Don't use invisible frame as parent window for repositioning.
27132
27133 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
27134
27135 * print.c (new_backquote_output): Rename from old_backquote_output.
27136 (print): Inverse its logic (according to its name) so as to match the
27137 behavior of new_backquote_flag in lread.c.
27138
27139 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27140
27141 * gmalloc.c (posix_memalign): New function.
27142
27143 * macterm.c (frame_highlight, frame_unhighlight): Don't call
27144 ActivateControl/DeactivateControl here.
27145 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
27146 frame-notice-user-settings is non-nil.
27147 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
27148 for kEventParamFMFontStyle.
27149 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
27150 mac_pass_command_to_system and mac_pass_control_to_system here.
27151 (XTread_socket): Call ActivateControl/DeactivateControl here.
27152 (XTread_socket) [TARGET_API_MAC_CARBON]:
27153 Check mac_pass_command_to_system and mac_pass_control_to_system here.
27154 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
27155 for window repositioning.
27156
27157 2007-08-08 Glenn Morris <rgm@gnu.org>
27158
27159 * Replace `iff' in doc-strings and comments.
27160
27161 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
27162
27163 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
27164
27165 2007-08-07 Martin Rudalics <rudalics@gmx.at>
27166
27167 * fileio.c (Finsert_file_contents): Run format-decode and
27168 after_insert_file_functions on entire buffer when REPLACE is
27169 non-nil and inhibit modification_hooks and point_motion_hooks.
27170 For consistency, run after_insert_file_functions iff something
27171 got inserted. Move signal_after_change and update_compositions
27172 after code running after_insert_file_functions. Make sure that
27173 undo_list doesn't record intermediate steps of the decoding process.
27174
27175 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27176
27177 * emacs.c (main)
27178 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
27179 Call malloc_enable_thread on interactive startup.
27180
27181 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
27182 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
27183 [USE_PTHREAD]: Conditionalize with it.
27184 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
27185 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
27186 New functions.
27187
27188 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
27189
27190 * xdisp.c (redisplay_window): When restoring original buffer
27191 position, make sure it is still valid.
27192
27193 * image.c (png_load): Ignore png-supplied background color.
27194
27195 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27196
27197 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
27198 Use kCFAbsoluteTimeIntervalSince1970.
27199
27200 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
27201 New variable.
27202 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
27203 event loop should be quit.
27204 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
27205 Quit dialog event loop if quit_dialog_event_loop is set.
27206
27207 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
27208 (Selection): New typedef. Use instead of ScrapRef.
27209 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
27210 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
27211 (mac_clear_selection): Rename from clear_scrap.
27212 (get_flavor_type_from_symbol): New argument SEL and subsume function of
27213 scrap_has_target_type. All uses changed.
27214 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
27215 (mac_selection_has_target_p): New functions.
27216 (mac_put_selection_value): Rename from put_scrap_string.
27217 (mac_get_selection_value): Rename from get_scrap_string.
27218 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
27219 (put_scrap_private_timestamp, scrap_has_target_type)
27220 (get_scrap_private_timestamp): Remove functions.
27221 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
27222 (x_own_selection, x_get_local_selection):
27223 Use mac_valid_selection_value_p.
27224 (x_own_selection): Don't use put_scrap_private_timestamp.
27225 Record OWNERSHIP-INFO into Vselection_alist instead.
27226 (x_get_local_selection): Don't check type if request is local.
27227 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
27228 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
27229
27230 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
27231
27232 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
27233 add comment explaining why.
27234
27235 2007-08-03 Richard Stallman <rms@gnu.org>
27236
27237 * fileio.c (Fvisited_file_modtime): Use make_time.
27238
27239 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
27240
27241 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
27242 build.
27243
27244 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
27245
27246 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
27247
27248 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
27249
27250 * puresize.h (BASE_PURESIZE): Increase to 1130000.
27251
27252 2007-07-30 Richard Stallman <rms@gnu.org>
27253
27254 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
27255
27256 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
27257
27258 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
27259
27260 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
27261
27262 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
27263 remote default-directory.
27264
27265 * buffer.c (mode-line-format): Update doc string.
27266
27267 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27268
27269 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
27270 scroll bar gap.
27271 (x_scroll_bar_create): Set bar->fringe_extended_p.
27272 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
27273 on frame edge. Check fringe background extension. Don't clear
27274 extended fringe background area.
27275
27276 * w32term.h (struct scroll_bar): New member fringe_extended_p.
27277 (w32_fill_area): Enclose multiple statements with do ... while (0).
27278
27279 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
27280 Extend fringe background to scroll bar gap.
27281 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
27282 Set bar->fringe_extended_p.
27283 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
27284 Put leftmost/rightmost scroll bars on frame edge. Check fringe
27285 background extension. Don't clear extended fringe background area.
27286
27287 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
27288 New member fringe_extended_p.
27289
27290 2007-07-25 Glenn Morris <rgm@gnu.org>
27291
27292 * Relicense all FSF files to GPLv3 or later.
27293
27294 * COPYING: Switch to GPLv3.
27295
27296 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
27297
27298 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
27299
27300 * data.c (Finteractive_form): Check for the presence of an
27301 `interactive-form' symbol property more thoroughly.
27302
27303 * data.c (Finteractive_form): Use an `interactive-form' property if
27304 present, analogous to the function-documentation property.
27305
27306 2007-07-24 Jason Rumney <jasonr@gnu.org>
27307
27308 * w32fns.c (x_real_positions): Get real position from OS instead of
27309 calculating it.
27310
27311 2007-07-23 Jason Rumney <jasonr@gnu.org>
27312
27313 * filelock.c (current_lock_owner): Allow for @ sign in username.
27314
27315 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
27316
27317 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
27318 remote default-directory.
27319
27320 * buffer.c (mode-line-format): Describe above case in doc string.
27321
27322 2007-07-20 Eli Zaretskii <eliz@gnu.org>
27323
27324 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
27325 Define if not defined.
27326
27327 2007-07-18 Jason Rumney <jasonr@gnu.org>
27328
27329 * w32proc.c (w32_executable_type): Handle 64 bit executables.
27330
27331 2007-07-18 Richard Stallman <rms@gnu.org>
27332
27333 * data.c (Fsetq_default): Doc fix.
27334
27335 * eval.c (Fsetq): Doc fix.
27336
27337 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
27338
27339 * coding.c (Ffind_operation_coding_system):
27340 * eval.c (For, Fand): Doc fixes.
27341 Reported by Johan Bockgård.
27342
27343 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
27344
27345 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
27346
27347 * xterm.h: Declare x_ewmh_activate_frame.
27348
27349 * xterm.c (x_ewmh_activate_frame): New function.
27350 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
27351
27352 2007-07-17 Martin Rudalics <rudalics@gmx.at>
27353
27354 * window.c (Fdisplay_buffer): If largest or LRU window is the
27355 only window, split it even if it is not eligible for splitting.
27356 This restores the original behavior broken by the 2007-07-15
27357 change.
27358
27359 2007-07-17 Glenn Morris <rgm@gnu.org>
27360
27361 * abbrev.c (abbrev_check_chars): New function.
27362 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
27363 Call abbrev_check_chars to check abbrev characters are word
27364 constituents. Doc fix.
27365
27366 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
27367
27368 * process.c (Fstart_process, Fmake_network_process)
27369 (read_process_output): Fix up last changes.
27370
27371 2007-07-16 Eli Zaretskii <eliz@gnu.org>
27372
27373 * makefile.w32-in (clean): Don't delete *~.
27374
27375 2007-07-16 Andreas Schwab <schwab@suse.de>
27376
27377 * window.c (Fdisplay_buffer): Use NILP.
27378 (Fset_window_scroll_bars): Likewise.
27379
27380 2007-07-15 Martin Rudalics <rudalics@gmx.at>
27381
27382 * window.c (window_min_size_2): New function.
27383 (window_min_size_1, size_window, Fdisplay_buffer)
27384 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
27385 windows without mode- or header-lines when window-min-height is
27386 too small.
27387 (size_window): Reset nodelete_p after testing it, following an
27388 earlier note by Kim F. Storm.
27389 (display_buffer): Do not set split_height_threshold to twice the
27390 value of window_min_height to avoid changing the value of a
27391 customizable variable. Rather explicitly check whether the
27392 height of the window that shall be splitted is at least as large
27393 as split_height_threshold.
27394 (Fwindow_full_width_p): New defun.
27395 (syms_of_window): Defsubr it.
27396
27397 * window.h: Add EXFUN for Fwindow_full_width_p.
27398
27399 2007-07-14 Jason Rumney <jasonr@gnu.org>
27400
27401 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
27402
27403 2007-07-14 Richard Stallman <rms@gnu.org>
27404
27405 * eval.c (maybe_call_debugger): New function.
27406 (find_handler_clause): Use maybe_call_debugger.
27407 Call it when the handler says `debug'.
27408 Eliminate DEBUGGER_VALUE_PTR.
27409 (Fsignal): Eliminate debugger_value.
27410 (Qdebug): New variable.
27411 (syms_of_eval): Initialize it.
27412
27413 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
27414
27415 * eval.c (Fprogn):
27416 * keyboard.c (Ftrack_mouse):
27417 * print.c (Fwith_output_to_temp_buffer):
27418 * window.c (Fsave_window_excursion): Doc fix.
27419
27420 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
27421
27422 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
27423
27424 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
27425
27426 * process.h (struct Lisp_Process): Turn slots infd, outfd,
27427 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
27428 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
27429 read_output_delay, and read_output_skip from Lisp_Objects to ints.
27430 Remove unused encoding_carryover.
27431 * process.c: Adjust all functions accordingly.
27432
27433 2007-07-12 Richard Stallman <rms@gnu.org>
27434
27435 * term.c: Include unistd.h only if HAVE_UNISTD_H.
27436
27437 2007-07-11 Jason Rumney <jasonr@gnu.org>
27438
27439 * makefile.w32-in (LIBS): Include OLE32.
27440
27441 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
27442 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
27443
27444 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
27445
27446 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
27447 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
27448 from a Lisp_Object into a bare pointer.
27449 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
27450 Adjust the code correspondingly.
27451
27452 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
27453
27454 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
27455 (term_show_mouse_face): Remove unused var `j'.
27456 (handle_one_term_event): Remove unused vars `i' and `j'.
27457 Don't cast return value of ttyname since it's not necessary.
27458
27459 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
27460
27461 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
27462 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
27463
27464 * fns.c (map_char_table): Use an array of int for `indices' rather than
27465 an array of Lisp_Objects (which are only ever integers anyway).
27466 (Fmap_char_table): Update caller.
27467 * lisp.h: Update prototype.
27468 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
27469 * fontset.c (Ffontset_info):
27470 * casetab.c (set_case_table): Update callers.
27471
27472 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
27473
27474 * keymap.c (struct accessible_keymaps_data)
27475 (struct where_is_internal_data): New structures.
27476 (accessible_keymaps_1, where_is_internal_1): Use them to change
27477 interface to adhere to the one used by map_keymap.
27478 (Faccessible_keymaps, where_is_internal): Use map_keymap.
27479 (accessible_keymaps_char_table, where_is_internal_2): Remove.
27480
27481 * keymap.h (map_keymap_function_t): More informative prototype.
27482
27483 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
27484
27485 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
27486 (looking_at_1): Don't change search_regs and last_thing_searched
27487 if `inhibit-changing-match-data' is non-nil.
27488 (string_match_1, search_buffer, set_search_regs): Likewise.
27489 (syms_of_search): Add Lisp level definition for
27490 `inhibit-changing-match-data' and set it to nil.
27491 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
27492 start and end of the match, instead of using values in search_regs.
27493
27494 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
27495
27496 * minibuf.c (Fcompleting_read): New value `confirm-only'
27497 for `require-match'.
27498
27499 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
27500
27501 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
27502 part of the 2007-06-27 change to syms_of_fileio.
27503
27504 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27505
27506 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
27507 Check WINDOWP before using XWINDOW. Consolidate return statements.
27508
27509 2007-06-27 Richard Stallman <rms@gnu.org>
27510
27511 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
27512
27513 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
27514
27515 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
27516
27517 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27518
27519 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
27520 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
27521 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
27522 (_free_internal, memalign): Use them.
27523 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
27524 Initialize to PTHREAD_MUTEX_INITIALIZER.
27525 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
27526 (morecore_nolock): Rename from morecore. All uses changed.
27527 Use only nolock versions of internal allocation functions.
27528 (_malloc_internal_nolock, _realloc_internal_nolock)
27529 (_free_internal_nolock): New functions created from
27530 _malloc_internal, _realloc_internal, and _free_internal.
27531 (_malloc_internal, _realloc_internal, _free_internal): Use them.
27532 Copy hook value to automatic variable before its use.
27533 (memalign): Copy hook value to automatic variable before its use.
27534
27535 2007-06-26 Kenichi Handa <handa@m17n.org>
27536
27537 * coding.c (Ffind_operation_coding_system): Docstring improved.
27538 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
27539
27540 2007-06-25 David Kastrup <dak@gnu.org>
27541
27542 * keymap.c (Fcurrent_active_maps): Add `position' argument.
27543 (Fwhere_is_internal): Adjust call to `current-active-maps' to
27544 cater for additional parameter.
27545
27546 * keymap.h: Adjust number of parameters to `current-active-maps'.
27547
27548 * doc.c (Fsubstitute_command_keys): Adjust call of
27549 `current-active-maps'.
27550
27551 2007-06-25 David Kastrup <dak@gnu.org>
27552
27553 * callint.c (Fcall_interactively): Make the parsing of interactive
27554 specs somewhat more readable.
27555
27556 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27557
27558 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
27559 to scroll bar gap also when bitmap fills fringe. Draw only foreground
27560 if extended background has already been filled.
27561
27562 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27563
27564 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
27565 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
27566
27567 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
27568 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
27569 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
27570 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
27571 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
27572 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
27573 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
27574 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
27575 Run timers during dialog popup.
27576 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
27577
27578 2007-06-21 Jason Rumney <jasonr@gnu.org>
27579
27580 * image.c (convert_mono_to_color_image): Swap fore and background.
27581
27582 2007-06-20 Jason Rumney <jasonr@gnu.org>
27583
27584 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
27585 (w32_free_bdf_font): Unmap memory not handle.
27586
27587 2007-06-20 Sam Steingold <sds@gnu.org>
27588
27589 * gmalloc.c (__morecore): Fix the declaration to comply with the
27590 definition.
27591
27592 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
27593
27594 * w32term.c (w32_delete_display): Remove leftover declaration.
27595 (w32_define_cursor, w32_initialize): Make static.
27596
27597 * w32.c (_wsa_errlist): Fix typo in error message.
27598 (init_environment): Ignore any environment variable from the
27599 registry having a null value.
27600
27601 2007-06-20 Glenn Morris <rgm@gnu.org>
27602
27603 * Makefile.in (LIBGIF): Default to -lgif.
27604
27605 2007-06-17 Jason Rumney <jasonr@gnu.org>
27606
27607 * w32menu.c (add_menu_item): Don't use multibyte string functions on
27608 unicode strings.
27609
27610 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
27611
27612 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
27613 Fix typo in docstring.
27614
27615 2007-06-16 Eli Zaretskii <eliz@gnu.org>
27616
27617 * w32menu.c (add_menu_item): Escape `&' characters in menu items
27618 and their keybindings.
27619
27620 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
27621
27622 * composite.c (update_compositions): Fix last fix.
27623
27624 2007-06-14 Jason Rumney <jasonr@gnu.org>
27625
27626 * w32.c (get_process_times_fn): New function pointer.
27627 (globals_of_w32): Intialize it if present in kernel32.dll.
27628 (w32_get_internal_run_time): New function.
27629
27630 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
27631
27632 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
27633
27634 * composite.c (update_compositions): Check the validness of
27635 compositions.
27636
27637 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27638
27639 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
27640 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
27641
27642 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
27643 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
27644
27645 * macgui.h (USE_MAC_TOOLBAR): New define.
27646
27647 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
27648 Return immediately unless popup is activated.
27649
27650 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
27651 background to scroll bar gap.
27652 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
27653 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
27654 scroll bars on frame edge. Check fringe background extension.
27655 Don't clear extended fringe background area.
27656 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
27657 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
27658 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
27659 [USE_MAC_TOOLBAR]: New macros.
27660 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
27661 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
27662 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
27663 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
27664 [USE_MAC_TOOLBAR]: New functions.
27665 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
27666 manually if previous repositioning has failed.
27667 (mac_handle_keyboard_event): Use precomputed event kind.
27668 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
27669 as tool bar item click. Handle mouse movement over tool bar items.
27670
27671 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
27672 toolbar_win_gravity.
27673 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
27674 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
27675 Add externs.
27676
27677 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
27678 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
27679
27680 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
27681
27682 * image.c (search_image_cache): Remove unused variable.
27683
27684 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
27685
27686 * xfns.c, xmenu.c: Link to xaw3d if available.
27687
27688 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27689
27690 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
27691 frame_foreground and frame_background.
27692
27693 * image.c (lookup_image): Save frame foreground and background colors.
27694 (search_image_cache): Check if saved and current frame colors match.
27695
27696 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
27697
27698 * regex.c (regex_compile): Remove the `regnum' counter.
27699 Use bufp->re_nsub instead. Add support for \(?N:RE\).
27700
27701 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
27702
27703 * term.c: Include intervals.h to declare Fget_text_property.
27704
27705 2007-06-10 Jason Rumney <jasonr@gnu.org>
27706
27707 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
27708
27709 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
27710
27711 * callint.c (Fcall_interactively):
27712 * editfns.c (Fdelete_and_extract_region):
27713 * fileio.c (Fread_file_name):
27714 * fns.c (Fmapconcat):
27715 * keyboard.c (cmd_error_internal):
27716 * keymap.c (Fkey_description):
27717 * lread.c (openp):
27718 * minibuf.c (read_minibuf):
27719 * search.c (wordify):
27720 * sunfns.c (sel_read):
27721 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
27722 * xfns.c (x_default_scroll_bar_color_parameter):
27723 * xmenu.c (menu_help_callback):
27724 * xselect.c (Fx_get_atom_name):
27725 * xterm.c (x_term_init): Use empty_unibyte_string.
27726
27727 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
27728
27729 * alloc.c (init_strings): Initialize canonical empty strings.
27730 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
27731 canonical empty string when the requested size is 0.
27732
27733 * emacs.c (empty_unibyte_string): Rename from empty_string.
27734 (empty_multibyte_string): New canonical empty string.
27735 (syms_of_emacs): Don't initialize empty_string.
27736
27737 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
27738 string, if appropriate.
27739 (empty_unibyte_string, empty_multibyte_string): New externs.
27740 (empty_string): Remove extern.
27741
27742 * lread.c (syms_of_lread): Use empty_unibyte_string.
27743
27744 2007-06-07 Jason Rumney <jasonr@gnu.org>
27745
27746 * s/ms-w32.h: Don't define HAVE_TZNAME.
27747
27748 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
27749
27750 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27751
27752 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
27753
27754 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
27755 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
27756
27757 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
27758 Don't call next handler.
27759 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
27760 Remove argument. Install handler to application.
27761 (set_frame_menubar): Don't change deep_p.
27762 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
27763 FRAME_OUTER_TO_INNER_DIFF_Y.
27764 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
27765 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
27766 [HAVE_DIALOGS]: New macros.
27767 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
27768 Use them.
27769 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
27770
27771 * macselect.c [MAC_OSX] (install_service_handler): Rename from
27772 init_service_handler. All callers changed. Return OSStatus value.
27773
27774 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
27775 All callers changed so as not to call SetPortWindowPort.
27776 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
27777 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
27778 mac_draw_string_common.
27779 (mac_draw_image_string_qd): Likewise.
27780 (mac_draw_string_common): Use them. Add INLINE.
27781 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
27782 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
27783 GetGlobalMouse.
27784 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
27785 and FRAME_OUTER_TO_INNER_DIFF_Y.
27786 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
27787 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
27788 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
27789 repositioning window to mac_handle_window_event.
27790 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
27791 saving window location to mac_handle_window_event
27792 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
27793 (install_menu_target_item_handler): Remove argument in extern.
27794 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
27795 Also accept command events.
27796 (do_keystroke): New function created from XTread_socket.
27797 (init_command_handler): Remove functions.
27798 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
27799 and save window location by kEventWindowShowing and kEventWindowHiding
27800 handlers here. Don't call next handler for window state change and
27801 focus events.
27802 (mac_handle_application_event, mac_handle_keyboard_event)
27803 [TARGET_API_MAC_CARBON]: New functions.
27804 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
27805 kEventWindowShowing and kEventWindowHiding events. Move installation
27806 of mouse, font, text input and menu target item handlers to
27807 install_application_handler.
27808 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
27809 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
27810 New function.
27811 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
27812 Register it.
27813 (XTread_socket) [TARGET_API_MAC_CARBON]:
27814 Consolidate SendEventToEventTarget calls.
27815 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
27816 Move application activation handler to mac_handle_application_event.
27817 Move keyboard handler to mac_handle_keyboard_event.
27818 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
27819 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
27820 init_command_handler. Call install_application_handler.
27821
27822 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
27823 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
27824
27825 2007-06-07 Glenn Morris <rgm@gnu.org>
27826
27827 * emacs.c (main): Use `emacs-copyright' in --version output.
27828
27829 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
27830
27831 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
27832
27833 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27834
27835 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
27836
27837 * macgui.h: Replace WindowPtr with WindowRef.
27838
27839 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
27840 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
27841 Replace ControlHandle with ControlRef.
27842 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
27843
27844 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
27845 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
27846 Replace ControlHandle with ControlRef.
27847 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
27848 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
27849
27850 * macterm.h (struct scroll_bar): Rename member control_handle_low
27851 and control_handle_high to control_ref_low and control_ref_high.
27852 All uses changed.
27853 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
27854 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
27855 respectively. All uses changed.
27856 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
27857 (install_window_handler, remove_window_handler): Replace WindowPtr
27858 with WindowRef in externs.
27859
27860 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
27861
27862 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
27863
27864 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
27865
27866 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
27867
27868 * frame.c (Fmouse_position, Fmouse_pixel_position):
27869 Condition on HAVE_GPM too.
27870
27871 * term.c (term_mouse_highlight): Remove unused variables.
27872 (Fterm_open_connection): Set gpm_zerobased to 1.
27873 (term_mouse_movement, term_mouse_click, handle_one_term_event):
27874 Use zero based co-ordinates.
27875 (handle_one_term_event): Report a drag as mouse movement too.
27876
27877 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
27878
27879 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
27880
27881 * image.c (search_image_cache): New function. Require background
27882 color match if background color is unspecified in the image spec.
27883 (uncache_image, lookup_image): Use it.
27884
27885 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
27886
27887 * window.c (Fshrink_window): Reflow docstring.
27888
27889 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
27890
27891 * Version 22.1 released.
27892
27893 2007-06-01 Richard Stallman <rms@gnu.org>
27894
27895 * xfns.c (x_encode_text): Add GCPRO.
27896
27897 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27898
27899 * xfns.c (x_set_name_internal): Save encoded name before
27900 x_encode_text in case string data is relocated.
27901
27902 2007-05-31 Richard Stallman <rms@gnu.org>
27903
27904 * buffer.c (syms_of_buffer): Doc fix.
27905
27906 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
27907
27908 * sysdep.c (init_sys_modes): Add rather than replace with
27909 O_NONBLOCK.
27910
27911 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
27912 term_mouse_moveto.
27913
27914 * termhooks.h (term_mouse_moveto): New extern.
27915
27916 * term.c (mouse_face_window): Rename...
27917 (Qmouse_face_window): ...to this.
27918 (term_show_mouse_face, term_clear_mouse_face)
27919 (term_mouse_highlight): Use Qmouse_face_window.
27920 (term_mouse_moveto): New function.
27921 (term_mouse_position): Make it work.
27922 (syms_of_term): Uncomment assignment to mouse_position_hook.
27923 Staticpro Qmouse_face_window.
27924
27925 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27926
27927 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
27928 around current_column call.
27929
27930 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
27931
27932 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
27933 * xdisp.c (next_element_from_buffer):
27934 * window.c (delete_window):
27935 * term.c (term_mouse_highlight):
27936 * msdos.c (getdefdir):
27937 * macterm.c (mac_create_bitmap_from_bitmap_data)
27938 (init_font_name_table):
27939 * fns.c (Fsxhash):
27940 * data.c (Fmake_local_variable):
27941 * ccl.c (ccl_driver): Likewise.
27942
27943 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27944
27945 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
27946 Call mac_wakeup_from_rne on window size change.
27947
27948 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
27949
27950 * image.c (uncache_image): Fix typo.
27951
27952 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
27953
27954 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
27955
27956 2007-05-22 Richard Stallman <rms@gnu.org>
27957
27958 * xterm.c (x_connection_closed): Remove NO_RETURN.
27959
27960 2007-05-22 Martin Rudalics <rudalics@gmx.at>
27961
27962 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
27963
27964 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
27965
27966 * image.c (uncache_image): New function.
27967 (Fimage_refresh): New function.
27968
27969 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
27970
27971 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
27972
27973 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
27974
27975 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
27976 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
27977
27978 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
27979
27980 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
27981 conditional on [HAVE_GPM_H].
27982
27983 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
27984
27985 * syntax.c (skip_chars): Update syntax-table only after we checked that
27986 the new location is valid.
27987
27988 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27989
27990 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
27991 mac_get_window_bounds.
27992
27993 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
27994
27995 * Makefile.in (LIBGPM): Allow it to be set from configure.
27996 If set then link Emacs with it.
27997
27998 * config.in: Regenerate.
27999
28000 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
28001 New externs.
28002
28003 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
28004 Include gpm.h.
28005 (handle_one_term_event, term_gpm): New externs.
28006
28007 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
28008 and allow it to be interrupted by SIGIO.
28009
28010 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
28011 (wait_reading_process_output): Wait on gpm_fd too.
28012 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
28013 (add_gpm_wait_descriptor_called_flag): New variable.
28014 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
28015
28016 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
28017 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
28018 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
28019 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
28020 (make_lispy_event): Add case GPM_CLICK_EVENT.
28021 (read_avail_input): Handle mouse input.
28022
28023 * term.c (write_glyphs_with_face): New function.
28024 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
28025 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
28026 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
28027 (mouse_face_face_id, term_gpm, pos_x, pos_y)
28028 (last_mouse_x, last_mouse_y): New variables.
28029 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
28030 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
28031 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
28032 (Fterm_close_connection): New functions.
28033 (term_init): Initialise mouse_face_window.
28034
28035 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
28036
28037 * xdisp.c (redisplay_window): If first window line is a
28038 continuation line, recompute the new window start instead of
28039 recentering.
28040
28041 2007-05-18 Glenn Morris <rgm@gnu.org>
28042
28043 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
28044 Suggested by Alfred M. Szmidt <ams@gnu.org>.
28045
28046 2007-05-17 Glenn Morris <rgm@gnu.org>
28047
28048 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
28049
28050 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28051
28052 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
28053 dead key repeat and up events.
28054
28055 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
28056
28057 * image.c (pbm_load): Check image size for monochrome pbm.
28058
28059 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
28060
28061 * xterm.c (XTread_socket): Revert last change.
28062
28063 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
28064
28065 * image.c (pbm_load): Correctly check image size for greyscale pbm.
28066
28067 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
28068
28069 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
28070
28071 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
28072 mixup (YAILOM).
28073
28074 2007-05-07 Andreas Schwab <schwab@suse.de>
28075
28076 * keymap.c (Flookup_key): Fix typo in last change.
28077
28078 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
28079
28080 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
28081 mapping for unibyte strings.
28082
28083 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28084
28085 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
28086 (Fx_popup_dialog) [MAC_OSX]: Likewise.
28087
28088 2007-04-29 Richard Stallman <rms@gnu.org>
28089
28090 * insdel.c (replace_range): For undo, record insertion first.
28091
28092 2007-04-29 Andreas Schwab <schwab@suse.de>
28093
28094 * lisp.h (VECSIZE): Use OFFSETOF.
28095
28096 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28097
28098 * xdisp.c (try_window_reusing_current_matrix): Fix number of
28099 disabled lines.
28100
28101 2007-04-28 Richard Stallman <rms@gnu.org>
28102
28103 * lread.c (read_escape): In a string, \s is always space.
28104
28105 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
28106
28107 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
28108
28109 * gtkutil.c (xg_update_menubar, create_menus): Create empty
28110 submenu for menu bar items.
28111
28112 See ChangeLog.10 for earlier changes.
28113
28114 ;; Local Variables:
28115 ;; coding: utf-8
28116 ;; add-log-time-zone-rule: t
28117 ;; End:
28118
28119 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
28120
28121 This file is part of GNU Emacs.
28122
28123 GNU Emacs is free software: you can redistribute it and/or modify
28124 it under the terms of the GNU General Public License as published by
28125 the Free Software Foundation, either version 3 of the License, or
28126 (at your option) any later version.
28127
28128 GNU Emacs is distributed in the hope that it will be useful,
28129 but WITHOUT ANY WARRANTY; without even the implied warranty of
28130 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28131 GNU General Public License for more details.
28132
28133 You should have received a copy of the GNU General Public License
28134 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28135
28136 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40