* unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
[bpt/emacs.git] / src / ChangeLog
1 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
2
3 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
4 Remove unused local var.
5
6 * editfns.c (Fmessage_box): Remove unused local var.
7
8 2011-03-29 Paul Eggert <eggert@cs.ucla.edu>
9
10 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
11 (note_mode_line_or_margin_highlight, note_mouse_highlight):
12 Omit unused local vars.
13 * window.c (shrink_windows): Omit unused local var.
14 * menu.c (digest_single_submenu): Omit unused local var.
15 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
16 Omit unused local var.
17
18 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
19 Don't assume string length fits in int.
20 (keyremap_step, read_key_sequence): Use size_t for sizes.
21 (read_key_sequence): Don't check last_real_key_start redundantly.
22
23 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
24 instead of alloca (Bug#8344).
25
26 * eval.c (Fbacktrace): Don't assume nargs fits in int.
27 (Fbacktrace_frame): Don't assume nframes fits in int.
28
29 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
30
31 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
32 concerns.
33
34 * term.c (produce_glyphless_glyph): Remove unnecessary test.
35
36 * cm.c (calccost): Turn while-do into do-while, for clarity.
37
38 * keyboard.c (syms_of_keyboard): Use the same style as later
39 in this function when indexing through an array. This also
40 works around GCC bug 48267.
41
42 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
43
44 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
45
46 * chartab.c (sub_char_table_ref_and_range): Redo for slight
47 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
48
49 * keyboard.c, keyboard.h (num_input_events): Now size_t.
50 This avoids undefined behavior on integer overflow, and is a bit
51 more convenient anyway since it is compared to a size_t variable.
52
53 Variadic C functions now count arguments with size_t, not int.
54 This avoids an unnecessary limitation on 64-bit machines, which
55 caused (substring ...) to crash on large vectors (Bug#8344).
56 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
57 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
58 All variadic functions changed accordingly.
59 (struct gcpro.nvars): Now size_t, not int. All uses changed.
60 * data.c (arith_driver, float_arith_driver): Likewise.
61 * editfns.c (general_insert_function): Likewise.
62 * eval.c (struct backtrace.nargs, interactive_p)
63 (internal_condition_case_n, run_hook_with_args, apply_lambda)
64 (funcall_lambda, mark_backtrace): Likewise.
65 * fns.c (concat): Likewise.
66 * frame.c (x_set_frame_parameters): Likewise.
67 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
68 0 if not found, not -1. All callers changed.
69
70 * alloc.c (garbage_collect): Don't assume stack size fits in int.
71 (stack_copy_size): Now size_t, not int.
72 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
73
74 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
75
76 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
77 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
78 All callers changed.
79
80 * lisp.h (multibyte_char_to_unibyte):
81 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
82 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
83 * character.h (CHAR_TO_BYTE8):
84 * cmds.c (internal_self_insert):
85 * editfns.c (general_insert_function):
86 * keymap.c (push_key_description):
87 * search.c (Freplace_match):
88 * xdisp.c (message_dolog, set_message_1): All callers changed.
89
90 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
91
92 * keyboard.c (safe_run_hook_funcall): New function.
93 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
94 don't set the hook to nil, but remove the offending function instead.
95 (Qcommand_hook_internal): Remove, unused.
96 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
97 Vcommand_hook_internal.
98
99 * eval.c (enum run_hooks_condition): Remove.
100 (funcall_nil, funcall_not): New functions.
101 (run_hook_with_args): Call each function through a `funcall' argument.
102 Remove `cond' argument, now redundant.
103 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
104 (Frun_hook_with_args_until_failure): Adjust accordingly.
105 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
106
107 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
108
109 * dispextern.h (string_buffer_position): Remove declaration.
110
111 * print.c (strout): Remove parameter `multibyte', unused since
112 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
113
114 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
115 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
116 All callers changed.
117
118 * w32.c (_wsa_errlist): Use braces for struct initializers.
119
120 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
121 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
122 All callers changed.
123 (string_buffer_position): Likewise. Also, make static (it's never
124 used outside xdisp.c).
125 (cursor_row_p): Remove parameter `w', unused since
126 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
127 (decode_mode_spec): Remove parameter `precision', introduced during
128 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
129 All callers changed.
130
131 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
132
133 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
134
135 2011-03-27 Anders Lindgren <andlind@gmail.com>
136
137 * nsterm.m (ns_menu_bar_is_hidden): New variable.
138 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
139 (ns_update_auto_hide_menu_bar): New functions.
140 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
141 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
142 ns_constrain_all_frames.
143 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
144 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
145
146 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
147
148 * nsmenu.m (runDialogAt): Remove argument to timer_check.
149
150 2011-03-27 Glenn Morris <rgm@gnu.org>
151
152 * syssignal.h: Replace RETSIGTYPE with void.
153 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
154 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
155 Replace SIGTYPE with void everywhere.
156 * s/usg5-4-common.h (SIGTYPE): Remove definition.
157 * s/template.h (SIGTYPE): Remove commented out definition.
158
159 2011-03-26 Eli Zaretskii <eliz@gnu.org>
160
161 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
162 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
163
164 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
165
166 * w32.c (read_unc_volume): Use parameter `henum', instead of
167 global variable `wget_enum_handle'.
168
169 * keymap.c (describe_vector): Remove parameters `indices' and
170 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
171 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
172
173 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
174
175 * keyboard.c (timer_check): Remove parameter `do_it_now',
176 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
177 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
178 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
179
180 * keyboard.c (read_char):
181 * w32menu.c (w32_menu_display_help):
182 * xmenu.c (show_help_event, menu_help_callback):
183 Adjust calls to `show_help_echo'.
184
185 * gtkutil.c (xg_maybe_add_timer):
186 * keyboard.c (readable_events):
187 * process.c (wait_reading_process_output):
188 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
189
190 * insdel.c (adjust_markers_gap_motion):
191 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
192 (gap_left, gap_right): Don't call it.
193
194 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
195
196 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
197 incurred during fontification.
198
199 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
200
201 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
202 (DEFVAR_PER_BUFFER): Don't pass it.
203
204 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
205 (scrolling_window): Don't pass it.
206
207 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
208
209 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
210
211 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
212 and `suffix'.
213 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
214 of variables specific to SELinux and computation of `encoded_absname'.
215
216 * image.c (XPutPixel): Remove unused variable `height'.
217
218 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
219
220 * unexw32.c (get_section_info): Remove unused variable `section'.
221
222 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
223 (system_process_attributes): Remove unused variable `sess'.
224 (sys_read): Remove unused variable `err'.
225
226 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
227 (w32_wnd_proc): Remove unused variable `isdead'.
228 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
229 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
230 (x_create_tip_frame): Remove unused variable `tem'.
231
232 * w32inevt.c (w32_console_read_socket):
233 Remove unused variable `no_events'.
234
235 * w32term.c (x_draw_composite_glyph_string_foreground):
236 Remove unused variable `width'.
237
238 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
239
240 * w32term.c (x_set_glyph_string_clipping):
241 Don't pass uninitialized region to CombineRgn.
242
243 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
244
245 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
246 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
247 (Fx_close_connection): Remove unused variable `i'.
248
249 * w32font.c (w32font_draw): Return number of glyphs.
250 (w32font_open_internal): Remove unused variable `i'.
251 (w32font_driver): Add missing initializer.
252
253 * w32menu.c (utf8to16): Remove unused variable `utf16'.
254 (fill_in_menu): Remove unused variable `items_added'.
255
256 * w32term.c (last_mouse_press_frame): Remove static global variable.
257 (w32_clip_to_row): Remove unused variable `f'.
258 (x_delete_terminal): Remove unused variable `i'.
259
260 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
261 (NOTHING): Remove unused static global variable.
262 (uniscribe_check_otf): Remove unused variable `table'.
263 (uniscribe_font_driver): Add missing initializers.
264
265 2011-03-23 Julien Danjou <julien@danjou.info>
266
267 * term.c (Fsuspend_tty, Fresume_tty):
268 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
269 * window.c (temp_output_buffer_show):
270 * insdel.c (signal_before_change):
271 * frame.c (Fhandle_switch_frame):
272 * fileio.c (Fdo_auto_save):
273 * emacs.c (Fkill_emacs):
274 * editfns.c (save_excursion_restore):
275 * cmds.c (internal_self_insert):
276 * callint.c (Fcall_interactively):
277 * buffer.c (Fkill_all_local_variables):
278 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
279 Use Frun_hooks.
280 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
281 unconditionnaly since it does the check itself.
282
283 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
284
285 Fix more problems found by GCC 4.5.2's static checks.
286
287 * coding.c (encode_coding_raw_text): Avoid unnecessary test
288 the first time through the loop, since we know p0 < p1 then.
289 This also avoids a gcc -Wstrict-overflow warning.
290
291 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
292 leading to a memory leak, possible in functions like
293 load_charset_map_from_file that can allocate an unbounded number
294 of objects (Bug#8318).
295
296 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
297 that could (at least in theory) be that large.
298
299 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
300 This is less likely to overflow, and avoids undefined behavior if
301 overflow does occur. All callers changed. Use strtoul to scan
302 for the unsigned long integer.
303 (pint2hrstr): Simplify and tune code slightly.
304 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
305
306 * scroll.c (do_scrolling): Work around GCC bug 48228.
307 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
308
309 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
310 This also avoids a warning with gcc -Wstrict-overflow.
311 (validate_x_resource_name): Simplify count usage.
312 This also avoids a warning with gcc -Wstrict-overflow.
313
314 * fileio.c (Fcopy_file): Report error if fchown or fchmod
315 fail (Bug#8306).
316
317 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
318
319 * process.c (Fmake_network_process): Use socklen_t, not int,
320 where POSIX says socklen_t is required in portable programs.
321 This fixes a porting bug on hosts like 64-bit HP-UX, where
322 socklen_t is wider than int (Bug#8277).
323 (Fmake_network_process, server_accept_connection):
324 (wait_reading_process_output, read_process_output):
325 Likewise.
326
327 * process.c: Rename or move locals to avoid shadowing.
328 (list_processes_1, Fmake_network_process):
329 (read_process_output_error_handler, exec_sentinel_error_handler):
330 Rename or move locals.
331 (Fmake_network_process): Define label "retry_connect" only if needed.
332 (Fnetwork_interface_info): Fix pointer signedness.
333 (process_send_signal): Add cast to avoid pointer signedness problem.
334 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
335 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
336
337 Make tparam.h and terminfo.c consistent.
338 * cm.c (tputs, tgoto, BC, UP): Remove extern decls. Include
339 tparam.h instead, since it declares them.
340 * cm.h (PC): Remove extern decl; tparam.h now does this.
341 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
342 * terminfo.c: Include tparam.h, to check interfaces.
343 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
344 (tparam): Adjust signature to match interface in tparam.h;
345 this removes some undefined behavior. Check that outstring and len
346 are zero, which they always are with Emacs.
347 * tparam.h (PC, BC, UP): New extern decls.
348
349 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
350 (xftfont_open): Rename locals to avoid shadowing.
351
352 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
353 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
354 (OTF_TAG_SYM): Omit macro if not needed.
355 (ftfont_list): Remove unused local.
356 (get_adstyle_property, ftfont_pattern_entity):
357 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
358 Rename locals to avoid shadowing.
359
360 * xfont.c (xfont_list_family): Mark var as initialized.
361
362 * xml.c (make_dom): Now static.
363
364 * composite.c (composition_compute_stop_pos): Rename local to
365 avoid shadowing.
366 (composition_reseat_it): Remove unused locals.
367 (find_automatic_composition, composition_adjust_point): Likewise.
368 (composition_update_it): Mark var as initialized.
369 (find_automatic_composition): Mark vars as initialized,
370 with a FIXME (Bug#8290).
371
372 character.h: Rename locals to avoid shadowing.
373 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
374 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
375 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
376 (BUF_DEC_POS): Be more systematic about renaming local temporaries
377 to avoid shadowing.
378
379 * textprop.c (property_change_between_p): Remove; unused.
380
381 * intervals.c (interval_start_pos): Now static.
382
383 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
384
385 * atimer.c (start_atimer, append_atimer_lists, set_alarm): Rename
386 locals to avoid shadowing.
387
388 * sound.c (wav_play, au_play, Fplay_sound_internal):
389 Fix pointer signedness.
390 (alsa_choose_format): Remove unused local var.
391 (wav_play): Initialize a variable to 0, to prevent undefined
392 behavior (Bug#8278).
393
394 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
395
396 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
397
398 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
399 clobbering (Bug#8298).
400 * sysdep.c (sys_subshell): Likewise.
401 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
402
403 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
404 This should get cleaned up, so that child_setup has the
405 same signature on all platforms.
406
407 * callproc.c (call_process_cleanup): Now static.
408 (relocate_fd): Rename locals to avoid shadowing.
409
410 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
411
412 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
413 not to be necessary, and produces flickering.
414
415 2011-03-20 Glenn Morris <rgm@gnu.org>
416
417 * config.in: Remove file.
418
419 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
420
421 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
422 are now in src/globals.h.
423 (syms_of_minibuf): Remove spurious & from previous change.
424
425 2011-03-20 Leo <sdl.web@gmail.com>
426
427 * minibuf.c (completing-read-function): New variable.
428 (completing-read-default): Rename from completing-read.
429 (completing-read): Call completing-read-function.
430
431 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
432
433 * xfaces.c (Fx_load_color_file):
434 Read color file from absolute filename (bug#8250).
435
436 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
437
438 * makefile.w32-in: Update dependencies.
439
440 2011-03-17 Eli Zaretskii <eliz@gnu.org>
441
442 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
443
444 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
445
446 Fix more problems found by GCC 4.5.2's static checks.
447
448 * process.c (make_serial_process_unwind, send_process_trap):
449 (sigchld_handler): Now static.
450
451 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
452 That way, the code declares only the vars that it needs.
453 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
454 * s/cygwin.h (PTY_ITERATION): Likewise.
455 * s/darwin.h (PTY_ITERATION): Likewise.
456 * s/gnu-linux.h (PTY_ITERATION): Likewise.
457
458 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
459 * process.c (allocate_pty): Don't declare stb unless it's needed.
460
461 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
462 (CONSTANTLIM): Remove; unused.
463 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
464 Define only if needed.
465
466 * unexelf.c (unexec): Name an expression,
467 to avoid gcc -Wbad-function-cast warning.
468 Use a different way to cause a compilation error if anyone uses
469 n rather than nn, a way that does not involve shadowing.
470 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
471
472 * deps.mk (unexalpha.o): Remove; unused.
473
474 New file unexec.h, the (simple) interface for unexec (Bug#8267).
475 * unexec.h: New file.
476 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
477 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
478 Depend on unexec.h.
479 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
480 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
481 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
482 Change as necessary to match prototype in unexec.h.
483
484 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
485 shadowing.
486 (back_comment, skip_chars): Mark vars as initialized.
487
488 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
489 Rename locals to avoid shadowing.
490
491 * lread.c (read1): Rewrite so as not to use empty "else".
492 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
493
494 * print.c (Fredirect_debugging_output): Fix pointer signedess.
495
496 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
497 warning when compiling print.c.
498
499 * font.c (font_unparse_fcname): Abort in an "impossible" situation
500 instead of using an uninitialized var.
501 (font_sort_entities): Mark var as initialized.
502
503 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
504
505 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
506 pointers to constants.
507 (font_parse_fcname): Remove unused vars.
508 (font_delete_unmatched): Now static.
509 (font_get_spec): Remove; unused.
510 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
511 (font_update_drivers, Ffont_get_glyphs, font_add_log):
512 Rename or move locals to avoid shadowing.
513
514 * fns.c (require_nesting_list, require_unwind): Now static.
515 (Ffillarray): Rename locals to avoid shadowing.
516
517 * floatfns.c (domain_error2): Define only if needed.
518 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
519
520 * alloc.c (mark_backtrace): Move decl from here ...
521 * lisp.h: ... to here, so that it can be checked.
522
523 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
524 (Fdefvar): Rewrite so as not to use empty "else".
525 (lisp_indirect_variable): Name an expression,
526 to avoid gcc -Wbad-function-cast warning.
527 (Fdefvar): Rename locals to avoid shadowing.
528
529 * callint.c (quotify_arg, quotify_args): Now static.
530 (Fcall_interactively): Rename locals to avoid shadowing.
531 Use const pointer when appropriate.
532
533 * lisp.h (get_system_name, get_operating_system_release):
534 Move decls here, to check interfaces.
535 * process.c (get_operating_system_release): Move decl to lisp.h.
536 * xrdb.c (get_system_name): Likewise.
537 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
538 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
539 some of which prompt warnings from gcc -Wbad-function-cast.
540 (Fformat_time_string, Fencode_time, Finsert_char):
541 (Ftranslate_region_internal, Fformat):
542 Rename or remove local vars to avoid shadowing.
543 (Ftranslate_region_internal): Mark var as initialized.
544
545 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
546 avoid shadowing.
547
548 * lisp.h (eassert): Check that the argument compiles, even if
549 ENABLE_CHECKING is not defined.
550
551 * data.c (Findirect_variable): Name an expression, to avoid
552 gcc -Wbad-function-cast warning.
553 (default_value, arithcompare, arith_driver, arith_error): Now static.
554 (store_symval_forwarding): Rename local to avoid shadowing.
555 (Fmake_variable_buffer_local, Fmake_local_variable): Mark
556 variables as initialized.
557 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
558
559 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
560 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
561 Rename locals to avoid shadowing.
562 (mark_stack): Move local variables into the #ifdef region where
563 they're used.
564 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
565 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
566 needed otherwise.
567 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
568 (GC_STRING_CHARS): Remove; not used.
569 (Fmemory_limit): Cast sbrk's returned value to char *.
570
571 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
572 avoids undefined behavior in theory.
573
574 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
575
576 Use functions, not macros, for up- and down-casing (Bug#8254).
577 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
578 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
579 to use the following functions instead of these macros.
580 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
581 EMACS_INT, since callers assume the returned value fits in int.
582 (upcase1): Likewise, for UPCASE_TABLE.
583 (uppercasep, lowercasep, upcase): New static inline functions.
584 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
585 the race-condition problem in the old DOWNCASE.
586
587 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
588 Rename locals to avoid shadowing.
589 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
590 (regex_compile, re_search_2, re_match_2_internal):
591 Remove unused local vars.
592 (FREE_VAR): Rewrite so as not to use empty "else",
593 which gcc can warn about.
594 (regex_compile, re_match_2_internal): Mark locals as initialized.
595 (RETALLOC_IF): Define only if needed.
596 (WORDCHAR_P): Likewise. This one is never needed, but is used
597 only in a comment talking about a compiler bug, so put inside
598 the #if 0 of that comment.
599 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
600 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
601 Remove; unused.
602
603 * search.c (boyer_moore): Rename locals to avoid shadowing.
604 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
605 (PREV_CHAR_BOUNDARY): Likewise.
606
607 * search.c (simple_search): Remove unused var.
608
609 * dired.c (compile_pattern): Move decl from here ...
610 * lisp.h: ... to here, so that it can be checked.
611 (struct re_registers): New forward decl.
612
613 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
614
615 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
616 All uses changed.
617 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
618 Rename locals to avoid shadowing.
619 (Fvertical_motion): Mark locals as initialized.
620
621 * casefiddle.c (casify_object, casify_region): Now static.
622 (casify_region): Mark local as initialized.
623
624 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
625
626 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
627 New macros, so that the caller can use some names other than
628 gcpro1, gcpro2, etc.
629 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
630 of the new macros.
631 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
632 argument, for consistency with GCPRO2_VAR, etc: it is now the
633 prefix of the variable, not the variable itself. All uses
634 changed.
635 * dired.c (directory_files_internal, file_name_completion):
636 Rename locals to avoid shadowing.
637
638 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
639 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
640 dired.c's scmp function, had undefined behavior.
641 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
642 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
643 * buffer.h: ... to here, because these macros use current_buffer,
644 and the new implementation with inline functions needs to have
645 current_buffer in scope now, rather than later when the macros
646 are used.
647 (downcase, upcase1): New static inline functions.
648 (DOWNCASE, UPCASE1): Reimplement using these functions.
649 This avoids undefined behavior in expressions like
650 DOWNCASE (x) == DOWNCASE (y), which previously suffered
651 from race conditions in accessing the global variables
652 case_temp1 and case_temp2.
653 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
654 * lisp.h (case_temp1, case_temp2): Remove their decls.
655 * character.h (ASCII_CHAR_P): Move from here ...
656 * lisp.h: ... to here, so that the inline functions mentioned
657 above can use them.
658
659 * dired.c (directory_files_internal_unwind): Now static.
660
661 * fileio.c (file_name_as_directory, directory_file_name):
662 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
663 Now static.
664 (file_name_as_directory): Use const pointers when appropriate.
665 (Fexpand_file_name): Likewise. In particular, newdir might
666 point at constant storage, so make it a const pointer.
667 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
668 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
669 signedness issues.
670 (Fset_file_times, Finsert_file_contents, auto_save_error):
671 Rename locals to avoid shadowing.
672
673 * minibuf.c (choose_minibuf_frame_1): Now static.
674 (Ftry_completion, Fall_completions): Rename or remove locals
675 to avoid shadowing.
676
677 * marker.c (bytepos_to_charpos): Remove; unused.
678
679 * lisp.h (verify_bytepos, count_markers): New decls,
680 so that gcc does not warn that these functions aren't declared.
681
682 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
683 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
684 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
685 (copy_text): Remove unused local var.
686
687 * filelock.c (within_one_second): Now static.
688 (lock_file_1): Rename local to avoid shadowing.
689
690 * buffer.c (fix_overlays_before): Mark locals as initialized.
691 (fix_start_end_in_overlays): Likewise. This function should be
692 simplified by using pointers-to-pointers, but that's a different
693 matter.
694 (switch_to_buffer_1): Now static.
695 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
696 (report_overlay_modification): Rename locals to avoid shadowing.
697
698 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
699 Fix pointer signedness issue.
700 (sys_subshell): Mark local as volatile if checking for lint,
701 to suppress a gcc -Wclobbered warning that does not seem to be right.
702 (MAXPATHLEN): Define only if needed.
703
704 * process.c (serial_open, serial_configure): Move decls from here ...
705 * systty.h: ... to here, so that they can be checked.
706
707 * fns.c (get_random, seed_random): Move extern decls from here ...
708 * lisp.h: ... to here, so that they can be checked.
709
710 * sysdep.c (reset_io): Now static.
711 (wait_for_termination_signal): Remove; unused.
712
713 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
714 (copy_keymap_item, append_key, push_text_char_description):
715 Now static.
716 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
717 (DENSE_TABLE_SIZE): Remove; unused.
718 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
719 (describe_map_tree):
720 Rename locals to avoid shadowing.
721
722 * keyboard.c: Declare functions static if they are not used elsewhere.
723 (echo_char, echo_dash, cmd_error, top_level_2):
724 (poll_for_input, handle_async_input): Now static.
725 (read_char, kbd_buffer_get_event, make_lispy_position):
726 (make_lispy_event, make_lispy_movement, apply_modifiers):
727 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
728 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
729 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
730 (read_key_sequence, read_char): Mark locals as initialized.
731 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
732
733 * keyboard.h (make_ctrl_char): New decl.
734 (mark_kboards): Move decl here ...
735 * alloc.c (mark_kboards): ... from here.
736
737 * lisp.h (force_auto_save_soon): New decl.
738
739 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
740 (DEFINE_DUMMY_FUNCTION): New macro.
741 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
742 Use it.
743 (main): Add casts to avoid warnings
744 if GCC considers string literals to be constants.
745
746 * lisp.h (fatal_error_signal): Add decl, since it's exported.
747
748 * dbusbind.c: Pointer signedness fixes.
749 (xd_signature, xd_append_arg, xd_initialize):
750 (Fdbus_call_method, Fdbus_call_method_asynchronously):
751 (Fdbus_method_return_internal, Fdbus_method_error_internal):
752 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
753 (Fdbus_register_signal): Use SSDATA when the context wants char *.
754
755 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
756 if GCC considers string literals to be constants.
757 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
758
759 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
760
761 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
762 (print_preprocess, print_object): New macro to fix last change.
763
764 * print.c (print_preprocess): Don't forget font objects.
765
766 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
767
768 * emacs.c (USAGE3): Doc fixes.
769
770 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
771
772 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
773 structure.
774
775 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
776
777 * lisp.h (VWindow_system, Qfile_name_history):
778 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
779 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
780 (w32_system_caret_x, w32_system_caret_y): Declare extern.
781
782 * w32select.c: Don't #include "keyboard.h".
783 (run_protected): Add extern declaration for waiting_for_input.
784
785 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
786 * w32console.c (detect_input_pending, read_input_pending)
787 (encode_terminal_code):
788 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
789 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
790 (w32_system_caret_y, Qfile_name_history):
791 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
792 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
793 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
794 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
795 * w32proc.c (Qlocal, report_file_error):
796 * w32term.c (Vwindow_system, updating_frame):
797 * w32uniscribe.c (initialized, uniscribe_font_driver):
798 Remove unneeded extern declarations.
799
800 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
801
802 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
803
804 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
805
806 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
807 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
808 These macros can no longer be used for assignment.
809
810 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Assign
811 struct members directly, instead of using BUF_BEGV etc.
812 (record_buffer_markers, fetch_buffer_markers): New functions for
813 recording and fetching special buffer markers.
814 (set_buffer_internal_1, set_buffer_temp): Use them.
815
816 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
817
818 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
819
820 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
821 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
822
823 * xdisp.c (hscroll_window_tree):
824 (reconsider_clip_changes): Use PT instead of BUF_PT.
825
826 2011-03-13 Eli Zaretskii <eliz@gnu.org>
827
828 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
829 $(EMACS_ROOT)/lib/intprops.h.
830
831 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
832
833 Fix more problems found by GCC 4.5.2's static checks.
834
835 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
836 to unsigned char * to avoid compiler diagnostic.
837 (xg_free_frame_widgets): Make it clear that a local variable is
838 needed only if USE_GTK_TOOLTIP.
839 (gdk_window_get_screen): Make it clear that this macro is needed
840 only if USE_GTK_TOOLTIP.
841 (int_gtk_range_get_value): New function, which avoids a diagnostic
842 from gcc -Wbad-function-cast.
843 (xg_set_toolkit_scroll_bar_thumb): Use it.
844 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
845 diagnostic from gcc -Wbad-function-cast.
846 (get_utf8_string, xg_get_file_with_chooser):
847 Rename locals to avoid shadowing.
848 (create_dialog): Move locals to avoid shadowing.
849
850 * xgselect.c (xg_select): Remove unused var.
851
852 * image.c (four_corners_best): Mark locals as initialized.
853 (gif_load): Initialize transparent_p to zero (Bug#8238).
854 Mark another local as initialized.
855 (my_png_error, my_error_exit): Mark with NO_RETURN.
856
857 * image.c (clear_image_cache): Now static.
858 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
859 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
860 (x_edge_detection): Remove unnecessary cast that
861 gcc -Wbad-function-cast diagnoses.
862 (gif_load): Fix pointer signedness.
863 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
864 (jpeg_load, gif_load): Rename locals to avoid shadowing.
865
866 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
867
868 Improve quality of tests for time stamp overflow.
869 For example, without this patch (encode-time 0 0 0 1 1
870 1152921504606846976) returns the obviously-bogus value (-948597
871 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
872 reports time overflow. See
873 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
874 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
875 * editfns.c: Include limits.h and intprops.h.
876 (TIME_T_MIN, TIME_T_MAX): New macros.
877 (time_overflow): Move earlier, to before first use.
878 (hi_time, lo_time): New functions, for an accurate test for
879 out-of-range times.
880 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
881 (Fget_internal_run_time): Don't assume time_t fits in int.
882 (make_time): Use list2 instead of Fcons twice.
883 (Fdecode_time): More accurate test for out-of-range times.
884 (check_tm_member): New function.
885 (Fencode_time): Use it, to test for out-of-range times.
886 (lisp_time_argument): Don't rely on undefined left-shift and
887 right-shift behavior when checking for time stamp overflow.
888
889 * editfns.c (time_overflow): New function, refactoring common code.
890 (Fformat_time_string, Fdecode_time, Fencode_time):
891 (Fcurrent_time_string): Use it.
892
893 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
894 * dired.c (make_time): Move to ...
895 * editfns.c (make_time): ... here.
896 * systime.h: Note the move.
897
898 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
899
900 * fringe.c (update_window_fringes): Remove unused variables.
901
902 * unexmacosx.c (copy_data_segment): Also copy __got section.
903 (Bug#8223)
904
905 2011-03-12 Eli Zaretskii <eliz@gnu.org>
906
907 * termcap.c [MSDOS]: Include "msdos.h".
908 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
909 Constify `char *' arguments and their references according to
910 prototypes in tparam.h.
911
912 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
913
914 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
915 Adapt all references accordingly.
916
917 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
918
919 2011-03-11 Tom Tromey <tromey@redhat.com>
920
921 * buffer.c (syms_of_buffer): Remove obsolete comment.
922
923 2011-03-11 Eli Zaretskii <eliz@gnu.org>
924
925 * termhooks.h (encode_terminal_code): Declare prototype.
926
927 * msdos.c (encode_terminal_code): Don't declare prototype.
928
929 * term.c (encode_terminal_code): Now external again, used by
930 w32console.c and msdos.c.
931
932 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)): Depend
933 on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
934
935 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
936
937 Fix some minor problems found by GCC 4.5.2's static checks.
938
939 * fringe.c (update_window_fringes): Mark locals as initialized
940 (Bug#8227).
941 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
942
943 * alloc.c (mark_fringe_data): Move decl from here ...
944 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
945 to check its interface.
946 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
947
948 * fontset.c (free_realized_fontset): Now static.
949 (Fset_fontset_font): Rename local to avoid shadowing.
950 (fontset_font): Mark local as initialized.
951 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
952
953 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
954
955 * xselect.c (x_disown_buffer_selections): Remove; not used.
956 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
957 (x_own_selection, Fx_disown_selection_internal): Rename locals
958 to avoid shadowing.
959 (x_handle_dnd_message): Remove local to avoid shadowing.
960
961 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
962 so that the caller can use some name other than gcpro1.
963 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
964 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
965 (Fx_backspace_delete_keys_p):
966 Use them to avoid shadowing, and rename vars to avoid shadowing.
967 (x_decode_color, x_set_name, x_window): Now static.
968 (Fx_create_frame): Add braces to silence GCC warning.
969 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
970 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
971 Remove unused locals.
972 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
973 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
974 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
975 macros.
976
977 * xterm.h (x_mouse_leave): New decl.
978
979 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
980 Remove unused functions.
981 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
982 (x_calc_absolute_position): Now static.
983 (XTread_socket): Don't define label "out" unless it's used.
984 Don't declare local "event" unless it's used.
985 (x_iconify_frame, x_free_frame_resources): Don't declare locals
986 unless they are used.
987 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
988 (x_fatal_error_signal): Remove; not used.
989 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
990 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
991 (x_error_catcher, x_connection_closed, x_error_handler):
992 (x_error_quitter, xembed_send_message, x_iconify_frame):
993 (my_log_handler): Rename locals to avoid shadowing.
994 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
995 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
996
997 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font): Rename
998 or move locals to avoid shadowing.
999 (tty_defined_color, merge_face_heights): Now static.
1000 (free_realized_faces_for_fontset): Remove; not used.
1001 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
1002 does not deduce is never used uninitialized.
1003 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
1004 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
1005
1006 * terminal.c (store_terminal_param): Now static.
1007
1008 * xmenu.c (menu_highlight_callback): Now static.
1009 (set_frame_menubar): Remove unused local.
1010 (xmenu_show): Rename parameter to avoid shadowing.
1011 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
1012 since they might point to immutable storage.
1013 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
1014 since it's unused otherwise.
1015
1016 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
1017 Add a FIXME, since the code still doesn't look right. (Bug#8215)
1018 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
1019 avoids a gcc -Wuninitialized diagnostic.
1020 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
1021 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
1022 does not deduce are never used uninitialized.
1023
1024 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
1025
1026 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
1027 * window.c (window_loop, size_window):
1028 (run_window_configuration_change_hook, enlarge_window): Likewise.
1029
1030 * window.c (display_buffer): Now static.
1031 (size_window): Mark variables that gcc -Wuninitialized
1032 does not deduce are never used uninitialized.
1033 * window.h (check_all_windows): New decl, to forestall
1034 gcc -Wmissing-prototypes diagnostic.
1035 * dispextern.h (bidi_dump_cached_states): Likewise.
1036
1037 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
1038 shadowing.
1039 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
1040 Include <limits.h>.
1041 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
1042 and to avoid gcc -Wuninitialized warning.
1043 (load_charset_map): Mark variables that gcc -Wuninitialized
1044 does not deduce are never used uninitialized.
1045 (load_charset): Abort instead of using uninitialized var (Bug#8229).
1046
1047 * coding.c (coding_set_source, coding_set_destination):
1048 Use "else { /* comment */ }" rather than "else /* comment */;"
1049 for clarity, and to avoid gcc -Wempty-body warning.
1050 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
1051 a block, when the outer 'i' will do.
1052 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
1053 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
1054 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
1055 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
1056 (Fdecode_sjis_char, Fdefine_coding_system_internal):
1057 Rename locals to avoid shadowing.
1058 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
1059 * coding.c (emacs_mule_char, encode_invocation_designation):
1060 Now static, since they're not used elsewhere.
1061 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
1062 (decode_coding_object, encode_coding_object, detect_coding_system):
1063 (decode_coding_emacs_mule): Mark variables that gcc
1064 -Wuninitialized does not deduce are never used uninitialized.
1065 (detect_coding_iso_2022): Initialize a local variable that might
1066 be used uninitialized. Leave a FIXME because it's not clear that
1067 this initialization is needed. (Bug#8211)
1068 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
1069 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
1070 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
1071 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
1072 Remove unused macros.
1073
1074 * category.c (hash_get_category_set): Remove unused local var.
1075 (copy_category_table): Now static, since it's not used elsewhere.
1076 * character.c (string_count_byte8): Likewise.
1077
1078 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
1079 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
1080
1081 * chartab.c (copy_sub_char_table): Now static, since it's not used
1082 elsewhere.
1083 (sub_char_table_ref_and_range, char_table_ref_and_range):
1084 Rename locals to avoid shadowing.
1085 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
1086
1087 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
1088 (BIDI_BOB): Remove unused macro.
1089
1090 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
1091 deduce are never used uninitialized.
1092 * term.c (encode_terminal_code): Likewise.
1093
1094 * term.c (encode_terminal_code): Now static. Remove unused local.
1095
1096 * tparam.h: New file.
1097 * term.c, tparam.h: Include it.
1098 * deps.mk (term.o, tparam.o): Depend on tparam.h.
1099 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
1100 Move these decls to tparam.h, and make them agree with what
1101 is actually in tparam.c. The previous trick of using incompatible
1102 decls in different modules does not conform to the C standard.
1103 All callers of tparam changed to use tparam's actual API.
1104 * tparam.c (tparam1, tparam, tgoto):
1105 Use const pointers where appropriate.
1106
1107 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
1108 * cm.h (struct cm): Likewise.
1109 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
1110 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
1111 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
1112 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
1113 (turn_on_face, init_tty): Likewise.
1114 * termchar.h (struct tty_display_info): Likewise.
1115
1116 * term.c (term_mouse_position): Rename local to avoid shadowing.
1117
1118 * alloc.c (mark_ttys): Move decl from here ...
1119 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
1120
1121 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
1122
1123 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
1124
1125 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
1126
1127 * search.c (compile_pattern_1): Remove argument regp, unused since
1128 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
1129 (compile_pattern): Don't pass it.
1130
1131 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
1132
1133 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
1134 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
1135 for ! HAVE_GTK3.
1136 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
1137
1138 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
1139
1140 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
1141 gdk_window_get_screen, gdk_window_get_geometry,
1142 gdk_x11_window_lookup_for_display and GDK_KEY_g.
1143 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
1144 (xg_get_pixbuf_from_pixmap): New function.
1145 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
1146 to Pixmap, take frame as parameter, remove GdkColormap parameter.
1147 Call xg_get_pixbuf_from_pixmap instead of
1148 gdk_pixbuf_get_from_drawable.
1149 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
1150 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
1151 (xg_check_special_colors): Use GtkStyleContext and its functions
1152 for HAVE_GTK3.
1153 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
1154 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
1155 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
1156 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes): Call
1157 gtk_widget_get_preferred_size.
1158 (xg_frame_resized): gdk_window_get_geometry only takes 5
1159 parameters.
1160 (xg_win_to_widget, xg_event_is_for_menubar): Call
1161 gdk_x11_window_lookup_for_display.
1162 (xg_set_widget_bg): New function.
1163 (delete_cb): New function.
1164 (xg_create_frame_widgets): connect delete-event to delete_cb.
1165 Call xg_set_widget_bg. Only set backgrund pixmap for ! HAVE_GTK3
1166 (xg_set_background_color): Call xg_set_widget_bg.
1167 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
1168 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
1169 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
1170 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
1171 if ! HAVE_GTK3.
1172 (update_frame_tool_bar): Call gtk_widget_hide.
1173 (xg_initialize): Use GDK_KEY_g.
1174
1175 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
1176 if ! HAVE_GTK3
1177 (x_session_initialize): Call gdk_x11_set_sm_client_id.
1178
1179 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
1180 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
1181 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
1182
1183 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
1184
1185 * w32xfns.c (select_palette): Check success of RealizePalette against
1186 GDI_ERROR, not zero.
1187
1188 2011-03-07 Ben Key <bkey76@gmail.com>
1189
1190 * w32fns.c (FILE_NAME_COMBO_BOX, FILE_NAME_LIST): Define.
1191 (file_dialog_callback): Fix locating the window handle of the File Name
1192 text field. After disabling it, set focus on the list control.
1193 (Fx_file_dialog): If only_dir_p is non-nil, set the text of the File
1194 Name text field to "Current Directory" if it does not already have
1195 another value. (Bug#8181)
1196
1197 2011-03-07 Adrian Robert <Adrian.B.Robert@gmail.com>
1198
1199 * nsterm.m (ns_draw_window_cursor): Fix handling of "cursor_width"
1200 parameter for hbar cursors. Based on a patch by Ben Key
1201 <bkey76@gmail.com>.
1202
1203 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
1204
1205 * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06
1206 change.
1207
1208 2011-03-06 Paul Eggert <eggert@cs.ucla.edu>
1209
1210 current_column: Now returns EMACS_INT, fixing some iftc
1211 that was introduced in the 2002-06-02 change "temporarily"; see
1212 <http://lists.gnu.org/archive/html/emacs-devel/2002-06/msg00039.html>.
1213 * bytecode.c (Fbyte_code): Don't cast current_column () to int.
1214 * cmds.c (internal_self_insert): Likewise.
1215 * indent.c (Fcurrent_column): Likewise.
1216 * keymap.c (describe_command): Likewise.
1217 * minibuf.c (read_minibuf): Likewise.
1218 * indent.c (Fcurrent_indentation): Don't cast position_indentation ()
1219 to int.
1220 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
1221 Likewise.
1222 * cmds.c (internal_self_insert): Declare locals to be EMACS_INT,
1223 not int or double, if they might contain a column number.
1224 * indent.c (current_column, Findent_to, indented_beyond_p):
1225 (compute_motion, vmotion): Likewise.
1226 * keymap.c (describe_command): Likewise.
1227 * xdisp.c (pint2str): Likewise.
1228 * indent.c (last_known_column): Now EMACS_INT, not int.
1229 * minibuf.c (minibuf_prompt_width): Likewise.
1230 * indent.c (current_column, current_column_1, position_indentation):
1231 Return EMACS_INT, not double.
1232 * lisp.h (current_column): Likewise.
1233 * indent.c (indented_beyond_p): Last arg is now EMACS_INT, not double.
1234 All callers changed.
1235 * lisp.h (indented_beyond_p): Likewise.
1236
1237 * minibuf.c (minibuf_prompt, minibuf_prompt_width): Move here
1238 from xdisp.c, and make static, since these are used only here.
1239 * window.h, xdisp.c (minibuf_prompt, minibuf_prompt_width):
1240 Remove decls.
1241
1242 * cmds.c (internal_self_insert): Reindent to match Emacs style.
1243 * xdisp.c (redisplay_window): Likewise.
1244
1245 * xdisp.c: Rename or move local decls to avoid shadowing.
1246 (init_iterator, handle_fontified_prop, handle_single_display_spec):
1247 (message_dolog, message_with_string, redisplay_internal):
1248 (redisplay_window, try_window_reusing_current_matrix, try_window_id):
1249 (compute_line_metrics, highlight_trailing_whitespace, cursor_row_p):
1250 (display_line, display_string, rows_from_pos_range):
1251 (mouse_face_from_buffer_pos, note_mouse_highlight, expose_frame):
1252 Rename or move local decls.
1253 * xdisp.c (BUILD_GLYPHLESS_GLYPH_STRING): Omit unused local var.
1254 (produce_glyphless_glyph): Make a pointer "const"
1255 since it might point to immutable storage.
1256 (update_window_cursor): Now static, since it's not used elsewhere.
1257 (SKIP_GLYPHS): Removed unused macro.
1258
1259 2011-03-06 Michael Shields <shields@msrl.com> (tiny change)
1260
1261 * window.c (Fnext_window): Doc fix. (Bug#5567)
1262
1263 2011-03-05 Chong Yidong <cyd@stupidchicken.com>
1264
1265 * nsterm.m (ns_draw_window_cursor): Fix typo in 2011-02-23 commit.
1266
1267 2011-03-02 Ken Brown <kbrown@cornell.edu>
1268
1269 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
1270
1271 2011-03-02 Paul Eggert <eggert@cs.ucla.edu>
1272
1273 Work around some portability problems with symlinks.
1274
1275 * fileio.c (Fmake_symbolic_link): Treat ENOSYS specially, and
1276 generate a special message for it. Suggested by Eli Zaretskii in
1277 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00995.html>.
1278 (Frename_file, Fmake_symbolic_link, Ffile_symlink_p):
1279 Simplify the code by assuming that the readlink and symlink calls
1280 exist, even if they always fail on this host.
1281 (Ffile_readable_p): Likewise, for fifos.
1282 * config.in: Regenerate.
1283
1284 2011-02-27 Chong Yidong <cyd@stupidchicken.com>
1285
1286 * frame.c (store_frame_param): Don't store value directly in
1287 buffer_list and buried_buffer_list; copy the list and remove dead
1288 buffers (Bug#7898).
1289
1290 2011-02-27 Eli Zaretskii <eliz@gnu.org>
1291
1292 * msdos.c (readlink) [DJGPP < 2.04]: New stub function.
1293
1294 * msdos.h (readlink) [DJGPP < 2.04]: Declare prototype.
1295
1296 * w32.c (symlink, readlink): New stub functions.
1297
1298 2011-02-27 Paul Eggert <eggert@cs.ucla.edu>
1299
1300 * scroll.c (CHECK_BOUNDS): #define only if GLYPH_DEBUG.
1301 This avoids a gcc warning in some configurations.
1302
1303 * frame.c (x_set_screen_gamma): Rename local to avoid shadowing.
1304
1305 * frame.h: Avoid gcc -Wmissing-prototypes diagnostics.
1306 (set_menu_bar_lines, x_get_resource_string): New decls.
1307 * msdos.c (set_menu_bar_lines): Omit decl.
1308
1309 * dispextern.h (struct glyph): Make u.img_id int, not unsigned.
1310 It's always given int values and used as an int. This suppresses
1311 a gcc "comparison of unsigned expression >= 0" warning in some
1312 configurations.
1313
1314 * dispnew.c: Rename locals to avoid shadowing.
1315 (update_text_area, scrolling_window, update_frame_1): Rename locals.
1316
1317 2011-02-26 Paul Eggert <eggert@cs.ucla.edu>
1318
1319 * dispnew.c: Fix problems uncovered by gcc -Wstrict-prototypes.
1320 (copy_glyph_row_contents): Remove; not used.
1321 (frame_row_to_window, check_current_matrix_flags):
1322 (window_change_signal): Now static, since they're not used elsewhere.
1323 (check_current_matrix_flags): Surround with "#if 0", since its
1324 only use is in a comment. Maybe both the comment and the "#if 0"
1325 stuff should be removed?
1326
1327 * dispnew.c: Fix problem uncovered by gcc -Wunused-variable.
1328 (adjust_frame_glyphs_for_window_redisplay): Make 'w' local to the
1329 contexts that actually need it.
1330
1331 2011-02-26 Eli Zaretskii <eliz@gnu.org>
1332
1333 * s/msdos.h (HAVE_LSTAT): Define for DJGPP >= 2.04.
1334 (lstat): Define for DJGPP < 2.04.
1335
1336 2011-02-25 Paul Eggert <eggert@cs.ucla.edu>
1337
1338 * dired.c (Ffile_attributes): Increase size of modes from 10 to 12
1339 as per recent filemodestring API change. Reported by Jonas Öster in
1340 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg01069.html>.
1341
1342 2011-02-23 Ben Key <bkey76@gmail.com>
1343
1344 * nsterm.m (ns_draw_window_cursor): Obey the cursor_width argument
1345 directly, for bar cursors.
1346
1347 2011-02-23 Chong Yidong <cyd@stupidchicken.com>
1348
1349 * xdisp.c (set_frame_cursor_types): Don't write an undefined value
1350 into the frame's cursor_width.
1351
1352 2011-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
1353
1354 * print.c (print_object): Never print old-style backquotes.
1355 Obey escapeflag for hash tables as well.
1356
1357 2011-02-23 Kenichi Handa <handa@m17n.org>
1358
1359 * font.c (font_open_entity): Be sure to set scaled_pixel_size.
1360 (font_find_for_lface): Check if attrs[LFACE_HEIGHT_INDEX] is integer.
1361
1362 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
1363
1364 * dired.c (Ffile_attributes): Simplify and avoid #ifdef.
1365
1366 2011-02-22 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
1367
1368 * lread.c (openp): Correct Boolean typo in last commit.
1369
1370 2011-02-22 Adrian Robert <Adrian.B.Robert@gmail.com>
1371
1372 * nsterm.m (EmacsView-keyDown:): Don't pass shift-only-modified
1373 key to Emacs, treat as unmodified (go to input manager processing).
1374
1375 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
1376
1377 Assume S_ISLNK etc. work, since gnulib supports this.
1378 * config.in: Regenerate.
1379 * dired.c (lstat): Remove.
1380 (file_name_completion): Assume S_ISDIR works.
1381 (file_name_completion_stat): Assume S_ISLNK works.
1382 Do not bother calling stat unless lstat says it's a symlink.
1383 * fileio.c (S_ISLNK, S_ISFIFO, S_ISREG, lstat): Remove.
1384 (Fcopy_file): Assume S_ISREG and S_ISLNK work.
1385 (check_writable, Ffile_writable_p, Fset_file_times):
1386 Assume S_ISDIR works.
1387 (Ffile_readable_p): Use S_IFIFO, not S_ISFIFO, to guess whether
1388 fifos exist.
1389 (Ffile_regular_p, Finsert_file_contents): Assume S_ISREG works.
1390 * filelock.c (S_ISLNK): Remove.
1391 * lread.c (openp): Assume S_ISDIR works.
1392 * xrdb.c (S_ISDIR): Remove.
1393
1394 2011-02-21 Eli Zaretskii <eliz@gnu.org>
1395
1396 * makefile.w32-in ($(BLD)/filemode.$(O)): Move recipe to
1397 lib/makefile.w32-in.
1398 ($(BLD)/dired.$(O)): Depend on $(EMACS_ROOT)/lib/filemode.h.
1399 (GLOBAL_SOURCES): Remove filemode.c.
1400 (OBJ1): Remove $(BLD)/filemode.$(O).
1401
1402 2011-02-21 Paul Eggert <eggert@cs.ucla.edu>
1403
1404 Import filemode module from gnulib.
1405 * Makefile.in (base_obj): Remove filemode.o, as it's now in ../lib.
1406 * deps.mk (dired.o): Depend on ../lib/filemode.h, too.
1407 (filemode.o): Remove; this is now in ../lib.
1408 * dired.c: Include <filemode.h>.
1409 (filemodestring): Remove now-redundant decl.
1410 * config.in: Regenerate.
1411
1412 2011-02-20 Eli Zaretskii <eliz@gnu.org>
1413
1414 * makefile.w32-in ($(BLD)/fns.$(O)): Depend on
1415 $(EMACS_ROOT)/lib/md5.h and on stamp_BLD.
1416
1417 2011-02-20 Christoph Scholtes <cschol2112@gmail.com>
1418
1419 * makefile.w32-in: Remove md5.$(O).
1420 ($(BLD)/md5.$(O)): Remove prerequisites, moved to
1421 lib/makefile.w32-in.
1422
1423 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
1424
1425 Import crypto/md5 and stdint modules from gnulib.
1426 * Makefile.in (base_obj): Remove md5.o, since this file
1427 is in lib now.
1428 * config.in: Regenerate.
1429 * md5.h, md5.h: Move to ../lib.
1430 * deps.mk (md5.o): Remove.
1431 (fns.o): Depend on ../lib/md5.h, not md5.h.
1432
1433 2011-02-19 Eli Zaretskii <eliz@gnu.org>
1434
1435 * termcap.c (tputs): Don't declare baud_rate.
1436
1437 * s/msdos.h (strtold): Define to _strtold.
1438
1439 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1440
1441 * process.c (Fstart_process, Fmake_serial_process)
1442 (Fmake_network_process, server_accept_connection):
1443 Use empty_unibyte_string.
1444
1445 * alloc.c (make_unibyte_string): Don't SET_UNIBYTE redundantly.
1446
1447 * lread.c (Qdir_ok): New constant.
1448 (syms_of_lread): Initialize it.
1449 (openp): Don't ignore directories if the predicate returns dir-ok.
1450
1451 2011-02-18 Eli Zaretskii <eliz@gnu.org>
1452
1453 * xdisp.c (display_line): Fix the change made for bug#7939.
1454
1455 * terminal.c (create_terminal): Use default-keyboard-coding-system
1456 and default-terminal-coding-system to initialize coding systems of
1457 the new terminal. (Bug#7840)
1458
1459 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1460
1461 * lisp.h (BYTE_MARK_STACK): New macro.
1462 (mark_byte_stack): Only declare if BYTE_MARK_STACK is set.
1463
1464 * bytecode.c (BYTE_MAINTAIN_TOP): New macros.
1465 (struct byte_stack): Only define `top' and `bottom' if used.
1466 (mark_byte_stack): Only define if used.
1467 (BEFORE_POTENTIAL_GC, AFTER_POTENTIAL_GC): Nullify if BYTE_MAINTAIN_TOP
1468 is not set.
1469 (Fbyte_code): Don't set `bottom' unless BYTE_MAINTAIN_TOP is set.
1470
1471 * term.c (OUTPUT_IF): Use OUTPUT.
1472
1473 * alloc.c (Fgarbage_collect): When using stack scanning, don't
1474 redundantly scan byte-code stacks, catchlist, and handlerlist.
1475
1476 2011-02-17 Jan Djärv <jan.h.d@swipnet.se>
1477
1478 * nsfns.m (Fx_create_frame, ns_set_name_as_filename)
1479 (Fns_read_file_name): Replace B_ with BVAR.
1480
1481 * nsterm.m (ns_term_init): Use KVAR.
1482
1483 2011-02-16 Eli Zaretskii <eliz@gnu.org>
1484
1485 * msdos.c (internal_terminal_init): Use KVAR.
1486
1487 * w32fns.c (Fx_create_frame): Use KVAR.
1488
1489 * w32term.c (w32_create_terminal): Use KVAR.
1490
1491 * s/ms-w32.h (MODE_LINE_BINARY_TEXT): Remove.
1492 (getloadavg): Declare prototype which was removed from lisp.h.
1493
1494 * xdisp.c (decode_mode_spec): Don't use MODE_LINE_BINARY_TEXT.
1495
1496 * fileio.c (Finsert_file_contents, Fwrite_region):
1497 Remove references to buffer_file_type.
1498 (syms_of_fileio): Don't intern and staticpro
1499 find-buffer-file-type.
1500
1501 * callproc.c (syms_of_callproc): Remove references to
1502 buffer_file_type.
1503
1504 * buffer.c (reset_buffer_local_variables): Don't set
1505 buffer_file_type.
1506 (init_buffer_once): Likewise.
1507 (syms_of_buffer): Don't define buffer-file-type.
1508
1509 * buffer.h (struct buffer): Remove buffer_file_type.
1510
1511 2011-02-16 Tom Tromey <tromey@parfait>
1512
1513 * callint.c (Fcall_interactively): Update for change to field names.
1514 * doc.c (Fsubstitute_command_keys): Update for change to field names.
1515 * cmds.c (Fself_insert_command): Update for change to field names.
1516 * keymap.c (Fcurrent_active_maps, Fkey_binding)
1517 (Fdescribe_buffer_bindings): Update for change to field names.
1518 * macros.c (Fstart_kbd_macro, end_kbd_macro, Fend_kbd_macro)
1519 (store_kbd_macro_char, Fcall_last_kbd_macro, Fexecute_kbd_macro):
1520 Update for change to field names.
1521 * keyboard.c (echo_char, echo_dash, echo_now, cancel_echoing)
1522 (echo_length, echo_truncate, cmd_error, command_loop_1)
1523 (read_char, kbd_buffer_store_event_hold, make_lispy_event)
1524 (menu_bar_items, tool_bar_items, read_char_minibuf_menu_prompt)
1525 (read_key_sequence, Fcommand_execute, Fexecute_extended_command)
1526 (Fdiscard_input, init_kboard, init_keyboard, mark_kboards):
1527 Update for change to field names.
1528 * xfns.c (Fx_create_frame): Update for change to field names.
1529 * xterm.c (x_connection_closed, x_term_init): Update for change to
1530 field names.
1531 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN, init_tty):
1532 Update for change to field names.
1533 * window.c (window_scroll_pixel_based, window_scroll_line_based):
1534 Update for change to field names.
1535 * frame.c (make_frame_without_minibuffer, Fhandle_switch_frame)
1536 (delete_frame): Update for change to field names.
1537 * lisp.h (DEFVAR_KBOARD): Update for change to field names.
1538 * keyboard.h (struct kboard): Rename all Lisp_Object fields.
1539 (KBOARD_INTERNAL_FIELD, KVAR): New macros.
1540
1541 2011-02-16 Tom Tromey <tromey@redhat.com>
1542
1543 * lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR.
1544
1545 2011-02-16 Tom Tromey <tromey@parfait>
1546
1547 * xfns.c (x_create_tip_frame, Fx_show_tip): Replace B_ with BVAR.
1548 * xfaces.c (compute_char_face): Replace B_ with BVAR.
1549 * xdisp.c (pos_visible_p, init_iterator, reseat_1)
1550 (message_dolog, update_echo_area, ensure_echo_area_buffers)
1551 (with_echo_area_buffer, setup_echo_area_for_printing)
1552 (set_message_1, update_menu_bar, update_tool_bar)
1553 (text_outside_line_unchanged_p, redisplay_internal)
1554 (try_scrolling, try_cursor_movement, redisplay_window)
1555 (try_window_reusing_current_matrix, row_containing_pos)
1556 (try_window_id, get_overlay_arrow_glyph_row, display_line)
1557 (Fcurrent_bidi_paragraph_direction, display_mode_lines)
1558 (decode_mode_spec_coding, decode_mode_spec, display_count_lines)
1559 (get_window_cursor_type, note_mouse_highlight): Replace B_ with
1560 BVAR.
1561 * window.c (window_display_table, unshow_buffer, window_loop)
1562 (window_min_size_2, set_window_buffer, Fset_window_buffer)
1563 (select_window, Fforce_window_update, temp_output_buffer_show)
1564 (Fset_window_configuration, save_window_save): Replace B_ with
1565 BVAR.
1566 * w32fns.c (x_create_tip_frame, Fx_show_tip, Fw32_shell_execute):
1567 Replace B_ with BVAR.
1568 * undo.c (record_point, record_insert, record_delete)
1569 (record_marker_adjustment, record_first_change)
1570 (record_property_change, Fundo_boundary, truncate_undo_list)
1571 (Fprimitive_undo): Replace B_ with BVAR.
1572 * syntax.h (Vstandard_syntax_table, CURRENT_SYNTAX_TABLE)
1573 (SETUP_BUFFER_SYNTAX_TABLE): Replace B_ with BVAR.
1574 * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table)
1575 (Fset_syntax_table, Fmodify_syntax_entry, skip_chars)
1576 (skip_syntaxes, scan_lists): Replace B_ with BVAR.
1577 * search.c (compile_pattern_1, compile_pattern, looking_at_1)
1578 (string_match_1, fast_looking_at, newline_cache_on_off)
1579 (search_command, search_buffer, simple_search, boyer_moore)
1580 (Freplace_match): Replace B_ with BVAR.
1581 * process.c (get_process, list_processes_1, Fstart_process)
1582 (Fmake_serial_process, Fmake_network_process)
1583 (read_process_output, send_process, exec_sentinel)
1584 (status_notify, setup_process_coding_systems): Replace B_ with
1585 BVAR.
1586 * print.c (PRINTDECLARE, PRINTPREPARE, PRINTFINISH, printchar)
1587 (strout, print_string, temp_output_buffer_setup, print_object):
1588 Replace B_ with BVAR.
1589 * msdos.c (IT_frame_up_to_date): Replace B_ with BVAR.
1590 * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer):
1591 Replace B_ with BVAR.
1592 * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted)
1593 (set_marker_both, set_marker_restricted_both, unchain_marker):
1594 Replace B_ with BVAR.
1595 * lread.c (readchar, unreadchar, openp, readevalloop)
1596 (Feval_buffer, Feval_region): Replace B_ with BVAR.
1597 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE): Replace B_ with BVAR.
1598 * keymap.c (Flocal_key_binding, Fuse_local_map)
1599 (Fcurrent_local_map, push_key_description)
1600 (Fdescribe_buffer_bindings): Replace B_ with BVAR.
1601 * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt)
1602 (read_key_sequence): Replace B_ with BVAR.
1603 * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Replace B_ with BVAR.
1604 * intervals.c (set_point_both, get_local_map): Replace B_ with
1605 BVAR.
1606 * insdel.c (check_markers, insert_char, insert_1_both)
1607 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
1608 (adjust_after_replace, replace_range, del_range_2)
1609 (modify_region, prepare_to_modify_buffer)
1610 (Fcombine_after_change_execute): Replace B_ with BVAR.
1611 * indent.c (buffer_display_table, recompute_width_table)
1612 (width_run_cache_on_off, current_column, scan_for_column)
1613 (Findent_to, position_indentation, compute_motion, vmotion):
1614 Replace B_ with BVAR.
1615 * fringe.c (get_logical_cursor_bitmap)
1616 (get_logical_fringe_bitmap, update_window_fringes): Replace B_
1617 with BVAR.
1618 * frame.c (make_frame_visible_1): Replace B_ with BVAR.
1619 * font.c (font_at): Replace B_ with BVAR.
1620 * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5):
1621 Replace B_ with BVAR.
1622 * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer)
1623 (unlock_buffer): Replace B_ with BVAR.
1624 * fileio.c (Fexpand_file_name, Ffile_directory_p)
1625 (Ffile_regular_p, Ffile_selinux_context)
1626 (Fset_file_selinux_context, Ffile_modes, Fset_file_modes)
1627 (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind)
1628 (Finsert_file_contents, choose_write_coding_system)
1629 (Fwrite_region, build_annotations, Fverify_visited_file_modtime)
1630 (Fset_visited_file_modtime, auto_save_error, auto_save_1)
1631 (Fdo_auto_save, Fset_buffer_auto_saved): Replace B_ with BVAR.
1632 * editfns.c (region_limit, Fmark_marker, save_excursion_save)
1633 (save_excursion_restore, Fprevious_char, Fchar_before)
1634 (general_insert_function, Finsert_char, Finsert_byte)
1635 (make_buffer_string_both, Finsert_buffer_substring)
1636 (Fcompare_buffer_substrings, subst_char_in_region_unwind)
1637 (subst_char_in_region_unwind_1, Fsubst_char_in_region)
1638 (Ftranslate_region_internal, save_restriction_restore)
1639 (Fchar_equal): Replace B_ with BVAR.
1640 * dispnew.c (Fframe_or_buffer_changed_p): Replace B_ with BVAR.
1641 * dispextern.h (WINDOW_WANTS_MODELINE_P)
1642 (WINDOW_WANTS_HEADER_LINE_P): Replace B_ with BVAR.
1643 * dired.c (directory_files_internal): Replace B_ with BVAR.
1644 * data.c (swap_in_symval_forwarding, set_internal)
1645 (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p):
1646 Replace B_ with BVAR.
1647 * composite.c (fill_gstring_header)
1648 (composition_compute_stop_pos, composition_adjust_point)
1649 (Ffind_composition_internal): Replace B_ with BVAR.
1650 * coding.c (decode_coding, encode_coding)
1651 (make_conversion_work_buffer, decode_coding_gap)
1652 (decode_coding_object, encode_coding_object)
1653 (Fdetect_coding_region, Ffind_coding_systems_region_internal)
1654 (Funencodable_char_position, Fcheck_coding_systems_region):
1655 Replace B_ with BVAR.
1656 * cmds.c (Fself_insert_command, internal_self_insert): Replace B_
1657 with BVAR.
1658 * charset.c (Ffind_charset_region): Replace B_ with BVAR.
1659 * character.h (FETCH_CHAR_ADVANCE, INC_BOTH, DEC_BOTH)
1660 (ASCII_CHAR_WIDTH): Replace B_ with BVAR.
1661 * character.c (chars_in_text, Fget_byte): Replace B_ with BVAR.
1662 * category.h (Vstandard_category_table): Replace B_ with BVAR.
1663 * category.c (check_category_table, Fcategory_table)
1664 (Fset_category_table, char_category_set): Replace B_ with BVAR.
1665 * casetab.c (Fcurrent_case_table, set_case_table): Replace B_ with
1666 BVAR.
1667 * casefiddle.c (casify_object, casify_region): Replace B_ with
1668 BVAR.
1669 * callproc.c (Fcall_process, Fcall_process_region): Replace B_
1670 with BVAR.
1671 * callint.c (check_mark, Fcall_interactively): Replace B_ with
1672 BVAR.
1673 * bytecode.c (Fbyte_code): Replace B_ with BVAR.
1674 * buffer.h (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE, BVAR): Replace B_
1675 with BVAR.
1676 * buffer.c (Fbuffer_live_p, Fget_file_buffer)
1677 (get_truename_buffer, Fget_buffer_create)
1678 (clone_per_buffer_values, Fmake_indirect_buffer, reset_buffer)
1679 (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name)
1680 (Fbuffer_local_value, buffer_lisp_local_variables)
1681 (Fset_buffer_modified_p, Frestore_buffer_modified_p)
1682 (Frename_buffer, Fother_buffer, Fbuffer_enable_undo)
1683 (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1)
1684 (set_buffer_temp, Fset_buffer, set_buffer_if_live)
1685 (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer)
1686 (Fbuffer_swap_text, swapfield_, Fbuffer_swap_text)
1687 (Fset_buffer_multibyte, swap_out_buffer_local_variables)
1688 (record_overlay_string, overlay_strings, init_buffer_once)
1689 (init_buffer, syms_of_buffer): Replace B_ with BVAR.
1690
1691 2011-02-16 Eli Zaretskii <eliz@gnu.org>
1692
1693 * xdisp.c (redisplay_internal): Resynchronize `w' if the selected
1694 window is changed inside calls to do_pending_window_change.
1695 (Bug#8020)
1696
1697 2011-02-16 Paul Eggert <eggert@cs.ucla.edu>
1698
1699 Remove no-longer needed getloadavg symbols.
1700 * m/alpha.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1701 * m/amdx86-64.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1702 * m/ia64.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1703 * m/ibms390.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1704 * m/macppc.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1705 * m/sparc.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1706 * m/template.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1707 * m/vax.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1708 * s/aix4-2.h (KERNEL_FILE, LDAV_SYMBOL): Remove.
1709 * s/bsd-common.h (KERNEL_FILE, LDAV_SYMBOL): Remove #undef.
1710 * s/hpux10-20.h (KERNEL_FILE, LOAD_AVE_TYPE, LOAD_AVE_CVT):
1711 (LDAV_SYMBOL): Remove.
1712 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Remove.
1713 * s/usg5-4-common.h (KERNEL_FILE, LDAV_SYMBOL): Remove.
1714
1715 Import getloadavg module from gnulib.
1716 * deps.mk (getloadavg.o): Remove; gnulib now does this.
1717 * lisp.h (getloadavg) [!defined HAVE_GETLOADAVG]: Remove; gnulib
1718 now does this.
1719 * src/s/freebsd.h (HAVE_GETLOADAVG): Remove; gnulib now does this.
1720 * src/s/netbsd.h (HAVE_GETLOADAVG): Likewise.
1721 * config.in: Regenerate.
1722
1723 2011-02-15 Eli Zaretskii <eliz@gnu.org>
1724
1725 * nsfns.m (ns_set_name_as_filename, Fns_read_file_name): Use B_.
1726
1727 2011-02-14 Michael Welsh Duggan <md5i@md5i.com>
1728
1729 * print.c (float_to_string): Ensure that a decimal point is
1730 printed if using dtoastr (Bug#8033).
1731
1732 2011-02-14 Eli Zaretskii <eliz@gnu.org>
1733
1734 * msdos.c (IT_frame_up_to_date):
1735 * s/msdos.h (MODE_LINE_BINARY_TEXT): Use B_ for the MS-DOS build.
1736
1737 * dired.c (directory_files_internal):
1738 * fileio.c (Finsert_file_contents):
1739 * insdel.c (prepare_to_modify_buffer):
1740 * xdisp.c (pos_visible_p):
1741 * s/ms-w32.h (MODE_LINE_BINARY_TEXT):
1742 * w32fns.c (Fw32_shell_execute, Fx_show_tip, x_create_tip_frame):
1743 Use B_ for the MS-Windows build.
1744
1745 2011-02-14 Jan Djärv <jan.h.d@swipnet.se>
1746
1747 * xrdb.c (x_load_resources): For LUCID and XFT, don't put a
1748 resource that specifies helvetica for menus and dialogs.
1749
1750 * xmenu.c (apply_systemfont_to_dialog): Apply to *dialog.font.
1751 (apply_systemfont_to_menu): Set resources *menubar*font and
1752 *popup*font. Remove defflt.
1753 (set_frame_menubar, create_and_show_popup_menu):
1754 Call apply_systemfont_to_menu before lw_create_widget.
1755
1756 2011-02-14 Tom Tromey <tromey@redhat.com>
1757
1758 * buffer.c (init_buffer_once, syms_of_buffer): Use B_ in DOS_NT case.
1759
1760 * keyboard.h: Remove obsolete comment.
1761
1762 2011-02-14 Tom Tromey <tromey@parfait>
1763
1764 * composite.c (fill_gstring_header)
1765 (composition_compute_stop_pos, composition_adjust_point)
1766 (Ffind_composition_internal): Use B_.
1767 * intervals.c (set_point_both, get_local_map): Use B_.
1768 * callproc.c (Fcall_process, Fcall_process_region): Use B_.
1769 * process.c (get_process, list_processes_1, Fstart_process)
1770 (Fmake_serial_process, Fmake_network_process)
1771 (read_process_output, send_process, exec_sentinel)
1772 (status_notify, setup_process_coding_systems): Use B_.
1773 * bytecode.c (Fbyte_code): Use B_.
1774 * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table)
1775 (Fset_syntax_table, Fmodify_syntax_entry, skip_chars)
1776 (skip_syntaxes, scan_lists): Use B_.
1777 * lread.c (readchar, unreadchar, openp, readevalloop)
1778 (Feval_buffer, Feval_region): Use B_.
1779 * print.c (printchar, strout, print_string, PRINTDECLARE)
1780 (PRINTPREPARE, PRINTFINISH, temp_output_buffer_setup)
1781 (print_object): Use B_.
1782 * font.c (font_at): Use B_.
1783 * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5):
1784 Use B_.
1785 * callint.c (check_mark, Fcall_interactively): Use B_.
1786 * editfns.c (region_limit, Fmark_marker, save_excursion_save)
1787 (save_excursion_restore, Fprevious_char, Fchar_before)
1788 (general_insert_function, Finsert_char, Finsert_byte)
1789 (make_buffer_string_both, Finsert_buffer_substring)
1790 (Fcompare_buffer_substrings, subst_char_in_region_unwind)
1791 (subst_char_in_region_unwind_1, Fsubst_char_in_region)
1792 (Ftranslate_region_internal, save_restriction_restore)
1793 (Fchar_equal): Use B_.
1794 * data.c (swap_in_symval_forwarding, set_internal)
1795 (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p):
1796 Use B_.
1797 * undo.c (record_point, record_insert, record_delete)
1798 (record_marker_adjustment, record_first_change)
1799 (record_property_change, Fundo_boundary, truncate_undo_list)
1800 (Fprimitive_undo): Use B_.
1801 * search.c (compile_pattern_1, compile_pattern, looking_at_1)
1802 (string_match_1, fast_looking_at, newline_cache_on_off)
1803 (search_command, search_buffer, simple_search, boyer_moore)
1804 (Freplace_match): Use B_.
1805 * indent.c (buffer_display_table, recompute_width_table)
1806 (width_run_cache_on_off, current_column, scan_for_column)
1807 (Findent_to, position_indentation, compute_motion, vmotion):
1808 Use B_.
1809 * casefiddle.c (casify_object, casify_region): Use B_.
1810 * casetab.c (Fcurrent_case_table, set_case_table): Use B_.
1811 * cmds.c (Fself_insert_command, internal_self_insert): Use B_.
1812 * fileio.c (Fexpand_file_name, Ffile_directory_p)
1813 (Ffile_regular_p, Ffile_selinux_context)
1814 (Fset_file_selinux_context, Ffile_modes, Fset_file_modes)
1815 (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind)
1816 (Finsert_file_contents, choose_write_coding_system)
1817 (Fwrite_region, build_annotations, Fverify_visited_file_modtime)
1818 (Fset_visited_file_modtime, auto_save_error, auto_save_1)
1819 (Fdo_auto_save, Fset_buffer_auto_saved): Use B_.
1820 * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer): Use B_.
1821 * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted)
1822 (set_marker_both, set_marker_restricted_both, unchain_marker):
1823 Use B_.
1824 * insdel.c (check_markers, insert_char, insert_1_both)
1825 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
1826 (adjust_after_replace, replace_range, del_range_2)
1827 (modify_region, prepare_to_modify_buffer)
1828 (Fcombine_after_change_execute): Use B_.
1829 * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer)
1830 (unlock_buffer): Use B_.
1831 * keymap.c (Flocal_key_binding, Fuse_local_map)
1832 (Fcurrent_local_map, push_key_description)
1833 (Fdescribe_buffer_bindings): Use B_.
1834 * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt)
1835 (read_key_sequence): Use B_.
1836 * fringe.c (get_logical_cursor_bitmap)
1837 (get_logical_fringe_bitmap, update_window_fringes): Use B_.
1838 * xfns.c (x_create_tip_frame, Fx_show_tip): Use B_.
1839 * xfaces.c (compute_char_face): Use B_.
1840 * character.c (chars_in_text, Fget_byte): Use B_.
1841 * category.c (check_category_table, Fcategory_table)
1842 (Fset_category_table, char_category_set): Use B_.
1843 * coding.c (decode_coding, encode_coding)
1844 (make_conversion_work_buffer, decode_coding_gap)
1845 (decode_coding_object, encode_coding_object)
1846 (Fdetect_coding_region, Ffind_coding_systems_region_internal)
1847 (Funencodable_char_position, Fcheck_coding_systems_region):
1848 Use B_.
1849 * charset.c (Ffind_charset_region): Use B_.
1850 * window.c (window_display_table, unshow_buffer, window_loop)
1851 (window_min_size_2, set_window_buffer, Fset_window_buffer)
1852 (select_window, Fforce_window_update, temp_output_buffer_show)
1853 (Fset_window_configuration, save_window_save): Use B_.
1854 * xdisp.c (pos_visible_p, init_iterator, reseat_1)
1855 (message_dolog, update_echo_area, ensure_echo_area_buffers)
1856 (with_echo_area_buffer, setup_echo_area_for_printing)
1857 (set_message_1, update_menu_bar, update_tool_bar)
1858 (text_outside_line_unchanged_p, redisplay_internal)
1859 (try_scrolling, try_cursor_movement, redisplay_window)
1860 (try_window_reusing_current_matrix, row_containing_pos)
1861 (try_window_id, get_overlay_arrow_glyph_row, display_line)
1862 (Fcurrent_bidi_paragraph_direction, display_mode_lines)
1863 (decode_mode_spec_coding, decode_mode_spec, display_count_lines)
1864 (get_window_cursor_type, note_mouse_highlight): Use B_.
1865 * frame.c (make_frame_visible_1): Use B_.
1866 * dispnew.c (Fframe_or_buffer_changed_p): Use B_.
1867 * dispextern.h (WINDOW_WANTS_HEADER_LINE_P)
1868 (WINDOW_WANTS_MODELINE_P): Use B_.
1869 * syntax.h (Vstandard_syntax_table): Update.
1870 (CURRENT_SYNTAX_TABLE, SETUP_BUFFER_SYNTAX_TABLE): Use B_.
1871 * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Update.
1872 (TEXT_PROP_MEANS_INVISIBLE): Use B_.
1873 * character.h (FETCH_CHAR_ADVANCE): Update.
1874 (INC_BOTH, ASCII_CHAR_WIDTH, DEC_BOTH): Use B_.
1875 * category.h (Vstandard_category_table): Update.
1876 * lisp.h (DEFVAR_BUFFER_DEFAULTS): Update for change to field
1877 names.
1878 (DOWNCASE_TABLE, UPCASE_TABLE): Use B_.
1879 * buffer.c (swapfield_): New macro.
1880 (Fbuffer_swap_text): Use swapfield_ where appropriate.
1881 (Fbuffer_live_p, Fget_file_buffer, get_truename_buffer)
1882 (Fget_buffer_create, clone_per_buffer_values)
1883 (Fmake_indirect_buffer, reset_buffer)
1884 (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name)
1885 (Fbuffer_local_value, buffer_lisp_local_variables)
1886 (Fset_buffer_modified_p, Frestore_buffer_modified_p)
1887 (Frename_buffer, Fother_buffer, Fbuffer_enable_undo)
1888 (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1)
1889 (set_buffer_temp, Fset_buffer, set_buffer_if_live)
1890 (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer)
1891 (Fbuffer_swap_text, Fset_buffer_multibyte)
1892 (swap_out_buffer_local_variables, record_overlay_string)
1893 (overlay_strings, init_buffer_once, init_buffer, syms_of_buffer):
1894 Use B_.
1895 * buffer.h (struct buffer): Rename all Lisp_Object fields.
1896 (BUFFER_INTERNAL_FIELD, B_): New macro.
1897 (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE): Use B_.
1898
1899 2011-02-14 Jan Djärv <jan.h.d@swipnet.se>
1900
1901 * gtkutil.c (xg_tool_bar_menu_proxy): Handle case when tool bar label
1902 is null.
1903
1904 2011-02-13 Jan Djärv <jan.h.d@swipnet.se>
1905
1906 * callproc.c (Fcall_process):
1907 * process.c (create_process): Replace Gtk with GConf in SIGPIPE
1908 comment.
1909
1910 2011-02-12 Martin Rudalics <rudalics@gmx.at>
1911
1912 * window.c (select_window): Check inhibit_point_swap argument when
1913 deciding whether to return immediately.
1914
1915 2011-02-12 Jan Djärv <jan.h.d@swipnet.se>
1916
1917 * nsterm.m (setFrame, initFrame): Make sure pixel_height doesn't become
1918 zero (Bug#7348).
1919
1920 2011-02-12 Chong Yidong <cyd@stupidchicken.com>
1921
1922 * config.in (TERMINFO): New definition.
1923
1924 * s/netbsd.h: Use it to choose between terminfo and termcap
1925 (Bug#7642).
1926
1927 2011-02-12 Paul Eggert <eggert@cs.ucla.edu>
1928
1929 * md5.c (md5_process_bytes): Use sizeof, not __alignof__.
1930 The difference doesn't matter here, in practice, and sizeof is
1931 more portable to non-GCC compilers. Also, this makes the code
1932 match the already-existing comment.
1933
1934 2011-02-12 Andreas Schwab <schwab@linux-m68k.org>
1935
1936 * process.c (create_process): Reset SIGPIPE handler in the child.
1937 * callproc.c (Fcall_process): Likewise. (Bug#5238)
1938
1939 2011-02-12 Eli Zaretskii <eliz@gnu.org>
1940
1941 * xdisp.c <this_line_min_pos>: New variable.
1942 (move_it_in_display_line_to): Record in this_line_min_pos the
1943 smallest position iterated across.
1944 (display_line): Use this_line_min_pos to record the smallest
1945 position in the line even if it is not displayed due to
1946 hscrolling. (Bug#7939)
1947
1948 2011-02-12 Paul Eggert <eggert@cs.ucla.edu>
1949
1950 Port to Sun C 5.11, which has __attribute__ ((__aligned (N))).
1951 * md5.h (ATTRIBUTE_ALIGNED): New macro.
1952 (struct md5_ctx): Use it.
1953
1954 Port to Solaris 10, which doesn't support FC_HINT_STYLE.
1955 * xftfont.c (FC_HINT_STYLE): #define to "hintstyle" if not
1956 defined.
1957 * xsettings.c (parse_settings, apply_xft_settings): Don't assume
1958 FC_HINT_STYLE is supported.
1959
1960 2011-02-11 Jan Djärv <jan.h.d@swipnet.se>
1961
1962 * xterm.c (x_set_frame_alpha): Access data before it is free:d.
1963 Make sure we don't do x_catch_errors twice.
1964
1965 2011-02-10 Glenn Morris <rgm@gnu.org>
1966
1967 * Makefile.in (really-lwlib): Depend on globals.h, for parallel builds.
1968
1969 2011-02-09 Eli Zaretskii <eliz@gnu.org>
1970
1971 * makefile.w32-in (GLOBAL_SOURCES, SOME_MACHINE_OBJECTS, obj):
1972 New macros.
1973 (globals.h, gl-stamp): New targets.
1974 (clean): Clean gl-stamp and globals.h.
1975
1976 2011-02-09 Andreas Schwab <schwab@linux-m68k.org>
1977
1978 * Makefile.in (gl-stamp): Create globals.h here.
1979 (globals.h): Don't do it here.
1980 (mostlyclean): Clean globals.h and gl-stamp.
1981
1982 2011-02-09 Paul Eggert <eggert@cs.ucla.edu>
1983
1984 * Makefile.in ($(otherobj)): Depend on globals.h.
1985 Otherwise 'make -j10' failed on my host, because the build lacked
1986 necessary dependencies, e.g., vm-limit.o depends on globals.h.
1987
1988 2011-02-08 Tom Tromey <tromey@redhat.com>
1989
1990 * Makefile.in (NS_OBJC_OBJ): New variable.
1991 (base_obj): Rename from 'obj'.
1992 (obj): New variable.
1993 (globals.h, gl-stamp, $(obj)): New targets.
1994 (GLOBAL_SOURCES): New variable.
1995 * globals.h: Remove.
1996 * nsselect.m (Vselection_alist): Define. Reverts part of
1997 2011-01-19T22:11:33Z!jan.h.d@swipnet.se.
1998 * buffer.c: Don't use "no_cell" for name of kill-buffer-hook's
1999 variable.
2000 * xselect.c (Vselection_alist): Define. Reverts part of 2011-01-19T23:32:42Z!eggert@cs.ucla.edu.
2001
2002 2011-02-08 Kenichi Handa <handa@m17n.org>
2003
2004 * font.c (Ffont_get): Do not cache :otf value.
2005
2006 2011-02-07 Paul Eggert <eggert@cs.ucla.edu>
2007
2008 conform to C89 pointer rules
2009
2010 * dired.c (scmp, file_name_completion):
2011 Change types between char * and unsigned char *, to satisfy C89
2012 rules about pointer type compatibility.
2013 * casefiddle.c (casify_object, casify_region): Likewise.
2014 * search.c (Freplace_match, Fregexp_quote): Likewise.
2015 * alloc.c (make_string, make_specified_string, make_pure_string):
2016 Likewise.
2017 * data.c (Fstring_to_number): Likewise.
2018 * print.c (float_to_string, PRINTFINISH, printchar, strout):
2019 (print_object): Likewise.
2020 * editfns.c (init_editfns, Fchar_to_string, Fbyte_to_string):
2021 (Fuser_full_name, Fsubst_char_in_region, Ftranslate_region_internal):
2022 (Fformat): Likewise.
2023 * callint.c (Fcall_interactively): Likewise.
2024 * fns.c (string_make_multibyte, string_to_multibyte):
2025 (string_make_unibyte, Fstring_as_unibyte, Fstring_to_unibyte):
2026 (Fbase64_encode_region, base64_encode_1, Fbase64_decode_region, Fmd5):
2027 Likewise.
2028 * lread.c (read1, hash_string): Likewise.
2029 * process.c (read_process_output, send_process, Fprocess_send_region):
2030 Likewise.
2031 * callproc.c (Fcall_process): Likewise.
2032 * doprnt.c (doprnt): Likewise.
2033 * indent.c (compute_motion): Likewise.
2034 * xfont.c (xfont_decode_coding_xlfd): Likewise.
2035 * ralloc.c (resize_bloc): Likewise.
2036 * image.c (tiff_load): Likewise.
2037 * xml.c (make_dom, parse_region): Likewise.
2038 * character.c (strwidth): Make its argument const char *, not const
2039 unsigned char *, since more callers prefer it that way. All callers
2040 changed.
2041
2042 2011-02-06 Paul Eggert <eggert@cs.ucla.edu>
2043
2044 * xterm.c (x_alloc_nearest_color_1): Avoid unportable int assumption.
2045 Emacs assumes two's complement elsewhere, but the assumption is
2046 easy to remove here, and this suppresses a warning with Sun C 5.8.
2047
2048 conform to C89 pointer rules
2049
2050 * xterm.c (x_draw_fringe_bitmap, handle_one_xevent, x_bitmap_icon):
2051 (same_x_server, x_term_init):
2052 Change types between char * and unsigned char *, to satisfy C89
2053 rules about pointer type compatibility.
2054 * doc.c (get_doc_string, Fsnarf_documentation):
2055 (Fsubstitute_command_keys): Likewise.
2056 * xfns.c (Fx_open_connection, Fx_window_property): Likewise.
2057 * bitmaps/gray.xbm (gray_bits): Likewise.
2058 * image.c (xbm_read_bitmap_data, xbm_load_image, xbm_load): Likewise.
2059 * keyboard.c (echo_char, MULTI_LETTER_MOD, tty_read_avail_input):
2060 Likewise.
2061 * keymap.c (Ftext_char_description): Likewise.
2062 * minibuf.c (Fread_buffer): Likewise.
2063 * fileio.c (IS_DRIVE) [defined WINDOWSNT]:
2064 (DRIVE_LETTER) [defined DOS_NT]:
2065 (report_file_error, Ffile_name_directory, Ffile_name_nondirectory):
2066 (make_temp_name, Fexpand_file_name, file_name_absolute_p):
2067 (search_embedded_absfilename, Fsubstitute_in_file_name):
2068 (barf_or_query_if_file_exists, Fmake_directory_internal):
2069 (Fdelete_directory_internal, Ffile_name_absolute_p, read_non_regular):
2070 (Finsert_file_contents, Fwrite_region):
2071 Likewise.
2072 * insdel.c (insert, insert_and_inherit, insert_before_markers):
2073 (insert_before_markers_and_inherit, insert_1, insert_1_both):
2074 Likewise. This changes these functions' signatures, which is
2075 more convenient since most callers use char *. All remaining
2076 callers changed.
2077 * editfns.c (general_insert_function): Change signature to
2078 match changes to insert functions' signatures.
2079 * keymap.c (map_keymap_char_table_item, map_keymap_internal):
2080 Use explicit cast when converting between void * and function pointer
2081 types, as C89 requires this.
2082
2083 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
2084
2085 don't ignore chdir failure
2086 * sysdep.c (sys_subshell) [!defined DOS_NT]: Diagnose chdir
2087 failure and exit.
2088 (sys_subshell) [defined DOS_NT]: Mark with a FIXME the two
2089 remaining unchecked chdir calls in this function; some DOS/NT
2090 expert needs to fix them.
2091 * emacs.c (main): Mark with a FIXME the unchecked chdir calls
2092 in this function; some NextStep expert needs to fix them.
2093
2094 2011-02-05 Glenn Morris <rgm@gnu.org>
2095
2096 * xfaces.c (Finternal_set_lisp_face_attribute):
2097 Try to clarify some error messages. (Bug#2659)
2098
2099 2011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
2100
2101 * editfns.c (save_restriction_restore): Don't forget to invalidate the
2102 current_column cache (bug#7946).
2103
2104 2011-02-05 Kenichi Handa <handa@m17n.org>
2105
2106 * ftfont.c (ftfont_open): Use FC_DUAL only when it is defined.
2107
2108 * xftfont.c (xftfont_open): Likewise.
2109
2110 2011-02-05 Andreas Schwab <schwab@linux-m68k.org>
2111
2112 * window.c (Fselect_window): Add missing return value.
2113
2114 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
2115
2116 xstrcasecmp: conform to C89 pointer rules
2117 * xfaces.c (xstrcasecmp): Change args from const unsigned char *
2118 to const char *, since they're usually low-level C strings, and
2119 this stays compatible with C89 pointer rules. All callers changed.
2120
2121 * charset.c: Conform to C89 pointer rules.
2122 (define_charset_internal): Switch between char * and unsigned char *.
2123
2124 * xmenu.c: Conform to C89 const rules.
2125 (xmenu_show, xdialog_show): Declare local var as char *, not
2126 const char *, to stay compatible with C89 const rules.
2127
2128 * xdisp.c: Conform to C89 pointer rules.
2129 (store_mode_line_noprop, display_string, reseat_to_string):
2130 (c_string_pos, number_of_chars, message_dolog):
2131 (message_log_check_duplicate, set_message_1, store_mode_line_noprop):
2132 (display_mode_element, display_string):
2133 Switch between char * and unsigned char * to stay compatible wth
2134 C89 pointer rules.
2135
2136 * regex.c: Conform to C89 pointer rules.
2137 (re_wctype): Add cast, as C89 does not allow assigning between
2138 char * and unsigned char *.
2139 (regex_compile): Likewise.
2140
2141 sync from gnulib to remove HAVE_STDBOOL_H
2142 * config.in: Regenerate.
2143
2144 2011-02-04 Eli Zaretskii <eliz@gnu.org>
2145
2146 * makefile.w32-in (LISP_H, PROCESS_H): New variables.
2147 Replace all uses of lisp.h with $(LISP_H), and all uses of
2148 process.h with $(PROCESS_H).
2149 ($(BLD)/editfns.$(O)): Depend on ../lib/strftime.h.
2150 ($(BLD)/print.$(O)): Depend on ../lib/ftoastr.h and ../lib/intprops.h.
2151
2152 * deps.mk: Update for recent changes: gnutls support, gnulib
2153 imports, addition of globals.h.
2154
2155 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on
2156 ../lib/ignore-value.h.
2157
2158 2011-02-03 Paul Eggert <eggert@cs.ucla.edu>
2159
2160 allow C code to suppress warnings about ignored return values
2161
2162 We need to go through the code and for each such warning, either
2163 fix the code to pay attention to the returned value, or tell GCC
2164 that we really do want to ignore the returned value. Here is one
2165 example of how to do the latter.
2166 * sysdep.c: Include <ignore-value.h>.
2167 (sys_subshell): Suppress an undesirable warning about not checking
2168 the returned value of 'write', as there's nothing useful one can
2169 do with that returned value.
2170
2171 2011-02-03 Jan Djärv <jan.h.d@swipnet.se>
2172
2173 * xterm.c (x_connection_closed): Remove all calls that calls
2174 XSync (Bug#7949).
2175
2176 2011-02-01 Eli Zaretskii <eliz@gnu.org>
2177
2178 * image.c (tiff_load): Avoid compiler warning in 2nd arg to
2179 TIFFClientOpen.
2180
2181 2011-02-01 Jan Djärv <jan.h.d@swipnet.se>
2182
2183 * xsmfns.c (ice_connection_closed): Call delete_read_fd.
2184 (x_session_check_input): Change args and return type so it can be used
2185 as argument to add_read_fd. Make static. Remove call to select.
2186 Call kbd_buffer_store_event for emacs_event.
2187 (smc_save_yourself_CB): Also store initial argv to SmRestartCommand.
2188 (ice_conn_watch_CB): Call add_read_fd.
2189
2190 * xterm.c (XTread_socket): Remove HAVE_X_SM block with call to
2191 x_session_check_input.
2192 (x_session_initialized): Remove definition.
2193 (x_initialize): Remove setting of x_session_initialized.
2194
2195 * xterm.h (x_session_check_input): Remove declaration.
2196
2197 2011-02-01 Paul Eggert <eggert@cs.ucla.edu>
2198
2199 format-time-string now supports subsecond time stamp resolution
2200 * editfns.c (emacs_nmemftime): Rename from emacs_memftimeu,
2201 for consistency with its new argument and with gnulib nstrftime.
2202 All callers changed. New argument NS.
2203 (Fformat_time_string): Check that the time argument's microseconds
2204 component, if any, is in range; this avoids integer overflow and
2205 also nstrftime needs this. Document %N.
2206
2207 2011-01-31 Andreas Schwab <schwab@linux-m68k.org>
2208
2209 * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead
2210 of int. All uses adjusted.
2211 (PNG_JMPBUF, png_load, jpeg_load, tiff_load, gif_load)
2212 (svg_load_image): Remove casts.
2213
2214 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
2215
2216 * image.c (fn_png_longjmp, fn_png_set_longjmp_fn): New png
2217 function definitions for compiling with libpng-1.5.
2218 (PNG_LONGJMP, PNG_JMPBUF): New macros for libpng-1.5.
2219 (my_png_error, png_load): Use them. Suggested by Thomas Klausner
2220 (Bug#7908).
2221
2222 2011-01-31 Eli Zaretskii <eliz@gnu.org>
2223
2224 * s/ms-w32.h (HAVE_STRFTIME): Don't define.
2225
2226 * makefile.w32-in (OBJ2): Remove strftime.$(O).
2227 ($(BLD)/strftime.$(O)): Remove prerequisites.
2228
2229 2011-01-31 Paul Eggert <eggert@cs.ucla.edu>
2230
2231 src/emacs.c now gets version number from configure.in
2232 * emacs.c (emacs_version): Set to VERSION so that it
2233 is determined automatically from ../configure.in.
2234
2235 2011-01-31 Jim Meyering <meyering@redhat.com>
2236
2237 * charset.c (load_charset_map): Don't deref NULL on failed malloc.
2238 Use xmalloc rather than malloc.
2239
2240 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
2241
2242 strftime: import from gnulib
2243 * Makefile.in (obj): Remove strftime.o, as gnulib now does this for us.
2244 * deps.mk (strftime.o): Remove.
2245 * editfns.c: Include <strftime.h>, supplied by gnulib.
2246 (emacs_strftimeu): Remove decl.
2247 (emacs_memftimeu): Use nstrftime (the gnulib name) rather than
2248 emacs_strftimeu.
2249 * config.in: Regenerate.
2250 * strftime.c: Remove; we now use strftime from gnulib.
2251
2252 Use SSDATA when the context wants char *.
2253 * alloc.c, buffer.c, bytecode.c, callproc.c, dired.c:
2254 * dispnew.c, doc.c, editfns.c, emacs.c, fileio.c, filelock.c:
2255 * fns.c, font.c, frame.c, image.c, indent.c, keyboard.c:
2256 * lread.c, minibuf.c, print.c, process.c, search.c, widget.c:
2257 * xdisp.c, xfaces.c, xfns.c, xml.c, xselect.c, xterm.c:
2258 Use SSDATA (not SDATA) when the context of the expression wants
2259 char * (not unsigned char *).
2260
2261 2011-01-30 Jan Djärv <jan.h.d@swipnet.se>
2262
2263 * .gdbinit: Read global lisp variables as globals.f_V*.
2264
2265 2011-01-30 Andreas Schwab <schwab@linux-m68k.org>
2266
2267 * font.c (PROP_MATCH): Remove parameter N and use strlen instead.
2268 All uses changed.
2269 (PROP_SAVE): Likewise.
2270
2271 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
2272
2273 * keyboard.c (make_lispy_position): Fix typo in last change
2274 (Bug#7935).
2275
2276 2011-01-29 Eli Zaretskii <eliz@gnu.org>
2277
2278 * s/ms-w32.h (HAVE_MKTIME): Remove.
2279
2280 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
2281 (GNULIB): New variable.
2282 (LIBS): Add $(GNULIB).
2283 $(TEMACS): Depend on $(GNULIB).
2284 <top-level>: Fix font-lock disrupted by a lone `"'.
2285
2286 2011-01-29 Jan Djärv <jan.h.d@swipnet.se>
2287
2288 * nsselect.m (ns_string_from_pasteboard): Get length of string
2289 and use make_string instead of build_string (Bug#7934).
2290 (ns_string_to_pasteboard_internal): Use initWithBytesNoCopy
2291 instead of stringWithUTF8String (Bug#7934).
2292
2293 2011-01-29 Anders Lindgren <andlind@gmail.com> (tiny change)
2294
2295 * nsfont.m (nsfont_open): Ensure that fonts with inexact
2296 descenders would not become one pixel too tall (Bug#7887).
2297
2298 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
2299
2300 * keyboard.c (make_lispy_position): For clicks on right fringe or
2301 margin, compute text position using the X coordinate relative to
2302 the left of the text area (Bug#7839).
2303
2304 2011-01-28 Kenichi Handa <handa@m17n.org>
2305
2306 * ftfont.c (ftfont_spec_pattern): Check each extra property
2307 value.
2308
2309 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2310
2311 * xdisp.c (safe_eval_handler): Distinguish symbols and strings.
2312
2313 2011-01-27 Chong Yidong <cyd@stupidchicken.com>
2314
2315 * font.c (font_parse_fcname): Undefine a temporary macro.
2316
2317 2011-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
2318
2319 Let the debugger continue to the normal handler (bug#7825).
2320 * eval.c (maybe_call_debugger): Declare before new use.
2321 (find_handler_clause): Don't call debugger any more.
2322 Ignore Vstack_trace_on_error.
2323 Use XCAR/XCDR.
2324 (syms_of_eval): Remove Vstack_trace_on_error.
2325 (Fsignal): Only modify handlerlist when we know we need to do it.
2326 Call the debugger when necessary.
2327 * globals.h (Vstack_trace_on_error): Remove.
2328
2329 2011-01-26 Chong Yidong <cyd@stupidchicken.com>
2330
2331 * font.c (font_parse_fcname): Rewrite GTK font name parser.
2332
2333 2011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
2334
2335 * xdisp.c (handle_fontified_prop): Be careful with font-lock changing
2336 the buffer's point-max (bug#7876).
2337
2338 2011-01-25 Chong Yidong <cyd@stupidchicken.com>
2339
2340 * lisp.h (XPNTR): Obey DATA_SEG_BITS in all non-USE_LSB_TAG cases.
2341 Remove unused case (Bug#6811).
2342
2343 2011-01-23 Jan Djärv <jan.h.d@swipnet.se>
2344
2345 * nsterm.m (x_set_offset): Set dont_constrain to 0 so the call to
2346 setFrameTopLeftPoint is constrained.
2347
2348 2011-01-23 Paul Eggert <eggert@cs.ucla.edu>
2349
2350 Check return values of some library calls.
2351 * emacs.c (main): Check dup result.
2352 * frame.c: Include <limits.h>, for INT_MIN and INT_MAX.
2353 (frame_name_fnn_p): Check strtol result.
2354
2355 * image.c (x_create_bitmap_from_xpm_data): Add cast to fix type clash
2356 when calling XpmCreatePixmapFromData.
2357
2358 Promote SSDATA macro from gtkutil.c and xsmfns.c to lisp.h.
2359 * lisp.h (SSDATA): New macro.
2360 All uses of (char *) SDATA (x) replaced with SSDATA (x),
2361 and all uses of (unsigned char *) SDATA (x) replaced with SDATA (x).
2362 * gtkutil.c (SSDATA): Remove, as lisp.h now defines this.
2363 * xsmfns.c (SSDATA): Likewise.
2364
2365 2011-01-22 Martin Rudalics <rudalics@gmx.at>
2366
2367 * window.c (select_window): New function.
2368 (Fselect_window): Call it.
2369 (inhibit_point_swap): Variable deleted.
2370 (Fset_window_configuration): Call select_window directly.
2371
2372 2011-01-22 Jan Djärv <jan.h.d@swipnet.se>
2373
2374 * nsterm.m (constrainFrameRect): Only constrain the first time called.
2375
2376 2011-01-21 Jan Djärv <jan.h.d@swipnet.se>
2377
2378 * nsterm.m (x_set_offset, windowDidMove): When calculating y, use first
2379 screen, not the window screen.
2380 (x_set_window_size): Remove constraints.
2381 Calculate origin.y only if zooming is 0 and without referring to a
2382 screen.
2383 (windowWillResize): Don't modify frameSize.
2384 (windowDidBecomeKey, mouseDown): Set dont_constrain to 1.
2385 (initFrameFromEmacs): Initialize ns_userRect.
2386 (windowShouldZoom): Set zooming to one. Remove all other code.
2387 (windowWillUseStandardFrame): Move static ns_userRect to EmacsView.
2388 Zero it after restore.
2389 (constrainFrameRect): New method for EmacsWindow.
2390 (mouseDragged): Always post NSWindowDidResizeNotification after call to
2391 windowWillResize.
2392
2393 * nsterm.h (ns_output): Add dont_constrain and zooming.
2394 (EmacsView): Add ns_userRect.
2395
2396 * nsterm.m (keyDown): If ns_right_alternate_modifier is Qleft, check
2397 if ns_alternate_modifier is none.
2398
2399 2011-01-20 Jan Djärv <jan.h.d@swipnet.se>
2400
2401 * unexmacosx.c: Add comment about include order.
2402
2403 2011-01-20 Glenn Morris <rgm@gnu.org>
2404
2405 * minibuf.c (syms_of_minibuf) <read-expression-history>:
2406 Give it a doc string.
2407 * globals.h: Add Vread_expression_history.
2408
2409 * macros.c (syms_of_macros) <kbd-macro-termination-hook>:
2410 Give it a doc string.
2411 * globals.h: Add Vkbd_macro_termination_hook.
2412
2413 2011-01-20 Chong Yidong <cyd@stupidchicken.com>
2414
2415 * fns.c (Fyes_or_no_p): Revert 2011-01-07 change, removing ARGS.
2416
2417 2011-01-19 Paul Eggert <eggert@cs.ucla.edu>
2418
2419 Fix X11 compilation failure.
2420 * globals.h (struct emacs_globals): Document f_Vselection_alist.
2421 * xselect.c (Vselection_alist): Remove declaration, moving its
2422 documentation to globals.h. This fixes a compilation failure
2423 induced by the earlier change to globals.h today.
2424
2425 2011-01-19 Jan Djärv <jan.h.d@swipnet.se>
2426
2427 * unexmacosx.c: Include config.h before unistd.h (Bug#7859).
2428
2429 * nsterm.m (ns_input_file, ns_input_font, ns_input_fontsize)
2430 (ns_input_line, ns_input_color, ns_input_text, ns_working_text)
2431 (ns_input_spi_name, ns_input_spi_arg)
2432 (ns_alternate_modifier, ns_right_alternate_modifier)
2433 (ns_command_modifier, ns_right_command_modifier, ns_control_modifier)
2434 (ns_right_control_modifier, ns_function_modifier)
2435 (ns_antialias_text, ns_confirm_quit): Move to globals.h.
2436 (Vx_toolkit_scroll_bars, x_use_underline_position_properties)
2437 (x_underline_at_descent_line): Remove declaration.
2438 (syms_of_nsterm): Remove & from DEFVAR_LISP and DEFVAR_BOOL.
2439
2440 * nsselect.m (Vns_sent_selection_hooks, Vns_lost_selection_hooks)
2441 (Vselection_alist, Vselection_converter_alist): Move to globals.h.
2442 (syms_of_nsselect): Remove & from DEFVAR_LISP.
2443
2444 * nsmenu.m (Voverriding_local_map, Voverriding_local_map_menu_flag):
2445 Remove declaration.
2446
2447 * nsfont.m (Vns_reg_to_script, ns_antialias_text): Move to
2448 globals.h.
2449 (syms_of_nsfont): Remove & from DEFVAR_LISP.
2450
2451 * nsfns.m (Vmenu_bar_mode, Vtool_bar_mode): Remove declaration.
2452 (Vns_icon_type_alist, Vns_version_string): Move to globals.h.
2453 (syms_of_nsfns): Remove & from DEFVAR_LISP calls.
2454
2455 * globals.h (struct emacs_globals): Add f_ns_input_file,
2456 f_ns_input_font, f_ns_input_fontsize, f_ns_input_line,
2457 f_ns_input_color, f_ns_input_text, f_ns_working_text,
2458 f_ns_input_spi_name, f_ns_input_spi_arg, f_ns_alternate_modifier,
2459 f_ns_right_alternate_modifier, f_ns_command_modifier,
2460 f_ns_right_command_modifier, f_ns_control_modifier,
2461 f_ns_right_control_modifier, f_ns_function_modifier,
2462 f_ns_antialias_text, f_ns_confirm_quit, f_Vns_icon_type_alist,
2463 f_Vns_version_string, f_Vns_sent_selection_hooks,
2464 f_Vns_lost_selection_hooks, f_Vselection_alist, f_Vns_reg_to_script
2465 and corresponding defines.
2466
2467 2011-01-19 Sam Steingold <sds@gnu.org>
2468
2469 * w32.c (check_windows_init_file): Remove declarations of
2470 Vwindow_system, Vload_path, Qfile_exists_p to fix compilation.
2471 * w32fns.c: Fix an error introduced by the previous patch.
2472
2473 2011-01-19 Tom Tromey <tromey@redhat.com>
2474
2475 * window.c: Fix error introduced by previous patch.
2476
2477 2011-01-18 Tom Tromey <tromey@parfait>
2478
2479 * globals.h: New file.
2480 * xterm.h (Vx_pixel_size_width_font_regexp): Remove declaration.
2481 * window.h (Vinitial_window_system, Vminibuf_scroll_window)
2482 (Vwindow_system_version): Remove declaration.
2483 * w32term.h (Vw32_enable_palette)
2484 (Vx_pixel_size_width_font_regexp): Remove declaration.
2485 * w32menu.c (Voverriding_local_map)
2486 (Voverriding_local_map_menu_flag): Remove declaration.
2487 * w32inevt.c (Vw32_alt_is_meta, Vw32_apps_modifier)
2488 (Vw32_capslock_is_shiftlock, Vw32_enable_caps_lock)
2489 (Vw32_enable_num_lock, Vw32_lwindow_modifier)
2490 (Vw32_pass_lwindow_to_system, Vw32_pass_rwindow_to_system)
2491 (Vw32_phantom_key_code, Vw32_recognize_altgr)
2492 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
2493 (w32_use_full_screen_buffer): Remove declaration.
2494 * w32.c (Vsystem_configuration, Vw32_downcase_file_names)
2495 (Vw32_generate_fake_inodes, Vw32_get_true_file_attributes)
2496 (w32_num_mouse_buttons, w32_pipe_read_delay): Remove declaration.
2497 * termopts.h (Vtruncate_partial_width_windows, inverse_video)
2498 (no_redraw_on_reenter, visible_bell): Remove declaration.
2499 * sysdep.c (Vsystem_name): Remove declaration.
2500 * syntax.h (parse_sexp_lookup_properties): Remove declaration.
2501 * menu.h (Vmenu_updating_frame): Remove declaration.
2502 * macros.h (Vexecuting_kbd_macro, executing_kbd_macro_index):
2503 Remove declaration.
2504 * lisp.h (Vafter_init_time, Vafter_load_alist)
2505 (Vauto_save_list_file_name, Vbefore_init_time, Vcommand_history)
2506 (Vcompletion_regexp_list, Vcurrent_load_list)
2507 (Vcurrent_prefix_arg, Vdata_directory, Vdebug_on_error)
2508 (Vdoc_directory, Vdoc_file_name, Vdynamic_library_alist)
2509 (Vexec_directory, Vexec_path, Vexec_suffixes)
2510 (Vface_font_rescale_alist, Vface_ignored_fonts, Vfeatures)
2511 (Vhelp_form, Vhistory_length, Vinhibit_field_text_motion)
2512 (Vinhibit_quit, Vinhibit_read_only, Vinhibit_redisplay)
2513 (Vinstallation_directory, Vinvocation_directory)
2514 (Vinvocation_name, Vload_file_rep_suffixes, Vload_history)
2515 (Vload_suffixes, Vmark_even_if_inactive, Vmemory_full)
2516 (Vmessage_log_max, Vobarray, Vprint_length, Vprint_level)
2517 (Vpurify_flag, Vquit_flag, Vsaved_region_selection)
2518 (Vscalable_fonts_allowed, Vselect_active_regions)
2519 (Vshell_file_name, Vstandard_input, Vstandard_output)
2520 (Vsystem_name, Vtemporary_file_directory, Vthrow_on_input)
2521 (Vtop_level, Vtty_erase_char, Vundo_outer_limit)
2522 (Vuser_login_name, Vwindow_scroll_functions)
2523 (Vwindow_system_version, Vx_no_window_manager)
2524 (Vx_resource_class, Vx_resource_name, baud_rate)
2525 (completion_ignore_case, debug_on_next_call, gc_cons_threshold)
2526 (history_delete_duplicates, inhibit_x_resources)
2527 (last_nonmenu_event, load_in_progress, max_specpdl_size)
2528 (minibuffer_auto_raise, print_escape_newlines, scroll_margin)
2529 (use_dialog_box, use_file_dialog): Remove declaration.
2530 Include globals.h.
2531 * keymap.h (Voverriding_local_map)
2532 (Voverriding_local_map_menu_flag, meta_prefix_char):
2533 Remove declaration.
2534 * keyboard.h (Vdouble_click_time, Vfunction_key_map)
2535 (Vinput_method_function, Vkey_translation_map)
2536 (Vlucid_menu_bar_dirty_flag, Vthis_original_command)
2537 (do_mouse_tracking, extra_keyboard_modifiers)
2538 (num_nonmacro_input_events): Remove declaration.
2539 * intervals.h (Vchar_property_alias_alist)
2540 (Vdefault_text_properties, Vinhibit_point_motion_hooks)
2541 (Vtext_property_default_nonsticky): Remove declaration.
2542 * gtkutil.h (x_gtk_file_dialog_help_text)
2543 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
2544 (x_gtk_whole_detached_tool_bar): Remove declaration.
2545 * frame.h (Vdefault_frame_alist, Vframe_alpha_lower_limit)
2546 (Vmenu_bar_mode, Vmouse_highlight, Vterminal_frame)
2547 (Vtool_bar_mode, Vx_resource_class, Vx_resource_name)
2548 (focus_follows_mouse): Remove declaration.
2549 * fontset.h (Valternate_fontname_alist, Vfontset_alias_alist)
2550 (Vignore_relative_composition, Votf_script_alist)
2551 (Vuse_default_ascent, Vvertical_centering_font_regexp):
2552 Remove declaration.
2553 * font.h (Vfont_log): Remove declaration.
2554 * dosfns.h (Vdos_display_scancodes, Vdos_version)
2555 (Vdos_windows_version, dos_codepage, dos_country_code)
2556 (dos_decimal_point, dos_hyper_key, dos_keyboard_layout)
2557 (dos_keypad_mode, dos_super_key, dos_timezone_offset):
2558 Remove declaration.
2559 * disptab.h (Vglyph_table, Vstandard_display_table):
2560 Remove declaration.
2561 * dispextern.h (Vface_remapping_alist, Vglyphless_char_display)
2562 (Vmouse_autoselect_window, Voverflow_newline_into_fringe)
2563 (Vshow_trailing_whitespace, Vtool_bar_button_margin)
2564 (Vtool_bar_style, cursor_in_echo_area, display_hourglass_p)
2565 (inverse_video, mode_line_in_non_selected_windows)
2566 (tool_bar_button_relief, tool_bar_max_label_size)
2567 (underline_minimum_offset)
2568 (unibyte_display_via_language_environment, x_stretch_cursor_p):
2569 Remove declaration.
2570 * composite.h (Vauto_composition_function)
2571 (Vcomposition_function_table): Remove declaration.
2572 * commands.h (Vexecuting_kbd_macro)
2573 (Vminibuffer_local_completion_map)
2574 (Vminibuffer_local_filename_completion_map)
2575 (Vminibuffer_local_filename_must_match_map)
2576 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
2577 (Vminibuffer_local_ns_map, Vthis_command)
2578 (Vunread_command_events, cursor_in_echo_area)
2579 (last_command_event, last_nonmenu_event, unread_command_char):
2580 Remove declaration.
2581 * coding.h (Vcoding_system_for_read, Vcoding_system_for_write)
2582 (Vdefault_file_name_coding_system)
2583 (Vdefault_process_coding_system, Vfile_name_coding_system)
2584 (Vlast_coding_system_used, Vlocale_coding_system)
2585 (Vselect_safe_coding_system_function)
2586 (Vtranslation_table_for_input, coding_system_require_warning)
2587 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
2588 (eol_mnemonic_unix, inherit_process_coding_system):
2589 Remove declaration.
2590 * charset.h (Vcharset_list, Vcurrent_iso639_language):
2591 Remove declaration.
2592 * character.h (Vauto_fill_chars, Vchar_direction_table)
2593 (Vchar_script_table, Vchar_width_table, Vprintable_chars)
2594 (Vscript_representative_chars, Vtranslation_table_vector)
2595 (Vunicode_category_table): Remove declaration.
2596 * ccl.h (Vfont_ccl_encoder_alist): Remove declaration.
2597 * buffer.h (Vafter_change_functions, Vbefore_change_functions)
2598 (Vdeactivate_mark, Vfirst_change_hook, Vtransient_mark_mode)
2599 (inhibit_modification_hooks): Remove declaration.
2600 * xterm.c (syms_of_xterm): Update.
2601 (Vx_alt_keysym, Vx_hyper_keysym, Vx_keysym_table)
2602 (Vx_meta_keysym, Vx_super_keysym, Vx_toolkit_scroll_bars)
2603 (x_mouse_click_focus_ignore_position)
2604 (x_underline_at_descent_line)
2605 (x_use_underline_position_properties): Remove.
2606 * xsmfns.c (syms_of_xsmfns): Update.
2607 (Vx_session_id, Vx_session_previous_id): Remove.
2608 * xsettings.c (syms_of_xsettings): Update.
2609 (Vxft_settings, use_system_font): Remove.
2610 * xselect.c (syms_of_xselect): Update.
2611 (Vselection_converter_alist, Vx_lost_selection_functions)
2612 (Vx_sent_selection_functions, x_selection_timeout): Remove.
2613 * xfns.c (syms_of_xfns): Update.
2614 (Vgtk_version_string, Vmotif_version_string)
2615 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
2616 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
2617 (Vx_no_window_manager, Vx_nontext_pointer_shape)
2618 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
2619 (Vx_sensitive_text_pointer_shape)
2620 (Vx_window_horizontal_drag_shape, x_gtk_file_dialog_help_text)
2621 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
2622 (x_gtk_use_system_tooltips, x_gtk_whole_detached_tool_bar):
2623 Remove.
2624 * xfaces.c (syms_of_xfaces): Update.
2625 (Vface_default_stipple, Vface_font_rescale_alist)
2626 (Vface_ignored_fonts, Vface_new_frame_defaults)
2627 (Vface_remapping_alist, Vfont_list_limit)
2628 (Vscalable_fonts_allowed, Vtty_defined_color_alist): Remove.
2629 * xdisp.c (syms_of_xdisp): Update.
2630 (Vauto_resize_tool_bars, Vblink_cursor_alist)
2631 (Vdisplay_pixels_per_inch, Vfontification_functions)
2632 (Vframe_title_format, Vglobal_mode_string)
2633 (Vglyphless_char_display, Vhourglass_delay, Vhscroll_step)
2634 (Vicon_title_format, Vinhibit_redisplay)
2635 (Vline_number_display_limit, Vline_prefix)
2636 (Vmax_mini_window_height, Vmenu_bar_update_hook)
2637 (Vmenu_updating_frame, Vmessage_log_max)
2638 (Vmouse_autoselect_window, Vnobreak_char_display)
2639 (Voverlay_arrow_position, Voverlay_arrow_string)
2640 (Voverlay_arrow_variable_list, Vredisplay_end_trigger_functions)
2641 (Vresize_mini_windows, Vshow_trailing_whitespace)
2642 (Vtool_bar_border, Vtool_bar_button_margin, Vtool_bar_style)
2643 (Vtruncate_partial_width_windows, Vvoid_text_area_pointer)
2644 (Vwindow_scroll_functions, Vwindow_size_change_functions)
2645 (Vwindow_text_change_functions, Vwrap_prefix)
2646 (auto_raise_tool_bar_buttons_p, automatic_hscrolling_p)
2647 (debug_end_pos, display_hourglass_p, emacs_scroll_step)
2648 (highlight_nonselected_windows, hscroll_margin)
2649 (inhibit_eval_during_redisplay, inhibit_free_realized_faces)
2650 (inhibit_menubar_update, inhibit_try_cursor_movement)
2651 (inhibit_try_window_id, inhibit_try_window_reusing)
2652 (line_number_display_limit_width)
2653 (make_cursor_line_fully_visible_p, message_truncate_lines)
2654 (mode_line_inverse_video, multiple_frames, overline_margin)
2655 (scroll_conservatively, scroll_margin, tool_bar_button_relief)
2656 (tool_bar_max_label_size, underline_minimum_offset)
2657 (unibyte_display_via_language_environment, x_stretch_cursor_p):
2658 Remove.
2659 * window.c (syms_of_window): Update.
2660 (Vminibuf_scroll_window, Vother_window_scroll_buffer)
2661 (Vrecenter_redisplay, Vscroll_preserve_screen_position)
2662 (Vtemp_buffer_show_function, Vwindow_configuration_change_hook)
2663 (Vwindow_point_insertion_type, auto_window_vscroll_p)
2664 (mode_line_in_non_selected_windows, next_screen_context_lines)
2665 (window_min_height, window_min_width): Remove.
2666 (scroll_margin): Remove declaration.
2667 * w32term.c (syms_of_w32term): Update.
2668 (Vw32_capslock_is_shiftlock, Vw32_grab_focus_on_raise)
2669 (Vw32_recognize_altgr, Vw32_swap_mouse_buttons)
2670 (Vx_toolkit_scroll_bars, w32_num_mouse_buttons)
2671 (w32_use_visible_system_caret, x_underline_at_descent_line)
2672 (x_use_underline_position_properties): Remove.
2673 (Vcommand_line_args, Vsystem_name, extra_keyboard_modifiers):
2674 Remove declaration.
2675 * w32select.c (syms_of_w32select): Update.
2676 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
2677 * w32proc.c (syms_of_ntproc): Update.
2678 (Vw32_downcase_file_names, Vw32_generate_fake_inodes)
2679 (Vw32_get_true_file_attributes, Vw32_quote_process_args)
2680 (Vw32_start_process_inherit_error_mode)
2681 (Vw32_start_process_share_console)
2682 (Vw32_start_process_show_window, w32_pipe_read_delay): Remove.
2683 (Vsystem_name): Remove declaration.
2684 * w32font.c (syms_of_w32font): Update.
2685 (Vw32_charset_info_alist): Remove.
2686 * w32fns.c (globals_of_w32fns, syms_of_w32fns): Update.
2687 (Vw32_alt_is_meta, Vw32_apps_modifier, Vw32_bdf_filename_alist)
2688 (Vw32_color_map, Vw32_enable_caps_lock, Vw32_enable_num_lock)
2689 (Vw32_enable_palette, Vw32_lwindow_modifier)
2690 (Vw32_pass_alt_to_system, Vw32_pass_lwindow_to_system)
2691 (Vw32_pass_rwindow_to_system, Vw32_phantom_key_code)
2692 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
2693 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
2694 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
2695 (Vx_no_window_manager, Vx_nontext_pointer_shape)
2696 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
2697 (Vx_sensitive_text_pointer_shape)
2698 (Vx_window_horizontal_drag_shape, w32_ansi_code_page)
2699 (w32_enable_synthesized_fonts, w32_mouse_button_tolerance)
2700 (w32_mouse_move_interval)
2701 (w32_pass_extra_mouse_buttons_to_system)
2702 (w32_pass_multimedia_buttons_to_system, w32_quit_key)
2703 (w32_strict_fontnames, w32_strict_painting): Remove.
2704 (Vhourglass_delay, Vmenu_bar_mode, Vtool_bar_mode)
2705 (Vw32_recognize_altgr, Vwindow_system_version)
2706 (w32_num_mouse_buttons, w32_use_visible_system_caret):
2707 Remove declaration.
2708 * w32console.c (syms_of_ntterm): Update.
2709 (w32_use_full_screen_buffer): Remove.
2710 (Vtty_defined_color_alist): Remove declaration.
2711 * w16select.c (syms_of_win16select): Update.
2712 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
2713 * undo.c (syms_of_undo): Update.
2714 (Vundo_outer_limit, Vundo_outer_limit_function)
2715 (undo_inhibit_record_point, undo_limit, undo_strong_limit):
2716 Remove.
2717 * textprop.c (syms_of_textprop): Update.
2718 (Vchar_property_alias_alist, Vdefault_text_properties)
2719 (Vinhibit_point_motion_hooks, Vtext_property_default_nonsticky):
2720 Remove.
2721 * terminal.c (syms_of_terminal): Update.
2722 (Vdelete_terminal_functions, Vring_bell_function): Remove.
2723 * term.c (syms_of_term): Update.
2724 (Vresume_tty_functions, Vsuspend_tty_functions)
2725 (no_redraw_on_reenter, system_uses_terminfo, visible_cursor):
2726 Remove.
2727 * syntax.c (syms_of_syntax): Update.
2728 (Vfind_word_boundary_function_table, multibyte_syntax_as_symbol)
2729 (open_paren_in_column_0_is_defun_start)
2730 (parse_sexp_ignore_comments, parse_sexp_lookup_properties)
2731 (words_include_escapes): Remove.
2732 * search.c (syms_of_search): Update.
2733 (Vinhibit_changing_match_data, Vsearch_spaces_regexp): Remove.
2734 * process.c (syms_of_process): Update.
2735 (Vprocess_adaptive_read_buffering, Vprocess_connection_type)
2736 (delete_exited_processes): Remove.
2737 * print.c (syms_of_print): Update.
2738 (Vfloat_output_format, Vprint_charset_text_property)
2739 (Vprint_circle, Vprint_continuous_numbering, Vprint_gensym)
2740 (Vprint_length, Vprint_level, Vprint_number_table)
2741 (Vstandard_output, print_escape_multibyte)
2742 (print_escape_newlines, print_escape_nonascii, print_quoted):
2743 Remove.
2744 * msdos.c (syms_of_msdos): Update.
2745 (Vdos_unsupported_char_glyph): Remove.
2746 (unibyte_display_via_language_environment): Remove declaration.
2747 * minibuf.c (syms_of_minibuf): Update.
2748 (Vcompletion_regexp_list, Vhistory_add_new_input)
2749 (Vhistory_length, Vminibuffer_completing_file_name)
2750 (Vminibuffer_completion_confirm)
2751 (Vminibuffer_completion_predicate, Vminibuffer_completion_table)
2752 (Vminibuffer_exit_hook, Vminibuffer_help_form)
2753 (Vminibuffer_history_position, Vminibuffer_history_variable)
2754 (Vminibuffer_prompt_properties, Vminibuffer_setup_hook)
2755 (Vread_buffer_function, Vread_expression_map)
2756 (completion_ignore_case, enable_recursive_minibuffers)
2757 (history_delete_duplicates, minibuffer_allow_text_properties)
2758 (minibuffer_auto_raise, read_buffer_completion_ignore_case):
2759 Remove.
2760 * marker.c (syms_of_marker): Update.
2761 (byte_debug_flag): Remove.
2762 * macros.c (syms_of_macros): Update.
2763 (Vexecuting_kbd_macro, executing_kbd_macro_index): Remove.
2764 * lread.c (syms_of_lread): Update.
2765 (Vafter_load_alist, Vbyte_boolean_vars)
2766 (Vbytecomp_version_regexp, Vcurrent_load_list)
2767 (Veval_buffer_list, Vload_file_name, Vload_file_rep_suffixes)
2768 (Vload_history, Vload_path, Vload_read_function)
2769 (Vload_source_file_function, Vload_suffixes, Vobarray)
2770 (Vold_style_backquotes, Vpreloaded_file_list, Vread_circle)
2771 (Vread_symbol_positions_list, Vread_with_symbol_positions)
2772 (Vsource_directory, Vstandard_input, Vuser_init_file, Vvalues)
2773 (force_load_messages, load_convert_to_unibyte)
2774 (load_dangerous_libraries, load_force_doc_strings)
2775 (load_in_progress): Remove.
2776 * keymap.c (syms_of_keymap): Update.
2777 (Vdefine_key_rebound_commands, Vemulation_mode_map_alists)
2778 (Vminibuffer_local_completion_map)
2779 (Vminibuffer_local_filename_completion_map)
2780 (Vminibuffer_local_filename_must_match_map)
2781 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
2782 (Vminibuffer_local_ns_map, Vminor_mode_map_alist)
2783 (Vminor_mode_overriding_map_alist, Vwhere_is_preferred_modifier):
2784 Remove.
2785 * keyboard.c (syms_of_keyboard): Update.
2786 (Vauto_save_timeout, Vcommand_error_function)
2787 (Vcommand_hook_internal, Vdeactivate_mark)
2788 (Vdeferred_action_function, Vdeferred_action_list)
2789 (Vdisable_point_adjustment, Vdouble_click_time)
2790 (Vecho_keystrokes, Venable_disabled_menus_and_buttons)
2791 (Vfunction_key_map, Vglobal_disable_point_adjustment)
2792 (Vhelp_char, Vhelp_event_list, Vhelp_form)
2793 (Vinput_method_function, Vinput_method_previous_message)
2794 (Vkey_translation_map, Vlast_event_frame)
2795 (Vlucid_menu_bar_dirty_flag, Vmenu_bar_final_items)
2796 (Vminibuffer_message_timeout, Voverriding_local_map)
2797 (Voverriding_local_map_menu_flag, Vpost_command_hook)
2798 (Vpre_command_hook, Vprefix_help_command)
2799 (Vsaved_region_selection, Vselect_active_regions)
2800 (Vshow_help_function, Vspecial_event_map, Vsuggest_key_bindings)
2801 (Vthis_command, Vthis_command_keys_shift_translated)
2802 (Vthis_original_command, Vthrow_on_input, Vtimer_idle_list)
2803 (Vtimer_list, Vtool_bar_separator_image_expression, Vtop_level)
2804 (Vtty_erase_char, Vunread_command_events)
2805 (Vunread_input_method_events, Vunread_post_input_method_events)
2806 (auto_save_interval, cannot_suspend, do_mouse_tracking)
2807 (double_click_fuzz, extra_keyboard_modifiers)
2808 (inhibit_local_menu_bar_menus, last_command_event)
2809 (last_input_event, last_nonmenu_event, menu_prompt_more_char)
2810 (menu_prompting, meta_prefix_char, num_input_keys)
2811 (num_nonmacro_input_events, polling_period, unread_command_char):
2812 Remove.
2813 * insdel.c (syms_of_insdel): Update.
2814 (Vcombine_after_change_calls, check_markers_debug_flag): Remove.
2815 * indent.c (syms_of_indent): Update.
2816 (indent_tabs_mode): Remove.
2817 * image.c (syms_of_image): Update.
2818 (Vimage_cache_eviction_delay, Vimage_types)
2819 (Vimagemagick_render_type, Vmax_image_size, Vx_bitmap_file_path)
2820 (cross_disabled_images): Remove.
2821 * fringe.c (syms_of_fringe): Update.
2822 (Vfringe_bitmaps, Voverflow_newline_into_fringe): Remove.
2823 * frame.c (syms_of_frame): Update.
2824 (Vdefault_frame_alist, Vdefault_frame_scroll_bars)
2825 (Vdelete_frame_functions, Vframe_alpha_lower_limit)
2826 (Vmake_pointer_invisible, Vmenu_bar_mode, Vmouse_highlight)
2827 (Vmouse_position_function, Vterminal_frame, Vtool_bar_mode)
2828 (Vx_resource_class, Vx_resource_name, focus_follows_mouse):
2829 Remove.
2830 * fontset.c (syms_of_fontset): Update.
2831 (Valternate_fontname_alist, Vfont_encoding_charset_alist)
2832 (Vfontset_alias_alist, Vignore_relative_composition)
2833 (Votf_script_alist, Vuse_default_ascent)
2834 (Vvertical_centering_font_regexp): Remove.
2835 * font.c (syms_of_font): Update.
2836 (Vfont_encoding_alist, Vfont_log, Vfont_slant_table)
2837 (Vfont_weight_table, Vfont_width_table): Remove.
2838 * fns.c (syms_of_fns): Update.
2839 (Vfeatures, use_dialog_box, use_file_dialog): Remove.
2840 * filelock.c (syms_of_filelock): Update.
2841 (Vtemporary_file_directory): Remove.
2842 * fileio.c (syms_of_fileio): Update.
2843 (Vafter_insert_file_functions, Vauto_save_include_big_deletions)
2844 (Vauto_save_list_file_name, Vauto_save_visited_file_name)
2845 (Vdefault_file_name_coding_system, Vfile_name_coding_system)
2846 (Vfile_name_handler_alist, Vinhibit_file_name_handlers)
2847 (Vinhibit_file_name_operation, Vset_auto_coding_function)
2848 (Vwrite_region_annotate_functions)
2849 (Vwrite_region_annotations_so_far)
2850 (Vwrite_region_post_annotation_function)
2851 (delete_by_moving_to_trash, write_region_inhibit_fsync): Remove.
2852 (Vw32_get_true_file_attributes): Remove declaration.
2853 * eval.c (syms_of_eval): Update.
2854 (Vdebug_ignored_errors, Vdebug_on_error, Vdebug_on_signal)
2855 (Vdebugger, Vinhibit_quit, Vmacro_declaration_function)
2856 (Vquit_flag, Vsignal_hook_function, Vstack_trace_on_error)
2857 (debug_on_next_call, debug_on_quit, debugger_may_continue)
2858 (max_lisp_eval_depth, max_specpdl_size): Remove.
2859 * emacs.c (syms_of_emacs): Update.
2860 (Vafter_init_time, Vbefore_init_time, Vcommand_line_args)
2861 (Vdynamic_library_alist, Vemacs_copyright, Vemacs_version)
2862 (Vinstallation_directory, Vinvocation_directory)
2863 (Vinvocation_name, Vkill_emacs_hook, Vpath_separator)
2864 (Vprevious_system_messages_locale, Vprevious_system_time_locale)
2865 (Vsystem_configuration, Vsystem_configuration_options)
2866 (Vsystem_messages_locale, Vsystem_time_locale, Vsystem_type)
2867 (inhibit_x_resources, noninteractive1): Remove.
2868 * editfns.c (syms_of_editfns): Update.
2869 (Vbuffer_access_fontified_property)
2870 (Vbuffer_access_fontify_functions, Vinhibit_field_text_motion)
2871 (Voperating_system_release, Vsystem_name, Vuser_full_name)
2872 (Vuser_login_name, Vuser_real_login_name): Remove.
2873 * dosfns.c (syms_of_dosfns): Update.
2874 (Vdos_display_scancodes, Vdos_version, Vdos_windows_version)
2875 (dos_codepage, dos_country_code, dos_decimal_point)
2876 (dos_hyper_key, dos_keyboard_layout, dos_keypad_mode)
2877 (dos_super_key, dos_timezone_offset): Remove.
2878 * doc.c (syms_of_doc): Update.
2879 (Vbuild_files, Vdoc_file_name): Remove.
2880 * dispnew.c (syms_of_display): Update.
2881 (Vglyph_table, Vinitial_window_system)
2882 (Vredisplay_preemption_period, Vstandard_display_table)
2883 (Vwindow_system_version, baud_rate, cursor_in_echo_area)
2884 (inverse_video, redisplay_dont_pause, visible_bell): Remove.
2885 * dired.c (syms_of_dired): Update.
2886 (Vcompletion_ignored_extensions): Remove.
2887 (Vw32_get_true_file_attributes): Remove declaration.
2888 * dbusbind.c (syms_of_dbusbind): Update.
2889 (Vdbus_debug, Vdbus_registered_buses)
2890 (Vdbus_registered_objects_table): Remove.
2891 * data.c (syms_of_data): Update.
2892 (Vmost_negative_fixnum, Vmost_positive_fixnum): Remove.
2893 * composite.c (syms_of_composite): Update.
2894 (Vauto_composition_function, Vauto_composition_mode)
2895 (Vcompose_chars_after_function, Vcomposition_function_table):
2896 Remove.
2897 * coding.c (syms_of_coding): Update.
2898 (Vcharset_revision_table, Vcoding_category_list)
2899 (Vcoding_system_alist, Vcoding_system_for_read)
2900 (Vcoding_system_for_write, Vcoding_system_list)
2901 (Vdefault_process_coding_system, Venable_character_translation)
2902 (Vfile_coding_system_alist, Vlast_code_conversion_error)
2903 (Vlast_coding_system_used, Vlatin_extra_code_table)
2904 (Vlocale_coding_system, Vnetwork_coding_system_alist)
2905 (Vprocess_coding_system_alist)
2906 (Vselect_safe_coding_system_function)
2907 (Vstandard_translation_table_for_decode)
2908 (Vstandard_translation_table_for_encode)
2909 (Vtranslation_table_for_input, coding_system_require_warning)
2910 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
2911 (eol_mnemonic_unix, inherit_process_coding_system)
2912 (inhibit_eol_conversion, inhibit_iso_escape_detection)
2913 (inhibit_null_byte_detection): Remove.
2914 * cmds.c (syms_of_cmds): Update.
2915 (Vpost_self_insert_hook): Remove.
2916 * charset.c (syms_of_charset): Update.
2917 (Vcharset_list, Vcharset_map_path, Vcurrent_iso639_language)
2918 (inhibit_load_charset_map): Remove.
2919 * character.c (syms_of_character): Update.
2920 (Vauto_fill_chars, Vchar_direction_table, Vchar_script_table)
2921 (Vchar_width_table, Vprintable_chars)
2922 (Vscript_representative_chars, Vtranslation_table_vector)
2923 (Vunicode_category_table): Remove.
2924 * ccl.c (syms_of_ccl): Update.
2925 (Vcode_conversion_map_vector, Vfont_ccl_encoder_alist)
2926 (Vtranslation_hash_table_vector): Remove.
2927 * category.c (syms_of_category): Update.
2928 (Vword_combining_categories, Vword_separating_categories): Remove.
2929 * callproc.c (syms_of_callproc): Update.
2930 (Vconfigure_info_directory, Vdata_directory, Vdoc_directory)
2931 (Vexec_directory, Vexec_path, Vexec_suffixes)
2932 (Vinitial_environment, Vprocess_environment)
2933 (Vshared_game_score_directory, Vshell_file_name): Remove.
2934 * callint.c (syms_of_callint): Update.
2935 (Vcommand_debug_status, Vcommand_history, Vcurrent_prefix_arg)
2936 (Vmark_even_if_inactive, Vmouse_leave_buffer_hook): Remove.
2937 * bytecode.c (syms_of_bytecode): Update.
2938 (Vbyte_code_meter, byte_metering_on): Remove.
2939 * buffer.c (syms_of_buffer): Update.
2940 (Vafter_change_functions, Vbefore_change_functions)
2941 (Vchange_major_mode_hook, Vfirst_change_hook)
2942 (Vinhibit_read_only, Vkill_buffer_query_functions)
2943 (Vtransient_mark_mode, inhibit_modification_hooks): Remove.
2944 * alloc.c (syms_of_alloc): Update.
2945 (Vgc_cons_percentage, Vgc_elapsed, Vmemory_full)
2946 (Vmemory_signal_data, Vpost_gc_hook, Vpurify_flag)
2947 (cons_cells_consed, floats_consed, garbage_collection_messages)
2948 (gc_cons_threshold, gcs_done, intervals_consed)
2949 (misc_objects_consed, pure_bytes_used, string_chars_consed)
2950 (strings_consed, symbols_consed, vector_cells_consed): Remove.
2951
2952 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
2953 (DEFVAR_INT): Assume global is in `globals'.
2954 * alloc.c (globals): Define.
2955
2956 2011-01-18 Tom Tromey <tromey@redhat.com>
2957
2958 * image.c (Vimagemagick_render_type): Remove redundant
2959 definition.
2960
2961 2011-01-18 Tom Tromey <tromey@redhat.com>
2962
2963 * xdisp.c (emacs_scroll_step): Rename from scroll_step.
2964 (try_scrolling): Rename argument to 'arg_scroll_conservatively'.
2965 (redisplay_window): Update.
2966 (syms_of_xdisp): Update.
2967
2968 2011-01-18 Tom Tromey <tromey@redhat.com>
2969
2970 * gtkutil.h (x_gtk_use_old_file_dialog, x_gtk_show_hidden_files)
2971 (x_gtk_file_dialog_help_text, x_gtk_whole_detached_tool_bar):
2972 Declare.
2973 * gtkutil.c (xg_uses_old_file_dialog):
2974 (xg_get_file_with_chooser):
2975 (xg_tool_bar_detach_callback): Don't redeclare globals.
2976
2977 2011-01-18 Tom Tromey <tromey@redhat.com>
2978
2979 * lisp.h (DEFVAR_BUFFER_DEFAULTS): New macro.
2980 * buffer.c (syms_of_buffer): Use DEFVAR_BUFFER_DEFAULTS.
2981
2982 2011-01-18 Paul Eggert <eggert@cs.ucla.edu>
2983
2984 * lisp.h (DECL_ALIGN): Define if HAVE_ATTRIBUTE_ALIGNED, not if
2985 defined __GNUC__. ../configure now checks for this GCC feature,
2986 which is now also supported by IBM and Oracle compilers.
2987 (USE_LSB_TAG) [defined DECL_ALIGN]: Also define if defined __sun,
2988 since Solaris malloc returns mult-of-8.
2989
2990 2011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
2991
2992 * image.c (syms_of_image): Don't access XSYMBOL's internals directly.
2993
2994 2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
2995
2996 Give a name FLOAT_TO_STRING_BUFSIZE to the constant 350.
2997 * lisp.h (FLOAT_TO_STRING_BUFSIZE): New macro.
2998 * data.c (Fnumber_to_string): Use it.
2999 * print.c (float_to_string, print_object): Likewise.
3000
3001 Include <unistd.h> unilaterally.
3002 * alloc.c, atimer.c, buffer.c, callproc.c, dired.c, dispnew.c, doc.c:
3003 * doprnt.c, editfns.c, emacs.c, fileio.c, filelock.c, fns.c:
3004 * getloadavg.c, getpagesize.h, gmalloc.c, image.c, keyboard.c:
3005 * lread.c, process.c, process.h, ralloc.c, regex.c, sysdep.c:
3006 * systty.h, term.c, termcap.c, xfns.c, xrdb.c, xselect.c, xsmfns.c:
3007 * xterm.c:
3008 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
3009 unistd.h is always present now, possibly supplied by gnulib.
3010
3011 * mktime.c: Remove; moving to ../lib.
3012
3013 Use gnulib's mktime module.
3014 * deps.mk (mktime.o): Remove rule.
3015
3016 Use gnulib's ftoastr module.
3017 * print.c: Include ftoastr.h.
3018 (FLT_RADIX, DBL_MANT_DIG, DBL_DIG, DBL_MIN, DOUBLE_DIGITS_BOUND):
3019 Remove; no longer needed.
3020 (float_to_string): Use dtoastr rather than rolling our own code,
3021 which had an off-by-one bug on non-IEEE hosts.
3022
3023 Automate syncing from gnulib.
3024 * Makefile.in (lib): New macro.
3025 (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib.
3026 ($(lib)/libgnu.a): New rule.
3027 (temacs$(EXEEXT)): Also link $(lib)/libgnu.a.
3028
3029 * xfns.c (x_real_positions): Fix signedness of local var 'ign'.
3030 XGetGeometry wants unsigned int *, not int *, for its last 4 args,
3031 so change the type of 'ign' to unsigned int from int.
3032
3033 * regex.c (analyse_first): Remove unreachable 'continue' statement.
3034
3035 * xterm.h (struct x_display_info): Remove stray semicolon.
3036 The extra semicolon didn't conform to the C standard.
3037 Problem reported by Sun cc.
3038
3039 * lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics.
3040 These changes make compilation easier to follow with Sun cc.
3041 (ARRAY_MARK_FLAG): Make it signed, so that it can be assigned to
3042 EMACS_INT values without provoking overflow diagnostics.
3043 (PSEUDOVECTOR_FLAG): Likewise, for consistency.
3044 (XSET) [! USE_LSB_TAG]: Use unsigned left shift to avoid overflow
3045 diagnostic with signed left shift.
3046
3047 * fileio.c (make_temp_name): Remove unreachable code.
3048
3049 * fontset.c (free_realized_fontset): Mark unreachable code with if (0).
3050 Previously it was marked by preceding it with "return;", but
3051 Sun cc complains about this.
3052
3053 * coding.c (decode_coding_emacs_mule): Remove unreachable code.
3054 This is a typo left over from 2009-03-06T07:51:52Z!handa@m17n.org,
3055 which fixed Bug#2370. Caught by Sun cc.
3056
3057 2011-01-15 Martin Rudalics <rudalics@gmx.at>
3058
3059 * window.c (inhibit_point_swap): New variable.
3060 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping
3061 point this time.
3062 (Fset_window_configuration): Set inhibit_point_swap to 1 instead
3063 of setting selected_window to nil (Bug#7728).
3064
3065 2011-01-11 Tassilo Horn <tassilo@member.fsf.org>
3066
3067 * image.c (imagemagick_load_image, Finit_image_library):
3068 Free intermediate image after creating a MagickWand from it.
3069 Terminate MagickWand environment after image loading.
3070
3071 2011-01-10 Michael Albinus <michael.albinus@gmx.de>
3072
3073 * dbusbind.c (Fdbus_register_service): Raise an error in case of
3074 unexpected return values.
3075 (Fdbus_register_method): Remove connection initialization.
3076
3077 2011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
3078
3079 * dbusbind.c (QCdbus_request_name_allow_replacement): New symbol;
3080 used by Fdbus_register_service.
3081 (QCdbus_request_name_replace_existing): Likewise.
3082 (QCdbus_request_name_do_not_queue): Likewise.
3083 (QCdbus_request_name_reply_primary_owner): Likewise.
3084 (QCdbus_request_name_reply_in_queue): Likewise.
3085 (QCdbus_request_name_reply_exists): Likewise.
3086 (QCdbus_request_name_reply_already_owner): Likewise.
3087 (Fdbus_register_service): New function.
3088 (Fdbus_register_method): Use Fdbus_register_service to do the name
3089 registration.
3090 (syms_of_dbusbind): Add symbols dbus-register-service,
3091 :allow-replacement, :replace-existing, :do-not-queue,
3092 :primary-owner, :existing, :in-queue and :already-owner.
3093
3094 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
3095
3096 * gtkutil.c (update_frame_tool_bar): Don't advance tool-bar index
3097 when removing extra buttons.
3098
3099 2011-01-08 Chong Yidong <cyd@stupidchicken.com>
3100
3101 * fns.c (Fyes_or_no_p): Doc fix.
3102
3103 2011-01-08 Andreas Schwab <schwab@linux-m68k.org>
3104
3105 * fns.c (Fyes_or_no_p): Add usage.
3106
3107 2011-01-08 Glenn Morris <rgm@gnu.org>
3108
3109 * makefile.w32-in ($(EMACS)):
3110 * Makefile.in (emacs$(EXEEXT)): -batch implies -q.
3111
3112 * xdisp.c (syms_of_xdisp) <Qrisky_local_variable>: Move from here...
3113 * emacs.c (syms_of_emacs) <Qrisky_local_variable>: ...to here.
3114
3115 2011-01-07 Andreas Schwab <schwab@linux-m68k.org>
3116
3117 * image.c (imagemagick_load_image): Fix some resource leaks and
3118 error handling.
3119
3120 2011-01-07 Chong Yidong <cyd@stupidchicken.com>
3121
3122 * fns.c (Fyes_or_no_p): Accept format string args.
3123
3124 2011-01-07 Glenn Morris <rgm@gnu.org>
3125
3126 * emacs.c (no_site_lisp): New int.
3127 (USAGE1): Add --no-site-lisp, mention -Q uses it.
3128 (main): Set no_site_lisp.
3129 (standard_args): Add --no-site-lisp.
3130 * lisp.h (no_site_lisp): New int.
3131 * lread.c (init_lread): If no_site_lisp, don't re-add site-lisp
3132 directories to Vload_path.
3133
3134 2011-01-05 Andreas Schwab <schwab@linux-m68k.org>
3135
3136 * alloc.c (mark_stack): Use __builtin_unwind_init if available.
3137
3138 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
3139
3140 * dbusbind.c (Fdbus_register_method): Add optional parameter
3141 dont_register_service. Updated docstring accordingly.
3142
3143 2011-01-04 Glenn Morris <rgm@gnu.org>
3144
3145 * emacs.c (emacs_copyright): Update short copyright year to 2011.
3146
3147 2011-01-03 Eli Zaretskii <eliz@gnu.org>
3148
3149 * image.c (png_jmpbuf): Remove definition.
3150 (my_png_error, png_load): Don't use png_jmpbuf.
3151
3152 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3153
3154 * keyboard.c (Vselect_active_regions): Doc fix. (Bug#7702)
3155
3156 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3157
3158 * image.c <Qlibpng_version>: New variable.
3159 (syms_of_image): Intern and staticpro it. Set its value to the
3160 version of PNG library we were compiled with.
3161 (my_png_error, png_load): Avoid GCC warnings about direct access
3162 to png_ptr->jmpbuf. (Bug#7716)
3163 (png_jmpbuf): New macro.
3164 (my_png_error, png_load): Use it instead of #ifdef'ing according
3165 to PNG_LIBPNG_VER_MAJOR and PNG_LIBPNG_VER_MINOR.
3166
3167 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
3168
3169 * .gdbinit (xgetptr): Fix the union+lsb case.
3170 (xbacktrace): Fix the union case.
3171
3172 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
3173
3174 * window.c (Fmove_to_window_line): Avoid abort when called in a buffer
3175 different from selected-window's.
3176
3177 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3178
3179 * keyboard.c (parse_menu_item): Prepend " " to the key sequence
3180 equivalent of a menu item when the key sequence is given by the
3181 `:keys' attribute. (Bug#7662)
3182
3183 * xdisp.c (Fformat_mode_line): Doc fix: no need to state that only
3184 the basic faces are supported.
3185
3186 2011-01-02 Jan Djärv <jan.h.d@swipnet.se>
3187
3188 * xterm.c (x_check_fullscreen): Fix pixel/character mixup.
3189
3190 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3191
3192 * xdisp.c (Fformat_mode_line): Fix last change.
3193
3194 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
3195
3196 * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic
3197 faces (Bug#7587).
3198
3199 2011-01-02 Eli Zaretskii <eliz@gnu.org>
3200
3201 * fileio.c (Fexpand_file_name): One more doc fix.
3202
3203 2011-01-01 Chong Yidong <cyd@stupidchicken.com>
3204
3205 * gtkutil.c (xg_get_tool_bar_widgets): Use NULL for a missing
3206 image or label in the container.
3207 (xg_make_tool_item): Replace VERT_ONLY arg with HORIZ, TEXT_IMAGE.
3208 (xg_show_toolbar_item): Function deleted.
3209 (xg_tool_item_stale_p): New function.
3210 (update_frame_tool_bar): Calculate tool-bar style once per call.
3211 Instead of hiding text labels, omit them. Don't use
3212 xg_show_toolbar_item; create new GtkToolItems from scratch if
3213 necessary, instead of trying to re-use them. This avoids an
3214 annoying animation when changing tool-bars.
3215
3216 2010-12-31 Jan Djärv <jan.h.d@swipnet.se>
3217
3218 * nsfns.m (ns_set_name_as_filename): Always use buffer name for
3219 title and buffer filename only for RepresentedFilename.
3220 Handle bad UTF-8 in buffer name (Bug#7517).
3221
3222 2010-12-30 Jan Djärv <jan.h.d@swipnet.se>
3223
3224 * coding.h (ENCODE_UTF_8): Remove "Used by ..." comment.
3225
3226 * nsfns.m (ns_set_name_iconic): Remove.
3227 (ns_set_name_internal): New function (Bug#7517).
3228 (Vicon_title_format): Extern declare.
3229 (ns_set_name): Call ns_set_name_internal.
3230 (x_explicitly_set_name): Remove call to ns_set_name_iconic.
3231 (x_implicitly_set_name): Ditto.
3232 (x_set_title): Remove commet about EXPLICIT. Call ns_set_name_internal.
3233 (ns_set_name_as_filename): Encode name with ENCODE_UTF_8 (Bug#7517).
3234
3235 2010-12-29 Štěpán Němec <stepnem@gmail.com> (tiny change)
3236
3237 * window.c (syms_of_window): Add missing defsubr for
3238 window-use-time.
3239
3240 2010-12-28 Andreas Schwab <schwab@linux-m68k.org>
3241
3242 * xterm.h (x_alloc_lighter_color_for_widget): Restore declaration.
3243 * xterm.c (x_alloc_lighter_color_for_widget): Restore.
3244
3245 2010-12-27 Andreas Schwab <schwab@linux-m68k.org>
3246
3247 * buffer.c: Remove unused declarations.
3248 * buffer.h: Likewise.
3249 * charset.h: Likewise.
3250 * composite.h: Likewise.
3251 * dispextern.h: Likewise.
3252 * dispnew.c: Likewise.
3253 * font.h: Likewise.
3254 * fontset.c: Likewise.
3255 * fontset.h: Likewise.
3256 * intervals.h: Likewise.
3257 * keymap.h: Likewise.
3258 * lisp.h: Likewise.
3259 * syntax.c: Likewise.
3260 * syntax.h: Likewise.
3261 * termhooks.h: Likewise.
3262 * window.h: Likewise.
3263 * xsettings.h: Likewise.
3264 * xterm.c: Likewise.
3265 * xterm.h: Likewise.
3266
3267 * chartab.c (sub_char_table_ref): Make static.
3268 * dispnew.c (line_hash_code, required_matrix_height)
3269 (required_matrix_width): Likewise.
3270 * eval.c (interactive_p, apply_lambda): Likewise.
3271 * fns.c (string_make_multibyte, copy_hash_table, hash_clear):
3272 Likewise.
3273 * font.c (QCadstyle, QCregistry, font_make_spec)
3274 (font_parse_fcname, font_encode_char, font_at): Likewise.
3275 * frame.c (x_frame_get_arg): Likewise.
3276 * keymap.c (get_keyelt): Likewise.
3277 * lread.c (read_filtered_event): Likewise.
3278 * print.c (write_string_1): Likewise.
3279 * window.c (delete_window, window_height, window_width)
3280 (foreach_window): Likewise.
3281 * xrdb.c (x_get_customization_string, x_get_resource): Likewise.
3282 * xterm.c (x_scroll_bar_clear, xembed_set_info)
3283 (xembed_send_message): Likewise.
3284
3285 * eval.c (run_hook_list_with_args): Delete.
3286 * font.c (font_unparse_gtkname, font_update_lface): Likewise.
3287 * terminal.c (get_terminal_param): Likewise.
3288 * xterm.c (x_alloc_lighter_color_for_widget): Likewise.
3289
3290 * scroll.c: Fix comment.
3291
3292 * dispnew.c (add_window_display_history)
3293 (add_frame_display_history, glyph_row_slice_p)
3294 (find_glyph_row_slice, flush_stdout)
3295 (check_matrix_pointer_lossage, matrix_row)
3296 (check_matrix_invariants, check_window_matrix_pointers)
3297 (check_matrix_pointers, window_to_frame_vpos)
3298 (window_to_frame_hpos): Prototize.
3299 * textprop.c (erase_properties): Likewise.
3300
3301 2010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
3302
3303 * print.c (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): Remove.
3304 (print_preprocess): Fix handling of uninterned symbols in last change.
3305
3306 * print.c (print, print_preprocess, print_object): Use a hash table
3307 rather than a linear table for Vprint_number_table.
3308
3309 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
3310
3311 * frame.c (focus_follows_mouse): Default to 0 (Bug#7269).
3312
3313 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
3314
3315 * keyboard.c (Vtool_bar_separator_image_expression): New variable.
3316 (parse_tool_bar_item): Use it to obtain image separators for
3317 displays not using native tool-bar separators.
3318
3319 * xdisp.c (build_desired_tool_bar_string): Don't handle separators
3320 specially, since this is now done in parse_tool_bar_item.
3321
3322 2010-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
3323
3324 Minor clean up to silence some gcc warnings.
3325 * window.c (Fset_window_buffer):
3326 * xterm.c (x_set_frame_alpha): Restructure code to silence
3327 compiler warning.
3328 (handle_one_xevent): Remove unused var `p'.
3329 (do_ewmh_fullscreen): Remove unused var `lval'.
3330 (xembed_set_info): Remove unused var `atom'.
3331 * textprop.c (Fremove_list_of_text_properties): Add braces to silence
3332 compiler warning.
3333 * fontset.c (fontset_id_valid_p, dump_fontset):
3334 * ftfont.c (ftfont_drive_otf): Modernize k&r declaration.
3335 * eval.c (Feval, Ffuncall): Avoid unneeded gotos.
3336 * dispnew.c (update_frame, update_frame_1): Compile the `do_pause'
3337 label only when it's used.
3338 * image.c (x_create_bitmap_from_xpm_data):
3339 * dispextern.h (x_create_bitmap_from_xpm_data): Use const char** like
3340 its callers.
3341 * coding.c (detect_coding_utf_16): Remove unused vars `src_base' and
3342 `consumed_chars'.
3343 (DECODE_EMACS_MULE_21_COMPOSITION): Remove unused var `charbuf_base'.
3344 (decode_coding_emacs_mule): Remove unused label `retry'.
3345 (detect_eol): Add parens to silence compiler warning.
3346 * alloc.c (bytes_used_when_reconsidered): Move to the #ifdef where
3347 it's used to silence the compiler.
3348 (make_number): Modernize k&r declaration.
3349 (mark_char_table): Add parens to silence compiler warning.
3350
3351 2010-12-17 Chong Yidong <cyd@stupidchicken.com>
3352
3353 * keyboard.c (parse_tool_bar_item): Allow menu separators in
3354 tool-bar maps.
3355 (menu_separator_name_p): New function, from gtkutil.c.
3356 (separator_names): Move from gtkutil.c.
3357
3358 * keyboard.h (menu_separator_name_p): Add prototype.
3359
3360 * gtkutil.c (XG_BIN_CHILD): New macro.
3361 (xg_get_menu_item_label, xg_update_menubar)
3362 (xg_update_menu_item, xg_tool_bar_menu_proxy)
3363 (xg_show_toolbar_item, update_frame_tool_bar): Use it.
3364 (separator_names, xg_separator_p): Move to keyboard.c.
3365 (create_menus, xg_update_submenu, update_frame_tool_bar):
3366 Use menu_separator_name_p.
3367
3368 * nsmenu.m (name_is_separator): Function deleted.
3369 (addItemWithWidgetValue): Use menu_separator_name_p.
3370
3371 * w32menu.c (name_is_separator): Function deleted.
3372 (add_menu_item): Use menu_separator_name_p.
3373
3374 2010-12-16 Jan Djärv <jan.h.d@swipnet.se>
3375
3376 * nsterm.m (ns_draw_window_cursor): If the cursor color is the
3377 same as the background, use the face forground as cursor.
3378
3379 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3380
3381 * fileio.c (Fexpand_file_name): Doc fix. (Bug#7617)
3382
3383 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3384
3385 * xdisp.c (string_pos_nchars_ahead, c_string_pos)
3386 (face_before_or_after_it_pos, next_element_from_string)
3387 (next_element_from_c_string, produce_stretch_glyph): Remove unused
3388 calculations of maximum string length before calling
3389 string_char_and_length and STRING_CHAR_AND_LENGTH.
3390 (string_char_and_length): Update commentary: MAXLEN is no longer
3391 needed.
3392
3393 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
3394
3395 * keyboard.c (kbd_buffer_get_event): Construct SAVE_SESSION_EVENT
3396 as (Qsave_session arg).
3397
3398 * xsmfns.c (smc_interact_CB): Set arg to Qnil.
3399 (smc_die_CB): Make an event with arg Qt.
3400 (Fhandle_save_session): If event has Qt as argument,
3401 call Fkill_emacs (Bug#7552).
3402
3403 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3404
3405 * buffer.c (transient-mark-mode): Doc fix (Bug#7465).
3406
3407 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
3408
3409 * xsmfns.c (smc_die_CB): Call Fkill_emacs (Bug#7552).
3410
3411 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3412
3413 * dispextern.h (struct it): New member overlay_strings_charpos.
3414
3415 * xdisp.c (next_overlay_string, load_overlay_strings): Record the
3416 charpos where we computed n_overlay_strings.
3417 (next_overlay_string): Load overlay strings at recorded position,
3418 which may not be the same as the iterator's charpos (Bug#7016).
3419
3420 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3421
3422 * xdisp.c (try_scrolling): Avoid infloop if the first line is
3423 obscured due to a vscroll (Bug#7537).
3424
3425 2010-12-13 Jan Djärv <jhd@zeplinf.localdomain>
3426
3427 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
3428
3429 * nsterm.m (x_set_window_size, windowWillResize, initFrameFromEmacs):
3430 Use FRAME_TOOLBAR_HEIGHT.
3431 (x_set_offset): Handle XNegative and YNegative in
3432 f->size_hint_flags (Bug#7510).
3433
3434 2010-12-11 Eli Zaretskii <eliz@gnu.org>
3435
3436 * w32fns.c (Fx_show_tip): Call try_window with last argument
3437 TRY_WINDOW_IGNORE_FONTS_CHANGE. Delete the TODO ifdef: problem
3438 solved. Round up the tip height to an integral multiple of the
3439 frame's line height. Add FRAME_COLUMN_WIDTH to the tip width.
3440 (Bug#7398)
3441
3442 2010-12-08 Glenn Morris <rgm@gnu.org>
3443
3444 * fileio.c (Fverify_visited_file_modtime): Default to current buffer.
3445
3446 2010-12-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3447
3448 * xml.c (parse_region): Ignore blank HTML nodes.
3449 (make_dom): Return CDATA sections (like <style>foo</style>) as
3450 text nodes.
3451
3452 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3453
3454 * lread.c (read1): Allow newstyle unquote outside of backquote.
3455 Disallow old-style backquotes inside new-style backquotes.
3456 Don't count unquotes to figure out when we're "syntactically inside
3457 but semantically outside of a backquote" any more.
3458 Extend the restriction no-unescaped-commas-and-backquotes-in-symbols
3459 to all contexts.
3460
3461 2010-12-05 Chong Yidong <cyd@stupidchicken.com>
3462
3463 * process.c: Remove checks for HAVE_SYS_IOCTL_H (Bug#7484).
3464
3465 2010-12-04 Andreas Schwab <schwab@linux-m68k.org>
3466
3467 * Makefile.in (M_FILE): Substitute @M_FILE@ instead of @machfile@.
3468 (S_FILE): Substitute @S_FILE@ instead of @opsysfile@.
3469 * m/arm.h, m/sh3.h, m/xtensa.h: Remove files.
3470
3471 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
3472
3473 * lisp.h (union Lisp_Object): Explicitly declare signedness of
3474 bit-field.
3475 (XINT): Remove variant for EXPLICIT_SIGN_EXTEND.
3476 * m/alpha.h (EXPLICIT_SIGN_EXTEND): Don't define.
3477 * m/amdx86-64.h (EXPLICIT_SIGN_EXTEND): Likewise.
3478 * m/ia64.h (EXPLICIT_SIGN_EXTEND): Likewise.
3479 * m/ibms390.h (EXPLICIT_SIGN_EXTEND): Likewise.
3480 * m/ibms390x.h (EXPLICIT_SIGN_EXTEND): Likewise.
3481 * m/iris4d.h (EXPLICIT_SIGN_EXTEND): Likewise.
3482 * m/m68k.h (EXPLICIT_SIGN_EXTEND): Likewise.
3483 * m/sparc.h (EXPLICIT_SIGN_EXTEND): Likewise.
3484 * m/template.h (EXPLICIT_SIGN_EXTEND): Likewise.
3485 * m/hp800.h: Remove file.
3486 * m/mips.h: Remove file.
3487
3488 2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
3489
3490 * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background
3491 with cursor color and draw a rectangle around the image (Bug#7412).
3492
3493 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
3494
3495 * frame.c (x_set_font): Remove unused variable.
3496
3497 2010-12-02 Jan Djärv <jan.h.d@swipnet.se>
3498
3499 * nsmenu.m (update_frame_tool_bar): Remove NSLog on invalid image.
3500
3501 * nsterm.m (ns_draw_glyph_string): Switch fore- and background if
3502 drawing text under filled box cursor (Bug#7479).
3503
3504 2010-11-27 Kenichi Handa <handa@m17n.org>
3505
3506 * charset.c (emacs_mule_charset): Make it an array of charset ID;
3507 i.e. integer.
3508 (Fdefine_charset_internal): Adjust for the above change.
3509 (init_charset_once): Likewise.
3510
3511 * charset.h (emacs_mule_charset): Adjust the prototype.
3512 Delete duplicated extern.
3513
3514 * coding.c (emacs_mule_char): Adjust for the change of
3515 emacs_mule_charset.
3516
3517 * lread.c (read_emacs_mule_char): Adjust for the change of
3518 emacs_mule_charset.
3519
3520 2010-11-27 Eli Zaretskii <eliz@gnu.org>
3521
3522 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
3523 of w32api >= 3.15. (Bug#6989) (Bug#7452)
3524
3525 2010-11-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3526
3527 * alloc.c (mark_terminals): Ensure that the image cache is marked
3528 even if the terminal object was marked earlier (Bug#6301).
3529
3530 2010-11-21 Chong Yidong <cyd@stupidchicken.com>
3531
3532 * editfns.c (Fbyte_to_string): Signal an error arg is not a byte.
3533
3534 2010-11-27 Jan Djärv <jan.h.d@swipnet.se>
3535
3536 * gtkutil.c (menubar_map_cb): New function (Bug#7425).
3537 (xg_update_frame_menubar): Connect signal map to menubar_map_cb.
3538 Use 23 as menubar height if 0. (Bug#7425).
3539
3540 2010-11-26 Eli Zaretskii <eliz@gnu.org>
3541
3542 * xdisp.c (set_message_1): Force paragraph direction in echo area
3543 be left-to-right.
3544
3545 * keyboard.c (make_lispy_position): Put a meaningful value in yret
3546 when the click is on the header or mode line.
3547
3548 2010-11-25 Eli Zaretskii <eliz@gnu.org>
3549
3550 * xdisp.c (set_cursor_from_row): Don't forget to consider the
3551 `cursor' property of the first character in overlay strings.
3552 (Bug#7474) (Bug#7481)
3553
3554 2010-11-24 Jan Djärv <jan.h.d@swipnet.se>
3555
3556 * nsterm.m (NSLeftControlKeyMask, NSLeftCommandKeyMask)
3557 (NSLeftAlternateKeyMask): New defines.
3558 (keyDown): Parse left and right keys separately (Bug#7458).
3559 Compare Left key masks exactly (Bug#7458).
3560
3561 2010-11-23 Eli Zaretskii <eliz@gnu.org>
3562
3563 * intervals.c (temp_set_point_both): Define before calling, to
3564 avoid GCC warnings.
3565
3566 2010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
3567
3568 * nsmenu.m: Use #include <config.h> instead of "config.h".
3569
3570 * term.c (Qglyphless_char,last_glyphless_glyph_frame)
3571 (last_glyphless_glyph_face_id, last_glyphless_glyph_merged_face_id):
3572 Move declarations ...
3573 * lisp.h (Qglyphless_char,last_glyphless_glyph_frame)
3574 (last_glyphless_glyph_face_id, last_glyphless_glyph_merged_face_id):
3575 ... here.
3576
3577 * emacs.c (gdb_use_union, gdb_valbits,gdb_gctypebits)
3578 (gdb_data_seg_bits, gdb_array_mark_flag, PVEC_FLAG)
3579 (gdb_pvec_type):
3580 * print.c (print_output_debug_flag):
3581 * lisp.h (debug_print): Mark as EXTERNALLY_VISIBLE.
3582 (safe_debug_print): New declaration.
3583
3584 * xterm.c:
3585 * systty.h:
3586 * sound.c: Include <sys/ioctl.h> unconditionally.
3587
3588 2010-11-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3589
3590 * alloc.c (mark_maybe_object): Return early if given a Lisp
3591 integer (Bug#6301).
3592
3593 2010-11-21 Ken Brown <kbrown@cornell.edu>
3594
3595 * sheap.c (STATIC_HEAP_SIZE): Revert previous change.
3596
3597 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
3598
3599 * nsterm.m (ns_right_command_modifier, ns_right_control_modifier):
3600 Define (Bug#7458).
3601 (NSRightCommandKeyMask, NSRightControlKeyMask): Define (Bug#7458).
3602 (EV_MODIFIERS): Check for NSRightCommandKeyMask and
3603 NSRightControlKeyMask also (Bug#7458).
3604 (keyDown): Ditto (Bug#7458).
3605 (syms_of_nsterm): Defvar ns-right-command-modifier and
3606 ns-right-control-modifier (Bug#7458).
3607
3608 2010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
3609
3610 * sysdep.c (sys_subshell): Remove SET_EMACS_PRIORITY.
3611 * emacs.c (emacs_priority, syms_of_emacs): Remove emacs_priority.
3612
3613 * intervals.h (temp_set_point, temp_set_point_both):
3614 * buffer.h (offset_intervals, copy_intervals): Remove INLINE.
3615
3616 2010-11-20 Ken Brown <kbrown@cornell.edu>
3617
3618 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
3619
3620 2010-11-20 Eli Zaretskii <eliz@gnu.org>
3621
3622 * term.c (produce_glyphless_glyph): Use \uNNNN, \UNNNNNN, or
3623 \xNNNNNN for hex-code display of glyphless characters.
3624
3625 2010-11-20 Jan Djärv <jan.h.d@swipnet.se>
3626
3627 * gtkutil.c (xg_make_tool_item): Take vert_only as argument.
3628 Set important to ! vert_only.
3629 (xg_show_toolbar_item): Don't show label horizontally if
3630 tool item isn't important.
3631 (update_frame_tool_bar): Get TOOL_BAR_ITEM_VERT_ONLY and pass it to
3632 xg_make_tool_item, or update important on existing tool item.
3633
3634 * keyboard.c (QCvert_only): New variable.
3635 (parse_tool_bar_item): Check for QCvert_only.
3636 (syms_of_keyboard): Initialize QCvert_only.
3637
3638 * dispextern.h (tool_bar_item_idx): Add TOOL_BAR_ITEM_VERT_ONLY.
3639
3640 2010-11-20 Eli Zaretskii <eliz@gnu.org>
3641
3642 * msdos.c (dos_rawgetc): Use gen_help_event, instead of doing the
3643 same in-line.
3644
3645 2010-11-20 Andreas Schwab <schwab@linux-m68k.org>
3646
3647 * xfaces.c (lookup_face): Make static.
3648 * dispnew.c (copy_row_except_pointers): Likewise.
3649 * syntax.c (dec_bytepos): Likewise.
3650 (inc_bytepos): Remove.
3651 * dispextern.h (lookup_face): Remove declaration.
3652
3653 2010-11-19 Eli Zaretskii <eliz@gnu.org>
3654
3655 * xdisp.c (set_cursor_from_row): Display cursor after all the
3656 glyphs that come from an overlay. Don't overstep the last glyph
3657 when skipping glyphs from an overlay. (Bug#6687)
3658
3659 2010-11-18 Dan Nicolaescu <dann@ics.uci.edu>
3660
3661 * alloc.c (refill_memory_reserve): Move declaration ...
3662 * lisp.h (refill_memory_reserve): ... here.
3663
3664 * strftime.c (_strftime_copytm): Add declaration.
3665
3666 * callproc.c (syms_of_callproc): Use intern_c_string.
3667
3668 Move declarations from .c files to .h files.
3669 * process.c (timers_run):
3670 * minibuf.c (quit_char):
3671 * lread.c (read_emacs_mule_char):
3672 * keyboard.c (minibuf_level, message_enable_multibyte)
3673 (pending_malloc_warning):
3674 * insdel.c (Vselect_active_regions, Vsaved_region_selection)
3675 (Qonly): Remove declarations.
3676 * lisp.h (pending_malloc_warning, Vsaved_region_selection)
3677 (Vselect_active_regions):
3678 * keyboard.h (timers_run): Add declarations.
3679
3680 * strftime.c (my_strftime_gmtime_r, my_strftime_localtime_r)
3681 (tm_diff): Convert definitions to standard C.
3682 (extra_args_spec_iso): Remove, unused.
3683
3684 2010-11-18 Jan Djärv <jan.h.d@swipnet.se>
3685
3686 * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
3687
3688 * config.in (HAVE_G_TYPE_INIT): New symbol.
3689
3690 2010-11-18 Eli Zaretskii <eliz@gnu.org>
3691
3692 * lread.c (Fload): Mention `load-in-progress' and
3693 `load-file-name'. (Bug#7346)
3694
3695 * keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses.
3696 (kbd_buffer_store_event_hold, kbd_buffer_get_event)
3697 (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef
3698 subprocesses. Use buffer_free only ifdef subprocesses.
3699
3700 * process.c (init_process) [subprocesses]: Init kbd_is_on_hold in
3701 the subprocesses version, not in the non-subprocesses one.
3702
3703 * Makefile.in: Don't use ## comment, it breaks the MSDOS build.
3704
3705 2010-11-17 Eli Zaretskii <eliz@gnu.org>
3706
3707 * xdisp.c (set_cursor_from_row): Fix cursor positioning in empty
3708 lines on text-mode terminals. (bug#7417)
3709
3710 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
3711
3712 * xterm.c (get_current_wm_state): Rename from get_current_vm_state.
3713 (do_ewmh_fullscreen, x_handle_net_wm_state): Update callers.
3714
3715 2010-11-17 Kenichi Handa <handa@m17n.org>
3716
3717 * coding.c (Fset_terminal_coding_system_internal): Fix previous
3718 change (set charset-ID list instead of charset-symbol list).
3719
3720 2010-11-16 Chong Yidong <cyd@stupidchicken.com>
3721
3722 * keyboard.c (make_lispy_position): For text area clicks, record Y
3723 pixel position relative to the text area, excluding header line.
3724 Also change X and Y to Lisp_Objects, not pointers; don't return
3725 coordinate values via pointers. Pass ON_TEXT_AREA coordinate to
3726 buffer_posn_from_coords counting from the start of the text area.
3727 (Fposn_at_x_y, make_lispy_event): Callers changed.
3728
3729 * window.c (coordinates_in_window): Change X and Y to ints rather
3730 than pointers; don't return coordinates via pointers.
3731 (struct check_window_data): Change X and Y from pointers to ints.
3732 (window_from_coordinates): Remove args WX and WY; don't return
3733 coordinates via pointers.
3734 (Fcoordinates_in_window_p, window_from_coordinates):
3735 (check_window_containing, Fwindow_at): Callers changed.
3736 (window_relative_x_coord): New function.
3737
3738 * window.h (window_from_coordinates, window_relative_x_coord):
3739 Update prototypes.
3740
3741 * dispnew.c (buffer_posn_from_coords): Assume that X counts from
3742 the start of the text area.
3743
3744 * xdisp.c (remember_mouse_glyph): Change window_from_coordinates
3745 call. Use window_relative_x_coord.
3746 (note_mouse_highlight): Change window_from_coordinates call.
3747
3748 * w32term.c (w32_read_socket):
3749 * msdos.c (dos_rawgetc):
3750 * xterm.c (handle_one_xevent): Likewise.
3751
3752 2010-11-16 Dan Nicolaescu <dann@ics.uci.edu>
3753
3754 * strftime.c (LOCALE_PARAM_DECL): Update for standard C.
3755 (LOCALE_PARAM, LOCALE_PARAM_PROTO): Remove, unused.
3756 (memcpy_lowcase, so_week_days, extra_args_spec, emacs_strftimeu):
3757 Convert definitions to standard C.
3758 * regex.c: Do not include <stdlib.h>, config.h does it.
3759 Include unistd.h.
3760 (xrealloc, init_syntax_once, re_match, regcomp, regexec)
3761 (regerror, regfree): Convert definitions to standard C.
3762 * mktime.c (my_mktime_localtime_r, ydhms_tm_diff, ranged_convert)
3763 (__mktime_internal): Convert definitions to standard C.
3764
3765 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3766
3767 * w32proc.c:
3768 * w32inevt.c:
3769 * w32heap.c:
3770 * w32.c: Remove config.h include guards.
3771
3772 * callproc.c (child_setup): Reorder code to simplify #ifdefs.
3773 No code changes.
3774
3775 * process.c: Include <sys/ioctl.h> unconditionally,
3776 keyboard.c already does it.
3777
3778 * keyboard.c (pending_malloc_warning): Add const to match
3779 definition in alloc.c.
3780 (Fset_input_interrupt_mode): Simplify #ifdefs.
3781
3782 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3783
3784 Clean up systty.h macros.
3785 * systty.h (EMACS_GET_TTY_PGRP, EMACS_SET_TTY_PGRP, EMACS_GET_TTY)
3786 (EMACS_SET_TTY): Remove unneeded abstraction, instead inline the
3787 definition in all uses.
3788 (EMACS_TTY_TABS_OK): Remove, it has a single user.
3789 * sysdep.c (discard_tty_input, child_setup_tty)
3790 (init_sys_modes, tabs_safe_p, reset_sys_modes):
3791 * emacs.c (shut_down_emacs):
3792 * callproc.c (child_setup):
3793 * term.c (dissociate_if_controlling_tty): Inline removed macros.
3794
3795 * data.c (sign_extend_temp, sign_extend_lisp_int): Remove, unused.
3796
3797 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
3798
3799 * w32fns.c (Fx_create_frame):
3800 * nsfns.m (Fx_create_frame): Don't check for the cursorColor
3801 resource here; it's now done at startup.
3802
3803 2010-11-14 Jan Djärv <jan.h.d@swipnet.se>
3804
3805 * xterm.c (set_wm_state): Add Qnil to final cons.
3806
3807 * xselect.c (x_send_client_event): Remove unused variables cons and
3808 size.
3809
3810 2010-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3811
3812 * keyboard.c (modify_event_symbol): Add const to array elements of
3813 arg NAME_TABLE.
3814 (lispy_accent_keys, lispy_function_keys, lispy_multimedia_keys)
3815 (lispy_kana_keys, iso_lispy_function_keys, lispy_wheel_names)
3816 (lispy_wheel_names, lispy_drag_n_drop_names, modifier_names):
3817 Add const to array elements.
3818 (scroll_bar_parts): Make static. Fix position of const.
3819
3820 * w32fns.c (lispy_function_keys): Add const to extern.
3821
3822 * w32inevt.c (lispy_function_keys): Likewise.
3823
3824 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
3825
3826 * xfns.c (Fx_create_frame): Don't check for the cursorColor
3827 resource here; it's now done at startup.
3828
3829 2010-11-13 Dan Nicolaescu <dann@ics.uci.edu>
3830
3831 * xmenu.c: Make it clear that ../lwlib/lwlib.h is only needed for Motif.
3832
3833 Fix compilation on Solaris.
3834 * sysdep.c: Do not #include <term.h>.
3835 (tputs): Add declaration, similar to what cm.c does. (Bug#7178)
3836
3837 * s/ms-w32.h (HAVE_TERMIOS_H): Do not undef, not used anymore.
3838
3839 2010-11-13 Jan Djärv <jan.h.d@swipnet.se>
3840
3841 * xterm.c (set_wm_state): Don't put Atom in cons, call
3842 make_fixnum_or_float on them first.
3843 (x_term_init): Initialize Xatom_net_supporting_wm_check and
3844 Xatom_net_supported correctly.
3845
3846 * xselect.c (x_send_client_event): Move CHECK_STRING ...
3847 (Fx_send_client_event): to here.
3848
3849 2010-11-13 Martin Rudalics <rudalics@gmx.at>
3850
3851 * window.c (Fwindow_use_time): New function.
3852
3853 2010-11-13 Eli Zaretskii <eliz@gnu.org>
3854
3855 * xdisp.c (set_cursor_from_row): Fix cursor positioning on
3856 zero-width characters.
3857
3858 * .gdbinit (pgx): Adapt to latest changes in `struct glyph'.
3859
3860 * w32term.c (x_draw_glyphless_glyph_string_foreground): Draw the
3861 box before drawing the glyphs inside it.
3862
3863 * xdisp.c (syms_of_xdisp) <glyphless-char-display>: Doc fix.
3864
3865 * dispextern.h (enum glyphless_display_method):
3866 Rename GLYPHLESS_DISPLAY_HEXA_CODE to GLYPHLESS_DISPLAY_HEX_CODE.
3867 All users changed.
3868
3869 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
3870 Fix comments.
3871 (produce_glyphless_glyph): Enclose "U+nnnn" and "empty box"
3872 whitespace in "[]", to simulate a box. Don't use uninitialized
3873 variable `width'.
3874
3875 2010-11-11 Julien Danjou <julien@danjou.info>
3876
3877 * xsettings.c (init_xsettings): Use already fetch atoms.
3878
3879 * xsmfns.c (create_client_leader_window): Use SM_CLIENT_ID atom
3880 from dpyinfo.
3881
3882 * xselect.c (Fx_send_client_event): Split and create
3883 x_send_client_event.
3884
3885 * lisp.h: Do not EXFUN Fx_send_client_event.
3886
3887 * xterm.c (x_set_frame_alpha): Use _NET_WM_WINDOW_OPACITY atom
3888 from dpyinfo.
3889 (wm_supports): Use atoms from dpyinfo.
3890 (do_ewmh_fullscreen): Use atoms from dpyinfo.
3891 (x_ewmh_activate_frame): Use atoms from dpyinfo.
3892 (xembed_set_info): Use atoms from dpyinfo.
3893 (x_term_init): Fetch _XEMBED_INFO, _NET_SUPPORTED,
3894 _NET_SUPPORTING_WM_CHECK, _NET_WM_WINDOW_OPACITY and
3895 _NET_ACTIVE_WINDOW, XSETTINGS atoms.
3896 Get all atoms in one round-trip.
3897 (set_wm_state): Use x_send_client_event rather than
3898 Fx_send_client_event, using Atom directly.
3899 (x_ewmh_activate_frame): Ditto.
3900 (x_set_sticky): Pass atoms to set_wm_state.
3901 (do_ewmh_fullscreen): Ditto.
3902
3903 * xterm.h (x_display_info): Add Xatom_net_supported,
3904 Xatom_net_supporting_wm_check, Xatom_net_active_window,
3905 Xatom_net_wm_window_opacity, Xatom_XEMBED_INFO, SM_CLIENT_ID.
3906
3907 * xfns.c (Fx_show_tip): Fix typo in docstring.
3908
3909 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
3910
3911 * cmds.c (Fself_insert_command): Don't call XFASTINT without checking
3912 it's not negative.
3913
3914 2010-11-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3915
3916 * font.c (font_filter_properties): Add const to array elements of
3917 properties args.
3918
3919 * font.h (font_filter_properties): Likewise.
3920
3921 * ftfont.c (ftfont_booleans, ftfont_non_booleans): Add const to array
3922 elements.
3923
3924 * w32font.c (w32font_booleans, w32font_non_booleans): Likewise.
3925
3926 2010-11-10 Michael Albinus <michael.albinus@gmx.de>
3927
3928 * dbusbind.c (QCdbus_type_unix_fd): New Lisp object.
3929 (XD_BASIC_DBUS_TYPE, xd_symbol_to_dbus_type, xd_signature)
3930 (xd_append_arg, xd_retrieve_arg): Support DBUS_TYPE_UNIX_FD.
3931 (Fdbus_call_method): Add DBUS_TYPE_UNIX_FD type mapping to doc string.
3932 (syms_of_dbusbind): Initialize QCdbus_type_unix_fd).
3933
3934 2010-11-10 Glenn Morris <rgm@gnu.org>
3935
3936 * emacs.c (syms_of_emacs) <system-type>: Doc fix.
3937
3938 2010-11-09 Eli Zaretskii <eliz@gnu.org>
3939
3940 * xfns.c (x_real_positions): Fix declaration-after-statement problem.
3941
3942 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
3943
3944 * image.c (free_image): Don't garbage the frame here, since this
3945 function can be called while redisplaying (Bug#7210).
3946 (uncache_image): Garbage the frame here (Bug#6426).
3947
3948 2010-11-09 Jan Djärv <jan.h.d@swipnet.se>
3949
3950 * xfns.c (x_real_positions): Only use _NET_FRAME_EXTENTS if our
3951 parent is the root window. Check this after traversing window tree.
3952
3953 * xterm.c (x_term_init): Initialize Xatom_net_frame_extents.
3954
3955 * xterm.h (struct x_display_info): Xatom_net_frame_extents is new.
3956
3957 * xfns.c (x_real_positions): Try to get _NET_FRAME_EXTENTS first
3958 before traversing window tree (Bug#5721).
3959
3960 2010-11-07 Jan Djärv <jan.h.d@swipnet.se>
3961
3962 * xfns.c (set_machine_and_pid_properties): Let X set WM_CLIENT_MACHINE.
3963
3964 * xdisp.c (note_mode_line_or_margin_highlight):
3965 Initialize Cursor to No_Cursor for HAVE_WINDOW_SYSTEM also.
3966
3967 2010-11-06 Eli Zaretskii <eliz@gnu.org>
3968
3969 * xfns.c (Fx_show_tip): If any of the tool-tip text lines is R2L,
3970 adjust width of tool-tip frame to the width of text, excluding the
3971 stretch glyph at the beginning of R2L glyph rows.
3972
3973 * w32fns.c (Fx_show_tip): Likewise.
3974
3975 2010-11-06 Jan Djärv <jan.h.d@swipnet.se>
3976
3977 * nsfont.m: Include termchar for new mouse-highlight.
3978 (nsfont_draw): Use MOUSE_HL_INFO.
3979
3980 2010-11-05 Eli Zaretskii <eliz@gnu.org>
3981
3982 Unify mouse-highlight code for all GUI and TTY sessions.
3983
3984 * term.c: Remove static mouse_face_* variables. All users
3985 changed.
3986 (term_show_mouse_face, term_clear_mouse_face)
3987 (fast_find_position, term_mouse_highlight): Functions deleted.
3988 (tty_draw_row_with_mouse_face): New function.
3989 (term_mouse_movement): Call note_mouse_highlight instead of
3990 term_mouse_highlight.
3991
3992 * nsterm.m (ns_update_window_begin, ns_update_window_end)
3993 (ns_update_end, x_destroy_window, ns_frame_up_to_date)
3994 (ns_dumpglyphs_box_or_relief, ns_maybe_dumpglyphs_background)
3995 (ns_dumpglyphs_image, ns_dumpglyphs_stretch)
3996 (ns_initialize_display_info, keyDown, mouseMoved, mouseExited):
3997 Replace Display_Info with Mouse_HLInfo everywhere where
3998 mouse_face_* members were accessed for mouse highlight purposes.
3999
4000 * xterm.c (x_update_window_begin, x_update_window_end)
4001 (x_update_end, XTframe_up_to_date, x_set_mouse_face_gc)
4002 (handle_one_xevent, x_free_frame_resources, x_term_init):
4003 Replace Display_Info with Mouse_HLInfo everywhere where mouse_face_*
4004 members were accessed for mouse highlight purposes.
4005
4006 * w32term.c (x_update_window_begin, x_update_window_end)
4007 (x_update_end, w32_read_socket, x_free_frame_resources)
4008 (w32_initialize_display_info): Replace Display_Info with
4009 Mouse_HLInfo everywhere where mouse_face_* members were accessed
4010 for mouse highlight purposes.
4011
4012 * xdisp.c (show_mouse_face, note_mode_line_or_margin_highlight)
4013 (note_mouse_highlight) [HAVE_WINDOW_SYSTEM]: Don't run GUI code
4014 unless the frame is on a window-system.
4015 (get_tool_bar_item, handle_tool_bar_click)
4016 (note_tool_bar_highlight, draw_glyphs, erase_phys_cursor)
4017 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
4018 (note_mode_line_or_margin_highlight, note_mouse_highlight)
4019 (x_clear_window_mouse_face, cancel_mouse_face, expose_frame):
4020 Replace Display_Info with Mouse_HLInfo everywhere where
4021 mouse_face_* members were accessed for mouse highlight purposes.
4022 (coords_in_mouse_face_p): Move prototype out of the
4023 HAVE_WINDOW_SYSTEM conditional.
4024 (x_y_to_hpos_vpos, frame_to_window_pixel_xy): Move out of the
4025 HAVE_WINDOW_SYSTEM block.
4026 (try_window_id) [HAVE_GPM || MSDOS]:
4027 Call x_clear_window_mouse_face.
4028 (draw_row_with_mouse_face): Implementation for HAVE_WINDOW_SYSTEM
4029 systems. Call tty_draw_row_with_mouse_face for TTY systems.
4030 (show_mouse_face): Call draw_row_with_mouse_face, instead of
4031 calling draw_glyphs directly.
4032 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
4033 (cursor_in_mouse_face_p, rows_from_pos_range)
4034 (mouse_face_from_buffer_pos, mouse_face_from_string_pos)
4035 (note_mode_line_or_margin_highlight, note_mouse_highlight)
4036 (x_clear_window_mouse_face, cancel_mouse_face): Move out of the
4037 HAVE_WINDOW_SYSTEM block. Ifdef away window-system specific
4038 fragments.
4039 (note_mouse_highlight): Call popup_activated for MSDOS as well.
4040 Clear mouse highlight if pointer is over glyphs whose OBJECT is an
4041 integer.
4042 (mouse_face_from_buffer_pos): Add parentheses around && within ||.
4043 (x_consider_frame_title, tool_bar_lines_needed):
4044 Move prototypes to HAVE_WINDOW_SYSTEM-only part.
4045 (get_window_cursor_type): Move inside a HAVE_WINDOW_SYSTEM-only
4046 part. Remove "#ifdef HAVE_WINDOW_SYSTEM" from body of function.
4047 (null_glyph_slice): Move declaration into HAVE_WINDOW_SYSTEM-only
4048 part.
4049
4050 * dispnew.c (mirror_make_current): Set Y coordinate of the
4051 mode-line and header-line rows.
4052 (init_display): Setup initial frame's output_data for text
4053 terminal frames.
4054
4055 * xmenu.c (popup_activated): Don't define on MSDOS, which now has
4056 its own definition on msdos.c.
4057
4058 * msdos.c (show_mouse_face, clear_mouse_face)
4059 (fast_find_position, IT_note_mode_line_highlight)
4060 (IT_note_mouse_highlight): Functions deleted.
4061 (IT_frame_up_to_date, dos_rawgetc): Call note_mouse_highlight
4062 instead of IT_note_mouse_highlight.
4063 (draw_row_with_mouse_face, popup_activated): New functions.
4064 (dos_set_window_size, draw_row_with_mouse_face, IT_update_begin)
4065 (IT_update_end, IT_frame_up_to_date, internal_terminal_init)
4066 (dos_rawgetc): Replace Display_Info with Mouse_HLInfo everywhere
4067 where mouse_face_* members were accessed for mouse highlight
4068 purposes.
4069
4070 * msdos.h (initialize_msdos_display): Add prototype.
4071
4072 * frame.h (MOUSE_HL_INFO): New macro.
4073
4074 * lisp.h (Mouse_HLInfo): New data type.
4075
4076 * xterm.h (struct x_display_info):
4077 * w32term.h (struct w32_display_info):
4078 * nsterm.h (struct ns_display_info):
4079 * termchar.h (struct tty_display_info): Use it instead of
4080 mouse_face_* members.
4081
4082 * dispextern.h (show_mouse_face, clear_mouse_face): Update type of
4083 1st argument.
4084 (frame_to_window_pixel_xy, note_mouse_highlight)
4085 (x_clear_window_mouse_face, cancel_mouse_face, clear_mouse_face)
4086 (show_mouse_face, cursor_in_mouse_face_p): Move prototypes out of
4087 HAVE_WINDOW_SYSTEM conditional.
4088 (draw_row_with_mouse_face): Declare prototype.
4089 (tty_draw_row_with_mouse_face): Declare prototype.
4090
4091 2010-11-05 Eli Zaretskii <eliz@gnu.org>
4092
4093 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
4094 Remove unused variables.
4095
4096 2010-11-05 Adrian Robert <Adrian.B.Robert@gmail.com>
4097
4098 * nsterm.m (EmacsView-mouseExited:): Correct error in conditional
4099 logic pointed out by Eli Zaretskii.
4100
4101 2010-11-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4102
4103 * coding.c (coding-category-list): Refer to set-coding-system-priority
4104 instead of the obsolete set-coding-priority in the doc string.
4105
4106 2010-11-04 Adrian Robert <Adrian.B.Robert@gmail.com>
4107
4108 * nsfont.m (nsfont_draw): Correct previous patch to return
4109 correct value.
4110 * nsimage.m (EmacsImage-setXBMColor:): Correct previous patch:
4111 don't change the method signature, change the return.
4112
4113 2010-11-04 Ismail Donmez <ismail@namtrac.org> (tiny change)
4114
4115 * nsfont.m (nsfont_draw)
4116 * nsimage.m (EmacsImage-setXBMColor:)
4117 * nsterm.m (EmacsView-performDragOperation:): Correct empty return.
4118
4119 2010-11-03 Julien Danjou <julien@danjou.info>
4120
4121 * image.c (gif_load): Add support for transparency and specified
4122 :background.
4123
4124 2010-11-01 Kenichi Handa <handa@m17n.org>
4125
4126 * dispextern.h (lookup_glyphless_char_display): Extern it.
4127
4128 * termhooks.h (struct terminal): New member charset_list.
4129
4130 * coding.c (Fset_terminal_coding_system_internal): Set the
4131 `charset_list' member of struct terminal.
4132
4133 * term.c (produce_glyphs): Handle the case it->what == IT_GLYPHLESS.
4134 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
4135
4136 * xdisp.c (lookup_glyphless_char_display): Make it non-static.
4137 (lookup_glyphless_char_display): Set it->what at the end.
4138 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
4139 (last_glyphless_glyph_merged_face_id): Make them non-static.
4140
4141 * w32term.c (x_draw_glyphless_glyph_string_foreground):
4142 Fix the arg with_background for font->driver->draw.
4143
4144 2010-11-01 Kenichi Handa <handa@m17n.org>
4145
4146 * w32gui.h (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
4147 Surround chp by parentheses.
4148
4149 2010-11-01 Kenichi Handa <handa@m17n.org>
4150
4151 Implement various display methods for glyphless characters.
4152
4153 * xdisp.c (Qglyphless_char, Vglyphless_char_display)
4154 (Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space)
4155 (Qzero_width): New variables.
4156 (THIN_SPACE_WIDTH): New macro.
4157 (lookup_glyphless_char_display): New function.
4158 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
4159 (last_glyphless_glyph_merged_face_id): New variables.
4160 (get_next_display_element): Check glyphless characters.
4161 (redisplay_internal): Initialize last_glyphless_glyph_frame and
4162 last_glyphless_glyph_face_id.
4163 (fill_glyphless_glyph_string): New function.
4164 (BUILD_GLYPHLESS_GLYPH_STRING): New macro.
4165 (BUILD_GLYPH_STRINGS): Handle the case GLYPHLESS_GLYPH.
4166 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
4167 (x_produce_glyphs): If a suitable font is not found, produce a
4168 glyphless glyph. Handle the case it->what == IT_GLYPHLESS.
4169 (syms_of_xdisp): Intern and staticpro Qglyphless_char,
4170 Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space, and
4171 Qzero_width.
4172 (Vglyphless_char_display): Declare it as a Lisp variable.
4173
4174 * dispextern.h (enum glyph_type): Add GLYPHLESS_GLYPH.
4175 (struct glyph): Change the size of the member "type" to 3.
4176 Add glyphless to the union slice and u.
4177 (enum display_element_type): Add IT_GLYPHLESS.
4178 (enum glyphless_display_method): New enum.
4179 (struct it): New member glyphless_method.
4180 (Vglyphless_char_display): Extern it.
4181
4182 * xterm.c (x_draw_glyphless_glyph_string_foreground): New function.
4183 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
4184
4185 * w32term.c (x_draw_glyphless_glyph_string_foreground): New function.
4186 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
4187
4188 * nsterm.m (ns_draw_glyph_string): Handle the case
4189 GLYPHLESS_GLYPH (the detail is not yet implemented).
4190
4191 2010-10-31 Glenn Morris <rgm@gnu.org>
4192
4193 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Fix merge, maybe.
4194
4195 * frame.c (syms_of_frame) <tool-bar-mode>:
4196 Default to nil if !HAVE_WINDOW_SYSTEM. (Bug#7299)
4197
4198 2010-10-31 Chong Yidong <cyd@stupidchicken.com>
4199
4200 * xterm.c (x_connection_closed): Print informative error message
4201 when aborting on GTK. This requires using shut_down_emacs
4202 directly instead of Fkill_emacs.
4203
4204 2010-10-29 Eli Zaretskii <eliz@gnu.org>
4205
4206 * emacs.c (main): Call syms_of_filelock unconditionally.
4207
4208 * filelock.c (syms_of_filelock): Move out of #ifdef CLASH_DETECTION
4209 clause, but keep part of it conditioned on CLASH_DETECTION.
4210
4211 2010-10-29 Glenn Morris <rgm@gnu.org>
4212
4213 * nsfns.m (Fx-display-save-under, Fx-open-connection)
4214 (Fxw-color-defined-p, Fxw-display-color-p, Fx-show-tip):
4215 * w32fns.c (Fxw_color_defined_p, Fx_open_connection):
4216 * xfns.c (Fxw_color_defined_p, Fx_open_connection):
4217 Sync docs between X, W32, NS.
4218
4219 * buffer.c (syms_of_buffer) <abbrev-mode, transient-mark-mode>:
4220 * frame.c (syms_of_frame) <tool-bar-mode>: Move doc here from Lisp.
4221
4222 2010-10-26 Juanma Barranquero <lekktu@gmail.com>
4223
4224 * eval.c (init_eval_once): Set max_lisp_eval_depth to 600;
4225 otherwise, bootstrapping on Windows fails to compile macroexp.el.
4226
4227 2010-10-26 Eli Zaretskii <eliz@gnu.org>
4228
4229 * cmds.c (internal_self_insert): Don't insert if argument N is
4230 zero or negative. (Bug#7281)
4231
4232 2010-10-26 Jan Djärv <jan.h.d@swipnet.se>
4233
4234 * gtkutil.c (qttip_cb): Set title to empty for ATK (Bug#7278).
4235
4236 2010-10-25 Glenn Morris <rgm@gnu.org>
4237
4238 * Makefile.in (SOME_MACHINE_LISP): Remove easymenu.elc.
4239
4240 2010-10-24 Glenn Morris <rgm@gnu.org>
4241
4242 * w32fns.c (Fx_synchronize, Fx_change_window_property)
4243 (Fx_window_property, Fx_file_dialog):
4244 * xfns.c (Fx_synchronize, Fx_change_window_property)
4245 (Fx_window_property, Fx_file_dialog): Sync docs between w32 and X.
4246
4247 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
4248
4249 * xterm.c (x_connection_closed): Kill Emacs unconditionally.
4250
4251 2010-10-24 Eli Zaretskii <eliz@gnu.org>
4252
4253 * frame.c (Fframep, Fwindow_system): Deprecate use as a predicate.
4254
4255 * dispnew.c (syms_of_display) <initial-window-system, window-system>:
4256 Deprecate use as a boolean flag.
4257
4258 2010-10-24 Jim Meyering <jim@meyering.net>
4259
4260 * emacs.c (argmatch): Don't treat "--" as "--chdir".
4261
4262 2010-10-24 Glenn Morris <rgm@gnu.org>
4263
4264 * w16select.c (syms_of_win16select) <selection-coding-system>:
4265 <next-selection-coding-system>:
4266 * w32select.c (syms_of_w32select) <selection-coding-system>:
4267 <next-selection-coding-system>:
4268 Sync docs with select.el.
4269
4270 * xfaces.c (syms_of_xfaces) <tty-defined-color-alist>: Sync doc with
4271 Lisp version.
4272
4273 * w32term.c (syms_of_w32term) <x-use-underline-position-properties>:
4274 Sync doc with the xterm.c version.
4275
4276 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
4277 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
4278
4279 2010-10-23 Glenn Morris <rgm@gnu.org>
4280
4281 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
4282 * frame.c (syms_of_frame) <menu-bar-mode>:
4283 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode, display-hourglass>:
4284 <hourglass-delay>: Sync docs with Lisp.
4285
4286 2010-10-23 Eli Zaretskii <eliz@gnu.org>
4287
4288 Implement mouse highlight for bidi-reordered lines.
4289
4290 * xdisp.c (fast_find_string_pos): #ifdef away, not used anymore.
4291 (mouse_face_from_string_pos): New function, replaces
4292 fast_find_string_pos.
4293 (note_mouse_highlight): Call it instead of fast_find_string_pos.
4294 (note_mode_line_or_margin_highlight): Support bidi-reordered
4295 strings and R2L glyph rows. Fix comments.
4296 (note_mouse_highlight): When bidi reordering is turned on in a
4297 buffer, call next-single-property-change and
4298 previous-single-property-change with last argument nil.
4299 Clear mouse highlight when mouse pointer is in a R2L row on the stretch
4300 glyph that stands for no text beyond the line end.
4301 (row_containing_pos): Don't return too early when CHARPOS is in a
4302 bidi-reordered continued line. Return immediately when the first
4303 hit is found in a line that is not continued, or when an exact
4304 match for CHARPOS is found.
4305 (rows_from_pos_range): New function.
4306 (mouse_face_from_buffer_pos): Use it instead of calling
4307 row_containing_pos for START_CHARPOS and END_CHARPOS. Rewrite the
4308 function to support mouse highlight in bidi-reordered lines and
4309 not to assume that START_CHARPOS is always in mouse_face_beg_row.
4310 If necessary, swap mouse_face_beg_row and mouse_face_end_row so
4311 that the former is always above the latter or identical to it.
4312 (show_mouse_face): Support drawing highlighted R2L lines.
4313 (coords_in_mouse_face_p): New function, bidi-aware.
4314 (cursor_in_mouse_face_p, note_mouse_highlight, erase_phys_cursor):
4315 Call it instead of comparing with mouse-face members of dpyinfo.
4316 (note_mode_line_or_margin_highlight): Fix confusingly swapped
4317 usage of hpos and vpos.
4318
4319 2010-10-22 Jan Djärv <jan.h.d@swipnet.se>
4320
4321 * xrdb.c: Include keyboard.h for MOTIF.
4322
4323 * xmenu.c: Revert 2010-07-27 change: lwlib.h is needed for
4324 MOTIF (Bug#7263).
4325
4326 * xfns.c: Include Xm/TextF and Xm/List.
4327 (file_dialog_cb, file_dialog_unmap_cb, clean_up_file_dialog):
4328 Make ANSI prototypes.
4329
4330 2010-10-22 Glenn Morris <rgm@gnu.org>
4331
4332 * Makefile.in (SOME_MACHINE_LISP): Add w32-vars.
4333 Remove ccl and duplicate mouse.
4334
4335 2010-10-21 Chong Yidong <cyd@stupidchicken.com>
4336
4337 * insdel.c (prepare_to_modify_buffer): Don't set
4338 saved-region-selection if modification hooks are disabled.
4339
4340 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
4341
4342 * cmds.c (Fdelete_char): Doc fix.
4343
4344 2010-10-19 Ken Brown <kbrown@cornell.edu>
4345
4346 * s/cygwin.h (SIGNALS_VIA_CHARACTERS): New define (bug#7225).
4347
4348 2010-10-19 Kenichi Handa <handa@m17n.org>
4349
4350 Fix incorrect font metrics when the same font is opened with
4351 different pixelsizes.
4352
4353 * xftfont.c: Include composite.h.
4354 (xftfont_shape): New function.
4355 (syms_of_xftfont): Set xftfont_driver.shape.
4356
4357 2010-10-18 Julien Danjou <julien@danjou.info>
4358
4359 * frame.c (Fframe_pointer_visible_p):
4360 Add `frame-pointer-visible-p' to get the pointer visibility.
4361
4362 2010-10-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
4363
4364 * gnutls.c (emacs_gnutls_read): Return 0 if we get a
4365 non-"EAGAIN"-like error to signal to Emacs that the socket should
4366 be closed.
4367
4368 2010-10-15 Eli Zaretskii <eliz@gnu.org>
4369
4370 * unexcoff.c (make_hdr): Fix prototype according to changes in
4371 2010-10-03T13:59:56Z!dann@ics.uci.edu.
4372
4373 * image.c (tiff_load): Cast 3rd argument to avoid compiler warning.
4374
4375 2010-10-15 Tassilo Horn <tassilo@member.fsf.org>
4376
4377 * Makefile.in (really-oldXMenu): Fix typo in variable name that
4378 made building the X menu fail.
4379 (really-oldXMenu): Fix my previous fix.
4380
4381 2010-10-14 Damyan Pepper <damyanp@gmail.com>
4382
4383 Fix handling of font properties on Windows (bug#6303).
4384 * font.c (font_filter_properties): New function, refactored from
4385 ftfont_filter_properties.
4386 * font.h (font_filter_properties): Declare.
4387 * ftfont.c (ftfont_filter_properties): Use font_filter_properties.
4388 * w32font.c (w32font_booleans, w32font_non_booleans): New variables.
4389 (w32font_filter_properties): New function.
4390 (w32font_driver): Add w32font_filter_properties.
4391
4392 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
4393
4394 * font.c (Ffont_variation_glyphs):
4395 * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
4396
4397 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
4398
4399 * w32fns.c (w32_wnd_proc, file_dialog_callback):
4400 * w32font.c (w32_generic_family):
4401 * w32inevt.c (key_event):
4402 * w32menu.c (fill_in_menu):
4403 * w32proc.c (reader_thread, w32_executable_type, compare_env)
4404 (merge_and_sort_env, int_from_hex, enum_locale_fn, enum_codepage_fn):
4405 * w32term.c (w32_read_socket): Make static.
4406
4407 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
4408
4409 * image.c (DEF_IMGLIB_FN): Add argument to adapt to strict
4410 prototypes; all callers changed.
4411
4412 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
4413
4414 * makefile.w32-in (TLIB2): Rename from TLIBW32.
4415 (OBJ2): New macro.
4416 (WIN32OBJ, FONTOBJ): Remove.
4417 (OBJ1): Redistribute object files with OBJ2.
4418 (LIBS, $(TEMACS)): Use TLIB2.
4419 (make-buildobj-CMD, make-buildobj-SH): Use OBJ2.
4420 ($(TLIB2), TAGS, TAGS-LISP, TAGS-gmake): Depend on OBJ2.
4421
4422 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
4423
4424 * emacs.c (Vdynamic_library_alist)
4425 (syms_of_emacs) <dynamic-library-alist>: Move from image.c and rename.
4426 Doc fix.
4427
4428 * lisp.h (Vdynamic_library_alist): Declare extern.
4429
4430 * image.c (Vimage_library_alist)
4431 (syms_of_image) <image-library-alist>: Move to emacs.c and rename.
4432 (lookup_image_type): Use Vdynamic_library_alist.
4433 (Finit_image_library): Doc fix.
4434
4435 2010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
4436
4437 * Makefile.in (lispsource, libsrc, etc, oldxmenudir, lwlibdir)
4438 (lispdir): Remove trailing /, update all uses.
4439
4440 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
4441
4442 * nsterm.m (Qleft): Declare.
4443 (ns_right_alternate_modifier): New variable.
4444 (NSRightAlternateKeyMask): New define.
4445 (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
4446 ns_right_alternate_modifier isn't Qleft.
4447 (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
4448 as emacs modifier for NSRightAlternateKeyMask.
4449 (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
4450
4451 2010-10-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4452
4453 * gnutls.c (emacs_gnutls_write): If we're trying to write before
4454 gnutls is ready, return EAGAIN as the errno.
4455
4456 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
4457
4458 * vm-limit.c:
4459 * unexhp9k800.c:
4460 * unexelf.c:
4461 * unexaix.c:
4462 * termcap.c: Remove #ifdef emacs / #ifndef emacs code, unused.
4463
4464 * Makefile.in (temacs): Use $(ALL_CFLAGS) on the link line.
4465 (PROFILING_LDFLAGS): Remove, not needed anymore.
4466
4467 * Makefile.in: Use $(...) everywhere instead of ${...}.
4468 (CRT_DIR): Move near potential user.
4469 (START_FILE): Move near CRT_DIR, it might use it.
4470
4471 * sysdep.c (LPASS8): Remove, unused.
4472 (emacs_ospeed): Change from being a global to a local in the only
4473 user: init_baud_rate.
4474
4475 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
4476
4477 * gnutls.c (syms_of_gnutls): All the bootprops are keywords.
4478 (emacs_gnutls_write): Remove the debuggin fsync call.
4479 (emacs_gnutls_read): Return -1 if we got an error from
4480 gnutls_read. This allows us to actually read lots of data from
4481 the GnuTLS stream.
4482 (emacs_gnutls_write): Check for GNUTLS_E_AGAIN and not EINTR.
4483 According to the documentation, this is correct, and it seems to
4484 make things work.
4485
4486 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
4487
4488 * xterm.c (x_draw_relief_rect): Clear corner pixels.
4489
4490 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
4491
4492 * keyboard.c: Revert last change; it was not intended to be
4493 synchronized with the trunk.
4494
4495 2010-10-08 Kenichi Handa <handa@m17n.org>
4496
4497 * coding.c (complement_process_encoding_system): Fix previous change.
4498
4499 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
4500
4501 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
4502 (Fdbus_init_bus): ... here. (Bug#7113)
4503
4504 2010-10-08 Glenn Morris <rgm@gnu.org>
4505
4506 * buffer.c (before-change-functions, after-change-functions):
4507 Three-year overdue doc fix following 2007-08-13 change.
4508
4509 2010-10-08 Kenichi Handa <handa@m17n.org>
4510
4511 * coding.c (coding_inherit_eol_type): If parent doesn't specify
4512 eol-format, inherit from the system's default.
4513 (complement_process_encoding_system): Make a new coding system
4514 inherit the original eol-format.
4515
4516 2010-10-08 Kenichi Handa <handa@m17n.org>
4517
4518 * coding.c (complement_process_encoding_system): New function.
4519
4520 * coding.h (complement_process_encoding_system): Extern it.
4521
4522 * callproc.c (Fcall_process): Complement the coding system for
4523 encoding arguments.
4524 (Fcall_process_region): Complement the coding system for encoding
4525 the input to the process.
4526
4527 * process.c (Fstart_process): Complement the coding system for
4528 encoding arguments.
4529 (send_process): Complement the coding system for encoding what
4530 sent to the process.
4531
4532 2010-10-08 Kenichi Handa <handa@m17n.org>
4533
4534 * xfont.c (xfont_open): Fix setting of font->average_width from
4535 :avgwidth property (Bug#7123).
4536
4537 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
4538
4539 * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
4540 is more portable.
4541
4542 * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
4543 (kbd_buffer_get_event): ... here. This is needed for cygwin, which
4544 has not defined SIGIO.
4545
4546 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
4547
4548 * xterm.c (x_draw_relief_rect): If box width is larger than 1,
4549 draw the outermost line using the black relief, for legibility.
4550 Omit drawing the four corner pixels.
4551
4552 2010-10-04 Chong Yidong <cyd@stupidchicken.com>
4553
4554 * keyboard.c (echo_prompt): Function moved into read_key_sequence.
4555 (read_key_sequence): Inline echo_prompt.
4556 (echo_dash): Add a dash only if key is continued (Bug#7137).
4557
4558 2010-10-04 Dan Nicolaescu <dann@ics.uci.edu>
4559
4560 Remove O_RDONLY, O_WRONLY definitions, not needed.
4561 * unexcoff.c:
4562 * lread.c:
4563 * fileio.c:
4564 * doc.c:
4565 * callproc.c:
4566 * alloc.c:
4567 * termcap.c: Remove O_RDONLY O_WRONLY definitions.
4568
4569 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
4570
4571 * gnutls.h (GNUTLS_LOG2): Convenience macro.
4572
4573 * gnutls.c: Add property list symbol holders.
4574 (emacs_gnutls_handshake): Clarify how sockets are passed to
4575 GnuTLS.
4576 (gnutls_log_function2): Convenience function using GNUTLS_LOG2.
4577 (Fgnutls_boot): Get all parameters from a plist. Require trustfiles
4578 and keyfiles to be a list of file names. Default to "NORMAL" for
4579 the priority string. Improve logging.
4580
4581 2010-10-03 Glenn Morris <rgm@gnu.org>
4582
4583 * fileio.c (Vdirectory_sep_char): Remove.
4584
4585 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
4586
4587 * termhooks.h: Remove #ifdef CONSP.
4588
4589 * xterm.c (NO_INLINE, noinline): Move definitions to ../configure.in.
4590
4591 Include <fcntl.h> unconditionally.
4592 * termcap.c:
4593 * sysdep.c:
4594 * lread.c:
4595 * keyboard.c:
4596 * filelock.c:
4597 * fileio.c:
4598 * doc.c:
4599 * callproc.c:
4600 * alloc.c: Remove include guards for <fcntl.h>, process.c already
4601 does it.
4602
4603 * process.c: Do not include <sys/wait.h>, syswait.h does it.
4604
4605 * sysdep.c (flush_pending_output): Remove code, does not do
4606 anything on any platform.
4607
4608 Remove unused code.
4609 * sysdep.c (select_alarm, sys_select, read_input_waiting):
4610 Remove select emulation, all systems support select.
4611 (set_exclusive_use): Remove, the only user is in an #if 0 block.
4612 * process.c (create_process): Remove #if 0 code.
4613
4614 Remove unused arguments for unexec.
4615 The third one is never used, and the last two are always passed as zero.
4616 * emacs.c (unexec): Add declaration.
4617 (Fdump_emacs): Only pass the first two arguments to unexec.
4618 Simplify #ifdef.
4619 * unexw32.c (unexec):
4620 * unexsol.c (unexec):
4621 * unexhp9k800.c (unexec):
4622 * unexcw.c (unexec): Remove the last 3 arguments, unused.
4623 * unexelf.c (unexec): Remove the last 3 arguments, unused.
4624 (find_section): Use const.
4625 * unexmacosx.c (unexec): Remove the last 3 arguments, unused.
4626 (unexec_error): Declare it NO_RETURN.
4627 * unexcoff.c (make_hdr): Assume bss_start is always zero, remove
4628 it as an argument, remove data_start and entry_address arguments, unused.
4629 (unexec): Remove bss_start, data_start and
4630 entry_address arguments.
4631 * unexaix.c (make_hdr): Assume bss_start is always zero, remove
4632 it as an argument, remove data_start and entry_address arguments, unused.
4633 (unexec): Remove bss_start, data_start and
4634 entry_address arguments.
4635
4636 2010-10-03 Juanma Barranquero <lekktu@gmail.com>
4637
4638 * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ).
4639
4640 * gnutls.c (emacs_gnutls_handshake, gnutls_make_error)
4641 (gnutls_emacs_global_init, gnutls_emacs_global_deinit): Make static.
4642 (Fgnutls_get_initstage, Fgnutls_deinit, Fgnutls_boot, Fgnutls_bye):
4643 Fix typos in docstrings.
4644 (Fgnutls_error_fatalp, Fgnutls_error_string): Doc fixes.
4645 (Fgnutls_errorp): Doc fix; use ERR for the argument name.
4646
4647 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
4648
4649 * keyboard.c (command_loop_1): Make sure the mark is really alive
4650 before using it (Bug#7044).
4651
4652 2010-10-02 Juanma Barranquero <lekktu@gmail.com>
4653
4654 * makefile.w32-in (tags): Rename target to full-tags.
4655
4656 2010-10-02 Eli Zaretskii <eliz@gnu.org>
4657
4658 * emacs.c (main): Remove !WINDOWSNT conditional.
4659 (Fkill_emacs): Don't mention exemption on MS-Windows.
4660
4661 2010-10-02 Glenn Morris <rgm@gnu.org>
4662
4663 * character.c (Fchar_bytes): Remove obsolete function.
4664 (syms_of_character): Remove Schar_bytes.
4665
4666 * emacs.c (fatal_error_signal): Also run Fkill_emacs on SIGINT.
4667 (main) [!WINDOWSNT]: Handle SIGINT with fatal_error_signal
4668 in batch-mode.
4669 (Fkill_emacs): Doc fix. Also run the hook in batch mode.
4670 (kill-emacs-hook): Doc fix.
4671
4672 2010-10-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4673
4674 * xml.c (Flibxml_parse_xml_region, Flibxml_parse_html_region)
4675 (parse_region): Rework to take regions instead of strings, and
4676 renamed to reflect that these are the libxml functions.
4677
4678 2010-10-01 Eli Zaretskii <eliz@gnu.org>
4679
4680 * term.c (init_tty) [DOS_NT]: Don't call Wcm_clear after setting
4681 screen dimensions in tty->Wcm.
4682
4683 * xdisp.c (set_cursor_from_row): When the row is truncated and
4684 point is outside the range of displayed characters, position the
4685 cursor inside the scroll margin. (Bug#6349)
4686
4687 2010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
4688
4689 Do not include stdlib.h and string.h, config.h does it.
4690 * xfont.c:
4691 * w32term.c:
4692 * w32reg.c:
4693 * w32inevt.c:
4694 * w32heap.c:
4695 * w32console.c:
4696 * w16select.c:
4697 * unexsol.c:
4698 * term.c:
4699 * sound.c:
4700 * scroll.c (m):
4701 * gtkutil.c:
4702 * font.c:
4703 * filelock.c:
4704 * fileio.c:
4705 * dosfns.c:
4706 * dbusbind.c:
4707 * bidi.c:
4708 * callproc.c:
4709 * process.c:
4710 * msdos.c:
4711 * charset.c: Do not include stdlib.h and string.h, config.h does it.
4712
4713 * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h
4714 defines it.
4715
4716 * process.c: Move #include <pty.h> earlier.
4717 (SIGCHLD): Remove conditional definition, syssignal.h defines it.
4718 (pty_name): Move definition later.
4719
4720 * nsselect.m (syms_of_nsselect):
4721 * nsmenu.m (syms_of_nsmenu):
4722 * nsfns.m (syms_of_nsfns):
4723 * msdos.c (syms_of_msdos):
4724
4725 * image.c (syms_of_image):
4726 * charset.c (syms_of_charset): Use intern_c_string instead of intern.
4727
4728 * point.h: Remove, unused.
4729
4730 2010-10-01 Eli Zaretskii <eliz@gnu.org>
4731
4732 * makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
4733 (TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
4734 (nt-TAGS-gmake, nt-TAGS-nmake): New targets.
4735
4736 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
4737
4738 * xml.c (parse_string): Use const.
4739
4740 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4741
4742 * eval.c (Fbacktrace): Don't overwrite print-level on exit.
4743 Also only override Vprint_level if it isn't already bound, and increase
4744 the level to 8 to produce more useful backtraces for bug reports.
4745
4746 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
4747
4748 * Makefile.in: ecrt0.c does not exist anymore, do not mention it.
4749
4750 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
4751
4752 * w32console.c (vga_stdcolor_name): Remove unused function;
4753 presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
4754
4755 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4756
4757 * gnutls.c (emacs_gnutls_handshake): Made into internal function.
4758 (Fgnutls_boot): Start the handshake.
4759 (emacs_gnutls_read): Perform the handshake from the reader loop.
4760 (Fgnutls_boot): Remove some debugging messages.
4761 Change indentation throughout to use the Emacs style.
4762 (emacs_gnutls_handshake): Cast the fds to something that's
4763 possibly the expected length.
4764 (emacs_gnutls_write): Return -1 if we try to write before handshake.
4765
4766 * process.h (Lisp_Process): Add a gnutls_p field to Lisp_Process.
4767
4768 * process.c (make_process): Set the gnutls_p field to zero by
4769 default.
4770 (read_process_output): Always call the gnutls_read function if the
4771 stream is a gnutls stream.
4772 (send_process): Ditto for writes.
4773
4774 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Refuse to read
4775 or write anything until the state is GNUTLS_STAGE_READY.
4776 (Fgnutls_boot): Mark the stream as being a gnutls stream.
4777
4778 2010-09-29 Eli Zaretskii <eliz@gnu.org>
4779
4780 * xdisp.c (reseat_1): Initialize bidi_it.paragraph_dir to
4781 NEUTRAL_DIR.
4782 (handle_invisible_prop, iterate_out_of_display_property)
4783 (next_element_from_buffer): If bidi_it.first_elt is set, call
4784 bidi_paragraph_init with NO_DEFAULT_P argument non-zero.
4785 (Bug#7128)
4786
4787 * print.c (print_object): Fix format string and argument types for
4788 printing a Lisp_Misc_Marker.
4789
4790 * xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
4791 (load_overlay_strings, get_overlay_strings_1)
4792 (get_overlay_strings, forward_to_next_line_start)
4793 (back_to_previous_visible_line_start, reseat, reseat_to_string)
4794 (get_next_display_element, next_element_from_string)
4795 (next_element_from_c_string, next_element_from_buffer)
4796 (move_it_vertically_backward, move_it_by_lines, add_to_log)
4797 (message_dolog, message_log_check_duplicate, message2_nolog)
4798 (message3, message3_nolog, vmessage, set_message, set_message_1)
4799 (hscroll_window_tree, text_outside_line_unchanged_p)
4800 (set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
4801 (find_last_unchanged_at_beg_row)
4802 (find_first_unchanged_at_end_row, row_containing_pos)
4803 (trailing_whitespace_p, display_mode_element, decode_mode_spec)
4804 (display_count_lines, x_produce_glyphs, note_mouse_highlight):
4805 Use EMACS_INT for buffer and string positions.
4806
4807 * dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
4808 (row_containing_pos): Adjust prototype.
4809
4810 * lisp.h (pos_visible_p, message2, message2_nolog, message3)
4811 (message2_nolog, set_message): Adjust prototypes.
4812
4813 2010-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
4814
4815 * gnutls.c (Fgnutls_boot): Remove unused vars `data' and `srp_cred'.
4816 (Fgnutls_boot): Use SDATA.
4817 (Fgnutls_handshake): Remove unused var `max_log_level'.
4818
4819 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
4820
4821 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
4822 (Bug#7113)
4823
4824 2010-09-27 Jan Djärv <jan.h.d@swipnet.se>
4825
4826 * xgselect.c (xg_select): Clear file descriptors not set from
4827 rfds and wfds.
4828
4829 * process.c (wait_reading_process_output): Add missing FD_CLR
4830 for write_mask (must mirror connect_wait_mask).
4831
4832 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
4833
4834 * gnutls.c (gnutls_log_function): Show level and "gnutls.c"
4835 prefix.
4836 (Fgnutls_boot): Use changed process members. Use log level with a
4837 function parameter to set it. Bring back Emacs-level debugging
4838 messages at log level 1 and 2.
4839
4840 * process.c (make_process): Initialize gnutls_log_level.
4841
4842 * process.h: Add gnutls_log_level and rename x509_cred and
4843 anon_cred to have the gnutls_ prefix for consistency.
4844
4845 * gnutls.h (GNUTLS_LOG): Add convenience macro.
4846
4847 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
4848
4849 * w32.c (g_b_init_get_sid_identifier_authority)
4850 (GetSidIdentifierAuthority_Proc, get_sid_identifier_authority):
4851 Remove, not used.
4852 (globals_of_w32): Don't set g_b_init_get_sid_identifier_authority.
4853 (init_winsock): Remove useless assignment.
4854 (open_process_token, get_token_information, lookup_account_sid)
4855 (get_sid_sub_authority, get_sid_sub_authority_count, get_file_security)
4856 (get_security_descriptor_owner, get_security_descriptor_group)
4857 (is_valid_sid, equal_sid, get_length_sid, copy_sid)
4858 (get_native_system_info, get_system_times, init_user_info, crlf_to_lf)
4859 (is_unc_volume, GetCachedVolumeInformation, get_volume_info)
4860 (is_fat_volume, open_unc_volume, read_unc_volume, close_unc_volume)
4861 (unc_volume_file_attributes, convert_from_time_t)
4862 (create_toolhelp32_snapshot, process32_first, process32_next)
4863 (open_thread_token, impersonate_self, revert_to_self)
4864 (get_process_memory_info, get_process_working_set_size)
4865 (global_memory_status, global_memory_status_ex, socket_to_fd)
4866 (shutdown_handler): Make static.
4867
4868 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
4869
4870 * dbusbind.c (dbus_fd_cb, xd_get_dispatch_status)
4871 (xd_pending_messages): Functions removed.
4872 (xd_read_queued_messages): Add parameters fd, *data, for_read in
4873 order to be compatible with add_read_fd. Determine bus from data,
4874 and call xd_read_message just for this bus.
4875 (xd_add_watch): Use xd_read_queued_messages as callback function.
4876 Add data.
4877
4878 * lisp.h (xd_pending_messages, xd_read_queued_messages): Remove.
4879
4880 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4881
4882 * gnutls.c (gnutls_log_function): Add more debugging.
4883 (emacs_gnutls_read): Don't infloop while reading.
4884
4885 2010-09-27 Kenichi Handa <handa@m17n.org>
4886
4887 These changes are to remove restriction on the number of glyphs in
4888 one composition.
4889
4890 * dispextern.h (struct glyph): Change the member "slice" to union.
4891 Remove u.cmp.from and u.cmp.to. Give more bits to u.cmp.id.
4892 (GLYPH_SLICE_EQUAL_P): Adjust for the above change.
4893
4894 * dispnew.c (buffer_posn_from_coords): Use glyph->slice.img
4895 instead of glyph->slice.
4896 (marginal_area_string): Likewise.
4897
4898 * term.c (encode_terminal_code): Use glyph->slice.cmp instead of
4899 glyph->u.cmp.
4900 (append_composite_glyph): Likewise.
4901
4902 * xdisp.c (dump_glyph): Use glyph->slice.cmp instead of
4903 glyph->u.cmp.
4904 (fill_gstring_glyph_string, x_get_glyph_overhangs)
4905 (append_composite_glyph): Likewise.
4906 (fill_image_glyph_string): Use glyph->slice.img instead of
4907 glyph->slice.
4908 (append_glyph, produce_image_glyph, append_stretch_glyph)
4909 (note_mouse_highlight): Likewise.
4910
4911 2010-09-26 Jan Djärv <jan.h.d@swipnet.se>
4912
4913 * process.c (add_keyboard_wait_descriptor)
4914 (delete_keyboard_wait_descriptor): Reinstate ifdef subprocesses.
4915 (wait_reading_process_output): Don't pass write_mask to select
4916 if SELECT_CANT_DO_WRITE_MASK is defined.
4917 (SELECT_CANT_DO_WRITE_MASK): Define if SELECT_CANT_DO_WRITE_MASK.
4918
4919 * process.h (add_read_fd, delete_read_fd, add_write_fd)
4920 (delete_write_fd): Declare.
4921
4922 * process.c (gpm_wait_mask, max_gpm_desc): Remove.
4923 (write_mask): New variable.
4924 (max_input_desc): Rename from max_keyboard_desc.
4925 (fd_callback_info): New variable.
4926 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd):
4927 New functions.
4928 (Fmake_network_process): FD_SET write_mask.
4929 (deactivate_process): FD_CLR write_mask.
4930 (wait_reading_process_output): Connecting renamed to Writeok.
4931 check_connect removed. check_write is new. Remove references to gpm.
4932 Use Writeok/check_write unconditionally (i.e. no #ifdef
4933 NON_BLOCKING_CONNECT) instead of Connecting.
4934 Loop over file descriptors and call callbacks in fd_callback_info
4935 if file descriptor is ready for I/O.
4936 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor.
4937 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor.
4938 (keyboard_bit_set): Use max_input_desc.
4939 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor):
4940 Remove #ifdef subprocesses. Use max_input_desc.
4941 (init_process): Initialize write_mask and fd_callback_info.
4942
4943 * keyboard.c (readable_events, gobble_input): Remove DBUS code.
4944
4945 * dbusbind.c: Include process.h.
4946 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch)
4947 (xd_read_message_1): New functions.
4948 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd.
4949 Handle watch for both read and write.
4950 (Fdbus_init_bus): Also register xd_toggle_watch.
4951 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
4952 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call
4953 to dbus_connection_flush.
4954 (xd_read_message): Move most of the code to xd_read_message_1.
4955 Call xd_read_message_1 until status is COMPLETE.
4956
4957 2010-09-26 Dan Nicolaescu <dann@ics.uci.edu>
4958
4959 * term.c: Do not include sys/ioctl.h, not needed.
4960 (init_tty): Reorder code to reduce the number of #ifdefs.
4961 No code changes.
4962
4963 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
4964
4965 * process.h: Set up GnuTLS support.
4966
4967 * process.c (make_process, Fstart_process)
4968 (read_process_output, send_process): Set up GnuTLS support for
4969 process input/output file descriptors.
4970
4971 * gnutls.h: The GnuTLS glue for Emacs, macros and enums.
4972
4973 * gnutls.c: The source code for GnuTLS support in Emacs.
4974
4975 * emacs.c: Set up GnuTLS support and call syms_of_gnutls.
4976
4977 * config.in: Set up GnuTLS support.
4978
4979 * Makefile.in (LIBGNUTLS_LIBS, LIBGNUTLS_CFLAGS, ALL_CFLAGS)
4980 (obj, LIBES): Set up GnuTLS support.
4981
4982 2010-09-26 Juanma Barranquero <lekktu@gmail.com>
4983
4984 * w32.c (get_emacs_configuration_options): Fix previous change.
4985
4986 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
4987
4988 * insdel.c (prepare_to_modify_buffer): Ensure the mark marker is
4989 alive before using it (Bug#6977).
4990
4991 2010-09-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4992
4993 * xdisp.c (face_before_or_after_it_pos): EMACS_INT/int fixup.
4994
4995 * dispextern.h: EMACS_INT/int fixup.
4996
4997 * xdisp.c (string_pos_nchars_ahead, init_iterator): EMACS_INT/int
4998 fixup.
4999
5000 * xrdb.c (magic_file_p): EMACS_INT/int fixup.
5001
5002 2010-09-25 Eli Zaretskii <eliz@gnu.org>
5003
5004 * window.c (Fpos_visible_in_window_p, Fdelete_other_windows)
5005 (Fselect_window, window_scroll_pixel_based)
5006 (window_scroll_line_based, Frecenter, Fset_window_configuration):
5007 Use EMACS_INT for buffer positions.
5008
5009 * textprop.c (validate_interval_range, interval_of)
5010 (property_change_between_p, Fadd_text_properties)
5011 (set_text_properties_1, Fremove_text_properties)
5012 (Fremove_list_of_text_properties, Ftext_property_any)
5013 (Ftext_property_not_all, copy_text_properties)
5014 (text_property_list, extend_property_ranges)
5015 (verify_interval_modification): Use EMACS_INT for buffer
5016 positions.
5017
5018 * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT
5019 for buffer positions.
5020
5021 * process.c (read_process_output, send_process)
5022 (Fprocess_send_region, status_notify): Use EMACS_INT for buffer
5023 and string positions and size.
5024
5025 * print.c (print_object, print_string, strout): Use EMACS_INT for
5026 string indices.
5027
5028 * minibuf.c (string_to_object): Use EMACS_INT for string position
5029 and size.
5030
5031 * marker.c (verify_bytepos): Use EMACS_INT for buffer positions.
5032
5033 * lread.c <read_from_string_index, read_from_string_index_byte>
5034 <read_from_string_limit, readchar_count>: Define EMACS_INT.
5035 (readchar, unreadchar, read_internal_start): Use EMACS_INT for
5036 buffer positions and string length.
5037
5038 * keyboard.c <last_point_position, last_non_minibuf_size>: Declare
5039 EMACS_INT.
5040 (echo_truncate, adjust_point_for_property, read_char)
5041 (gen_help_event, make_lispy_event, modify_event_symbol)
5042 (Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT
5043 for buffer positions and string length.
5044
5045 * keyboard.h (gen_help_event): Adjust prototype.
5046
5047 * termhooks.h <struct input_event>: Make `code' member EMACS_INT.
5048
5049 * commands.h <last_point_position>: Declare EMACS_INT.
5050
5051 * xdisp.c <help_echo_pos>: Define as EMACS_INT.
5052 (truncate_echo_area): Accept EMACS_INT argument.
5053
5054 * dispextern.h <help_echo_pos>: Declare EMACS_INT.
5055
5056 * lisp.h (truncate_echo_area): Adjust prototype.
5057
5058 * composite.c (composition_adjust_point): Return EMACS_INT.
5059
5060 * composite.h (composition_adjust_point): Adjust prototype.
5061
5062 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
5063
5064 * process.c (Fmake_network_process): When arg :host is 'local,
5065 use address 127.0.0.1, not name "localhost". (Bug#6781)
5066
5067 2010-09-24 Eli Zaretskii <eliz@gnu.org>
5068
5069 * indent.c (Fcurrent_indentation, indented_beyond_p)
5070 (compute_motion): Use EMACS_INT for buffer position variables.
5071
5072 * lisp.h (indented_beyond_p): Adjust prototype.
5073
5074 * buffer.c (overlay_strings): Return EMACS_INT.
5075
5076 * buffer.h (overlay_strings): Adjust prototype.
5077
5078 * region-cache.c (pp_cache): Adjust format to arguments.
5079
5080 * eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT.
5081 (call_debugger): Use EMACS_INT for specpdl_size related variables.
5082 (verror): Use EMACS_INT for size of allocated buffer.
5083
5084 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer
5085 positions.
5086
5087 * xdisp.c (redisplay_internal, try_window_id)
5088 (set_cursor_from_row, find_first_unchanged_at_end_row):
5089 Use EMACS_INT for buffer positions.
5090
5091 * dispextern.h (set_cursor_from_row): Adjust prototype.
5092
5093 * dispnew.c (increment_matrix_positions)
5094 (increment_row_positions, copy_glyph_row_contents)
5095 (mode_line_string, marginal_area_string): Use EMACS_INT for buffer
5096 positions.
5097
5098 * dispextern.h (mode_line_string, marginal_area_string)
5099 (increment_matrix_positions, increment_row_positions):
5100 Adjust prototypes.
5101
5102 * data.c (Faref, Faset): Use EMACS_INT for string length and
5103 positions.
5104
5105 * cmds.c (internal_self_insert): Use EMACS_INT for the count of
5106 characters to insert.
5107
5108 * ccl.c (Fccl_execute_on_string): Use EMACS_INT for string
5109 position and size.
5110
5111 * syntax.c (scan_words, update_syntax_table)
5112 (prev_char_comend_first, back_comment, skip_chars)
5113 (skip_syntaxes, Fforward_comment, Fbackward_prefix_chars):
5114 Use EMACS_INT for buffer and string positions.
5115
5116 * syntax.h (scan_words, update_syntax_table): Adjust prototypes.
5117
5118 * casefiddle.c (operate_on_word): Use EMACS_INT for buffer
5119 positions.
5120
5121 2010-09-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5122
5123 * scroll.c (calculate_scrolling, line_ins_del)
5124 (calculate_direct_scrolling, scroll_cost): Fix EMACS_INT/int
5125 conversion.
5126
5127 * region-cache.c (move_cache_gap, set_cache_region, pp_cache)
5128 (region_cache_backward, region_cache_forward)
5129 (revalidate_region_cache, set_cache_region): FIX EMACS_INT/int
5130 conversion.
5131
5132 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
5133
5134 * eval.c (verror): Fix EMACS_INT/int conversion.
5135
5136 * print.c (PRINTDECLARE, PRINTPREPARE, strout, print_string)
5137 (print_preprocess, print_check_string_charset_prop)
5138 (print_object): Fix EMACS_INT/int conversion.
5139
5140 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
5141
5142 2010-09-24 Eli Zaretskii <eliz@gnu.org>
5143
5144 * callproc.c (Fcall_process): Use EMACS_INT for count of
5145 characters read from the subprocess.
5146
5147 * bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
5148 positions.
5149 (bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
5150 positions.
5151
5152 * buffer.c (struct sortvec): Use EMACS_INT for buffer positions.
5153 (struct sortstrlist, overlay_str_len): Use EMACS_INT for string
5154 length.
5155 (advance_to_char_boundary, Fset_buffer_multibyte)
5156 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
5157 (overlay_touches_p, record_overlay_string, overlay_strings)
5158 (recenter_overlay_lists, fix_start_end_in_overlays)
5159 (modify_overlay, Fmove_overlay, report_overlay_modification)
5160 (evaporate_overlays): Use EMACS_INT for buffer positions.
5161
5162 * lisp.h (fix_start_end_in_overlays, overlay_touches_p):
5163 Adjust prototypes.
5164
5165 * dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
5166 positions.
5167
5168 * fns.c (Fcompare_strings, Fstring_lessp, concat)
5169 (string_make_unibyte, Fstring_as_unibyte, Fsubstring)
5170 (Fsubstring_no_properties, substring_both, Ffillarray)
5171 (Fclear_string, mapcar1, Fmapconcat, Fmapcar, Fmapc)
5172 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
5173 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
5174 (Fmd5): Use EMACS_INT for buffer and string positions and length
5175 variables and arguments.
5176
5177 * lisp.h (substring_both): Adjust prototype.
5178
5179 2010-09-24 Juanma Barranquero <lekktu@gmail.com>
5180
5181 Remove W32 API function pointer unused since 2005-02-15 (revno 2005-02-15T23:19:26Z!jasonr@gnu.org).
5182 * w32fns.c (clipboard_sequence_fn): Don't declare.
5183 (globals_of_w32fns): Don't initialize it.
5184
5185 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
5186
5187 * syntax.c (back_comment): Detect the case where a 1-char comment
5188 starter is also the 2nd char of a 2-char comment ender.
5189
5190 2010-09-23 Jan Djärv <jan.h.d@swipnet.se>
5191
5192 * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
5193
5194 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
5195
5196 * eval.c (verror): EMACS_INT/int cleanup.
5197
5198 * lisp.h (SPECPDL_INDEX): Cast to int, since we're not going to
5199 unwind_protect more than 2GB worth of functions.
5200
5201 * editfns.c (Finsert_char): EMACS_INT/int cleanup.
5202
5203 * lisp.h: Have oblookup take EMACS_INT to allow interning big
5204 string and avoid compiler warnings.
5205 (USE_SAFE_ALLOCA): Cast to int to avoid compilation warnings in
5206 all users.
5207
5208 * lread.c (oblookup): EMACS_INT/int cleanup.
5209
5210 * cmds.c (Fforward_line, Fdelete_char): EMACS_INT/int cleanup.
5211
5212 2010-09-23 Eli Zaretskii <eliz@gnu.org>
5213
5214 * editfns.c (clip_to_bounds): Return an EMACS_INT value.
5215
5216 * lisp.h (clip_to_bounds): Adjust prototype.
5217
5218 * intervals.c (adjust_for_invis_intang): Return EMACS_INT value.
5219
5220 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
5221
5222 * lisp.h: doprnt.c EMACS_INT/int cleanup.
5223
5224 * doprnt.c (doprnt): EMACS_INT/int cleanup.
5225
5226 * doc.c (Fsnarf_documentation, get_doc_string): EMACS_INT/int
5227 cleanup.
5228
5229 * lisp.h: Change the definition of all marker.c functions that
5230 take and return buffer stuff to be EMACS_INT instead of int.
5231
5232 * marker.c (buf_charpos_to_bytepos, CONSIDER, set_marker_both)
5233 (buf_charpos_to_bytepos, bytepos_to_charpos)
5234 (buf_bytepos_to_charpos, Fbuffer_has_markers_at)
5235 (set_marker_restricted, set_marker_both): Convert int to EMACS_INT
5236 for all buffer positions.
5237
5238 2010-09-23 Chong Yidong <cyd@stupidchicken.com>
5239
5240 * intervals.c (traverse_intervals, rotate_right, rotate_left)
5241 (split_interval_right, find_interval, next_interval)
5242 (delete_node, delete_interval, interval_deletion_adjustment)
5243 (adjust_intervals_for_deletion, merge_interval_right)
5244 (merge_interval_left, graft_intervals_into_buffer)
5245 (copy_intervals): Convert EMACS_UINTs to EMACS_INT.
5246
5247 * intervals.h (traverse_intervals): Update prototype.
5248
5249 2010-09-23 Eli Zaretskii <eliz@gnu.org>
5250
5251 * indent.c (compute_motion): Use EMACS_INT for arguments to
5252 region_cache_forward.
5253
5254 * region-cache.c (struct boundary, struct region_cache):
5255 Use EMACS_INT for positions.
5256 (find_cache_boundary, move_cache_gap, insert_cache_boundary)
5257 (delete_cache_boundaries, set_cache_region)
5258 (invalidate_region_cache, know_region_cache)
5259 (region_cache_forward, region_cache_backward, pp_cache):
5260 Use EMACS_INT for buffer positions.
5261
5262 * region-cache.h (know_region_cache, invalidate_region_cache)
5263 (region_cache_forward, region_cache_backward): Adjust prototypes.
5264
5265 * search.c (string_match_1, fast_c_string_match_ignore_case)
5266 (looking_at_1, scan_buffer, scan_newline)
5267 (find_next_newline_no_quit, find_before_next_newline)
5268 (search_command, trivial_regexp_p, search_buffer, simple_search)
5269 (boyer_moore, wordify, Freplace_match): Use EMACS_INT for buffer
5270 and string positions and length.
5271
5272 * lisp.h (scan_buffer, scan_newline, find_next_newline_no_quit)
5273 (find_before_next_newline): Adjust prototypes.
5274
5275 * editfns.c (transpose_markers, update_buffer_properties)
5276 (buildmark, clip_to_bounds, Fgoto_char, overlays_around)
5277 (get_pos_property, Fconstrain_to_field)
5278 (Fline_beginning_position, Fline_end_position, Fprevious_char)
5279 (Fchar_after, Fchar_before, Finsert_char)
5280 (Finsert_buffer_substring, Fcompare_buffer_substrings)
5281 (Fsubst_char_in_region, Fformat, Ftranspose_regions):
5282 Use EMACS_INT for buffer and string position variables.
5283 (Finsert_char): Protect against too large insertions.
5284
5285 * lisp.h (clip_to_bounds): Adjust prototype.
5286
5287 * intervals.c (traverse_intervals, rotate_right, rotate_left)
5288 (balance_an_interval, split_interval_right, split_interval_left)
5289 (find_interval, next_interval, update_interval)
5290 (adjust_intervals_for_insertion, delete_node, delete_interval)
5291 (interval_deletion_adjustment, adjust_intervals_for_deletion)
5292 (offset_intervals, merge_interval_right, merge_interval_left)
5293 (graft_intervals_into_buffer, adjust_for_invis_intang)
5294 (move_if_not_intangible, get_local_map, copy_intervals)
5295 (copy_intervals_to_string, compare_string_intervals)
5296 (set_intervals_multibyte_1): Use EMACS_INT for buffer positions
5297 and for interval tree size.
5298
5299 * intervals.h (traverse_intervals, split_interval_right)
5300 (split_interval_left, find_interval, offset_intervals)
5301 (graft_intervals_into_buffer, copy_intervals)
5302 (copy_intervals_to_string, move_if_not_intangible, get_local_map)
5303 (update_interval): Adjust prototypes.
5304
5305 * xdisp.c (check_point_in_composition, reconsider_clip_changes):
5306 Use EMACS_INT for buffer position variables and arguments.
5307
5308 * composite.c (get_composition_id, find_composition)
5309 (run_composition_function, compose_text)
5310 (composition_gstring_width, autocmp_chars)
5311 (composition_update_it, Ffind_composition_internal): Use EMACS_INT
5312 for buffer positions and string length variables and arguments.
5313
5314 * composite.h (get_composition_id, find_composition, compose_text)
5315 (composition_gstring_width): Adjust prototypes.
5316
5317 * editfns.c (Fformat): Use EMACS_INT for string size variables.
5318
5319 * xdisp.c (store_mode_line_noprop, display_mode_element):
5320 Use EMACS_INT for string positions.
5321
5322 * intervals.c (get_property_and_range): Use EMACS_INT for buffer
5323 position arguments.
5324
5325 * intervals.h (get_property_and_range): Adjust prototype.
5326
5327 * character.c (parse_str_as_multibyte, str_as_multibyte)
5328 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
5329 (string_count_byte8, string_escape_byte8, c_string_width)
5330 (strwidth, lisp_string_width, multibyte_chars_in_text):
5331 Use EMACS_INT for string length variables and arguments.
5332
5333 * character.h (parse_str_as_multibyte, str_as_multibyte)
5334 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
5335 (c_string_width, strwidth, lisp_string_width):
5336 Adjust prototypes.
5337
5338 * font.c (font_intern_prop): Use EMACS_INT for string length
5339 variables.
5340
5341 * font.c (font_intern_prop): Use EMACS_INT for string length
5342 variables.
5343
5344 * fns.c (Fstring_as_multibyte): Use EMACS_INT for string length
5345 variables.
5346
5347 * alloc.c <total_string_size>: Declare as EMACS_INT, not int.
5348 (Fmake_string): Protect against too large strings.
5349 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
5350 (live_misc_p): Use ptrdiff_t instead of int for pointer
5351 differences.
5352 (string_bytes, check_sblock, check_string_free_list)
5353 (allocate_string_data, compact_small_strings, Fmake_string)
5354 (Fmake_bool_vector, make_string, make_unibyte_string)
5355 (make_multibyte_string, make_string_from_bytes)
5356 (make_specified_string_string, Fmake_list, Fmake_vector):
5357 Use EMACS_INT for string length variables and arguments.
5358 (find_string_data_in_pure, make_pure_string, make_pure_c_string)
5359 (Fpurecopy): Use EMACS_INT for string size.
5360 (mark_vectorlike, mark_char_table, mark_object): Use EMACS_UINT
5361 for vector size.
5362
5363 * lisp.h (make_string, make_unibyte_string, make_multibyte_string)
5364 (make_string_from_bytes, make_specified_string_string)
5365 (make_pure_string, string_bytes, check_point_in_composition):
5366 Adjust prototypes.
5367
5368 2010-09-22 Eli Zaretskii <eliz@gnu.org>
5369
5370 * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal)
5371 (check_translation): Use EMACS_INT for buffer positions and
5372 length.
5373
5374 * undo.c (record_marker_adjustment, record_delete)
5375 (record_change, record_point, record_insert)
5376 (record_property_change, Fprimitive_undo): Use EMACS_INT for
5377 buffer positions.
5378
5379 * lisp.h (record_marker_adjustment, record_delete)
5380 (record_change, record_point, record_insert)
5381 (record_property_change, Fprimitive_undo): Adjust prototypes.
5382
5383 2010-09-22 Juanma Barranquero <lekktu@gmail.com>
5384 Eli Zaretskii <eliz@gnu.org>
5385
5386 * w32.c (get_emacs_configuration_options): Fix buffer overrun.
5387
5388 2010-09-22 Eli Zaretskii <eliz@gnu.org>
5389
5390 * minibuf.c (Fminibuffer_contents)
5391 (Fminibuffer_contents_no_properties)
5392 (Fminibuffer_completion_contents): Use EMACS_INT for minibuffer
5393 positions.
5394
5395 * keyboard.c (command_loop_1): Use EMACS_INT to compare point with
5396 mark.
5397
5398 * alloc.c (make_uninit_string, make_uninit_multibyte_string)
5399 (allocate_string_data): Accept EMACS_INT for string length.
5400
5401 * editfns.c (Ffield_string, Ffield_string_no_properties)
5402 (make_buffer_string, make_buffer_string_both, Fbuffer_substring)
5403 (Fbuffer_substring_no_properties, find_field, Fdelete_field)
5404 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
5405 (Ffield_end): Use EMACS_INT for buffer positions.
5406
5407 * insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare
5408 point with mark.
5409
5410 * lisp.h (allocate_string_data, make_uninit_string)
5411 (make_uninit_multibyte_string, make_buffer_string)
5412 (make_buffer_string_both): Adjust prototypes.
5413
5414 2010-09-22 Chong Yidong <cyd@stupidchicken.com>
5415
5416 * xml.c: Switch to GNU indentation.
5417 (make_dom): Change parse tree format to match xml.el.
5418 (Fxml_parse_html_string_internal): Rename from html-parse-string.
5419 (Fxml_parse_string_internal): Rename from xml-parse-string.
5420
5421 2010-09-22 Kenichi Handa <handa@m17n.org>
5422
5423 * xdisp.c (compute_stop_pos): Call composition_compute_stop_pos
5424 only if we are not at a composition.
5425 (set_iterator_to_next): Give it->end_charpos to
5426 composition_compute_stop_pos.
5427 (set_iterator_to_next, next_element_from_buffer): Likewise.
5428
5429 * dispnew.c (buffer_posn_from_coords): Fix position when the
5430 current display element is a grapheme cluster in bidi-reordered
5431 region.
5432
5433 2010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
5434
5435 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
5436 the regions may overlap.
5437
5438 2010-09-21 Juanma Barranquero <lekktu@gmail.com>
5439
5440 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
5441
5442 2010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
5443
5444 * emacs.c: Do not include sys/ioctl.h, not needed.
5445
5446 * doprnt.c: Do not include stdlib.h, config.h does it.
5447 Move #include before macro definition.
5448
5449 2010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
5450
5451 * Makefile.in (temacs): Link using $(CC) not $(LD).
5452 (LD_FIRSTFLAG): Define using autoconf.
5453 (LD): Remove.
5454
5455 Remove HAVE_TERMIOS definitions.
5456 * s/usg5-4-common.h (HAVE_TERMIOS):
5457 * s/template.h (HAVE_TERMIOS):
5458 * s/gnu-linux.h (HAVE_TERMIOS):
5459 * s/darwin.h (HAVE_TERMIOS):
5460 * s/cygwin.h (HAVE_TERMIOS):
5461 * s/bsd-common.h (HAVE_TERMIOS):
5462 * s/aix4-2.h (HAVE_TERMIOS):
5463 * s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
5464 defined on all non-MS platforms.
5465 (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
5466
5467 * xterm.c (xt_action_hook): Use const.
5468
5469 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
5470
5471 Don't make W32 code conditional on HAVE_SOCKETS, it's always defined.
5472 * w32.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
5473 (gethostname) [!HAVE_SOCKETS]: Remove.
5474 (SOCK_REPLACE_HANDLE): Remove macro.
5475 (socket_to_fd, sys_close, _sys_read_ahead, sys_read, sys_write)
5476 (term_ntproc, init_ntproc): Don't conditionalize on HAVE_SOCKETS.
5477 * w32proc.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
5478 (syms_of_ntproc): Don't conditionalize on HAVE_SOCKETS.
5479
5480 2010-09-18 Eli Zaretskii <eliz@gnu.org>
5481
5482 * deps.mk (xml.o): Add dependencies.
5483
5484 * xdisp.c (Fcurrent_bidi_paragraph_direction):
5485 Call bidi_paragraph_init with NO_DEFAULT_P non-zero. (Bug#7038)
5486
5487 * bidi.c (bidi_paragraph_init): Accept an additional argument
5488 NO_DEFAULT_P; all callers changed. If NO_DEFAULT_P is non-zero,
5489 search back until a paragraph with a strong directional character
5490 is found, and use that to determine paragraph's base direction.
5491
5492 * dispextern.h (bidi_paragraph_init): Update prototype.
5493
5494 2010-09-17 Eli Zaretskii <eliz@gnu.org>
5495
5496 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
5497 of w32api >= 3.15. (Bug#6989)
5498
5499 2010-09-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5500
5501 * process.c (wait_reading_process_output): Don't message about
5502 accept-process-output unless the time limit really is zero.
5503
5504 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
5505
5506 * frame.c (Ftool_bar_pixel_width): YAILOM (Yet another
5507 int/Lisp_Object mixup).
5508
5509 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
5510
5511 * keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL
5512 not HELP.
5513
5514 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
5515
5516 * frame.c (Ftool_bar_pixel_width): New function to expose tool
5517 bar's pixel width to Lisp (Bug#7048).
5518
5519 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
5520
5521 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
5522
5523 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
5524
5525 * gtkutil.c (xg_pack_tool_bar): Call gtk_handle_box_set_handle_position
5526 with argument top/left if tool bar is vertical/horizontal (Bug#7051).
5527
5528 2010-09-17 Kenichi Handa <handa@m17n.org>
5529
5530 * ftfont.c (ftfont_check_otf): Fix previous change.
5531
5532 2010-09-14 Kenichi Handa <handa@m17n.org>
5533
5534 * ftfont.c (ftfont_check_otf): Fix the case of checking just
5535 existence of GSUB or GPOS.
5536
5537 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
5538
5539 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
5540
5541 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
5542
5543 * xml.c (parse_buffer): Rename to parse_string(), since that's
5544 what it does.
5545 (parse_string): Return nil when the document can't be parsed.
5546
5547 2010-09-14 Jan Djärv <jan.h.d@swipnet.se>
5548
5549 * xterm.c (get_current_vm_state): New function.
5550 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
5551 want_fullscreen so set_wm_state calls are few (Bug#7013).
5552 (x_handle_net_wm_state): Move code to get_current_vm_state and
5553 call that function.
5554
5555 2010-09-14 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
5556
5557 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
5558
5559 2010-09-14 Kenichi Handa <handa@m17n.org>
5560
5561 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
5562 we may use designation or locking-shift.
5563
5564 2010-09-14 Kenichi Handa <handa@m17n.org>
5565
5566 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
5567 sequence when the source is multibyte.
5568
5569 2010-09-14 Andreas Schwab <schwab@linux-m68k.org>
5570
5571 * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last change.
5572 Don't make first argument optional. Doc fix.
5573
5574 2010-09-14 Leo <sdl.web@gmail.com> (tiny change)
5575
5576 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
5577 parameters for the doc string.
5578
5579 2010-09-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
5580
5581 * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
5582
5583 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5584
5585 * fns.c (Fy_or_n_p): Move to lisp/subr.el.
5586 (syms_of_fns): Don't defsubr Sy_or_n_p.
5587 * lisp.h: Don't declare Fy_or_n_p.
5588 * fileio.c (barf_or_query_if_file_exists): Fy_or_n_p -> y-or-n-p.
5589
5590 2010-09-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
5591
5592 * xml.c (Fxml_parse_buffer): New function to parse XML files.
5593
5594 2010-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
5595
5596 * xml.c: New file.
5597 (Fhtml_parse_buffer): New function to interface to the libxml2
5598 html parsing function.
5599
5600 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
5601
5602 * biditype.h: Regenerate.
5603
5604 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
5605
5606 * nsimage.m (ns_load_image): Check argument types.
5607
5608 * image.c: Remove all uses of gcpro.
5609 (xpm_load): Check all lisp types.
5610 (pbm_load): Likewise.
5611 (png_load): Likewise.
5612 (jpeg_load): Likewise.
5613 (tiff_load): Likewise.
5614 (gif_load): Likewise.
5615 (imagemagick_load_image): Likewise.
5616 (imagemagick_load): Likewise.
5617 (svg_load): Likewise.
5618 (gs_load): Likewise.
5619
5620 2010-09-04 Eli Zaretskii <eliz@gnu.org>
5621
5622 * w32uniscribe.c (uniscribe_shape): Update commentary.
5623 Don't try to reorder grapheme clusters, since LGSTRING should always
5624 hold them in the logical order.
5625 (uniscribe_encode_char, uniscribe_shape): Force ScriptShape to
5626 return glyph codes in the logical order.
5627
5628 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
5629
5630 * image.c (imagemagick_image_p): Replace bcopy by memcpy.
5631 (imagemagick_load_image): Fix type mismatch.
5632 (Fimagemagick_types): Likewise. Doc fix.
5633
5634 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
5635
5636 * xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
5637
5638 * xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
5639
5640 * xselect.c: Remove declaration of cut-buffer objects and functions.
5641 (symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
5642 (x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
5643 (Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
5644 (Fx_rotate_cut_buffers_internal): Remove.
5645 (syms_of_xselect): Remove defsubr of above.
5646 Remove intern of QCUT_BUFFERn.
5647
5648 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
5649
5650 * cmds.c (Vblink_paren_function): Remove.
5651 (internal_self_insert): Make it insert N chars at a time.
5652 Don't call blink-paren-function.
5653 (Fself_insert_command): Adjust accordingly.
5654 (syms_of_cmds): Don't declare blink-paren-function.
5655
5656 2010-08-31 Kenichi Handa <handa@m17n.org>
5657
5658 * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
5659 characters.
5660
5661 * term.c (encode_terminal_code): Fix the previous change.
5662 (produce_glyphs): Don't set it->char_to_display here.
5663 Don't handle unibyte-display-via-language-environment here.
5664 (produce_special_glyphs): Set temp_it.char_to_display before
5665 calling produce_glyphs.
5666
5667 * xdisp.c (get_next_display_element): Set it->char_to_display
5668 here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit
5669 characters.
5670 (get_overlay_arrow_glyph_row): Set it.char_to_display too before
5671 calling PRODUCE_GLYPHS.
5672 (append_space_for_newline): Save and store it->char_to_display.
5673 Set it->char_to_display before calling PRODUCE_GLYPHS.
5674 (extend_face_to_end_of_line): Set it->char_to_display before
5675 calling PRODUCE_GLYPHS.
5676 (get_glyph_face_and_encoding): Set the glyph code an 8-bit
5677 character to its byte value.
5678 (get_char_glyph_code): New function.
5679 (produce_stretch_glyph): Set it2.char_to_display too before
5680 calling x_produce_glyphs.
5681 (x_produce_glyphs): Simplify by using the same code for ASCII and
5682 non-ASCII characters. Don't set it->char_to_display here.
5683 Don't handle unibyte-display-via-language-environment here. For a
5684 character of no glyph, use font->space_width instead of FONT_WIDTH.
5685
5686 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
5687
5688 * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
5689
5690 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
5691
5692 * keyboard.c (command_loop_1): Don't call x-set-selection on tty.
5693
5694 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
5695
5696 * marker.c (Fcopy_marker): Make the first arg optional.
5697
5698 2010-08-30 Kenichi Handa <handa@m17n.org>
5699
5700 * composite.c (composition_update_it): Fix computing of
5701 cmp_it->width.
5702
5703 2010-08-29 Kenichi Handa <handa@m17n.org>
5704
5705 * term.c (encode_terminal_code): Encode byte chars to the
5706 corresponding bytes.
5707
5708 2010-08-29 Jan Djärv <jan.h.d@swipnet.se>
5709
5710 * nsterm.m (ns_draw_window_cursor): Draw BAR_CURSOR correct for R2L.
5711
5712 2010-08-26 Kenichi Handa <handa@m17n.org>
5713
5714 * xdisp.c (compute_stop_pos): Pay attention to bidi scan direction
5715 on calling composition_compute_stop_pos.
5716
5717 2010-08-25 Kenichi Handa <handa@m17n.org>
5718
5719 * fontset.c (reorder_font_vector): Prefer a font-spec specifying
5720 :otf.
5721
5722 * composite.c (composition_compute_stop_pos): Don't break
5723 composition at PT.
5724 (composition_reseat_it): Likewise. Fix calculation of character
5725 position starting a composition.
5726 (Fcomposition_get_gstring): Don't limit the number of components
5727 for automatic composition.
5728
5729 2010-08-25 Kenichi Handa <handa@m17n.org>
5730
5731 * composite.c (composition_compute_stop_pos): In forward search,
5732 pay attention to the possibility that some character after ENDPOS
5733 will be composed with charactrs before ENDPOS.
5734
5735 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
5736
5737 * keyboard.c (command_loop_1): Don't clobber primary selection
5738 during handle-switch-frame (Bug#6872).
5739
5740 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
5741
5742 * dbusbind.c: Accept UNIX domain sockets as bus address.
5743 (Fdbus_close_bus): New function.
5744 (Vdbus_registered_buses): New variable.
5745 (xd_initialize): Implement string as bus address.
5746 (Fdbus_init_bus): Add bus to Vdbus_registered_buses).
5747 (Fdbus_get_unique_name, Fdbus_call_method)
5748 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
5749 (Fdbus_method_error_internal, Fdbus_send_signal)
5750 (Fdbus_register_signal, Fdbus_register_method): Remove bus type
5751 check. This is done in xd_initialize_bus. Adapt doc string, if
5752 necessary.
5753 (xd_pending_messages, xd_read_queued_messages): Loop over buses in
5754 Vdbus_registered_buses.
5755 (Vdbus_registered_objects_table): Create hash.
5756
5757 2010-08-22 Juri Linkov <juri@jurta.org>
5758
5759 * keyboard.c (Fexecute_extended_command): Move reading a command name
5760 with `completing-read' to a new Elisp function `read-extended-command'.
5761 Call it to read a command to `function' (bug#5364, bug#5214).
5762
5763 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
5764
5765 * emacs.c (main): Remove handling of --unibyte arg (Bug#6886).
5766
5767 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
5768
5769 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
5770 instead of SAFE_ALLOCA.
5771
5772 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
5773
5774 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
5775 (Bug#6214).
5776
5777 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
5778
5779 * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
5780
5781 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
5782
5783 * doc.c (Fsnarf_documentation): Initialize skip_file before
5784 build-files test.
5785
5786 2010-08-22 Peter O'Gorman <pogma@thewrittenword.com> (tiny change)
5787
5788 * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
5789 New definitions.
5790 (HAVE_TERMIO): Remove.
5791
5792 2010-08-22 Eli Zaretskii <eliz@gnu.org>
5793
5794 * deps.mk (sysdep.o, msdos.o): Depend on sysselect.h.
5795
5796 * sysselect.h [WINDOWSNT]: Don't define the FD_* and select stuff
5797 for w32.
5798
5799 * s/ms-w32.h (HAVE_SYS_TIMEB_H): Don't #undef HAVE_SYS_SELECT_H,
5800 it's done in nt/config.nt.
5801
5802 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on sysselect.h.
5803
5804 * unexcoff.c (report_error, make_hdr, write_segment)
5805 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
5806 Convert argument lists and prototypes to ANSI C.
5807 (make_hdr, write_segment): Remove unused variables.
5808 (unexec): Remove commented-out line. Initialize `new' to shut up
5809 compiler warnings.
5810
5811 2010-08-22 Dan Nicolaescu <dann@ics.uci.edu>
5812
5813 Simplify termio code.
5814 All non-MSDOS non-WINDOWSNT platforms define HAVE_TERMIOS, so
5815 HAVE_TERMIO code is obsolete.
5816 Replace HAVE_TERMIOS conditionals with !DOS_NT.
5817 * systty.h: Do not define HAVE_TCATTR.
5818 Remove HAVE_TERMIO, HAVE_LTCHARS and HAVE_TCHARS code.
5819 Do not define EMACS_HAVE_TTY_PGRP. Only define
5820 EMACS_GET_TTY_PGRP for !DOS_NT.
5821 * sysdep.c: Include sysselect.h unconditionally. Do not include
5822 sys/ioctl.h and termios.h, systty.h does it.
5823 Use HAVE_SYS_UTSNAME_H instead of USG as an include guard.
5824 (init_baud_rate): Remove HAVE_TERMIO code.
5825 (child_setup_tty): Remove HAVE_TERMIO code.
5826 (emacs_get_tty, emacs_set_tty): Remove HAVE_TERMIO, HAVE_TCHARS
5827 and HAVE_LTCHARS code. Use !DOS_NT instead of HAVE_TCATTR.
5828 (new_ltchars, new_tchars): Remove, unused.
5829 (init_sys_modes): Remove HAVE_TERMIO, HAVE_TCHARS and HAVE_LTCHARS
5830 code. Remove special casing for __mips__, it was a no-op.
5831 Remove HAVE_TCATTR conditional, it is implied by HAVE_TERMIOS.
5832 (init_sys_modes): Remove HPUX special case.
5833 * process.c: Include stdlib.h unconditionally. Do not include
5834 fcntl.h, systty.h does it. Remove conditional code for
5835 HAVE_SERIAL, it is always true.
5836 (process_send_signal): Remove HAVE_TERMIOS conditional, it's
5837 always true when SIGNALS_VIA_CHARACTERS is true.
5838 (Fcontinue_process, Fprocess_send_eof): Simplify conditionals:
5839 !WINDOWSNT means HAVE_TERMIOS.
5840 (create_process): Remove HAVE_TERMIOS, it's inside a HAVE_PTYS
5841 conditional, which is true for all HAVE_TERMIOS systems.
5842 * keyboard.c (init_keyboard): Do not use HAVE_TERMIO, use !DOS_NT
5843 instead of HAVE_TERMIOS.
5844 * emacs.c (shut_down_emacs): Use !defined DOS_NT instead of
5845 EMACS_HAVE_TTY_PGRP.
5846 * callproc.c (child_setup): Move EMACS_SET_TTY_PGRP use to the
5847 non-MSDOS, non-WINDOWSNT code, it's only defined for such systems
5848 anyway.
5849
5850 2010-08-21 Eli Zaretskii <eliz@gnu.org>
5851
5852 * dispnew.c (buffer_posn_from_coords): Fix off-by-one error in
5853 mirroring pixel positions.
5854
5855 2010-08-20 Dan Nicolaescu <dann@ics.uci.edu>
5856
5857 * alloc.c (malloc_sbrk_used, malloc_sbrk_unused): Remove,
5858 write only.
5859 (init_alloc_once): Remove writes to malloc_sbrk_unused, and
5860 malloc_sbrk_used, nothing uses them.
5861
5862 * puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
5863 defined, unconditionally defined in lisp.h.
5864
5865 * term.c: Do not include <termios.h>, systty.h does it.
5866
5867 * s/unixware.h (HAVE_TCATTR):
5868 * s/aix4-2.h (HAVE_TCATTR): Remove definitions, not needed.
5869 systty.h defines it when HAVE_TERMIOS is defined.
5870
5871 2010-08-20 Eli Zaretskii <eliz@gnu.org>
5872
5873 * dispnew.c (buffer_posn_from_coords): Fix last change for text
5874 terminals: add one-character offset for R2L lines.
5875
5876 * emacs.c <emacs_version>: Add a comment regarding
5877 msdos/mainmake.v2's dependency on the syntax of this declaration.
5878
5879 2010-08-20 Eli Zaretskii <eliz@gnu.org>
5880
5881 * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer
5882 position for R2L lines by mirroring the pixel position wrt the
5883 text are box. Improve commentary.
5884
5885 2010-08-20 Andreas Schwab <schwab@linux-m68k.org>
5886
5887 * image.c (imagemagick_clear_image): Remove debugging output.
5888
5889 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
5890
5891 * cmds.c (Vself_insert_face, Vself_insert_face_command): Remove.
5892 (Qpost_self_insert_hook, Vpost_self_insert_hook): New vars.
5893 (internal_self_insert): Run Qpost_self_insert_hook rather than handle
5894 self-insert-face.
5895 (syms_of_cmds): Initialize the new vars.
5896
5897 2010-08-19 Jason Rumney <jasonr@gnu.org>
5898
5899 * w32menu.c (set_frame_menubar): Remove call to undefined function.
5900
5901 * w32fns.c (w32_wnd_proc): Don't check context before initializing.
5902
5903 2010-08-19 Jan Djärv <jan.h.d@swipnet.se>
5904
5905 * nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".
5906
5907 2010-08-18 Eli Zaretskii <eliz@gnu.org>
5908
5909 * xterm.c (x_draw_bar_cursor):
5910 * w32term.c (x_draw_bar_cursor): If the character under cursor is
5911 R2L, draw the bar cursor on its right rather than on its left.
5912
5913 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
5914
5915 * eval.c (Fdefmacro): Only obey one declaration.
5916
5917 * casefiddle.c (casify_region): Setup gl_state.
5918
5919 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
5920
5921 * nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
5922
5923 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
5924
5925 * gtkutil.c (update_frame_tool_bar): Literal strings are const char*.
5926
5927 2010-08-18 David De La Harpe Golden <david@harpegolden.net>
5928
5929 * nsselect.m (QCLIPBOARD, NXPrimaryPboard): Define.
5930 (symbol_to_nsstring): Map QCLIPBOARD => NSGeneralPboard,
5931 QPRIMARY => NXPrimaryPboard.
5932 (ns_string_to_symbol): NSGeneralPboard => QCLIPBOARD,
5933 NXPrimaryPboard => QPRIMARY.
5934 (nxatoms_of_nsselect): NXPrimaryPboard = PrimarySelection,
5935 NXSecondaryPboard = SecondarySelection.
5936 (syms_of_nsselect): Intern QCLIPBOARD (Bug#6677).
5937
5938 2010-08-18 Joakim Verona <joakim@verona.se>
5939
5940 * image.c: Add support for ImageMagick. When HAVE_IMAGEMAGICK is
5941 defined:
5942 (imagemagick_image_p): New function to test for ImageMagic image.
5943 (imagemagick_load): New function to load ImageMagick image.
5944 (imagemagick_load_image): New function, helper for imagemagick_load.
5945 (imagemagick-types): New function.
5946 (Qimagemagick): New Lisp_object.
5947 (imagemagick-render-type): New variable, decides which renderer to use.
5948
5949 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
5950
5951 * gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
5952 is a string.
5953
5954 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
5955
5956 * nsfns.m (ns_frame_parm_handlers): Add a slot for the
5957 x_set_tool_bar_position handler.
5958
5959 2010-08-17 Eli Zaretskii <eliz@gnu.org>
5960
5961 * w32fns.c <w32_frame_parm_handlers>: Add a slot for the
5962 x_set_tool_bar_position handler, needed to support changes from
5963 2010-07-29T16:49:59Z!jan.h.d@swipnet.se for positioning the tool bar. (Bug#6796)
5964
5965 2010-08-16 Jan Djärv <jan.h.d@swipnet.se>
5966
5967 * nsselect.m: Include keyboard.h for QPRIMARY, remove its
5968 declaration (Bug#6863).
5969 (syms_of_nsselect): Don't intern QPRIMARY.
5970
5971 * xselect.c: Remove declaration of QPRIMARY (Bug#6864).
5972
5973 * keyboard.h (QPRIMARY): Declare (Bug#6864).
5974
5975 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
5976
5977 * keyboard.c (command_loop_1): Avoid setting selection twice,
5978 since it's done in deactivate-mark as well.
5979 (Vselect_active_regions): Change default to t. Replace `lazy'
5980 with non-default value `only', meaning only set PRIMARY for
5981 temporarily active regions.
5982
5983 * insdel.c (prepare_to_modify_buffer): Handle `only' value of
5984 select-active-regions.
5985
5986 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
5987
5988 * keyboard.c (parse_tool_bar_item): Put in a bad label if :label
5989 isn't a string.
5990
5991 2010-08-15 Andreas Schwab <schwab@linux-m68k.org>
5992
5993 * keyboard.c (parse_tool_bar_item): Avoid excessive use of strlen.
5994
5995 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
5996
5997 * keyboard.c (parse_tool_bar_item): malloc buf.
5998 Set TOOL_BAR_ITEM_LABEL to empty string if not set to
5999 new_lbl (Bug#6855).
6000
6001 2010-08-14 Eli Zaretskii <eliz@gnu.org>
6002
6003 * xterm.c (x_draw_stretch_glyph_string):
6004 * w32term.c (x_draw_stretch_glyph_string): In R2L rows, display
6005 the cursor on the right edge of the stretch glyph.
6006
6007 * xdisp.c (window_box_right_offset, window_box_right):
6008 Fix commentary.
6009
6010 * xdisp.c (Fcurrent_bidi_paragraph_direction): Fix paragraph
6011 direction when point is inside a run of whitespace characters.
6012
6013 * bidi.c (bidi_at_paragraph_end): Remove obsolete comment.
6014
6015 2010-08-14 Jason Rumney <jasonr@gnu.org>
6016
6017 * keyboard.c (lispy_function_keys): Do not define VK_PACKET (bug#4836)
6018
6019 2010-08-14 Chong Yidong <cyd@stupidchicken.com>
6020
6021 * fns.c (Fmake_hash_table): Doc fix (Bug#6851).
6022
6023 2010-08-13 Jason Rumney <jasonr@gnu.org>
6024
6025 * w32menu.c (simple_dialog_show): Use unicode message box if available.
6026 (MessageBoxW_Proc): New function typedef.
6027 (unicode-message-box): New function pointer.
6028 (globals_of_w32menu): Import it from user32.dll. (Bug#5629)
6029
6030 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
6031
6032 * frame.h (Qtool_bar_position): Declare.
6033
6034 * xfns.c (Fx_create_frame): Call x_default_parameter for
6035 Qtool_bar_position.
6036
6037 2010-08-13 Eli Zaretskii <eliz@gnu.org>
6038
6039 * unexcoff.c: Remove the parts used when "emacs" is not defined.
6040 (report_error, report_error_1): Ditto.
6041 (write_segment): Remove "#if 0" unused code.
6042 (make_hdr): Remove code that was "#ifndef NO_REMAP" before
6043 NO_REMAP was removed (in 2010-07-29T03:25:08Z!dann@ics.uci.edu).
6044 (start_of_text): Remove unused function (was used only if NO_REMAP
6045 was NOT defined).
6046
6047 * msdos.c (IT_set_face): Fix format string to match argument
6048 types.
6049 (IT_write_glyphs, IT_note_mode_line_highlight)
6050 (IT_set_frame_parameters): Remove unused variables.
6051 (x_set_menu_bar_lines): Declare set_menu_bar_lines.
6052 (IT_set_terminal_modes): Disambiguate expression in if clause.
6053 (Fmsdos_remember_default_colors): Return Qnil.
6054 (IT_set_frame_parameters): Add parens to disambiguate boolean
6055 expression for logging the cursor type to termscript.
6056 (keyboard_layout_list, keypad_translate_map)
6057 (grey_key_translate_map): Add braces in inner initializers.
6058 (dos_rawgetc): Add parens in condition for mouse-3 button-press.
6059 (dos_rawgetc): Remove unused label.
6060 (XMenuActivate): Add braces to remove ambiguous `else'.
6061 (dos_ttraw): Always return a value.
6062 (spawnve): Declare.
6063 (run_msdos_command): Cast 3rd arg of spawnve to "char **".
6064
6065 * dosfns.h (x_set_title): Declare.
6066
6067 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
6068 Remove unused variables.
6069
6070 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused
6071 variables.
6072 (init_dosfns): Declare get_lim_data.
6073 (system_process_attributes): Declare Fget_internal_run_time.
6074
6075 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument
6076 list to be consistent with menu.h.
6077
6078 * w32menu.c (add_menu_item, name_is_separator): Shut up compiler
6079 warnings due to mixing of "char *" and "const char *".
6080
6081 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
6082
6083 Introduce a new comment style "c" flag.
6084 * syntax.c (SYNTAX_FLAGS_COMMENT_STYLEB)
6085 (SYNTAX_FLAGS_COMMENT_STYLEC): New macros.
6086 (SYNTAX_FLAGS_COMMENT_STYLE): Use them, add an argument.
6087 (syntax_prefix_flag_p): New function.
6088 (Fstring_to_syntax): Understand new "c" flag.
6089 (Finternal_describe_syntax_value): Recognize new flag; use the
6090 SYNTAX_FLAGS_* macros.
6091 (scan_sexps_forward, Fparse_partial_sexp): Change representation of
6092 comment style to accomodate the new styles.
6093 (back_comment, forw_comment, Fforward_comment, scan_lists)
6094 (scan_sexps_forward): Update code to obey the new comment style flag.
6095
6096 * syntax.h: Move SYNTAX_FLAGS_FOO() macros to syntax.c.
6097
6098 * casefiddle.c (casify_region): Use the new syntax_prefix_flag_p.
6099
6100 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
6101
6102 * xfns.c (x_defined_color): If USE_GTK, call xg_check_special_colors
6103 first.
6104 (Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
6105
6106 * gtkutil.h (xg_check_special_colors): Declare.
6107
6108 * gtkutil.c (xg_check_special_colors, style_changed_cb): New functions.
6109 (xg_create_frame_widgets): Connect theme name changes to
6110 style_changed_cb.
6111
6112 * xterm.c (emacs_class): New char[] for EMACS_CLASS.
6113 (xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class.
6114 (x_term_init): Use char[] display_opt and name_opt instead of
6115 string literal. file is const char*.
6116
6117 * xsmfns.c (NOSPLASH_OPT): Change to char[].
6118 (smc_save_yourself_CB): Do xstrdup on all ->type and ->name for
6119 props. Free them at the end.
6120
6121 * xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "".
6122
6123 * xrdb.c (get_system_app): Make path const and use char *p for
6124 non-const char.
6125
6126 * xmenu.c (Fx_popup_dialog): error_name is const char*.
6127 (xmenu_show): error parameter is const char **. pane_string is const
6128 char *.
6129 (button_names): Is const char *.
6130 (xdialog_show): error_name and pane_string is const.
6131
6132 * process.h (synch_process_death): Is const char*.
6133
6134 * w32menu.c (w32_menu_show):
6135 * nsmenu.m (ns_menu_show): error parameter is const char **.
6136
6137 * menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter
6138 is const char **.
6139
6140 * menu.c (Fx_popup_menu): error_name is const.
6141
6142 * keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean
6143 with unsigned char and XtPointer with void *.
6144
6145 * gtkutil.h: Replace widget_value with struct _widget_value.
6146 (enum button_type, struct _widget_value): Remove and use the one from
6147 keyboard.h.
6148
6149 * gtkutil.c (get_utf8_string): Always return an allocated string.
6150 Parameter is const.
6151 (create_dialog, xg_create_one_menuitem, create_menus)
6152 (xg_item_label_same_p, xg_update_menu_item): Free result from
6153 get_utf8_string.
6154 (xg_separator_p, xg_item_label_same_p): label is const.
6155
6156 * font.h (font_open_by_name): Make name const.
6157
6158 * font.c (font_open_by_name): Make name const.
6159
6160 * floatfns.c (matherr): Use a const char* variable for x->name.
6161
6162 * emacs.c (main): Pass char[] to putenv instead of literal.
6163
6164 * callproc.c (synch_process_death): Make const.
6165 (Fcall_process): Make signame const.
6166
6167 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle)
6168 (addDisplayItemWithImage): Use const char*.
6169
6170 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle)
6171 (addDisplayItemWithImage, update_frame_tool_bar): Use const char*.
6172
6173 * nsfont.m (ns_descriptor_to_entity): Use const char*.
6174
6175 * keyboard.h (_widget_value): name, value and key are const char*.
6176
6177 * unexmacosx.c (unexec_error): Use const char *.
6178
6179 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
6180
6181 * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
6182 (font_parse_name, font_open_by_name):
6183 * font.c (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
6184 (font_parse_name, font_open_by_name): Remove const.
6185
6186 2010-08-09 Andreas Schwab <schwab@linux-m68k.org>
6187
6188 Use autoconf determined WORDS_BIGENDIAN instead of hardcoded
6189 definition.
6190
6191 * m/alpha.h: Don't define/undef WORDS_BIG_ENDIAN.
6192 * m/amdx86-64.h: Likewise.
6193 * m/arm.h: Likewise.
6194 * m/hp800.h: Likewise.
6195 * m/ia64.h: Likewise.
6196 * m/ibmrs6000.h: Likewise.
6197 * m/ibms390.h: Likewise.
6198 * m/intel386.h: Likewise.
6199 * m/iris4d.h: Likewise.
6200 * m/m68k.h: Likewise.
6201 * m/macppc.h: Likewise.
6202 * m/mips.h: Likewise.
6203 * m/sh3.h: Likewise.
6204 * m/sparc.h: Likewise.
6205 * m/template.h: Likewise.
6206 * m/vax.h: Likewise.
6207 * m/xtensa.h: Likewise.
6208 * fringe.c (init_fringe_bitmap): Test WORDS_BIGENDIAN instead of
6209 WORDS_BIG_ENDIAN.
6210 * lisp.h: Likewise.
6211 * md5.c: Likewise.
6212 * sound.c (le2hl, le2hs, be2hl, be2hs): Likewise.
6213
6214 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
6215
6216 Use const char* instead of char*.
6217 Reduce the number of warnings with -Wwrite-strings.
6218 * xrdb.c (get_environ_db, get_system_name):
6219 * unexelf.c (find_section):
6220 * term.c (string_cost, string_cost_one_line, per_line_cost)
6221 (get_named_tty, init_tty):
6222 * sysdep.c (sys_subshell):
6223 * sound.c (sound_perror, sound_warning, vox_open, vox_init)
6224 (alsa_sound_perror, alsa_open, alsa_configure, alsa_init):
6225 * search.c (Freplace_match):
6226 * process.c (Fmake_network_process, send_process, init_process):
6227 * lread.c (Fload, init_lread):
6228 * keymap.c (Fdescribe_buffer_bindings, describe_map_tree):
6229 * keyboard.c (parse_tool_bar_item, struct event_head):
6230 * gtkutil.h (xg_get_font_name):
6231 * gtkutil.c (get_dialog_title, create_dialog, xg_get_font_name)
6232 (make_widget_for_menu_item, make_menu_item, create_menus)
6233 (xg_make_tool_item):
6234 * font.c (parse_matrix, font_parse_name):
6235 * floatfns.c (rounding_driver, float_error_fn_name):
6236 * filelock.c (get_boot_time_1, lock_file_1):
6237 * fileio.c (barf_or_query_if_file_exists, check_writable):
6238 * editfns.c (get_system_name, get_operating_system_release)
6239 (Fencode_time, Fset_time_zone_rule):
6240 * dispextern.h (string_cost, per_line_cost, get_named_tty, init_tty):
6241 * buffer.c (defvar_per_buffer): Use const.
6242
6243 2010-08-08 Kenichi Handa <handa@m17n.org>
6244
6245 * charset.c: Include <stdlib.h>.
6246 (struct charset_sort_data): New struct.
6247 (charset_compare): New function.
6248 (Fsort_charsets): New function.
6249 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
6250
6251 * coding.c (decode_coding_iso_2022): Fix checking of dimension
6252 number in CTEXT extended segment.
6253
6254 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
6255
6256 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
6257 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
6258
6259 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
6260
6261 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
6262 (Fhash_table_size): Fix typos in docstrings.
6263 (Fmake_hash_table): Doc fix.
6264
6265 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
6266
6267 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
6268 Doc fix (bug#5625).
6269
6270 2010-08-08 Ken Brown <kbrown@cornell.edu>
6271
6272 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
6273 the MSDOS definition.
6274
6275 2010-08-08 Dan Nicolaescu <dann@ics.uci.edu>
6276
6277 Use const char* instead of char*.
6278 * xterm.c (x_create_toolkit_scroll_bar):
6279 * xfont.c (xfont_list_pattern):
6280 * xfns.c (x_default_scroll_bar_color_parameter)
6281 (xic_create_fontsetname, x_default_font_parameter)
6282 (x_screen_planes):
6283 * xdisp.c (c_string_pos, number_of_chars, reseat_to_string)
6284 (store_mode_line_string, decode_mode_spec, display_string):
6285 * menu.c (digest_single_submenu):
6286 * keymap.h (initial_define_key, initial_define_lispy_key):
6287 * keymap.c (initial_define_key, initial_define_lispy_key):
6288 * image.c (image_error, image_keyword):
6289 * gtkutil.h (xg_create_widget, xg_create_scroll_bar):
6290 * gtkutil.c (xg_create_widget, xg_create_scroll_bar):
6291 * ftfont.c (struct fc_charset_table, ftfont_spec_pattern)
6292 (ftfont_list, ftfont_match):
6293 * frame.c (frame_parm_table):
6294 * font.h (font_intern_prop, font_parse_xlfd, font_parse_fcname)
6295 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
6296 (font_add_log, font_deferred_log):
6297 * font.c (font_intern_prop, font_parse_xlfd, font_parse_fcname)
6298 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
6299 (font_add_log, font_deferred_log):
6300 * emacs.c (argmatch):
6301 * dispextern.h (struct it):
6302 * coding.c (ENCODE_DESIGNATION):
6303 * charset.c (define_charset_internal): Use const.
6304
6305 * s/freebsd.h (DECLARE_GETPWUID_WITH_UID_T): Remove, unused.
6306
6307 * xrdb.c: Remove include guard.
6308 Remove DECLARE_GETPWUID_WITH_UID_T conditional it had no effect.
6309 Remove #if 0 code. Replace malloc->xmalloc, free->xfree,
6310 realloc->xrealloc instead of using #defines.
6311
6312 2010-08-08 Eli Zaretskii <eliz@gnu.org>
6313
6314 * cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
6315 * editfns.c (Fline_beginning_position, Fline_end_position):
6316 State in the doc strings that start and end of line are in the
6317 logical order.
6318
6319 * xdisp.c (display_line): Move the handling of overlay arrow after
6320 the call to find_row_edges. (Bug#6699)
6321
6322 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
6323
6324 * keyboard.c (command_loop_1):
6325 * insdel.c (prepare_to_modify_buffer): Don't call validate_region.
6326
6327 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
6328
6329 * insdel.c (prepare_to_modify_buffer): Save active region text to
6330 Vsaved_region_selection.
6331
6332 * xselect.c (QPRIMARY): Move to keyboard.c.
6333
6334 * keyboard.c (Vselect_active_regions): Move from simple.el.
6335 (Vsaved_region_selection, Qx_set_selection, QPRIMARY, Qlazy): New vars.
6336 (command_loop_1): Set window selection prior to deactivating the mark.
6337
6338 2010-08-07 Juanma Barranquero <lekktu@gmail.com>
6339
6340 * alloc.c (lisp_malloc):
6341 * buffer.c (set_buffer_internal, set_buffer_internal_1):
6342 * charset.h (emacs_mule_charset):
6343 * dispextern.h (inhibit_free_realized_faces, redraw_frame)
6344 (redraw_garbaged_frames, scroll_cost, update_frame, scrolling)
6345 (bitch_at_user):
6346 * lisp.h (Fcheck_coding_system, Fget_text_property)
6347 (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize):
6348 Remove duplicate declarations.
6349
6350 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
6351
6352 * process.c: Simplify include logic.
6353
6354 * keyboard.h (quit_char): Add declaration.
6355 * process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
6356 (QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary):
6357 Add declarations.
6358 * sysdep.c:
6359 * w32.c: Remove the above declarations.
6360
6361 Remove extern declarations in .c files, .h files have them.
6362 * xterm.c:
6363 * xdisp.c:
6364 * msdos.c:
6365 * image.c:
6366 * gtkutil.c:
6367 * fileio.c:
6368 * eval.c: Remove declarations.
6369
6370 * frame.c (frame_params): Make const.
6371
6372 * lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
6373
6374 * emacs.c (emacs_copyright, emacs_version): Make static.
6375 (Vinitial_window_system, Vauto_save_list_file_name)
6376 (Vinhibit_redisplay): Remove declarations.
6377 (main): Remove HAVE_SHM code, unused. Remove _I386 conditional
6378 for AIX.
6379
6380 Use const for some arrays and functions.
6381 * xterm.h (xg_set_icon_from_xpm_data):
6382 * xfns.c (xg_set_icon_from_xpm_data):
6383 * term.c (fkeys):
6384 * keyboard.c (lispy_accent_keys, lispy_function_keys)
6385 (lispy_multimedia_keys, lispy_kana_keys, iso_lispy_function_keys)
6386 (lispy_drag_n_drop_names, scroll_bar_parts, modify_event_symbol)
6387 (frame.c frame_parms):
6388 * emacs-icon.h (gnu_xpm_bits):
6389 * callint.c (callint_argfuns): Use const.
6390
6391 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
6392
6393 * sysdep.c: Move include term.h last of includes (Bug#6812).
6394
6395 2010-08-06 Eli Zaretskii <eliz@gnu.org>
6396
6397 * dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
6398
6399 * msdos.c (IT_display_cursor): Log cursor position on termscript.
6400
6401 * .gdbinit (pgx): Display the avoid_cursor_p flag.
6402
6403 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
6404
6405 * makefile.w32-in ($(BLD)/xdisp.$(O)): Update dependencies.
6406
6407 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
6408
6409 * xterm.h (x_get_focus_frame): Declare.
6410
6411 * keyboard.h (poll_for_input_1): Unconditionally declare.
6412
6413 * nsterm.h (x_set_menu_bar_lines): Declare.
6414
6415 * window.c: Don't include menu.h, it depends on lots of other .h-files.
6416
6417 * xfaces.c (x_create_gc, x_free_gc): Convert to ANSI C prototypes.
6418
6419 * window.c: Include menu.h.
6420
6421 * unexmacosx.c (print_region_list, print_regions)
6422 (build_region_list, find_emacs_zone_regions)
6423 (unexec_regions_merge, read_load_commands, dump_it)
6424 (unexec_init_emacs_zone): Convert to ANSI C prototypes.
6425
6426 * term.c: Check HAVE_SYS_IOCTL_H.
6427
6428 * sysdep.c: Check HAVE_TERM_H.
6429
6430 * process.c: Check HAVE_UTIL_H. Include nsterm.h if HAVE_NS.
6431
6432 * nsterm.m (ns_init_paths, ns_alloc_autorelease_pool)
6433 (ns_ring_bell, ns_defined_color, hide_hourglass)
6434 (x_display_pixel_height, x_display_pixel_width, syms_of_nsterm):
6435 Convert to ANSI C prototypes.
6436 (x_set_window_size, ns_draw_fringe_bitmap, judge): Move declarations
6437 before code.
6438
6439 * nsterm.h : Include sysselect.h.
6440 (x_sync, x_get_focus_frame, x_set_mouse_position)
6441 (x_set_mouse_pixel_position, x_make_frame_visible)
6442 (x_make_frame_invisible, x_iconify_frame, x_char_width, x_char_height)
6443 (x_pixel_width, x_pixel_height, x_set_frame_alpha, x_set_tool_bar_lines)
6444 (x_activate_menubar, free_frame_menubar, ns_init_paths, ns_select)
6445 (syms_of_nsterm, syms_of_nsfns, syms_of_nsmenu, syms_of_nsselect):
6446 Declare.
6447
6448 * nsmenu.m (popup_activated, name_is_separator)
6449 (syms_of_nsmenu): Convert to ANSI C prototypes.
6450 (runMenuAt): Prototypes and move declarations before code.
6451
6452 * nsimage.m (ns_load_image): Move NSTRACE after declarations.
6453
6454 * nsfont.m (ns_fallback_entity, syms_of_nsfont): Convert to ANSI C
6455 prototypes.
6456
6457 * nsfns.m (have_menus_p, ns_display_info_for_name)
6458 (x_set_cursor_type, ns_appkit_version_str)
6459 (ns_appkit_version_int, ns_do_applescript)
6460 (x_set_scroll_bar_default_width, x_sync, compute_tip_xy)
6461 (syms_of_nsfns): Convert to ANSI C prototypes.
6462
6463 * menu.h (x_set_menu_bar_line): Declare.
6464 (free_menubar_widget_value_tree et.al): Add HAVE_NS for these functions.
6465
6466 * lisp.h (fmod_float): Declare.
6467
6468 * image.c (xpm_scan, xpm_make_color_table_v)
6469 (xpm_put_color_table_v, xpm_get_color_table_v)
6470 (xpm_make_color_table_h, xpm_put_color_table_h)
6471 (xpm_get_color_table_h, xpm_str_to_color_key, xpm_load_image)
6472 (xpm_load): Convert to ANSI C prototypes.
6473
6474 * emacs.c: Include nsterm.h if HAVE_NS.
6475
6476 * bidi.c (bidi_dump_cached_states): Fix fprintf warning.
6477
6478 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
6479
6480 * process.c: Remove HAVE_SOCKETS #ifdefs inside #ifdef
6481 subprocesses, only MSDOS does not define HAVE_SOCKETS.
6482 (socket_options): Use const char* for name.
6483
6484 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
6485
6486 Fix changes in 2010-08-05T23:15:24Z!dann@ics.uci.edu..2010-08-05T23:34:12Z!dann@ics.uci.edu for Windows build.
6487
6488 * xmenu.c [USE_X_TOOLKIT || USE_GTK]:
6489 Don't declare xmalloc_widget_value and digest_single_submenu.
6490
6491 * w32font.c (Qlatin): Remove declaration.
6492
6493 * menu.h (xmalloc_widget_value, digest_single_submenu): Declare.
6494
6495 * dired.c (compile_pattern): Restore declaration.
6496
6497 2010-08-05 Dan Nicolaescu <dann@ics.uci.edu>
6498
6499 Remove extern declarations in .c files, .h files have them.
6500 * data.c:
6501 * dired.c:
6502 * editfns.c:
6503 * filelock.c:
6504 * fns.c:
6505 * font.c:
6506 * fontset.c:
6507 * frame.c:
6508 * fringe.c:
6509 * ftfont.c:
6510 * gtkutil.c:
6511 * indent.c:
6512 * keyboard.c:
6513 * keymap.c:
6514 * lread.c:
6515 * menu.c:
6516 * print.c:
6517 * search.c:
6518 * sound.c:
6519 * window.c:
6520 * xdisp.c:
6521 * xfaces.c:
6522 * xfns.c:
6523 * xfont.c:
6524 * xftfont.c:
6525 * xmenu.c:
6526 * xterm.c: Remove declarations.
6527
6528 Cleanup syssignal.h.
6529 * syssignal.h (sighold, sigrelse, RETSIGTYPE): Remove, unused.
6530 (main_thread): Move down to remove #ifdef.
6531 (SIGMASKTYPE, SIGEMPTYMASK, SIGFULLMASK, sigmask, sigunblock):
6532 Remove conditional definition following unconditional ones.
6533
6534 * lisp.h: Remove HAVE_SHM code, unused.
6535 (QCmap, QCrehash_size, QCrehash_threshold, QCsize, QCtest)
6536 (QCweakness, Qabove_handle, Qbackquote, Qbar, Qbelow_handle)
6537 (Qborder, Qbottom, Qbox, Qcircular_list, Qcomma, Qcomma_at)
6538 (Qcomma_dot, Qcursor, Qdefault, Qdown, Qend_scroll, Qeq, Qeql)
6539 (Qequal, Qfile_exists_p, Qfont_param, Qfringe, Qfunction)
6540 (Qfunction_documentation, Qhandle, Qhbar, Qheader_line, Qhollow)
6541 (Qidentity, Qleft_margin, Qmenu, Qmenu_bar_update_hook)
6542 (Qmode_line_inactive, Qmouse, Qoverriding_local_map)
6543 (Qoverriding_terminal_local_map, Qratio, Qregion, Qright_margin)
6544 (Qscroll_bar, Qtool_bar, Qtop, Qup, Qvertical_border, Qwhen)
6545 (Qwindow_scroll_functions, Vafter_load_alist)
6546 (Vauto_save_list_file_name, Vface_alternative_font_family_alist)
6547 (Vface_alternative_font_registry_alist, Vface_font_rescale_alist)
6548 (Vface_ignored_fonts, Vinhibit_redisplay, Vminibuffer_list)
6549 (Vprint_length, Vprint_level, Vscalable_fonts_allowed)
6550 (Vshell_file_name, Vsystem_name, Vwindow_scroll_functions)
6551 (Vwindow_system_version, Vx_no_window_manager, initial_argc)
6552 (initial_argv, last_nonmenu_event, load_in_progress)
6553 (noninteractive_need_newline, scroll_margin): Add declarations.
6554
6555 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
6556 Remove declarations, menu.h has them.
6557 (QCbutton, QCtoggle, QCradio, QClabel, extra_keyboard_modifiers)
6558 (Vinput_method_function, Qinput_method_function)
6559 (Qevent_symbol_element_mask, last_event_timestamp):
6560 * dispextern.h (Voverflow_newline_into_fringe):
6561 * font.h (QCantialias, Qp, syms_of_ftfont, syms_of_xfns)
6562 (syms_of_ftxfont, syms_of_xftfont, syms_of_bdffont)
6563 (syms_of_w32font, syms_of_nsfont):
6564 * fontset.h (find_font_encoding, Qlatin):
6565 * frame.h (Qtooltip, Qrun_hook_with_args, Vmenu_bar_mode)
6566 (Vtool_bar_mode, set_frame_menubar):
6567 * ftfont.h (ftfont_font_format, ftfont_get_fc_charset):
6568 * xterm.h (Qx_gtk_map_stock):
6569 * keymap.h (meta_prefix_char): Add declarations.
6570
6571 * term.c: Remove dead code.
6572
6573 Fix emacs -Q -f server-start & emacsclient -t on GNU/Linux.
6574 * term.c (dissociate_if_controlling_tty): Use USG5 instead of
6575 USG. This is equivalent to defined (USG) && !defined (BSD_PGRPS),
6576 which is what was there before BSD_PGRPS was removed.
6577
6578 2010-08-05 Eli Zaretskii <eliz@gnu.org>
6579
6580 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
6581
6582 * unexcoff.c: Renamed from unexec.c.
6583
6584 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
6585
6586 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
6587
6588 2010-08-03 Johan Bockgård <bojohan@gnu.org>
6589
6590 * data.c (Flocal_variable_p): Handle variable aliases correctly.
6591 (Bug#6744)
6592
6593 2010-08-02 Jan Djärv <jan.h.d@swipnet.se>
6594
6595 * xterm.c (x_create_toolkit_scroll_bar): Only set XtNbeNiceToColormap
6596 to TRUE if depth of screen is < 16.
6597
6598 * gtkutil.c (hierarchy_ch_cb, qttip_cb): Do not define unless
6599 USE_GTK_TOOLTIP.
6600 (xg_prepare_tooltip): Return 0 unless USE_GTK_TOOLTIP.
6601 (xg_show_tooltip, xg_hide_tooltip): Do nothing unless USE_GTK_TOOLTIP.
6602 (xg_create_frame_widgets): Surround tooltip-related code with ifdef
6603 USE_GTK_TOOLTIP.
6604 (xg_free_frame_widgets): Don't delete ttip_* unless USE_GTK_TOOLTIP.
6605
6606 * xterm.h (USE_GTK_TOOLTIP): New define.
6607 (struct x_output): Put ttip_* inside ifdef USE_GTK_TOOLTIP.
6608
6609 * sysdep.c (child_setup_tty): Enable ICANON in lflags and set VEOF
6610 to Control-D (Bug#6771).
6611
6612 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
6613
6614 * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
6615 Wording by Drew Adams <drew.adams@oracle.com>.
6616
6617 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
6618
6619 * xterm.h (struct x_output): Add ttip_widget, ttip_window and
6620 ttip_lbl.
6621
6622 * xterm.c (x_clear_frame): Check FRAME_GTK_WIDGET (f) before
6623 calling gtk_widget_queue_draw.
6624 (x_free_frame_resources): Call xg_free_frame_widgets.
6625
6626 * xfns.c (x_gtk_use_system_tooltips): New variable.
6627 (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call
6628 new gtkutil tooltip functions to show the tooltip.
6629 (Fx_hide_tip): Call xg_hide_tooltip.
6630 (syms_of_xfns): Defvar x-gtk-use-system-tooltips.
6631
6632 * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip)
6633 (xg_show_tooltip, xg_hide_tooltip): Declare.
6634
6635 * gtkutil.c (hierarchy_ch_cb, qttip_cb, xg_prepare_tooltip)
6636 (xg_show_tooltip, xg_hide_tooltip, xg_free_frame_widgets):
6637 New functions.
6638 (xg_create_frame_widgets): Set ttip_* to 0. Set a dummy tooltip
6639 text so qttip_cb is called. Connect query-tooltip to qttip_cb.
6640 Remove code that is commented out.
6641
6642 2010-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
6643
6644 * keymap.c (Fdefine_key, Flookup_key): Say what event is invalid.
6645
6646 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
6647
6648 * xselect.c (x_own_selection): Use list4.
6649
6650 2010-07-30 Dan Nicolaescu <dann@ics.uci.edu>
6651
6652 * buffer.c (Qwindow): Do not define, already defined in data.c.
6653 (syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
6654
6655 2010-07-29 Chad Brown <yandros@mit.edu>
6656
6657 Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf.
6658 * dired.c, sysdep.c: Test HAVE_DIRENT_H instead of SYSV_SYSTEM_DIR.
6659 * config.in: Undef HAVE_DIRENT_H.
6660 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h,
6661 * s/msdos.h, s/usg5-4.h: Don't define SYSV_SYSTEM_DIR.
6662
6663 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6664
6665 Rename s/usg5-4.h -> s/usg5-4-common.h.
6666 * s/usg5-4.h: Rename file to ...
6667 * s/usg5-4-common.h: ... this for consistency with what we do for BSD.
6668 * s/unixware.h:
6669 * s/sol2-6.h:
6670 * s/irix6-5.h: Update includes accordingly.
6671
6672 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
6673
6674 * xfns.c (x_set_tool_bar_position): Remove debug fprintf.
6675
6676 * xterm.h (struct x_output): Add toolbar_top_height,
6677 toolbar_bottom_height, toolbar_left_width, toolbar_right_width.
6678 Remove toolbar_height.
6679 If USE_GTK: Add hbox_widget and toolbar_in_hbox.
6680 (FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
6681 (FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
6682 (FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
6683
6684 * xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
6685
6686 * xfns.c (x_set_tool_bar_position): New function.
6687 (xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
6688 (x_frame_parm_handlers): Add x_set_tool_bar_position.
6689 (syms_of_xfns): If USE_GTK, provide move-toolbar.
6690
6691 * window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
6692 and FRAME_TOOLBAR_LEFT_WIDTH.
6693
6694 * gtkutil.h (xg_change_toolbar_position): Declare.
6695
6696 * gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
6697 (xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
6698 (xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
6699 (xg_create_frame_widgets): Create a hobox for placing widgets
6700 vertically. Use gtk_box_pack_start.
6701 (xg_height_or_width_changed): Rename from xg_height_changed.
6702 (x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
6703 (xg_update_frame_menubar, free_frame_menubar): Change to
6704 xg_height_or_width_changed.
6705 (xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
6706 size correctly. Remove hardcoded 4, instead use handlebox size -
6707 toolbar size.
6708 (xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
6709 size correctly. Use handlebox size + toolbar size as additional size.
6710 (xg_pack_tool_bar): POS is a new parameter.
6711 Set orientation of tool bar based on pos.
6712 Only make handlebox_widget if NULL.
6713 Check if tool bar goes to vbox or hbox depending on pos.
6714 (xg_update_tool_bar_sizes): New function.
6715 (update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
6716 height, call xg_update_tool_bar_sizes instead.
6717 (free_frame_tool_bar): Remove from hbox or vbox depending on
6718 toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
6719 (xg_change_toolbar_position): New function.
6720
6721 * frame.h (struct frame): Add tool_bar_position.
6722 (Qbottom): Declare.
6723
6724 * frame.c (Qtool_bar_position): New variable.
6725 (make_frame): Set tool_bar_position to Qtop.
6726 (frame_parms): Add tool-bar-position.
6727 (x_report_frame_params): Store tool_bar_position.
6728 (x_set_fringe_width): Reset wm size hint after fringe changes.
6729
6730 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6731
6732 Make lisp_time_argument declaration work on all systems.
6733 * lisp.h (lisp_time_argument): Move declaration ...
6734 * systime.h (lisp_time_argument): ... here
6735 * editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
6736
6737 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
6738
6739 * vm-limit.c (POINTER): Add typedef for it.
6740 (start_of_data): Change return type from POINTER to char *.
6741
6742 * frame.h (Qtty_color_mode): Move declaration out of ifdef
6743 HAVE_WINDOW_SYSTEM.
6744
6745 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6746
6747 * vm-limit.c: Do not include sys/resource.h, mem-limits.h does it.
6748 Remove reference to __osf__, unused.
6749
6750 * mem-limits.h: Remove duplicated includes.
6751 (NULL): Remove definition, unused.
6752 (POINTER): Remove definition.
6753 (start_of_data): Use char* in prototype, as the function
6754 definition does.
6755
6756 Remove extern declarations from .c files, and them to .h files.
6757 * keyboard.h (Qhelp_echo, waiting_for_input)
6758 (input_available_clear_time, ignore_mouse_drag_p)
6759 (Vdouble_click_time, real_this_command, Vthis_original_command):
6760 * keymap.h (Qremap, Qmenu_item, Voverriding_local_map)
6761 (Voverriding_local_map_menu_flag):
6762 * lisp.h (Qinteractive_form, use_file_dialog)
6763 (Qcursor_in_echo_area, QCascent, QCmargin, QCrelief, Qcount)
6764 (Qextension_data, QCconversion, QCcolor_symbols, QCheuristic_mask)
6765 (QCindex, QCmatrix, QCcolor_adjustment, QCmask)
6766 (Qrisky_local_variable, map_char_table_for_charset, Vprint_level)
6767 (Qfunction, debug_on_next_call, Qfield)
6768 (Vinhibit_field_text_motion, Vuser_login_name, lisp_time_argument)
6769 (Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string)
6770 (Qfile_directory_p, Qinsert_file_contents)
6771 (Qcompletion_ignore_case, Qcompletion_ignore_case)
6772 (Vcompletion_regexp_list, Vhistory_length, completion_ignore_case)
6773 (history_delete_duplicates, minibuffer_auto_raise, Qonly)
6774 (Qfile_name_handler_alist, Qfront_sticky, Qrear_nonsticky)
6775 (Qminibuffer_prompt)
6776 (Vtemporary_file_directory,char_ins_del_vector, Qface):
6777 * xterm.h (gray_bitmap_width, gray_bitmap_height)
6778 (gray_bitmap_bits, xic_create_fontsetname):
6779 * coding.h (Vtranslation_table_for_input): Add extern declarations.
6780
6781 * xsmfns.c (Vuser_login_name):
6782 * xrdb.c (Vdouble_click_time):
6783 * xfaces.c (xic_create_fontsetname):
6784 * w32select.c (waiting_for_input):
6785 * print.c (minibuffer_auto_raise):
6786 * msdos.c (Qhelp_echo):
6787 * macros.c (real_this_command):
6788 * keymap.c (Voverriding_local_map):
6789 * xterm.c (poll_for_input_1, gray_bitmap_width)
6790 (gray_bitmap_height, gray_bitmap_bits;
6791 * xmenu.c ( Voverriding_local_map)
6792 (Voverriding_local_map_menu_flag; Qmenu_item; use_dialog_box)
6793 (use_file_dialog, Xt_app_con):
6794 * xdisp.c (minibuffer_auto_raise, Voverriding_local_map)
6795 (Voverriding_local_map_menu_flag, Qmenu_item, Qface, Qinvisible)
6796 (Qwidth, Qinvisible, Qwindow, Qpriority, Qtool_bar_lines)
6797 (Qtool_bar_lines, ignore_mouse_drag_p):
6798 * minibuf.c (Voverriding_local_map, Qfield, Qfront_sticky)
6799 (Qrear_nonsticky, nconc2):
6800 * keyboard.c (current_global_map, minibuf_level, Qmenu_item)
6801 (Vhistory_length, Vtranslation_table_for_input, Qcomposition)
6802 (Qdisplay, Qafter_string, Qbefore_string, Qundefined):
6803 * fileio.c (use_dialog_box, use_file_dialog, Vuser_login_name)
6804 (minibuf_level, minibuffer_auto_raise, lisp_time_argument):
6805 * eval.c (Qinteractive_form, Qrisky_local_variable, Qfunction)
6806 (gc_in_progress):
6807 * doc.c (Voverriding_local_map, Qremap):
6808 * dired.c (completion_ignore_case, Qcompletion_ignore_case)
6809 (Vcompletion_regexp_list):
6810 * coding.c (Qmac, Qinsert_file_contents, Qwrite_region)
6811 (Qcompletion_ignore_case):
6812 * callint.c (Qcursor_in_echo_area, Qfile_directory_p, Qonly)
6813 (Vhistory_length, Vthis_original_command, real_this_command)
6814 (Qface, Qminibuffer_prompt, history_delete_duplicates):
6815 * image.c (Qrisky_local_variable):
6816 * fontset.c (QCname):
6817 * fns.c (minibuffer_auto_raise, QCname):
6818 * dispnew.c (char_ins_del_cost):
6819 * composite.c (font_fill_lglyph_metrics):
6820 * cmds.c (Qface, Vtranslation_table_for_input):
6821 * charset.c (map_char_table_for_charset, Qfile_name_handler_alist):
6822 * ccl.c (charset_unicode):
6823 * callproc.c (Vtemporary_file_directory):
6824 * buffer.c (emacs_strerror): Remove extern declarations.
6825
6826 * data.c (Qwindow): Make non-static, used from other files too.
6827 * frame.c (validate_x_resource_name): Remove shadow definition for i.
6828
6829 * unexec.c (make_hdr): Remove references to NO_REMAP, COFF,
6830 SEGMENT_MASK, SECTION_ALIGNMENT, ADJUST_EXEC_HEADER.
6831 * s/usg5-4.h (COFF):
6832 * s/template.h:
6833 * s/msdos.h (COFF, NO_REMAP):
6834 * s/ms-w32.h (NO_REMAP):
6835 * s/hpux10-20.h (NO_REMAP):
6836 * m/sparc.h (SEGMENT_MASK):
6837 * m/m68k.h (NO_REMAP):
6838 * m/intel386.h (SEGMENT_MASK):
6839 * m/arm.h (NO_REMAP):
6840 * m/alpha.h (COFF):
6841 * m/template.h: Remove references to unused defines.
6842
6843 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
6844
6845 * xsettings.c (Ftool_bar_get_system_style): Also check for
6846 Qtext_image_horiz.
6847
6848 * xdisp.c (Qtext_image_horiz): Define.
6849 (syms_of_xdisp): Initialize Qtext_image_horiz. Add text-image-horiz
6850 to documentation of tool-bar-style.
6851
6852 * lisp.h (Qtext_image_horiz): Declare.
6853
6854 * gtkutil.c (xg_make_tool_item, xg_show_toolbar_item): Handle tool bar
6855 style text_image_horiz.
6856
6857 2010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
6858
6859 * emacs.c (Fkill_emacs): Remove return statement.
6860
6861 * term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
6862 (encode_terminal_code, produce_composite_glyph): Remove unused variables.
6863 (set_tty_color_mode, term_mouse_highlight, term_get_fkeys):
6864 Remove local extern declarations.
6865
6866 * xmenu.c: Do not included lwlib.h, not needed.
6867
6868 * m/iris4d.h (XUINT, XSET): Remove, not needed.
6869
6870 * process.c: Move definitions earlier to minimize #ifdefs.
6871
6872 * xterm.h (x_get_customization_string, x_load_resources)
6873 (x_get_resource, x_text_icon, x_text_icon, x_check_errors)
6874 (x_check_errors, x_property_data_to_lisp, defined_color)
6875 (xic_set_xfontset, x_defined_color): Use const.
6876
6877 * xterm.c (xlwmenu_window_p, xlwmenu_redisplay): Remove declarations.
6878 (x_text_icon, x_check_errors, x_connection_closed): Use const.
6879
6880 * xselect.c (selection_data_to_lisp_data)
6881 (x_property_data_to_lisp):
6882 * xrdb.c (x_get_string_resource, file_p)
6883 (x_get_customization_string, magic_file_p, search_magic_path)
6884 (get_system_app, get_user_app, x_load_resources, x_get_resource)
6885 (x_get_string_resource): Use const.
6886
6887 * xfns.c: Include xlwmenu.h when USE_LUCID.
6888 (x_defined_color, xic_set_xfontset): Use const.
6889 (Fx_hide_tip): Remove local extern declaration.
6890
6891 * xfaces.c (Qmouse_face): Remove declaration.
6892 (face_color_gray_p, tty_defined_color, defined_color)
6893 (face_color_gray_p, face_color_supported_p): Add const.
6894
6895 * xdisp.c (do_mouse_tracking): Remove declaration.
6896 (add_to_log): Use const.
6897
6898 * minibuf.c (Qmouse_face): Remove declaration.
6899
6900 * msdos.c (IT_note_mouse_highlight): Remove local extern declaration.
6901
6902 * keyboard.h (do_mouse_tracking): Add declaration.
6903
6904 * image.c (QCwidth, QCheight, QCforeground, QCbackground, QCfile)
6905 (QCdata, QCtype, Qcenter): Remove declarations.
6906
6907 * frame.c (x_get_resource_string, x_get_string_resource)
6908 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
6909 (x_default_parameter): Use const.
6910
6911 * font.c (Qnormal, QCtype, QCfamily, QCweight, QCslant, QCwidth)
6912 (QCheight, QCsize, QCname): Remove declarations.
6913
6914 * emacs.c (main): Remove local extern declaration.
6915
6916 * editfns.c (region_limit, syms_of_editfns): Remove local extern
6917 declarations.
6918
6919 * dispnew.c: Remove duplicate #include <unistd.h>.
6920 (update_window, update_frame_1, init_display): Remove local extern
6921 declarations.
6922
6923 * dispextern.h (add_to_log): Remove declaration.
6924 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
6925 (x_frame_get_and_record_arg, x_default_parameter): Add const.
6926
6927 * dired.c (scmp): Add const.
6928 (directory_files_internal): Remove local extern declaration.
6929
6930 * data.c (Finteractive_form): Use const.
6931
6932 * composite.c (syms_of_composite): Remove local extern declarations.
6933
6934 * charset.c (add_to_log): Remove declaration.
6935
6936 * character.c (strwidth, parse_str_to_multibyte): Add const.
6937
6938 * character.h (strwidth, parse_str_to_multibyte): Likewise.
6939
6940 * buffer.c (Fset_buffer_multibyte): Remove local extern declaration.
6941
6942 * lisp.h (Fkill_emacs): Mark as NO_RETURN.
6943 (Lisp_Subr): Make doc and intspec constant.
6944 (QCsize, Qspace, Qcenter, QCalign_to, QCdata, QCfile, QCtype)
6945 (Qlocal, Qapply, Qnormal, QCfamily, QCweight, QCslant, QCwidth)
6946 (QCheight, QCsize, QCname, QCwidth, QCforeground)
6947 (QCbackground, add_to_log, stack_base, Vmark_even_if_inactive)
6948 (display_arg): Add declarations.
6949
6950 2010-07-27 Christoph Scholtes <cschol2112@gmail.com>
6951
6952 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
6953
6954 * window.c (Fwindow_height): Doc fix (bug#6518).
6955
6956 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
6957
6958 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
6959
6960 2010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
6961
6962 * keyboard.c (Ftop_level, Fexit_recursive_edit)
6963 (Fabort_recursive_edit): Remove return statements in NO_RETURN
6964 functions.
6965
6966 * frame.h (Qtty_color_mode): Add declaration.
6967
6968 * lisp.h (Ftop_level, Fexit_recursive_edit)
6969 (Fabort_recursive_edit): Mark as NO_RETURN.
6970
6971 2010-07-26 Kenichi Handa <handa@m17n.org>
6972
6973 * font.c (Ffont_shape_gstring): Terminate GSTRING by nil if the
6974 number of glyphs gets smaller than the original length. (Bug#6621)
6975
6976 2010-07-26 Juanma Barranquero <lekktu@gmail.com>
6977
6978 * lread.c (unreadpure, mapatoms_1): Make static.
6979
6980 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
6981
6982 * terminfo.c (tparam): Fix prototype of tparm.
6983
6984 2010-07-25 Andreas Schwab <schwab@linux-m68k.org>
6985
6986 * emacs.c (main) [PROFILING]: Use __executable_start if defined to
6987 find start of text segment.
6988 * dispnew.c (safe_bcopy): Don't define if HAVE___EXECUTABLE_START
6989 is defined.
6990
6991 * callproc.c (set_initial_environment): Avoid unbalanced braces.
6992
6993 2010-07-25 Ken Brown <kbrown@cornell.edu>
6994
6995 * vm-limit.c (check_memory_limits): Fix previous change;
6996 accidentally reverted an earlier change.
6997
6998 2010-07-25 Ken Brown <kbrown@cornell.edu>
6999
7000 * mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
7001 * vm-limit.c: ...add 'defined (CYGWIN)' here (Bug#6715).
7002
7003 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
7004
7005 * callproc.c (relocate_fd): Set inside #ifndef WINDOWSNT.
7006 * dired.c (opendir, readdir): Fix prototypes.
7007 * editfns.c (w32_get_internal_run_time): Fix prototypes.
7008 * keyboard.c (input_available_signal): Declare inside #ifdef SIGIO.
7009 * ndir.h (opendir, readdir, seekdir, closedir): Fix prototypes.
7010 (telldir): Remove declaration.
7011 * ralloc.c (real_morecore, __morecore): Fix prototypes.
7012 * sound.c (alsa_sound_perror): Declare inside #ifdef HAVE_ALSA.
7013 * syssignal.h (strsignal): Fix prototype.
7014 * term.c (tparam): Fix prototype.
7015 (term_get_fkeys_address, term_get_fkeys_kboard, term_get_fkeys_1)
7016 (term_get_fkeys): Set inside "#ifndef DOS_NT".
7017 * vm-limit.c (check_memory_limits): Fix prototypes of real_morecore
7018 and __morecore.
7019 * w32gui.h (XParseGeometry): Fix prototype.
7020 * w32heap.h (get_data_start, get_data_end, init_heap): Fix prototypes.
7021 * w32term.c (my_set_focus): Declare inside #if 0.
7022 * w32term.h (x_window_to_frame, x_display_info_for_name, w32_term_init)
7023 (w32_fill_rect, w32_clear_window, init_crit, delete_crit, signal_quit)
7024 (drain_message_queue, get_next_msg, post_msg, parse_button)
7025 (ClipboardSequence_Proc): Fix prototypes.
7026 (wait_for_sync): Remove declaration.
7027
7028 2010-07-24 Juanma Barranquero <lekktu@gmail.com>
7029
7030 * w32fns.c (w32_to_x_color): Remove, unused.
7031
7032 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
7033
7034 * lisp.h: Remove leftover P_.
7035
7036 2010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
7037
7038 * ecrt0.c, unexalpha.c: Remove files, unused.
7039
7040 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
7041
7042 * cmds.c (internal_self_insert): Make static.
7043 * lisp.h (internal_self_insert): Remove declaration.
7044
7045 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
7046
7047 * alloc.c (free_float):
7048 * font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse):
7049 * frame.c (delete_frame_handler):
7050 * ralloc.c (reorder_bloc):
7051 * w32menu.c (menubar_id_to_frame, add_left_right_boundary):
7052 Remove unused static functions.
7053
7054 * menu.c (cleanup_popup_menu): Set inside "#ifdef HAVE_NS";
7055 it is called only from NS code.
7056
7057 * w32term.c (my_set_focus): #ifdef away; it is called only from
7058 "#ifdef 0" code.
7059
7060 * w32fns.c (x_edge_detection):
7061 * xfaces.c (may_use_scalable_font_p):
7062 Remove obsolete static declarations.
7063
7064 2010-07-20 Juanma Barranquero <lekktu@gmail.com>
7065
7066 * alloc.c (emacs_blocked_free, emacs_blocked_malloc)
7067 (emacs_blocked_realloc, uninterrupt_malloc):
7068 * fringe.c (w32_reset_fringes):
7069 * image.c (convert_mono_to_color_image, lookup_rgb_color)
7070 (init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
7071 * sound.c (be2hs, do_play_sound):
7072 * vm-limit.c (get_lim_data, ret_lim_data):
7073 * w32term.c (x_free_frame_resources):
7074 * xfaces.c (x_create_gc, x_free_gc):
7075 Convert definitions to standard C.
7076
7077 2010-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
7078
7079 * eval.c (Feval, Ffuncall): Use the new names.
7080
7081 * lisp.h (struct Lisp_Subr): Rename `am' to aMANY and add aUNEVALLED.
7082 (DEFUN): Add braces around the union initialisation and use ## to
7083 specify the right union alternative and avoid a cast.
7084
7085 2010-07-18 Juanma Barranquero <lekktu@gmail.com>
7086
7087 * makefile.w32-in ($(BLD)/keyboard.$(O)): Update dependencies.
7088
7089 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
7090
7091 * frame.c (make_initial_frame): Use set_menu_bar_lines (Bug#6660).
7092
7093 2010-07-17 Jan Djärv <jan.h.d@swipnet.se>
7094
7095 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
7096 is related to the menu bar (Bug#6499).
7097 (xg_frame_resized): GTK_IS_MAPPED => gtk_widget_get_mapped, for Gtk 3.0.
7098
7099 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
7100
7101 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
7102
7103 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
7104
7105 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
7106 i.e. don't put back ButtonRelease (Bug#6608).
7107
7108 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
7109 instead of Window. Call xg_event_is_for_menubar when
7110 USE_GTK (Bug#6499).
7111
7112 * gtkutil.h (xg_event_is_for_menubar): Declare.
7113
7114 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
7115
7116 2010-07-16 Eli Zaretskii <eliz@gnu.org>
7117
7118 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
7119 when it's the same as the old foreground. (Bug#6609)
7120
7121 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
7122
7123 * xmenu.c (free_frame_menubar): Only call x_set_window_size if
7124 widget is non-null (Bug#6645).
7125
7126 2010-07-15 Andreas Schwab <schwab@linux-m68k.org>
7127
7128 * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font):
7129 Convert old-style definition.
7130
7131 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
7132 timestamp argument.
7133
7134 2010-07-15 Eli Zaretskii <eliz@gnu.org>
7135
7136 * fringe.c (update_window_fringes): Restore mistakenly reverted
7137 code from 2010-04-17T12:33:05Z!eliz@gnu.org merged in 2010-04-20T13:31:28Z!eliz@gnu.org.
7138
7139 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
7140
7141 * xterm.c (xm_scroll_callback, x_process_timeouts): K&R => prototype.
7142 (SET_SAVED_KEY_EVENT): Remove (not used).
7143 (SET_SAVED_MENU_EVENT): Rename to SET_SAVED_BUTTON_EVENT and
7144 remove size parameter.
7145 (handle_one_xevent): Check popup_activated () for menu for Xt also.
7146 Remove #ifdef USE_GTK around finish = X_EVENT_DROP.
7147 Remove #ifdef USE_MOTIF code that did SET_SAVED_BUTTON_EVENT for
7148 ButtonRelease.
7149 (x_set_window_size_1): scroll_bar_actual_width is always
7150 SCROLL_BAR_COLS * COLUMN_WIDTH for the purpose of frame sizing.
7151
7152 * xdisp.c (pending_menu_activation): Remove extern declaration.
7153 (prepare_menu_bars): Remove setting of pending_menu_activation.
7154
7155 * xmenu.c (pending_menu_activation): Remove.
7156 (x_activate_menubar): Set popup_activated_flag for Xt also.
7157 Remove setting of pending_menu_activation.
7158 (set_frame_menubar): Remove check of pending_menu_activation.
7159 Declare menubar_size before code. Correct spelling in comment.
7160
7161 2010-07-14 Kenichi Handa <handa@m17n.org>
7162
7163 * font.c (font_open_entity): Cancel previous change.
7164 (Ffont_get): Don't check FONT_ENTITY_INDEX of a font-object.
7165
7166 2010-07-13 Eli Zaretskii <eliz@gnu.org>
7167
7168 Remove subprocesses #ifdefs.
7169 * process.c <inhibit_sentinels>: Move to the common part.
7170 (Fwaiting_for_user_input_p): Move to the common part; return nil
7171 if async subprocesses aren't supported.
7172 * sysdep.c (wait_for_termination) [!MSDOS]: Don't compile on
7173 MS-DOS. Remove "#ifdef subprocesses".
7174 (sys_subshell, sys_select): Remove "#ifdef subprocesses".
7175 (gettimeofday): Remove "#ifdef subprocesses".
7176 (wait_without_blocking): Remove function.
7177 (flush_pending_output, child_setup_tty): Don't compile on MS-DOS.
7178 Remove "#ifdef subprocesses".
7179 (child_setup_tty): Use WINDOWSNT instead of DOS_NT, since not
7180 compiled on MS-DOS.
7181 * callproc.c (Fcall_process) [!MSDOS]: Don't call
7182 wait_for_termination on MS-DOS.
7183 * emacs.c (shut_down_emacs): Remove "#ifndef subprocesses" from
7184 initialization of inhibit_sentinels.
7185 * keyboard.c (record_asynch_buffer_change): Remove "#ifdef
7186 subprocesses" conditional.
7187 * callproc.c (Fcall_process) [!subprocesses]: Don't call
7188 wait_for_termination, since `buffer' cannot be an integer when
7189 async subprocesses are not supported
7190 * xdisp.c (decode_mode_spec): Use `MSDOS' instead of `subprocesses'
7191 for ifdefing away the call to Fprocess_status.
7192
7193 * process.c (add_keyboard_wait_descriptor) [!subprocesses]: Ifdef
7194 away the entire body of the function.
7195
7196 2010-07-13 Dan Nicolaescu <dann@ics.uci.edu>
7197
7198 Remove subprocesses #ifdefs from term.c.
7199 * process.c (add_keyboard_wait_descriptor)
7200 (delete_keyboard_wait_descriptor): Move to common section, do
7201 nothing when subprocesses is not defined.
7202 * term.c (Fsuspend_tty, Fresume_tty, init_tty):
7203 Remove subprocesses #ifdefs.
7204
7205 Convert maybe_fatal to standard C.
7206 * lisp.h (verror): Declare.
7207 * eval.c (verror): New function containing the code from ...
7208 (error): ... this. Call verror.
7209 * term.c (vfatal): New function containing the code from ...
7210 (fatal): ... this. Call vfatal.
7211 (maybe_fatal): Convert to standard C, use variable number of
7212 arguments. Declare as non-return.
7213 (init_tty): Fix maybe_fatal call.
7214
7215 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
7216
7217 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose)
7218 (_scroll_bar_note_movement): Convert definitions to standard C.
7219 * xmenu.c (menu_help_callback, pop_down_menu, xmenu_show):
7220 * xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
7221
7222 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
7223
7224 * xterm.c (x_frame_of_widget, x_alloc_nearest_color_for_widget)
7225 (x_alloc_lighter_color_for_widget, cvt_string_to_pixel)
7226 (cvt_pixel_dtor, x_window_to_menu_bar, xt_action_hook)
7227 (xaw_jump_callback, xaw_scroll_callback)
7228 (x_create_toolkit_scroll_bar, x_set_toolkit_scroll_bar_thumb)
7229 (x_wm_set_size_hint, x_activate_timeout_atimer):
7230 Convert definitions to standard C.
7231 * xmenu.c (menubar_id_to_frame, popup_get_selection)
7232 (popup_activate_callback, popup_deactivate_callback)
7233 (menu_highlight_callback, menubar_selection_callback)
7234 (apply_systemfont_to_dialog, apply_systemfont_to_menu)
7235 (free_frame_menubar, popup_selection_callback, as)
7236 (create_and_show_popup_menu, dialog_selection_callback)
7237 (create_and_show_dialog):
7238 * xfns.c (hack_wm_protocols, x_window):
7239 * xfaces.c (x_update_menu_appearance):
7240 * widget.c (get_default_char_pixel_size, pixel_to_char_size)
7241 (char_to_pixel_size, round_size_to_char, get_wm_shell)
7242 (set_frame_size, update_wm_hints, setup_frame_gcs)
7243 (update_various_frame_slots, update_from_various_frame_slots)
7244 (EmacsFrameInitialize, EmacsFrameRealize, EmacsFrameResize)
7245 (EmacsFrameSetValues, EmacsFrameQueryGeometry)
7246 (EmacsFrameSetCharSize, widget_store_internal_border): Likewise.
7247
7248 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
7249
7250 * dbusbind.c (xd_initialize): Don't compare boolean with a constant.
7251
7252 2010-07-12 Eli Zaretskii <eliz@gnu.org>
7253
7254 * process.c (setup_process_coding_systems): Move to the part
7255 shared by non-subprocesses systems, and make its body empty when
7256 subprocesses is not defined.
7257 (close_process_descs): Move to the part shared by non-subprocesses
7258 systems.
7259 (wait_reading_process_output) [!subprocesses]: Convert arg list to
7260 ANSI C.
7261
7262 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
7263
7264 * editfns.c (transpose_markers): Convert old-style definition.
7265 * emacs.c (abort, shut_down_emacs, fixup_locale)
7266 (synchronize_system_time_locale)
7267 (synchronize_system_messages_locale, syms_of_emacs): Likewise.
7268 * floatfns.c (extract_float, matherr, init_floatfns)
7269 (syms_of_floatfns): Likewise.
7270 * fns.c (make_hash_table): Likewise.
7271 * ftfont.c (ftfont_get_otf, ftfont_otf_features)
7272 (ftfont_otf_capability, ftfont_get_glyph_id, ftfont_get_metrics)
7273 (ftfont_drive_otf, ftfont_shape_by_flt, ftfont_shape)
7274 (ftfont_variation_glyphs): Likewise.
7275 * gtkutil.c (xg_create_widget, xg_modify_menubar_widgets): Likewise.
7276 * keymap.c (describe_map_tree, describe_map, describe_vector): Likewise.
7277 * lread.c (read_filtered_event): Likewise.
7278 * minibuf.c (read_minibuf_noninteractive, read_minibuf): Likewise.
7279 * process.c (wait_reading_process_output): Likewise.
7280 * scroll.c (do_line_insertion_deletion_costs): Likewise.
7281 * search.c (search_buffer, boyer_moore): Likewise.
7282 * syntax.c (scan_sexps_forward): Likewise.
7283 * xdisp.c (try_scrolling): Likewise.
7284 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
7285 (face_at_string_position): Likewise.
7286 * xfns.c (x_default_scroll_bar_color_parameter): Likewise.
7287 * xselect.c (x_get_window_property, receive_incremental_selection)
7288 (x_get_window_property_as_lisp_data, lisp_data_to_selection_data):
7289 Likewise.
7290 * xterm.c (x_draw_relief_rect, x_draw_box_rect): Likewise.
7291
7292 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
7293
7294 * callproc.c (child_setup): Remove subprocesses conditional.
7295 Remove code dealing with SET_EMACS_PRIORITY, unused.
7296
7297 * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
7298 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
7299
7300 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
7301 (__do_global_dtors, __main): Use void in definition.
7302 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
7303 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
7304 the only users from ...
7305 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
7306 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
7307 (HAVE_VOLATILE): Remove, unused.
7308
7309 Convert more function definitions to standard C.
7310 * xdisp.c (window_box_edges, handle_single_display_spec)
7311 (display_string): Convert definition to standard C.
7312 * scroll.c (do_direct_scrolling, scrolling_1):
7313 * dispnew.c (allocate_matrices_for_frame_redisplay)
7314 (mirrored_line_dance):
7315 * coding.c (code_convert_string):
7316 * charset.c (map_charset_chars):
7317 * ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
7318 (Fregister_ccl_program, Fregister_code_conversion_map):
7319 * keyboard.c (kbd_buffer_nr_stored): Likewise.
7320 (head_table): Make static and const.
7321
7322 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
7323
7324 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
7325 (PROFILING_LDFLAGS): Set from substitution.
7326 (ALL_CFLAGS): Add C_WARNINGS_SWITCH and PROFILING_CFLAGS, put
7327 CFLAGS last.
7328
7329 2010-07-12 Kenichi Handa <handa@m17n.org>
7330
7331 * Makefile.in (lisp): Change hebrew.el to hebrew.elc.
7332 (shortlisp): Likewise.
7333
7334 * font.h (enum font_property_index): New member FONT_ENTITY_INDEX.
7335
7336 * font.c (font_open_entity): Record ENTITY in FONT_OBJECT's slot
7337 of FONT_ENTITY_INDEX.
7338 (Ffont_get): If KEY is :otf and the font-object doesn't have the
7339 property, get the property value dynamically.
7340 (Ffont_put): Accept font-entity and font-object too.
7341 (Ffont_get_glyhphs): Rename from Fget_font_glyphs. Arguments and
7342 return value changed.
7343 (syms_of_font): Adjust for the above change.
7344
7345 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
7346
7347 * blockinput.h: Remove obsolete comment.
7348
7349 * lisp.h: Include <stddef.h>.
7350 (OFFSETOF): Don't define.
7351 (VECSIZE): Use offsetof instead of OFFSETOF.
7352 (PSEUDOVECSIZE): Likewise.
7353 * process.c (conv_sockaddr_to_lisp): Likewise.
7354 * alloc.c: Don't include <stddef.h>.
7355 * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof.
7356
7357 * process.c: Remove obsolete comment.
7358
7359 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
7360
7361 * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
7362
7363 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
7364
7365 * callint.c (Fcall_interactively): Use strchr, strrchr instead of
7366 index, rindex.
7367 * doc.c (get_doc_string, Fsnarf_documentation): Likewise.
7368 * editfns.c (Fuser_full_name, Fformat): Likewise.
7369 * emacs.c (argmatch, sort_args, decode_env_path): Likewise.
7370 * fileio.c (Ffile_symlink_p): Likewise.
7371 * filelock.c (current_lock_owner): Likewise.
7372 * font.c (font_parse_name, font_parse_family_registry): Likewise.
7373 * fontset.c (fontset_pattern_regexp): Likewise.
7374 * lread.c (read1): Likewise.
7375 * sysdep.c (init_system_name): Likewise.
7376 * xfns.c (select_visual): Likewise.
7377 * s/hpux10-20.h (index, rindex): Don't define.
7378 * s/ms-w32.h (index): Likewise.
7379 * s/usg5-4.h: Likewise.
7380
7381 * callproc.c (relocate_fd): Use F_DUPFD if defined.
7382
7383 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
7384 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
7385 (egetenv): Likewise.
7386 * doprnt.c (doprnt): Likewise.
7387 * editfns.c (set_time_zone_rule, format2): Likewise.
7388 * emacs.c (decode_env_path): Likewise.
7389 * eval.c (signal_error, error): Likewise.
7390 * insdel.c (replace_range_2): Likewise.
7391 * keyboard.c (cmd_error_internal): Likewise.
7392 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
7393 * print.c (write_string, write_string_1, print_error_message):
7394 Likewise.
7395 * vm-limit.c (warn_function, memory_warnings): Likewise.
7396 * xdisp.c (message1, message1_nolog, message_with_string)
7397 (vmessage, message, message_nolog): Likewise.
7398 * emacs.c: Remove duplicate declaration.
7399 * keyboard.h: Likewise.
7400 * lisp.h: Update prototypes.
7401
7402 * eval.c: Fix indentation problem.
7403
7404 * keyboard.c: Include "process.h".
7405
7406 * eval.c: Remove obsolete noinline declaration.
7407 * fns.c: Likewise.
7408
7409 2010-07-11 Ken Raeburn <raeburn@raeburn.org>
7410
7411 * doprnt.c (doprnt): Take a va_list argument instead of count and
7412 pointer.
7413 * eval.c (error): Change to a standard-C variadic function.
7414 * xdisp.c (vmessage): Rename from message, made static, and
7415 changed to take a va_list argument.
7416 (message): New variadic wrapper.
7417 (message_nolog): Now a variadic function, calling vmessage.
7418 * lisp.h: Include stdarg.h for va_list.
7419 (doprnt, error, message, message_nolog): Decls updated.
7420
7421 2010-07-11 Eli Zaretskii <eliz@gnu.org>
7422
7423 * process.c (syms_of_process) <delete-exited-processes>: Define
7424 even if !subprocesses.
7425 (delete_exited_processes): Ditto.
7426
7427 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
7428 (delete_exited_processes): Don't define.
7429
7430 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
7431
7432 * frame.c (make_frame): Initialize menu_bar_lines and
7433 tool_bar_lines members.
7434 (make_initial_frame, make_terminal_frame):
7435 Initialize menu_bar_lines using value of menu-bar-mode.
7436
7437 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
7438
7439 2010-07-10 Eli Zaretskii <eliz@gnu.org>
7440
7441 * process.c: Reshuffle #include's. Condition some of the global
7442 and static variables on `subprocesses'.
7443 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
7444 Leave only one implementation.
7445 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
7446 (kill_buffer_processes, Flist_system_processes)
7447 (Fprocess_attributes, init_process, syms_of_process): Unify the
7448 implementations for with subprocesses and without them.
7449
7450 2010-07-09 Jan Djärv <jan.h.d@swipnet.se>
7451
7452 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
7453 correct size for Motif.
7454 (free_frame_menubar): Call x_set_window_size to update frame size.
7455
7456 * xfns.c (x_window): Set borderWidth to 0 for pane and
7457 EmacsFrame. Frame size calculation is wrong otherwise.
7458
7459 2010-07-09 Michael Albinus <michael.albinus@gmx.de>
7460
7461 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
7462 allows to suppress errors when polling in Emacs' main loop.
7463 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
7464 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
7465 (Fdbus_method_error_internal, Fdbus_send_signal)
7466 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
7467 (Fdbus_register_method): Use it. (Bug#6579)
7468
7469 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
7470
7471 * alloc.c: Convert DEFUNs to standard C.
7472 * buffer.c:
7473 * bytecode.c:
7474 * callint.c:
7475 * callproc.c:
7476 * casefiddle.c:
7477 * casetab.c:
7478 * category.c:
7479 * character.c:
7480 * charset.c:
7481 * chartab.c:
7482 * cmds.c:
7483 * coding.c:
7484 * composite.c:
7485 * data.c:
7486 * dbusbind.c:
7487 * dired.c:
7488 * dispnew.c:
7489 * doc.c:
7490 * dosfns.c:
7491 * editfns.c:
7492 * emacs.c:
7493 * eval.c:
7494 * fileio.c:
7495 * filelock.c:
7496 * floatfns.c:
7497 * fns.c:
7498 * font.c:
7499 * fontset.c:
7500 * frame.c:
7501 * fringe.c:
7502 * image.c:
7503 * indent.c:
7504 * insdel.c:
7505 * keyboard.c:
7506 * keymap.c:
7507 * lread.c:
7508 * macros.c:
7509 * marker.c:
7510 * menu.c:
7511 * minibuf.c:
7512 * msdos.c:
7513 * nsfns.m:
7514 * nsmenu.m:
7515 * nsselect.m:
7516 * print.c:
7517 * process.c:
7518 * search.c:
7519 * sound.c:
7520 * syntax.c:
7521 * term.c:
7522 * terminal.c:
7523 * textprop.c:
7524 * undo.c:
7525 * w16select.c:
7526 * w32console.c:
7527 * w32fns.c:
7528 * w32font.c:
7529 * w32menu.c:
7530 * w32proc.c:
7531 * w32select.c:
7532 * window.c:
7533 * xdisp.c:
7534 * xfaces.c:
7535 * xfns.c:
7536 * xmenu.c:
7537 * xselect.c:
7538 * xsettings.c:
7539 * xsmfns.c: Likewise.
7540
7541 2010-07-08 Eli Zaretskii <eliz@gnu.org>
7542
7543 * process.c (kbd_is_on_hold, hold_keyboard_input)
7544 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
7545
7546 2010-07-08 Jan Djärv <jan.h.d@swipnet.se>
7547
7548 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
7549 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
7550 unless USE_LUCID.
7551
7552 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
7553
7554 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative
7555 declaration.
7556
7557 Clean up include guards.
7558 * tparam.c: Remove include guards for config.h, string.h and code
7559 that assumes #ifndef emacs.
7560 * termcap.c:
7561 * unexalpha.c:
7562 * sysdep.c:
7563 * filemode.c:
7564 * filelock.c:
7565 * bidi.c: Likewise.
7566
7567 Remove prefix-args.c
7568 * prefix-args.c: Remove file.
7569 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
7570 * Makefile.in (temacs${EXEEXT}): Remove references to
7571 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
7572 (mostlyclean): Remove reference to prefix-args.
7573 (prefix-args): Remove.
7574
7575 Simplify cstart_of_data, start_of_code and related code.
7576 * mem-limits.h: Remove !emacs and _LIBC conditional code.
7577 (start_of_data): Merge into start_of_data function.
7578 * sysdep.c (start_of_text): Remove. Move simplified versions of
7579 it in the only users: unexaix.c and unexec.c.
7580 (read_input_waiting): Remove local declaration of quit_char.
7581 (start, etext): Remove declarations.
7582 (start_of_data): Merge with the version in mem-limits.h and move
7583 to vm-limits.c.
7584 * vm-limit.c (start_of_data): Merged and simplified version of the
7585 code formerly in mem-limits.h and sysdep.c.
7586 * unexec.c (start): New declaration, moved from sysdep.c.
7587 (start_of_text): Simplified version of the code formerly in sysdep.c.
7588 * unexaix.c (start_of_text): Simplified version of the code
7589 formerly in sysdep.c.
7590 * m/alpha.h (HAVE_TEXT_START): Remove.
7591 (TEXT_START): Move ...
7592 * unexalpha.c (TEXT_START): ... here.
7593 * s/hpux10-20.h (TEXT_START): Remove.
7594 * s/darwin.h (TEXT_START):
7595 * m/mips.h (TEXT_START):
7596 * m/macppc.h (HAVE_TEXT_START):
7597 * m/m68k.h (TEXT_START):
7598 * m/iris4d.h (TEXT_START):
7599 * m/intel386.h (TEXT_START):
7600 * m/ibmrs6000.h (TEXT_START):
7601 * m/ia64.h (HAVE_TEXT_START):
7602 * s/msdos.h (TEXT_START): Likewise.
7603
7604 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
7605
7606 * alloc.c (overrun_check_malloc, overrun_check_realloc)
7607 (overrun_check_free, xstrdup, allocate_string)
7608 (allocate_string_data, compact_small_strings, Fmake_string)
7609 (make_unibyte_string, make_multibyte_string)
7610 (make_string_from_bytes, make_specified_string, make_float)
7611 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
7612 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
7613 memcpy, memmove, memset, memcmp.
7614 * atimer.c (start_atimer, set_alarm): Likewise.
7615 * buffer.c (clone_per_buffer_values, report_overlay_modification)
7616 (mmap_realloc, init_buffer_once): Likewise.
7617 * callint.c (Fcall_interactively): Likewise.
7618 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
7619 (getenv_internal_1): Likewise.
7620 * casefiddle.c (casify_object): Likewise.
7621 * ccl.c (ccl_driver): Likewise.
7622 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
7623 * charset.c (load_charset_map_from_file)
7624 (load_charset_map_from_file, load_charset_map_from_vector)
7625 (Fdefine_charset_internal): Likewise.
7626 * cm.c (Wcm_clear): Likewise.
7627 * coding.c (decode_eol, decode_coding_object)
7628 (Fset_coding_system_priority, make_subsidiaries): Likewise.
7629 * data.c (Faset): Likewise.
7630 * dired.c (directory_files_internal, file_name_completion_stat):
7631 Likewise.
7632 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
7633 (clear_glyph_row, copy_row_except_pointers)
7634 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
7635 (save_current_matrix, restore_current_matrix)
7636 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
7637 (mirror_line_dance, scrolling_window): Likewise.
7638 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
7639 Likewise.
7640 * doprnt.c (doprnt): Likewise.
7641 * editfns.c (Fuser_full_name, make_buffer_string_both)
7642 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
7643 * emacs.c (sort_args): Likewise.
7644 * eval.c (Fapply, Ffuncall): Likewise.
7645 * fileio.c (Ffile_name_directory, make_temp_name)
7646 (Fexpand_file_name, search_embedded_absfilename)
7647 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
7648 (auto_save_error): Likewise.
7649 * fns.c (Fstring_equal, Fcopy_sequence, concat)
7650 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
7651 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
7652 (Fmake_hash_table): Likewise.
7653 * fringe.c (Fdefine_fringe_bitmap): Likewise.
7654 * ftfont.c (ftfont_text_extents): Likewise.
7655 * getloadavg.c (getloadavg): Likewise.
7656 * image.c (define_image_type, make_image, make_image_cache)
7657 (x_create_x_image_and_pixmap, xbm_image_p)
7658 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
7659 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
7660 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
7661 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
7662 (tiff_image_p, tiff_read_from_memory, gif_image_p)
7663 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
7664 Likewise.
7665 * indent.c (scan_for_column, compute_motion): Likewise.
7666 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
7667 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
7668 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
7669 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
7670 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
7671 (store_user_signal_events, menu_bar_items, tool_bar_items)
7672 (process_tool_bar_item, append_tool_bar_item)
7673 (read_char_minibuf_menu_prompt, read_key_sequence)
7674 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
7675 Likewise.
7676 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
7677 Likewise.
7678 * lisp.h (STRING_COPYIN): Likewise.
7679 * lread.c (Fload, read1, oblookup): Likewise.
7680 * msdos.c (Frecent_doskeys): Likewise.
7681 * nsfns.m (Fx_create_frame): Likewise.
7682 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
7683 Likewise.
7684 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
7685 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
7686 Likewise.
7687 * nsmenu.m (ns_update_menubar): Likewise.
7688 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
7689 * print.c (print_unwind, printchar, strout, print_string)
7690 (print_error_message): Likewise.
7691 * process.c (conv_lisp_to_sockaddr, set_socket_option)
7692 (Fmake_network_process, Fnetwork_interface_list)
7693 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
7694 (init_process): Likewise.
7695 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
7696 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
7697 Likewise.
7698 * scroll.c (do_scrolling, do_direct_scrolling)
7699 (scrolling_max_lines_saved): Likewise.
7700 * search.c (search_buffer, wordify, Freplace_match): Likewise.
7701 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
7702 * syntax.c (skip_chars, skip_syntaxes): Likewise.
7703 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
7704 (emacs_set_tty): Likewise.
7705 * term.c (encode_terminal_code, calculate_costs)
7706 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
7707 Likewise.
7708 * termcap.c (tgetst1, gobble_line): Likewise.
7709 * termhooks.h (EVENT_INIT): Likewise.
7710 * tparam.c (tparam1): Likewise.
7711 * unexalpha.c (unexec): Likewise.
7712 * unexec.c (write_segment): Likewise.
7713 * unexmacosx.c (unexec_write_zero): Likewise.
7714 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
7715 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
7716 * w32font.c (w32font_list_family, w32font_text_extents)
7717 (w32font_list_internal, w32font_match_internal)
7718 (w32font_open_internal, compute_metrics, Fx_select_font):
7719 Likewise.
7720 * w32menu.c (set_frame_menubar, add_menu_item)
7721 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
7722 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
7723 * w32uniscribe.c (uniscribe_list_family): Likewise.
7724 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
7725 * window.c (make_window, replace_window, set_window_buffer)
7726 (Fsplit_window): Likewise.
7727 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
7728 (add_to_log, message3, x_consider_frame_title)
7729 (append_space_for_newline, extend_face_to_end_of_line)
7730 (decode_mode_spec_coding, init_glyph_string): Likewise.
7731 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
7732 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
7733 (face_attr_equal_p, make_realized_face, make_face_cache)
7734 (free_realized_faces, lookup_named_face, smaller_face)
7735 (face_with_height, lookup_derived_face)
7736 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
7737 (Finternal_set_font_selection_order, realize_default_face)
7738 (compute_char_face, face_at_buffer_position)
7739 (face_for_overlay_string, face_at_string_position, merge_faces):
7740 Likewise.
7741 * xfns.c (xic_create_fontsetname, Fx_create_frame)
7742 (Fx_window_property, x_create_tip_frame)
7743 (Fx_backspace_delete_keys_p): Likewise.
7744 * xfont.c (xfont_list, xfont_match, xfont_list_family)
7745 (xfont_text_extents): Likewise.
7746 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
7747 * xrdb.c (magic_file_p, x_get_resource): Likewise.
7748 * xselect.c (x_queue_event, x_get_window_property)
7749 (receive_incremental_selection): Likewise.
7750 * xsmfns.c (x_session_check_input): Likewise.
7751 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
7752 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
7753 Likewise.
7754 * character.h (BCOPY_SHORT): Removed.
7755 * config.in: Regenerate.
7756 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
7757 * emacs.c (main) [PROFILING]: Don't declare
7758 dump_opcode_frequencies.
7759 * lisp.h (safe_bcopy): Remove declaration.
7760 (memset) [!HAVE_MEMSET]: Declare.
7761 (memcpy) [!HAVE_MEMCPY]: Likewise.
7762 (memmove) [!HAVE_MEMMOVE]: Likewise.
7763 (memcmp) [!HAVE_MEMCMP]: Likewise.
7764 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
7765 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
7766 Don't define.
7767 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
7768 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
7769 (BCOPY_DOWNWARD_SAFE): Don't define.
7770 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
7771 (memcpy) [!HAVE_MEMCPY]: Define.
7772 (memmove) [!HAVE_MEMMOVE]: Define.
7773 (memcmp) [!HAVE_MEMCMP]: Define.
7774
7775 2010-07-07 Jan Djärv <jan.h.d@swipnet.se>
7776
7777 * process.c (kbd_is_on_hold): New variable.
7778 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
7779 New functions.
7780 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
7781 select on empty input mask.
7782 (init_process): Initialize kbd_is_on_hold to 0.
7783
7784 * process.h (hold_keyboard_input, unhold_keyboard_input)
7785 (kbd_on_hold_p): Declare.
7786
7787 * keyboard.c (input_available_signal): Declare.
7788 (kbd_buffer_nr_stored): New function.
7789 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
7790 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
7791 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
7792 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
7793 (tty_read_avail_input): If input is on hold, return.
7794 Don't read more that free slots in kbd_buffer (Bug#6571).
7795
7796 2010-07-07 Eli Zaretskii <eliz@gnu.org>
7797
7798 * msdos.h:
7799 * msdos.c:
7800 * dosfns.c:
7801 * w16select.c: Convert function definitions to ANSI C.
7802
7803 * msdos.h (ctrl_break_func, install_ctrl_break_check):
7804 Remove unused prototypes.
7805
7806 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
7807
7808 * coding.c, sysdep.c: Convert some more functions to standard C.
7809
7810 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
7811
7812 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
7813 (encode_coding_object): Use SPECPDL_INDEX.
7814 (syms_of_coding): Use DOS_NT.
7815
7816 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
7817
7818 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
7819
7820 Make the function member of Lisp_Subr use standard C prototypes.
7821 * lisp.h (struct Lisp_Subr): Use a union for the function member.
7822 (DECL_ALIGN): Add a cast for the function.
7823 * eval.c (Feval, Ffuncall): Use the proper type for each type
7824 function call.
7825
7826 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
7827
7828 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
7829 fringe face id, so face-remapping-alist works (Bug#6091).
7830
7831 2010-07-06 Juanma Barranquero <lekktu@gmail.com>
7832
7833 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
7834 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
7835 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
7836
7837 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
7838
7839 * xterm.c (x_get_keysym_name): Change type of parameter to int.
7840 * lisp.h: Declare x_get_keysym_name.
7841 * keyboard.c (modify_event_symbol): Don't declare
7842 x_get_keysym_name here.
7843
7844 2010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
7845
7846 * ecrt0.c: Revert conversion to standard C.
7847
7848 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
7849
7850 * vm-limit.c (memory_warnings):
7851 * keyboard.c (modify_event_symbol):
7852 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
7853 (round2, emacs_rint):
7854 * process.c (send_process, old_sigpipe): Convert function
7855 definitions and declarations to standard C.
7856
7857 2010-07-05 Juanma Barranquero <lekktu@gmail.com>
7858
7859 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
7860 * xdisp.c: Convert function definitions to standard C.
7861
7862 * cm.c (cmputc): Arg C is now int, not char.
7863 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
7864
7865 2010-07-05 James Cloos <cloos@jhcloos.com>
7866
7867 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
7868
7869 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
7870 _NET_WM_ICON_NAME atoms.
7871
7872 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
7873 and _NET_WM_ICON_NAME properties, too, matching what is
7874 done in the Gtk+ case.
7875
7876 2010-07-05 Jan Djärv <jan.h.d@swipnet.se>
7877
7878 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
7879
7880 * xsmfns.c (SSDATA): New macro.
7881 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
7882 passed to strlen/strcpy/strcat.
7883 (create_client_leader_window): Surround with #ifndef USE_GTK.
7884 Cast 7:th arg to XChangeProperty to (unsigned char *).
7885
7886 * xsettings.c (something_changedCB, parse_settings)
7887 (apply_xft_settings): Reformat prototype.
7888 (something_changedCB, init_gconf): Remove unused variable i.
7889 (read_settings): Remove unused variable long_len.
7890
7891 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
7892 (xg_get_image_for_pixmap, create_dialog)
7893 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
7894 (menuitem_highlight_callback, make_menu_item)
7895 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
7896 (xg_create_scroll_bar, xg_update_scrollbar_pos)
7897 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
7898 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
7899 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
7900 (xg_tool_bar_item_expose_callback): Reformat prototype.
7901 (xg_update_menubar): GList *group => GSList *group.
7902 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
7903 before use.
7904 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
7905 to GTK_IMAGE (wimage).
7906
7907 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
7908
7909 * atimer.c: Use "" instead of <> for local includes for
7910 consistency with the rest of the code.
7911
7912 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
7913 * xrdb.c (get_system_name):
7914 * window.c (shrink_windows):
7915 * syntax.c (forw_comment):
7916 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
7917 (ins_del_costs):
7918 * mem-limits.h (start_of_data):
7919 * lread.c (readevalloop):
7920 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
7921 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
7922 * frame.c (x_get_focus_frame):
7923 * floatfns.c (fmod_float):
7924 * fileio.c (choose_write_coding_system):
7925 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
7926 (malloc_initialize_hook, sort_args, synchronize_locale):
7927 * doprnt.c (doprnt):
7928 * dired.c (compile_pattern):
7929 * data.c (fmod_float):
7930 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
7931 (map_char_table_for_charset):
7932 * charset.c (define_charset_internal):
7933 * alloc.c (Fgarbage_collect): Convert declarations or definitions
7934 to standard C.
7935
7936 2010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
7937 Stefan Monnier <monnier@iro.umontreal.ca>
7938
7939 * lread.c (read1): Fix up last change to not mess up `c'.
7940
7941 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7942
7943 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
7944
7945 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7946
7947 Fix prototypes.
7948
7949 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
7950 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
7951 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
7952 arg, as required by internal_condition_case_1.
7953 * print.c (strout): Use const char* for arg PTR.
7954 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
7955 (analyse_first): Fix "const const".
7956 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
7957 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
7958 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
7959
7960 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
7961
7962 * alloc.c: Convert function definitions to standard C.
7963 * atimer.c:
7964 * bidi.c:
7965 * bytecode.c:
7966 * callint.c:
7967 * callproc.c:
7968 * casefiddle.c:
7969 * casetab.c:
7970 * category.c:
7971 * ccl.c:
7972 * character.c:
7973 * charset.c:
7974 * chartab.c:
7975 * cmds.c:
7976 * coding.c:
7977 * composite.c:
7978 * data.c:
7979 * dbusbind.c:
7980 * dired.c:
7981 * dispnew.c:
7982 * doc.c:
7983 * doprnt.c:
7984 * ecrt0.c:
7985 * editfns.c:
7986 * fileio.c:
7987 * filelock.c:
7988 * filemode.c:
7989 * fns.c:
7990 * font.c:
7991 * fontset.c:
7992 * frame.c:
7993 * fringe.c:
7994 * ftfont.c:
7995 * ftxfont.c:
7996 * gtkutil.c:
7997 * indent.c:
7998 * insdel.c:
7999 * intervals.c:
8000 * keymap.c:
8001 * lread.c:
8002 * macros.c:
8003 * marker.c:
8004 * md5.c:
8005 * menu.c:
8006 * minibuf.c:
8007 * prefix-args.c:
8008 * print.c:
8009 * ralloc.c:
8010 * regex.c:
8011 * region-cache.c:
8012 * scroll.c:
8013 * search.c:
8014 * sound.c:
8015 * strftime.c:
8016 * syntax.c:
8017 * sysdep.c:
8018 * termcap.c:
8019 * terminal.c:
8020 * terminfo.c:
8021 * textprop.c:
8022 * tparam.c:
8023 * undo.c:
8024 * unexelf.c:
8025 * window.c:
8026 * xfaces.c:
8027 * xfns.c:
8028 * xfont.c:
8029 * xftfont.c:
8030 * xgselect.c:
8031 * xmenu.c:
8032 * xrdb.c:
8033 * xselect.c:
8034 * xsettings.c:
8035 * xsmfns.c:
8036 * xterm.c: Likewise.
8037
8038 2010-07-03 Eli Zaretskii <eliz@gnu.org>
8039
8040 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
8041 frames other than the initial one. Fix reversal of colors when
8042 `reverse' is specified in the frame parameters.
8043 Call update_face_from_frame_parameter instead of
8044 internal-set-lisp-face-attribute. Initialize screen colors from
8045 initial_screen_colors[] when f->default_face_done_p is zero,
8046 instead of depending on being called with default-frame-alist as
8047 the alist argument.
8048
8049 * xfaces.c (update_face_from_frame_parameter): Move out of
8050 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
8051 with HAVE_WINDOW_SYSTEM.
8052
8053 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
8054 to menu-bar-mode, if not set in the frame parameters or in
8055 default-frame-alist.
8056
8057 * w32console.c (sys_tputs): Adjust argument list to prototype in
8058 term.c.
8059
8060 2010-07-03 Juanma Barranquero <lekktu@gmail.com>
8061
8062 * lisp.h (memory_warnings): Fix prototype.
8063
8064 * cm.h (evalcost): Fix prototype.
8065
8066 * cm.c (evalcost): Fix arg type.
8067
8068 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
8069
8070 * term.c (term_clear_mouse_face, Fidentity):
8071 * syssignal.h (signal_handler_t):
8072 * lisp.h (memory_warnings):
8073 * coding.h (preferred_coding_system):
8074 * cm.h (evalcost):
8075 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
8076
8077 2010-07-02 Eli Zaretskii <eliz@gnu.org>
8078
8079 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
8080 from prototypes.
8081
8082 * msdos.h (load_pixmap): Don't define away.
8083
8084 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
8085
8086 * lisp.h:
8087 * atimer.h: Remove define for P_.
8088
8089 * alloc.c: Remove __P and P_ from .c and .m files.
8090 * atimer.c:
8091 * buffer.c:
8092 * callint.c:
8093 * category.c:
8094 * charset.c:
8095 * chartab.c:
8096 * cm.c:
8097 * coding.c:
8098 * composite.c:
8099 * data.c:
8100 * dired.c:
8101 * dispnew.c:
8102 * doc.c:
8103 * editfns.c:
8104 * emacs.c:
8105 * eval.c:
8106 * fileio.c:
8107 * filelock.c:
8108 * fns.c:
8109 * font.c:
8110 * fontset.c:
8111 * frame.c:
8112 * ftfont.c:
8113 * ftxfont.c:
8114 * gmalloc.c:
8115 * gtkutil.c:
8116 * image.c:
8117 * indent.c:
8118 * intervals.c:
8119 * keyboard.c:
8120 * keymap.c:
8121 * lread.c:
8122 * marker.c:
8123 * menu.c:
8124 * minibuf.c:
8125 * print.c:
8126 * process.c:
8127 * scroll.c:
8128 * search.c:
8129 * sound.c:
8130 * strftime.c:
8131 * syntax.c:
8132 * sysdep.c:
8133 * term.c:
8134 * terminal.c:
8135 * textprop.c:
8136 * unexalpha.c:
8137 * w32console.c:
8138 * w32fns.c:
8139 * w32font.c:
8140 * w32menu.c:
8141 * w32term.c:
8142 * w32uniscribe.c:
8143 * window.c:
8144 * xdisp.c:
8145 * xfaces.c:
8146 * xfns.c:
8147 * xfont.c:
8148 * xftfont.c:
8149 * xmenu.c:
8150 * xselect.c:
8151 * xterm.c: Likewise.
8152
8153 Remove P_ and __P macros.
8154 * atimer.h: Remove P_ and __P macros.
8155 * buffer.h:
8156 * category.h:
8157 * ccl.h:
8158 * character.h:
8159 * charset.h:
8160 * cm.h:
8161 * coding.h:
8162 * composite.h:
8163 * dispextern.h:
8164 * disptab.h:
8165 * dosfns.h:
8166 * font.h:
8167 * fontset.h:
8168 * frame.h:
8169 * gtkutil.h:
8170 * indent.h:
8171 * intervals.h:
8172 * keyboard.h:
8173 * keymap.h:
8174 * lisp.h:
8175 * macros.h:
8176 * md5.h:
8177 * menu.h:
8178 * msdos.h:
8179 * nsterm.h:
8180 * puresize.h:
8181 * region-cache.h:
8182 * syntax.h:
8183 * syssignal.h:
8184 * systime.h:
8185 * termhooks.h:
8186 * w32font.h:
8187 * w32term.h:
8188 * widget.h:
8189 * window.h:
8190 * xgselect.h:
8191 * xsettings.h:
8192 * xterm.h: Likewise.
8193
8194 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
8195
8196 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
8197
8198 Cleanup old code.
8199 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
8200 * syssignal.h: Remove code for Lynx, not supported anymore.
8201 * vm-limit.c: Remove unused code the depends on emacs not being
8202 defined and NO_LIM_DATA being defined.
8203 * mem-limits.h: Remove dead code.
8204
8205 2010-07-01 Jan Djärv <jan.h.d@swipnet.se>
8206
8207 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
8208
8209 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
8210 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
8211
8212 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
8213 parameters, they are already absolute.
8214
8215 * nsterm.m (x_set_window_size, initFrameFromEmacs):
8216 Rename FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
8217
8218 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
8219
8220 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar):
8221 Update FRAME_TOOLBAR_HEIGHT.
8222
8223 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar):
8224 Add BLOCK/UNBLOCK_INPUT so asserts don't trigger.
8225
8226 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
8227
8228 * frame.c (get_future_frame_param, Fmake_terminal_frame):
8229 Don't check default-frame-alist.
8230
8231 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
8232
8233 * process.c (create_process): Avoid using invalid file descriptors.
8234
8235 * callproc.c (child_setup): Avoid closing a file descriptor twice.
8236
8237 2010-06-30 Jan Djärv <jan.h.d@swipnet.se>
8238
8239 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
8240 Improve documentation. Return font regardless of use_system_font.
8241 (syms_of_xsettings): Improve documentation for font-use-system-font.
8242
8243 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
8244
8245 * xfaces.c (realize_face): Garbage the frame if a face is removed
8246 (Bug#6593).
8247
8248 2010-07-05 Andreas Schwab <schwab@linux-m68k.org>
8249
8250 * keyboard.c: Remove duplicate <setjmp.h>.
8251 (read_key_sequence): Remove volatile qualifiers.
8252
8253 2010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8254
8255 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
8256 (struct glyph_row): New members left_fringe_offset and
8257 right_fringe_offset.
8258
8259 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
8260 specially.
8261 * w32term.c (w32_draw_fringe_bitmap): Likewise.
8262 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
8263
8264 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
8265 Take account of bitmap offset.
8266 (draw_window_fringes): Take account of window vscroll.
8267 (update_window_fringes): Likewise. Extend top-aligned top indicator
8268 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
8269 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
8270 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
8271
8272 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
8273
8274 * w32fns.c (Qtooltip): Declare.
8275 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
8276
8277 2010-07-03 Jan Djärv <jan.h.d@swipnet.se>
8278
8279 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
8280 grab on just Press (Bug#6499).
8281
8282 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
8283
8284 * frame.c (Qtooltip): New var.
8285 (delete_frame): Use it. Fix faulty if statement. Don't update
8286 mode line for tooltip frames. Suggested by Martin Rudalics.
8287
8288 * xfns.c (x_create_tip_frame):
8289 * w32fns.c (x_create_tip_frame): Use it.
8290
8291 2010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
8292
8293 * xftfont.c (xftfont_open): Check font width one by one also when
8294 spacing is dual.
8295
8296 * ftfont.c (ftfont_open): Ditto.
8297
8298 2010-06-30 Glenn Morris <rgm@gnu.org>
8299
8300 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
8301
8302 * Makefile.in (CANNOT_DUMP): Update for configure name change.
8303
8304 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
8305 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
8306 * s/darwin.h (SYSTEM_MALLOC):
8307 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
8308
8309 2010-06-29 Jan Djärv <jan.h.d@swipnet.se>
8310
8311 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
8312 (ns_get_screen): Don't assign integer to f.
8313 (Fx_display_color_cells): Declarations before statements.
8314
8315 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
8316
8317 * xfns.c (x_default_font_parameter): Remove got_from_system
8318 (Bug#6526).
8319
8320 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
8321 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper):
8322 New defines based on what configure finds.
8323
8324 * xterm.c (XTflash): Use gtk_widget_get_window.
8325 (xg_scroll_callback): Use gtk_adjustment_get_upper and
8326 gtk_adjustment_get_page_size.
8327 (handle_one_xevent): Use gtk_widget_get_mapped.
8328 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
8329 messages.
8330
8331 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
8332
8333 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
8334 HAVE_GTK_FILE_SELECTION_NEW.
8335
8336 * gtkutil.c (xg_display_open, xg_display_close):
8337 Remove HAVE_GTK_MULTIDISPLAY, it is always defined.
8338 (xg_display_open): Return type is void.
8339 (gtk_widget_set_has_window)
8340 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
8341 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
8342 (gtk_adjustment_set_page_increment)
8343 (gtk_adjustment_get_step_increment): #define these if not found
8344 by configure.
8345 (remove_submenu): New define based on Gtk+ version.
8346 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar):
8347 Use gtk_widget_get_window.
8348 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
8349 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
8350 (create_dialog): Use gtk_dialog_get_action_area and
8351 gtk_dialog_get_content_area.
8352 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
8353 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
8354 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
8355 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item):
8356 Use g_object_ref and g_object_unref.
8357 (xg_update_menu_item, xg_tool_bar_menu_proxy):
8358 Use gtk_widget_get_sensitive.
8359 (xg_update_submenu): Use remove_submenu.
8360 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
8361 properties instead to get old x and y position.
8362 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
8363 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
8364 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
8365 (xg_get_tool_bar_widgets): New function.
8366 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
8367 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
8368 (toolbar_set_orientation): New #define based on if configure
8369 finds gtk_orientable_set_orientation.
8370 (xg_create_tool_bar): Call toolbar_set_orientation.
8371 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
8372 instead of gtk_box_pack_start_defaults.
8373
8374 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
8375
8376 * cmds.c (Fdelete_backward_char): Move into Lisp.
8377
8378 2010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
8379
8380 * s/freebsd.h (BSD4_2): Remove redundant definition.
8381 bsd-common.h defines it already.
8382
8383 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
8384
8385 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
8386 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
8387 tool-bar-mode, which are now set using these X resources at
8388 startup, to determine the defaults (Bug#2249).
8389
8390 * w32fns.c (Fx_create_frame):
8391 * nsfns.m (Fx_create_frame): Likewise.
8392
8393 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
8394
8395 2010-06-24 Juanma Barranquero <lekktu@gmail.com>
8396
8397 * gtkutil.c (xg_update_scrollbar_pos):
8398 Avoid C99 mid-block variable declaration.
8399
8400 2010-06-22 Jan Djärv <jan.h.d@swipnet.se>
8401
8402 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
8403
8404 * gtkutil.h (xg_show_scroll_bar): Remove.
8405
8406 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
8407 if height is less than scroll bar min size.
8408 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
8409
8410 * xfns.c (x_default_font_parameter): Try to open font from system
8411 before using it (bug#6478). Rename got_from_gconf to got_from_system.
8412
8413 2010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
8414
8415 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
8416
8417 2010-06-20 Eli Zaretskii <eliz@gnu.org>
8418
8419 * xdisp.c (try_scrolling): When scroll-conservatively is set to
8420 most-positive-fixnum, be extra accurate when scrolling window
8421 start, to avoid missing the cursor line.
8422
8423 2010-06-19 Eli Zaretskii <eliz@gnu.org>
8424
8425 * xdisp.c (try_scrolling): Compute the limit for searching point
8426 in forward scroll from scroll_max, instead of an arbitrary limit
8427 of 10 screen lines.
8428 See http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
8429 and
8430 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
8431 for details.
8432
8433 2010-06-16 Glenn Morris <rgm@gnu.org>
8434
8435 * editfns.c (Fbyte_to_string): Pacify compiler.
8436
8437 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
8438
8439 * lread.c (read1): Phase out old-style backquotes a bit more.
8440
8441 2010-06-12 Eli Zaretskii <eliz@gnu.org>
8442
8443 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
8444 bidimirror.h.
8445
8446 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
8447
8448 * bidi.c (bidi_initialize): Remove explicit initialization of
8449 bidi_type_table; include biditype.h instead. Don't support
8450 entries whose second codepoint is zero. Initialize bidi_mirror_table.
8451 (bidi_mirror_char): Use bidi_mirror_table.
8452
8453 * biditype.h: New file.
8454
8455 * bidimirror.h: New file.
8456
8457 * window.c (syms_of_window): Doc fix (bug#6409).
8458
8459 2010-06-12 Romain Francoise <romain@orebokech.com>
8460
8461 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
8462 ediff-hook.
8463
8464 2010-06-10 Glenn Morris <rgm@gnu.org>
8465
8466 * editfns.c (Fbyte_to_string): Pacify compiler.
8467
8468 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
8469
8470 2010-06-26 Andreas Schwab <schwab@linux-m68k.org>
8471
8472 * alloc.c (Fmake_byte_code): Don't access undefined argument
8473 (Bug#6517).
8474
8475 2010-06-25 Chong Yidong <cyd@stupidchicken.com>
8476
8477 * xdisp.c (next_element_from_image): Ensure that after-strings are
8478 read the next time we hit handle_stop (Bug#1336).
8479
8480 2010-06-23 Andreas Schwab <schwab@linux-m68k.org>
8481
8482 * lread.c (read1): Signal error if #s is not followed by paren.
8483
8484 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
8485
8486 * image.c (free_image): Mark frame as garbaged (Bug#6426).
8487
8488 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
8489
8490 2010-06-15 Glenn Morris <rgm@gnu.org>
8491
8492 * editfns.c (Fbyte_to_string): Pacify compiler.
8493
8494 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
8495
8496 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
8497 Check `object's type before accessing its guts.
8498
8499 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
8500
8501 * s/usg5-4.h: Fix previous change.
8502 Suggested by Lawrence Mitchell <wence@gmx.li>
8503
8504 2010-06-08 Andreas Schwab <schwab@linux-m68k.org>
8505
8506 * minibuf.c (Fall_completions): Add more checks.
8507
8508 2010-06-08 Juanma Barranquero <lekktu@gmail.com>
8509
8510 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
8511
8512 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
8513
8514 * lread.c (X_OK): Remove, unused.
8515
8516 * dispnew.c: Remove obsolete comment.
8517
8518 Remove INCLUDED_FCNTL.
8519 * xterm.c (INCLUDED_FCNTL):
8520 * callproc.c (INCLUDED_FCNTL):
8521 * alloc.c (INCLUDED_FCNTL):
8522 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
8523 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
8524
8525 2010-06-07 Martin Rudalics <rudalics@gmx.at>
8526
8527 * window.c (Fselect_window): Move `record_buffer' up to the
8528 beginning of this function, so the buffer gets recorded
8529 even if the selected window does not change.
8530 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
8531
8532 2010-06-07 Juanma Barranquero <lekktu@gmail.com>
8533
8534 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
8535 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
8536
8537 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
8538
8539 Remove BSTRING related code, all platforms define it.
8540 * s/usg5-4.h (BSTRING): Remove definition.
8541 * s/template.h (BSTRING):
8542 * s/msdos.h (BSTRING):
8543 * s/ms-w32.h (BSTRING):
8544 * s/hpux10-20.h (BSTRING):
8545 * s/gnu-linux.h (BSTRING):
8546 * s/darwin.h (BSTRING):
8547 * s/cygwin.h (BSTRING):
8548 * s/bsd-common.h (BSTRING):
8549 * s/aix4-2.h (BSTRING): Likewise.
8550 * sysdep.c: Remove code depending on BSTRING not being defined.
8551
8552 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
8553
8554 Remove obsolete macro BASE_LEADING_CODE_P.
8555 * character.h (BASE_LEADING_CODE_P): Remove.
8556 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
8557 * buffer.c (Fset_buffer_multibyte):
8558 * indent.c (scan_for_column, compute_motion):
8559 * insdel.c (count_combining_before, count_combining_after):
8560 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
8561
8562 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
8563
8564 Turn `directory-sep-char' into a noop.
8565
8566 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
8567 (DIRECTORY_SEP): Define unconditionally.
8568
8569 * s/ms-w32.h (DIRECTORY_SEP): Remove.
8570
8571 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
8572 call dostounix_filename directly.
8573
8574 * fileio.c (CORRECT_DIR_SEPS): Remove.
8575 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
8576 (Fsubstitute_in_file_name): Use dostounix_filename instead.
8577 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
8578 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
8579
8580 * w32proc.c (CORRECT_DIR_SEPS): Remove.
8581 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
8582
8583 2010-06-03 Andreas Schwab <schwab@linux-m68k.org>
8584
8585 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 address.
8586 (Bug#6346)
8587
8588 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
8589
8590 * ccl.c (Fccl_program_p): Fix typo in docstring.
8591
8592 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
8593
8594 Move UNEXEC definition to autoconf.
8595 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
8596 * s/sol2-10.h (UNEXEC):
8597 * s/irix6-5.h (UNEXEC):
8598 * s/hpux10-20.h (UNEXEC):
8599 * s/gnu-linux.h (UNEXEC):
8600 * s/darwin.h (UNEXEC):
8601 * s/cygwin.h (UNEXEC):
8602 * s/bsd-common.h (UNEXEC):
8603 * s/aix4-2.h (UNEXEC):
8604 * m/alpha.h (UNEXEC): Likewise.
8605 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
8606
8607 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
8608
8609 Remove obsolete pre-unicode2 macros.
8610 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
8611 * composite.c (composition_reseat_it):
8612 * data.c (Faset):
8613 * fns.c (Ffillarray):
8614 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
8615 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
8616
8617 2010-06-03 Juri Linkov <juri@jurta.org>
8618
8619 * buffer.c (Fother_buffer): Add CHECK_FRAME.
8620 (Fswitch_to_buffer): Remove unused variable `err'.
8621
8622 2010-06-03 Glenn Morris <rgm@gnu.org>
8623
8624 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
8625
8626 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
8627 now that AH_BOTTOM does it.
8628
8629 * m/hp800.h (HAVE_ALLOCA):
8630 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
8631
8632 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
8633 Remove NOT_C_CODE tests, it is always true now.
8634
8635 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
8636
8637 Fix config.h includes.
8638 * xsettings.c:
8639 * xgselect.c:
8640 * nsterm.m:
8641 * nsselect.m:
8642 * nsimage.m:
8643 * nsfont.m:
8644 * nsfns.m:
8645 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
8646 other files do.
8647
8648 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
8649
8650 * s/sol2-6.h: Remove obsolete comments.
8651
8652 Remove unnecessary alloca.h includes.
8653 * keymap.c: Do not include alloca.h, config.h does that.
8654 * sysdep.c: Likewise. Do not define fwrite, not used.
8655
8656 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
8657
8658 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
8659 the HAVE_TERMIO where it belongs (bug#6149).
8660
8661 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
8662
8663 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
8664 of bug#6305).
8665
8666 2010-05-30 Eli Zaretskii <eliz@gnu.org>
8667
8668 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
8669 state is always cached (bug#6306).
8670
8671 2010-05-29 Eli Zaretskii <eliz@gnu.org>
8672
8673 Fix cursor motion in bidi-reordered continued lines.
8674 * xdisp.c (try_cursor_movement): Backup to non-continuation line
8675 only after finding point's row. Fix the logic. Rewrite the loop
8676 over continuation lines in bidi-reordered buffers.
8677 Return CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
8678 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
8679
8680 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
8681
8682 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
8683
8684 2010-05-28 Kenichi Handa <handa@m17n.org>
8685
8686 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
8687 Don't sheck SPEC if it is nil.
8688 (font_list_entities): Call font_delete_unmatched if
8689 Vface_ignored_fonts is non-nil. (Bug#6287)
8690
8691 2010-05-28 Glenn Morris <rgm@gnu.org>
8692
8693 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
8694
8695 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8696
8697 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
8698 whether to trash.
8699 (internal_delete_file, Frename_file): Callers changed.
8700 (delete_by_moving_to_trash): Doc fix.
8701 (Fdelete_directory_internal): Don't move to trash.
8702
8703 * callproc.c (delete_temp_file):
8704 * buffer.c (Fkill_buffer): Callers changed.
8705
8706 * lisp.h: Update prototype.
8707
8708 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8709
8710 * xdisp.c (redisplay_window): After redisplay, check if point is
8711 still valid before setting it (Bug#6177).
8712
8713 2010-05-27 Glenn Morris <rgm@gnu.org>
8714
8715 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
8716 Convert comments to Makefile format.
8717
8718 * Makefile.in (bootstrap-clean): No more Makefile.c.
8719
8720 2010-05-26 Glenn Morris <rgm@gnu.org>
8721
8722 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
8723 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
8724
8725 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
8726 Remove.
8727 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8728
8729 2010-05-26 Kenichi Handa <handa@m17n.org>
8730
8731 * composite.c (composition_compute_stop_pos): Fix condition for
8732 backward scanning.
8733
8734 2010-05-25 Glenn Morris <rgm@gnu.org>
8735
8736 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
8737 Move before TEMACS_LDFLAGS.
8738 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8739 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8740
8741 * Makefile.in (NOT_C_CODE): No longer define.
8742 (config.h): No longer include.
8743
8744 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
8745 variables it may reference.
8746
8747 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
8748 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
8749
8750 2010-05-25 Kenichi Handa <handa@m17n.org>
8751
8752 * dispextern.h (struct composition_it): New members rule_idx and
8753 charpos.
8754
8755 * xdisp.c (set_iterator_to_next): While scanning backward, assume
8756 that the character positions of IT point the last character of the
8757 current grapheme cluster.
8758 (next_element_from_composition): Don't change character positions
8759 of IT.
8760 (append_composite_glyph): Set glyph->charpos to
8761 it->cmp_it.charpos.
8762
8763 * composite.c (autocmp_chars): Change the first argument to RULE,
8764 and try composition with RULE only.
8765 (composition_compute_stop_pos): Record the index number of the
8766 composition rule in CMP_IT->rule_idx.
8767 (composition_reseat_it): Call autocmp_chars repeatedly until the
8768 correct rule of the composition is found.
8769 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
8770 is at the last character of the current grapheme cluster when
8771 CMP_IT->reversed_p is nonzero.
8772
8773 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
8774
8775 * editfns.c (Fbyte_to_string): New function.
8776
8777 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
8778
8779 * process.c (Fmake_network_process): Set :host to nil if it's not used.
8780 Suggested by Masatake YAMATO <yamato@redhat.com>.
8781
8782 2010-05-23 Eli Zaretskii <eliz@gnu.org>
8783
8784 * dispextern.h (init_iterator): Sync prototype with changed definition.
8785
8786 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
8787
8788 * s/netbsd.h: If terminfo is found, use it in preference to
8789 termcap. (Bug#6190) [Backport from trunk]
8790
8791 2010-05-19 Eli Zaretskii <eliz@gnu.org>
8792
8793 Redesign and reimplement bidi-aware edge positions of glyph rows.
8794
8795 * dispextern.h (struct glyph_row): New members minpos and maxpos.
8796 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
8797 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
8798 and maxpos members instead of start.pos and end.pos, respectively.
8799
8800 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
8801 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
8802 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
8803 (try_window_reusing_current_matrix, try_window_id):
8804 Use ROW->minpos rather than ROW->start.pos.
8805 (init_from_display_pos, init_iterator): Use EMACS_INT for
8806 character and byte positions.
8807 (find_row_edges): Rename from find_row_end. Accept additional
8808 arguments for minimum and maximum buffer positions seen by
8809 display_line for this row. Don't use iterator to find the
8810 position following the maximum one; instead, increment the
8811 position found by display_line directly. Fix logic; eol_pos
8812 should be tested before the rest. Handle the case of characters
8813 delivered from display vector (bug#6036). Fix tests related to
8814 it->method. Handle the truncated_on_right_p rows.
8815 (RECORD_MAX_MIN_POS): New macro.
8816 (display_line): Use it to record the minimum and maximum buffer
8817 positions for glyphs in the row being assembled. Record the
8818 position of the newline that terminates the line. If word wrap is
8819 in effect, restore minimum and maximum positions seen up to the
8820 wrap point, when iterator returns to it.
8821 (try_window_reusing_current_matrix): Give up if in bidi-reordered
8822 row and cursor not already at point. Restore original pre-bidi
8823 code for unidirectional buffers.
8824
8825 * dispnew.c (increment_row_positions, check_matrix_invariants):
8826 Increment and check row->start.pos and row->end.pos, in addition
8827 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
8828
8829 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
8830 Display truncated_on_left_p and truncated_on_right_p flags.
8831 Formatting fixes.
8832 (pmtxrows): Display the ordinal number of each row. Don't display
8833 rows beyond the last one.
8834
8835 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
8836 it is not copied by bidi_copy_it.
8837
8838 2010-05-22 Eli Zaretskii <eliz@gnu.org>
8839
8840 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
8841 (Bug#6237)
8842
8843 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
8844
8845 * image.c (Fimage_flush): Rename from image-refresh.
8846
8847 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
8848
8849 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
8850 just one window.
8851
8852 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
8853 (clear_image_cache): If the number of cached images is unusually
8854 large, decrease the cache eviction delay (Bug#6230).
8855
8856 2010-05-21 Glenn Morris <rgm@gnu.org>
8857
8858 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
8859 Move these rules to ns.mk.
8860 * ns.mk: New file.
8861
8862 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
8863
8864 * Makefile.in (CANNOT_DUMP): New, set by configure.
8865 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
8866
8867 2010-05-20 Juri Linkov <juri@jurta.org>
8868
8869 * fileio.c (Fdelete_file): Change interative spec to use
8870 `read-file-name' like in `find-file-read-args' where the default
8871 value is `default-directory' instead of `buffer-file-name'.
8872 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
8873
8874 2010-05-20 Kevin Ryde <user42@zip.com.au>
8875
8876 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
8877 (Voverriding_terminal_local_map, Vsystem_key_alist)
8878 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
8879
8880 2010-05-20 Glenn Morris <rgm@gnu.org>
8881
8882 * Makefile.in (DEPDIR): New constant.
8883 (DEPFLAGS): Set with configure, not cpp.
8884 (MKDEPDIR): New, set by configure.
8885 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
8886 (clean): Use $DEPDIR.
8887 (deps_frag): Include from configure.
8888 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
8889 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
8890
8891 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state):
8892 Fix reallocation of the cache. (Bug#6210)
8893
8894 2010-05-19 Glenn Morris <rgm@gnu.org>
8895
8896 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
8897
8898 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
8899 (GNULIB_VAR): Remove.
8900 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
8901
8902 * m/ibms390x.h (LINKER):
8903 * m/macppc.h (LINKER) [GNU_LINUX]:
8904 * s/aix4-2.h (ORDINARY_LINK):
8905 * s/cygwin.h (LINKER):
8906 * s/darwin.h (ORDINARY_LINK):
8907 * s/gnu.h (ORDINARY_LINK):
8908 * s/netbsd.h (LINKER):
8909 * s/usg5-4.h (ORDINARY_LINK):
8910 Move to configure.
8911
8912 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
8913
8914 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
8915
8916 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
8917 prevent stack overflow if number of arguments is too large
8918 (Bug#6214).
8919
8920 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
8921
8922 * charset.c (load_charset_map_from_file): Don't call close after fclose.
8923
8924 2010-05-18 Glenn Morris <rgm@gnu.org>
8925
8926 * s/gnu-linux.h: Combine two conditionals.
8927
8928 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
8929 $(POST_ALLOC_OBJ).
8930
8931 * Makefile.in (RALLOC_OBJ): New, set by configure.
8932 (rallocobj): Replace with the previous variable.
8933 (otherobj): Use $RALLOC_OBJ.
8934
8935 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
8936 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
8937
8938 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
8939 (gmallocobj, vmlimitobj): Replace with previous two variables.
8940 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
8941
8942 2010-05-17 Glenn Morris <rgm@gnu.org>
8943
8944 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
8945 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
8946
8947 2010-05-16 Glenn Morris <rgm@gnu.org>
8948
8949 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
8950
8951 * Makefile.in (clean): Get rid of HAVE_NS conditional.
8952
8953 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
8954 trailing "/".
8955
8956 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
8957 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
8958
8959 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
8960 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
8961 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
8962 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
8963 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
8964
8965 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
8966 Remove ${STARTFLAGS}, nothing ever sets it.
8967
8968 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
8969
8970 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
8971
8972 2010-05-16 Glenn Morris <rgm@gnu.org>
8973
8974 * Makefile.in (LIBX_BASE): Always define.
8975
8976 * Makefile.in (LIBX_OTHER): Move out of cpp section.
8977
8978 * Makefile.in (LIBXT): Always define.
8979
8980 2010-05-15 Glenn Morris <rgm@gnu.org>
8981
8982 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
8983
8984 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
8985 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
8986
8987 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
8988
8989 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
8990 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
8991
8992 * emacs.c (main): Initialize initial-environment and
8993 process-environment before generating from env, not after.
8994
8995 Handle --version reasonably in CANNOT_DUMP configuration.
8996 * emacs.c (emacs_version, emacs_copyright): New string variables.
8997 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
8998 (syms_of_emacs): Defvar them, and initialize them from the C
8999 string variables.
9000 (main): If initialization hasn't been done, print initial version
9001 info from the C strings, instead of starting an interactive session.
9002
9003 2010-05-15 Eli Zaretskii <eliz@gnu.org>
9004
9005 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
9006 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
9007 (bidi_paragraph_init): Remove redundant assertion that we are at
9008 the beginning of a line after call to bidi_find_paragraph_start.
9009
9010 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
9011 (syms_of_xdisp): Defsubr it.
9012
9013 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
9014
9015 * Makefile.in: Fix MSDOS-related comments.
9016
9017 2010-05-15 Glenn Morris <rgm@gnu.org>
9018
9019 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
9020 (really-lwlib, really-oldXMenu): Always define.
9021 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
9022
9023 * Makefile.in: Simplify cpp conditional.
9024
9025 * Makefile.in (${ns_appdir}): Simplify using umask.
9026
9027 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
9028
9029 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
9030
9031 * eval.c (specbind): Remove left-over duplicate test.
9032 Disallow let-binding frame-local vars. Add comment.
9033
9034 2010-05-14 Eli Zaretskii <eliz@gnu.org>
9035
9036 Make the cache of bidi iterator states dynamically allocated.
9037 * bidi.c (bidi_cache_shrink): New function.
9038 (bidi_init_it): Call it.
9039 (bidi_cache_iterator_state): Enlarge the cache if needed.
9040
9041 * bidi.c (bidi_move_to_visually_next): Rename from
9042 bidi_get_next_char_visually. All callers changed.
9043
9044 2010-05-14 Kenichi Handa <handa@m17n.org>
9045
9046 * dispextern.h (struct composition_it): New member reversed_p.
9047
9048 * composite.c (composition_compute_stop_pos): Search backward if
9049 ENDPOS < CHARPOS.
9050 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
9051 Set CMP_IT->reversed_p.
9052 (composition_update_it): Pay attention to CMP_IT->reversed_p.
9053
9054 * xdisp.c (set_iterator_to_next):
9055 Call composition_compute_stop_pos with negative ENDPOS if we are
9056 scanning backward. Call composition_compute_stop_pos if scan
9057 direction is changed.
9058 (next_element_from_buffer): Call composition_compute_stop_pos with
9059 negative ENDPOS if we are scanning backward.
9060 (next_element_from_composition): Pay attention to
9061 IT->cmp_it.reversed_p.
9062
9063 2010-05-14 Kenichi Handa <handa@m17n.org>
9064
9065 * font.c (font_range): Return the range for the font found at first.
9066
9067 2010-05-14 Glenn Morris <rgm@gnu.org>
9068
9069 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
9070
9071 * Makefile.in (mktime, X11, register): Move undefs to configure.
9072
9073 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
9074 (MSDOS_X_OBJ): New variable.
9075 (MSDOS_SUPPORT_REAL): New constant.
9076 (MSDOS_SUPPORT): Set as a variable, not with cpp.
9077 (obj): Use MSDOS_X_OBJ.
9078 (lisp): Use MSDOS_SUPPORT as a variable.
9079
9080 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
9081 (GPM_MOUSE_SUPPORT): Now it's a constant.
9082 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
9083 not cpp.
9084
9085 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
9086 (ns_appresdir): Remove, unused.
9087
9088 * Makefile.in (SHELL): Move outside cpp section.
9089
9090 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
9091
9092 2010-05-13 Glenn Morris <rgm@gnu.org>
9093
9094 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
9095 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
9096
9097 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
9098 HAVE_WINDOW_SYSTEM must be too.
9099
9100 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
9101 (lisp): Remove WINNT_SUPPORT.
9102
9103 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
9104 Let configure set these variables (to empty) in this case as well.
9105
9106 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
9107 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
9108
9109 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
9110 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
9111 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
9112 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
9113 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
9114 the values output by configure.
9115 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
9116
9117 2010-05-12 Glenn Morris <rgm@gnu.org>
9118
9119 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
9120 (LINKER_WAS_SPECIFIED): Remove.
9121
9122 * Makefile.in (LIB_GCC): Set using configure, not cpp.
9123 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
9124 * m/arm.h (LIB_GCC) [GNU_LINUX]:
9125 * s/cygwin.h (LIB_GCC):
9126 * s/freebsd.h (LIB_GCC):
9127 * s/gnu-linux.h (LIB_GCC):
9128 * s/msdos.h (LIB_GCC):
9129 * s/netbsd.h (LIB_GCC):
9130 Move to configure.
9131
9132 2010-05-11 Karel Klíč <kklic@redhat.com>
9133
9134 * ftfont.c: Fix incorrect parentheses of #if condition for
9135 definining M17N_FLT_USE_NEW_FEATURE.
9136
9137 2010-05-11 Glenn Morris <rgm@gnu.org>
9138
9139 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
9140 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
9141
9142 2010-05-10 Eli Zaretskii <eliz@gnu.org>
9143
9144 * xdisp.c (init_iterator): Don't turn on bidi reordering in
9145 unibyte buffers. See
9146 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
9147
9148 2010-05-10 Glenn Morris <rgm@gnu.org>
9149
9150 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
9151 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
9152 (LIBES): Use LIBS_SYSTEM as a variable.
9153 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
9154 * s/aix4-2.h (LIBS_SYSTEM):
9155 * s/freebsd.h (LIBS_SYSTEM):
9156 * s/hpux10-20.h (LIBS_SYSTEM):
9157 * s/sol2-6.h (LIBS_SYSTEM):
9158 * s/unixware.h (LIBS_SYSTEM):
9159 Move to configure.
9160
9161 * s/aix4-2.h (MAIL_USE_LOCKF):
9162 * s/bsd-common.h (MAIL_USE_FLOCK):
9163 * s/darwin.h (MAIL_USE_FLOCK):
9164 * s/gnu-linux.h (MAIL_USE_FLOCK):
9165 * s/irix6-5.h (MAIL_USE_FLOCK):
9166 * s/template.h (MAIL_USE_FLOCK):
9167 Move to configure.
9168
9169 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
9170
9171 * Version 23.2 released.
9172
9173 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
9174
9175 * composite.c (autocmp_chars): Save point as marker before calling
9176 auto-composition-function (Bug#5984).
9177
9178 * lisp.h (restore_point_unwind): Add prototype.
9179
9180 * fileio.c (restore_point_unwind): Remove static attribute.
9181
9182 2010-05-08 Kenichi Handa <handa@m17n.org>
9183
9184 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
9185 new feature of libotf and m17n-flt.
9186 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
9187 Call OTF_check_features even if no specific feature is given.
9188 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
9189 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
9190 that OUT is NULL. Use OTF_drive_gsub_with_log and
9191 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
9192 OTF_drive_gpos.
9193 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
9194 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
9195 Setup mflt_enable_new_feature and mflt_try_otf.
9196
9197 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
9198
9199 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
9200
9201 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
9202 box and toolbar (Bug #6139).
9203 (xg_create_tool_bar): Remove comment (Bug #6139).
9204 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
9205 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
9206
9207 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
9208
9209 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
9210 Update dependencies.
9211
9212 2010-05-08 Eli Zaretskii <eliz@gnu.org>
9213
9214 * fringe.c (update_window_fringes): Set up truncation bitmaps for
9215 R2L lines.
9216
9217 2010-05-08 Glenn Morris <rgm@gnu.org>
9218
9219 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
9220
9221 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
9222 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
9223 (termcapobj): Replace with TERMCAP_OBJ.
9224 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
9225 (LIBES): Use LIBS_TERMCAP as a variable.
9226
9227 * s/freebsd.h (osreldate.h): No longer include, since this file
9228 does not use __FreeBSD_version any more.
9229
9230 * s/aix4-2.h (TERMINFO):
9231 * s/cygwin.h (TERMINFO):
9232 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
9233 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
9234 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
9235 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
9236 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
9237 * s/irix6-5.h (TERMINFO):
9238 * s/netbsd.h (LIBS_TERMCAP):
9239 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
9240 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
9241 * s/usg5-4.h (TERMINFO):
9242 Move to configure.
9243
9244 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
9245
9246 * eval.c (unbind_to): Don't unbind a local binding into the global
9247 binding when the local binding disappeared. Inversely, don't unbind
9248 a global binding into a newly created local binding.
9249 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
9250 can specify the frame to use, when applicable. Adjust callers.
9251
9252 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
9253 Stefan Monnier <monnier@iro.umontreal.ca>
9254
9255 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
9256
9257 2010-05-07 Eli Zaretskii <eliz@gnu.org>
9258
9259 * w32fns.c: Include w32.h.
9260 (Fw32_shell_execute): Decode the error message before passing it
9261 to `error'. (Bug#6126)
9262
9263 * msdos.c (dos_set_window_size):
9264 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
9265 instead of `XSYMBOL (foo)->value'.
9266
9267 2010-05-07 Eli Zaretskii <eliz@gnu.org>
9268
9269 Fix the MS-DOS build, broken by autoconfiscation.
9270
9271 * Makefile.in: Don't use Make-style comments past the "start of
9272 cpp stuff" line.
9273 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
9274
9275 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
9276 edited directly by msdos/sed1v2.inp).
9277
9278 2010-05-07 Glenn Morris <rgm@gnu.org>
9279
9280 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
9281 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
9282 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
9283 move out of cpp section.
9284 * s/freebsd.h (LD_SWITCH_SYSTEM):
9285 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
9286 * s/netbsd.h (LD_SWITCH_SYSTEM):
9287 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
9288
9289 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
9290
9291 Define LIB_STANDARD and START_FILES using autoconf.
9292 * s/usg5-4.h (LIB_STANDARD):
9293 * s/netbsd.h (START_FILES):
9294 * s/irix6-5.h (LIB_STANDARD):
9295 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
9296 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
9297 * s/freebsd.h (START_FILES):
9298 * s/darwin.h (START_FILES):
9299 * s/cygwin.h (START_FILES):
9300 * s/aix4-2.h (LIB_STANDARD):
9301 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
9302 * Makefile.in (STARTFILES): Rename to START_FILES, define using
9303 autoconf, not cpp.
9304
9305 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
9306
9307 Remove NEED_BSDTTY and NEED_UNISTD_H.
9308 * s/hpux10-20.h (NEED_BSDTTY): Remove.
9309 * s/aix4-2.h (NEED_UNISTD_H): Remove.
9310 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
9311 <sys/ptyio.h> and <unistd.h>.
9312
9313 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
9314
9315 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
9316 * s/gnu.h (START_FILES): Remove empty definition.
9317
9318 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
9319
9320 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
9321
9322 2010-05-06 Glenn Morris <rgm@gnu.org>
9323
9324 * Makefile.in (CPP, LN_S): Remove unused variables.
9325
9326 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
9327
9328 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
9329
9330 2010-05-05 Lawrence Mitchell <wence@gmx.li>
9331
9332 * m/sparc.h: Fix typo in earlier change.
9333
9334 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
9335
9336 Misc tweaks.
9337 * eval.c (Fdefvaralias): Remove unintended nested if.
9338 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
9339
9340 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
9341
9342 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
9343
9344 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
9345
9346 Remove BSD_PGRPS.
9347 * s/bsd-common.h (BSD_PGRPS): Remove undef.
9348 * s/gnu-linux.h (BSD_PGRPS): Remove.
9349 * term.c (dissociate_if_controlling_tty):
9350 * sysdep.c (narrow_foreground_group, widen_foreground_group)
9351 (init_sys_modes, reset_sys_modes):
9352 * emacs.c (main):
9353 * callproc.c (Fcall_process, child_setup): Remove code depending
9354 on BSD_PGRPS.
9355
9356 Remove POSIX_SIGNALS.
9357 * s/usg5-4.h (POSIX_SIGNALS):
9358 * s/netbsd.h (POSIX_SIGNALS):
9359 * s/msdos.h (POSIX_SIGNALS):
9360 * s/ms-w32.h (POSIX_SIGNALS):
9361 * s/hpux11.h (POSIX_SIGNALS):
9362 * s/gnu.h (POSIX_SIGNALS):
9363 * s/gnu-linux.h (POSIX_SIGNALS):
9364 * s/freebsd.h (POSIX_SIGNALS):
9365 * s/darwin.h (POSIX_SIGNALS):
9366 * s/cygwin.h (POSIX_SIGNALS):
9367 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
9368 * s/unixware.h:
9369 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
9370 * process.c (create_process):
9371 * syssignal.h:
9372 * sysdep.c (wait_for_termination, init_signals):
9373 * process.c (create_process):
9374 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
9375 remove all code that assumes the contrary.
9376
9377 2010-05-04 Glenn Morris <rgm@gnu.org>
9378
9379 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
9380 variable.
9381 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
9382 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
9383 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
9384 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
9385 LD_SWITCH_SYSTEM_tmp.
9386 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
9387 New variables, set by configure.
9388
9389 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
9390 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
9391 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
9392 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
9393 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
9394
9395 * s/aix4-2.h (C_SWITCH_SYSTEM):
9396 * m/alpha.h (C_SWITCH_MACHINE):
9397 Move to configure.in.
9398 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
9399 New variables, set by configure.
9400 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
9401 $c_switch_machine and $c_switch_system.
9402
9403 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
9404
9405 * s/hpux10-20.h (LIB_STANDARD): New definition.
9406 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
9407 on it, not used anymore.
9408
9409 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
9410
9411 * eval.c (internal_condition_case_n): Rename from
9412 internal_condition_case_2.
9413 (internal_condition_case_2): New function.
9414
9415 * xdisp.c (safe_call): Use internal_condition_case_n.
9416
9417 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
9418 (internal_delete_file, Frename_file): Callers changed.
9419
9420 * buffer.c (Fkill_buffer):
9421 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
9422
9423 * lisp.h: Update prototypes.
9424
9425 2010-05-03 Glenn Morris <rgm@gnu.org>
9426
9427 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
9428 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
9429 (LIBXT): Set with configure, not cpp.
9430 (LIBX): Remove.
9431 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
9432
9433 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
9434
9435 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
9436 The FreeBSD is not needed, the default works, Solaris version is
9437 not needed, and the remaining case is not supported by configure.
9438
9439 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
9440
9441 * xsmfns.c (CHDIR_OPT): New define.
9442 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
9443 restarting emacs.
9444
9445 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
9446 shut_down_emacs.
9447
9448 * emacs.c (USAGE1): Mention --chdir.
9449 (main): Handle --chdir.
9450 (standard_args): Add --chdir.
9451 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
9452 #5552).
9453
9454 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
9455
9456 Remove LD_SWITCH_MACHINE.
9457 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
9458 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
9459
9460 Clean up IRIX code.
9461 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
9462 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
9463
9464 Clean up AIX code.
9465 * m/ibmrs6000.inp: Remove file, unused.
9466 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
9467 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
9468 definition ...
9469 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
9470
9471 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
9472 unused.
9473
9474 2010-05-01 Eli Zaretskii <eliz@gnu.org>
9475
9476 Emulate POSIX_SIGNALS on MS-Windows.
9477
9478 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
9479 (SIG_SETMASK, SIG_UNBLOCK): Define.
9480
9481 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
9482 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
9483 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
9484
9485 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
9486 New stubs.
9487
9488 Miscellaneous fixes of bidi display.
9489
9490 * xdisp.c (find_row_end): New function, refactored from display_line.
9491 (display_line): Use it.
9492 (extend_face_to_end_of_line): In almost-filled rows, extend only
9493 if the row is R2L and not continued.
9494 (display_line): Fix prepending of truncation glyphs to R2L rows.
9495 Preserve overlay and string info in row->end.
9496 (insert_left_trunc_glyphs): Support addition of left truncation
9497 glyphs to R2L rows.
9498 (set_cursor_from_row): Don't place cursor on the vertical border
9499 glyph between adjacent windows. Fix a crash when a display string
9500 is continued to the next line. Don't return zero if cursor was
9501 found by `cursor' property of a display string.
9502 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
9503 test for that explicitly.
9504
9505 2010-05-01 Glenn Morris <rgm@gnu.org>
9506
9507 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
9508 for clarity.
9509 (OTHER_OBJ): Remove.
9510 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
9511 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
9512
9513 2010-05-01 Karel Klíč <kklic@redhat.com>
9514
9515 * fileio.c (Ffile_selinux_context): Context functions may return null.
9516
9517 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
9518
9519 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
9520
9521 2010-04-30 Glenn Morris <rgm@gnu.org>
9522
9523 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
9524 (OTHER_OBJ): Define as a separate variable, for clarity.
9525
9526 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
9527
9528 * xsettings.c: Include limits.h and update file comment.
9529
9530 2010-04-30 Glenn Morris <rgm@gnu.org>
9531
9532 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
9533 Set with configure, not cpp.
9534 (LIBW): Remove, replace with $TOOLKIT_LIBW.
9535
9536 * Makefile.in (mallocobj): Remove.
9537 (otherobj): Simplify using @OTHER_OBJ@.
9538
9539 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
9540 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
9541 Don't bother making nsgui.h dependency platform-specific.
9542
9543 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
9544
9545 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
9546
9547 * process.c (read_process_output, exec_sentinel): Don't burp if the
9548 sentinel/filter kills the current buffer (bug#6060).
9549
9550 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
9551 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
9552 Remove unused var `args'.
9553 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
9554 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
9555 * doc.c (store_function_docstring): Use XSETCAR.
9556
9557 2010-04-28 Glenn Morris <rgm@gnu.org>
9558
9559 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
9560 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
9561
9562 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
9563
9564 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
9565 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
9566
9567 * Makefile.in (FONT_OBJ): New, set by configure.
9568 (FONT_DRIVERS): Use $FONT_OBJ.
9569
9570 * Makefile.in (LIBXMU): Set with configure, not cpp.
9571 * s/aix4-2.h (LIBXMU):
9572 * s/hpux10-20.h (LIBXMU):
9573 Remove definition, now set in configure.
9574
9575 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
9576
9577 * m/amdx86-64.h [i386]: Move this test to configure.in.
9578
9579 2010-04-27 Glenn Morris <rgm@gnu.org>
9580
9581 * Makefile.in (LIBXTR6): Set with configure, not cpp.
9582 * s/unixware.h (NEED_LIBW): Remove definition.
9583
9584 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
9585 (TOOLKIT_LIBW): New, set by configure.
9586 (@X_TOOLKIT_TYPE@): No longer define it.
9587
9588 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
9589 (MOTIF_LIBW): Set with configure, not cpp.
9590 * s/aix4-2.h (LIB_MOTIF):
9591 * s/gnu-linux.h (LIB_MOTIF):
9592 * s/unixware.h (LIB_MOTIF): Move to configure.in.
9593
9594 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
9595
9596 Reduce CPP usage.
9597 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
9598 (obj): Use autoconf for unexec instead of cpp.
9599 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE):
9600 Remove definitions and undefs. Inline definitions in the only user.
9601 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
9602
9603 2010-04-27 Glenn Morris <rgm@gnu.org>
9604
9605 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
9606 since the defaults (set by the system file) are fine in most cases.
9607 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
9608 * m/ibms390x.h (START_FILES, LIB_STANDARD):
9609 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
9610 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
9611 Remove definitions, since they are set correctly in s/gnu-linux.h.
9612 * s/freebsd.h (START_FILES, LIB_STANDARD):
9613 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
9614 * s/hpux10-20.h (START_FILES):
9615 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
9616 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
9617
9618 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
9619 (MOTIF_LIBW): Use $LIBXP.
9620 (otherobj): Use $WIDGET_OBJ.
9621
9622 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
9623
9624 * Makefile.in (LIBS_MACHINE): Remove, unused.
9625
9626 Use autoconf instead of cpp for LIB_MATH.
9627 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
9628 * s/cygwin.h (LIB_MATH): Likewise.
9629 * Makefile.in (LIB_MATH): Do not define with cpp.
9630 (LIBES): Use autoconf for LIB_MATH.
9631
9632 2010-04-26 Kenichi Handa <handa@m17n.org>
9633
9634 * composite.c (Ffind_composition_internal): Fix the return value
9635 for an automatic composition.
9636
9637 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
9638
9639 Remove all NO_ARG_ARRAY uses.
9640 * fns.c (concat2, concat3, nconc2):
9641 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
9642 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
9643 * m/xtensa.h (NO_ARG_ARRAY):
9644 * m/template.h (NO_ARG_ARRAY):
9645 * m/sparc.h (NO_ARG_ARRAY):
9646 * m/sh3.h (NO_ARG_ARRAY):
9647 * m/mips.h (NO_ARG_ARRAY):
9648 * m/macppc.h (NO_ARG_ARRAY):
9649 * m/iris4d.h (NO_ARG_ARRAY):
9650 * m/intel386.h (NO_ARG_ARRAY):
9651 * m/ibms390x.h (NO_ARG_ARRAY):
9652 * m/ibms390.h (NO_ARG_ARRAY):
9653 * m/ibmrs6000.h (NO_ARG_ARRAY):
9654 * m/ia64.h (NO_ARG_ARRAY):
9655 * m/hp800.h (NO_ARG_ARRAY):
9656 * m/arm.h (NO_ARG_ARRAY):
9657 * m/amdx86-64.h (NO_ARG_ARRAY):
9658 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
9659
9660 2010-04-25 Eli Zaretskii <eliz@gnu.org>
9661
9662 * xdisp.c (display_line): Don't assume 2nd call to
9663 get_next_display_element cannot return zero. (Bug#6030)
9664 (iterate_out_of_display_property): New function, body from pop_it.
9665 (pop_it): Use it.
9666
9667 2010-04-24 Glenn Morris <rgm@gnu.org>
9668
9669 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
9670 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
9671 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
9672 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
9673
9674 2010-04-24 Eli Zaretskii <eliz@gnu.org>
9675
9676 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
9677 use `get_next_display_element' and `set_iterator_to_next' to
9678 advance to the next character, when looking for the character that
9679 begins the next row.
9680
9681 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
9682 definition of "struct Lisp_Symbol".
9683
9684 2010-04-24 Glenn Morris <rgm@gnu.org>
9685
9686 * Makefile.in (CRT_DIR): New variable, set by configure.
9687 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
9688 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
9689
9690 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9691
9692 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
9693
9694 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
9695
9696 Remove redundant flags.
9697 * s/freebsd.h (C_SWITCH_SYSTEM):
9698 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
9699 * s/netbsd.h (C_SWITCH_SYSTEM):
9700 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
9701 of these.
9702
9703 Simplify m/intel386.h.
9704 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
9705 user: ecrt0.c.
9706 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
9707 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
9708 the only user: s/unixware.h.
9709 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
9710 from m/intel386.h.
9711 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE):
9712 Definitions moved here from m/intel386.h.
9713
9714 * m/mips.h: Remove #if 0 code.
9715
9716 2010-04-23 Eli Zaretskii <eliz@gnu.org>
9717
9718 Fix display of composed characters from L2R scripts in bidi buffers.
9719 * xdisp.c (set_iterator_to_next, next_element_from_composition):
9720 After advancing IT past the composition, resync the bidi iterator
9721 with IT's position. (Bug#5977)
9722
9723 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9724
9725 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
9726 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
9727
9728 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9729
9730 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
9731
9732 2010-04-23 Eli Zaretskii <eliz@gnu.org>
9733
9734 Support `display' text properties and overlay strings in bidi buffers.
9735 * xdisp.c (pop_it): When the stack is popped after displaying
9736 from a string, bidi-iterate to exit from the text portion covered
9737 by the `display' property or overlay. (Bug#5988, bug#5920)
9738
9739 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9740
9741 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
9742 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
9743
9744 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
9745 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
9746
9747 Simplify STARTFILES definition.
9748 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
9749 relying on Makefile.in to define it.
9750 * s/cygwin.h (START_FILES): Likewise.
9751 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
9752
9753 Clean up Solaris code.
9754 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
9755 (LIB_MOTIF): Remove, configure takes care of this.
9756 (NOT_USING_MOTIF): Remove, unused.
9757 * xrdb.c: Remove #if 0-ed #include.
9758 (SYSV): Remove conditional for old SysV.
9759 * sysdep.c (closedir): Remove conditional code for Solaris,
9760 Solaris has closedir.
9761
9762 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
9763
9764 * xsettings.c (read_and_apply_settings): Check if current_font is
9765 NULL before strcmp (Bug#6001).
9766
9767 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
9768
9769 Clean up HP-UX files.
9770 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
9771 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
9772 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
9773 * s/hpux10-20.h: ... to the only user, here.
9774
9775 2010-04-21 Eli Zaretskii <eliz@gnu.org>
9776
9777 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
9778 use buffer-local values of paragraph-start and paragraph-separate.
9779 <paragraph_start_re, paragraph_separate_re>: Rename from
9780 fallback_paragraph_start_re and fallback_paragraph_separate_re.
9781 (Bug#5992)
9782
9783 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9784
9785 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
9786 current_tool_bar_style are new.
9787 (store_config_changed_event): Rename from store_font_changed_event.
9788 (XSETTINGS_TOOL_BAR_STYLE): New define.
9789 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
9790 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
9791 HAVE_XFT.
9792 (something_changedCB): store_font_changed_event is now
9793 store_config_changed_event.
9794 (parse_settings): Rename from parse_xft_settings.
9795 Read non-xft xsettings outside #ifdef HAVE_XFT.
9796 (read_settings): Rename from read_xft_settings.
9797 (apply_xft_settings): Take current settings as parameter. Do not
9798 call read_(xft)_settings.
9799 (read_and_apply_settings): New function.
9800 (xft_settings_event): Do non-xft stuff out of HAVE_XFT.
9801 Call read_and_apply_settings if there are settings to be read.
9802 (init_xsettings): Rename from init_xfd_settings.
9803 Call read_and_apply_settings unconditionally.
9804 (xsettings_initialize): Call init_xsettings.
9805 (Ftool_bar_get_system_style): New function.
9806 (syms_of_xsettings): Define Qmonospace_font_name and
9807 Qtool_bar_style. Initialize current_tool_bar_style to nil.
9808 defsubr Stool_bar_get_system_style. Fprovide on
9809 dynamic-setting.
9810 Move misplaced HAVE_GCONF.
9811
9812 * xsettings.h (Ftool_bar_get_system_style): Declare.
9813
9814 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
9815 Qtext, Qboth, Qboth_horiz are new.
9816 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
9817 Vtool_bar_style, tool_bar_max_label_size.
9818
9819 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
9820
9821 * keyboard.c: QClabel is new.
9822 (parse_tool_bar_item): Take out QClabel from tool bar items.
9823 Try to construct a label if ther is no QClabel.
9824 (syms_of_keyboard): Intern :label as QClabel.
9825
9826 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
9827 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
9828 New.
9829
9830 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
9831 dynamic-setting.el.
9832
9833 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
9834 (xg_make_tool_item, xg_show_toolbar_item): New function.
9835 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
9836 Call xg_make_tool_item to make a tool bar item.
9837 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
9838
9839 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
9840 into account for toolbars.
9841
9842 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9843
9844 * data.c (make_blv): Declarations before code (Bug#5993).
9845
9846 2010-04-21 Glenn Morris <rgm@gnu.org>
9847
9848 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
9849 Define using autoconf, not cpp.
9850 (LIBXSM): New variable, set by autoconf.
9851 (LIBXT): Use $LIBXSM.
9852
9853 2010-04-21 Dan Nicolaescu <local_user@dannlt>
9854
9855 Remove NOMULTIPLEJOBS, unused.
9856 * s/template.h (NOMULTIPLEJOBS):
9857 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
9858
9859 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
9860 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
9861 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
9862 detects -znocombreloc and passes it to the linker
9863 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
9864
9865 2010-04-21 Glenn Morris <rgm@gnu.org>
9866
9867 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
9868
9869 2010-04-21 Karel Klíč <kklic@redhat.com>
9870
9871 * Makefile.in (LIBSELINUX_LIBS): New.
9872 (LIBES): Add $LIBSELINUX_LIBS.
9873 * eval.c, lisp.h (call7): New function.
9874 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
9875 (Ffile_selinux_context, Fset_file_selinux_context):
9876 New functions.
9877 (Fcopy_file): New parameter preserve-selinux-context.
9878 (Frename_file): Preserve selinux context when renaming by copy-file.
9879
9880 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
9881 Eli Zaretskii <eliz@gnu.org>
9882
9883 Don't depend on cm.c or termcap.c on Windows, use stubs.
9884 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
9885 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
9886 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
9887 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
9888 (sys_tputs, sys_tgetstr): New stubs.
9889 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
9890 (tputs, tgetstr): New; define to sys_*.
9891
9892 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
9893
9894 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
9895
9896 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9897
9898 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
9899 Just signal a warning rather than an error when inside a let.
9900 (Fmake_variable_frame_local): Add the same test.
9901
9902 * font.c (syms_of_font): Make the style table vars read-only.
9903
9904 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
9905 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
9906
9907 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
9908
9909 2010-04-20 Eli Zaretskii <eliz@gnu.org>
9910
9911 Fix R2L paragraph display on TTY.
9912
9913 * xdisp.c (unproduce_glyphs): New function.
9914 (display_line): Use it when produced glyphs are discarded from R2L
9915 glyph rows.
9916 (append_composite_glyph): In R2L rows, prepend the glyph rather
9917 than appending it.
9918
9919 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
9920 rather than append it. Set up the resolved_level and bidi_type
9921 attributes of the appended glyph.
9922 (produce_special_glyphs): Mirror the backslash continuation
9923 character in R2L lines.
9924
9925 Implement display of R2L paragraphs in GUI sessions.
9926
9927 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
9928 append_stretch_glyph.
9929 (set_cursor_from_row) <cursor_x>: Remove unused variable.
9930 Fix off-by-one error in computing x at end of text in the row.
9931 (append_stretch_glyph): In reversed row, prepend the glyph rather
9932 than append it. Set resolved_level and bidi_type of the glyph.
9933 (extend_face_to_end_of_line): If the row is reversed, prepend a
9934 stretch glyph whose width is such that the rightmost glyph will be
9935 drawn at the right margin of the window. Fix off-by-one error on
9936 TTY frames in testing whether a line needs face extension.
9937 Fix face extension at ZV. If this is the last glyph row, use
9938 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
9939 region face.
9940 (set_cursor_from_row, display_line):
9941 Use MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
9942 row->continuation_lines_width.
9943 (next_element_from_buffer): Don't call bidi_paragraph_init if we
9944 are at ZV. Fixes a crash when reseated to ZV by
9945 try_window_reusing_current_matrix.
9946 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
9947 which happens with R2L glyph rows. Fixes a crash when inserting a
9948 character at end of an R2L line.
9949 (set_cursor_from_row): Don't be fooled by truncated rows: don't
9950 treat them as having zero-width characters. Improve comments.
9951 Don't reverse pos_before and pos_after for reversed glyph rows.
9952 Set cursor.x to negative value when the cursor might be on the
9953 left fringe.
9954 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
9955 left fringe, not the right one.
9956 (notice_overwritten_cursor, draw_phys_cursor_glyph)
9957 (erase_phys_cursor): For reversed cursor_row, support cursor on
9958 the left fringe.
9959
9960 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
9961 of continuation indicators on the fringes.
9962 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
9963 left fringe.
9964
9965 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
9966 draw cursor on the left fringe.
9967
9968 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
9969 cursor on the left fringe.
9970
9971 * dispnew.c (update_text_area): Handle reversed desired rows when
9972 the cursor is on the left fringe.
9973 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
9974 below, not by 0, for when the cursor is on the left fringe.
9975
9976 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
9977
9978 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
9979 widget is a scrollbar.
9980
9981 2010-04-20 Kenichi Handa <handa@m17n.org>
9982
9983 * charset.c (char_charset): Consider Vcharset_non_preferred_head
9984 only when the arg CHARSET_LIST is nil.
9985
9986 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9987
9988 Make variable forwarding explicit rather the using special values.
9989 Basically, this makes the structure of buffer-local values and object
9990 forwarding explicit in the type of Lisp_Symbols rather than use
9991 special Lisp_Objects for that. This tends to lead to slightly more
9992 verbose code, but is more C-like, simpler, and makes it easier to make
9993 sure we handled all cases, among other things by letting the compiler
9994 help us check it.
9995 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
9996 Removing forwarding objects.
9997 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
9998 (struct Lisp_Symbol): Make the various forms of variable-forwarding
9999 explicit rather than hiding them inside Lisp_Object "values".
10000 (XFWDTYPE): New macro.
10001 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
10002 (XBUFFER_LOCAL_VALUE): Remove.
10003 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
10004 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
10005 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
10006 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
10007 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
10008 Remove the Lisp_Misc_* header.
10009 (struct Lisp_Buffer_Local_Value): Redefine.
10010 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
10011 (struct Lisp_Misc_Any): Add filler to get the right size.
10012 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
10013 Lisp_Intfwd.
10014 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
10015 (DEFVAR_KBOARD): Allocate a forwarding object.
10016 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
10017 (let_shadows_global_binding_p): New function.
10018 (union Lisp_Val_Fwd): New type.
10019 (make_blv): New function.
10020 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
10021 (store_symval_forwarding, swap_in_global_binding, Fboundp)
10022 (swap_in_symval_forwarding, find_symbol_value, Fset)
10023 (let_shadows_buffer_binding_p, set_internal, default_value)
10024 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
10025 (Fkill_local_variable, Fmake_variable_frame_local)
10026 (Flocal_variable_p, Flocal_variable_if_set_p)
10027 (Fvariable_binding_locus):
10028 * xdisp.c (select_frame_for_redisplay):
10029 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
10030 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
10031 * frame.c (store_frame_param):
10032 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
10033 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
10034 value structure.
10035 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
10036 (clone_per_buffer_values): Only adjust markers into the current buffer.
10037 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
10038 (Fbuffer_local_value, set_buffer_internal_1)
10039 (swap_out_buffer_local_variables):
10040 Adapt to the new symbol value structure.
10041 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
10042 (defvar_per_buffer): Take a new arg for the fwd object.
10043 (buffer_lisp_local_variables): Return a proper alist (different fix
10044 for bug#4138).
10045 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
10046 (Fgarbage_collect): Don't handle buffer_defaults specially.
10047 (mark_object): Handle new symbol value structure rather than the old
10048 special Lisp_Misc_* objects.
10049 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
10050 * term.c (set_tty_color_mode):
10051 * bidi.c (bidi_initialize): Don't access the ->value field directly.
10052 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
10053 a buffer_local_flags.
10054 * print.c (print_object): Get rid of impossible forwarding objects.
10055
10056 2010-04-19 Eli Zaretskii <eliz@gnu.org>
10057
10058 * bidi.c (bidi_get_type, bidi_get_category)
10059 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
10060 (bidi_type_of_next_char, bidi_level_of_next_char):
10061 Declare static. Use `INLINE' rather than `inline'.
10062
10063 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
10064
10065 * dired.c (Ffile_attributes): Fix typo in docstring.
10066
10067 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10068
10069 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
10070 NSInteger (Bug#5811).
10071
10072 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10073
10074 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
10075 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
10076
10077 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10078
10079 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
10080
10081 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
10082
10083 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
10084 terminal frames (Bug#5837).
10085
10086 2010-04-19 Eli Zaretskii <eliz@gnu.org>
10087
10088 * .gdbinit (xsubchartable): New command.
10089
10090 2010-04-19 Eli Zaretskii <eliz@gnu.org>
10091
10092 * xdisp.c (display_line): Don't write beyond the last glyph row in
10093 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
10094 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
10095 and
10096 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
10097
10098 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
10099
10100 * alloc.c (Fpurecopy): Hash-cons if requested.
10101 (syms_of_alloc): Update purify-flag docstring.
10102
10103 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
10104
10105 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
10106 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
10107
10108 2010-04-17 Eli Zaretskii <eliz@gnu.org>
10109
10110 Fix a crash when an NSM character is inserted at BEGV.
10111
10112 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
10113 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
10114 NEUTRAL_B or UNKNOWN_BT.
10115
10116 2010-04-16 Eli Zaretskii <eliz@gnu.org>
10117
10118 * xdisp.c (set_cursor_from_row): Don't consider possibility of
10119 other rows with cursor unless they are different from this row and
10120 this row is part of a continued line. (Bug#5943)
10121
10122 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
10123
10124 * s/freebsd.h: Restore osreldate.h include.
10125 Suggested by Naohiro Aota.
10126
10127 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
10128
10129 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
10130
10131 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
10132
10133 * s/cygwin.h: Avoid linking against static libgcc.
10134
10135 2010-04-15 Juri Linkov <juri@jurta.org>
10136
10137 * window.c: Add Qscroll_command.
10138 Remove Vscroll_preserve_screen_position_commands.
10139 (window_scroll_pixel_based, window_scroll_line_based): Check the
10140 `scroll-command' property on the last command instead of searching
10141 the last command in Vscroll_preserve_screen_position_commands.
10142 (syms_of_window): Initialize and staticpro `Qscroll_command'.
10143 Put Qscroll_command property on Qscroll_up and Qscroll_down.
10144 (scroll-preserve-screen-position): Doc fix.
10145 (Vscroll_preserve_screen_position_commands): Remove variable.
10146
10147 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
10148
10149 * xdisp.c (message): Do not use NO_ARG_ARRAY.
10150
10151 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
10152
10153 Reduce cpp use in Makefile.in.
10154 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
10155 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
10156 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
10157 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
10158 (CRT0_COMPILE): Remove, inline it in the only user.
10159
10160 2010-04-14 Juri Linkov <juri@jurta.org>
10161
10162 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
10163 `scroll-up-command' and `M-v' from `scroll-down' to
10164 `scroll-down-command'.
10165
10166 2010-04-14 Juri Linkov <juri@jurta.org>
10167
10168 * window.c (Vscroll_preserve_screen_position_commands): New variable
10169 with the default value as the list of Qscroll_down and Qscroll_up.
10170 (window_scroll_pixel_based, window_scroll_line_based): Search the
10171 last command in the list Vscroll_preserve_screen_position_commands
10172 instead of comparing with Qscroll_up and Qscroll_down.
10173
10174 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
10175
10176 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
10177 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
10178 does that.
10179
10180 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
10181 to zero.
10182
10183 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
10184
10185 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
10186
10187 Try to solve the problem of spurious EOF chars in long lines of text
10188 sent to interactive subprocesses.
10189 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
10190 (system_process_attributes): Remove unused var `ttotal'.
10191 * process.c (send_process): Don't bother breaking long line with EOF
10192 chars when talking to ttys any more.
10193 (wait_reading_process_output): Output a warning when called in such
10194 a way that it could block without being interruptible.
10195
10196 Try to detect file modification within the same second.
10197 * buffer.h (struct buffer): New field modtime_size.
10198 * buffer.c (reset_buffer): Initialize it.
10199 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
10200 (Fverify_visited_file_modtime): Check it.
10201 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
10202 (Fset_visited_file_modtime): Set (or clear) it.
10203
10204 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
10205
10206 * process.c (status_notify): Remove unused var `ro'.
10207
10208 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
10209
10210 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
10211 more than one visual (Bug#5938).
10212
10213 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
10214
10215 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
10216 Undefine.
10217
10218 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
10219
10220 Remove C_SWITCH_SYSTEM_TEMACS.
10221 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
10222 (malloc, realloc, free): Use emacs, not temacs for conditional
10223 definition.
10224
10225 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
10226 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
10227
10228 Use autoconf, not cpp for some variables.
10229 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
10230 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
10231 (ALL_CFLAGS): Use them as make variables.
10232 (really-lwlib, really-oldXMenu): Do not pass them.
10233
10234 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
10235
10236 * xmenu.c (apply_systemfont_to_dialog): New.
10237 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
10238
10239 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
10240
10241 * process.c (exec_sentinel): Preserve current-buffer.
10242
10243 * process.c (read_process_output): Move the save-current-buffer to
10244 apply to both the filter and the non-filter branches.
10245
10246 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
10247
10248 * s/msdos.h (UNEXEC): New definition.
10249
10250 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10251
10252 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
10253 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
10254
10255 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
10256 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
10257 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
10258 TRY_WINDOW_CHECK_MARGINS.
10259
10260 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
10261 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
10262 width only when it is for padding.
10263
10264 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
10265
10266 * xfns.c (Fx_show_tip): Call try_window in a loop until
10267 fonts_changed_p is zero (Bug#2423).
10268
10269 2010-04-08 Eli Zaretskii <eliz@gnu.org>
10270
10271 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
10272 the end of TEXT_AREA. (Bug#5856)
10273
10274 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
10275
10276 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
10277 HAVE_GCONF.
10278
10279 2010-04-08 Eli Zaretskii <eliz@gnu.org>
10280
10281 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
10282 prev.orig_type, for resolving type of NSM. (Bug#5858)
10283
10284 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
10285
10286 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
10287 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
10288 in current_font.
10289 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
10290 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
10291 New functions.
10292 (syms_of_xsettings): Initialize current_font.
10293 defsubr Sfont_get_system_normal_font.
10294
10295 * xsettings.h (Ffont_get_system_normal_font)
10296 (xsettings_get_system_normal_font): Declare.
10297
10298 * xfns.c (extern xlwmenu_default_font): Remove.
10299 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
10300 to xlwmenu.c.
10301
10302 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
10303 menu items in UTF-8.
10304
10305 * xmenu.c: Include xsettings.h and xlwmenu.h if USE_LUCID.
10306 (apply_systemfont_to_menu): New function.
10307 (set_frame_menubar, create_and_show_popup_menu):
10308 Call apply_systemfont_to_menu.
10309
10310 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
10311
10312 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
10313 FRAME_LINE_TO_PIXEL_Y.
10314
10315 * xterm.c (x_set_window_size_1): Don't add border_width/height to
10316 pixelwidth/height.
10317
10318 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
10319
10320 Simplify code for HP machines.
10321 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
10322 for GNU_LINUX, not needed.
10323 (UNEXEC, NEED_BSDTTY): Move definitions...
10324 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
10325
10326 * m/iris4d.h (UNEXEC): Move definition ...
10327 * s/irix6-5.h (UNEXEC): ... here.
10328
10329 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
10330
10331 * xfns.c (set_machine_and_pid_properties): New function.
10332 (Fx_create_frame): Call set_machine_and_pid_properties.
10333
10334 2010-04-03 Eli Zaretskii <eliz@gnu.org>
10335
10336 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char):
10337 Check bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
10338 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
10339
10340 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
10341 in this function. (Bug#5703)
10342
10343 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
10344
10345 * nsterm.h: Fix last change.
10346
10347 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
10348
10349 * m/intel386.h (NO_REMAP): Move definition ...
10350 * s/msdos.h (NO_REMAP): ... here.
10351
10352 * m/vax.h (CRT0_DUMMIES): Remove, unused.
10353
10354 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
10355 used on those platforms.
10356
10357 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
10358
10359 Remove extern errno declarations.
10360 * xterm.c:
10361 * xrdb.c:
10362 * w32term.c:
10363 * unexec.c:
10364 * unexaix.c:
10365 * sysdep.c:
10366 * process.c:
10367 * lread.c:
10368 * keyboard.c:
10369 * floatfns.c:
10370 * filelock.c:
10371 * fileio.c:
10372 * emacs.c (main):
10373 * ecrt0.c:
10374 * dispnew.c:
10375 * callproc.c:
10376 * buffer.c: Remove errno extern declarations.
10377 * s/netbsd.h (NEED_ERRNO): Remove.
10378
10379 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
10380
10381 Remove all uses of LIBX11_SYSTEM.
10382 * Makefile.in (LIBX11_SYSTEM): Remove.
10383 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
10384 instead.
10385
10386 2010-04-01 Eli Zaretskii <eliz@gnu.org>
10387
10388 Remove support for DJGPP v1.x (bug#5813).
10389
10390 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
10391 * s/msdos.h:
10392 * unexec.c (make_hdr, copy_text_and_data):
10393 * sysdep.c (wait_for_termination, sys_subshell):
10394 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
10395 (IT_set_terminal_modes, __write, _rename, gethostname)
10396 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
10397 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
10398 the value of __DJGPP__.
10399 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
10400 compatibility code.
10401 * lread.c:
10402 * gmalloc.c (memalign):
10403 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
10404 * emacs.c (main):
10405 * dosfns.c (init_dosfns):
10406 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
10407
10408 2010-04-01 Eli Zaretskii <eliz@gnu.org>
10409
10410 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
10411 string with `cursor' property comes from an `after-string'
10412 overlay. (Bug#5816)
10413
10414 2010-04-01 Glenn Morris <rgm@gnu.org>
10415
10416 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
10417 Define as Makefile variables.
10418 (LIBX): Use above variables rather than directly using autoconf.
10419
10420 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
10421
10422 Clean up BSD_SYSTEM use.
10423 * xterm.c:
10424 * process.c:
10425 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
10426 for including <sys/ioctl.h>.
10427 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
10428 code is only used for MSDOS.
10429
10430 2010-03-31 Juri Linkov <juri@jurta.org>
10431
10432 * image.c: Add `Qextension_data'.
10433 (syms_of_image): Initialize and staticpro `Qextension_data'.
10434 (Fimage_metadata): Rename from `Fimage_extension_data'.
10435 (gif_load): Put GIF extension data to the property
10436 `Qextension_data'.
10437
10438 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10439
10440 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
10441 * nsterm.h: Fix prototype.
10442
10443 2010-03-31 Eli Zaretskii <eliz@gnu.org>
10444
10445 * xdisp.c (highlight_trailing_whitespace): Support highlight of
10446 trailing whitespace in right-to-left rows.
10447
10448 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10449
10450 Get rid of the direct_output optimizations.
10451 * keyboard.c (nonundocount): Remove extern declaration.
10452 (command_loop_1): Remove brittle optimisation for cheap and
10453 common operations.
10454 * xdisp.c (redisplay_internal): Don't bother checking
10455 redisplay_performed_directly_p any more.
10456 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
10457 any more.
10458 * dispnew.c (redisplay_performed_directly_p)
10459 (direct_output_for_insert, direct_output_forward_char):
10460 * dispextern.h (redisplay_performed_directly_p)
10461 (direct_output_for_insert, direct_output_forward_char): Remove.
10462 * cmds.c (nonundocount): Make it static.
10463
10464 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
10465
10466 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
10467
10468 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
10469
10470 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
10471 invisible (Bug#5766).
10472
10473 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
10474
10475 * xdisp.c (x_consider_frame_title, update_window_cursor):
10476 Remove HAVE_NS conditionals.
10477 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
10478
10479 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
10480 filename for the title.
10481 (ns_set_doc_edited): Do nothing if the selected window is a
10482 minibuffer window.
10483
10484 * nsterm.h: Add prototypes for ns_set_name_as_filename and
10485 ns_set_doc_edited.
10486
10487 * nsterm.m: Remove unneeded prototype.
10488
10489 2010-03-31 Glenn Morris <rgm@gnu.org>
10490
10491 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
10492 in the DOC file. (Bug#5336)
10493
10494 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10495
10496 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
10497
10498 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10499
10500 * window.c (keys_of_window): Remove redundant/overridden bindings.
10501
10502 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10503
10504 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
10505 Restore original behavior when the iterator is not bidi_p.
10506
10507 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
10508
10509 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
10510
10511 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10512
10513 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
10514 are outside the range of cached character positions.
10515
10516 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
10517
10518 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
10519
10520 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10521
10522 Initial support for bidirectional editing.
10523
10524 * Makefile.in (obj): Include bidi.o.
10525 (bidi.o): New target.
10526
10527 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
10528 ($(BLD)/bidi.$(O)): New target.
10529
10530 * bidi.c: New file.
10531
10532 * buffer.h (struct buffer): New members bidi_display_reordering
10533 and bidi_paragraph_direction.
10534
10535 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
10536 and bidi_paragraph_direction.
10537 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
10538 and bidi-paragraph-direction.
10539 (Fbuffer_swap_text): Swap the values of
10540 bidi_display_reordering and bidi_paragraph_direction.
10541
10542 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
10543 (bidi_type_t, bidi_dir_t): New types.
10544 (bidi_saved_info, bidi_stack, bidi_it): New structures.
10545 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
10546 prev_stop, base_level_stop, and eol_pos.
10547 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
10548 (IT_STACK_SIZE): Enlarge to 5.
10549 (struct glyph_row): New member reversed_p.
10550 <string_buffer_position>: Update prototype.
10551 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
10552 glyph_row if bidi_it.paragraph_dir == R2L.
10553 (struct glyph): New members resolved_level and bidi_type.
10554
10555 * dispnew.c (direct_output_forward_char): Give up if we need bidi
10556 processing or buffer's direction is right-to-left.
10557 (prepare_desired_row): Preserve the reversed_p flag.
10558 (row_equal_p): Compare the reversed_p attributes as well.
10559
10560 * xdisp.c (init_iterator): Initialize it->bidi_p.
10561 Call bidi_init_it and set it->paragraph_embedding from the current
10562 buffer's value of bidi_paragraph_direction.
10563 (reseat_1): Initialize bidi_it.first_elt.
10564 (set_iterator_to_next, next_element_from_buffer): Use the value of
10565 paragraph_embedding to determine the paragraph direction.
10566 (set_iterator_to_next): Under bidi reordering, call
10567 bidi_get_next_char_visually. Call bidi_paragraph_init if the
10568 new_paragraph flag is set in the bidi iterator.
10569 (next_element_from_buffer): If bidi_it.first_elt is set,
10570 initialize paragraph direction and find the first character to
10571 display in the visual order. If reseated to a middle of a line,
10572 prime the bidi iterator starting at the line's beginning.
10573 Handle the situation where we overstepped stop_charpos due to
10574 non-linearity of the bidi iteration. Likewise for when we back up
10575 beyond the previous stop_charpos. When moving across stop_charpos,
10576 record it in prev_stop.
10577 (display_line): Set row->end and it->start for the next row to the
10578 next character in logical order. Always extend reversed_p rows to
10579 the end of line, even if they end at ZV. Copy the reversed_p flag
10580 to the next glyph row. Keep calling set_cursor_from_row for
10581 bidi-reordered rows even if we already have a possible candidate
10582 for cursor position. Set row_end after all the row's glyphs have
10583 been produced, by looping over the glyphs. Record the position
10584 after EOL in it->eol_pos, and use it to set end_pos of the last
10585 row produced for a continued line.
10586 <Qright_to_left, Qleft_to_right>: New variables.
10587 (syms_of_xdisp): Initialize and staticpro them.
10588 (string_buffer_position_lim): New function.
10589 (string_buffer_position): Most of code moved to
10590 string_buffer_position_lim. Last argument and return value are
10591 now EMACS_INT; all callers changed.
10592 (set_cursor_from_row): Rewritten to support bidirectional text and
10593 reversed glyph rows.
10594 (text_outside_line_unchanged_p, try_window_id):
10595 Disable optimizations if we are reordering bidirectional text and the
10596 paragraph direction can be affected by the change.
10597 (append_glyph, append_composite_glyph)
10598 (produce_image_glyph, append_stretch_glyph): Set the
10599 resolved_level and bidi_type members of each glyph.
10600 (append_glyph): If the glyph row is reversed, prepend the glyph
10601 rather than appending it.
10602 (handle_stop_backwards): New function.
10603 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
10604 (reseat): Call handle_stop_backwards to recompute prev_stop and
10605 base_level_stop for the new position.
10606 (handle_invisible_prop): Under bidi iteration, skip invisible text
10607 using bidi_get_next_char_visually. If we are `reseat'ed, init the
10608 paragraph direction. Update IT->prev_stop after skipping
10609 invisible text.
10610 (move_it_in_display_line_to): New variables prev_method
10611 and prev_pos. Compare for strict equality in
10612 BUFFER_POS_REACHED_P.
10613 (try_cursor_movement): Examine all the candidate rows that occlude
10614 point, to return the best match. If rows are bidi-reordered
10615 and point moved backwards, back up to the row that is not a
10616 continuation line, and start looking for a suitable row from
10617 there.
10618
10619 * term.c (append_glyph): Reverse glyphs by pre-pending them,
10620 rather than appending, if the glyph_row's reversed_p flag is set.
10621 Set the resolved_level and bidi_type members of each glyph.
10622
10623 * .gdbinit (pbiditype): New command.
10624 (pgx): Use it to display bidi level and type of the glyph.
10625 (pitx): Display some bidi information about the iterator.
10626 (prowlims, pmtxrows): New commands.
10627
10628 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
10629
10630 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
10631 * s/usg5-4.h (LIBS_DEBUG):
10632 * s/irix6-5.h (C_DEBUG_SWITCH):
10633 * s/gnu-linux.h (LIBS_DEBUG):
10634 * s/darwin.h (LIBS_DEBUG):
10635 * s/bsd-common.h (LIBS_DEBUG):
10636 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
10637 * m/iris4d.h (LIBS_DEBUG):
10638 * m/hp800.h (LIBS_DEBUG): Remove definitions.
10639
10640 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
10641 (LIBS_DEBUG): Remove definition.
10642
10643 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
10644
10645 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
10646 Windows.
10647
10648 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10649
10650 * process.c (Fmake_network_process): Don't call turn_on_atimers around
10651 `connect' (Bug#5723).
10652
10653 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
10654
10655 * process.c (Fmake_network_process): Call `select' for interrupted
10656 `connect' rather than creating new socket (Bug#5173).
10657
10658 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
10659
10660 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
10661
10662 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
10663
10664 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
10665
10666 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10667
10668 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
10669 XLoadQueryFont.
10670
10671 2010-03-24 Kenichi Handa <handa@m17n.org>
10672
10673 * coding.c (decode_coding_ccl): Fix previous change for the
10674 multibyte case.
10675 (encode_coding_ccl): Don't setup ccl program here. Fix for the
10676 case that the output buffer is fullfilled.
10677 (encode_coding): Setup ccl program here.
10678
10679 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
10680
10681 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
10682
10683 Simplify LIBS_MACHINE definitions.
10684 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
10685 * m/iris4d.h (LIBS_MACHINE): Likewise.
10686 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
10687 * s/aix4-2.h (LIBS_SYSTEM): ... here.
10688 * s/netbsd.h: Remove commented out code.
10689
10690 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
10691
10692 Remove dead code dealing with POSIX_SIGNALS.
10693 * atimer.c (set_alarm): Remove dead code, all USG systems define
10694 POSIX_SIGNALS.
10695 * data.c (arith_error): Likewise.
10696 * keyboard.c (input_available_signal, handle_user_signal)
10697 (interrupt_signal): Likewise.
10698 * process.c (sigchld_handler): Likewise.
10699 (create_process): Remove if 0 code. Remove HPUX conditional when
10700 !defined (POSIX_SIGNALS), it cannot be true.
10701 * syssignal.h: Remove USG5_4 and USG conditionals when
10702 !POSIX_SIGNALS, they cannot be true.
10703
10704 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
10705 NO_SOCK_SIGIO, not used anymore.
10706
10707 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
10708
10709 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
10710 support vax on BSDs.
10711
10712 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
10713 * s/aix4-2.h (ORDINARY_LINK): ... here.
10714
10715 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
10716
10717 * Makefile.in (abs_builddir): Define.
10718 (bootstrap_exe): Use it.
10719 (VPATH): Use $(srcdir) instead of @srcdir@.
10720
10721 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
10722
10723 * Makefile.in (bootstrap_exe): Use an absolute name.
10724
10725 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10726
10727 Remove support for old GNU/Linux using libc version 5.
10728 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
10729 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
10730
10731 Consolidate redundant definitions in s/bsd-common.h.
10732 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10733 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10734 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
10735 doing it in all files that include this one.
10736 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10737 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10738 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10739 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10740 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10741 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10742 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10743 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10744 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10745
10746 Consolidate redundant definitions.
10747 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
10748 it's undefined in all files that include this one.
10749 (POSIX_SIGNALS): Define here instead of doing it in all files that
10750 include this one.
10751 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10752 (POSIX_SIGNALS): Do not define.
10753 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10754 (POSIX_SIGNALS): Do not define.
10755 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10756 (POSIX_SIGNALS): Do not define.
10757
10758 Remove support for old UNIX System V systems.
10759 * s/unixware.h: Add the contents of s/usg5-4-2.h.
10760 * s/usg5-4-2.h: Remove.
10761
10762 Remove support for Solaris on PPC and for old versions.
10763 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
10764 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
10765 that cancel each other.
10766 * s/sol2-3.h:
10767 * s/sol2-4.h:
10768 * s/sol2-5.h: Remove.
10769 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
10770 (NO_REMAP): Remove, unused.
10771 (UNEXEC): Move definition ...
10772 * s/aix4-2.h (UNEXEC): ... here.
10773
10774 * s/openbsd.h: Remove support for non-ELF and for systems that do
10775 not support shared libraries.
10776 * s/netbsd.h:
10777 * s/freebsd.h: Likewise.
10778
10779 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10780
10781 Remove non-working support for lynxos 3.0.
10782 * s/lynxos.h: Remove file.
10783
10784 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
10785 COFF_BSD_SYMBOLS, nothing defines it anymore.
10786
10787 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10788
10789 Remove obsolete uses of HAVE_SHM.
10790 * emacs.c (standard_args):
10791 (Fdump_emacs):
10792 (syms_of_emacs): Remove code depending on HAVE_SHM.
10793
10794 * alloc.c: Remove HAVE_SHM dependent definition.
10795
10796 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
10797
10798 2010-03-18 Glenn Morris <rgm@gnu.org>
10799
10800 * emacs.c (USAGE4): Hard-code bug address.
10801 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
10802 (bug_reporting_address): Remove.
10803 (main): Don't call bug_reporting_address.
10804
10805 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
10806 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
10807
10808 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
10809
10810 * xfns.c (Fx_create_frame):
10811 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
10812 on left.
10813
10814 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
10815
10816 * editfns.c (Fformat): Account for string precision when computing
10817 field width (Bug#5710).
10818
10819 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
10820
10821 * xfns.c (Fx_create_frame): Set default to Qright.
10822
10823 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
10824 all window systems.
10825
10826 2010-03-12 Eli Zaretskii <eliz@gnu.org>
10827
10828 These changes remove termcap.c from the build on Posix platforms.
10829 * Makefile.in (termcapobj): Move termcap.o from here...
10830 (MSDOS_OBJ): ...to here.
10831 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
10832 now identical to when LIBS_TERMCAP is defined.
10833
10834 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
10835
10836 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
10837
10838 * config.in: Regenerated. (See top-level ChangeLog.)
10839
10840 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
10841
10842 * Branch for 23.2.
10843
10844 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
10845
10846 Cleanup setup of gl_state in various parts of the code.
10847 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
10848 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
10849 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
10850 (skip_chars):
10851 * regex.c (regex_compile): Use it.
10852 (re_compile_pattern): Don't set gl_state.current_syntax_table since
10853 it's now set in regex_compile when/if we need it.
10854
10855 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
10856
10857 Make it possible to C-g in a tight bytecode loop again (bug#5680).
10858 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
10859 (QUIT): Use it to consolidate code and remove redundancy.
10860 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
10861
10862 * regex.c (regex_compile): Setup gl_state as well.
10863
10864 * syntax.c (skip_chars): Setup gl_state (bug#3823).
10865 (in_classes): Use CONSP before XCAR/XCDR.
10866
10867 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
10868
10869 * keymap.c (Fwhere_is_internal): Use Fequal to compare
10870 definitions, so that keyboard macros are correctly handled
10871 (Bug#5481).
10872
10873 2010-03-02 Eli Zaretskii <eliz@gnu.org>
10874
10875 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
10876 text that could be relocated inside the call to emacs_mule_char.
10877 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
10878 (CODING_DECODE_CHAR): Add a comment describing its purpose.
10879
10880 2010-03-02 Kenichi Handa <handa@m17n.org>
10881
10882 * character.c (parse_str_as_multibyte): Fix handling of the
10883 multibyte form of raw-bytes.
10884 (str_as_multibyte): Likewise.
10885
10886 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
10887 form of raw-bytes.
10888
10889 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
10890
10891 * charset.c (load_charset_map_from_file)
10892 (load_charset_map_from_vector): Zero out allocated
10893 charset_map_entries before using them.
10894
10895 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
10896
10897 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
10898
10899 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
10900
10901 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
10902 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
10903
10904 2010-02-26 Kenichi Handa <handa@m17n.org>
10905
10906 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
10907
10908 * xdisp.c (reseat_to_string): Fix previous change.
10909
10910 2010-02-26 David Reitter <david.reitter@gmail.com>
10911
10912 * nsfont.m (nsfont_draw): ns_antialias_text should be a
10913 Lisp_Object (Bug#4736).
10914
10915 2010-02-25 Kenichi Handa <handa@m17n.org>
10916
10917 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
10918
10919 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
10920
10921 * xterm.c (XTflash): Move declarations before statements.
10922
10923 * gtkutil.c (xg_get_gdk_display): Remove (unused).
10924 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
10925 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
10926 (xg_create_tool_bar): Remove unused variables.
10927 (x_wm_set_size_hint): Move declarations before statements.
10928 (xg_create_frame_widgets): Remove variable grav.
10929
10930 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
10931
10932 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
10933
10934 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
10935
10936 * term.c (fatal): Add a final \n if needed (bug#5596).
10937
10938 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
10939
10940 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
10941
10942 2010-02-18 Glenn Morris <rgm@gnu.org>
10943
10944 * callint.c (Finteractive): Doc fix.
10945
10946 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
10947
10948 * coding.c (record_conversion_result):
10949 Handle CODING_RESULT_INSUFFICIENT_DST.
10950 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
10951 memory allocation error.
10952
10953 2010-02-17 Kenichi Handa <handa@m17n.org>
10954
10955 * coding.c (decode_coding_ccl): Don't setup ccl program here.
10956 Fix for the case that the output buffer is fullfilled.
10957 (decode_coding): Setup ccl program here. Keep looping when the
10958 decoder stopped because the output buffer is
10959 fullfilled (bug#5534).
10960
10961 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
10962
10963 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
10964
10965 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
10966 bug #5571.
10967 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
10968 overdrawn.
10969
10970 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
10971
10972 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
10973 doing_interact here.
10974 (ice_connection_closed): New function.
10975 (x_session_check_input, smc_die_CB, ice_io_error_handler)
10976 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
10977 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
10978 returns I/O error.
10979 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
10980 bug #5512.
10981
10982 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
10983
10984 * nsfont.m (nsfont_open): The system's value for the font descent
10985 is negative, so round it down to avoid clipping.
10986
10987 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
10988
10989 * charset.c (load_charset_map_from_file)
10990 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
10991 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
10992
10993 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
10994
10995 * charset.c (load_charset_map_from_file): Allocate large
10996 charset_map_entries structure on the heap rather than the stack.
10997 (Bug#5526).
10998
10999 2010-01-31 Kenichi Handa <handa@m17n.org>
11000
11001 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
11002 size in NAME is invalid, return -1 (Bug#5396).
11003
11004 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
11005
11006 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
11007 <deactivated@gmail.com> (Bug#3605).
11008
11009 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
11010
11011 * fileio.c (Frename_file): Correctly rename symlinks to
11012 directories (Bug#5496).
11013
11014 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
11015
11016 * nsterm.m (ns_ring_bell): Handle visible bell like X.
11017
11018 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
11019
11020 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
11021
11022 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
11023
11024 * frame.c (DEFAULT_ROWS): Change default to 35.
11025
11026 * xfns.c (x_default_font_parameter): Change default XFT font to
11027 monospace-10 (Bug#3643).
11028
11029 2010-01-29 Eli Zaretskii <eliz@gnu.org>
11030
11031 * w32inevt.c (key_event): Remove unnecessary comparison of
11032 event->uChar.AsciiChar with 128.
11033
11034 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
11035
11036 * fileio.c (Frename_file): Fix last change (Bug#5487).
11037
11038 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
11039
11040 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
11041
11042 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
11043
11044 * xfns.c (Fx_create_frame): Remove window size matching code from
11045 2010-01-15.
11046 (x_get_current_desktop, x_get_desktop_workarea): Remove.
11047
11048 2010-01-27 Jason Rumney <jasonr@gnu.org>
11049
11050 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
11051 (key_event): Use unicode for characters 128 and higher (Bug#4567).
11052
11053 2010-01-27 Kenichi Handa <handa@m17n.org>
11054
11055 * regex.c (analyse_first): Fix setting of fastmap for unibyte
11056 pattern string (Bug#4209).
11057
11058 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
11059
11060 * fileio.c (Frename_file): Call copy-directory and
11061 delete-directory for directories, in order to handle cross-device
11062 renaming (Bug#3353).
11063
11064 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
11065
11066 * xfns.c (Fx_create_frame): If frame height is too big, try
11067 sizes 24 and 10. Bug #3643.
11068
11069 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
11070
11071 Try and fix bug#788, hopefully for real this time.
11072 * keymap.c (shadow_lookup): Add `remap' arg.
11073 (describe_map, describe_vector): Update calls to shadow_lookup.
11074 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
11075 `remapped' so this flag is applicable to `sequence'. Be careful to
11076 perform remapping during shadow_lookup check of remapped_sequences.
11077
11078 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
11079
11080 * image.c (png_load): Use png_sig_cmp instead of the obsolete
11081 png_check_sig, which has been removed in libpng 1.4.
11082
11083 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
11084
11085 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
11086 lacks this header file).
11087
11088 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11089
11090 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
11091 as in Emacs 22.
11092
11093 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11094
11095 * lisp.h (make_pure_string): String pointer arg now points to const.
11096
11097 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
11098 args now point to const.
11099
11100 2010-01-22 Eli Zaretskii <eliz@gnu.org>
11101
11102 * lread.c (Fload): Don't treat files without .elc extension as
11103 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
11104 them. (bug#5303)
11105
11106 2010-01-20 Kenichi Handa <handa@m17n.org>
11107
11108 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
11109 treat the source as actual byte sequence.
11110
11111 2010-01-19 Alan Mackenzie <acm@muc.de>
11112
11113 Fix spurious before-change-functions invocation from (insert ?\n).
11114 * textprop.c (set_text_properties): Rename parameter
11115 `signal_after_change_p' to `coherent_change_p', and make the
11116 invocation of `modify_region' conditional on it.
11117
11118 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
11119
11120 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
11121 for debug purpose.
11122 (syms_of_xsettings): Declare xft-settings.
11123
11124 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
11125
11126 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
11127
11128 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11129
11130 * xterm.c (event_handler_gdk): Block input (Bug#5037).
11131
11132 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
11133
11134 * emacs.c (standard_args): Adjust arg priorities to reflect how
11135 they are processed in startup.el.
11136
11137 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
11138
11139 * Makefile.in (lisp, shortlisp): Update.
11140
11141 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11142
11143 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
11144 code, link the new kboard into all_kboard before running Lisp code,
11145 and protect the new terminal with GCPRO (Bug#5365).
11146 (x_term_init): Remove unused var `atom'.
11147 (x_delete_display, x_delete_terminal): Remove unused var `i'.
11148
11149 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
11150
11151 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
11152 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
11153 to find out usable size of the desktop. Don't make frames larger than
11154 this. Bug #3643.
11155
11156 2010-01-15 Kenichi Handa <handa@m17n.org>
11157
11158 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
11159
11160 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
11161
11162 * nsterm.m (Qnone): Define.
11163
11164 * nsfns.m (Qnone): Move definition to nsterm.m.
11165
11166 2010-01-14 Kenichi Handa <handa@m17n.org>
11167
11168 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
11169 systems.
11170
11171 2010-01-14 Kenichi Handa <handa@m17n.org>
11172
11173 Make auto-composition work on all buffers even if they are
11174 fundamental mode.
11175
11176 * composite.c (Vauto_composition_mode): New variable.
11177 (composition_compute_stop_pos): Check Vauto_composition_mode
11178 instead of Vauto_composition_function.
11179 (composition_adjust_point, Ffind_composition_internal): Likewise.
11180 (syms_of_composite): Declare Lisp variable
11181 "auto-composition-mode" here.
11182
11183 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
11184
11185 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
11186 during call to vendor-specific-keysyms (Bug#5365).
11187
11188 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11189
11190 * keyboard.c (input_available_signal) [SYNC_INPUT]:
11191 Call SIGNAL_THREAD_CHECK (Bug#5333).
11192
11193 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
11194 Call SIGNAL_THREAD_CHECK.
11195
11196 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
11197
11198 Try to fix bug#5314. This is probably not the final word, tho.
11199 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
11200 recent-auto-save-p as a side-effect.
11201 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
11202 * buffer.c (Fkill_buffer, reset_buffer):
11203 * editfns.c (Fsubst_char_in_region):
11204 * fileio.c (Finsert_file_contents, Fdo_auto_save)
11205 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
11206
11207 2010-01-13 Kenichi Handa <handa@m17n.org>
11208
11209 Display buffer name, etc. in mode line by composing correctly.
11210
11211 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
11212 STRING is not nil.
11213 (display_mode_element): Adjust for the change of
11214 decode_mode_spec and display_line.
11215 (decode_mode_spec): Change arg MULTIBYTE to STRING.
11216 (display_string): Handle the case that STRING is non-null and
11217 LISP_STRING is not nil.
11218
11219 * xterm.c (x_draw_composite_glyph_string_foreground):
11220 Pay attention to s->face->overstrike.
11221
11222 * composite.c (composition_reseat_it): Don't check PT if STRING is
11223 non nil.
11224
11225 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11226
11227 * keyboard.c (read_char): Don't apply previous change when current
11228 buffer is unchanged by command execution.
11229
11230 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
11231
11232 * keyboard.c (read_char): Return after executing from special map.
11233
11234 2010-01-12 Glenn Morris <rgm@gnu.org>
11235
11236 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
11237 bug-gnu-emacs rather than emacs-pretest-bug.
11238
11239 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
11240
11241 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
11242 initializing the Lisp variables that depend on them.
11243
11244 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11245
11246 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
11247 Clear areas that will not be updated after change of menu bar lines.
11248 Clear the menu bar window's current matrix when the window gets empty.
11249
11250 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
11251
11252 * intervals.h, textprop.c (extend_property_ranges): Return value
11253 and args changed. Discard properties that begin at or after the
11254 new end (Bug#5306).
11255
11256 * editfns.c (Fformat): Caller changed.
11257
11258 * nsterm.m (ns_set_default_prefs): Delete function.
11259 (syms_of_nsterm): Initialize ns_command_modifier,
11260 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
11261 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
11262
11263 * xdisp.c (pos_visible_p): Check for invisible text at the correct
11264 position (Bug#4040).
11265
11266 2010-01-09 Eli Zaretskii <eliz@gnu.org>
11267
11268 * editfns.c (Ffloat_time): Doc fix.
11269
11270 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
11271
11272 * xfns.c (Fx_create_frame): Don't create frame larger than display
11273 by default bug#3643.
11274
11275 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11276
11277 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
11278 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
11279 windows above internal border.
11280
11281 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
11282 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
11283 windows above internal border.
11284
11285 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
11286 tool bar windows specially.
11287
11288 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
11289
11290 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
11291 specially.
11292 (XTflash): Take account of menu bar height.
11293
11294 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
11295 specially.
11296
11297 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
11298
11299 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
11300 also be true before we can return early (bug #5339).
11301
11302 2010-01-06 David Reitter <david.reitter@gmail.com>
11303
11304 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
11305 (Fns_display_usable_bounds): Rewrite, computing bounds properly
11306 (Bug#3233).
11307
11308 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
11309
11310 * font.c (font_open_entity): Enable chache and call cached_font_ok
11311 for the driver if defined.
11312 (QCuser_spec): New symbol.
11313 (font_spec_from_name): Save name as user-spec.
11314 (font_load_for_lface): Keep user-spec instead of name.
11315 (font_open_by_name): Save name as user-spec.
11316 (syms_of_font): Initialize QCuser_spec.
11317 (font_clear_prop): Clear name if it exists in font (bug#5157).
11318
11319 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
11320 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
11321 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
11322
11323 * font.h (struct font_driver): Add cached_font_ok.
11324
11325 * xterm.c (x_clear_frame): Queue draw for scroll bars.
11326
11327 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
11328
11329 * xterm.c (x_new_font): Move code for setting rows/cols before
11330 resizing ...
11331 (x_set_window_size): ... to here. Bug #2568.
11332
11333 * gtkutil.c (xg_clear_under_internal_border): New function.
11334 (xg_frame_resized, xg_frame_set_char_size):
11335 Call xg_clear_under_internal_border.
11336 (xg_update_scrollbar_pos): Clear under old scroll bar position.
11337
11338 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
11339
11340 * keyboard.c (read_key_sequence): Catch keyboard switch after
11341 making a new tty frame (Bug#5095).
11342
11343 2010-01-05 Kenichi Handa <handa@m17n.org>
11344
11345 * fontset.c (fontset_find_font): Fix getting the frame pointer.
11346
11347 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
11348
11349 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
11350 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
11351 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
11352
11353 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
11354
11355 * dbusbind.c (xd_add_watch): Improve debug message.
11356 (xd_remove_watch): Improve debug message. If DATA is the session
11357 bus, unset D-Bus session environment.
11358 (Fdbus_init_bus): Pass the bus as argument to
11359 dbus_connection_set_watch_functions. (Bug#5283)
11360
11361 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
11362
11363 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
11364
11365 * lread.c (syms_of_lread): Make it clearer that these are the
11366 names of loaded files (Bug#5068).
11367
11368 * eval.c (run_hook_with_args): Handle the case where the global
11369 value has the obsolete single-function form (Bug#5026).
11370
11371 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
11372
11373 * minibuf.c (Fall_completions): Minor optimization.
11374
11375 2009-12-26 Eli Zaretskii <eliz@gnu.org>
11376
11377 * .gdbinit (pgx): Fix display of composite glyphs.
11378 Display cmp.from and cmp.to as well.
11379 (pitx): Fix last change.
11380
11381 2009-12-25 Kenichi Handa <handa@m17n.org>
11382
11383 * composite.h (composition_adjust_point): Update prototype.
11384
11385 * composite.c (composition_reseat_it): Don't make a composition
11386 spanning over point.
11387 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
11388 composable characters.
11389 (composition_adjust_point): New arg NEW_PT. Callers changed.
11390
11391 * keyboard.c (command_loop_1): Force redisplay if the last point
11392 was within a composition.
11393 (adjust_point_for_property): Don't adjust point for automatic
11394 composition when called after buffer modification.
11395
11396 2009-12-19 Eli Zaretskii <eliz@gnu.org>
11397
11398 * .gdbinit (pitx): Don't use enum names, use their values.
11399 Remove reference to non-existing value GET_FROM_COMPOSITION.
11400 (pgx): Don't use enum names, use their values.
11401 (pitmethod): New helper command.
11402 (pitx): Use it to display iteration method.
11403 (pgrowit): New command.
11404
11405 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
11406
11407 Update dependencies in Makefile.in.
11408
11409 * Makefile.in (alloc.o): Depend on termhooks.h.
11410 (atimer.o): Depend on blockinput.h.
11411 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
11412 and frame.h.
11413 (callint.o): Depend on systime.h, coding.h, and composite.h.
11414 (callproc.o): Depend on buffer.h.
11415 (casefiddle.o): Don't depend on charset.h.
11416 (casetab.o): Depend on character.h.
11417 (ccl.o): Depend on composite.h.
11418 (chartab.o): Depend on ccl.h.
11419 (cm.o): Depend on dispextern.h.
11420 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
11421 (coding.o): Don't depend on $(INTERVALS_H).
11422 (composite.o): Don't depend on dispextern.h explicitly (it's in
11423 $(INTERVALS_H)). Depend on ccl.h.
11424 (data.o): Depend on systime.h, coding.h, composite.h,
11425 dispextern.h, font.h, and ccl.h.
11426 (dired.o): Depend on composite.h.
11427 (dispnew.o): Depend on coding.h. Don't depend explicitly on
11428 composite.h (it's in $(INTERVALS_H)).
11429 (doc.o): Depend on systime.h, coding.h, and composite.h.
11430 (editfns.o): Don't depend explicitly on dispextern.h.
11431 (emacs.o): Depend on frame.h and coding.h.
11432 (eval.o): Depend on coding.h, composite.h, and xterm.h.
11433 (fileio.o): Depend on frame.h and commands.h. Don't depend
11434 explicitly on dispextern.h.
11435 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
11436 composite.h.
11437 (fns.o): Don't depend on termhooks.h.
11438 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
11439 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
11440 coding.h, $(INTERVALS_H), window.h, xterm.h.
11441 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
11442 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
11443 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
11444 fontset.h, ccl.h, and ftfont.h.
11445 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
11446 (gtkutil.o): Depend on dispextern.h and composite.h.
11447 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
11448 termhooks.h, and ccl.h.
11449 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
11450 (intervals.o): Depend on systime.h and coding.h.
11451 (keyboard.o): Depend on composite.h and coding.h.
11452 (keymap.o): Depend on coding.h and frame.h.
11453 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
11454 (macros.o): Depend on systime.h, coding.h, and composite.h.
11455 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
11456 and atimer.h.
11457 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
11458 dispextern.h explicitly.
11459 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
11460 Don't depend explicitly on dispextern.h and composite.h.
11461 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
11462 (regex.o): Don't depend on charset.h.
11463 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
11464 (search.o): Don't depend explicitly on composite.h.
11465 (sound.o): Depend on atimer.h and systime.h.
11466 (syntax.o): Don't depend explicitly on composite.h.
11467 (sysdep.o): Depend on coding.h and composite.h.
11468 (term.o): Depend on xterm.h and buffer.h.
11469 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
11470 (textprop.o): Don't depend on dispextern.h explicitly.
11471 (undo.o): Depend on dispextern.h.
11472 (window.o): Depend on coding.h and termhooks.h. Don't depend on
11473 dispextern.h and composite.h explicitly.
11474 (xdisp.o): Depend on ccl.h.
11475 (xfaces.o): Depend on coding.h and ccl.h.
11476 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
11477 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
11478 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
11479 ftfont.h.
11480 (xgselect.o): New dependency.
11481 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
11482 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
11483 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
11484 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
11485 (xsmfns.o): Depend on frame.h and dispextern.h.
11486 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
11487 sysselect.h.
11488
11489 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
11490
11491 * font.c (Fclear_font_cache): Pass correct cache argument to
11492 font_clear_cache.
11493
11494 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
11495
11496 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
11497 twice.
11498
11499 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
11500
11501 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
11502 calling file-remote-p. Reported by Jim Meyering.
11503
11504 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
11505
11506 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
11507 avoid compiler warnings. (Bug #5217)
11508
11509 2009-12-14 Kenichi Handa <handa@m17n.org>
11510
11511 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
11512 in 8-bit encoding.
11513
11514 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
11515
11516 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
11517 tooltip windows.
11518
11519 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
11520
11521 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
11522 Xatom_net_window_type.
11523
11524 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
11525 Xatom_net_window_type.
11526
11527 * xterm.c (my_log_handler): New function.
11528 (x_term_init): Set my_log_handler as log handler during gtk_init
11529 so we can filter out buggy messages. (Bug #5120).
11530
11531 * xterm.c (xg_scroll_callback): Parameter list changed,
11532 use parameter GtkScrollType to determine scroll/line/page.
11533 Only allow dragging if a button < 4 is grabbed (bug #5177).
11534 (xg_end_scroll_callback): New function.
11535 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
11536 xg_create_scroll_bar.
11537
11538 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
11539 (scroll_end_callback): Remove.
11540 (xg_create_scroll_bar): Add parameter end_callback, bind it to
11541 button-release-event. Replace value-changed event with change-value,
11542 bug #5177.
11543 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
11544 bug #5177.
11545
11546 * gtkutil.h (XG_LAST_SB_DATA): Remove.
11547 (xg_create_scroll_bar): Add GCallback end_callback.
11548
11549 * xftfont.c (QClcdfilter): New variable.
11550 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
11551 (syms_of_xftfont): Initialize QClcdfilter.
11552
11553 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
11554
11555 * xsettings.c (struct xsettings): Add member seen.
11556 (parse_xft_settings): Update member seen with what we have read.
11557 Return non-zero if Xft-settings have been parsed, 0 otherwise.
11558 (apply_xft_settings): Only update Xft settings with what member seen
11559 indicates as new.
11560
11561 2009-12-12 Eli Zaretskii <eliz@gnu.org>
11562
11563 * dispextern.h (struct text_pos): Use EMACS_INT.
11564 (struct glyph): Use EMACS_INT for charpos.
11565 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
11566 region_beg_charpos, region_end_charpos,
11567 redisplay_end_trigger_charpos, and also for
11568 iterator_stack_entry.end_charpos and
11569 iterator_stack_entry.stop_charpos.
11570
11571 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
11572
11573 * gtkutil.c (scroll_end_callback): New function (bug #5177).
11574 (xg_create_scroll_bar): Call scroll_end_callback on button release
11575 event (bug #5177).
11576 (xg_event_is_for_scrollbar): != replaced with ==.
11577
11578 2009-12-12 Kenichi Handa <handa@m17n.org>
11579
11580 * ftfont.c (struct ftfont_info): New member matrix.
11581 (ftfont_open): Setup xftfont_info->matrix.
11582 (MFLTFontFT): New member matrix.
11583 (FLOOR, CEIL, ROUND): New macros.
11584 (ftfont_get_metrics): Handle matrix transformation.
11585 (ftfont_shape_by_flt): New arg matrix. Callers changed.
11586
11587 * xftfont.c (struct xftfont_info): New member matrix.
11588 (xftfont_open): Setup xftfont_info->matrix.
11589
11590 2009-12-10 Kenichi Handa <handa@m17n.org>
11591
11592 * xdisp.c (append_space_for_newline): Consider face-remapping.
11593
11594 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
11595
11596 * xsettings.c: Include "keyboard.h".
11597
11598 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
11599
11600 Fix implicit function declarations.
11601 * cmds.c: Include "frame.h".
11602 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
11603 * frame.h: Move declaration of delete_frame outside of
11604 HAVE_WINDOW_SYSTEM.
11605
11606 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
11607
11608 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
11609
11610 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
11611 GTK builds.
11612
11613 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
11614
11615 * unexelf.c (unexec): Don't search for .data twice.
11616
11617 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
11618
11619 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
11620 if push failed.
11621 (handle_line_prefix): Set avoid_cursor_p here. Check return value
11622 of push_display_prop (Bug#5000).
11623
11624 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
11625 value of font_list_entities (Bug#5085).
11626
11627 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
11628
11629 Fix `string-to-number' to deal consistently with integers and floats.
11630 * lread.c (isfloat_string): New argument ignore_trailing to accept all
11631 trailing characters, not just whitespace.
11632 (read1): Pass new arg 0 to keep old behavior.
11633 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
11634 trailing chars, as it is already done for integers. Doc fixes.
11635 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
11636
11637 2009-12-04 Eli Zaretskii <eliz@gnu.org>
11638
11639 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
11640 Delete unused enumeration value.
11641
11642 2009-12-03 Eli Zaretskii <eliz@gnu.org>
11643
11644 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
11645
11646 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
11647
11648 * process.c (Fmake_network_process): Fix up the tests for
11649 "connectionless socket", so they DTRT for seqpacket sockets as well.
11650
11651 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
11652
11653 * process.c (Qseqpacket): New symbol.
11654 (HAVE_SEQPACKET): New macro.
11655 (Fmake_network_process): Accept new :type `seqpacket'.
11656 (init_process): Add `seqpacket' feature when applicable.
11657 (syms_of_process): Initialize Qseqpacket.
11658
11659 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11660
11661 * font.c (font_load_for_lface, font_open_by_name): Don't store name
11662 if entity is Qnil.
11663
11664 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
11665
11666 * print.c (print_preprocess): Preprocess the key_and_value table of
11667 hashtables, even tho they're "hidden" (bug#5082).
11668
11669 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
11670
11671 * frame.c (frame_make_pointer_invisible)
11672 (frame_make_pointer_visible): Declare f before statements.
11673
11674 2009-11-28 Eli Zaretskii <eliz@gnu.org>
11675
11676 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
11677 omitted dependencies on lisp.h.
11678
11679 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
11680
11681 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
11682 is NULL.
11683
11684 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
11685
11686 * frame.c (frame_make_pointer_invisible)
11687 (frame_make_pointer_visible): Just return if there isn't any selected
11688 frame.
11689
11690 * search.c (simple_search): Remove warning by making *p const.
11691
11692 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
11693
11694 * xdisp.c (power_letter): Remove duplicate const.
11695
11696 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
11697
11698 * term.c (delete_tty): Remove check for last terminal (bug#4970).
11699
11700 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
11701 defaults (bug #5025).
11702
11703 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
11704
11705 * insdel.c (adjust_markers_for_delete): Move it in the
11706 right direction! (bug#4803)
11707
11708 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11709
11710 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
11711
11712 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
11713
11714 2009-11-24 Glenn Morris <rgm@gnu.org>
11715
11716 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
11717
11718 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
11719
11720 * Makefile.in: Must create deps for ecrt0.o in its rule.
11721
11722 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
11723 because that is what Gtk+ font dialog understands.
11724
11725 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
11726 of Fcopy_sequence.
11727 (font_open_by_name): Put name given into QCname for font-object returned.
11728
11729 * frame.c (x_set_font): Save original font name as frame parameter
11730 font-parameter.
11731
11732 * xsettings.c (set_default_xft_settings): New function.
11733 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
11734 is found.
11735
11736 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
11737
11738 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
11739 searching backwards through multibyte buffer.
11740
11741 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
11742
11743 * xterm.c: #include xgselect.h.
11744 (x_initialize): Call xgselect_initialize.
11745
11746 * xsettings.c (something_changedCB): C++ comments => C comments.
11747 (init_gconf): Do not deal with any GLib file descriptors, xg_select
11748 does that now.
11749
11750 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
11751 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
11752 (scroll_bar_button_cb): Remove.
11753 (create_menus): C++ comments => C comments. Don't bind grab-notify
11754 event.
11755 (xg_create_scroll_bar): Don't bind button-press-event and
11756 button-release-event.
11757
11758 * process.c: Include xgselect.h if defined (USE_GTK) ||
11759 defined (HAVE_GCONF).
11760 (wait_reading_process_output): Call xg_select for the same condition.
11761
11762 * xgselect.c (xg_select): New function to better integrate with
11763 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
11764
11765 * xgselect.h: New file, declare xg_select, xgselect_initialize.
11766
11767 * Makefile.in (XOBJ): Add xgselect.o.
11768
11769 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
11770
11771 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
11772 Remove ignored second argument. All callers changed.
11773 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
11774 (RE_STRING_CHAR_AND_LENGTH): Likewise.
11775 * xdisp.c (string_char_and_length): Likewise.
11776
11777 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
11778
11779 * xterm.c (x_new_font):
11780 * print.c (print_object):
11781 * cmds.c (Fself_insert_command): Move declarations before statements.
11782
11783 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
11784
11785 * s/cygwin.h: Remove unneeded linker flags.
11786
11787 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
11788
11789 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
11790
11791 * xsettings.h: Declare xsettings_get_system_font.
11792
11793 * xsettings.c (xsettings_get_system_font): New function.
11794 (init_gconf): No use initiating gconf unless we have Xft also.
11795 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
11796 HAVE_GCONF.
11797
11798 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
11799 add a blank entry so it doesn't collapse into nothing.
11800
11801 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11802
11803 * lread.c (Funintern): Comment out last change.
11804
11805 2009-11-19 Richard Stallman <rms@gnu.org>
11806
11807 * lread.c (Funintern): Error if symbol is t or nil.
11808
11809 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11810
11811 * insdel.c (make_gap_larger): Don't make as many assumptions about the
11812 representation of Lisp integers.
11813 Reported by MJ Chan <mjchan.inbox@gmail.com>.
11814
11815 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
11816
11817 * lisp.h: Remove declaration of Ffont_get_system_font.
11818 * xfns.c: Move include of "xsettings.h".
11819 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
11820
11821 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11822
11823 * xsettings.c (something_changedCB, Ffont_get_system_font):
11824 Check use_system_font.
11825 (syms_of_xsettings): DEFVAR font-use-system-font.
11826
11827 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
11828
11829 * xfns.c (x_default_font_parameter): Remove dead assignment.
11830
11831 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
11832
11833 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11834
11835 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
11836 not have FC_LCD_*. #define them if not there.
11837
11838 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
11839
11840 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
11841
11842 * xterm.c (handle_one_xevent): Call xft_settings_event for
11843 ClientMessage, PropertyNotify and DestroyNotify.
11844 (x_term_init): If we have XFT, get DPI from Xft.dpi.
11845 Call xsettings_initialize.
11846
11847 * xftfont.c (xftfont_fix_match): New function.
11848 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
11849 Call xftfont_fix_match after XftFontMatch.
11850
11851 * xfont.c (xfont_driver): Initialize all members.
11852
11853 * xfns.c (x_default_font_parameter):
11854 Try font from Ffont_get_system_font.
11855 Do not get font from x_default_parameter if we got one from
11856 Ffont_get_system_font.
11857 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
11858
11859 * w32font.c (w32font_driver): Initialize all members.
11860
11861 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
11862
11863 * lisp.h: Declare syms_of_xsettings.
11864
11865 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
11866 Handle CONFIG_CHANGED_EVENT.
11867
11868 * ftfont.c (ftfont_filter_properties): New function.
11869
11870 * frame.c (x_set_font): Remove unused variable lval.
11871
11872 * font.h (struct font_driver): Add filter_properties.
11873
11874 * font.c (font_put_extra): Don't return if val is nil, it means
11875 boolean option is off.
11876 (font_parse_fcname): Collect all extra properties in extra_props
11877 and call filter_properties for all drivers with extra_props and
11878 font as parameter.
11879 (font_open_entity): Do not use cache, it does not pick up new
11880 fontconfig settings like hinting.
11881 (font_load_for_lface): If spec had a name in it, store it in entity.
11882
11883 * emacs.c (main): Call syms_of_xsettings.
11884
11885 * config.in: HAVE_GCONF is new.
11886
11887 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
11888 xsettings.o is new.
11889
11890 2009-11-17 Kenichi Handa <handa@m17n.org>
11891
11892 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
11893 back to the default font in case that no suitable font is found.
11894
11895 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
11896
11897 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
11898 Suggested by Chad Brown <yandros@mit.edu>.
11899 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
11900
11901 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
11902
11903 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
11904
11905 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
11906
11907 * Makefile.in: Ignore errors from mkdir when creating deps directory.
11908
11909 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
11910
11911 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
11912 has a parent.
11913
11914 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
11915 dependency files in deps/. Include those files into Makefile.
11916
11917 * config.in: Generated (AUTO_DEPEND).
11918
11919 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
11920
11921 * dbusbind.c (Vdbus_registered_objects_table): Rename from
11922 Vdbus_registered_functions_table, because it contains also
11923 properties. Fix docstring.
11924 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
11925
11926 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11927
11928 * alloc.c (mark_object): Don't reprocess marked strings.
11929 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
11930 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
11931
11932 2009-11-13 Kenichi Handa <handa@m17n.org>
11933
11934 * category.c (word_boundary_p): Adjust for the change of the
11935 semantics of Vword_combining_categories.
11936 (Vword_combining_categories): Describe the slight change of the
11937 semantics.
11938
11939 2009-11-13 Eli Zaretskii <eliz@gnu.org>
11940
11941 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
11942
11943 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
11944
11945 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
11946
11947 * xdisp.c (syms_of_xdisp): Fix typo in last change.
11948
11949 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
11950
11951 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
11952
11953 2009-11-11 David Reitter <david.reitter@gmail.com>
11954
11955 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
11956 variables to fix 2009-11-09 change.
11957
11958 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11959
11960 * process.c (ifflag_def): Make flag_sym constant.
11961 (Fnetwork_interface_info): Use a constant pointer.
11962 (ifflag_table):
11963 * xfns.c (cursor_bits):
11964 * xdisp.c (power_letter):
11965 * termcap.c (speeds, esctab):
11966 * sysdep.c (baud_convert):
11967 * keyboard.c (lispy_accent_codes, modifier_names):
11968 * image.c (xbm_format, xpm_format, pbm_format, png_format)
11969 (jpeg_format, tiff_format, gif_format, svg_format)
11970 (interlace_start, interlace_increment, gs_format):
11971 * gtkutil.c (separator_names):
11972 * fringe.c (swap_nibble):
11973 * fns.c (base64_value_to_char, base64_char_to_value):
11974 * fileio.c (make_temp_name_tbl):
11975 * coding.c (suffixes): Make constant.
11976
11977 * frame.c (make_initial_frame):
11978 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
11979 build_string.
11980 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
11981
11982 * s/freebsd.h:
11983 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
11984
11985 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
11986 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
11987
11988 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
11989 * xterm.c (syms_of_xterm):
11990 * xfaces.c (syms_of_xfaces):
11991 * xdisp.c (syms_of_xdisp):
11992 * lread.c (syms_of_lread):
11993 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
11994 build_string.
11995
11996 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
11997
11998 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
11999
12000 * fns.c (Fplist_get): Merge the active and the commented out code.
12001
12002 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
12003
12004 * keyboard.h: Declare timer_check.
12005
12006 * keyboard.c (timer_check_2): New function that does what the old
12007 timer_check did.
12008 (timer_check): Call timer_check_2 until -1 or a non-zero time is
12009 returned, i.e. don't return -1 with timers pending.
12010
12011 * process.c: Remove extern declaration of timer_check.
12012
12013 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
12014 even if timer_check returned -1.
12015
12016 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
12017 xg_dialog_data.
12018 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
12019 the event loop.
12020 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
12021 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
12022 Destroy the dialog after xg_dialog_run.
12023
12024 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
12025
12026 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
12027
12028 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
12029
12030 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
12031
12032 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
12033
12034 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
12035
12036 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
12037
12038 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
12039 w32menu.c, and nsmenu.m.
12040 Simplify the obsolete case where position is nil.
12041 (cleanup_popup_menu): New function, moved from nsmenu.m.
12042 (struct skp): Remove slot `notreal'.
12043 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
12044 adjust callers.
12045 (single_menu_item): Adjust call to parse_menu_item.
12046 (syms_of_menu): Defsubr x-popup-menu.
12047 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
12048 (keymap_panes): Don't export any more.
12049 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
12050 (xmenu_show): Declare.
12051 * keyboard.c (parse_menu_item): Remove arg `notreal'.
12052 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
12053 * keyboard.h (parse_menu_item): Update declaration.
12054 * xmenu.c (Fx_popup_menu): Remove.
12055 (syms_of_xmenu): Don't defsubr x-popup-menu.
12056 * w32menu.c (Fx_popup_menu): Remove.
12057 (syms_of_w32menu): Don't defsubr x-popup-menu.
12058 * nsmenu.m (cleanup_popup_menu): Remove.
12059 (ns_menu_show): Rename from ns_popup_menu and remove all the code
12060 moved to menu.c's Fx_popup_menu.
12061 (Fx_popup_menu): Remove.
12062 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
12063 menu_items (it's done in menu.c already).
12064
12065 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
12066
12067 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
12068 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
12069
12070 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
12071
12072 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
12073 xmenu_show. Hide any tooltip before opening a menu.
12074 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
12075 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
12076
12077 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
12078
12079 Let integers use up 2 tags to give them one extra bit and thus double
12080 their range.
12081 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
12082 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
12083 New macros.
12084 (enum Lisp_Type): Use them. Give explicit values.
12085 (Lisp_Type_Limit): Remove.
12086 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
12087 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
12088 Pay attention to USE_2_TAGS_FOR_INTS.
12089 (INTEGERP): Use LISP_INT_TAG_P.
12090 * fns.c (internal_equal): Simplify the default case.
12091 (sxhash): Use case_Lisp_Int.
12092 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
12093 any more.
12094 (Ftype_of): Use case_Lisp_Int.
12095 (store_symval_forwarding): Take into account the fact that Ints can
12096 now have more than one tag.
12097 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
12098 (buffer_slot_type_mismatch):
12099 * xfaces.c (face_attr_equal_p):
12100 * print.c (print_object):
12101 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
12102 Use case_Lisp_Int.
12103
12104 2009-11-06 Eli Zaretskii <eliz@gnu.org>
12105
12106 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
12107
12108 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
12109 warning.
12110
12111 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
12112
12113 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
12114
12115 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
12116
12117 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
12118 ButtonPressRelease and MotionNotify (bug#4870).
12119
12120 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
12121
12122 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
12123
12124 * xterm.c (syms_of_xterm):
12125 * xselect.c (syms_of_xselect):
12126 * xmenu.c (syms_of_xmenu):
12127 * xfns.c (syms_of_xfns):
12128 * xfaces.c (syms_of_xfaces):
12129 * xdisp.c (syms_of_xdisp):
12130 * window.c (syms_of_window):
12131 * w32fns.c (syms_of_w32fns):
12132 * undo.c (syms_of_undo):
12133 * textprop.c (syms_of_textprop):
12134 * terminal.c (syms_of_terminal):
12135 * syntax.c (syms_of_syntax):
12136 * sound.c (syms_of_sound):
12137 * search.c (syms_of_search):
12138 * print.c (syms_of_print):
12139 * minibuf.c (syms_of_minibuf):
12140 * macros.c (syms_of_macros):
12141 * keymap.c (syms_of_keymap, initial_define_key)
12142 (initial_define_lispy_key):
12143 * keyboard.c (syms_of_keyboard):
12144 * insdel.c (syms_of_insdel):
12145 * image.c (syms_of_image):
12146 * fringe.c (syms_of_fringe):
12147 * frame.c (syms_of_frame):
12148 * fontset.c (syms_of_fontset):
12149 * fns.c (syms_of_fns):
12150 * fns.c (syms_of_fns):
12151 * fileio.c (syms_of_fileio):
12152 * fileio.c (syms_of_fileio):
12153 * eval.c (syms_of_eval):
12154 * doc.c (syms_of_doc):
12155 * dispnew.c (syms_of_display):
12156 * dired.c (syms_of_dired):
12157 * dbusbind.c (syms_of_dbusbind):
12158 * data.c (syms_of_data):
12159 * composite.c (syms_of_composite):
12160 * coding.c (syms_of_coding):
12161 * cmds.c (syms_of_cmds):
12162 * charset.c (define_charset_internal, syms_of_character):
12163 * ccl.c (syms_of_ccl):
12164 * category.c (syms_of_category, init_category_once):
12165 * casetab.c (syms_of_casetab):
12166 * casefiddle.c (syms_of_casefiddle):
12167 * callint.c (syms_of_callint):
12168 * bytecode.c (syms_of_bytecode):
12169 * buffer.c (keys_of_buffer, syms_of_buffer):
12170 * alloc.c (syms_of_alloc):
12171 * process.c (syms_of_process, init_process):
12172 * lread.c (syms_of_lread, init_obarray):
12173 * font.c (build_style_table):
12174 * emacs.c (syms_of_emacs, main): Replace calls to intern with
12175 intern_c_string, calls to make_pure_string with
12176 make_pure_c_string. Use pure_cons instead of Fcons.
12177
12178 * process.c (socket_options): Make it const.
12179 (set_socket_option, init_process): Use a const pointer.
12180
12181 * lread.c (intern_c_string): New function.
12182 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
12183 (defvar_int): Uset it. Make the name const char*.
12184
12185 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
12186 (defvar_int): Update prototypes.
12187 (DEFUN, EXFUN): Support for prototypes is now required.
12188 (intern_c_string): New prototype.
12189 (struct Lisp_Subr): Make symbol_name constant.
12190
12191 * font.c (struct table_entry): Remove unused member. Make NAMES
12192 constant.
12193 (weight_table, slant_table, width_table): Make constant.
12194
12195 * emacs.c (struct standard_args): Make name and longname constant.
12196
12197 * character.h (DEFSYM): Use intern_c_string.
12198
12199 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
12200
12201 * alloc.c (make_pure_c_string): New function.
12202
12203 * eval.c (Fautoload): Purecopy all arguments.
12204
12205 2009-11-05 Kenichi Handa <handa@m17n.org>
12206
12207 * fileio.c (Finsert_file_contents): Be sure set coding-system of
12208 the buffer in case of replace.
12209
12210 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
12211
12212 * puresize.h (BASE_PURESIZE): Increase to 1620000.
12213
12214 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
12215
12216 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
12217 when applicable (bug#4851).
12218
12219 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
12220 (P_): Support for prototypes is now required.
12221
12222 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
12223
12224 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
12225 (Bug#4827).
12226
12227 2009-10-30 Eli Zaretskii <eliz@gnu.org>
12228
12229 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
12230
12231 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
12232
12233 * puresize.h (BASE_PURESIZE): Increase to 1470000.
12234
12235 * lread.c (Fload): Purecopy the file name when building
12236 Vpreloaded_file_list.
12237
12238 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
12239
12240 * w32fns.c (syms_of_w32fns): Change default value of
12241 w32-scroll-lock-modifier to nil. (Bug#2827)
12242
12243 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
12244
12245 * minibuf.c (Fall_completions): Fix typos in docstring.
12246
12247 2009-10-26 Andreas Schwab <schwab@redhat.com>
12248
12249 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
12250
12251 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
12252
12253 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
12254 For delta < 0, skip check that only makes sense when the mini-window
12255 is going to be enlarged. (Bug#4534)
12256
12257 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
12258
12259 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
12260 string in menu maps (Bug#4471).
12261
12262 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
12263
12264 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
12265 FRAME_NS_VIEW on terminal frames (Bug#4765).
12266
12267 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
12268
12269 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
12270 DBUS_TYPE_UINTnn separately to get proper sign extension.
12271
12272 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
12273 can properly handle unsigned types.
12274 (make_uid, make_gid): Remove.
12275
12276 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
12277 types again.
12278
12279 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
12280 (system_process_attributes): Likewise.
12281
12282 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
12283
12284 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
12285
12286 * eval.c (Fautoload): Purecopy the filename. Simplify.
12287
12288 * category.c (Fdefine_category): Purecopy docstring.
12289
12290 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
12291
12292 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
12293
12294 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
12295
12296 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
12297
12298 * window.c (Fwindow_edges, Fwindow_pixel_edges)
12299 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
12300 (Bug#4775).
12301
12302 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
12303
12304 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
12305 (init_fileio_once):
12306 * lisp.h (init_fileio_once): Remove.
12307 * emacs.c (main): Don't call init_fileio_once.
12308
12309 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
12310
12311 * puresize.h (BASE_PURESIZE): Increase to 1430000.
12312
12313 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
12314
12315 * doprnt.c (doprnt): Fix overflow check.
12316
12317 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
12318
12319 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
12320
12321 * xterm.h (x_wait_for_event): Declare it.
12322
12323 * xterm.c (pending_event_wait): New variable.
12324 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
12325 see pending_event_wait.eventtype.
12326 (handle_one_xevent): Don't change gravity when parent changes.
12327 (x_new_font): Call change_frame_size with new rows/columns before we
12328 try to resize the frame.
12329 (x_wait_for_event): New function.
12330 (x_set_window_size_1): Don't change gravity unless change_gravity
12331 is set.
12332 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
12333 don't change frame size, instead wait for the ConfigureNotify.
12334 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
12335 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
12336 (x_initialize): Initialize pending_event_wait.
12337
12338 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
12339 size.
12340
12341 * widget.c (EmacsFrameSetValues): Add comment.
12342 (EmacsFrameSetCharSize): Just call x_set_window_size.
12343
12344 * gtkutil.c (xg_frame_set_char_size): Flush events and call
12345 x_wait_for_event.
12346 (flush_and_sync): Remove again.
12347 (xg_get_font_name): Suggest monospace if no previous font is known.
12348
12349 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
12350
12351 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
12352 8th bit, since that only made sense in the ASCII world (bug#4751).
12353
12354 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12355
12356 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
12357 processing pending events when event is filtered for input method.
12358 (Bug#3681)
12359
12360 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
12361
12362 * fns.c: Add #endif accidentally removed in previous change.
12363
12364 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
12365
12366 * fns.c: Remove code for unsupported system: MAC_OS.
12367 * image.c: Likewise. Include setjmp.h.
12368
12369 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
12370
12371 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
12372 pixel -1 (bug #4742).
12373
12374 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
12375
12376 * process.c (create_pty): Remove conditionals for no longer
12377 supported systems: UNIPLUS and RTU.
12378
12379 * xterm.c:
12380 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
12381
12382 * alloc.c: Do not define struct catchtag.
12383 * eval.c: Move struct catchtag definition ...
12384 * lisp.h: ... here.
12385
12386 * image.c: Move png.h #include earlier to avoid warnings.
12387
12388 * xterm.c:
12389 * xsmfns.c:
12390 * xselect.c:
12391 * xrdb.c:
12392 * xmenu.c:
12393 * xftfont.c:
12394 * xfont.c:
12395 * xfns.c:
12396 * xfaces.c:
12397 * xdisp.c:
12398 * window.c:
12399 * widget.c:
12400 * w32xfns.c:
12401 * w32uniscribe.c:
12402 * w32term.c:
12403 * w32select.c:
12404 * w32reg.c:
12405 * w32proc.c:
12406 * w32menu.c:
12407 * w32inevt.c:
12408 * w32heap.c:
12409 * w32font.c:
12410 * w32fns.c:
12411 * w32console.c:
12412 * w32.c:
12413 * w16select.c:
12414 * vm-limit.c:
12415 * unexsol.c:
12416 * unexec.c:
12417 * unexcw.c:
12418 * unexaix.c:
12419 * undo.c:
12420 * tparam.c:
12421 * textprop.c:
12422 * terminfo.c:
12423 * terminal.c:
12424 * termcap.c:
12425 * term.c:
12426 * syntax.c:
12427 * sound.c:
12428 * sheap.c:
12429 * search.c:
12430 * scroll.c:
12431 * region-cache.c:
12432 * regex.c:
12433 * ralloc.c:
12434 * process.c:
12435 * print.c:
12436 * nsterm.m:
12437 * nsselect.m:
12438 * nsmenu.m:
12439 * nsimage.m:
12440 * nsfont.m:
12441 * nsfns.m:
12442 * msdos.c:
12443 * minibuf.c:
12444 * menu.c:
12445 * marker.c:
12446 * macros.c:
12447 * keymap.c:
12448 * keyboard.c:
12449 * intervals.c:
12450 * insdel.c:
12451 * indent.c:
12452 * gtkutil.c:
12453 * ftxfont.c:
12454 * ftfont.c:
12455 * fringe.c:
12456 * frame.c:
12457 * fontset.c:
12458 * font.c:
12459 * fns.c:
12460 * floatfns.c:
12461 * filelock.c:
12462 * fileio.c:
12463 * emacs.c:
12464 * editfns.c:
12465 * dosfns.c:
12466 * doprnt.c:
12467 * doc.c:
12468 * dispnew.c:
12469 * dired.c:
12470 * dbusbind.c:
12471 * data.c:
12472 * composite.c:
12473 * coding.c:
12474 * cmds.c:
12475 * cm.c:
12476 * chartab.c:
12477 * charset.c:
12478 * character.c:
12479 * ccl.c:
12480 * category.c:
12481 * casetab.c:
12482 * casefiddle.c:
12483 * callproc.c:
12484 * callint.c:
12485 * bytecode.c:
12486 * buffer.c:
12487 * atimer.c: Include setjmp.h. (Bug#4643)
12488
12489 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
12490
12491 Remove leftover table unibyte_to_multibyte_table.
12492 * character.c (unibyte_to_multibyte_table): Remove.
12493 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
12494 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
12495 * character.h (UNIBYTE_TO_CHAR): New macro.
12496 (MAKE_CHAR_MULTIBYTE): Use it.
12497 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
12498 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
12499 (message_dolog, set_message_1):
12500 * search.c (Freplace_match):
12501 * editfns.c (Fcompare_buffer_substrings):
12502 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
12503 (concat):
12504 * insdel.c (copy_text, count_size_as_multibyte):
12505 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
12506 * term.c (produce_glyphs):
12507 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
12508 * regex.c (RE_CHAR_TO_MULTIBYTE):
12509 * cmds.c (internal_self_insert):
12510 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
12511
12512 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
12513
12514 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
12515
12516 * puresize.h (BASE_PURESIZE): Increase to 1310000.
12517
12518 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
12519
12520 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
12521
12522 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
12523
12524 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
12525 still needed under Tiger.
12526
12527 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
12528
12529 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
12530 __Apple__.
12531
12532 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
12533
12534 2009-10-15 Kenichi Handa <handa@m17n.org>
12535
12536 * print.c (print_object): Escape a symbol like "2E10" too.
12537
12538 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
12539
12540 Cleanups and changes for 64-bit compile under Snow Leopard.
12541 Based on suggestions by Erik Charlebois.
12542
12543 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
12544
12545 * nsfont.m (ns_char_width): Replace deprecated call.
12546 (ns_findfonts, nsfont_list_family): Use long format in printf, and
12547 cast argument.
12548 (nsfont_open): Use ns_char_width() everywhere.
12549 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
12550
12551 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
12552
12553 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
12554 where appropriate.
12555
12556 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
12557 where appropriate.
12558 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
12559 Use stringWithUTF8String.
12560 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
12561
12562 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
12563 Add formal protocol mention to inheritance.
12564 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
12565
12566 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
12567 Fix printf format.
12568 (ns_query_color): Use CGFloat where appropriate.
12569 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
12570 (EmacsScroller-mouseDown:): Use long format in printf, and cast
12571 argument.
12572
12573 * config.in (NS_HAVE_NSINTEGER): Drop.
12574
12575 * dbusbind.c (dbus-method-return-internal)
12576 (dbus-method-error-internal): Use long format in printf, and cast
12577 argument.
12578
12579 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
12580 in printf, and cast argument.
12581
12582 * process.c (list_processes_1): Use long format in printf, and
12583 cast argument.
12584
12585 2009-10-11 Glenn Morris <rgm@gnu.org>
12586
12587 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
12588
12589 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
12590
12591 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
12592 menu bar with a small width so it doesn't enlarge the frame.
12593
12594 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
12595
12596 * fontset.c (Fset_fontset_font): Fix typos in error messages.
12597
12598 2009-10-06 Glenn Morris <rgm@gnu.org>
12599
12600 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
12601 SOME_MACHINE_LISP (this enters indirectly via DOC).
12602
12603 2009-10-05 Eli Zaretskii <eliz@gnu.org>
12604
12605 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
12606
12607 2009-10-04 Eli Zaretskii <eliz@gnu.org>
12608
12609 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
12610 Doc fix.
12611
12612 2009-10-03 Martin Rudalics <rudalics@gmx.at>
12613
12614 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
12615
12616 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
12617
12618 * lisp.h (Qdelete_directory_internal): Remove, because it is not
12619 used anymore outside fileio.c.
12620
12621 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
12622
12623 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
12624
12625 * lisp.h (Qdelete_directory_internal):
12626 Declare, instead of Qdelete_directory.
12627
12628 * w32fns.c (Fsystem_move_file_to_trash): Use it.
12629
12630 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
12631
12632 * eval.c (Fcalled_interactively_p): Add `kind' argument.
12633
12634 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
12635
12636 * fileio.c (Fdelete_directory_internal): Rename from
12637 Fdelete_directory. It is not a command anymore. It has no file
12638 name handler.
12639
12640 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
12641
12642 * xdisp.c (get_next_display_element): Use an enum in last change.
12643
12644 2009-09-28 Kenichi Handa <handa@m17n.org>
12645
12646 * xdisp.c (get_next_display_element): Pay attention to
12647 unibyte_display_via_language_environment in handling
12648 Vnobreak_char_display.
12649
12650 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
12651
12652 * nsterm.h (ns_app_name): New extern variable.
12653
12654 * nsterm.m (ns_app_name): New variable.
12655 (ns_term_init): Set and use it.
12656 (ns_term_shutdown): Use it.
12657
12658 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
12659 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
12660
12661 * nsfns.m (ns_set_name_iconic, ns_set_name)
12662 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
12663 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
12664
12665 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
12666 Remove double-casting in client_data comparison.
12667
12668 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12669
12670 * keyboard.c (make_lispy_event): Remember last wheel direction.
12671 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
12672
12673 2009-09-26 Glenn Morris <rgm@gnu.org>
12674
12675 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
12676 internal.elc. Add term/pc-win.elc.
12677 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
12678 term/x-win.elc.
12679 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
12680 term/w32-win.elc.
12681 (NS_SUPPORT): New.
12682 (lisp): Add NS_SUPPORT.
12683 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
12684
12685 2009-09-25 David Reitter <david.reitter@gmail.com>
12686
12687 * nsmenu.m (EmacsMenu-clear): Recognize application menu
12688 on Mac OS X 10.6+ (bug#4513).
12689
12690 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12691
12692 * frame.c (xrdb_get_resource): Return nil for empty string resources;
12693 some parts of Emacs code (like font selection) don't grok them.
12694 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
12695
12696 2009-09-24 Andreas Schwab <schwab@redhat.com>
12697
12698 * coding.c (decode_coding_iso_2022): Fix operator precedence.
12699
12700 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12701
12702 * dired.c (Fdirectory_files): Fix typo in docstring.
12703
12704 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
12705
12706 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
12707 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
12708 (EmacsScroller-setPosition:portion:whole:): Remove -display call
12709 under GNUstep.
12710 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
12711
12712 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
12713 glyph advancement.
12714
12715 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
12716
12717 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
12718 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
12719
12720 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
12721 deleted (bug #4492).
12722
12723 * nsfont.m (Vns_reg_to_script): New lisp variable.
12724 (syms_of_nsfont): Declare it.
12725 (ns_registry_to_script): New function.
12726 (ns_get_req_script): Call it.
12727 (ns_findfonts): Don't give up on non-unicode registry.
12728
12729 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
12730
12731 2009-09-20 Tom Tromey <tromey@redhat.com>
12732
12733 * eval.c (find_handler_clause): Make stack-trace-on-error work in
12734 batch mode (bug#4228).
12735
12736 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
12737
12738 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
12739 carefully. (Bug #4339)
12740
12741 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
12742
12743 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
12744
12745 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
12746
12747 * emacs.c (inhibit_x_resources): Update doc string for NS.
12748 (main) [HAVE_NS]: Don't process --no-init-file option.
12749 Remove legacy code for -NXHost. Fix error printf in daemon case.
12750
12751 * nsterm.h (ns_no_defaults): Remove.
12752
12753 * nsterm.m (ns_no_defaults): Remove.
12754 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
12755 (ns_use_qd_smoothing): Remove legacy variable.
12756 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
12757 don't update the NSWindow itself.
12758 (EmacsView-windowWillUseStandardFrame:defaultFrame:):
12759 Improve state detection and store user rect ourselves. (Bug #3581)
12760
12761 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
12762 ns_use_qd_smoothing.
12763
12764 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
12765 platform versions. Drop support for emacs-20-style face specs.
12766 (x-close-connection): Drop PSFlush() under OS X.
12767 (x-focus-frame): Activate the app first. (Bug #4180)
12768
12769 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
12770
12771 * emacs.c (inhibit_x_resources): New variable.
12772 (main) [HAVE_NS]: Don't process --quick command line option.
12773 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
12774
12775 * lisp.h (inhibit_x_resources): Declare it extern.
12776
12777 * w32reg.c (x_get_string_resource):
12778 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
12779
12780 2009-09-17 Eli Zaretskii <eliz@gnu.org>
12781
12782 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
12783 Add lisp/term/internal.elc.
12784
12785 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
12786
12787 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
12788 (bug#4461).
12789
12790 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
12791
12792 * puresize.h (BASE_PURESIZE): Increase to 1290000.
12793
12794 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
12795 (OBJECTS_MACHINE): Remove, unused.
12796
12797 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
12798
12799 * frame.c (x_get_resource_string): Remove unused.
12800
12801 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
12802
12803 * xterm.c (x_new_font): Call change_frame_size before calling
12804 x_set_window_size, in case frame size won't change.
12805
12806 * frame.c (x_set_font): Remove dead code.
12807
12808 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
12809
12810 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
12811
12812 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12813
12814 * lread.c (Fload): Don't output a message after loading an obsolete
12815 package any more (done in Lisp now).
12816
12817 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
12818
12819 * fns.c (syms_of_fns): Doc fix (Bug#4227).
12820
12821 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12822
12823 * keymap.c (Fwhere_is_internal): Use nconc2.
12824
12825 2009-09-11 Alan Mackenzie <acm@muc.de>
12826
12827 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
12828 batch mode.
12829
12830 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
12831
12832 * xdisp.c (display_mode_element): Detect cycles.
12833
12834 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
12835
12836 * keymap.c (where_is_internal): Don't erroneously return nil right after
12837 filling the cache.
12838 (where_is_internal_1): Fix up typo.
12839
12840 2009-09-11 Glenn Morris <rgm@gnu.org>
12841
12842 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
12843 share a common doc-string.
12844
12845 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
12846
12847 * keymap.c (get_keymap): Return the actual keymap symbol rather than
12848 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
12849
12850 * keymap.c (QCadvertised_binding): New constant.
12851 (syms_of_keymap): Initialize it.
12852 (Fwhere_is_internal): Try and use bindings from :advertised-binding
12853 if applicable.
12854
12855 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
12856
12857 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
12858 (parse_menu_item): Streamline since bindings are recomputed all the
12859 time anyway. Don't bother checking Vdefine_key_rebound_commands any
12860 more and don't support lmenu's menu-alias any more either.
12861
12862 * keymap.c (where_is_internal_data): Make noindirect a boolean.
12863 (where_is_internal): Strip it down to only traverse the keymaps.
12864 Move the cache handling from Fwhere_is_internal to here.
12865 (Fwhere_is_internal): Move the handling of remapping and the choice of
12866 the best binding from where_is_internal to here.
12867 Unify the cached/noncached paths, so remapping is also handled
12868 correctly when the cache is used, and so the cache can be used to
12869 speed up remap-handling when applicable.
12870 Give preference to non-remapped bindings.
12871 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
12872 non-remapped bindings.
12873 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
12874 command remapping.
12875
12876 * xdisp.c (display_mode_element): Move list length limit from 50 to
12877 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
12878
12879 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
12880
12881 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
12882
12883 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
12884
12885 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
12886 (Bug#4334)
12887
12888 * keymap.c (where_is_internal): Filter out shadowed remappings.
12889 Assume that where_is_internal returns unshadowed bindings to simplify
12890 the code and get rid of the gotos. Use ASIZE.
12891
12892 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
12893
12894 * xterm.c (x_focus_changed): If we get a focusout and pointer
12895 is invisible, make it visible.
12896
12897 * xterm.h: Remove condition for declaration of
12898 x_*_window_to_frame.
12899
12900 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
12901
12902 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
12903 initial terminal as well.
12904
12905 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
12906
12907 * xterm.h: Rename x_non_menubar_window_to_frame to
12908 x_menubar_window_to_frame.
12909
12910 * xterm.c: Remove declarations also in xterm.h.
12911 (XTmouse_position): Do not return valid positions
12912 for clicks in the menubar and the toolbar for Gtk+.
12913
12914 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
12915 if the widget for the event has the same top level as a frame,
12916 return the frame.
12917 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
12918 internal windows, bug #4122.
12919 (x_non_menubar_window_to_frame): Remove.
12920
12921 2009-09-02 Glenn Morris <rgm@gnu.org>
12922
12923 * buffer.c (default-major-mode): Move most of the doc from here...
12924 (major-mode): ... to here.
12925
12926 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
12927
12928 * process.c (wait_reading_process_output): Keep the descriptor
12929 when pty is used by a non-child process, e.g., in I/O buffer of
12930 GDB this allows inferior to be restarted.
12931
12932 2009-08-29 Eli Zaretskii <eliz@gnu.org>
12933
12934 * xdisp.c (redisplay_internal): Remove redundant test and collapse
12935 both branches into one.
12936
12937 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
12938
12939 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
12940 (main): Use enable-multibyte-characters rather than
12941 default-enable-multibyte-characters. Output a warning message when
12942 running a unibyte session.
12943
12944 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12945
12946 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
12947 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
12948 (copy_data_segment): Also copy __program_vars section.
12949 (copy_dyld_info) [LC_DYLD_INFO]: New function.
12950 (dump_it) [LC_DYLD_INFO]: Use it.
12951
12952 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
12953
12954 2009-08-28 Eli Zaretskii <eliz@gnu.org>
12955
12956 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
12957 $(SRC)/buildobj.h.
12958 (buildobj.h): Rename from $(SRC)/buildobj.h.
12959 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
12960 $(SRC)/buildobj.h.
12961 (clean): Add buildobj.h.
12962
12963 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
12964
12965 * print.c (print_object): Set escapeflag to 1 when printing
12966 hashtable keys and values.
12967
12968 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
12969
12970 * lread.c (read_integer): Use doubles (and potentially return a float
12971 number) as we do in string-to-number.
12972 (read1): Use strtol to read integers, signal errors on strtol's
12973 overflow and use floats if strtol's output is too large for
12974 Elisp integers.
12975
12976 2009-08-27 Eli Zaretskii <eliz@gnu.org>
12977
12978 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
12979 (make-buildobj-SH): Fix last change.
12980 (SRC): Move to before where it's first used.
12981
12982 2009-08-27 Kenichi Handa <handa@m17n.org>
12983
12984 * process.c (send_process): Use encode_coding_object instead of
12985 encode_coding_string to perform eol-conversion even if the string
12986 is unibyte.
12987
12988 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
12989 character.
12990
12991 * cmds.c (Fself_insert_command): Avoid unnecessay
12992 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
12993
12994 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
12995
12996 * callproc.c (Fcall_process): Remove always true #if.
12997
12998 * lisp.h: Replace #if 0 code for checking with text pointing to
12999 the --enable-checking configure flag.
13000
13001 * emacs.c (main): Mention the --enable-profiling configure flag
13002 instead of using CFLAGS.
13003
13004 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
13005
13006 * Makefile.in (buildobj.h): New target.
13007 (doc.o): Depend on it.
13008 (temacs${EXEEXT}): Don't generate buildobj.lst.
13009 (mostlyclean): Delete buildobj.h, not buildobj.lst.
13010 * makefile.w32-in ($(SRC)/buildobj.h): New target.
13011 ($(BLD)/doc.$(O)): Depend on it.
13012 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
13013 provided by Eli Zaretskii.)
13014 ($(TEMACS)): Don't generate buildobj.lst.
13015 * doc.c: Include buildobj.h.
13016 (buildobj): New static variable.
13017 (Fsnarf_documentation): Use it, instead of opening and reading
13018 buildobj.lst.
13019
13020 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
13021
13022 * dbusbind.c (Fdbus_call_method)
13023 (Fdbus_call_method_asynchronously): Use English numeric format for
13024 timeout values in doc string.
13025
13026 2009-08-25 Kenichi Handa <handa@m17n.org>
13027
13028 * alloc.c (mark_char_table): New function.
13029 (mark_object): Use mark_char_table for a char-table.
13030
13031 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
13032 (CHAR_TABLE_REF): Use it.
13033
13034 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
13035
13036 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
13037 before invoking the newly build emacs to check for load-path
13038 shadowing.
13039
13040 2009-08-22 Glenn Morris <rgm@gnu.org>
13041
13042 * Makefile.in (bootstrap_exe): New variable.
13043 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
13044 Use ${bootstrap_exe}.
13045
13046 2009-08-22 Eli Zaretskii <eliz@gnu.org>
13047
13048 * coding.h (encode_coding_string): Don't encode unibyte strings.
13049 (Bug#4047)
13050
13051 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
13052
13053 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
13054
13055 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
13056 intended as hotfix only.
13057 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
13058
13059 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
13060
13061 * nsterm.m (ns_get_color): Update documentation properly for last
13062 change, and clean up loose ends in the code left by it.
13063 Fix longstanding bug with 16-bit hex parsing, and add support for
13064 yet another X11 format (rgb:r/g/b) for compatibility.
13065 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
13066 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
13067
13068 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
13069
13070 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
13071
13072 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
13073
13074 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
13075 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
13076 (xd_initialize, xd_pending_messages): Check, whether
13077 $DBUS_SESSION_BUS_ADDRESS is set.
13078
13079 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13080
13081 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
13082
13083 * nsterm.m (ns_get_color): Remove incompatible color formats again.
13084
13085 2009-08-20 Glenn Morris <rgm@gnu.org>
13086
13087 * emacs.c (system-type): Doc fix.
13088
13089 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
13090
13091 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
13092 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
13093
13094 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
13095
13096 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
13097 New functions.
13098 (xd_initialize): Revert change from 2009-08-16.
13099
13100 2009-08-18 Kenichi Handa <handa@m17n.org>
13101
13102 * fontset.c (Ffontset_font): If a nil element is found in a
13103 font-group vector, return nil.
13104
13105 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
13106
13107 * process.c (status_notify): Don't perform redisplay.
13108 (Fdelete_process, list_processes_1, process_send_signal):
13109 Expliticly perform redisplay.
13110 (wait_reading_process_output): Always check process status, but
13111 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
13112
13113 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
13114
13115 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
13116 (XFLOAT_INIT): New macro for storing a float value.
13117 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
13118 * fns.c (sxhash): Copy out the value of a float in order to
13119 examine its bytes.
13120 * dbusbind.c (xd_append_arg): Likewise.
13121
13122 * emacs.c (main): Don't call syms_of_data twice.
13123
13124 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
13125
13126 * dbusbind.c (xd_initialize): Add connection file descriptor to
13127 input_wait_mask, in order to let select() detect, whether a new
13128 message has been arrived.
13129 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
13130
13131 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
13132
13133 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
13134 New functions.
13135
13136 * lisp.h (xd_pending_messages): Declare.
13137
13138 * keyboard.c (readable_events): Call xd_pending_messages.
13139
13140 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
13141
13142 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
13143
13144 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
13145
13146 * buffer.c (set_buffer_internal_1)
13147 (swap_out_buffer_local_variables): Check for unbound local
13148 variables (Bug#4138).
13149
13150 2009-08-14 Eli Zaretskii <eliz@gnu.org>
13151
13152 * process.c (create_pty): Fix last change.
13153
13154 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
13155
13156 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
13157 (xbm_load_image): Caller changed.
13158 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
13159
13160 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
13161
13162 * process.c (create_pty): New function.
13163 (Fstart_process): Use it to allow Emacs to just associate a pty
13164 with the buffer. See associated change in gdb-mi.el.
13165 (list_processes_1): Deal with no program name.
13166 (start_process_unwind): Use pid == -2 to mean no process.
13167
13168 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
13169
13170 * cmds.c (nonundocount): New global variable.
13171 (keys_of_cmds): Initialize it.
13172 (Fself_insert_command): Use it to combine upto 20 sequential chars
13173 into a single undo entry, just like the Qself_insert_command code in
13174 keyboard.c does.
13175 Call frame_make_pointer_invisible, also like the Qself_insert_command
13176 code in keyboard.c does.
13177 * keyboard.c (command_loop_1): Use the new global nonundocount rather
13178 than its own local replacement for it.
13179
13180 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
13181
13182 * fns.c (concat): Don't re-set string length to its current value.
13183
13184 * coding.h (decode_coding_string, encode_coding_string):
13185 Use SBYTES macro.
13186
13187 * doprnt.c (doprnt_lisp): Delete unused function.
13188 (doprnt): Merge with doprnt1, discarding lispstrings code.
13189 * lisp.h (doprnt_lisp): Don't declare.
13190
13191 2009-08-07 Juri Linkov <juri@jurta.org>
13192
13193 * puresize.h (BASE_PURESIZE): Increase to 1270000.
13194
13195 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
13196
13197 * print.c (syms_of_print): Undo previous change.
13198
13199 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
13200
13201 * lread.c (read1, syms_of_lread): Read hashtables back from the
13202 readable format.
13203
13204 * print.c (print_preprocess, print_object): Print hashtables fully
13205 and readably.
13206 (syms_of_print): Provide 'hashtable-print-readable.
13207
13208 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
13209
13210 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
13211 no family set.
13212 (nsfont_open): Handle case when entity has no family.
13213
13214 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
13215
13216 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
13217 element, not a list, for match case.
13218
13219 2009-07-28 Kenichi Handa <handa@m17n.org>
13220
13221 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
13222 rigidly.
13223
13224 * xfont.c (xfont_list_pattern): Don't ignore the return value of
13225 font_parse_xlfd. Check font properties more rigidly.
13226
13227 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
13228
13229 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
13230 bsd-common.h.
13231
13232 2009-07-27 Kenichi Handa <handa@m17n.org>
13233
13234 * xfaces.c (face_with_height): Call font_clear_prop.
13235
13236 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
13237
13238 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
13239
13240 * xterm.c (x_term_init): Use Qx.
13241
13242 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
13243
13244 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
13245 (ns_get_color): Revert 2009-07-16 change.
13246
13247 2009-07-25 Eli Zaretskii <eliz@gnu.org>
13248
13249 * lread.c (syms_of_lread) <force_load_messages>: New variable.
13250 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
13251
13252 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
13253
13254 * coding.h (decode_coding_string, encode_coding_string):
13255 Use SCHARS macro.
13256
13257 * lread.c: Rewrite 2009-07-21 changes.
13258 (load_depth): Delete.
13259 (Qload_in_progress): New variable.
13260 (load_unwind): Don't reference load_depth or load_in_progress.
13261 (Fload): Likewise; specbind Qload_in_progress instead.
13262 (init_lread): Don't initialize load_depth.
13263 (syms_of_lread): Initialize and protect Qload_in_progress.
13264
13265 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
13266
13267 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
13268
13269 2009-07-23 Yavor Doganov <yavor@gnu.org>
13270
13271 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
13272
13273 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
13274
13275 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
13276 Bugs 3792, 3720, 2402.
13277 (ns_lookup_indexed_color): Check for bad index.
13278 (ns_index_color): Init unused slot to 0.
13279 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
13280 Bug 3714, possibly 3082.
13281
13282 2009-07-22 Jason Rumney <jasonr@gnu.org>
13283
13284 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
13285 Position IME window at cursor (Bug#2570).
13286 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
13287 (globals_of_w32fns): Dynamically load functions required above.
13288
13289 * w32term.c (w32_draw_window_cursor): Send message to reposition
13290 any IME window.
13291
13292 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
13293
13294 * fileio.c: Revert 2009-07-16 changes.
13295 (Vauto_save_include_big_deletions): New variable.
13296 (Fdo_auto_save): Disable auto-save only if
13297 auto-save-include-big-deletions is nil.
13298
13299 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
13300
13301 * xdisp.c (move_it_to): For continued lines ending in a tab, take
13302 the overflowed pixels into account (Bug#3879).
13303
13304 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
13305
13306 * lread.c (load_depth): New variable.
13307 (Fload, load_unwind, init_lread): Set it to the load recursion
13308 depth; set load_in_progress as a simple boolean based on the
13309 current load_depth. (Bug#3892)
13310
13311 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
13312
13313 * nsfont.m (ns_has_attribute): Remove.
13314 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
13315
13316 2009-07-18 Juri Linkov <juri@jurta.org>
13317
13318 * process.c (Fset_process_query_on_exit_flag): Mention killing
13319 a buffer in docstring.
13320
13321 2009-07-17 Kenichi Handa <handa@m17n.org>
13322
13323 * casetab.c (shuffle): Fix the logic of setting up the cycle.
13324
13325 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13326
13327 * nsfns.m (Fns_set_alpha): Remove function.
13328 (syms_of_nsfns): Don't defsubr it.
13329
13330 * nsterm.m (ns_get_color): Remove incompatible color formats.
13331 (ns_color_to_lisp): Generate #rrggbb color format string.
13332
13333 2009-07-16 Richard Stallman <rms@gnu.org>
13334
13335 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
13336 (Fset_buffer_auto_saved): Handle save_length = -2.
13337
13338 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
13339
13340 * xterm.c (Qx_gtk_map_stock): New var.
13341
13342 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
13343 of calling intern each time.
13344
13345 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13346
13347 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
13348 does tiling.
13349
13350 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
13351
13352 2009-07-14 Kenichi Handa <handa@m17n.org>
13353
13354 * font.c (font_vconcat_entity_vectors): New function.
13355 (struct font_sort_data): New member font_driver_preference.
13356 (font_compare): Check font_driver_preference.
13357 (font_sort_entities): The format of the first argument changed.
13358 (font_delete_unmatched): Likewise.
13359 (font_list_entities): The return type changed.
13360 (font_select_entity): The format of the second argument changed.
13361 (font_find_for_lface): Adjuste for the above changes.
13362 Don't suppress the checking of C even if the repertory supports it.
13363 (Flist_fonts): Adjust for the above changes.
13364
13365 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
13366 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
13367 Reject a font who has adstyle property that is different from a
13368 langname derived from registry property.
13369 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
13370
13371 2009-07-13 Eli Zaretskii <eliz@gnu.org>
13372
13373 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
13374 local copy of dirfilename.
13375
13376 2009-07-13 Kenichi Handa <handa@m17n.org>
13377
13378 * chartab.c (sub_char_table_ref_and_range): Fix the range check
13379 against max_char.
13380
13381 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
13382 calling XSYMBOL (sym).
13383
13384 2009-07-11 Eli Zaretskii <eliz@gnu.org>
13385
13386 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
13387 New function.
13388 (directory_files_internal) [WINDOWSNT]:
13389 Bind w32-get-true-file-attributes to either t or nil, depending whether
13390 the filesystem of the directory is fast or slow.
13391
13392 * w32.c (logon_network_drive): Don't assume PATH is an absolute
13393 file name.
13394 (is_slow_fs): New function.
13395 (stat): Use it to determine whether to issue more system calls to
13396 get accurate file attributes, when w32-get-true-file-attributes is
13397 `local'.
13398
13399 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
13400
13401 * xfns.c (Fx_select_font): Remember last font selected in
13402 x_last_font_name and use that the next time. Also try the frame
13403 parameter font-parameter as default to the font dialog.
13404
13405 2009-07-10 Kenichi Handa <handa@m17n.org>
13406
13407 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
13408
13409 2009-07-09 Eli Zaretskii <eliz@gnu.org>
13410
13411 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
13412
13413 * w32.c (stat): Treat UNC file names as residing on remote
13414 drives. (Bug#3542)
13415
13416 2009-07-09 Kenichi Handa <handa@m17n.org>
13417
13418 * fontset.c (fontset_find_font): Fix previous change.
13419
13420 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
13421
13422 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
13423 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
13424 error flag.
13425
13426 2009-07-08 Kenichi Handa <handa@m17n.org>
13427
13428 * fontset.c (fontset_find_font): Fix the logic of handling
13429 charset_matched.
13430 (font_for_char): Delete unused var.
13431 (generate_ascii_font_name): Delete it.
13432
13433 * coding.h (JIS_TO_SJIS2): Fix the code range check.
13434
13435 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
13436 (encode_coding_sjis): Fix the code range check.
13437
13438 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
13439
13440 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
13441 (Fexpand_file_name): Copy string data properly (Bug#3772).
13442
13443 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
13444
13445 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
13446 first MapNotify.
13447
13448 2009-07-07 Kenichi Handa <handa@m17n.org>
13449
13450 * character.h (unibyte_has_multibyte_table): Delete extern.
13451 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
13452
13453 * charset.c (Fset_charset_priority): Update charset_unibyte.
13454 (syms_of_charset): Initialize charset_unibyte.
13455
13456 * character.c (unibyte_has_multibyte_table): Delete it.
13457 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
13458 charset_unibyte.
13459 (multibyte_char_to_unibyte_safe): Likewise.
13460 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
13461
13462 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
13463 (x_produce_glyphs): Likewise.
13464
13465 * .gdbinit (xcharset): Fix the treating $arg0.
13466
13467 2009-07-04 Eli Zaretskii <eliz@gnu.org>
13468
13469 Emulation of `getloadavg' on MS-Windows.
13470 * w32.c: Include float.h.
13471 (g_b_init_get_native_system_info, g_b_init_get_system_times)
13472 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
13473 (get_native_system_info, get_system_times): New functions.
13474 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
13475 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
13476 (globals_of_w32): Initialize g_b_init_get_native_system_info,
13477 g_b_init_get_system_times, and num_of_processors.
13478
13479 2009-07-03 Jason Rumney <jasonr@gnu.org>
13480
13481 * w32term.c (w32_initialize): Use standard types.
13482
13483 2009-07-03 Eli Zaretskii <eliz@gnu.org>
13484
13485 * dired.c (Ffile_attributes): Decode user and group names by the
13486 locale's encoding. (Bug#3443)
13487
13488 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
13489
13490 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
13491 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
13492
13493 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
13494
13495 * term.c (init_tty): Remove spurious #ifdef.
13496
13497 * m/mips.h: Mention this file is also used for netbsd.
13498 * m/pmax.h: Remove file.
13499
13500 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
13501
13502 * xterm.h (struct x_display_info): Add invisible_cursor.
13503 (struct x_output): Add current_cursor.
13504
13505 * xterm.c (XTtoggle_invisible_pointer): New function.
13506 (x_define_frame_cursor): Don't define cursor if invisible or the
13507 same as before. Set current_cursor.
13508 (x_create_terminal): Set toggle_invisible_pointer_hook.
13509
13510 * xfns.c (make_invisible_cursor): New function.
13511 (x_set_mouse_color): Call make_invisible_cursor.
13512 Set current_cursor.
13513 (x_window): Set current_cursor.
13514
13515 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
13516
13517 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
13518 inserting a character.
13519 (read_avail_input): Call frame_make_pointer_visible.
13520
13521 * frame.c (Vmake_pointer_invisible): New variable.
13522 (frame_make_pointer_invisible, frame_make_pointer_visible):
13523 New functions.
13524 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
13525
13526 * frame.h: Declare frame_make_pointer_invisible and
13527 frame_make_pointer_visible.
13528 (struct frame): Add pointer_invisible.
13529
13530 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
13531
13532 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
13533 frame isn't visible.
13534 (xg_frame_resized): If width/height is -1, get size of window
13535 from X server.
13536
13537 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
13538 for MapNotify.
13539
13540 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
13541 here or call change_frame_size. Just call flush_and_sync.
13542 (flush_and_sync): Reintroduce.
13543
13544 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
13545
13546 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
13547
13548 * xterm.c (x_handle_net_wm_state): Also look for sticky.
13549 (x_term_init): Initialize Xatom_net_wm_state_sticky.
13550
13551 * frame.h: Declare Qsticky.
13552
13553 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
13554
13555 * nsfns.m (ns_frame_parm_handlers): Ditto.
13556
13557 * frame.c: Declare Qsticky.
13558 (frame_parms): Add sticky.
13559
13560 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
13561
13562 * xterm.h: Declare x_set_sticky.
13563
13564 * xterm.c (x_set_sticky): New function.
13565
13566 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
13567 (xg_tool_bar_menu_proxy): Attach enter/leave events to
13568 xg_tool_bar_proxy_help_callback.
13569
13570 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
13571
13572 * frame.c: Qmaximized is new.
13573 (x_set_frame_parameters): Do not handle fullscreen specially.
13574 Only set width and height if explicitly set.
13575 (x_set_fullscreen): Handle Qmaximized.
13576 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
13577 (syms_of_frame): Initialize Qmaximized.
13578
13579 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
13580 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
13581
13582 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
13583 for Expose event. Add call to x_check_fullscreen for MapNotify event.
13584 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
13585 set gravity to NorthWestGravity when USE_GTK.
13586 (set_wm_state): New function.
13587 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
13588 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
13589 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
13590 or the case when no window manager is running. That means remove calls
13591 to x_real_positions and x_fullscreen_adjust.
13592
13593 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
13594 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
13595 flush_and_sync.
13596 (xg_height_changed): New function.
13597 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
13598 and gtk_window_set_policy. Set frame gravity after parsing the
13599 geometry string.
13600 (xg_update_frame_menubar, free_frame_menubar)
13601 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
13602 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
13603 Remove calls to xg_frame_set_char_size.
13604
13605 2009-07-01 Kenichi Handa <handa@m17n.org>
13606
13607 * keyboard.c (decode_keyboard_code): New function.
13608 (tty_read_avail_input): Decode the input bytes if necessary.
13609
13610 * coding.c (setup_coding_system):
13611 Initialize coding->carryover_bytes to 0.
13612 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
13613 use Qno_conversion.
13614
13615 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13616
13617 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
13618
13619 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
13620
13621 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
13622
13623 2009-06-30 Jason Rumney <jasonr@gnu.org>
13624
13625 * w32term.c (w32_initialize): Use GetModuleHandle for library that
13626 is already loaded.
13627 Set user model ID if supported (bug#1849).
13628
13629 2009-06-29 Jim Meyering <meyering@redhat.com>
13630
13631 Remove useless if-before-xfree test.
13632 * nsfont.m (nsfont_close): Remove useless test.
13633 * term.c (delete_tty): Likewise.
13634 * w32.c (system_process_attributes): Likewise.
13635 * w32font.c (w32font_close): Likewise.
13636 * xfaces.c (x_free_gc): Likewise.
13637 * xselect.c (buffer): Likewise.
13638
13639 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
13640
13641 * process.c (send_process): Keep decoded string in a local
13642 variable and protect it from GC. (Bug#3521)
13643
13644 2009-06-28 Eli Zaretskii <eliz@gnu.org>
13645
13646 * term.c (create_tty_output) [MSDOS]: #ifdef away.
13647 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
13648
13649 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
13650
13651 * xdisp.c (start_display, handle_face_prop)
13652 (move_it_vertically_backward, cursor_row_fully_visible_p)
13653 (redisplay_window, try_window_id, produce_image_glyph):
13654 Delete some #ifdef-ed out code chunks that are now obsolete.
13655
13656 * xterm.c (x_update_window_begin, x_new_focus_frame)
13657 (x_scroll_bar_handle_click, handle_one_xevent)
13658 (handle_one_xevent, XTread_socket, x_focus_on_frame)
13659 (x_make_frame_visible, x_make_frame_invisible)
13660 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
13661 code chunks that are now obsolete.
13662
13663 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
13664
13665 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
13666 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
13667 for hours, when optimzation is enabled.
13668 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
13669 (xd_read_message): Make them static.
13670
13671 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
13672
13673 * term.c (turn_on_face): Allow simultaneously bold and dim
13674 terminal faces (Bug#3530).
13675
13676 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
13677
13678 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
13679
13680 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
13681 truncation glyphs (Bug#3686).
13682
13683 2009-06-27 Glenn Morris <rgm@gnu.org>
13684
13685 * m/pmax.h: Restore file, with only netbsd portions.
13686
13687 2009-06-26 David Reitter <david.reitter@gmail.com>
13688
13689 * nsterm.m (keydown): Avoid infinite loop.
13690
13691 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
13692
13693 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
13694 the arg FORCE_SYMBOL.
13695
13696 2009-06-25 Kenichi Handa <handa@m17n.org>
13697
13698 * fontset.c (fontset_find_font): When a usable rfont_def is found
13699 in a fallback font-group, make it the first element of the group.
13700
13701 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
13702
13703 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
13704
13705 2009-06-24 Kenichi Handa <handa@m17n.org>
13706
13707 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
13708 set for C.
13709 (fontset_font): Record the availability of a font for C both in
13710 the realized fontsets of the current one and the default one.
13711
13712 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
13713
13714 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
13715 conditional, it is always defined on AIX.
13716
13717 2009-06-23 Miles Bader <miles@gnu.org>
13718
13719 * window.c (Vrecenter_redisplay): New variable.
13720 (syms_of_window): Initialize it.
13721 (Qtty): New extern declaration.
13722 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
13723
13724 2009-06-23 Jim Meyering <meyering@redhat.com>
13725
13726 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
13727 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
13728 pointer dereferences are guaranteed to be valid.
13729
13730 2009-06-23 Kenichi Handa <handa@m17n.org>
13731
13732 * emacs.c (main): Call init_font ().
13733
13734 * font.h (Vfont_log): Extern it.
13735 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
13736
13737 * font.c (font_sort_entities, font_list_entities)
13738 (font_matching_entity, font_open_entity)
13739 (font_close_object): Change font_add_log to FONT_ADD_LOG.
13740 (Vfont_log): Delete static.
13741 (font_log_env_checked): Delete this variable.
13742 (font_add_log): Don't check font_log_env_checked.
13743 (font_deferred_log): Check Vfont_log.
13744 (init_font): New function.
13745
13746 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
13747
13748 * w32font.c: Change font_add_log to FONT_ADD_LOG.
13749
13750 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
13751
13752 * xfont.c: Change font_add_log to FONT_ADD_LOG.
13753
13754 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
13755 (face_for_char): Don't call font_deferred_log here.
13756 (font_for_char): Likewise.
13757
13758 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
13759
13760 * w32term.c (x_draw_glyph_string): Use the glyph string's width
13761 rather than its background_width for drawing the overline and
13762 underline (Bug#489).
13763
13764 * xterm.c (x_draw_glyph_string): Use the glyph string's width
13765 rather than its background_width for drawing the overline and
13766 underline (Bug#489).
13767 (xg_default_icon_file): New variable.
13768 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
13769 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
13770
13771 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
13772 (load_overlay_strings): Remove externs.
13773 (fast_find_position): Function deleted.
13774 (mouse_face_from_buffer_pos): New function, based on
13775 fast_find_position. Correctly handle before-strings,
13776 display-strings, and after-strings (Bug#1220).
13777 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
13778
13779 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
13780
13781 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
13782 (move_it_in_display_line_to, move_it_in_display_line_to)
13783 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
13784
13785 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
13786
13787 * Branch for 23.1.
13788
13789 2009-06-21 Jason Rumney <jasonr@gnu.org>
13790
13791 * w32term.c (keyboard_codepage): New static variable.
13792 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
13793 (w32_read_socket) [WM_CHAR]: Use it to decode character
13794 input (bug#3237).
13795 (w32_initialize): Initialize it.
13796 (codepage_for_locale): New function.
13797
13798 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
13799
13800 * process.c (status_message): Pass Faset index argument as a lisp
13801 object, so as to work with USE_LISP_UNION_TYPE.
13802
13803 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13804
13805 * coding.c (Ffind_coding_systems_region_internal):
13806 Cache checked characters.
13807
13808 2009-06-18 Kenichi Handa <handa@m17n.org>
13809
13810 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
13811
13812 2009-06-18 Andreas Schwab <aschwab@redhat.com>
13813
13814 * xdisp.c (redisplay_internal): Check that the frame is still
13815 live after redisplay of its windows.
13816 (redisplay_windows): Check that the window is still live.
13817
13818 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
13819
13820 * coding.c (detect_coding_utf_16): Fix previous change.
13821
13822 2009-06-16 Kenichi Handa <handa@m17n.org>
13823
13824 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
13825 UTF-16 by checking the dispersion of Eth and Oth bytes.
13826
13827 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
13828
13829 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
13830
13831 2009-06-15 Kenichi Handa <handa@m17n.org>
13832
13833 * process.c (status_message): Fix previous change. Be sure to
13834 decode a localized string.
13835
13836 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13837
13838 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
13839 add comment explaining why.
13840
13841 2009-06-14 Sidney Markowitz <sidney@sidney.com>
13842
13843 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
13844
13845 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
13846
13847 * nsfont.m (ns_attribute_value): Remove.
13848 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
13849 (ns_has_attribute): Shrink the normal range.
13850 (ns_findfonts): Don't worry about requested spec in determining
13851 need for synthItal.
13852 (ns_get_covering_families): Retain scriptToFamilies.
13853
13854 2009-06-14 Seiji Zenitani <zenitani@mac.com>
13855
13856 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
13857
13858 2009-06-11 Kenichi Handa <handa@m17n.org>
13859
13860 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
13861 overhang for the static composition case.
13862
13863 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13864
13865 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
13866 overhang for the automatic composition case.
13867
13868 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
13869 composition case.
13870
13871 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
13872
13873 * xdisp.c (get_next_display_element): When handling wrap-prefix
13874 and line-prefix, treat \n as a control character (bug#3502).
13875
13876 2009-06-10 Kenichi Handa <handa@m17n.org>
13877
13878 * font.c (font_parse_family_registry): Fix for one-char foundry.
13879 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
13880
13881 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
13882
13883 * process.c (status_message): Fix handling of multibyte signal
13884 string (Bug#3499).
13885
13886 2009-06-09 Jim Meyering <meyering@redhat.com>
13887
13888 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
13889 color name is missing.
13890
13891 2009-06-09 Kenichi Handa <handa@m17n.org>
13892
13893 * charset.c (Fmap_charset_chars): In docstring, state clearly that
13894 FROM-CODE and TO-CODE are codepoints of CHARSET.
13895
13896 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
13897
13898 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
13899
13900 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
13901
13902 Changes to support :script/:lang/:otf in NS font driver.
13903 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
13904 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
13905 indicate not part of font driver interface, and change callers.
13906 (ns_get_family): Remove pointless null check.
13907 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
13908 ns_spec_to_descriptor, ns_descriptor_to_entity.
13909 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
13910 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
13911 (ns_spec_to_descriptor, ns_descriptor_to_entity)
13912 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
13913 (ns_get_req_script, ns_accumulate_script_ranges)
13914 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
13915 New functions.
13916 (nsfont_list, nsfont_match): Use ns_findfonts.
13917 (nsfont_open): Use font descriptor instead of traits.
13918 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
13919 (dump_glyphstring): Rename to ns_dump_glyphstring.
13920
13921 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
13922
13923 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
13924
13925 * fontset.c (fontset_from_font): Remove NS-specific code.
13926
13927 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
13928
13929 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
13930 nonactive windows.
13931
13932 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
13933
13934 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
13935
13936 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
13937
13938 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
13939
13940 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
13941
13942 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
13943 account for the overflowing of newlines into the last glyph on the
13944 display line (Bug#3482).
13945
13946 2009-06-05 David Reitter <david.reitter@gmail.com>
13947
13948 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
13949 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
13950 Fns_selection_exists_p, Fns_selection_owner_p.
13951
13952 2009-06-03 Jason Rumney <jasonr@gnu.org>
13953
13954 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
13955 available. (Bug#3379)
13956
13957 2009-05-29 Kenichi Handa <handa@m17n.org>
13958
13959 * coding.c (get_translation_table):
13960 Check Venable_character_translation.
13961
13962 2009-05-26 David Reitter <david.reitter@gmail.com>
13963
13964 * nsterm.m (ns_raise_frame): Only raise frame if visible.
13965 (x_make_frame_visible): Move frame to front rather than calling
13966 ns_raise_frame().
13967 (keyDown:): Do not swallow events that aren't re-sent if frame
13968 isn't key window.
13969 (drawRect:): Do not set visibility/iconified flags because
13970 drawRect may be called by NSView even if the frame is hidden.
13971
13972 * nsfns.m (Fx_create_frame): Follow other ports in
13973 determining visibility; default to t. Ensure async_visible is set.
13974
13975 2009-05-23 Eli Zaretskii <eliz@gnu.org>
13976
13977 * dired.c (Ffile_attributes): Doc fix.
13978
13979 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
13980
13981 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
13982
13983 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13984
13985 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
13986 and xfont_scratch_props.
13987 (syms_of_xfont): Do it here instead.
13988 (xfont_find_ccl_program): Delete, unused.
13989 (xfont_open): Delete unused var `i'.
13990
13991 2009-05-21 Kenichi Handa <handa@m17n.org>
13992
13993 * fontset.c (Qlatin): Don't make it static.
13994
13995 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
13996 New functions.
13997 (xfont_scripts_cache, xfont_scratch_props): New variables.
13998 (Qlatin, Vscalable_fonts_allowed): Extern it.
13999 (xfont_list_pattern): Argument changed. Callers changed.
14000 Check Vscalable_fonts_allowed. Check the support of a script.
14001 (xfont_list): Don't reject a font spec with :script property.
14002 (xfont_has_char): Fix setting of encoding.
14003 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
14004 xfont_scratch_props.
14005
14006 2009-05-19 Kenichi Handa <handa@m17n.org>
14007
14008 * font.c (font_sort_entities): Rename from font_sort_entites.
14009 Callers changed.
14010
14011 2009-05-18 Kenichi Handa <handa@m17n.org>
14012
14013 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
14014
14015 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
14016
14017 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
14018 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
14019
14020 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14021
14022 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
14023 (x_delete_terminal): Dissociate resource database from display and
14024 then call XrmDestroyDatabase before closing display.
14025
14026 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
14027
14028 * nsterm.m (ns_read_socket): Remove unused variable.
14029 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
14030 whether selected frame is viable before raising it (based on patch
14031 by David Reitter), and improve commentary.
14032 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
14033
14034 2009-05-15 Kenichi Handa <handa@m17n.org>
14035
14036 * font.c (Ffont_spec): Check arguments.
14037
14038 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
14039
14040 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
14041 weight when testing attributes (Bug#3282).
14042
14043 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14044
14045 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
14046 what we expect to get in the next ConfigureNotify event.
14047
14048 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
14049 before Xft one (Bug#1696).
14050
14051 2009-05-07 David Reitter <david.reitter@gmail.com>
14052
14053 * nsfns.m (Fx_display_planes): Compute bitplanes using
14054 NSBitsPerPixelFromDepth (Bug#3207).
14055
14056 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
14057
14058 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
14059
14060 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
14061
14062 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
14063
14064 2009-05-07 David Reitter <david.reitter@gmail.com>
14065
14066 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
14067 Respect mouse face background.
14068
14069 2009-05-07 David Reitter <david.reitter@gmail.com>
14070
14071 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
14072 Mouse movement/highlight: bracket drawing operations
14073 in ns_update_begin and ns_update_end.
14074
14075 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14076
14077 * nsfns.m (ns_get_screen): Rewrite.
14078 Don't presume selected-frame is of type `ns'.
14079
14080 * font.c (font_update_drivers): Sanity fallback to avoid disabling
14081 all drivers.
14082
14083 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
14084
14085 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14086
14087 * keyboard.h (add_user_signal): Fix typo in extern.
14088
14089 * lisp.h (add_user_signal): Remove extern.
14090
14091 * unexelf.c (unexec): Consider a section to precede the .bss section
14092 if its addresses overlap that of .bss.
14093 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
14094 instead of dumping process.
14095
14096 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14097
14098 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
14099
14100 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
14101
14102 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
14103
14104 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
14105
14106 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
14107 any statements.
14108
14109 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
14110
14111 * process.c (read_process_output): Make sure the current buffer is
14112 always restored.
14113
14114 * coding.c (record_conversion_result): Don't modify
14115 Vlast_code_conversion_error for successful result.
14116 (alloc_destination): Don't clobber conversion result. (Bug#1650)
14117
14118 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
14119
14120 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
14121 (load_charset_map): Remove unnecessary code.
14122
14123 2009-04-30 David Reitter <david.reitter@gmail.com>
14124
14125 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
14126 through f24.
14127
14128 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
14129
14130 * xfaces.c (face_at_buffer_position): New arg base_face_id.
14131
14132 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
14133 face_at_buffer_position.
14134 (face_before_or_after_it_pos, get_next_display_element)
14135 (note_mouse_highlight): Update face_at_buffer_position call.
14136
14137 * term.c (term_mouse_highlight):
14138 * msdos.c (IT_note_mouse_highlight):
14139 * fontset.c (Finternal_char_font):
14140 * font.c (font_at, font_range): Update face_at_buffer_position call.
14141
14142 * dispextern.h (face_at_buffer_position): Update prototype.
14143
14144 2009-04-30 Kenichi Handa <handa@m17n.org>
14145
14146 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
14147
14148 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
14149
14150 * callproc.c (Fcall_process): Fix GC protection. Make sure
14151 current buffer is always restored.
14152
14153 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14154
14155 * atimer.c (init_atimer): Also clear stopped_atimers.
14156
14157 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
14158
14159 * process.c (create_process): Clean up merger residues of
14160 2008-07-17 change.
14161
14162 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
14163
14164 * lread.c (Vread_circle): New variable.
14165 (read1): Disable recursive read if Vread_circle is nil.
14166
14167 2009-04-29 Kenichi Handa <handa@m17n.org>
14168
14169 * fontset.h (set_default_ascii_font): Delete extern.
14170
14171 * fontset.c (set_default_ascii_font): Delete this unused function.
14172
14173 * frame.c (x_set_font): When ARG is a font-object, check if the
14174 font-object matches with the ASCII font-spec of the frame's
14175 fontset. If not, create a new fontset for the frame. (Bug #3075)
14176
14177 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
14178
14179 * fns.c (Flocale_info): Protect vector from GC during decoding.
14180
14181 * process.c (Fstart_process): Protect argv strings from GC during
14182 encoding.
14183
14184 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
14185
14186 * sysdep.c: Include <ctype.h>.
14187
14188 2009-04-27 David Reitter <david.reitter@gmail.com>
14189
14190 * nsfont.m (nsfont_open): Remove unused variable shrink.
14191 Remove commented-out code.
14192
14193 2009-04-26 Johan Bockgård <bojohan@gnu.org>
14194
14195 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
14196
14197 2009-04-25 Jason Rumney <jasonr@gnu.org>
14198
14199 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
14200
14201 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14202
14203 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
14204 Swap bytes in short integer if fringe bitmap width > 8.
14205
14206 2009-04-23 Kenichi Handa <handa@m17n.org>
14207
14208 * xfaces.c (Fx_list_fonts): If a font size is specified in
14209 PATTERN, set it in returned scalable fonts.
14210
14211 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
14212
14213 * keyboard.c (Fset_input_meta_mode): Doc fix.
14214
14215 * dispnew.c (Fsend_string_to_terminal): Doc fix.
14216
14217 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
14218
14219 * coding.c (Fterminal_coding_system): Doc fix.
14220
14221 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
14222 (Fx_display_pixel_height, Fx_display_planes)
14223 (Fx_display_color_cells, Fx_server_max_request_size)
14224 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
14225 (Fx_display_mm_height, Fx_display_mm_width)
14226 (Fx_display_backing_store, Fx_display_visual_class)
14227 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
14228 Doc fixes, replacing "terminal id" with "terminal object".
14229 (check_x_display_info): Handle terminal objects instead of
14230 terminal ids.
14231
14232 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
14233 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
14234 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
14235 Doc fixes, replacing "terminal id" with "terminal object".
14236
14237 2009-04-21 Kenichi Handa <handa@m17n.org>
14238
14239 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
14240 (font_score): Check AVGWIDTH too.
14241
14242 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
14243 worst case.
14244 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
14245 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
14246
14247 2009-04-19 Jason Rumney <jasonr@gnu.org>
14248
14249 The following changes fix Bug#3005 for wide glyphs on each platform,
14250 without reintroducing Bug#1258 for stretch glyphs.
14251
14252 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
14253 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
14254 get_phys_cursor_geometry.
14255
14256 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
14257 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
14258 using get_phys_cursor_geometry.
14259
14260 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
14261 correctly calculated.
14262
14263 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
14264
14265 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
14266 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
14267 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
14268 is deprecated.
14269
14270 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
14271
14272 * font.c (font_put_frame_data): Use xfree instead of free.
14273
14274 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
14275
14276 * w32font.c (Qja, Qko): Remove declarations.
14277 (syms_of_w32font): Don't DEFSYM them.
14278
14279 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
14280
14281 * font.c (Qja, Qko): Move definitions here from ftfont.c.
14282
14283 * font.h (Qja, Qko): Extern them.
14284
14285 * ftfont.c (Qja, Qko): Remove declarations.
14286
14287 * xfont.c (Qja, Qko): Remove declarations.
14288
14289 2009-04-17 Kenichi Handa <handa@m17n.org>
14290
14291 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
14292 string from a vector to handle Latin-1 characters correctly.
14293
14294 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
14295 entity even if the cache hits.
14296
14297 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
14298
14299 * search.c (boyer_moore): Use zero as marker value for a possible
14300 match instead of depending on overflow behavior. (Bug#2844)
14301
14302 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
14303 * lisp.h: Adjust prototypes.
14304
14305 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
14306
14307 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
14308 change (Bug#3003).
14309
14310 2009-04-16 Kenichi Handa <handa@m17n.org>
14311
14312 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
14313
14314 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
14315 adstyle.
14316
14317 * ftfont.c (Qja, Qko): Don't make them static.
14318 (enum ftfont_cache_for): New enum.
14319 (fc_charset_table): Undo the previous change.
14320 (ftfont_get_latin1_charset): Delete it.
14321 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
14322 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
14323 non-scarable font, try to get AVERAGE_WIDTH.
14324 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
14325 Change ft_face_cache from a list of a hash-table. Don't check
14326 `ja' and `ko' adstyle here.
14327 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
14328 FTFONT_CACHE_FOR_CHARET.
14329 (ftfont_get_charset): Undo the previous change.
14330 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
14331 (ftfont_close): Likewise.
14332 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
14333
14334 * font.c (font_sort_entites): Change the meaning of the arg
14335 BEST-ONLY. Don't optimize for VEC of lenght 1.
14336 (font_select_entity): Just return the value of font_sort_entites.
14337
14338 * xfaces.c (merge_face_vectors): Reflect font properties in
14339 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
14340 font_clear_prop if a face attribute doesn't change.
14341
14342 * charset.h (charset_ksc5601): Extern it.
14343
14344 * charset.c (charset_ksc5601): New variable.
14345 (Fdefine_charset_internal): Set charset_ksc5601.
14346 (init_charset_once): Initialize charset_ksc5601 to -1.
14347
14348 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
14349
14350 * fileio.c (history_delete_duplicates): Remove unused declaration.
14351
14352 * callint.c (history_delete_duplicates): New declaration.
14353 (Fcall_interactively): Remove command history duplicates when
14354 history_delete_duplicates is true.
14355
14356 2009-04-14 Eli Zaretskii <eliz@gnu.org>
14357
14358 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
14359
14360 2009-04-14 Kenichi Handa <handa@m17n.org>
14361
14362 * font.c (Ffont_info): Fix docstring. Fix the second element of
14363 the returned value (bug#2949).
14364
14365 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
14366
14367 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
14368
14369 2009-04-14 Kenichi Handa <handa@m17n.org>
14370
14371 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
14372 encoding charset is ascii_compatible.
14373
14374 * charset.c (Fdefine_charset_internal): Make charset
14375 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
14376 code_offset is 0, and covers all ASCII characters.
14377
14378 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
14379
14380 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
14381 (ns_string_to_pasteboard_internal):
14382 * nsmenu.m (process_dialog):
14383 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
14384 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
14385 * lisp.h (Fx_load_color_file): Declare.
14386
14387 2009-04-13 Kenichi Handa <handa@m17n.org>
14388
14389 * font.c (font_delete_unmatched): Preserve the order of list elements.
14390 (font_select_entity): Suppress the code to optimize for the same
14391 kind of fonts.
14392 (font_load_for_lface): Get a font that supports at least ASCII
14393 characters.
14394
14395 * ftfont.c (Qja, Qko): New variables.
14396 (fc_charset_table): Delete uniquifier data for iso8859-1.
14397 (ftfont_get_latin1_charset): New function.
14398 (get_adstyle_property): New function.
14399 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
14400 bitmap fonts.
14401 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
14402 Delete iso-8859-1 range from the charset of fonts whose adstyle is
14403 `ko' or `ja'.
14404 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
14405 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
14406 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
14407 property.
14408 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
14409 (syms_of_ftfont): DEFSYM Qja and Qko.
14410
14411 2009-04-09 Kenichi Handa <handa@m17n.org>
14412
14413 * charset.c (map_charset_chars): For a charset of `superset'
14414 method, fix calculation of code range.
14415
14416 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
14417 from the list of extra properties.
14418 (font_clear_prop): Be sure to delete `:name' font property.
14419
14420 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14421
14422 * dispnew.c (redraw_overlapping_rows): Fix detection of
14423 overlapping for topmost and bottommost rows.
14424
14425 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
14426
14427 2009-04-06 Jason Rumney <jasonr@gnu.org>
14428
14429 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
14430
14431 2009-04-06 Kenichi Handa <handa@m17n.org>
14432
14433 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
14434
14435 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
14436
14437 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14438
14439 * ftfont.c (ftfont_open): Fix checking of the return value of
14440 FT_Load_Char. Fix setting font->underline_thickness.
14441
14442 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
14443
14444 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
14445 (Fterminal_parameters, Fterminal_parameter)
14446 (Fset_terminal_parameter): In doc string, refer to terminal
14447 objects rather than terminal ids.
14448
14449 2009-04-04 Eli Zaretskii <eliz@gnu.org>
14450
14451 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
14452 ret_lim_data. (Bug#2867)
14453
14454 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
14455
14456 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
14457 so they don't get wider than the window, matching 2006-01-23
14458 change to the partner function in xdisp.c (Bug#2800).
14459
14460 2009-04-03 Kenichi Handa <handa@m17n.org>
14461
14462 * print.c (print_object): Make each lowest sub_char_table start a
14463 new line (Bug#2866).
14464
14465 2009-04-02 Kenichi Handa <handa@m17n.org>
14466
14467 * fontset.c (fontset_font): Record no-font when a fontset
14468 explicitly tells not to try another font-specs.
14469
14470 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
14471
14472 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
14473
14474 2009-03-30 Kenichi Handa <handa@m17n.org>
14475
14476 * fontset.c (fontset_from_font): Specify only registry in a
14477 font-spec for all characters supported by that registry.
14478
14479 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
14480 even if HAVE_M17N_FLT is not defined.
14481
14482 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
14483
14484 * ftfont.c: Conditionalize prototyping and use of
14485 ftfont_variation_glyphs.
14486
14487 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
14488
14489 * frame.c (delete_frame): Work around compiler bug.
14490
14491 * editfns.c (general_insert_function): Adjust to insdel.c changes.
14492 * insdel.c (prepare_to_modify_buffer, signal_before_change):
14493 Some more EMACS_INT.
14494 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
14495
14496 * xdisp.c (dump_glyph): Fix typo.
14497
14498 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
14499 (adjust_markers_gap_motion, adjust_markers_for_delete)
14500 (adjust_markers_for_insert, adjust_point)
14501 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
14502 (make_gap, copy_text, count_size_as_multibyte, insert)
14503 (insert_and_inherit, insert_before_markers)
14504 (insert_before_markers_and_inherit, insert_1)
14505 (count_combining_before, count_combining_after, insert_1_both)
14506 (insert_from_string, insert_from_string_before_markers)
14507 (insert_from_string_1, insert_from_gap, insert_from_buffer)
14508 (insert_from_buffer_1, adjust_after_replace)
14509 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
14510 (replace_range_2, del_range, del_range_1, del_range_byte)
14511 (del_range_both, del_range_2, modify_region)
14512 (prepare_to_modify_buffer, signal_before_change)
14513 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
14514 for buffer positions and sizes.
14515 * lisp.h: Adjust prototypes accordingly.
14516
14517 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
14518 (non_regular_inserted, non_regular_nbytes, read_non_regular)
14519 (Finsert_file_contents): Use EMACS_INT for buffer positions.
14520
14521 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
14522
14523 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
14524
14525 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
14526 lines and columns so we keep the same pixel height and width.
14527
14528 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
14529 the property _NET_WM_STATE has changed.
14530 (x_handle_net_wm_state): New function to update frame parameter
14531 fullscreen.
14532 (x_term_init): Initialize atoms for _NET_WM_STATE.
14533
14534 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
14535
14536 2009-03-27 Kevin Ryde <user42@zip.com.au>
14537
14538 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
14539 Gpm_GetEvent as an error that justifies closing the filedescriptor.
14540 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
14541 (Fgpm_mouse_stop): Pass that new parameter.
14542 * termhooks.h (close_gpm): Adjust prototype.
14543
14544 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
14545
14546 * lisp.h (Fx_focus_frame): Declare.
14547
14548 * callint.c (Fcall_interactively): For '^' just delegate the work to
14549 handle-shift-selection.
14550 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
14551
14552 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
14553
14554 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
14555
14556 * data.c (Qinteractive_form): New variable.
14557 (Finteractive_form): Use it.
14558
14559 * eval.c (Fcommandp): Use Qinteractive_form.
14560
14561 2009-03-24 Jason Rumney <jasonr@gnu.org>
14562
14563 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
14564 Calculate total size precisely. Decode environment variables
14565 before substituting. (Bug#38)
14566
14567 2009-03-24 Kenichi Handa <handa@m17n.org>
14568
14569 * font.c (find_font_encoding): Return Qnil for unsupported
14570 encoding (Bug#2722).
14571
14572 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
14573
14574 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
14575 that gdpy is set.
14576
14577 2009-03-22 Alan Mackenzie <acm@muc.de>
14578
14579 * callint.c (Finteractive): Clarify the doc string - even
14580 promptless elements need \n separators.
14581
14582 2009-03-22 Jason Rumney <jasonr@gnu.org>
14583
14584 * w32term.c (syms_of_w32term): Doc fix for
14585 x-use-underline-position-properties.
14586
14587 2009-03-21 Eli Zaretskii <eliz@gnu.org>
14588
14589 * w32.c (getpwuid): Change argument type to unsigned.
14590 (struct w32_id): Change type of `rid' member to unsigned.
14591 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
14592 argument ID to unsigned. All callers changed.
14593 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
14594
14595 2009-03-20 Eli Zaretskii <eliz@gnu.org>
14596
14597 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
14598 negative, produce a float value.
14599
14600 * dired.c (make_uid, make_gid): New functions.
14601 (Ffile_attributes): Use them to avoid negative UID and GID.
14602
14603 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
14604
14605 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
14606 (syms_of_keyboard) <command-hook-internal, input-method-function>:
14607 Fix typos in docstrings.
14608
14609 2009-03-19 Kenichi Handa <handa@m17n.org>
14610
14611 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
14612 changed, use font_load_for_lface to get a new font object.
14613 Call free_realized_fontset after handling ASCII font change.
14614
14615 * frame.c (x_set_font): Handle the case that ARG is a cons.
14616
14617 2009-03-19 Glenn Morris <rgm@gnu.org>
14618
14619 * fileio.c (Fsubstitute_in_file_name): Doc fix.
14620
14621 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
14622
14623 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
14624
14625 2009-03-19 Kenichi Handa <handa@m17n.org>
14626
14627 * charset.c (load_charset_map_from_file): When a mapfile can't be
14628 loaded, signal an error.
14629
14630 2009-03-18 Eli Zaretskii <eliz@gnu.org>
14631
14632 * dired.c (Ffile_attributes): Make sure UID and GID are always
14633 positive, even if the value is too large for a positive EMACS_INT.
14634 Doc fix.
14635
14636 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
14637
14638 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14639
14640 * xmenu.c (xdialog_show): Move Fredisplay call ...
14641 (Fx_popup_dialog): ... here.
14642
14643 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
14644
14645 * dired.c (file_name_completion): Disable the first optimization just
14646 installed, since it is not implemented correctly.
14647
14648 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
14649
14650 * dired.c (file_name_completion): Check completion-ignored-extensions
14651 only if the entry can affect bestmatch.
14652 Stop the search early, as Ftry_completion already does.
14653
14654 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
14655
14656 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
14657
14658 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
14659
14660 * keyboard.c (parse_menu_item): Don't display remappings as menu
14661 equivalent bindings (Bug#788).
14662
14663 2009-03-15 Jason Rumney <jasonr@gnu.org>
14664
14665 * w32term.h (WM_EMACS_PAINT): New message.
14666 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
14667 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
14668 before passing to lisp thread. (Bug#950)
14669
14670 2009-03-14 David Reitter <david.reitter@gmail.com>
14671
14672 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
14673 variable as it was never reset.
14674 (ns_term_init): Remove initialization of Lisp-settable defaults
14675 and ns_expand_space.
14676 (-setPanelFromDefaultValues): Remove ns_expand_space.
14677 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
14678 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
14679 i.e. no additional spacing, similar to Carbon port.
14680
14681 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
14682 * nsfns.m (ns-popup-prefs-panel): Remove.
14683
14684 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
14685
14686 * sound.c (alsa_configure): Remove call to deprecated
14687 snd_pcm_sw_params_set_xfer_align.
14688
14689 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
14690
14691 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
14692 after clicking in a detached tool bar.
14693 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
14694
14695 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
14696
14697 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
14698 int/Lisp_Object mixup).
14699
14700 2009-03-13 Kenichi Handa <handa@m17n.org>
14701
14702 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
14703 Handle NAME nil and t correctly. Callers changed.
14704 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
14705 (set_fontset_font): Change ARG to a vector. Handle range_list in
14706 ARG correctly.
14707 (Fset_fontset_font): Fix the case that TARGET is both a script
14708 name and charset name. Adjust the arg to set_fontset_font for
14709 the above change.
14710 (fontset_from_font): Fix previous change.
14711 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
14712 entry. If FONTSET is the default fontset, don't set the extra
14713 slot of the returning char-table.
14714
14715 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
14716
14717 * nsfns.m (Fx_close_connection): Doc fix.
14718 (Fns_do_applescript): Reflow docstring.
14719 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
14720 (Fx_display_pixel_width, Fx_display_pixel_height)
14721 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
14722 Fix typos in docstrings.
14723 (Fns_set_alpha): Fix typos in error messages.
14724
14725 2009-03-12 David Reitter <david.reitter@gmail.com>
14726
14727 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
14728 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
14729 were used for such events.
14730
14731 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
14732 (toggleToolbar, performDragOperation, runHelp): Use it.
14733
14734 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
14735 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
14736
14737 2009-03-11 Kenichi Handa <handa@m17n.org>
14738
14739 * font.h (font_open_by_spec): Extern it.
14740
14741 * font.c (font_open_by_spec): New function.
14742 (font_open_by_name): Use font_open_by_spec.
14743
14744 * frame.c (x_set_font): When ARG is a font-object, don't alter the
14745 fontset of the frame.
14746
14747 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
14748 modify the default font of frames that use this fontset.
14749 (num_auto_fontsets): New variable.
14750 (fontset_from_font): Use num_auto_fontsets to decide a fontset
14751 name. Be sure to set FONTSET_ASCII to the correct font name.
14752 (update_auto_fontset_alist): New function.
14753
14754 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
14755
14756 * makefile.w32-in: Update dependencies.
14757
14758 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
14759
14760 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
14761
14762 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
14763
14764 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
14765
14766 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
14767
14768 * lread.c (Feval_buffer): Doc fix.
14769
14770 2009-03-09 Kenichi Handa <handa@m17n.org>
14771
14772 * charset.c (Qfile_name_handler_alist): Extern it.
14773 (load_charset_map_from_file): Temporarily bind
14774 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
14775
14776 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
14777
14778 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
14779 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
14780
14781 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
14782
14783 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
14784 (x_set_window_size): Change back to calculated method of setting
14785 toolbar height under Cocoa. (Bug#2546)
14786 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
14787 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
14788
14789 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
14790
14791 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
14792 accelerator in parens under GNUstep.
14793
14794 2009-03-06 Kenichi Handa <handa@m17n.org>
14795
14796 These changes are to detect incorrect composition sequence without
14797 looking ahead the source. (Bug#2370)
14798
14799 * coding.h: Include "composite.h".
14800 (enum compisition_state): New enum.
14801 (struct compisition_status): New struct.
14802 (struct iso_2022_spec): New member cmp_status.
14803 (struct emacs_mule_spec): New struct.
14804 (struct coding_system): New members ctext_extended_segment_len and
14805 embedded_utf_8. Change the union member
14806 spec.emacs_mule_full_support to spec.emacs_mule.
14807
14808 * coding.c (CODING_ISO_CMP_STATUS): New macro.
14809 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
14810 (MAX_ANNOTATION_LENGTH): Define to 5.
14811 (ADD_COMPOSITION_DATA): New arg nbytes.
14812 (emacs_mule_char): New arg cmp_status.
14813 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
14814 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
14815 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
14816 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
14817 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
14818 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
14819 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
14820 (EMACS_MULE_COMPOSITION_END): New macro.
14821 (emacs_mule_finish_composition): New function.
14822 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
14823 (decode_coding_emacs_mule): Avoid long looking ahead while
14824 handling composition.
14825 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
14826 (ENCODE_COMPOSITION_RULE): New macro.
14827 (finish_composition): New function.
14828 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
14829 (DECODE_COMPOSITION_START): New implementation.
14830 (DECODE_COMPOSITION_END): Likewise.
14831 (STORE_COMPOSITION_RULE): New macro.
14832 (decode_coding_iso_2022): Avoid long looking ahead while handling
14833 composition, CTEXT extended segment, and embedded UTF-8.
14834 (setup_coding_system): For a coding of type iso-2022, reset
14835 CODING_ISO_EXTSEGMENT_LEN (coding) and
14836 CODING_ISO_EMBEDDED_UTF_8 (coding).
14837 (get_translation): Delete arguments last_block, from_nchars,
14838 to_nchars. Callers changed.
14839 (produce_chars): Don't modify charbuf. Adjusted for the change of
14840 get_translation.
14841 (produce_composition): Adjust for the new annotation sequence.
14842 (handle_composition_annotation): Likewise.
14843 (consume_chars): Adjust for the change of get_translation.
14844
14845 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
14846
14847 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
14848
14849 2009-03-05 Kenichi Handa <handa@m17n.org>
14850
14851 * font.c (font_select_entity): New function.
14852 (font_find_for_lface): Use font_select_entity to select a font.
14853
14854 * fontset.c (fontset_find_font): If a font found without
14855 restricting to the characters C doesn't support C, try to find a
14856 font with C restriction.
14857
14858 2009-03-04 Nikolaj Schumacher <me@nschum.de>
14859
14860 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
14861
14862 2009-03-04 Jason Rumney <jasonr@gnu.org>
14863
14864 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
14865 characters that have already been read. (Bug#2569)
14866
14867 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
14868 Log an error message if check_image_size failed.
14869 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
14870 (gs_load): Mention max-image-size in size error message. (Bug#2560)
14871
14872 2009-03-02 Eli Zaretskii <eliz@gnu.org>
14873
14874 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
14875 when decoding process output.
14876
14877 2009-03-01 Richard M Stallman <rms@gnu.org>
14878
14879 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
14880
14881 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
14882
14883 2009-02-28 Eli Zaretskii <eliz@gnu.org>
14884
14885 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
14886 (decode_coding_emacs_mule, decode_coding_iso_2022)
14887 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14888 (decode_coding_raw_text, decode_coding_charset)
14889 (setup_coding_system, decode_eol, decode_coding, consume_chars):
14890 Honor inhibit-eol-conversion. (Bug #2186)
14891
14892 2009-02-28 Jason Rumney <jasonr@gnu.org>
14893
14894 * coding.c (detect_coding_charset): If not checking latin extra,
14895 fail on characters between 0x80 and 0xA0. (Bug#2354)
14896
14897 2009-02-28 Eli Zaretskii <eliz@gnu.org>
14898
14899 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
14900 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
14901
14902 2009-02-27 Glenn Morris <rgm@gnu.org>
14903
14904 * callint.c (Finteractive): Doc fix.
14905
14906 2009-02-27 Kenichi Handa <handa@m17n.org>
14907
14908 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
14909
14910 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
14911
14912 * font.c (font_style_to_value): Set value for unknown symbols to
14913 100 instead of 255.
14914 (weight_table, slant_table, width_table): Treat "unspecified" as
14915 the default value.
14916
14917 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
14918
14919 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
14920
14921 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
14922
14923 * lread.c (Fload): Stop checking Vloads_in_progress and signal
14924 error as soon as a recursive load is detected.
14925
14926 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
14927
14928 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
14929 before caching.
14930
14931 2009-02-24 Kenichi Handa <handa@m17n.org>
14932
14933 * fontset.c (fontset_find_font): Fix the condition for checking
14934 unavailable font.
14935
14936 2009-02-24 Glenn Morris <rgm@gnu.org>
14937
14938 * xfaces.c (Finternal_set_font_selection_order): Remove leading
14939 whitespace that confuses documentation.
14940
14941 2009-02-23 Miles Bader <miles@gnu.org>
14942
14943 * process.c (Flist_system_processes, Fprocess_attributes)
14944 (syms_of_process): Rename `system-process-attributes' to
14945 `process-attributes'.
14946
14947 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
14948
14949 * coding.h (struct coding_system): Make safe_charsets a pointer to
14950 unsigned char.
14951 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
14952 being 255.
14953 (SAFE_CHARSET_P): Likewise.
14954 (setup_iso_safe_charsets): Properly setup safe_charsets.
14955 (Fdefine_coding_system_internal): Likewise.
14956 (setup_coding_system): Likewise. Remove unneeded casts.
14957 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
14958 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS.
14959 Remove unneeded casts.
14960
14961 * insdel.c (del_range_2): Don't modify gap contents when called
14962 from decode_coding_object. (Bug#1809)
14963
14964 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
14965
14966 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
14967 Qfont_object.
14968 (Ftype_of): Recognize font objects.
14969
14970 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
14971
14972 * font.c (Qfont_spec, Qfont_entity, Qfont_object):
14973 Definitions moved to data.c.
14974
14975 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
14976
14977 * nsterm.m (x_make_frame_invisible): Unset async_visible,
14978 async_iconified. Based on a patch by Christian Lynbech
14979 <christian.lynbech@tieto.com>.
14980 (EmacsView-windowDidMiniaturize:): Unset async_visible.
14981
14982 2009-02-20 Glenn Morris <rgm@gnu.org>
14983
14984 * syntax.c (Fskip_chars_forward): Fix doc typo.
14985
14986 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
14987
14988 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
14989
14990 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
14991
14992 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
14993
14994 2009-02-19 Kenichi Handa <handa@m17n.org>
14995
14996 * coding.c (detect_coding): Preserve coding->mode.
14997 Don't overflow coding->carryover. (Bug#2370)
14998
14999 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
15000
15001 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
15002
15003 2009-02-18 Kenichi Handa <handa@m17n.org>
15004
15005 * font.c (font_check_otf_features): Fix handling of `nil' element.
15006 (Ffont_spec): Describe :lang and :otf in the docstring.
15007
15008 2009-02-16 Andreas Schwab <schwab@suse.de>
15009
15010 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
15011 string.
15012
15013 2009-02-16 Kenichi Handa <handa@m17n.org>
15014
15015 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
15016 (Bug#1723)
15017
15018 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
15019
15020 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
15021
15022 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
15023 (handle_line_prefix): Suppress wrapping of wrap prefixes.
15024
15025 2009-02-14 Eli Zaretskii <eliz@gnu.org>
15026
15027 * msdos.c (MAX_SCREEN_BUF): New macro.
15028 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
15029 Encode the entire run of glyphs sharing the same face, instead of
15030 doing that one glyph at a time (fixes a bug with displaying
15031 double-size characters).
15032
15033 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
15034
15035 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
15036
15037 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
15038 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
15039 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
15040
15041 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
15042 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
15043
15044 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
15045
15046 * keyboard.c (adjust_point_for_property): Allow stopping between two
15047 invisible areas.
15048
15049 2009-02-12 Jason Rumney <jasonr@gnu.org>
15050
15051 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
15052 (add_font_entity_to_list): Call check_face_name even when family
15053 is unspecified.
15054
15055 * w32term.c (x_display_pixel_height, x_display_pixel_width):
15056 Release DC when finished. Use NULL window to refer to desktop.
15057 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
15058
15059 * w32font.c (add_font_entity_to_list): Fix check for substituted
15060 raster fonts. (Bug#2219)
15061
15062 2009-02-12 Kenichi Handa <handa@m17n.org>
15063
15064 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
15065 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
15066 (autocmp_chars): Use fast_looking_at. Don't compose more
15067 characters than MAX_COMPOSITION_COMPONENTS.
15068 (find_automatic_composition): While looking forward and backward,
15069 check static composition. Fix where to stop looking forward.
15070 (composition_adjust_point): Fix checking of static composition.
15071 (Fcomposition_get_gstring): Pay attention to
15072 MAX_COMPOSITION_COMPONENTS.
15073
15074 * lisp.h (fast_looking_at): Extern it.
15075
15076 * search.c (fast_looking_at): New function.
15077
15078 * term.c (encode_terminal_code): Adjust for the change of
15079 <struct glyph>.u.cmp.to.
15080 (append_composite_glyph): Likewise.
15081
15082 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
15083 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
15084 composition.
15085 (append_composite_glyph): Adjust for the change of
15086 <strcut glyph>.u.cmp.to.
15087
15088 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
15089
15090 * casetab.c (init_casetab_once):
15091 * coding.c (ALLOC_CONVERSION_WORK_AREA):
15092 * font.c (font_update_lface):
15093 * fontset.c (Fnew_fontset):
15094 * ftfont.c (ftfont_drive_otf):
15095 * xfont.c (xfont_open):
15096 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
15097
15098 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
15099
15100 * fileio.c (Fwrite_region): !NILP -> CONSP.
15101
15102 2009-02-10 Andreas Schwab <schwab@suse.de>
15103
15104 * process.c (send_process): Properly relocate pointer into data
15105 when using encoded data. (Bug#2272)
15106
15107 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
15108
15109 * coding.c (detect_coding_charset): Fix previous change.
15110
15111 2009-02-08 Jason Rumney <jasonr@gnu.org>
15112
15113 * w32fns.c (w32_hide_hourglass): Handle case where frame
15114 disappeared while hourglass was displayed. (Bug #2193)
15115
15116 2009-02-07 Andreas Schwab <schwab@suse.de>
15117
15118 * unexelf.c (unexec): Fix error message.
15119
15120 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
15121
15122 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
15123 when modal window is active. (Bug #2152)
15124 (applicationShouldTerminate:): Remove now-unneeded while loop
15125 around NSRunAlertPanel.
15126
15127 * nsmenu.m (popupSession): New file-global variable.
15128 (pop_down_menu): End the popupSession before closing dialog.
15129 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
15130 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
15131 don't query NSApp for events (just sleep instead).
15132
15133 2009-02-07 Eli Zaretskii <eliz@gnu.org>
15134
15135 * coding.c (syms_of_coding) <translation-table-for-input>:
15136 Modify doc string to discourage use for character code unification.
15137
15138 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15139
15140 * atimer.c (run_timers): Update pending_atimers.
15141
15142 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
15143
15144 * image.c (svg_load_image): Fix last change.
15145
15146 * xfns.c (Fx_create_frame): Signal an error if no font is
15147 found (Bug#2147).
15148
15149 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
15150
15151 * character.c (syms_of_character) <script-representative-chars>:
15152 Fix typo in docstring.
15153
15154 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
15155
15156 * nsmenu.m (pop_down_menu): New function.
15157 (ns_popup_dialog): Call it on unwind.
15158 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
15159 call timer_check() (Bug#2154).
15160 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
15161 handling_signal is set.
15162 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
15163
15164 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
15165
15166 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
15167
15168 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
15169
15170 * keyboard.c (poll_for_input_1, handle_async_input):
15171 Set handling_signal under HAVE_NS.
15172
15173 2009-02-04 Glenn Morris <rgm@gnu.org>
15174
15175 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
15176
15177 2009-02-04 Kenichi Handa <handa@m17n.org>
15178
15179 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
15180
15181 * charset.c (Fchar_charset): New optional arg restriction.
15182
15183 * coding.h (coding_system_charset_list): Extern it.
15184
15185 * coding.c (coding_system_charset_list): New function.
15186
15187 * composite.c: Include coding.h and termhooks.h.
15188 (composition_gstring_p): Fix for the terminal case.
15189 (composition_gstring_width): Likewise.
15190 (fill_gstring_body): Likewise.
15191 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
15192 the frame.
15193 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
15194 is within a composition.
15195 (Fcomposition_get_gstring): Fix the terminal case.
15196
15197 * term.c (encode_terminal_code): Fix handling of composition.
15198 (produce_composite_glyph): For static composition, get pixel_width
15199 from struct composition.
15200
15201 2009-02-02 Andreas Schwab <schwab@suse.de>
15202
15203 * unexelf.c (unexec): Handle unaligned bss offset.
15204
15205 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
15206
15207 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
15208 XT,w32read_socket changes to ns_read_socket.
15209
15210 * keyboard.c (handle_interrupt): Don't call
15211 quit_throw_to_read_char() under NS.
15212
15213 * blockinput.h: Remove NS-specific code.
15214
15215 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
15216
15217 * dispnew.c (window_change_signal): Don't try to get the size of a
15218 suspended tty frame.
15219 * term.c (Fresume_tty): Resize if the size has changed while the
15220 tty was suspended.
15221
15222 * alloc.c (mark_stack): Properly conditionalize previous change.
15223
15224 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
15225
15226 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
15227 * w32term.c (w32_read_socket) [SYNC_INPUT]:
15228 Remove; this code is not used on Windows.
15229
15230 2009-01-30 Eli Zaretskii <eliz@gnu.org>
15231
15232 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
15233 EOLs that also has stray ^M characters.
15234
15235 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
15236
15237 * atimer.c (run_timers, alarm_signal_handler):
15238 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
15239 * w32inevt.c (w32_console_read_socket):
15240 * w32term.c (w32_read_socket):
15241 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
15242
15243 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
15244
15245 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
15246 Initialize it as a relative filename pattern.
15247 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
15248 (Fcall_process_region): Simplify temp file creation using
15249 temporary-file-directory.
15250
15251 2009-01-29 Eli Zaretskii <eliz@gnu.org>
15252
15253 * msdos.c: Rename pending_signals to msdos_pending_signals.
15254 (sig_suspender, sigprocmask): Adjust.
15255
15256 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
15257
15258 * keyboard.c (pending_signals): New var.
15259 (poll_for_input, input_available_signal, init_keyboard): Set it.
15260 (process_pending_signals): New function.
15261
15262 * lisp.h (QUIT): Check pending_signals instead of
15263 interrupt_input_pending. Use process_pending_signals.
15264
15265 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
15266
15267 * process.c (wait_reading_process_output): Use process_pending_signals.
15268
15269 * sysdep.c (emacs_write): Use process_pending_signals.
15270
15271 * xterm.c (XTread_socket): Update pending_signals.
15272
15273 * w32term.c (w32_read_socket): Update pending_signals.
15274
15275 * w32inevt.c (w32_console_read_socket): Update pending_signals.
15276
15277 2009-01-29 Kenichi Handa <handa@m17n.org>
15278
15279 * xftfont.c (xftfont_has_char): New function.
15280 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
15281
15282 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
15283
15284 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
15285 under GNUstep.
15286 (ns_query_color): New declaration.
15287
15288 * nsterm.m (ns_confirm_quit): New variable.
15289 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
15290 (EmacsApp-applicationShouldTerminate:): Use it.
15291 (EmacsPrefsController): Let user set it.
15292 (ns_query_color): New function.
15293 (ns_defined_color): Use it.
15294 (ns_initialize): Drop.
15295 (ns_term_init): Add two lines from ns_initialize(), and set
15296 input_interrupt_mode to nil.
15297
15298 * image.c (svg_load_image): Don't right-shift background RGB when
15299 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
15300
15301 2009-01-28 Kenichi Handa <handa@m17n.org>
15302
15303 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
15304 (fontset_get_font_group): Remember that no font-group is specified
15305 for C.
15306
15307 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
15308
15309 * fns.c (concat): Check for string overflow (bug#1787).
15310
15311 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
15312 Quadruple undo limits (bug#1501).
15313
15314 2009-01-27 Kenichi Handa <handa@m17n.org>
15315
15316 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
15317 directly use GT_Get_Char_index.
15318
15319 * xftfont.c (struct xftfont_info): New member `index'.
15320
15321 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
15322 (Ffontset_font): Adjust for the change of fontset entry.
15323
15324 2009-01-26 Kenichi Handa <handa@m17n.org>
15325
15326 * fontset.c (fontset_find_font): Fix handling of non-cons return
15327 value of fontset_get_font_group.
15328 (fontset_font): Revert last change.
15329
15330 2009-01-26 Jason Rumney <jasonr@gnu.org>
15331
15332 * w32font.c (w32font_list_internal): Return quickly if registry is
15333 unknown. Simplify final return.
15334 (add_font_entity_to_list): Break complex logic down into more
15335 manageable chunks. Move unknown registry check to
15336 w32font_list_internal.
15337
15338 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
15339
15340 Changes to remove Feval calls from GUI under NS.
15341
15342 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
15343 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
15344 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
15345
15346 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
15347 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
15348 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
15349 instead of NON_ASCII_KEYSTROKE_EVENT.
15350 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
15351 (EmacsApp-applicationShouldTerminate:): Query user.
15352 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
15353 instead of Feval.
15354
15355 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
15356
15357 * keyboard.c (kbd_buffer_get_event): Check for it.
15358 (keys_of_keyboard): Define lispy keys for
15359 ns-put/unput-working-text.
15360
15361 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
15362 versions.
15363 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
15364
15365 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
15366
15367 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
15368 setting current_buffer directly. (Bug#2044)
15369
15370 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
15371
15372 * fontset.c (fontset_font): If we know there is no font, don't do
15373 any work. (Bug#1952, bug#1990).
15374
15375 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
15376
15377 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
15378
15379 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
15380 (ns_no_defaults): New declaration.
15381 (main): Use it.
15382
15383 * nsterm.h (ns_no_defaults): New declaration.
15384
15385 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
15386
15387 * nsterm.m (ns_no_defaults): New variable.
15388 (ns_initialize): Don't read defaults when ns_no_defaults.
15389 (EmacsView-readSelectionFromPasteboard:)
15390 (writeSelectionToPasteboard:types:): New stubbed-out methods for
15391 NSServicesRequests protocol. (Bug#1435)
15392 (ns_dumpglyphs_stretch): New function.
15393 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
15394 of 2008-11-15 to other terms. (Bug#615)
15395
15396 * nsimage.m (setPixmapData:): Set to ignore image DPI.
15397
15398 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
15399
15400 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
15401 call for Sparc64.
15402
15403 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
15404
15405 * nsfns.m:
15406 * nsgui.h:
15407 * nsmenu.m:
15408 * nsselect.m:
15409 * nsterm.h:
15410 * nsterm.m: Remove '23' comments that indicated code added during
15411 update from emacs-20 -> emacs-23.
15412
15413 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
15414
15415 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
15416 ns_alternate_modifier. (Bug#1217)
15417
15418 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
15419 Display all shortcuts, including those w/o super modifier.
15420
15421 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
15422
15423 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
15424
15425 * fileio.c (Vwrite_region_post_annotation_function)
15426 (Vwrite_region_annotation_buffers): New vars.
15427 (build_annotations_unwind): Just reset
15428 Vwrite_region_annotation_buffers.
15429 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
15430 Call write-region-post-annotation-function.
15431 (build_annotations): Add to Vwrite_region_annotation_buffers if
15432 buffer changes.
15433
15434 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
15435
15436 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
15437 Tiger.
15438 * nsfns.m (ns_do_applescript):
15439 Conditionalize typeUTF16ExternalRepresentation on Tiger.
15440
15441 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
15442
15443 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
15444
15445 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
15446
15447 * nsmenu.m (NSMENUPROFILE): Change #if style.
15448
15449 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
15450
15451 * nsterm.m (x_set_frame_alpha): Add prototype.
15452 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
15453 handle Ctrl-tab. (Bug#1841)
15454 (ns_get_color): Use unsigned long long for scanned hex string value.
15455 (ns_term_shutdown): Abort on non SIGTERM signals.
15456 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
15457 (EmacsPrefsController-setPanelFromDefaultValues): New function.
15458 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
15459 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
15460 (ns_defined_color): Fix settings of the XColor variable fields:
15461 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
15462
15463 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
15464 DPI. (Bug#1316)
15465 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
15466 values in onTiger section.
15467
15468 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
15469
15470 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
15471 Check return value of font_spec_from_name.
15472 (Fx_list_fonts): Doc fix. (Bug#1951)
15473
15474 * font.c (font_spec_from_name): Return Qnil if font name could not
15475 be parsed.
15476 (font_parse_name): Treat a `?' character as part of an XLFD.
15477
15478 * fns.c (Fsubstring): Doc fix.
15479
15480 2009-01-19 Kenichi Handa <handa@m17n.org>
15481
15482 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
15483 (ftfont_list): Likewise.
15484
15485 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
15486
15487 * dbusbind.c (Fdbus_register_signal):
15488 * process.c (conv_sockaddr_to_lisp):
15489 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
15490
15491 * callproc.c (Fgetenv_internal): Doc fix.
15492
15493 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
15494
15495 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
15496 it is not even used.
15497
15498 2009-01-16 Glenn Morris <rgm@gnu.org>
15499
15500 * font.c (Ffont_variation_glyphs): Silence compiler.
15501
15502 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
15503
15504 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
15505 Reported by David Robinow <drobinow@gmail.com>.
15506
15507 2009-01-15 Kenichi Handa <handa@m17n.org>
15508
15509 * coding.c (detect_coding_system): Fix handling of null_byte_found.
15510
15511 2009-01-14 Jason Rumney <jasonr@gnu.org>
15512
15513 * frame.c (x_set_font): Always store a font to the font parameter,
15514 never a fontset. (Bug#1562)
15515
15516 2009-01-14 Kenichi Handa <handa@m17n.org>
15517
15518 * coding.c (TWO_MORE_BYTES): New macro.
15519 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
15520
15521 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
15522
15523 * font.c (font_clear_prop): If clearing the family, clear the font
15524 width index too.
15525
15526 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
15527
15528 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
15529
15530 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
15531 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
15532 functions, use sizeof.
15533
15534 2009-01-12 Martin Rudalics <rudalics@gmx.at>
15535
15536 * keyboard.c (read_char): Fix case where last_nonmenu_event
15537 returned a bad value with submenus. (Bug#447)
15538
15539 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
15540
15541 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
15542 family, clear the font width index too.
15543
15544 2009-01-11 Jason Rumney <jasonr@gnu.org>
15545
15546 * keyboard.c (cmd_error_internal): Exit when errors occur before
15547 frame creation and not in daemon mode. (Bug#1836)
15548
15549 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
15550
15551 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
15552 of a display vector, backtrack.
15553 (try_window_reusing_current_matrix): Check glyph type before
15554 referencing charpos member.
15555
15556 2009-01-10 Eli Zaretskii <eliz@gnu.org>
15557
15558 Fix Bug #876:
15559
15560 * coding.c (inhibit_null_byte_detection): New variable.
15561 (detect_coding, detect_coding_system): Don't pay attention to null
15562 bytes if inhibit_null_byte_detection is non-zero.
15563 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
15564 <inhibit-iso-escape-detection>: Doc fix.
15565
15566 2009-01-09 Jason Rumney <jasonr@gnu.org>
15567
15568 * w32font.c (add_font_entity_to_list): Don't report unknown
15569 Windows charset as any unrecognized registry. (Bug#1548)
15570 Only report Unicode Plane 2 fonts as unicode-sip.
15571
15572 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
15573
15574 * xfaces.c (Fx_font_family_list): Delete function.
15575 Move compatibility version to faces.el.
15576
15577 * font.c (Ffont_family_list): Return a list of strings, not symbols.
15578
15579 2009-01-09 Martin Rudalics <rudalics@gmx.at>
15580
15581 * frame.c (x_set_frame_parameters): Remember requested value for
15582 fullscreen before it's reset by the parameter handler.
15583
15584 2009-01-09 Glenn Morris <rgm@gnu.org>
15585
15586 * keyboard.c (last_command_char): For clarity, rename to...
15587 (last_command_event): ... and update all users.
15588 (last_input_char): For clarity, rename to...
15589 (last_input_event): ... and update all users.
15590 (last-command-char, last-input-char): Move to subr.el as aliases.
15591 * cmds.c, commands.h: Update for last_command_char rename.
15592
15593 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
15594
15595 * font.c (font_open_for_lface): Handle unspecified height attribute.
15596
15597 2009-01-08 Jason Rumney <jasonr@gnu.org>
15598
15599 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
15600 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
15601 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
15602 Don't declare.
15603 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
15604 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
15605
15606 2009-01-07 Kenichi Handa <handa@m17n.org>
15607
15608 * fileio.c (Finsert_file_contents): In the case of replace,
15609 remember the coding system used for decoding in
15610 coding_system (Bug#1039).
15611
15612 * coding.c (decode_coding_utf_8): Check byte_after_cr before
15613 breaking the loop. (Bug#870)
15614 (decode_coding_utf_16, decode_coding_emacs_mule)
15615 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
15616 (decode_coding_charset): Likewise.
15617
15618 2009-01-05 Martin Rudalics <rudalics@gmx.at>
15619
15620 * frame.c (x_set_frame_parameters): Make sure height (width) get
15621 applied when fullwidth (fullheight) is set. (Bug#1522)
15622
15623 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
15624
15625 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
15626 (utc_base): Declare as ULONGLONG, not long double.
15627 (convert_time_raw): Delete.
15628 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
15629 (initialize_utc_base): New function.
15630 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
15631 (convert_from_time_t): Use initialize_utc_base; compute result with
15632 64-bit arithmetic.
15633 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
15634
15635 2009-01-03 Eli Zaretskii <eliz@gnu.org>
15636
15637 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
15638 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
15639 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
15640 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
15641 [!subprocesses]: Define.
15642 (syms_of_process) [!subprocesses]: Intern and staticpro them.
15643 (Flist_system_processes, Fsystem_process_attributes)
15644 [!subprocesses]: Call list_system_processes and
15645 system_process_attributes instead of returning Qnil.
15646
15647 * dosfns.c (system_process_attributes, list_system_processes):
15648 New functions.
15649
15650 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
15651
15652 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
15653 Don't use the default (no-op) implementation.
15654
15655 2009-01-03 Jason Rumney <jasonr@gnu.org>
15656
15657 * keyboard.c (parse_modifiers_uncached): Wheel events are
15658 clicks (bug#687).
15659
15660 * w32term.c (x_query_colors, x_query_color): New functions.
15661
15662 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
15663 (svg_load_image): Cast returned pointers from dynamically loaded
15664 functions. Eliminate W32 specific code.
15665
15666 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
15667
15668 * nsfns.m (x_set_foreground_color, x_set_background_color)
15669 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
15670 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
15671 x_ prefix instead of ns_. Update references.
15672 (syms_of_nsfns): Add a FIXME comment.
15673
15674 * nsterm.m (x_set_cursor_type): New prototype.
15675 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
15676
15677 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
15678 for Solaris instead of incorrectly providing Qutime and Qcutime.
15679
15680 2009-01-02 Eli Zaretskii <eliz@gnu.org>
15681
15682 * w32.c (process_times): Compute sum of utime and stime.
15683 (system_process_attributes): Add Qtime to the alist.
15684
15685 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
15686 and add them to the alist.
15687
15688 * process.c (top level) <Qtime, Qctime>: New variables.
15689 (syms_of_process): staticpro them.
15690 (Fsystem_process_attributes): Add their documentation to the doc
15691 string.
15692
15693 * process.h: Declare Qtime and Qctime.
15694
15695 2009-01-02 Jason Rumney <jasonr@gnu.org>
15696
15697 * image.c (Qgobject): New symbol.
15698 (syms_of_image): Initialize it.
15699 (init_svg_functions): Load some functions from gobject library.
15700
15701 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
15702
15703 * frame.c (make_terminal_frame): Remove redundant code and useless
15704 block.
15705
15706 2009-01-01 Andreas Schwab <schwab@suse.de>
15707
15708 * process.c (conv_sockaddr_to_lisp): Add workaround for
15709 getsockname bug on BSD.
15710
15711 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
15712
15713 * xfns.c (x_create_tip_frame): Set border width of the X window.
15714
15715 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
15716
15717 2009-01-01 Jason Rumney <jasonr@gnu.org>
15718
15719 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
15720 Don't block input, as per earlier xterm.c changes.
15721
15722 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
15723
15724 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
15725 (ns_appkit_version_int): New function.
15726 (x-server-version): Use ns_appkit_version_int and follow 21+
15727 convention of returning 3 integers.
15728
15729 2008-12-30 Kenichi Handa <handa@m17n.org>
15730
15731 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
15732 (CHAR_SURROGATE_PAIR_P): New macro.
15733
15734 * font.h (struct font_driver): New member get_variation_glyphs.
15735
15736 * font.c (font_range): Don't require a font for a variation selector.
15737 (Ffont_variation_glyphs): New function.
15738 (syms_of_font): Defsubr it.
15739
15740 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
15741 ftfont_variation_glyphs.
15742 (setup_otf_gstring): New function.
15743 (ftfont_drive_otf): Use it.
15744 (ftfont_shape_by_flt): Handle variation selector.
15745 (ftfont_variation_glyphs): New function.
15746
15747 2008-12-30 Martin Rudalics <rudalics@gmx.at>
15748
15749 * frame.c (Vemacs_iconified): Remove.
15750
15751 2008-12-30 Jason Rumney <jasonr@gnu.org>
15752
15753 * frame.c (store_frame_param, x_get_arg): Enable newer code on
15754 WINDOWSNT too, as related changes have already been synced. (Bug#117)
15755
15756 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
15757
15758 * indent.c (Fvertical_motion): Don't advance iterator if we have
15759 reseated to the desired position.
15760
15761 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
15762 checking for pos match.
15763
15764 2008-12-30 Kenichi Handa <handa@m17n.org>
15765
15766 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
15767 just get the low 8-bit of the code.
15768
15769 * font.c (font_intern_prop): Validate str as multibyte.
15770
15771 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
15772
15773 * dispextern.h (struct face): Move lface and hash from the middle
15774 of bitfields.
15775
15776 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
15777
15778 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
15779
15780 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
15781 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
15782 instead of intervals.h.
15783
15784 2008-12-26 Andreas Schwab <schwab@suse.de>
15785
15786 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
15787 cons.
15788
15789 2008-12-26 Martin Rudalics <rudalics@gmx.at>
15790
15791 * textprop.c (Qminibuffer_prompt): New variable.
15792 (syms_of_textprop): Initialize it.
15793 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
15794 in minibuffer-prompt face. (Bug#1662)
15795
15796 2008-12-25 Jason Rumney <jasonr@gnu.org>
15797
15798 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
15799
15800 2008-12-24 Jason Rumney <jasonr@gnu.org>
15801
15802 * ralloc.c (r_alloc_reset_variable): New function.
15803
15804 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
15805 record of what points where. (Bug#716)
15806
15807 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
15808
15809 * minibuf.c (read_minibuf): Follow the non-interactive case when
15810 running as a daemon, before detaching.
15811
15812 2008-12-22 Andreas Schwab <schwab@suse.de>
15813
15814 * buffer.c (init_buffer): Use realloc instead of xrealloc.
15815 * gtkutil.c (free_widget_value): Use xfree instead of free.
15816
15817 2008-12-22 Martin Rudalics <rudalics@gmx.at>
15818
15819 * frame.c (delete_frame): New function derived from
15820 Fdelete_frame to handle Qnoelisp value for FORCE argument.
15821 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
15822 (Fdelete_frame): Call delete_frame. Remove line from doc-string
15823 saying that FORCE non-nil doesn't run `delete-frame-functions'.
15824 * frame.h: Extern delete_frame.
15825 * window.c (window_loop):
15826 * terminal.c (delete_terminal):
15827 * xterm.c (x_connection_closed):
15828 * xfns.c (Fx_hide_tip):
15829 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
15830
15831 2008-12-21 Jason Rumney <jasonr@gnu.org>
15832
15833 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
15834 when character maps to .notdef character.
15835
15836 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
15837
15838 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
15839
15840 2008-12-20 Jason Rumney <jasonr@gnu.org>
15841
15842 * frame.c (Fmake_terminal_frame): Raise an error when called from
15843 a graphical frame on Windows. (Bug#1325)
15844
15845 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
15846
15847 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
15848
15849 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
15850
15851 * minibuf.c (Fread_buffer): Doc fix.
15852
15853 2008-12-20 Jason Rumney <jasonr@gnu.org>
15854
15855 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
15856 server name in UNC paths. (Bug#719)
15857
15858 * coding.c (decode_coding): Clear chars_at_source flag when using
15859 charbuf. (Bug#1035)
15860
15861 2008-12-19 Daniel Engeler <engeler@gmail.com>
15862
15863 * sysdep.c (serial_configure): Fix typo.
15864
15865 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
15866
15867 * sysdep.c: Include alloca.h.
15868 (system_process_attributes): Add implementation for Solaris.
15869
15870 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
15871
15872 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
15873
15874 Reorganize implementation of Flist_system_processes and
15875 Fsystem_process_attributes. No functional changes.
15876 * process.c: Don't #include pwd.h, grp.h and limits.h.
15877 (Flist_system_processes): Just call list_system_processes.
15878 (Fsystem_process_attributes): Just call system_process_attributes.
15879 (procfs_list_system_processes, time_from_jiffies)
15880 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
15881 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
15882
15883 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
15884 (list_system_processes): Rename from
15885 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
15886 Provide a do nothing implementation.
15887 (system_process_attributes): Rename from
15888 procfs_list_system_processes.
15889 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
15890 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
15891
15892 * w32.c (list_system_processes): Rename from
15893 w32_list_system_processes.
15894 (system_process_attributes): Rename from
15895 w32_system_process_attributes.
15896
15897 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
15898
15899 * process.h (w32_list_system_processes)
15900 (w32_system_process_attributes): Remove.
15901 (list_system_processes, system_process_attributes):
15902 New prototypes.
15903
15904 2008-12-19 Kenichi Handa <handa@m17n.org>
15905
15906 * xfont.c (xfont_decode_coding_xlfd): New function.
15907 (xfont_encode_coding_xlfd): New function.
15908 (xfont_list_pattern): Decode XLFD by iso-8859-1.
15909 (xfont_list): Decode and encode XLFD by iso-8859-1.
15910 (xfont_match): Likewise.
15911 (xfont_list_family): Likewise.
15912 (xfont_open): Likewise.
15913
15914 * ftfont.c (ftfont_open): Generate a multibyte string if given
15915 names are utf-8.
15916
15917 * xftfont.c (xftfont_open): Generate a multibyte string if given
15918 names are utf-8.
15919
15920 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
15921
15922 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
15923 changed.
15924 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
15925 clicked on a detached tool bar button.
15926
15927 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
15928
15929 * emacs.c (main): Print and error and exit when no data is read
15930 from the pipe.
15931
15932 2008-12-17 Jason Rumney <jasonr@gnu.org>
15933
15934 * w32font.c (w32font_has_char): Always return -1.
15935
15936 2008-12-16 Kenichi Handa <handa@m17n.org>
15937
15938 * font.c (font_open_entity): Fix previous change.
15939
15940 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
15941
15942 * process.c: Include <limits.h>.
15943
15944 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
15945
15946 * font.c (font_update_drivers): Fix mistake in reconstructing the
15947 driver list.
15948
15949 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
15950
15951 * font.c (font_clear_cache): Fix format of font cache data.
15952
15953 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
15954
15955 * xftfont.c (xftfont_open): Free Xft font pattern if
15956 XftFontOpenPattern fails.
15957
15958 * xterm.c (x_free_frame_resources): Remove extraneous call to
15959 free_frame_faces.
15960
15961 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15962
15963 * xterm.c (x_delete_display): Move xim_close_dpy call to
15964 x_delete_terminal.
15965 (x_delete_terminal): Call xim_close_dpy.
15966
15967 2008-12-13 Jason Rumney <jasonr@gnu.org>
15968
15969 * w32font.c (intern_font_name): New function.
15970 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
15971 (w32font_open_internal, Fx_select_font): Decode font name.
15972 (fill_in_logfont, list_all_matching_fonts): Encode font name.
15973
15974 * w32font.h (intern_font_name): Declare new function.
15975
15976 * w32uniscribe.c (add_opentype_font_name_to_list):
15977 Use intern_font_name.
15978
15979 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15980
15981 * frame.c (Fdelete_frame): Call free_font_driver_list.
15982
15983 * font.c (free_font_driver_list): Implement missing function.
15984
15985 * w32term.c (w32_term_init): Don't initialize the image cache
15986 here; it will be done in init_frame_faces.
15987
15988 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
15989 (struct x_display_info): Remove unused member null_pixel.
15990 New member xim_callback_data.
15991
15992 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
15993 (xim_initialize): Save pointer to callback function data.
15994 (xim_close_dpy): Free callback function data. Call XCloseIM,
15995 reverting 2008-11-04 change by David Smith.
15996 (x_term_init): Don't initialize the image cache here; it will be
15997 done in init_frame_faces. Remove ancient "null_pixel" cruft.
15998 (x_delete_display): Free x_dnd_atoms member.
15999
16000 2008-12-13 Kenichi Handa <handa@m17n.org>
16001
16002 * font.c (font_rescale_ratio): Move from xfaces.c.
16003 Argument type changed. Handle a font-spec too.
16004 (font_score): Check Vface_font_rescale_alist.
16005 (font_open_entity): Likewise. (Bug#1547)
16006
16007 * xfaces.c (font_rescale_ratio): Move to font.c.
16008
16009 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
16010
16011 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
16012
16013 2008-12-12 Jason Rumney <jasonr@gnu.org>
16014
16015 * w32fns.c (x_display_info_for_name, Fx_open_connection):
16016 Set Vwindow_system_version to the real w32 major version.
16017
16018 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
16019
16020 * term.c (init_tty): Move setting the terminal name before the
16021 potential user: maybe_fatal.
16022
16023 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
16024
16025 * term.c (tty_free_frame_resources): Rename from delete_tty_output;
16026 all callers changed. Call free_frame_faces to free the face cache.
16027
16028 2008-12-11 Jason Rumney <jasonr@gnu.org>
16029
16030 * w32font.c (fill_in_logfont): Don't assume symbol script means
16031 SYMBOL_CHARSET. (Bug#547)
16032
16033 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
16034 size for surrogates. (Bug#1096, bug#872)
16035
16036 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
16037
16038 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
16039
16040 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
16041
16042 * process.c (Fsystem_process_attributes, syms_of_process):
16043 Fix typo in name of Ssystem_process_attributes.
16044 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
16045
16046 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
16047
16048 * syntax.c (Fmodify_syntax_entry): Doc fix.
16049
16050 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
16051
16052 * font.c (Ffont_spec): Move usage to end of docstring.
16053
16054 2008-12-10 Jason Rumney <jasonr@gnu.org>
16055
16056 * w32font.c (Qcham): New symbol.
16057 (font_supported_scripts): Add cham, and comments for other new
16058 scripts in bitfield from OpenType spec.
16059 (add_font_entity_to_list): Limit unicode-sip fonts to those that
16060 contain characters beyond the bmp.
16061
16062 2008-12-10 Kenichi Handa <handa@m17n.org>
16063
16064 * ftfont.c (fc_charset_table): Add "unicode-sip".
16065 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
16066 Qunicode_sip.
16067
16068 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
16069
16070 * coding.c (QCdefault_char): Rename from QCdefalut_char.
16071 (Fcoding_system_put): Use QCdefault_char.
16072 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
16073
16074 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
16075
16076 * xftfont.c (syms_of_xftfont): Fix typo.
16077
16078 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
16079
16080 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
16081
16082 * emacs.c (main): Close daemon_pipe on exec.
16083
16084 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
16085
16086 * termchar.h (struct tty): New members termcap_term_buffer and
16087 termcap_strings_buffer.
16088
16089 * term.c (encode_terminal_code): Free any previous memory blocks
16090 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
16091 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
16092 All callers changed.
16093 (init_tty): Store termcap data and string buffers in new struct
16094 tty members termcap_term_buffer and termcap_strings_buffer.
16095 (delete_tty): Free them.
16096 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
16097
16098 2008-12-07 Seiji Zenitani <zenitani@mac.com>
16099
16100 * nsfns.m (ns_set_background_color): Remove code duplication.
16101 It was a substitute for face-transparency on OS X 10.3.
16102
16103 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
16104
16105 * coding.c (make_conversion_work_buffer): Disable buffer
16106 modification hooks in the work buffer.
16107
16108 2008-12-05 Eli Zaretskii <eliz@gnu.org>
16109
16110 * process.c (procfs_system_process_attributes): If `nread' has a
16111 negative value, assign zero to it.
16112
16113 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
16114
16115 * eval.c (Vdebug_on_error): Doc fix.
16116
16117 2008-12-05 Kenichi Handa <handa@m17n.org>
16118
16119 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
16120 second character is a combining character.
16121
16122 2008-12-05 Eli Zaretskii <eliz@gnu.org>
16123
16124 * process.c (procfs_system_process_attributes): Don't use cmd,
16125 cmdsize, and q without initializing them first.
16126
16127 2008-12-04 Jason Rumney <jasonr@gnu.org>
16128
16129 * w32font.c (w32font_draw): Initialize orig_clip before getting
16130 it, and delete it when finished.
16131
16132 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
16133
16134 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
16135 case when running as a daemon before detaching.
16136
16137 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
16138
16139 * w32.c (init_environment): Don't unload library shell32.dll.
16140
16141 2008-12-03 Kenichi Handa <handa@m17n.org>
16142
16143 * font.c (font_at): Set `multibyte' at first.
16144
16145 * coding.c (decode_coding_charset): Check type of an element of
16146 vector VALIDS.
16147 (encode_coding_emacs_mule): Be sure to set `code'.
16148
16149 * fontset.c (face_for_char): Handle invalid charset property correctly.
16150 (font_for_char): Likewise.
16151
16152 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
16153
16154 * font.c (Fopen_font): Compute pixel size correctly.
16155 (font_update_lface): Handle fonts with corrupted size specs,
16156 i.e. non-int and non-float.
16157
16158 * ftfont.c (ftfont_match): Initialize entity variable.
16159 (ftfont_resolve_generic_family): Avoid using uninitialized var.
16160 (ftfont_list_family): Initialize list var earlier.
16161
16162 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
16163
16164 * xterm.c (x_draw_glyph_string): Fall back on
16165 underline_minimum_offset for underline position.
16166
16167 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
16168
16169 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
16170
16171 * character.c (c_string_width): Specify the type for LEN.
16172
16173 2008-12-03 Kenichi Handa <handa@m17n.org>
16174
16175 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
16176 (decode_coding_utf_8): Likewise.
16177 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
16178 (produce_chars): Initialize consumed_chars to 0.
16179
16180 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
16181
16182 * keyboard.c (make_lispy_position): Only use PT if the selected
16183 window is current.
16184
16185 2008-12-02 Andreas Schwab <schwab@suse.de>
16186
16187 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
16188
16189 * doprnt.c (doprnt1): Fix size of charbuf.
16190
16191 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
16192
16193 * keyboard.c (timer_check): Revert last change.
16194
16195 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
16196
16197 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
16198
16199 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
16200
16201 * makefile.w32-in: Update dependencies.
16202 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
16203
16204 2008-12-01 Andreas Schwab <schwab@suse.de>
16205
16206 * font.c (register_font_driver): Use xmalloc.
16207 (font_put_frame_data): Likewise.
16208
16209 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
16210
16211 * xfaces.c (realize_x_face): Make abort condition clearer.
16212
16213 * gtkutil.c (update_frame_tool_bar): Initialize variable.
16214
16215 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
16216
16217 * keyboard.c (timer_check): After a timer runs, ensure that the
16218 selected window's buffer is current.
16219
16220 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
16221
16222 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
16223 It was accidentally restored by the Unicode merge.
16224
16225 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
16226
16227 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
16228
16229 * w32proc.c: Include "coding.h".
16230 (Fw32_short_file_name): Encode filename passed to Windows API.
16231 (Fw32_long_file_name): Encode filename passed to Windows API and
16232 decode back the result. (Bug#1433)
16233
16234 2008-11-29 Kenichi Handa <handa@m17n.org>
16235
16236 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
16237 not before accessing it.
16238
16239 * charset.c (Fdefine_charset_internal): After calculating
16240 min_char, max_char, and fastmap, copy the charset structure again.
16241 (encode_char): Fix the previous change.
16242
16243 2008-11-28 Seiji Zenitani <zenitani@mac.com>
16244
16245 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
16246
16247 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
16248
16249 * nsterm.m (x_set_frame_alpha): New function.
16250
16251 2008-11-27 Eli Zaretskii <eliz@gnu.org>
16252
16253 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
16254
16255 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
16256
16257 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
16258 pointer to check_face_name.
16259
16260 2008-11-27 Kenichi Handa <handa@m17n.org>
16261
16262 * category.h (SET_CATEGORY_SET): Call set_category_set.
16263 (set_category_set): Extern it.
16264
16265 * category.c (hash_get_category_set): New function.
16266 (Fmodify_category_entry): Adjust for the change of
16267 char_table_ref_and_range. Call hash_get_category_set to get a
16268 category set to store in the table.
16269
16270 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
16271 Funify_charset.
16272
16273 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
16274 (DECODE_CHAR): Check if the decoder vector is ready.
16275 (ENCODE_CHAR): Check if the encoder char-table is ready.
16276 (maybe_unify_char): Extern it.
16277
16278 * charset.c (Vchar_unified_charset_table): Delete it.
16279 (inhibit_load_charset_map): New variable.
16280 (temp_charset_work): New variable.
16281 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
16282 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
16283 New macros.
16284 (load_charset_map): Meaning of control_flag changed.
16285 If inhibit_load_charset_map is nonzero, setup a table in
16286 temp_charset_work.
16287 (load_charset): New argument control_flag.
16288 (map_charset_for_dump): New function.
16289 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
16290 map_charset_for_dump.
16291 (Fdefine_charset_internal): If the charset method is MAP, load
16292 mapping tables by calling load_charset.
16293 (Funify_charset): Don't load a mapping table but directly set
16294 Vchar_unify_table.
16295 (maybe_unify_char): New function.
16296 (decode_char): Don't handle the deleted method MAP_DEFERRED.
16297 Handle the case of inhibit_load_charset_map being nonzero.
16298 (encode_char): Don't handle the deleted method MAP_DEFERRED.
16299 Handle the case of inhibit_load_charset_map being nonzero.
16300 (Fclear_charset_maps): Just free temp_charset_work.
16301 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
16302 variable.
16303
16304 * chartab.c (sub_char_table_ref_and_range): Adjust for the
16305 change of char_table_ref_and_range.
16306 (char_table_ref_and_range): Change the meaning of argument FROM
16307 and TO. Now the caller must provide initial values for *FROM
16308 and *TO.
16309
16310 * fontset.c (fontset_add): Adjust for the change of
16311 char_table_ref_and_range.
16312 (fontset_get_font_group): Likewise.
16313 (Ffontset_info): Likewise.
16314
16315 * keymap.c (describe_vector): Adjust for the change of
16316 char_table_ref_and_range. For char-table, put boundary between
16317 non-ASCII and 8-bit characters.
16318
16319 * print.c (print_object): For bool-vector, delete unnecessary
16320 check of ASCII_BYTE_P.
16321
16322 2008-11-26 Jason Rumney <jasonr@gnu.org>
16323
16324 * w32font.c (w32font_open_internal): Don't include external
16325 leading in font height. (Bug#879)
16326
16327 2008-11-26 Glenn Morris <rgm@gnu.org>
16328
16329 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
16330 redefinition with ifdef. (Bug#1383)
16331
16332 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
16333
16334 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
16335
16336 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
16337
16338 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
16339 New EmacsView methods.
16340 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
16341 Fixes bug #1048,1357,1414.
16342
16343 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
16344
16345 Fix bug #1362.
16346 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
16347 is not an indexed color.
16348 * nsterm.m (free_indexed_color): Add argument checking.
16349 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
16350
16351 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
16352
16353 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
16354 Document confirm-after-completion value for
16355 minibuffer-completion-confirm.
16356
16357 2008-11-24 Jason Rumney <jasonr@gnu.org>
16358
16359 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
16360 warning.
16361
16362 2008-11-23 Jason Rumney <jasonr@gnu.org>
16363
16364 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
16365 restored before returning.
16366
16367 * w32font.c (check_face_name): New function.
16368 (add_font_entity_to_list): Use it to filter out common substituted
16369 fonts. (Bug#642)
16370
16371 2008-11-22 Martin Rudalics <rudalics@gmx.at>
16372
16373 * buffer.c (Fswitch_to_buffer): Reword and mention new option
16374 confirm-nonexistent-file-or-buffer in doc-string.
16375
16376 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
16377
16378 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
16379 Fix copy/paste typo. Add checks.
16380
16381 2008-11-21 Kenichi Handa <handa@m17n.org>
16382
16383 * coding.c (detect_coding_iso_2022): Reject invalid composition
16384 sequence.
16385 (DECODE_COMPOSITION_START): If the current source is the last
16386 block, and the current composition doesn't end, regard this
16387 sequence as invalid.
16388 (decode_coding_iso_2022): Handle invalid composition sequence.
16389
16390 2008-11-20 Martin Rudalics <rudalics@gmx.at>
16391
16392 * window.c (coordinates_in_window): Don't return
16393 ON_VERTICAL_BORDER for the rightmost position of a mode/header
16394 line when the window is not the rightmost one. (Bug#1372)
16395
16396 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
16397
16398 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
16399
16400 2008-11-15 Eli Zaretskii <eliz@gnu.org>
16401
16402 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
16403 and bright_bg if noninteractive is non-zero.
16404
16405 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16406
16407 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
16408 x_draw_glyph_string_background.
16409
16410 * w32term.c (x_draw_glyph_string): Likewise.
16411
16412 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
16413
16414 * xterm.c (x_draw_glyph_string): Stop drawing the background of
16415 the next glyph string once past the overhang width.
16416
16417 * nsterm.m (ns_draw_glyph_string): Likewise.
16418
16419 * w32term.c (x_draw_glyph_string): Likewise.
16420
16421 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
16422
16423 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
16424 double file close.
16425
16426 2008-11-14 Martin Rudalics <rudalics@gmx.at>
16427
16428 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
16429 dedicated status of window before attempting to display another
16430 buffer in it.
16431
16432 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
16433
16434 * msdos.c (Fmsdos_long_file_names):
16435 (syms_of_msdos) <dos-unsupported-char-glyph>:
16436 * dosfns.c (Fint86): Fix typos in docstrings.
16437
16438 2008-11-14 Eli Zaretskii <eliz@gnu.org>
16439
16440 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
16441
16442 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
16443
16444 * puresize.h (BASE_PURESIZE): Increase to 1260000.
16445
16446 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
16447
16448 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
16449
16450 * frame.h: Negative alpha means "don't touch".
16451
16452 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
16453
16454 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
16455
16456 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
16457
16458 * hftctl.c:
16459 * chpdef.h:
16460 * acldef.h: Remove files used only for systems no longer supported.
16461
16462 * Makefile.in: Fix .o alphabetical ordering.
16463 (hftctl.o): Remove dependency, file removed.
16464 (keymap.o, print.o): Depend on charset.h.
16465
16466 2008-11-10 Kenichi Handa <handa@m17n.org>
16467
16468 * character.c (Fget_byte): Fix and make it faster for unibyte target.
16469
16470 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
16471
16472 * dired.c (file_name_completion): If completion_ignore_case is
16473 enabled, ignore case when checking completion-regexp-list.
16474
16475 2008-11-08 Eli Zaretskii <eliz@gnu.org>
16476
16477 * vm-limit.c (get_lim_data): Fix last change.
16478
16479 2008-11-08 Kenichi Handa <handa@m17n.org>
16480
16481 * character.c (Fget_byte): New function.
16482 (syms_of_character): Defsubr Fget_byte.
16483
16484 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
16485
16486 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
16487 cursor position is valid after scrolling.
16488
16489 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
16490
16491 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
16492
16493 2008-11-06 Glenn Morris <rgm@gnu.org>
16494
16495 * xterm.c (handle_one_xevent): Don't let popup menus cause
16496 mouse-autoselect-window related window switching. (Bug#1261)
16497
16498 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
16499
16500 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
16501
16502 2008-11-04 Andreas Schwab <schwab@suse.de>
16503
16504 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
16505
16506 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
16507
16508 * xfns.c (Fx_wm_set_size_hint): New function.
16509
16510 2008-11-03 Martin Rudalics <rudalics@gmx.at>
16511
16512 * textprop.c (Fprevious_single_char_property_change): Return 0
16513 when there's no change in a string. (Bug#1301)
16514
16515 2008-11-02 Martin Rudalics <rudalics@gmx.at>
16516
16517 * frame.c (do_switch_frame): New argument NORECORD passed to
16518 Fselect_window.
16519 (Fselect_frame): New argument NORECORD passed to
16520 do_switch_frame.
16521 (Fset_frame_selected_window): New argument NORECORD passed to
16522 Fselect_frame.
16523 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
16524 in call of do_switch_frame.
16525 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
16526 Handle NORECORD argument in call of Fselect_frame.
16527 * lisp.h (do_switch_frame, Fselect_frame)
16528 (Fset_frame_selected_window): Adjust declarations.
16529 * window.c (select_frame_norecord): New function.
16530 (run_window_configuration_change_hook): Use it and call
16531 Fselect_frame with NORECORD set.
16532 (Fselect_window): Pass NORECORD to Fselect_frame.
16533 (Fset_window_configuration): Handle NORECORD argument in call of
16534 do_switch_frame.
16535 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
16536 Fset_frame_selected_window.
16537 * keyboard.c (command_loop_1): Handle NORECORD in call of
16538 Fselect_frame (currently ifdefd).
16539
16540 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
16541
16542 * emacs.c (USAGE2): Untabify.
16543
16544 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
16545
16546 * composite.c (fill_gstring_header): Fix copy/paste typo.
16547
16548 2008-10-31 Martin Rudalics <rudalics@gmx.at>
16549
16550 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
16551 (Fother_window): Rename argument and rewrite doc-string.
16552 (select_window_norecord): Fix return value. (Bug#1276)
16553
16554 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
16555
16556 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
16557 new frames overriding foreground for tooltips. Based on similar patch
16558 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
16559
16560 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
16561
16562 * emacs.c (Fdaemon_initialized): Initialize nfd.
16563
16564 2008-10-29 Martin Rudalics <rudalics@gmx.at>
16565
16566 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
16567 (Fwindow_text_height): Clarify doc-strings.
16568 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
16569 doc-string of window-scroll-functions.
16570
16571 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
16572
16573 * category.c (syms_of_category): Fix typo in docstring.
16574
16575 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
16576
16577 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
16578 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
16579 Fix typos in docstrings.
16580
16581 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
16582
16583 * emacs.c (daemon_pipe): Make non-static.
16584 (IS_DAEMON): Move definition ...
16585 * lisp.h (IS_DAEMON): ... here.
16586 (daemon_pipe): Declare.
16587 (is_daemon): Remove.
16588 * dispnew.c (init_display): Use IS_DAEMON.
16589
16590 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16591
16592 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
16593 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
16594
16595 * emacs.c (is_daemon): Remove.
16596 (main): Don't set is_daemon.
16597 (IS_DAEMON): New macro.
16598 (Fdaemonp, Fdaemon_initialized): Use it.
16599 (Fdaemon_initialized): Write a char into the pipe to make sure the
16600 parent exits.
16601 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
16602
16603 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
16604
16605 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
16606 over-sized glyph, draw it with the default glyph width.
16607
16608 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
16609 glyph, draw it with the default glyph width.
16610
16611 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
16612 glyph, draw it with the default glyph width.
16613
16614 * xdisp.c (try_scrolling): When computing the distance from the
16615 scroll margin to PT, try moving some distance past the window
16616 bottom before giving up.
16617
16618 2008-10-27 Martin Rudalics <rudalics@gmx.at>
16619
16620 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
16621 (Fset_window_buffer): Explain in doc-string that a window can be
16622 "strongly" dedicated to its buffer.
16623
16624 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
16625
16626 * emacs.c (daemon_name): New variable.
16627 (main): Deal with --daemon=SERVER_NAME.
16628 (Fdaemonp): Return a name if one was passed to --daemon.
16629
16630 2008-10-26 Romain Francoise <romain@orebokech.com>
16631
16632 * emacs.c (daemon_pipe): New variable.
16633 (main): Create a pipe before forking, make the parent exit only after
16634 the child has closed its end of the pipe. Move closing the
16635 descriptors ...
16636 (Fdaemon_initialized): ... here. New function.
16637
16638 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
16639
16640 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
16641 the previous unoptimized table.
16642
16643 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
16644 the distinction between non-nil and non-t value of `dedicated'.
16645
16646 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
16647
16648 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
16649 read_char_minibuf_menu_text is large enough to hold the menu string.
16650
16651 2008-10-25 Martin Rudalics <rudalics@gmx.at>
16652
16653 * window.c (Fget_buffer_window, Fdelete_windows_on)
16654 (Freplace_buffer_in_windows): Make buffer argument optional and
16655 rename to buffer_or_name.
16656
16657 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
16658
16659 * xdisp.c (handle_single_display_spec, handle_display_prop):
16660 Undo 2005-05-16 change.
16661 (handle_stop): Pop iterator if it's loaded with an empty string.
16662 (get_overlay_strings_1): Don't save iterator if it's loaded with
16663 an empty string (bug#1201).
16664
16665 2008-10-24 Kenichi Handa <handa@m17n.org>
16666
16667 * ftfont.c (ftfont_otf_features): Fix previous change.
16668 (ftfont_otf_capability): Check FeatureList.FeatureCount before
16669 calling ftfont_otf_features.
16670
16671 2008-10-24 Kenichi Handa <handa@m17n.org>
16672
16673 * font.c (font_match_p): Fix for the case that a vector of
16674 characters is in script-representative-chars.
16675
16676 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
16677
16678 * dbusbind.c (xd_in_read_queued_messages): New variable.
16679 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
16680 (xd_read_queued_messages): Catch Qdbus_error from the macros.
16681 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
16682 macro. (Bug#1186)
16683
16684 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
16685
16686 * s/sol2-10.h: New file.
16687
16688 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
16689
16690 * xdisp.c (fill_glyph_string): Fix typo in source (though the
16691 poor beast has survived 9+ years and the jump from xterm.c!).
16692
16693 2008-10-23 Martin Rudalics <rudalics@gmx.at>
16694
16695 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
16696 Reword doc-string.
16697 (Fbury_buffer): In doc-string say what happens to the buffer's window.
16698
16699 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
16700
16701 * character.c (syms_of_character) <script-representative-chars>:
16702 <unicode-category-table>: Doc fixes.
16703
16704 2008-10-23 Noah Friedman <friedman@splode.com>
16705
16706 * coding.c (make_conversion_work_buffer): Check that
16707 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
16708 Fget_buffer_create.
16709
16710 2008-10-23 Kenichi Handa <handa@m17n.org>
16711
16712 * font.c (font_add_log): Check the values of extra properties.
16713
16714 2008-10-22 Martin Rudalics <rudalics@gmx.at>
16715
16716 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
16717 Reword doc-string.
16718 (Fset_window_parameter): Use NILP.
16719 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
16720 (Frecenter): Use "selected" instead of "current" window in doc-strings.
16721
16722 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
16723
16724 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
16725
16726 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
16727
16728 * nsfns.m (ns_appkit_version): New function.
16729 (x-server-version): Use it.
16730 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
16731 (x-server-vendor): Don't check_ns().
16732
16733 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
16734
16735 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
16736
16737 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
16738 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
16739
16740 2008-10-22 Kenichi Handa <handa@m17n.org>
16741
16742 * syntax.c (scan_words): Call word_boundary_p instead of comparing
16743 scripts.
16744
16745 * category.c (word_boundary_p): Check scripts instead of charset.
16746 Handle nil value in word-separating-categories and
16747 word-combining-categories.
16748 (syms_of_category): Fix docstrings of word-separating-categories
16749 and word-combining-categories.
16750
16751 2008-10-21 Eli Zaretskii <eliz@gnu.org>
16752
16753 * coding.c (Fencode_coding_region, Fdecode_coding_region)
16754 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
16755
16756 2008-10-21 Martin Rudalics <rudalics@gmx.at>
16757
16758 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
16759 Rename arg "buffer" to "buffer_or_name".
16760 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
16761 it optional.
16762 (no_switch_window): Remove since the return value is not used.
16763 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
16764 Consider window as dedicated when Fwindow_dedicated_p returns a
16765 non-nil value.
16766 * lisp.h: Remove prototype for no_switch_window.
16767
16768 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
16769
16770 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
16771 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
16772
16773 2008-10-21 Kenichi Handa <handa@m17n.org>
16774
16775 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
16776 check Vlatin_extra_code_table.
16777
16778 2008-10-20 Eli Zaretskii <eliz@gnu.org>
16779
16780 * fileio.c (Fset_file_modes): Doc fix.
16781
16782 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
16783
16784 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
16785 in arrays.
16786
16787 2008-10-19 Martin Rudalics <rudalics@gmx.at>
16788
16789 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
16790 Mention kill-buffer in doc-string.
16791 (Fset_window_buffer): Reinsert tem check removed in last commit.
16792 (Fenlarge_window, Fshrink_window): Have argument names and
16793 doc-string follow Elisp manual more closely.
16794
16795 2008-10-18 Eli Zaretskii <eliz@gnu.org>
16796
16797 * fileio.c (Fset_file_modes): Doc fix.
16798
16799 2008-10-18 Martin Rudalics <rudalics@gmx.at>
16800
16801 * window.c (Fwindow_width, Fset_window_start)
16802 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
16803 (Fdelete_windows_on, Freplace_buffer_in_windows):
16804 Make doc-strings follow code and Elisp manual more closely.
16805 (Fwindow_dedicated_p): Make window argument optional.
16806 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
16807 (Fset_window_buffer): Respect any non-nil dedicated value for
16808 window. Rename "buffer" argument to "buffer_or_name".
16809
16810 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
16811
16812 * m/sh3.h: New file, machine description for SuperH.
16813
16814 2008-10-17 Martin Rudalics <rudalics@gmx.at>
16815
16816 * window.c (Fsplit_window): Rename arg horflag to horizontal.
16817
16818 2008-10-17 Kenichi Handa <handa@m17n.org>
16819
16820 * ftfont.c (ftfont_otf_features): Fix indexing
16821 gsub_gpos->FeatureList.Feature. Check the validity of indices.
16822
16823 2008-10-16 Magnus Henoch <mange@freemail.hu>
16824
16825 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
16826 (Fdbus_call_method_asynchronously): Ditto.
16827 This change makes C-h f display the argument list.
16828
16829 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
16830
16831 * fileio.c (Fexpand_file_name): Doc fix.
16832
16833 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
16834 of :foreground and :background equivalent to unspecified (20.x
16835 compatibility).
16836
16837 2008-10-15 Eli Zaretskii <eliz@gnu.org>
16838
16839 * buffer.c (syms_of_buffer): Doc fix.
16840
16841 2008-10-14 Kenichi Handa <handa@m17n.org>
16842
16843 * font.c (font_clear_prop): When clearing font width, clear the
16844 average width field too.
16845
16846 2008-10-12 Andreas Schwab <schwab@suse.de>
16847
16848 * ftfont.c (ftfont_shape_by_flt): Make static.
16849 * ftfont.h (ftfont_shape_by_flt): Don't declare.
16850
16851 * font.c: Don't include <m17n-flt.h>.
16852
16853 2008-10-10 Eli Zaretskii <eliz@gnu.org>
16854
16855 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
16856
16857 2008-10-09 Eli Zaretskii <eliz@gnu.org>
16858
16859 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
16860 away code.
16861
16862 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
16863
16864 * dispnew.c (update_text_area): Avoid looping due to large glyph
16865 overhangs (bug#1070).
16866
16867 2008-10-09 Kenichi Handa <handa@m17n.org>
16868
16869 * fontset.c (face_for_char): If face->fontset is negative, just
16870 return ascii_face.
16871
16872 * font.c (font_delete_unmatched): Fix previous change.
16873 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
16874
16875 2008-10-09 Martin Rudalics <rudalics@gmx.at>
16876
16877 * frame.c (Fraise_frame): On text-only terminals select frame in
16878 order to make it visible. (Bug#1061)
16879
16880 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
16881
16882 * fontset.c (fontset_find_font): Check frame validity.
16883
16884 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
16885
16886 * gtkutil.c (xg_display_open): Reset default display if none exists.
16887 (xg_display_close): Allow Emacs to close all displays (bug#985).
16888
16889 2008-10-06 Andreas Schwab <schwab@suse.de>
16890
16891 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
16892
16893 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
16894
16895 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
16896
16897 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
16898
16899 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
16900 during initialization.
16901
16902 2008-10-04 Eli Zaretskii <eliz@gnu.org>
16903
16904 * xdisp.c (redisplay_internal): If frame switched, redisplay the
16905 whole thing on MSDOS frames as well as on a TTY.
16906
16907 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
16908 well as for TTY.
16909 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
16910 well as on a TTY.
16911
16912 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
16913 as well as for TTY.
16914
16915 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
16916
16917 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
16918 MSDOS frames as well.
16919
16920 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
16921
16922 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
16923 correct arguments.
16924 * menu.c (find_and_return_menu_selection): Add cast.
16925
16926 2008-10-03 Glenn Morris <rgm@gnu.org>
16927
16928 * emacs.c (USAGE1): Add --daemon.
16929
16930 2008-10-02 Eli Zaretskii <eliz@gnu.org>
16931
16932 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
16933 100, so it's in percents as advertised.
16934
16935 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
16936
16937 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
16938 (ns_output.current_cursor, ns_output.desired_cursor)
16939 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
16940 (FRAME_NEW_CURSOR_COLOR): Remove.
16941
16942 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
16943 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
16944 enumeration (HOLLOW_BOX_CURSOR, etc.).
16945
16946 * nsterm.m (ns_frame_rehighlight): Remove commented code.
16947 (draw_window_cursor): Simplify code.
16948 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
16949 Don't change cursor type. In latter, call rehighlight instead of doing
16950 updates manually.
16951 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
16952 Use core Emacs cursor types.
16953
16954 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
16955
16956 2008-10-02 Martin Rudalics <rudalics@gmx.at>
16957
16958 * process.c (Faccept_process_output): Fix doc-string.
16959
16960 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
16961
16962 * gmalloc.c (__sbrk): Also define for uClibc.
16963
16964 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
16965 for uClibc.
16966
16967 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16968
16969 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
16970 styles.
16971 (nsfont_open): Reenable the cache.
16972
16973 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16974
16975 * font.c (font_matching_entity): Reflect ATTRS in font selection.
16976 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
16977
16978 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
16979
16980 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
16981 a suspended terminal.
16982
16983 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
16984
16985 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
16986
16987 2008-09-30 Eli Zaretskii <eliz@gnu.org>
16988
16989 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
16990
16991 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
16992
16993 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
16994 in a continued line coincides with a line beginning.
16995
16996 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
16997
16998 * nsfont.m (nsfont_trait_distance): Fix bug.
16999 (nsfont_list): Return a list rather than a vector (syncs with Handa
17000 changes of 2008-05-14).
17001 (nsfont_open): Improve logging.
17002
17003 2008-09-29 Andreas Schwab <schwab@suse.de>
17004
17005 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
17006
17007 2008-09-28 Martin Rudalics <rudalics@gmx.at>
17008
17009 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
17010 name as char-resolve-modifiers.
17011 Reported by: Markus Triska <markus.triska@gmx.at>
17012
17013 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
17014
17015 * dispnew.c (init_display): Return earlier when running as a daemon.
17016
17017 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
17018
17019 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
17020
17021 2008-09-27 Eli Zaretskii <eliz@gnu.org>
17022
17023 * composite.c (Fcomposition_get_gstring)
17024 (Fcompose_region_internal, Fcompose_string_internal)
17025 (Ffind_composition_internal): Doc fix.
17026 (syms_of_composite) <compose-chars-after-function>: Doc fix.
17027 (syms_of_composite) <auto-composition-function>: Doc fix.
17028 (syms_of_composite) <composition-function-table>: Doc fix.
17029
17030 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
17031
17032 * search.c (wordify): New argument for lax word-ends.
17033 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
17034
17035 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
17036
17037 * lisp.h (is_daemon): Declare.
17038 * dispnew.c (init_display): Do not try to initialize the terminal
17039 when running as a daemon.
17040
17041 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
17042
17043 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
17044 x_display_pixel_height.
17045
17046 2008-09-22 Martin Rudalics <rudalics@gmx.at>
17047
17048 * undo.c (record_point): Don't call Fundo_boundary for first
17049 change. (Bug#731)
17050
17051 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
17052
17053 * emacs.c (Fdaemonp): Doc fix.
17054
17055 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
17056
17057 * emacs.c (main): Place #ifdef in the proper place.
17058
17059 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
17060
17061 * emacs.c (standard_args): Add --daemon.
17062 (main): Disconnect from the terminal when --daemon is passed.
17063 (is_daemon): New variable.
17064 (Fdaemonp): New function.
17065 (syms_of_emacs): Defsubr it.
17066
17067 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
17068
17069 * xdisp.c (get_next_display_element): Handle string display
17070 correctly when checking for the end of a box run.
17071
17072 2008-09-20 Glenn Morris <rgm@gnu.org>
17073
17074 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
17075 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
17076 (Frename_file): Avoid copying to trash if a rename involves
17077 a delete. (Bug#964).
17078
17079 2008-09-20 Eli Zaretskii <eliz@gnu.org>
17080
17081 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
17082 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
17083 frames as well as termcap frames.
17084 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
17085 get_named_tty.
17086
17087 2008-09-19 Eli Zaretskii <eliz@gnu.org>
17088
17089 * process.c (procfs_system_process_attributes): Fix cmdline in
17090 case /proc/PID/cmdline is empty.
17091
17092 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
17093 x_display_pixel_height.
17094
17095 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
17096
17097 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
17098
17099 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
17100 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
17101
17102 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
17103
17104 * dispextern.h (struct it): Move line_wrap away from the middle of
17105 bitfields. Move voffset in struct iterator_stack_entry after the
17106 bitfields. Move tab_width near after another short.
17107
17108 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
17109
17110 * frame.h (struct frame): Move alpha from the middle of bitfields.
17111
17112 * window.h (struct window): Move frozen_window_start_p after the
17113 rest of the bitfields to reduce padding.
17114
17115 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
17116
17117 * xterm.h (x_display_info): Remove `height' and `width' members.
17118
17119 * nsterm.h (ns_display_info): Remove `height' and `width' members.
17120
17121 * w32term.h (w32_display_info): Remove `height', `width',
17122 `height_in', and `width_in' members.
17123
17124 * xterm.c (x_display_pixel_height, x_display_pixel_width):
17125 New functions.
17126 (x_calc_absolute_position): Use them.
17127 (x_term_init): Omit removed `height' and `width' members.
17128
17129 * w32term.c (x_display_pixel_height, x_display_pixel_width):
17130 New functions.
17131 (w32_read_socket, x_calc_absolute_position): Use them.
17132 (w32_initialize_display_info, w32_term_init): Omit removed members
17133 of w32_display_info.
17134
17135 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
17136 New functions.
17137 (ns_initialize_display_info): Omit removed members of ns_display_info.
17138
17139 * xterm.c (x_display_pixel_height, x_display_pixel_width):
17140 New functions.
17141 (x_calc_absolute_position): Use them.
17142 (x_term_init): Omit removed `height' and `width' members.
17143
17144 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
17145 (compute_tip_xy):
17146 * frame.c (x_fullscreen_adjust):
17147 * xmenu.c (menu_position_func): Use x_display_pixel_height and
17148 x_display_pixel_width.
17149
17150 2008-09-18 Kenichi Handa <handa@m17n.org>
17151
17152 * composite.c (fill_gstring_header): Don't check FROM and TO here.
17153 (composition_compute_stop_pos): Fix handling of static composition.
17154 (Fcomposition_get_gstring): Check FROM and TO at first.
17155
17156 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
17157
17158 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
17159 mixup (YAILOM).
17160
17161 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
17162
17163 * indent.c (Fvertical_motion): Use position reported by iterator
17164 instead of PT for determining screen motion (bug#943).
17165
17166 2008-09-17 Romain Francoise <romain@orebokech.com>
17167
17168 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
17169
17170 2008-09-17 Kenichi Handa <handa@m17n.org>
17171
17172 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
17173
17174 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
17175 if necessary.
17176
17177 2008-09-16 Kenichi Handa <handa@m17n.org>
17178
17179 * coding.c (make_conversion_work_buffer): Avoid calling
17180 Fget_buffer_create if it is not necessary.
17181
17182 2008-09-15 Martin Rudalics <rudalics@gmx.at>
17183
17184 * window.c (Fselect_window): Don't update window_select_count and
17185 use_time when norecord is not nil.
17186
17187 2008-09-14 Kenichi Handa <handa@m17n.org>
17188
17189 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
17190 specpdl_ptr.
17191
17192 2008-09-12 Kenichi Handa <handa@m17n.org>
17193
17194 * indent.c (scan_for_column): Don't handle automatic composition
17195 if the current buffer is not associated with a window.
17196
17197 * composite.c (composition_reseat_it): If the current buffer is
17198 not associated with a window, ignore the automatic composition.
17199 (find_automatic_composition): Likewise.
17200
17201 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17202
17203 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
17204 (Fgpm_mouse_stop): Use it.
17205 * termhooks.h (close_gpm): Declare.
17206 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
17207 connection if Gpm_GetEvent fails.
17208
17209 * window.c (set_window_buffer): Always preserve current-buffer.
17210
17211 2008-09-12 Glenn Morris <rgm@gnu.org>
17212
17213 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
17214
17215 2008-09-11 Glenn Morris <rgm@gnu.org>
17216
17217 * charset.c (charset-map-path): Doc fix.
17218
17219 2008-09-10 Kenichi Handa <handa@m17n.org>
17220
17221 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
17222
17223 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
17224 compose a grapheme cluster with the preceding base glyph.
17225
17226 * composite.c (composition_compute_stop_pos): Fix previous change.
17227 Reset cmp_it->id to -1 at first.
17228
17229 2008-09-10 Glenn Morris <rgm@gnu.org>
17230
17231 * Makefile.in (character.o, chartab.o): Fix config.h typo.
17232
17233 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
17234
17235 * keyboard.c (read_key_sequence): Reapply translation maps when
17236 switching keyboards.
17237
17238 2008-09-09 Kenichi Handa <handa@m17n.org>
17239
17240 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
17241 characters.
17242
17243 * composite.c (FORWARD_CHAR): Fix calculation
17244 of (POSITION).pos_byte.
17245 (composition_compute_stop_pos): Limit the search of composition to
17246 at most 500 characters ahead. If we reach the limit or find a
17247 newline, set cmp_it->ch to -2 and return 0.
17248 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
17249
17250 2008-09-08 Kenichi Handa <handa@m17n.org>
17251
17252 * indent.c (Fvertical_motion): Be sure to set
17253 it_overshoot_expected if it.cmp_it.id is non-negative.
17254
17255 2008-09-07 Andreas Schwab <schwab@suse.de>
17256
17257 * callproc.c (Fcall_process): Don't hold references to string data
17258 across garbage collection. Move initialisation of new_argv down
17259 to avoid compiler bug.
17260
17261 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
17262
17263 * process.c (Fsystem_process_attributes): Doc fix.
17264
17265 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
17266
17267 * callproc.c (Fcall_process): Canonicalize current directory name.
17268
17269 * xdisp.c (move_it_to): When moving by vpos, ensure that the
17270 iterator advances to the next line if the current line ends in a
17271 continued tab.
17272
17273 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
17274
17275 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
17276 member to point to cmp_from.
17277
17278 * xdisp.c: Doc fix for references to gidx data member.
17279
17280 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
17281
17282 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
17283
17284 2008-09-07 Kenichi Handa <handa@m17n.org>
17285
17286 * composite.c (FORWARD_CHAR): Check STOP after
17287 incrementing (POSITION).pos.
17288
17289 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
17290
17291 * process.c (Fsystem_process_attributes): Doc fix.
17292
17293 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
17294
17295 * keyboard.c (Ftop_level): Doc fix.
17296
17297 2008-09-06 Eli Zaretskii <eliz@gnu.org>
17298
17299 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
17300 minibuffer, don't let lower part of menu invade the echo area.
17301
17302 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
17303 "char *q" to access menu text and advance through it. Revert the
17304 change that displayed ">" instead of ASCII character 0x10.
17305
17306 2008-09-05 Eli Zaretskii <eliz@gnu.org>
17307
17308 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
17309 toggle boxes and radio buttons on MS-DOS as well.
17310
17311 2008-09-05 Kenichi Handa <handa@m17n.org>
17312
17313 * composite.c (autocmp_chars): Check lookback count.
17314 (composition_compute_stop_pos): Set cmp_it->lookback.
17315 (composition_reseat_it): Check lookback count.
17316 (struct position_record): New struct.
17317 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
17318 (find_automatic_composition): New function.
17319 (composition_adjust_point): Use find_automatic_composition.
17320
17321 * dispextern.h (struct composition_it): New member lookback.
17322
17323 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
17324
17325 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
17326 if moving by a single line.
17327
17328 2008-09-02 Andreas Schwab <schwab@suse.de>
17329
17330 * xterm.c (x_delete_display): Fix merge error.
17331
17332 * fileio.c (Fexpand_file_name): Remove unused variables.
17333
17334 2008-09-02 Eli Zaretskii <eliz@gnu.org>
17335
17336 * fileio.c (Fexpand_file_name): Copy argument `name' into local
17337 storage on all platforms, not just on DOS_NT.
17338
17339 2008-09-02 Jason Rumney <jasonr@gnu.org>
17340
17341 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
17342 Ensure mouse is not grabbed after menu is finished.
17343
17344 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
17345
17346 * xfaces.c (Finternal_set_alternative_font_family_alist)
17347 (Finternal_set_alternative_font_registry_alist): Properly copy
17348 entire alist structure.
17349
17350 2008-09-01 Kenichi Handa <handa@m17n.org>
17351
17352 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
17353 representative chars of the script is a vector.
17354 (ftfont_list): Handle the case where the representative chars of
17355 the script is a vector.
17356
17357 * character.c (syms_of_character): Docstring of
17358 script-representative-chars fixed.
17359
17360 2008-08-31 Eli Zaretskii <eliz@gnu.org>
17361
17362 * msdos.c (BUILD_CHAR_GLYPH): New macro.
17363 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
17364 the menu. Allocate larger buffer for `text', to account for
17365 possible ^C characters.
17366
17367 2008-08-31 Martin Rudalics <rudalics@gmx.at>
17368
17369 * xdisp.c (prepare_menu_bars): Don't call
17370 Vwindow_size_change_functions with arg Qt.
17371
17372 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
17373
17374 * font.h (font_range):
17375 * fileio.c (report_file_error):
17376 * composite.c (composition_update_it): Yet another int/Lisp_Object
17377 mixup (YAILOM).
17378
17379 2008-08-30 Glenn Morris <rgm@gnu.org>
17380
17381 * data.c (Fmake_variable_frame_local): Doc fix.
17382
17383 * frame.c (Fmodify_frame_parameters): Doc fix.
17384
17385 2008-08-30 Eli Zaretskii <eliz@gnu.org>
17386
17387 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
17388 needed by GetTokenInformation.
17389 (w32_system_process_attributes): Check return values of all system
17390 APIs.
17391
17392 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
17393 only when the state changes.
17394 (IT_update_begin, IT_update_end): Add termscript trace.
17395
17396 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
17397 clipboard is unavailable. Set dst to NULL if it doesn't point to
17398 malloc'ed data.
17399 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
17400 passing random values to xfree.
17401
17402 * dispnew.c (init_display): Set `tty's association in frame's
17403 parameters alist to the name of the terminal device, if that is known.
17404
17405 2008-08-29 Jason Rumney <jasonr@gnu.org>
17406
17407 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
17408
17409 2008-08-29 Eli Zaretskii <eliz@gnu.org>
17410
17411 * composite.c (fill_gstring_body): Avoid compiler warnings.
17412
17413 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
17414 LGLYPH_SET_CODE to avoid compiler warnings.
17415
17416 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
17417
17418 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
17419
17420 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
17421 LGLYPH_SET_CODE.
17422
17423 2008-08-29 Kenichi Handa <handa@m17n.org>
17424
17425 * fileio.c (report_file_error): Don't downcase the first character
17426 of errstring if it is still unibyte.
17427
17428 2008-08-29 Kenichi Handa <handa@m17n.org>
17429
17430 These changes are to re-implement the automatic composition so
17431 that it doesn't use text properties.
17432
17433 * Makefile.in (ftfont.o): Depend on composite.h.
17434 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
17435
17436 * character.h (Vunicode_category_table): Extern it.
17437
17438 * character.c (Vunicode_category_table): New variable.
17439 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
17440
17441 * chartab.c (optimize_sub_char_table): Perform more greedy
17442 optimization.
17443
17444 * composite.h (enum composition_method):
17445 Delete COMPOSITION_WITH_GLYPH_STRING.
17446 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
17447 (Vcomposition_function_table): Extern it.
17448 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
17449 (composition_gstring_put_cache, composition_gstring_from_id)
17450 (composition_gstring_p, composition_gstring_width)
17451 (composition_compute_stop_pos, composition_reseat_it)
17452 (composition_update_it, composition_adjust_point): Extern them.
17453 (Fcomposition_get_gstring): EXFUN it.
17454
17455 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
17456 (Vcomposition_function_table)
17457 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
17458 (gstring_hash_table, gstring_work, gstring_work_headers):
17459 New variables.
17460 (gstring_lookup_cache, composition_gstring_put_cache)
17461 (composition_gstring_from_id, composition_gstring_p)
17462 (composition_gstring_width, fill_gstring_header)
17463 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
17464 (composition_reseat_it, composition_update_it)
17465 (composition_adjust_point, Fcomposition_get_gstring): New functions.
17466 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
17467 and gstring_work_headers. DEFVAR_LISP composition-function-table.
17468 Defsubr composition_get_gstring.
17469
17470 * dispextern.h (struct glyph): New union u.cmp. Delete the member
17471 cmp_id.
17472 (struct glyph_string): Delete the member gidx. New members
17473 cmp_id, cmp_from, and cmp_to.
17474 (enum it_method): Delete GET_FROM_COMPOSITION.
17475 (struct composition_it): New struct.
17476 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
17477 Delete c, len, cmp_id, cmp_len in u.comp.
17478
17479 * font.h (enum lgstring_indices): Delete it.
17480 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
17481 (enum lglyph_indices): Likewise.
17482 (font_range): Adjust extern.
17483 (font_fill_lglyph_metrics): Extern it.
17484
17485 * font.c (QCf): New variable.
17486 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
17487 (font_prepare_composition): Delete this function.
17488 (font_range): Type and arguments changed.
17489 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
17490 (font_fill_lglyph_metrics): New function.
17491 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
17492 (syms_of_font): DEFSYM QCf. Delete defsubr for
17493 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
17494 Defsubr Sfont_shape_gstring.
17495
17496 * fontset.h (font_for_char): Extern it.
17497
17498 * fontset.c (font_for_char): New function.
17499
17500 * ftfont.c: Include composite.h.
17501 (ftfont_resolve_generic_family): Add langset "en" to pattern.
17502 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
17503
17504 * indent.c: Include composite.h and dispextern.h.
17505 (check_composition): Delete this function.
17506 (scan_for_column): Handle composition by
17507 composition_compute_stop_pos, composition_reseat_it, and
17508 composition_update_it.
17509 (compute_motion): Likewise.
17510 (Fvertical_motion): Fix checking of composition.
17511
17512 * keyboard.c (adjust_point_for_property): Check composition by
17513 composition_adjust_point.
17514
17515 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
17516 struct glyph_string.
17517
17518 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
17519 (append_composite_glyph): Adjust for the change of struct it and
17520 struct glyph.
17521 (produce_composite_glyph): Likewise.
17522
17523 * w32term.c (x_draw_composite_glyph_string_foreground):
17524 Adjust for the change of struct glyph_string.
17525 (x_draw_glyph_string): Likewise.
17526
17527 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
17528 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
17529
17530 * xdisp.c: Include font.h.
17531 (it_props): Delete the entry for Qauto_composed.
17532 (init_iterator): Initialize it->cmp_it.id to -1.
17533 (compute_stop_pos): Call composition_compute_stop_pos.
17534 (face_before_or_after_it_pos): Adjust for the change of struct it.
17535 (handle_auto_composed_prop): Delete it.
17536 (handle_composition_prop): Handle only static composition.
17537 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
17538 from xassert. Initialize it->cmp_it.stop_pos.
17539 (push_it): Adjust for the change of struct it.
17540 (pop_it): Likewise.
17541 (get_next_element): Delete next_element_from_composition.
17542 (CHAR_COMPOSED_P): New macro.
17543 (get_next_display_element): For automatic composition, get a face
17544 from the font in the glyph-string.
17545 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
17546 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
17547 (next_element_from_string): Check if the character at the current
17548 position is composed by CHAR_COMPOSED_P.
17549 (next_element_from_buffer): Likewise.
17550 (next_element_from_composition): Adjust for the change of struct it.
17551 Update it->cmp_it.
17552 (dump_glyph): Adjust for the change of struct glyph.
17553 (fill_composite_glyph_string): Adjust for the change of struct
17554 it and struct glyph. Don't handle automatic composition here.
17555 (fill_gstring_glyph_string): New function.
17556 (x_get_glyph_overhangs): Handle automatic composition.
17557 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
17558 (BUILD_GSTRING_GLYPH_STRING): New macro.
17559 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
17560 automatic composition.
17561 (append_composite_glyph): Adjust for the change of struct it and
17562 struct glyph.
17563 (x_produce_glyphs): Adjust for the change of struct it.
17564
17565 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
17566 the change of struct glyph_string.
17567 (x_draw_glyph_string): Likewise.
17568
17569 2008-08-29 Glenn Morris <rgm@gnu.org>
17570
17571 * buffer.c (word-wrap): Doc fix.
17572 * xdisp.c (truncate-partial-width-windows): Doc fix.
17573 Increase default to 50.
17574
17575 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
17576
17577 * xdisp.c (update_tool_bar_unwind): New function.
17578 (update_tool_bar): Temporarily set selected frame before building
17579 tool-bar items.
17580
17581 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
17582
17583 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
17584 snprintf, respectively.
17585 (xd_append_arg): Convert strings with Fstring_make_unibyte.
17586
17587 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
17588
17589 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
17590 LDFLAGS to GNUstep CC invocation.
17591
17592 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
17593
17594 * indent.c (Fvertical_motion): Revert last change. Handle the
17595 general case where we are moving forward, and PT spans multiple
17596 screen lines.
17597
17598 * eval.c (find_handler_clause): Temporarily increase
17599 max-lisp-eval-depth while printing the backtrace buffer, to
17600 guarantee that help-mode code can run.
17601
17602 2008-08-27 Eli Zaretskii <eliz@gnu.org>
17603
17604 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
17605 colors under -rv.
17606 (IT_set_frame_parameters): Don't swap foreground and background
17607 colors if `(reverse . t)' is present in the frame properties.
17608 (internal_terminal_init): Call init_frame_faces only for the
17609 initial frame.
17610
17611 2008-08-27 Andreas Schwab <schwab@suse.de>
17612
17613 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
17614
17615 2008-08-27 Andreas Schwab <schwab@suse.de>
17616
17617 * search.c (search_buffer): Set char_base to zero only at the end.
17618
17619 2008-08-27 Kenichi Handa <handa@m17n.org>
17620
17621 * fileio.c (report_file_error): Fix handling of multibyte error string.
17622
17623 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
17624
17625 * xterm.c (x_term_init): Temporarily hide the partially
17626 initialized terminal while calling vendor-specific-keysyms.
17627
17628 2008-08-26 Eli Zaretskii <eliz@gnu.org>
17629
17630 * msdos.c (internal_terminal_init): Most initializations done only
17631 once, especially initial_screen_colors[] and termscript open.
17632
17633 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
17634
17635 * eval.c (Fcondition_case): Doc fix.
17636
17637 * widgetprv.h (EmacsFramePart): Change font member to the new font
17638 struct.
17639
17640 * widget.c: Include character.h and font.h for XSETFONT.
17641 (setup_frame_gcs): Compute X font id from font struct, just once.
17642
17643 2008-08-26 Eli Zaretskii <eliz@gnu.org>
17644
17645 * term.c (get_named_tty): Fix last change.
17646
17647 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
17648
17649 * indent.c (Fvertical_motion): If moving forward starting from a
17650 multi-line string, move the iterator to the last line of that string.
17651
17652 2008-08-25 Eli Zaretskii <eliz@gnu.org>
17653
17654 * frame.c (do_switch_frame): Mark previously displayed frame as
17655 obscured for FRAME_MSDOS_P frames as well.
17656
17657 2008-08-24 Eli Zaretskii <eliz@gnu.org>
17658
17659 * frame.c (make_terminal_frame): Initialize f->terminal,
17660 f->terminal->reference_count, and scroll bars on MS-DOS as well.
17661 Set the top frame to newly created frame.
17662 (Fmake_terminal_frame): Reuse the_only_display_info.
17663
17664 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
17665 estimating available memory.
17666
17667 2008-08-23 David Reitter <david.reitter@gmail.com>
17668
17669 * nsterm.m (ns_draw_window_cursor): Don't call
17670 NSDisableScreenUpdates and NSEnableScreenUpdates on
17671 non-NS_IMPL_COCOA systems.
17672
17673 2008-08-23 Andreas Schwab <schwab@suse.de>
17674
17675 * process.c (procfs_system_process_attributes): Fix use of
17676 uninitialized variables.
17677
17678 2008-08-23 Eli Zaretskii <eliz@gnu.org>
17679
17680 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
17681
17682 * dispnew.c (init_display): Remove MS-DOS specific conditions for
17683 calling tty-set-up-initial-frame-faces.
17684
17685 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
17686 Allow MSDOS frames along with X frames.
17687
17688 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
17689 addition to output_termcap.
17690
17691 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
17692
17693 * termchar.h (FRAME_TTY): Support output_msdos_raw.
17694 (struct tty_display_info) [MSDOS]: Add fields related to mouse
17695 highlight.
17696
17697 * process.c [!subprocesses]: Define QCname.
17698 (syms_of_process): Intern and staticpro it.
17699
17700 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
17701 Adjust for changes in encoding/decoding routines.
17702 Use encode_coding_object and decode_coding_object instead of
17703 encode_coding and decode_coding.
17704
17705 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
17706
17707 * dosfns.c: Include frame.h before termhooks.h.
17708 (dos_cleanup): Use CURTTY ()->termscript instead of a global
17709 variable termscript.
17710
17711 * s/msdos.h (USER_FULL_NAME): Define.
17712 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
17713
17714 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
17715 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
17716 pw->pw_gecos.
17717
17718 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
17719 SELECTED_FRAME as additional (1st) argument.
17720 (tty_read_avail_input): Handle output_msdos_raw in
17721 addition to output_termcap.
17722
17723 * msdos.c: Include frame.h before termhooks.h.
17724 (mouse_on, mouse_off, mouse_moveto, mouse_init)
17725 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
17726 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
17727 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
17728 (IT_set_terminal_modes, IT_reset_terminal_modes)
17729 (IT_set_frame_parameters): Use tty->termscript instead of a global
17730 variable termscript.
17731 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
17732 global variable terminal_coding. Don't refer to
17733 Vnonascii_translation_table.
17734 (internal_terminal_init): Set Vwindow_system in current_kboard.
17735 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
17736 Announce date and time of session start, if termscript is open.
17737 Don't zero out the_only_display_info (it is done in
17738 term.c:init_tty). Open termscript only of not already open.
17739 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
17740 here instead of dos_ttraw. Don't initialize display if this is an
17741 initial tty. Don't set FRAME_FONT.
17742 (Vwindow_system_version): Bump to 23.
17743 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
17744 is available, set up mouse_position_hook.
17745 (dos_ttraw, IT_set_terminal_modes): If called with initial
17746 terminal, do nothing.
17747 (IT_set_frame_parameters): Handle the Qtty_type frame
17748 parameter by calling internal_terminal_init.
17749 (dos_set_window_size, show_mouse_face)
17750 (clear_mouse_face, IT_note_mode_line_highlight)
17751 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
17752 (dos_rawgetc): Use tty_display_info instead of x_display_info.
17753 (initialize_msdos_display): New function.
17754 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
17755 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
17756 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
17757 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
17758 Accept additional argument: a pointer to a frame. Update all callers.
17759 (request_sigio, unrequest_sigio): Don't define, now defined on
17760 sysdep.c.
17761 (IT_write_glyphs): Rewrite to use encode_terminal_code.
17762
17763 * term.c [MSDOS]: Include msdos.h.
17764 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
17765 conditional to DOS_NT. Allow only one call to this function in a
17766 session. Don't allocate a new struct tty_display_info; instead,
17767 reuse the_only_display_info. Call get_tty_size to get screen
17768 dimensions. Call init_baud_rate to set bad_rate.
17769 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
17770 (Fsuspend_tty) [MSDOS]: Don't close input and output.
17771 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
17772 (get_tty_terminal, get_named_tty, Ftty_type)
17773 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
17774 output_termcap.
17775 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
17776 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
17777 only when subprocesses are supported.
17778
17779 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
17780 f->output_data.x.
17781 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
17782 terminal devices.
17783
17784 * msdos.h: Remove definition of struct x_display_info and struct
17785 x_output.
17786 (FRAME_FONT): Use output_data.tty.
17787 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
17788 (struct x_display_info): Rename from display_info. Update all users in
17789 msdos.c.
17790 (struct x_output): Remove background_pixel and foreground_pixel.
17791 (the_only_display_info): Rename from the_only_x_display.
17792 (dos_ttraw): Update prototype.
17793
17794 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
17795 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
17796
17797 2008-08-23 Jason Rumney <jasonr@gnu.org>
17798
17799 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
17800 (fn_TIFFSetDirectory): New library function used.
17801 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
17802 (tiff_load): Use :index to select among multiple images. Set count
17803 property when multiple images exist.
17804 (gif_format): Use :index, not :image.
17805
17806 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
17807
17808 * xdisp.c (try_scrolling): Check INT_MAX instead of
17809 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
17810 to obtain INT_MAX.
17811
17812 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
17813
17814 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
17815
17816 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
17817
17818 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
17819 GNUstep library location.
17820
17821 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
17822
17823 * xfaces.c (x_update_menu_appearance): Check validity of menu font
17824 before using it.
17825
17826 * puresize.h (BASE_PURESIZE): Increase to 1250000.
17827
17828 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
17829
17830 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
17831 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
17832 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
17833 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
17834 (EmacsApp-cursor_blink_handler): Remove declaration.
17835 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
17836 match 01 Feb 2008 changes in xterm.c.
17837 (ns_read_socket): Add cast to avoid warning.
17838 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
17839 GNUstep.
17840
17841 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
17842
17843 * xselect.c (x_get_foreign_selection): Return nil if desired
17844 selection could not be obtained, instead of signalling an error.
17845
17846 2008-08-20 David Reitter <david.reitter@gmail.com>
17847
17848 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
17849 * nsterm.m: Remove ns-specific code for cursor blinking.
17850 (ns_draw_window_cursor): Clear cursor properly rather than
17851 redrawing the area. Respect width of bar cursors.
17852 These changes enable the use of generic blink-cursor-mode and
17853 generic cursor types in NS and support smooth cursor movements (do
17854 not blink off after command).
17855 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
17856 Nextstep, too.
17857
17858 2008-08-19 Kenichi Handa <handa@m17n.org>
17859
17860 * font.c (Vfont_log_deferred): New variable.
17861 (font_add_log): Check Vfont_log_deferred.
17862 (font_deferred_log): New function.
17863
17864 * font.h (font_deferred_log): Extern it.
17865
17866 * fontset.c (reorder_font_vector): Use encoding charset of fonts
17867 for sorting.
17868 (face_for_char): Use deferred log.
17869
17870 2008-08-18 Kenichi Handa <handa@m17n.org>
17871
17872 * fontset.c (face_for_char): Add font log.
17873
17874 * font.c (font_add_log): Add the font properties :script, :lang,
17875 and :otf in the log.
17876
17877 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
17878
17879 * xdisp.c: Remove dead code.
17880 (handle_invisible_prop, next_overlay_string): Defer call to
17881 setup_for_ellipsis.
17882 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
17883
17884 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
17885
17886 * xfaces.c (lookup_derived_face): Properly handle possible zero
17887 return value of get_lface_attributes.
17888 (merge_faces): Don't tell lookup_derived_face to signal an error
17889 if face is not found.
17890
17891 * dired.c (Fdirectory_files): Doc fix.
17892
17893 * process.c (make_process): Initialize kill_without_query struct
17894 member.
17895
17896 2008-08-15 Eli Zaretskii <eliz@gnu.org>
17897
17898 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
17899 Alternative calculation of totphys for Visual Studio 6.
17900
17901 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
17902
17903 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
17904 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
17905 All users changed.
17906 (stat): Only root directory passed to GetDriveType. Allow RAM
17907 disk as well as local fixed disk when w32-get-true-file-attributes
17908 is set to `local'.
17909 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
17910 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
17911 (w32_cached_id, w32_add_to_cache): New functions.
17912 (get_name_and_id): Look account names in the cache before calling
17913 lookup_account_sid.
17914 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
17915 New initialization flags.
17916 (globals_of_w32): Initialize them to zero.
17917 (w32_system_process_attributes): Use w32_cached_id and
17918 w32_add_to_cache.
17919
17920 2008-08-14 Lawrence Mitchell <wence@gmx.li>
17921
17922 * lread.c (Fread_char, Fread_char_exclusive): If no character
17923 event is read before timeout is reached, return nil, rather than
17924 converting to a number.
17925
17926 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
17927
17928 * fns.c (use_dialog_box): Doc fix.
17929
17930 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
17931 on OS X.
17932
17933 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
17934
17935 * frame.c (Qns_parse_geometry): New var.
17936 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
17937
17938 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
17939
17940 * xdisp.c (x_produce_glyphs): Handle the case when font has no
17941 space character in calculating tabs.
17942
17943 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
17944
17945 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
17946
17947 2008-08-10 Glenn Morris <rgm@gnu.org>
17948
17949 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
17950 silence gcc "limited range of data type" warnings in some
17951 make_fixnum_or_float calls.
17952
17953 2008-08-09 Eli Zaretskii <eliz@gnu.org>
17954
17955 * w32.c (w32_system_process_attributes): If the process does not
17956 exist, return nil.
17957
17958 * w32.c: Include thelp32.h, psapi.h and coding.h.
17959 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
17960 declarations.
17961 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
17962 (Process32Next_Proc): New typedefs.
17963 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
17964 (g_b_init_process32_next, g_b_init_open_thread_token)
17965 (g_b_init_impersonate_self, g_b_init_revert_to_self)
17966 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
17967 (g_b_init_get_process_working_set_size)
17968 (g_b_init_global_memory_status_ex): New static variables.
17969 (globals_of_w32): Initialize them.
17970 (create_toolhelp32_snapshot, process32_first, process32_next)
17971 (open_thread_token, impersonate_self, revert_to_self)
17972 (get_process_memory_info, get_process_working_set_size)
17973 (global_memory_status, global_memory_status_ex): New wrapper
17974 functions.
17975 (w32_list_system_processes, w32_system_process_attributes)
17976 (enable_privilege, restore_privilege, ltime, process_times):
17977 New functions.
17978 (convert_time_raw): New function.
17979 (convert_time): Remove conversion of FILETIME into time in 100
17980 nsec units, call convert_time_raw instead.
17981
17982 * process.h (w32_list_system_processes, w32_system_process_attributes):
17983 Add prototypes.
17984 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
17985 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
17986 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
17987 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
17988
17989 * process.c (Fsystem_process_attributes): Doc fix.
17990
17991 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
17992
17993 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
17994 a continued multi-char glyph; if so, advance to the actual glyph.
17995
17996 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
17997
17998 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
17999
18000 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
18001 (.m.o): Use it.
18002 * config.in: Regenerate.
18003
18004 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
18005
18006 * xdisp.c (redisplay_window): Revert last change.
18007 (try_window): Check bottom scroll margin too.
18008
18009 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
18010
18011 * config.in: Regenerate.
18012
18013 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
18014 -list-load-path-shadows'.
18015 (nsgui.h): Reduce number of things depending on it.
18016
18017 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
18018
18019 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
18020 instead of window-end which does the wrong thing at eob.
18021 (try_cursor_movement): Minor optimization.
18022 (redisplay_window): If scroll margin is defined, don't assume
18023 window doesn't need scrolling.
18024
18025 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
18026
18027 * config.in: Regenerate.
18028
18029 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
18030 (mostlyclean): Don't delete *.d under NS.
18031
18032 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
18033
18034 2008-08-06 Kenichi Handa <handa@m17n.org>
18035
18036 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
18037
18038 2008-08-06 Andreas Schwab <schwab@suse.de>
18039
18040 * config.in: Regenerate.
18041
18042 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
18043
18044 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
18045 forcing a window start.
18046
18047 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
18048 (auto_save_1): Update modtime when auto-save-list-file-name is on.
18049
18050 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
18051
18052 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
18053 argument.
18054
18055 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
18056
18057 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
18058 <scroll-down-aggressively, before-change-functions>:
18059 <after-change-functions>: Reflow docstrings.
18060
18061 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
18062 Ken Raeburn <raeburn@gnu.org>
18063
18064 Dock menu customization, based on a patch by Ken Raeburn, plus some
18065 other fixes.
18066 * nsmenu.m (dockMenu): New variable.
18067 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
18068
18069 * nsterm.h (dockMenu): Declare.
18070
18071 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
18072 (ns_term_init): Initialize dockMenu.
18073 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
18074 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
18075 left.
18076
18077 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
18078
18079 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
18080
18081 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
18082
18083 * config.in: Regenerate.
18084
18085 2008-08-04 Seiji Zenitani <zenitani@mac.com>
18086
18087 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
18088
18089 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
18090
18091 * nsterm.h (find_and_call_menu_selection): Fix prototype.
18092
18093 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
18094
18095 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
18096
18097 * keyboard.h: Comment an #endif.
18098
18099 * lisp.h (have_menus_p): Adjust comment.
18100
18101 * menu.c (find_and_return_menu_selection): Fix comparison with
18102 client_data.
18103
18104 * nsmenu.m (popup_activated_flag): New variable.
18105 (popup_activated): New function.
18106 (menu-or-popup-active-p): New exported lisp definition.
18107 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
18108 when popup done.
18109 (ns_popup_dialog): Set popup_activated_flag.
18110
18111 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
18112 version for GNUstep (handled by conditional typedef in nsterm.m).
18113 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
18114 in rgb.txt).
18115
18116 * process.c (init_process): Use DARWIN_OS, not DARWIN.
18117
18118 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
18119
18120 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
18121
18122 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
18123 shortcircuit if popup_activated like GTK and X toolkit.
18124
18125 * m/inter386.h: Change DARWIN to DARWIN_OS.
18126
18127 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
18128 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
18129 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood.
18130 Expand comment on NO_SOCK_SIGIO.
18131
18132 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
18133
18134 * nsterm.m (windowDidResize): Remove stopModal call.
18135
18136 2008-08-03 Andreas Schwab <schwab@suse.de>
18137
18138 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
18139 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
18140
18141 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
18142
18143 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
18144 Don't use uninitialized pointer variable when using getrlimit.
18145
18146 2008-08-02 Jason Rumney <jasonr@gnu.org>
18147
18148 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
18149
18150 2008-08-02 Eli Zaretskii <eliz@gnu.org>
18151
18152 * alloc.c (NSTATICS): Bump to 0x640.
18153
18154 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
18155
18156 * lisp.h: Add prototype for directory_files_internal.
18157
18158 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
18159 New functions.
18160 (syms_of_process): Defsubr them. Add initializations for various
18161 Q* symbols used in procfs_system_process_attributes.
18162 (procfs_list_system_processes, procfs_system_process_attributes)
18163 [HAVE_PROCFS]: New functions.
18164 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
18165 (procfs_get_total_memory): New functions.
18166
18167 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
18168
18169 * xfaces.c (Fx_load_color_file): Fix previous change;
18170 it is #ifdef WINDOWSNT, not WINDOWS_NT.
18171
18172 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
18173
18174 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
18175
18176 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
18177
18178 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
18179
18180 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
18181
18182 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
18183
18184 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
18185 define NSApplicationDelegateReplySuccess.
18186 (EmacsView -converstationIdentifier): Use long instead of
18187 NSInteger for GNUstep, since it doesn't have NSInteger.
18188
18189 * xmenu.c: Revert last change.
18190
18191 * keyboard.h: Fix last change.
18192
18193 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
18194
18195 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
18196 on Windows.
18197
18198 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
18199
18200 Warning clearing and clean-up in NS port.
18201 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
18202 Add prototypes.
18203 * nsgui.h (FACE_DEFAULT): Remove, unused.
18204 (XGCValues): Change colors to unsigned long.
18205 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
18206 nsterm.m.
18207 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
18208 (ns_list_fonts): Remove, unused.
18209 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
18210 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
18211 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
18212 (nsfont_draw): Compare face colors to 0, not nil.
18213 * nsmenu.m (struct widget_value): Drop unneeded declaration.
18214 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
18215 (-addSubmenuWithTitle:): Use NSMenuItem class.
18216 (ns_popup_menu): Use NO, not NULL, for enabled setting.
18217 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
18218 (ns_clip_to_row): Make gc arg a BOOL.
18219 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
18220 ns_clip_to_row() call.
18221 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
18222 used). Cast FRAME_FONT assignments.
18223 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
18224 (ns_string_to_lispmod): Change arg to const char.
18225 (ns_term_init): Use NSMenuItem class.
18226 (EmacsApp -openFile:): Move to different section of file.
18227 (EmacsApp -application:openFiles:): Don't return a value, call
18228 -replyToOpenOrPrint:.
18229 (EmacsView -keyDown:): Fix up cast.
18230 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
18231 (EmacsView -menuDown:): Cast tag in call to
18232 find_and_call_menu_selection().
18233 (ns_list_fonts): Remove, unused.
18234 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
18235 (ns_fontname_to_xlfd): Make static.
18236 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
18237 Remove prototypes (now in keyboard.h).
18238 (next_menubar_widget_id): Remove, unused.
18239 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
18240 Remove prototypes (now in keyboard.h).
18241 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
18242
18243 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
18244
18245 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
18246 (floatfns.o): Depend on syssignal.h.
18247 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
18248
18249 * systty.h: Fix previous change that removed BSD_TERMIOS.
18250 Add comments to #ifdefs.
18251
18252 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
18253
18254 * w32fns.c (w32-load-color-file): Remove.
18255 (x-open-connection): Use renamed Fx_load_color_file.
18256 * xfaces.c (x-load-color-file): Add.
18257 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
18258 Emacs.clr.
18259 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
18260
18261 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
18262
18263 * dbusbind.c (Fdbus_call_method_asynchronously)
18264 (Fdbus_method_error_internal): New defuns.
18265 (xd_read_message): Handle also reply messages.
18266 (Vdbus_registered_functions_table): Extend docstring.
18267
18268 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
18269
18270 * keyboard.c (gobble_input): Fix previous change.
18271
18272 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
18273
18274 * bitmaps/README:
18275 * xfns.c:
18276 * termcap.c:
18277 * term.c:
18278 * syswait.h:
18279 * systty.h:
18280 * systime.h:
18281 * syssignal.h:
18282 * sysdep.c:
18283 * process.h:
18284 * process.c:
18285 * print.c:
18286 * ndir.h:
18287 * lread.c:
18288 * keyboard.c:
18289 * getpagesize.h:
18290 * floatfns.c:
18291 * fileio.c:
18292 * emacs.c:
18293 * doc.c:
18294 * dispnew.c:
18295 * dired.c:
18296 * data.c:
18297 * callproc.c:
18298 * buffer.c:
18299 * README:
18300 * Makefile.in:
18301 * s/template.h:
18302 * s/msdos.h:
18303 * m/vax.h: Remove VMS support.
18304 * s/vms.h:
18305 * vlimit.h:
18306 * uaf.h:
18307 * temacs.opt:
18308 * param.h:
18309 * ioctl.h: Remove file.
18310
18311 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
18312
18313 * s/ms-w32.h (MULTI_KBOARD): Remove.
18314 * xterm.c:
18315 * xselect.c:
18316 * xfns.c:
18317 * window.c:
18318 * w32term.c:
18319 * w32fns.c:
18320 * terminal.c:
18321 * termhooks.h:
18322 * term.c:
18323 * sysdep.c:
18324 * keyboard.h:
18325 * keyboard.c:
18326 * frame.h:
18327 * frame.c:
18328 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
18329 * config.in: Regenerate.
18330
18331 2008-07-30 Jason Rumney <jasonr@gnu.org>
18332
18333 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
18334
18335 * w32font.c (w32font_encode_char): Leave as unicode if in range.
18336 (w32font_open_internal): Get unicode version of textmetrics.
18337 Don't enable or disable glyph indices here.
18338 (w32font_open): Disable use of glyph indices.
18339
18340 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
18341
18342 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
18343
18344 * minibuf.c (Vread_buffer_function): Doc fix.
18345
18346 2008-07-30 John Paul Wallington <jpw@pobox.com>
18347
18348 * minibuf.c (read_buffer_completion_ignore_case): New var.
18349 (Fread_buffer): Use it.
18350
18351 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
18352
18353 * systty.h (sensemode): Remove empty #if. Remove reference to
18354 BSD_TERMIOS, unused.
18355
18356 * sysdep.c: Remove reference to DGUX.
18357 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
18358
18359 * config.in: Regenerate.
18360
18361 2008-07-30 Jason Rumney <jasonr@gnu.org>
18362
18363 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
18364
18365 2008-07-29 Jason Rumney <jasonr@gnu.org>
18366
18367 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
18368 is populated.
18369 (uniscribe_encode_char): Always use uniscribe.
18370 Avoid using context if cache is populated.
18371
18372 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
18373
18374 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
18375 open menu.
18376
18377 * gtkutil.c (menu_nav_ended): Remove.
18378 (create_menus): Remove signal connect for menu_nav_ended.
18379
18380 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
18381
18382 * xdisp.c (redisplay_window): Check return value of
18383 compute_window_start_on_continuation_line before forcing a window
18384 start.
18385
18386 2008-07-28 Jason Rumney <jasonr@gnu.org>
18387
18388 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
18389
18390 * w32term.c (w32_enable_unicode_output, cleartype_active):
18391 Remove obsolete display options.
18392 (x_draw_glyph_string_background): Don't use old cleartype_active
18393 workaround.
18394 (w32_initialize): Remove cleartype_active initialization.
18395 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
18396
18397 2008-07-28 Andreas Schwab <schwab@suse.de>
18398
18399 * lisp.h (init_weak_hash_tables, syms_of_font)
18400 (xd_read_queued_messages, syms_of_dbusbind): Declare.
18401 (remove_hash_entry): Don't declare.
18402 * eval.c (maybe_call_debugger): Make static and move before use.
18403 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
18404 * xdisp.c: Include "gtkutil.h" if USE_GTK.
18405 * xterm.h (x_set_frame_alpha): Declare.
18406
18407 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
18408
18409 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
18410 (create_menus): Connect selection-done to menu_nav_ended.
18411
18412 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
18413
18414 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
18415 Set Vx_resource_name to a fallback. Replace read of 'buffered'
18416 parameter with read of 'alpha' one.
18417 (Qns_frame_parameter): Remove.
18418 * nsselect.m (selection-coding-system)
18419 (next-selection-coding-system, Vselection_coding_system)
18420 (Vnext_selection_coding_system): Drop.
18421
18422 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
18423
18424 * nsfns.m (do-applescript, do_applescript): Rename to
18425 ns-do-applescript, ns_do_applescript, and move within file.
18426
18427 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
18428
18429 Remove support for Mac Carbon.
18430 * mactoolbox.c:
18431 * macterm.h:
18432 * macterm.c:
18433 * macselect.c:
18434 * macmenu.c:
18435 * macgui.h:
18436 * macfns.c:
18437 * mac.c: Remove file.
18438 * s/darwin.h:
18439 * m/intel386.h:
18440 * xfaces.c:
18441 * xdisp.c:
18442 * window.c:
18443 * tparam.c:
18444 * termhooks.h:
18445 * termcap.c:
18446 * term.c:
18447 * syssignal.h:
18448 * sysselect.h:
18449 * sysdep.c:
18450 * process.c:
18451 * lread.c:
18452 * lisp.h:
18453 * keyboard.c:
18454 * image.c:
18455 * fringe.c:
18456 * frame.h:
18457 * frame.c:
18458 * fontset.c:
18459 * font.h:
18460 * font.c:
18461 * fns.c:
18462 * fileio.c:
18463 * emacs.c:
18464 * dispnew.c:
18465 * dispextern.h:
18466 * config.in:
18467 * atimer.c:
18468 * Makefile.in: Remove code for Carbon.
18469
18470 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18471
18472 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
18473
18474 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18475
18476 * macterm.h (kCGBitmapByteOrder32Host): New define for
18477 non-universal SDKs.
18478
18479 * image.c (mac_create_cg_image_from_image, image_load_image_io)
18480 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
18481
18482 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
18483 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
18484
18485 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
18486
18487 * w32inevt.c: Include dispextern.h.
18488
18489 2008-07-26 Andreas Schwab <schwab@suse.de>
18490
18491 * print.c (print_object): Fix off-by-one in last change.
18492
18493 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
18494
18495 * term.c (syms_of_term): Don't initialize default_orig_pair,
18496 default_set_foreground and default_set_background on Windows.
18497
18498 2008-07-25 Jason Rumney <jasonr@gnu.org>
18499
18500 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
18501 ScriptItemize. Clean up return value checking. Remove unused
18502 variables.
18503 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
18504 shaping engine.
18505
18506 * w32font.c (w32font_has_char): Handle the case where we can't
18507 determine the script for a character.
18508
18509 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
18510
18511 * term.c (syms_of_term): Initialize default_orig_pair,
18512 default_set_foreground, and default_set_background.
18513
18514 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
18515 clash (bug#86).
18516 (getloadavg): Callers changed.
18517
18518 * image.c (svg_load_image): Fix last change.
18519 (svg_load_image): Use rsvg_handle_get_dimensions to check that
18520 image size is valid. Use g_object_unref instead of deprecated
18521 rsvg_handle_free to free rsvg handle.
18522 (x_from_xcolors): Don't initialize pixmap (silence compiler).
18523
18524 2008-07-25 Jason Rumney <jasonr@gnu.org>
18525
18526 * w32font.c (w32font_encode_char): Encode characters outside BMP as
18527 surrogates before looking up glyph index.
18528 (w32font_text_extents): Encode as surrogates if falling back to
18529 functions that need UTF-16 wide chars.
18530
18531 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
18532 BMP as surrogates before looking up glyph index.
18533
18534 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
18535
18536 * image.c (svg_load_image): Check for failure in return value of
18537 rsvg_handle_get_pixbuf. Free rsvg handle when done.
18538
18539 2008-07-25 Jason Rumney <jasonr@gnu.org>
18540
18541 * w32font.c (Fx_select_font): Reverse sense of second arg.
18542
18543 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
18544
18545 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
18546 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
18547
18548 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
18549 (PURESIZE): Use it.
18550
18551 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
18552
18553 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
18554 * m/alpha.h (TEXT_END):
18555 * m/ibmrs6000.h (TEXT_END):
18556 * m/macppc.h (TEXT_END):
18557 * s/darwin.h (TEXT_END):
18558 * s/msdos.h (TEXT_END): Remove, unused.
18559 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
18560 * s/cygwin.h: Remove comment.
18561
18562 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
18563 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
18564 * m/intel386.h (DOT_GLOBAL_START):
18565 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
18566 (USG): Remove, file not used on USG platforms.
18567
18568 * Makefile.in (HAVE_X11): Remove empty #else.
18569
18570 2008-07-24 Andreas Schwab <schwab@suse.de>
18571
18572 * fileio.c (Finsert_file_contents): Properly adjust undo list
18573 after format conversion.
18574
18575 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
18576
18577 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
18578 (menu_nav_ended): Remove.
18579 (create_menus): Remove signal connect for menu_nav_ended.
18580 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
18581 create_menus.
18582 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
18583
18584 2008-07-23 Jason Rumney <jasonr@gnu.org>
18585
18586 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
18587 with opened font.
18588 (w32font_open): Set font type to gdi.
18589
18590 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
18591
18592 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
18593
18594 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
18595 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
18596 defines it.
18597 * unexec.c (ADDR_CORRECT): Define unconditionally.
18598
18599 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
18600
18601 * unexec.c: Remove code depending on !COFF and USG, the file is
18602 not used for such systems.
18603
18604 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
18605 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
18606 (LD_SWITCH_SYSTEM_1): Remove, update users.
18607
18608 * s/darwin.h (DATA_END):
18609 * m/intel386.h (DATA_END):
18610 * m/ibmrs6000.h (DATA_END):
18611 * m/alpha.h (DATA_END): Remove, unused.
18612
18613 * config.in: Regenerate.
18614 * s/ms-w32.h (subprocesses): Define unconditionally.
18615 * s/template.h (subprocesses): Update comment.
18616 * s/vms.h (subprocesses):
18617 * s/usg5-4.h (subprocesses):
18618 * s/hpux10-20.h (subprocesses):
18619 * s/gnu-linux.h (subprocesses):
18620 * s/cygwin.h (subprocesses):
18621 * s/bsd-common.h (subprocesses):
18622 * s/aix4-2.h (subprocesses):
18623 * s/darwin.h (subprocesses): Do not define, defined by default now.
18624
18625 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
18626 Remove all references.
18627 (temacs): Add GNUstep specific ld flags.
18628
18629 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
18630 similarly to what X does.
18631
18632 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
18633
18634 * nsfns.m (x-list-fonts): Remove.
18635 (syms_of_nsfns): Drop the x-list-fonts declaration.
18636 * nsterm.m: Get rid of remaining "//" comments.
18637
18638 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
18639
18640 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
18641
18642 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
18643 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
18644 (Fns_own_selection_internal, Fx_disown_selection_internal)
18645 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
18646
18647 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
18648 ... */' style of docstrings. Doc fixes.
18649
18650 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
18651
18652 * terminfo.c (UP, BC, PC): Undo previous change.
18653
18654 * nsfns.m: Rename ns prefixed functions/variables to the
18655 corresponding x versions. Update references.
18656
18657 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
18658
18659 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
18660
18661 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
18662
18663 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
18664 Remove forwarding functions.
18665 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
18666 non-static.
18667 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
18668 non-static.
18669 (ns_frame_parm_handlers): Use the new names.
18670 (syms_of_nsfns): Move to the end of file.
18671
18672 * nsterm.m (syms_of_nsterm): Move to the end of file.
18673
18674 * dispnew.c (init_display): Remove code for X10.
18675
18676 2008-07-22 Jason Rumney <jasonr@gnu.org>
18677
18678 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
18679 bare drive.
18680
18681 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
18682
18683 * nsterm.m (syms_of_nsterm): Remove debugging println.
18684
18685 2008-07-22 David Reitter <david.reitter@gmail.com>
18686
18687 * nsfns.m (do_applescript, F_do_applescript): NS version of the
18688 Carbon implementation of the same functionality: execute arbitrary
18689 AppleScript code.
18690
18691 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
18692
18693 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
18694 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
18695 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
18696 (Fx_display_mm_height, Fx_display_mm_width)
18697 (Fx_display_backing_store, Fx_display_visual_class)
18698 (Fx_display_save_under, Fx_open_connection)
18699 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
18700 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
18701 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
18702 (Fx_display_pixel_width, Fx_display_pixel_height)
18703 (Fx_display_usable_bounds, Fx_display_planes)
18704 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
18705 ... */' style of docstrings.
18706
18707 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
18708
18709 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
18710 on this platform.
18711 (mips):
18712 * m/iris4d.h (mips): Do not define.
18713 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
18714
18715 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
18716
18717 * image.c:
18718 * nsfns.m:
18719 * nsselect.m:
18720 * nsterm.h:
18721 * nsterm.m: Rename ns prefixed functions/variables to the
18722 corresponding x versions. Update references.
18723
18724 * m/ibms390x.h (NO_REMAP): Do not undefine.
18725
18726 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
18727
18728 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
18729
18730 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
18731 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
18732 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
18733 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
18734 (Fns_display_mm_height, Fns_display_mm_width)
18735 (Fns_display_backing_store, Fns_display_visual_class)
18736 (Fns_display_save_under, Fns_open_connection)
18737 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
18738 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
18739 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
18740 (Fns_display_pixel_width, Fns_display_pixel_height)
18741 (Fns_display_usable_bounds, Fx_display_planes)
18742 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
18743
18744 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
18745
18746 * print.c (print_object): Check print_depth before searching for
18747 circularities.
18748
18749 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
18750
18751 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
18752 only sprintf.
18753
18754 2008-07-21 Kenichi Handa <handa@m17n.org>
18755
18756 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
18757
18758 2008-07-20 Andreas Schwab <schwab@suse.de>
18759
18760 * syntax.c (find_start_pos, find_start_value)
18761 (find_start_value_byte, find_start_begv, find_defun_start)
18762 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
18763
18764 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
18765
18766 * s/sol2-3.h: Insert contents of s/sol2.h.
18767 (LD_SWITCH_SYSTEM): Remove redundant definition.
18768 * s/sol2.h: Remove, unused.
18769
18770 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
18771
18772 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
18773
18774 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
18775
18776 * Makefile.in (ns_appdir): Fix typo in find command.
18777
18778 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
18779
18780 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
18781
18782 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
18783 added not supported anymore.
18784
18785 * s/usg5-4-2.h (LIBS_SYSTEM):
18786 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
18787
18788 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
18789 * s/lynxos.h (GETPGRP_NO_ARG):
18790 * s/hpux10-20.h (NO_SIOCTL_H):
18791 * s/gnu.h (GETPGRP_NO_ARG):
18792 * s/gnu-linux.h (NO_SIOCTL_H):
18793 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
18794 * s/cygwin.h (GETPGRP_NO_ARG):
18795 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
18796 (C_DEBUG_SWITCH): Remove duplicate definition.
18797
18798 * m/ibms390.h: Remove boilerplate comments.
18799
18800 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
18801
18802 * process.c (HAVE_SERIAL): Consolidate ifdefs.
18803 (wait_reading_process_output): Remove code for SunOS, platform not
18804 supported anymore. Use SOLARIS2 instead of sun.
18805
18806 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18807
18808 * font.c (font_open_by_name): Under NS, default lface height to zero.
18809 (font_open_for_lface): Under NS, set size based on frame fontsize.
18810 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
18811 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
18812
18813 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18814
18815 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
18816 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
18817 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
18818 YES/NO.
18819 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
18820 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
18821 * Makefile.in (clean): Clear out build destination dir.
18822
18823 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18824
18825 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
18826 xterm, xselect.
18827 * lisp.h: Remove declaration of hash_remove.
18828 * nsgui.h: Remove redefinitions of hash_remove.
18829 * fns.c (hash_remove): Rename to hash_remove_from_table.
18830
18831 2008-07-19 Seiji Zenitani <zenitani@mac.com>
18832
18833 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
18834 strdup() the family UTF8String before modifying it.
18835
18836 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18837
18838 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
18839 NS_FACE_BACKGROUND with 0 instead of nil.
18840 * nsfont.m (nsfont_draw): Same.
18841
18842 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
18843
18844 * nsfns.m (ns_set_background_color): Fix crash.
18845
18846 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
18847
18848 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
18849
18850 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
18851
18852 * puresize.h (BASE_PURESIZE): Increase to 1240000.
18853
18854 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18855
18856 * gtkutil.c: Include <config.h> instead of "config.h".
18857
18858 * lisp.h (Foverlay_buffer): Add EXFUN.
18859
18860 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
18861 child process to complete child_setup. Undo 2005-09-21 change.
18862
18863 * s/darwin.h: Mention setsid after vfork.
18864
18865 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18866
18867 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
18868 Depend on macgui.h.
18869
18870 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
18871 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
18872
18873 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
18874 and f19.
18875 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
18876
18877 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
18878 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
18879 Remove enumerators.
18880
18881 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
18882 Check if FACE_FROM_ID returns NULL.
18883
18884 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
18885
18886 * w32inevt.c (change_frame_size): Remove extern declaration.
18887 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
18888 change_frame_size.
18889
18890 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
18891
18892 * getloadavg.c: Revert last change (2008-07-15).
18893
18894 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
18895
18896 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
18897 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
18898 from configure.
18899
18900 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
18901
18902 * s/sol2.h:
18903 * s/sol2-4.h: Reorganize conditionals.
18904
18905 * ecrt0.c: Remove code depending on m68000, not used anymore.
18906
18907 * fns.c (hash_remove): Make static.
18908 * lisp.h (hash_remove): Don't prototype.
18909
18910 * m/ibmrs6000.h:
18911 * m/ibms390x.h:
18912 * m/macppc.h: Remove boilerplate comments.
18913
18914 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
18915 Solaris, which does not need them.
18916
18917 * m/vax.h: Remove comments about unsupported systems.
18918
18919 * s/darwin.h: Reorganize ifdefs.
18920
18921 2008-07-17 Andreas Schwab <schwab@suse.de>
18922
18923 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
18924
18925 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
18926
18927 Use SDATA. Follow coding convention of placing operators at
18928 beginning of next line rather than end of previous line, and placing
18929 spaces around infix operators.
18930
18931 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
18932 in case it was defined already.
18933 USE @GNUSTEP_MAKEFILES@ rather than envvars.
18934 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
18935 ns_default.
18936 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
18937 Lisp_Objects.
18938 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
18939 (ns_defined_color, ns_color_to_lisp): Declare.
18940 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
18941 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
18942 it's accepted even with USE_LISP_UNION_TYPE.
18943 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
18944 (update_frame_tool_bar): Remove apparently obsolete tests for
18945 non-integerness of f->tool_bar_lines.
18946 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
18947 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
18948 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
18949 (nsfont_open): Don't confuse NULL for Qnil.
18950 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
18951 * menu.h (find_and_call_menu_selection):
18952 * menu.c (find_and_call_menu_selection): Use just int for vector size.
18953 (find_and_return_menu_selection): Always return something.
18954 * frame.h: Include dispextern.h for Display_Info.
18955 (display_x_get_resource): Declare.
18956
18957 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
18958
18959 * syntax.c: Remove stdio.h include accidentally introduced in
18960 Emacs.app commit.
18961 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
18962 NS_IMPL_COCOA.
18963 * keyboard.c (handle_async_input, input_available_signal): Remove
18964 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
18965
18966 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
18967
18968 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
18969 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
18970 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
18971 Use SDATA.
18972
18973 * keymap.c: Remove all NS-specific code.
18974 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
18975 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
18976 where_is_preferred_modifier, return a different value depending on how
18977 preferred is the binding.
18978 (where_is_internal): Adjust accordingly.
18979 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
18980 Adjust to new preferred_sequence_p.
18981 (syms_of_keymap): Declare `where-is-preferred-modifier'.
18982 * keyboard.c (parse_solitary_modifier): Not static any more.
18983 * keyboard.h (parse_solitary_modifier): Declare.
18984
18985 2008-07-16 Andreas Schwab <schwab@suse.de>
18986
18987 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
18988 of easymenu.
18989
18990 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
18991
18992 * xdisp.c (move_it_in_display_line): Account for word wrap, so
18993 that we don't move off the line.
18994
18995 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
18996
18997 * keyboard.c (Qsuper): Remove.
18998 (parse_menu_item): Don't call where_is_internal specially for NS.
18999
19000 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
19001
19002 * s/gnu-linux.h: Remove boilerplate comments.
19003
19004 * m/alpha.h (__ELF__): Consolidate conditions.
19005
19006 * m/m68k.h (linux): Use GNU_LINUX instead.
19007 Remove boilerplate comments.
19008
19009 * m/intel386.h: Undo refactoring from previous change.
19010 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
19011 too, remove dead code.
19012 (linux): Use GNU_LINUX instead.
19013
19014 2008-07-16 Jason Rumney <jasonr@gnu.org>
19015
19016 * w32gui.h: Repeat 26 June changes lost by last change.
19017
19018 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
19019
19020 * systty.h: Remove code for Aix on 386, unsupported platform.
19021
19022 * s/ms-w32.h: Remove boilerplate comments.
19023 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
19024
19025 * s/gnu-linux.h (TERM): Remove support.
19026 (HAVE_SYSVIPC): Remove, unused.
19027 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
19028 for this system.
19029
19030 * process.c: Remove support for IRIS, unused.
19031 Remove support for TERM, not relevant anymore.
19032
19033 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
19034 used with the definition.
19035
19036 * s/aix4-2.h (static): Do not undef.
19037
19038 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
19039 only used on Aix.
19040 (HAVE_SYSVIPC): Remove, unused.
19041
19042 * m/hp800.h (CANNOT_DUMP): Do not undef.
19043
19044 * m/alpha.h: Fix comment.
19045
19046 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
19047 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
19048 used by this configuration.
19049 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
19050 * unexec.c: Remove code depending on HPUX and
19051 USG_SHARED_LIBRARIES, not used with this file. Remove code
19052 depending on IRIS, unused. Remove if 0-ed code.
19053
19054 * s/template.h: Remove comments about static.
19055
19056 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
19057 Remove if 0-ed code.
19058 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
19059 were the same as the default.
19060 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
19061 Remove boilerplate comments.
19062 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
19063 (HAVE_SYSVIPC): Remove, unused.
19064 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
19065
19066 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
19067 Remove boilerplate comments.
19068 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
19069 Remove boilerplate comments.
19070 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
19071 Remove boilerplate comments.
19072 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
19073
19074 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
19075 USG systems which do not use DATA_SEG_BITS.
19076 Refactor code. Remove boilerplate comments.
19077
19078 * m/ibms390.h:
19079 * m/m68k.h:
19080 * s/bsd-common.h:
19081 * s/cygwin.h:
19082 * s/darwin.h:
19083 * s/freebsd.h:
19084 * s/gnu.h:
19085 * s/msdos.h: Remove boilerplate comments.
19086
19087 * m/iris4d.h: Remove boilerplate comments and code for systems that
19088 do not use this file.
19089 (IRIS_4D): Remove, unused.
19090
19091 * m/mips.h: Remove boilerplate comments and code for systems that
19092 do not use this file.
19093 (SIGN_EXTEND_CHAR):
19094 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
19095 * unexmips.c: Remove file, unused.
19096
19097 * editfns.c (Fuser_full_name): Replace the only use of
19098 USER_FULL_NAME with its value.
19099 * config.in: Regenerate.
19100
19101 2008-07-16 David Reitter <david.reitter@gmail.com>
19102
19103 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
19104 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
19105
19106 2008-07-16 Glenn Morris <rgm@gnu.org>
19107
19108 * emacs.c (system-type): Doc fix.
19109
19110 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
19111
19112 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
19113 If the cache doesn't work, let's fix it, rather than work around it.
19114
19115 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
19116
19117 * Makefile.in: Correct additions for nsfont.o in last commit.
19118 * nsfont.m: New file (forgot last commit).
19119
19120 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
19121
19122 * callproc.c (set_initial_environment):
19123 Initialize Vprocess_environment under CANNOT_DUMP (fixes crash when
19124 batch-compiling for bootstrap).
19125
19126 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
19127 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19128
19129 * frame.c (make_initial_frame): Call init_frame_faces(f) in
19130 CANNOT_DUMP case -- fix crash due to different init order.
19131
19132 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
19133
19134 Changes and additions for NeXTstep windowing system (Cocoa and
19135 GNUstep) support.
19136
19137 * Makefile.in:
19138 * config.in: Support defines and build commands for NS port.
19139 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
19140 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
19141 * dispextern.h: Include nsgui.h and add needed typedefs under NS
19142 windowing.
19143 (struct face): Add synth_ital field.
19144 * dispnew.c: Include nsterm.h when compiling under NS windowing.
19145 (init_display): Initialize Vinitial_window_system to "ns" when so
19146 compiled.
19147 * emacs.c: Include GSConfig.h when compiling under GNUstep.
19148 (display_arg): Use under NS.
19149 (main): Under NS, allocate autorelease pool and handle command line
19150 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
19151 (standard_args): Add NS-specific args.
19152 (shut_down_emacs): Shut down NS terminal if compiled under NS.
19153 * font.c (DEFAULT_ENCODING): New variable.
19154 (font_find_for_lface): Use it.
19155 (syms_of_font): Load syms_of_nsfont under NS.
19156 * font.h: Declare nsfont_driver when compiled under NS.
19157 * fontset.c: When compiling under NS, include nsterm.h.
19158 (fontset_from_font): Autoconstruct fontset under NS.
19159 * frame.c (various): Under NS, include nsterm.h, add Qns window system
19160 symbol, document and use it.
19161 (do_switch_frame): When for_deletion under Cocoa, add
19162 Fraise_frame(Qnil).
19163 (x_set_frame_parameters): Ensure font attribute changes are picked up.
19164 (x_get_arg): Allow "yes" and "no" as boolean values.
19165 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
19166 Qright under Cocoa.
19167 (focus-follows-mouse): Default to 0 under NS.
19168 * frame.h (enum output_method): Add output_ns.
19169 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
19170 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
19171 (FRAME_WINDOW_P): NS-specific definition.
19172 * fringe.c (max_used_fringe_bitmap): Make public.
19173 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
19174 (getloadavg): Use NeXT code under descendant OS's.
19175 * image.c (includes and header section, x_create_bitmap_from_data)
19176 (x_create_bitmap_from_file, free_bitmap_record, image_background)
19177 (image_background_transparent, x_clear_image_1)
19178 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
19179 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
19180 (x_to_xcolors, x_from_xcolors, x_disable_image)
19181 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
19182 other GUIs, including XPM support using code originally written for
19183 Carbon GUI.
19184 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
19185 using NS API.
19186 (image_ascent): Use font metrics macros instead of direct struct field
19187 access.
19188 * keyboard.c (includes): Add nsterm.h when compiling under NS.
19189 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
19190 Also, handle NS as GTK for menu bar purposes.
19191 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
19192 toolkit where they differ.
19193 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
19194 use cachelist, still needed under NS.
19195 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
19196 (struct widget_value): Define it here for menu.c.
19197 * keymap.c (includes): Include modifier internals.
19198 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
19199 NS.
19200 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
19201 support for preferring sequences using certain modifiers, specified by
19202 the FIRSTONLY argument.
19203 * lisp.h (hash_remove): Rename to avoid name clash when compiling
19204 under NS GNUstep implementation.
19205 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
19206 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
19207 * menu.c: Include nsterm.h under NS.
19208 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
19209 (free_menubar_widget_tree_value, update_submenu_strings)
19210 (find_and_call_menu_selection): Treat NS as X and NT.
19211 (find_and_return_menu_selection): New function, used for popup menus.
19212 * nsgui.h:
19213 * nsterm.h:
19214 * nsfns.m:
19215 * nsimage.m:
19216 * nsmenu.m:
19217 * nsselect.m:
19218 * nsterm.m: New files.
19219 * process.c (wait_reading_process_output): Under NS, call ns_select()
19220 instead of plain select().
19221 * syntax.c (char_quoted): Under NS, avoid a crash when called near
19222 beginning of buffer.
19223 * sysselect.h (init_process): Rename when compiling under Cocoa to
19224 avoid name conflict.
19225 * termhooks.h (display_info): Add ns_display_info to union.
19226 * terminal.c (Fterminal_live_p): Add ns to terminal types.
19227 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
19228 COCOA environment.
19229 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
19230 unexec() signature. (Note, this will dump, but the resulting file
19231 crashes; unexosx is used instead; keeping around for reference and
19232 possible aid in getting dump working under GNUstep.)
19233 * w32gui.h (button_type, widget_value): Remove definitions (now in
19234 keyboard.h).
19235 * window.c: Include nsterm.h when compiling under NS.
19236 * xdisp.c (includes): Include nsterm.h when compiling under NS.
19237 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
19238 other GUI windowing systems.
19239 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
19240 GTK.
19241 (x_consider_frame_title): Under NS, set icon type and frame
19242 modified-state indicator; use ns_set_name_as_filename() when using
19243 formatted title.
19244 (update_window_cursor): Make public when compiling under NS.
19245 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
19246 (hourglass_atimer, Vhourglass_delay
19247 * xfaces.c (header section, init_frame_faces, clear_font_table)
19248 (defined_color, unload_color, x_face_list_fonts)
19249 (prepare_face_for_display): Add NS support parallel to other GUIs.
19250 Emulate GCs like other non-X GUIs.
19251 (split_font_name): Don't lowercase font name under NS.
19252 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
19253 under NS.
19254 * s/darwin.h: Add support for compilation under NS.
19255
19256 2008-07-15 Jason Rumney <jasonr@gnu.org>
19257
19258 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
19259 (w32_show_hourglass): Rename from show_hourglass.
19260 (w32_hide_hourglass): Rename from hide_hourglass.
19261 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
19262 (Vhourglass_delay): Declare extern.
19263 (hourglass_started): Remove.
19264
19265 * xdisp.c (Vhourglass_delay): Remove static.
19266 (hourglass_started, start_hourglass, cancel_hourglass):
19267 Don't include these versions on WINDOWSNT.
19268
19269 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
19270
19271 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
19272 variables (formerly in xfns.c).
19273 (show_hourglass, hide_hourglass): New prototypes (same).
19274 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
19275 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
19276 in xfns.c).
19277 (syms_of_xdisp): Declare/initialize display-hourglass,
19278 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
19279 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
19280 formerly in xfns.c.
19281 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
19282 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
19283 (start_hourglass, cancel_hourglass): Remove.
19284 (show_hourglass, hide_hourglass): Remove prototypes and static
19285 modifiers.
19286 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
19287 hourglass_atimer, hourglass_shown_p declaration/initialization.
19288 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
19289 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
19290 (start_hourglass, cancel_hourglass): Remove.
19291 (show_hourglass, hide_hourglass): Remove prototypes and static
19292 modifiers.
19293 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
19294 hourglass_atimer, hourglass_shown_p declaration/initialization.
19295 * w32fns.c (display_hourglass_p, Vhourglass_delay)
19296 (DEFAULT_HOURGLASS_DELAY): Remove.
19297 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
19298 hourglass_shown_p declaration/initialization.
19299
19300 2008-07-14 Jason Rumney <jasonr@gnu.org>
19301
19302 * w32fns.c (w32_get_arg): Remove wrapper function.
19303 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
19304 directly.
19305 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
19306
19307 2008-07-14 Kenichi Handa <handa@m17n.org>
19308
19309 * xfont.c (xfont_open): Add workaround for X's bug.
19310
19311 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
19312
19313 * fontset.c: Include <stdio.h> unconditionally.
19314
19315 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
19316
19317 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
19318 for filtering.
19319
19320 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
19321
19322 * s/vms.h: Use __GNUC__ instead of _GNUC_.
19323
19324 * m/macppc.h:
19325 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
19326
19327 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default.
19328 (SPECIAL_EMACS_INT):
19329 * m/ia64.h (SPECIAL_EMACS_INT):
19330 * m/amdx86-64.h (SPECIAL_EMACS_INT):
19331 * s/gnu.h (NLIST_STRUCT):
19332 * s/aix4-2.h (X11R5_INHIBIT_I18N):
19333 * s/gnu-linux.h (LINUX):
19334 * s/msdos.h (HAVE_FACES):
19335 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
19336
19337 * systty.h:
19338 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
19339 anymore.
19340
19341 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
19342
19343 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
19344 always defined as int.
19345
19346 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
19347 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
19348 * s/gnu-linux.h (HAVE_WAIT_HEADER):
19349 * s/freebsd.h (HAVE_WAIT_HEADER):
19350 * s/bsd-common.h (HAVE_UNION_WAIT):
19351 * s/aix4-2.h (HAVE_WAIT_HEADER):
19352 * m/mips.h (HAVE_UNION_WAIT):
19353 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
19354 (COFF, static): Do not define, they are undefined later in the file.
19355
19356 * process.c (update_status): Don't use a union.
19357 (status_convert):
19358 (sigchld_handler): Use int instead of WAITTYPE.
19359
19360 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
19361
19362 * indent.c (Fvertical_motion): Restore hscroll before moving to
19363 goal column.
19364
19365 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
19366
19367 * lisp.h: Remove left over code.
19368
19369 2008-07-11 Andreas Schwab <schwab@suse.de>
19370
19371 * lisp.h: Fix logic in last change.
19372
19373 * menu.h: New file.
19374 * menu.c: Include it.
19375 * xmenu.c: Likewise.
19376 * Makefile.in: Update dependencies.
19377
19378 2008-07-11 Kenichi Handa <handa@m17n.org>
19379
19380 * fontset.c (fontset_from_font): Cancel the previous change.
19381
19382 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
19383
19384 * lisp.h:
19385 * w32heap.c:
19386 * emacs.c:
19387 * alloc.c: Replace all references of NO_UNION_TYPE with
19388 USE_LISP_UNION_TYPE.
19389
19390 * m/xtensa.h (NO_UNION_TYPE):
19391 * m/vax.h (NO_UNION_TYPE):
19392 * m/template.h (NO_UNION_TYPE):
19393 * m/sparc.h (NO_UNION_TYPE):
19394 * m/mips.h (NO_UNION_TYPE):
19395 * m/macppc.h (NO_UNION_TYPE):
19396 * m/m68k.h (NO_UNION_TYPE):
19397 * m/iris4d.h (NO_UNION_TYPE):
19398 * m/intel386.h (NO_UNION_TYPE):
19399 * m/ibms390x.h (NO_UNION_TYPE):
19400 * m/ibms390.h (NO_UNION_TYPE):
19401 * m/ibmrs6000.h (NO_UNION_TYPE):
19402 * m/ia64.h (NO_UNION_TYPE):
19403 * m/hp800.h (NO_UNION_TYPE):
19404 * m/arm.h (NO_UNION_TYPE):
19405 * m/amdx86-64.h (NO_UNION_TYPE):
19406 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
19407 defining it the same.
19408
19409 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
19410
19411 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
19412
19413 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
19414
19415 * fileio.c:
19416 * sysdep.c:
19417 * systty.h:
19418 * m/ibmrs6000.h:
19419 * m/iris4d.h:
19420 * s/aix4-2.h:
19421 * s/freebsd.h:
19422 * s/gnu-linux.h:
19423 * s/hpux10-20.h:
19424 * s/hpux11.h:
19425 * s/netbsd.h:
19426 * s/sol2-3.h:
19427 * s/sol2-4.h:
19428 * s/sol2.h:
19429 * s/usg5-4.h:
19430 * s/vms.h: Remove references to unused variables.
19431
19432 2008-07-10 Andreas Schwab <schwab@suse.de>
19433
19434 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
19435 pattern before matching the generic family.
19436
19437 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
19438
19439 * unexec.c:
19440 * s/vms.h:
19441 * s/usg5-4-2.h:
19442 * s/sol2-5.h:
19443 * s/freebsd.h:
19444 * s/darwin.h: Remove dead code.
19445
19446 * m/template.h:
19447 * m/sparc.h:
19448 * m/mips.h:
19449 * m/m68k.h:
19450 * m/iris4d.h:
19451 * m/intel386.h:
19452 * m/ibms390x.h:
19453 * m/ibms390.h:
19454 * m/ia64.h:
19455 * m/hp800.h:
19456 * m/arm.h:
19457 * m/amdx86-64.h: Remove dead code and references to unused
19458 and compiler defined symbols.
19459
19460 * unexmips.c:
19461 * unexelf.c: Remove references to desupported systems.
19462
19463 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
19464
19465 * m/powermac.h: Remove boilerplate comments.
19466 (NO_REMAP): Remove unused definition.
19467
19468 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
19469 define them.
19470
19471 2008-07-10 Kenichi Handa <handa@m17n.org>
19472
19473 * xfont.c (xfont_open): Log the reason of failure.
19474
19475 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
19476
19477 * fontset.c (fontset_get_font_group):
19478 * font.c (font_check_otf): Specify argument types.
19479
19480 2008-07-09 Kenichi Handa <handa@m17n.org>
19481
19482 * coding.c (detect_coding_utf_8): Set detect_info->found only when
19483 non-ASCII char is found.
19484
19485 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
19486 (reorder_font_vector): Change the arg preferred_family to font.
19487 Prefer the spec matching with font.
19488 (fontset_get_font_group): New function.
19489 (fontset_find_font): Change the format of an element of a realized
19490 fontset. Use fontset_get_font_group.
19491 (fontset_font): Try the current fontset, the default fontset, the
19492 fallbacks of the current fontset, and the fallbacks of the default
19493 fontset in this order.
19494 (face_for_char): Delete the shortcut to use the current font.
19495 (fontset_from_font): Don't set fonts for Latin in the fontset.
19496
19497 * font.h (font_make_object, font_match_p): Adjust prototypes.
19498
19499 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
19500
19501 * font.c (font_make_object): New arg entity and pixelsize.
19502 (font_check_otf_features, font_check_otf): New functions.
19503 (font_match_p): Check :lang, :script, and :otf properties.
19504
19505 * xfont.c (xfont_open): Adjust it for the change of
19506 font_make_object.
19507 (xfont_text_extents): Fix initial setting of metrics.
19508
19509 * ftfont.c (struct ftfont_info): New member index, delete member
19510 fc_charset_idx. Make the member order compatible with struct
19511 xftfont_info.
19512 (fc_charset_table): Change charset names to registry names.
19513 (ftfont_pattern_entity): Delete the args registry and
19514 fc_charset_idx. Change the value of :font-entity property
19515 to (FONTNAME . INDEX). Always set :registry property to
19516 `iso10646-1'.
19517 (struct ftfont_cache_data): New struct.
19518 (ftfont_lookup_cache): New arg for_face.
19519 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
19520 (ftfont_driver): Set the member otf_capability.
19521 (ftfont_get_charset): Adjust it for the change of
19522 fc_charset_table.
19523 (OTF_TAG_SYM): New macro.
19524 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
19525 for the change of fc_charset_table.
19526 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
19527 ftfont_pattern_entity. Add FC_INDEX to objset.
19528 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
19529 and ftfont_pattern_entity.
19530 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
19531 font_make_object, struct ftfont_info.
19532 (ftfont_has_char): Use ftfont_get_fc_charset.
19533 (ftfont_otf_features, ftfont_otf_capability): New functions.
19534 (ftfont_shape): Use ftfont_get_otf.
19535 (ftfont_text_extents): Fix initial setting of metrics.
19536
19537 * xftfont.c (struct xftfont_info): New member ft_size. Make the
19538 member order compatible with struct ftfont_info.
19539 (xftfont_open): Add FC_CHARSET to the pattern.
19540 Set xftfont_info->ft_size. Don't unlock the face. Check BDF
19541 properties if appropriate.
19542 (xftfont_close): Unlock the face.
19543 (xftfont_anchor_point, xftfont_shape): Deleted.
19544 (syms_of_xftfont): Don't set members anchor_point and shape of
19545 xftfont_driver.
19546
19547 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
19548 font_make_object.
19549
19550 * w32font.c (w32font_open): Adjust it for the change of
19551 font_make_object.
19552 (w32font_open_internal): Don't set properties of font_object here.
19553
19554 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
19555
19556 * macfns.c (x_create_tip_frame):
19557 * w32fns.c (x_create_tip_frame):
19558 * xfns.c (x_create_tip_frame): Pass parameter argument to
19559 face-set-after-frame-default.
19560
19561 * xfaces.c (Finternal_merge_in_global_face): Save merged
19562 attributes for the default face back into the face vector.
19563
19564 2008-07-08 Andreas Schwab <schwab@suse.de>
19565
19566 * fontset.h: Declare fontset_from_font. Don't declare
19567 new_fontset_from_font and fontset_from_font_name.
19568 * xterm.c: Include "fontset.h".
19569 * Makefile.in (xterm.o): Update dependencies.
19570
19571 2008-07-08 Glenn Morris <rgm@gnu.org>
19572
19573 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
19574 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
19575
19576 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
19577
19578 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
19579 (x_set_frame_parameters): Don't bind it.
19580
19581 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
19582
19583 * w32fns.c (map_w32_filename): Declare extern.
19584
19585 2008-07-07 Jason Rumney <jasonr@gnu.org>
19586
19587 * w32term.c (WS_EX_LAYERED): Define if not already.
19588
19589 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
19590
19591 * xfaces.c (set_font_frame_param): Don't try to set the font
19592 parameter if it is still unspecified in the lface.
19593
19594 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
19595
19596 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
19597 face if it didn't already exist.
19598
19599 * xdisp.c (try_window_id): Give up if word-wrapping is on.
19600
19601 2008-07-05 Andreas Schwab <schwab@suse.de>
19602
19603 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
19604
19605 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
19606
19607 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
19608 word-wrapping.
19609 (IT_DISPLAYING_WHITESPACE): New macro.
19610 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
19611 when word-wrapping. Simplify word-wrapping logic. Use correct
19612 pixel positions when saving copies of the iterator.
19613 (display_line): Use proper wrap point if the last character on a
19614 line was preceded by whitespace.
19615
19616 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19617
19618 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
19619
19620 2008-07-04 Kenichi Handa <handa@m17n.org>
19621
19622 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
19623
19624 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
19625
19626 2008-07-02 Jason Rumney <jasonr@gnu.org>
19627
19628 * xfns.c (syms_of_xfns): Only define x-select-font when both
19629 HAVE_FREETYPE and USE_GTK.
19630
19631 * xdisp.c (next_element_from_display_vector): Move assignment out
19632 of if statement.
19633
19634 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
19635
19636 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
19637
19638 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
19639 (syms_of_fileio): Initialize and export them.
19640 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
19641
19642 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
19643 (Fsystem_move_file_to_trash): New function.
19644 (syms_of_w32fns): Export it to lisp.
19645
19646 2008-07-01 Jason Rumney <jasonr@gnu.org>
19647
19648 * w32font.c (w32font_text_extents): Don't count overhang as part
19649 of width.
19650
19651 2008-06-30 Miles Bader <miles@gnu.org>
19652
19653 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
19654 Add `avoid_cursor_p' field.
19655
19656 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
19657 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
19658 (append_glyph, append_composite_glyph, produce_image_glyph)
19659 (append_stretch_glyph): Initialize avoid_cursor_p.
19660 (get_it_property): Rename from `get_line_height_property'.
19661 (x_produce_glyphs): Use get_it_property.
19662 (handle_line_prefix, push_display_prop): New functions.
19663 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
19664 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
19665 New variables.
19666 (syms_of_xdisp): Initialize them.
19667
19668 2008-06-30 Kenichi Handa <handa@m17n.org>
19669
19670 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
19671 XftDefaultSubstitute (they are called in XftFontMatch).
19672 (xftfont_open): Fix args to ftfont_font_format.
19673
19674 * ftfont.c (fc_charset_table): New member lang.
19675 (ftfont_resolve_generic_family): New arg pattern.
19676 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
19677 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
19678 (ftfont_open): Fix args to ftfont_font_format.
19679 (ftfont_font_format): New arg filename.
19680
19681 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
19682
19683 * xfaces.c (Finternal_merge_in_global_face): If default face was
19684 modified, realize it again. Update the font face attribute.
19685
19686 2008-06-29 Jason Rumney <jasonr@gnu.org>
19687
19688 * w32term.c (x_set_frame_alpha): Fix logic.
19689
19690 2008-06-29 Kenichi Handa <handa@m17n.org>
19691
19692 * fontset.c (Finternal_char_font): Return font-object instead of
19693 font-name.
19694
19695 * composite.c (get_composition_id): Fix the width calculation for TAB.
19696
19697 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
19698
19699 * indent.c (Fvertical_motion): Properly handle float column arg.
19700
19701 2008-06-28 Jason Rumney <jasonr@gnu.org>
19702
19703 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
19704 (pfnSetLayeredWindowAttributes): New function pointer.
19705 (w32_initialize): Initialize it when supported.
19706 (x_set_frame_alpha): New function.
19707
19708 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
19709 (w32_frame_parm_handlers): Set alpha handler.
19710
19711 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
19712
19713 2008-06-27 Jason Rumney <jasonr@gnu.org>
19714
19715 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
19716 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
19717 (w32_to_x_charset, x_to_w32_charset)
19718 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
19719 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
19720 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
19721 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
19722 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
19723 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
19724 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
19725 (Qw32_charset_unicode): Remove.
19726 (syms_of_w32fns): Update for above changes.
19727
19728 * w32font.c (w32_to_x_charset, x_to_w32_charset)
19729 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
19730 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
19731 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
19732 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
19733 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
19734 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
19735 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
19736 (syms_of_w32font): Update for above changes.
19737
19738 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
19739
19740 * s/usg5-4.h: Fix previous change: keep the correct branch of a
19741 removed #if.
19742 (USG_SHARED_LIBRARIES): Remove duplicate definition.
19743
19744 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
19745 Eli Zaretskii <eliz@gnu.org>
19746
19747 * makefile.w32-in (LOCAL_FLAGS):
19748 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
19749
19750 * sysdep.c (_spawnlp, _getpid):
19751 Declare with explicit _cdecl instead of _CRTAPI1.
19752
19753 * editfns.c (Fget_internal_run_time):
19754 Check for WINDOWSNT with #ifdef, not #if.
19755
19756 2008-06-26 Jason Rumney <jasonr@gnu.org>
19757
19758 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
19759
19760 * w32term.c (x_draw_glyph_string_foreground)
19761 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
19762 Use FONT_HANDLE macro.
19763 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
19764
19765 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
19766 (uniscribe_encode_char): Use FONT_HANDLE macro.
19767
19768 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
19769 (w32font_text_extents): Use precast w32_font.
19770 (w32font_close): Free cached metrics.
19771 (w32font_open_internal): Allocate space for name on stack.
19772
19773 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
19774
19775 * xdisp.c (extend_face_to_end_of_line): Fix last change.
19776
19777 2008-06-26 Jason Rumney <jasonr@gnu.org>
19778
19779 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
19780 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
19781
19782 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
19783
19784 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
19785
19786 2008-06-26 Jason Rumney <jasonr@gnu.org>
19787
19788 * w32bdf.c, w32bdf.h: Remove obsolete files.
19789
19790 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
19791
19792 * w32gui.h: Don't include w32bdf.h.
19793 (XCharStruct, enum w32_char_font_type, W32FontStruct):
19794 Remove obsolete font support.
19795
19796 * w32font.h (struct w32font_info): Remove compat_w32_font.
19797 Add hfont member.
19798 (FONT_COMPAT): Remove obsolete macro.
19799
19800 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
19801 (w32font_encode_char, w32font_text_extents): Use new hfont member.
19802 (w32font_open_internal): Remove compat code. Set new hfont member.
19803 (Fx_select_font): Use new hfont member.
19804
19805 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
19806 (uniscribe_encode_char): Use new hfont member.
19807
19808 * w32term.c (x_draw_glyph_string_foreground)
19809 (x_draw_composite_glyph_string_foreground): Use new hfont member.
19810 (x_draw_glyph_string): Use metrics in w32font_info.
19811
19812 2008-06-26 Kenichi Handa <handa@m17n.org>
19813
19814 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
19815
19816 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
19817
19818 * unexnext.c:
19819 * m/ews4800.h:
19820 * m/hp9000s300.h:
19821 * m/ibm370aix.h:
19822 * m/mips-siemens.h:
19823 * m/ncr386.h:
19824 * m/next.h:
19825 * m/pmax.h:
19826 * m/powerpcle.h:
19827 * m/tandem-s2.h:
19828 * s/386bsd.h:
19829 * s/bsd386.h:
19830 * s/bsd4-1.h:
19831 * s/bsd4-2.h:
19832 * s/bsdos2-1.h:
19833 * s/bsdos2.h:
19834 * s/bsdos3.h:
19835 * s/bsdos4.h:
19836 * s/nextstep.h:
19837 * s/ultrix4-3.h:
19838 * s/usg5-0.h:
19839 * s/usg5-2-2.h:
19840 * s/usg5-2.h:
19841 * s/usg5-4-3.h:
19842 * s/ux4800.h:
19843 * s/uxpds.h:
19844 * s/uxpv.h: Remove support for obsolete systems.
19845 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
19846 Remove, insert contents in s/hpux10-20.h.
19847 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
19848 Remove, insert contents in s/aix4-2.h.
19849 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
19850 * s/bsd4-3.h: Rename to ...
19851 * s/bsd-common.h: ... this.
19852 * data.c:
19853 * doc.c:
19854 * ecrt0.c:
19855 * emacs.c:
19856 * fileio.c:
19857 * floatfns.c:
19858 * keyboard.c:
19859 * mem-limits.h:
19860 * print.c:
19861 * process.c:
19862 * sysdep.c:
19863 * syssignal.h:
19864 * systty.h:
19865 * syswait.h:
19866 * term.c:
19867 * unexec.c:
19868 * unexelf.c:
19869 * unexhp9k800.c:
19870 * m/hp800.h:
19871 * m/ibmrs6000.h:
19872 * m/mips.h:
19873 * m/vax.h:
19874 * s/darwin.h:
19875 * s/freebsd.h:
19876 * s/gnu.h:
19877 * s/ms-w32.h:
19878 * s/msdos.h:
19879 * s/netbsd.h:
19880 * s/template.h: Remove references to obsolete variables.
19881
19882 * Makefile.in: Add dependencies for all unexec files.
19883 (admindir): Remove unused variable.
19884 (UNEXEC_SRC): Remove references.
19885
19886 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
19887
19888 * xfns.c (x_default_font_parameter): If Xft is available, first
19889 try Monospace-12 for the default font.
19890
19891 2008-06-25 Jason Rumney <jasonr@gnu.org>
19892
19893 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
19894
19895 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
19896
19897 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
19898
19899 * buffer.c (syms_of_buffer): Remove default-word-wrap.
19900
19901 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
19902
19903 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
19904 <scroll-conservatively>: Fix typo in docstring.
19905
19906 * xselect.c (Fx_send_client_event): Doc fix.
19907
19908 2008-06-25 Kenichi Handa <handa@m17n.org>
19909
19910 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
19911
19912 * font.c (font_parse_fcname): Remove unused variables.
19913 (font_sort_entites): Delete the arg SPEC. Caller changed.
19914 Fix for the case of ! best_only.
19915 (font_delete_unmatched): Check DPI and AVGWIDTH too.
19916
19917 * lisp.h (Fstring_to_unibyte): EXFUN it.
19918
19919 * character.h (str_to_unibyte): Extern it.
19920
19921 * character.c (str_to_unibyte): New function.
19922
19923 * fns.c (Fstring_to_unibyte): New function.
19924 (syms_of_fns): Defsubr it.
19925
19926 2008-06-24 Kenichi Handa <handa@m17n.org>
19927
19928 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
19929 DPI too.
19930 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
19931
19932 2008-06-24 Andreas Schwab <schwab@suse.de>
19933
19934 * Makefile.in (${lispsource}loaddefs.el): Rename from
19935 ../lisp/loaddefs.el.
19936 (bootstrap-clean): Do what distclean does but don't remove
19937 Makefile.
19938 (distclean): Depend on bootstrap-clean and remove Makefile.
19939
19940 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
19941
19942 * buffer.h (struct buffer): New member word_wrap.
19943
19944 * buffer.c (syms_of_buffer): New variables default-word-wrap and
19945 word-wrap.
19946 (init_buffer_once): Initialize them.
19947
19948 * dispextern.h (struct it): Replace bool truncate_lines_p with a
19949 line_wrap enum possessing three possible values.
19950
19951 * termopts.h: Replace truncate_partial_width_windows with
19952 Vtruncate_partial_width_windows.
19953
19954 * dispnew.c (direct_output_for_insert): Avoid direct output when
19955 inserting a space with word wrap on.
19956
19957 * indent.c (compute_motion): Obey integer values of
19958 truncate-partial-width-windows.
19959
19960 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
19961 replacing truncate_partial_width_windows.
19962 (init_iterator): If Vtruncate_partial_width_windows is an integer,
19963 truncate only if the window width is below that integer.
19964 (start_display, resize_mini_window, produce_stretch_glyph)
19965 (display_string, move_it_in_display_line_to): Use line_wrap.
19966 (back_to_previous_visible_line_start, reseat_1):
19967 Reset string_from_display_prop_p.
19968 (display_line): Extend default face to end of line when wrapping.
19969
19970 2008-06-24 Kim F. Storm <storm@cua.dk>
19971
19972 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
19973 to wrap continued lines at word boundaries.
19974
19975 2008-06-24 Jason Rumney <jasonr@gnu.org>
19976
19977 * font.c (Ffont_face_attributes): Multiply pixel size before point
19978 conversion to avoid multiplying rounding error.
19979
19980 2008-06-23 Jason Rumney <jasonr@gnu.org>
19981
19982 * w32term.c (x_draw_glyph_string_background)
19983 (x_draw_glyph_string): Remove old bdf font code.
19984
19985 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
19986
19987 2008-06-22 Kenichi Handa <handa@m17n.org>
19988
19989 * font.c (font_find_for_lface): Try the adstyle specified in
19990 the property of LFACE_FONT of LFACE (if any).
19991
19992 2008-06-21 Seiji Zenitani <zenitani@mac.com>
19993 Ryo Yoshitake <ryo@shiftmode.net>
19994
19995 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
19996
19997 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
19998
19999 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
20000 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
20001 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
20002 (witness-emacs): Remove.
20003 (lisp, shortlisp): Move loaddefs.el earlier.
20004 (mostlyclean): Forget about witness-emacs.
20005
20006 2008-06-22 Glenn Morris <rgm@gnu.org>
20007
20008 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
20009 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
20010
20011 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20012
20013 * Makefile.in (PRECOMP): Remove.
20014 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
20015 (witness-emacs): Run `compile-first'.
20016 (.el.elc): Use the new compile-onefile target.
20017
20018 2008-06-21 Kenichi Handa <handa@m17n.org>
20019
20020 * xftfont.c (xftfont_open): Handle QCembolden only when
20021 FC_EMBOLDEN is defined.
20022
20023 2008-06-21 Andreas Schwab <schwab@suse.de>
20024
20025 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
20026 (.el.elc): Likewise.
20027
20028 2008-06-21 Miles Bader <miles@gnu.org>
20029
20030 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
20031 build dir, not the lisp source dir.
20032
20033 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20034
20035 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
20036 (bootstrapclean): Remove.
20037 (.el.elc): New rule.
20038 (PRECOMP): New var.
20039 (../lisp/subdirs.el): Remove.
20040 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
20041 (witness-emacs): New target.
20042 (mostlyclean): Remove witness-emacs as well.
20043 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
20044 Add witness-emacs dependency.
20045
20046 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
20047
20048 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
20049 defined by the font.
20050
20051 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
20052
20053 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
20054 (bootstrap-clean): New target that keeps TAGS around.
20055 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
20056 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
20057
20058 2008-06-20 Jason Rumney <jasonr@gnu.org>
20059
20060 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
20061 Remove obsolete font code.
20062
20063 * w32font.c (font_matches_spec): Use csb bitfield from font signature
20064 to determine language support.
20065
20066 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
20067
20068 * sysdep.c (cfsetspeed): New fun extracted from the code.
20069 (cfmakeraw): Move before first use.
20070
20071 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
20072
20073 * sysdep.c (cfmakeraw): Provide fallback implementation.
20074 (serial_configure): Provide fallback implementation of cfsetspeed.
20075
20076 2008-06-20 Kenichi Handa <handa@m17n.org>
20077
20078 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
20079 the pattern.
20080
20081 * fontset.c (fontset_from_font): Copy font_spec before changing
20082 the elements.
20083
20084 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
20085
20086 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
20087
20088 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
20089 for explicit `font' parameters.
20090
20091 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
20092
20093 2008-06-19 Kenichi Handa <handa@m17n.org>
20094
20095 * frame.c: Include <ctype.h>.
20096 (x_set_font_backend): Allow spacing characters in the X resource
20097 for FontBackend.
20098
20099 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
20100
20101 * w32fns.c, xfns.c (Qfont_param): New var.
20102 (syms_of_w32fns): Initialize it.
20103 (x_default_font_parameter): Record explicit `font' into
20104 `font-parameter'.
20105
20106 2008-06-18 Kenichi Handa <handa@m17n.org>
20107
20108 * font.c (font_parse_xlfd): Fix previous change.
20109 (font_parse_fcname): Don't use :fc-unknown-spec.
20110 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
20111 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
20112 (font_add_log): Prepend the driver name to the resulting fonts.
20113
20114 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
20115 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
20116 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
20117
20118 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
20119 (QCembolden): New variables.
20120 (syms_of_xftfont): DEFSYM them.
20121 (xftfont_open): Call XftFontMatch. Don't trust the result of
20122 XftTextExtents8 if the pixel_size is less than 5.
20123
20124 2008-06-18 Andreas Schwab <schwab@suse.de>
20125
20126 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
20127 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
20128
20129 2008-06-18 Jason Rumney <jasonr@gnu.org>
20130
20131 * w32font.c (w32font_list, w32font_match): Add logging.
20132
20133 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
20134
20135 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
20136
20137 * font.c (font_parse_fcname): Store divider characters for
20138 unknown-spec list. For known key symbols, intern using correct
20139 symbol name.
20140
20141 2008-06-17 Kenichi Handa <handa@m17n.org>
20142
20143 * xfaces.c (realize_default_face): If the frame is not on window
20144 system, set the fontset of face to nil.
20145
20146 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
20147
20148 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
20149
20150 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
20151
20152 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
20153 (build_font_name_from_vector): Delete externs.
20154
20155 * xfaces.c (struct font_name): Don't declare.
20156
20157 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
20158
20159 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
20160
20161 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
20162
20163 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
20164
20165 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
20166
20167 * font.c (Ffont_spec): Fix usage in docstring.
20168 (Ffont_face_attributes): Doc fix.
20169
20170 2008-06-16 Andreas Schwab <schwab@suse.de>
20171
20172 * font.c (Ffont_face_attributes): Fix definition.
20173
20174 2008-06-16 Jason Rumney <jasonr@gnu.org>
20175
20176 * font.h (font_style_symbolic_from_value): Remove.
20177
20178 * font.c (font_style_symbolic_from_value): Remove.
20179 (font_style_symbolic): Revert to pre 2008-06-13 version.
20180
20181 * w32font.c (w32_to_fc_weight): New function.
20182 (w32font_full_name, logfont_to_fcname): Use it.
20183
20184 2008-06-16 Kenichi Handa <handa@m17n.org>
20185
20186 * font.c (font_check_object): Delete it.
20187 (font_clear_cache): Check if a font-object is alive.
20188 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
20189 font-object to nil.
20190 (font_close_object): Don't check FONT_CLOSE_OBJECT.
20191 (font_at): Don't call font_check_object.
20192 (Ffont_get): Return a symbol for :weight, :slant, and :width.
20193
20194 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
20195
20196 * puresize.h (BASE_PURESIZE): Increase to 1230000.
20197
20198 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
20199
20200 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
20201
20202 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
20203
20204 * font.c (font_parse_fcname): Only one decimal point.
20205 (font_unparse_fcname): Handle data in family and foundry indices
20206 as symbols, not strings.
20207 (font_unparse_gtkname, Ffont_face_attributes): New functions.
20208
20209 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
20210
20211 * font.h (font_unparse_gtkname): Add prototype.
20212
20213 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
20214
20215 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
20216
20217 2008-06-15 Andreas Schwab <schwab@suse.de>
20218
20219 * font.c (font_update_drivers): Fix crash when no drivers match.
20220
20221 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20222
20223 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
20224 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
20225
20226 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
20227
20228 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
20229
20230 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
20231
20232 * process.c (Fserial_process_configure, Fprocess_send_eof):
20233 Use EQ to compare Lisp_Objects.
20234
20235 2008-06-13 Jason Rumney <jasonr@gnu.org>
20236
20237 * w32fns.c (Fw32_select_font): Remove old font API function.
20238
20239 * w32font.c (logfont_to_fcname): New function.
20240 (Fx_select_font): New font dialog function compatible with
20241 GTK/fontconfig version.
20242
20243 * font.c (font_style_symbolic_from_value): New function.
20244 (font_style_symbolic): Use it.
20245
20246 * font.h (font_style_symbolic_from_value): Declare new function.
20247
20248 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
20249
20250 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
20251 <font-width-table>: Fix typos in docstrings.
20252
20253 2008-06-13 Daniel Engeler <engeler@gmail.com>
20254
20255 These changes add serial port access.
20256 * process.c: Add HAVE_SERIAL.
20257 (Fdelete_process, Fprocess_status, Fset_process_buffer)
20258 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
20259 (list_processes_1, select_wrapper, Fstop_process)
20260 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
20261 (status_notify): Modify to handle serial processes.
20262 [HAVE_SERIAL] (Fserial_process_configure)
20263 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
20264 New functions.
20265 * process.h (struct Lisp_Process): Add `type'.
20266 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
20267 New functions.
20268 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
20269 serial ports.
20270 (serial_open, serial_configure): New functions.
20271 * w32.h: Add FILE_SERIAL.
20272 (struct _child_process): Add ovl_read, ovl_write.
20273
20274 2008-06-13 Kenichi Handa <handa@m17n.org>
20275
20276 * dispextern.h (enum lface_attribute_index): New member
20277 LFACE_FOUNDRY_INDEX.
20278
20279 * font.c (font_score): Delete arg alternate_families. Check only
20280 weight, slant, width, and size. Ignore the difference of alias
20281 style symbols.
20282 (font_sort_entites): Adjust for the above change. Reflect the
20283 order of font-driver to scores.
20284 (font_list_entities): Don't check alternate_familes here.
20285 (font_clear_prop): Handle foundry.
20286 (font_update_lface): Don't parse "foundry-family" form here.
20287 Handle FONT_FOUNDRY_INDEX.
20288 (font_find_for_lface): Likewise. Handle alternate families here.
20289 If registry is nil, try iso8859-1 and ascii-0.
20290 (font_open_for_lface): Pay attention to size in ENTITY.
20291 (font_open_by_name): Simplify by calling font_load_for_lface.
20292 (free_font_driver_list): Delete it.
20293 (font_update_drivers): Preserve the order of backends.
20294 (syms_of_font): Setting of sort_shift_bits adjusted for the change
20295 of font_score and font_sort_entites.
20296 (font_update_sort_order): Likewise.
20297
20298 * xfaces.c (LFACE_FOUNDRY): New macro.
20299 (check_lface_attrs): Check foundry.
20300 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
20301 (merge_face_vectors): Check foundry.
20302 (merge_face_ref): Likewise.
20303 (Finternal_set_lisp_face_attribute): Likewise.
20304 (x_update_menu_appearance): Likewise.
20305 (Finternal_get_lisp_face_attribute): Likewise.
20306 (lface_hash): Likewise.
20307 (lface_same_font_attributes_p): Likewise.
20308 (x_supports_face_attributes_p): Likewise.
20309 (tty_supports_face_attributes_p): Likewise.
20310 (Finternal_set_alternative_font_family_alist): Intern strings.
20311 (Finternal_set_alternative_font_registry_alist): Downcase strings.
20312 (realize_default_face): Set LFACE_FOUNDRY (lface).
20313
20314 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
20315 font-driver at first.
20316
20317 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
20318
20319 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
20320
20321 * lread.c (Fload): Use xfree, not free on saved_doc_string.
20322
20323 2008-06-12 Jim Meyering <meyering@redhat.com>
20324
20325 Make unexec_free handle NULL the same way free does.
20326 * unexmacosx.c (unexec_free): Ignore a NULL argument.
20327
20328 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
20329
20330 * character.h (CHAR_TO_BYTE_SAFE): New macro.
20331 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
20332 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
20333 (WEAK_ALIAS): Simplify.
20334 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
20335 when searching a unibyte buffer.
20336
20337 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
20338
20339 * xfns.c (Fx_select_font): Rename from x-font-dialog.
20340
20341 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
20342
20343 * w32font.c: Include ctype.h.
20344
20345 2008-06-11 Jason Rumney <jasonr@gnu.org>
20346
20347 * w32font.c (w32font_encode_char): Detect missing glyphs that are
20348 misreported as space.
20349 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
20350 as aliases for registry iso10646-1.
20351
20352 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
20353
20354 * buffer.c (clone_per_buffer_values): Skip `name'.
20355
20356 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
20357
20358 * font.c (font_parse_fcname): Fix last change; accept decimal
20359 points in font size.
20360
20361 2008-06-10 Jason Rumney <jasonr@gnu.org>
20362
20363 * w32uniscribe.c (add_opentype_font_name_to_list):
20364 Skip non unicode fonts.
20365
20366 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
20367
20368 * xfns.c (Fx_font_dialog): New function.
20369
20370 * gtkutil.c (xg_dialog_response_cb): Rename from
20371 xg_file_response_callback.
20372 (pop_down_dialog): Rename from pop_down_file_dialog.
20373 (xg_get_file_name): Callers changed.
20374 (xg_get_font_name): New function.
20375
20376 * gtkutil.h (xg_get_font_name): Insert prototype.
20377
20378 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
20379
20380 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
20381 x_underline_minimum_display_offset.
20382 (syms_of_xdisp): Declare it here rather than in xterm.c.
20383 * dispextern.h (underline_minimum_offset): Declare it.
20384 * w32term.c (x_draw_glyph_string): Use it.
20385 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
20386 (syms_of_xterm): Don't declare it any more.
20387 (x_draw_glyph_string): Adjust to the new name.
20388
20389 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
20390
20391 * xterm.c (x_underline_minimum_display_offset): New var.
20392 (x_draw_glyph_string): Use it.
20393 (syms_of_xterm): Declare it.
20394
20395 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
20396
20397 * font.c (font_parse_fcname): Accept GTK-style font names too.
20398
20399 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
20400
20401 * dired.c (file_name_completion): Don't return t if the match is exact
20402 but with different capitalization.
20403 * minibuf.c (Ftry_completion): Simplify.
20404
20405 * window.c (Vwindow_point_insertion_type): New var.
20406 (set_window_buffer): Use it.
20407 (syms_of_window): Init and export it to Lisp.
20408
20409 2008-06-10 Kenichi Handa <handa@m17n.org>
20410
20411 * font.h (font_intern_prop): Prototype adjusted.
20412
20413 * font.c (font_intern_prop): New arg force_symbol.
20414 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
20415 Adjust for the change of font_intern_prop.
20416
20417 * ftfont.c (ftfont_pattern_entity):
20418 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
20419 (w32_registry):
20420 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
20421 the change of font_intern_prop.
20422
20423 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
20424
20425 * w32menu.c (digest_single_submenu): Declare extern.
20426
20427 2008-06-09 Jason Rumney <jasonr@gnu.org>
20428
20429 * w32term.c (x_make_frame_visible): Use alternate restore flags.
20430
20431 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
20432 (parse_single_submenu): Remove.
20433 (digest_single_submenu): Remove.
20434 (syms_of_w32menu): Don't initialise variables that have moved
20435 to menu.c.
20436 (set_frame_menubar): Sync with version in xmenu.c.
20437 (w32_menu_show): Sync with xmenu_show in xmenu.c.
20438
20439 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
20440 Make static again.
20441
20442 2008-06-09 Jason Rumney <jasonr@gnu.org>
20443
20444 Changes to w32 files related to the move of common menu code
20445 to menu.c on 2008-06-08 by Chong Yidong.
20446
20447 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
20448 defs to w32gui.h.
20449 (single_keymap_panes, push_menu_item, push_menu_pane):
20450 Make globally visible.
20451
20452 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
20453 (local_free, malloc_widget_value, free_widget_value)
20454 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
20455 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
20456 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
20457 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
20458 (menu_items, menu_items_allocated, menu_items_used)
20459 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
20460 (init_menu_items, finish_menu_items, discard_menu_items)
20461 (grow_menu_items, push_submenu_start, push_submenu_end)
20462 (push_left_right_boundary, push_menu_pane, push_menu_item)
20463 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
20464 (free_menubar_widget_tree_value, parse_single_submenu)
20465 (update_submenu_strings): Remove functions.
20466 (xmalloc_widget_value): Remove and declare extern.
20467
20468 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
20469 (OBJ1): Build it.
20470
20471 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
20472 (local_heap, local_alloc, local_free, malloc_widget_value)
20473 (free_widget_value): Define here.
20474
20475 2008-06-09 Kenichi Handa <handa@m17n.org>
20476
20477 * font.h (Qascii_0): Extern it.
20478
20479 * font.c (Qascii_0): New variable.
20480 (syms_of_font): DEFSYM it.
20481 (font_open_by_name): If the registry "iso8859-1" fails, try also
20482 "ascii-0".
20483
20484 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
20485
20486 2008-06-08 Kenichi Handa <handa@m17n.org>
20487
20488 * .gdbinit (xfont): New command.
20489
20490 2008-06-08 Andreas Schwab <schwab@suse.de>
20491
20492 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
20493 * Makefile.in (menu.o): Update dependencies.
20494
20495 * Makefile.in (obj): Always add menu.o.
20496 * emacs.c (main): Always call syms_of_menu.
20497 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
20498
20499 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
20500
20501 * Makefile.in: Compile menu.c.
20502
20503 * lisp.h: Declare syms_of_menu.
20504
20505 * emacs.c (main): Call syms_of_menu.
20506
20507 * keyboard.h: Relocate platform-independent menu definitions from
20508 xmenu.c.
20509
20510 * menu.c: New file. Relocate platform-independent menu
20511 definitions from xmenu.c. Suggested by Adrian Robert.
20512
20513 * xmenu.c: Remove platform-independent menu definitions.
20514 (menu_items, menu_items_inuse, menu_items_allocated)
20515 (menu_items_used, menu_items_n_panes)
20516 (menu_items_submenu_depth): Move to keyboard.h.
20517 (init_menu_items, finish_menu_items, unuse_menu_items)
20518 (discard_menu_items, restore_menu_items, save_menu_items)
20519 (grow_menu_items, push_submenu_start, push_submenu_end)
20520 (push_left_right_boundary, push_menu_pane, push_menu_item)
20521 (keymap_panes, single_keymap_panes, single_menu_item)
20522 (list_of_panes, list_of_items, find_and_call_menu_selection)
20523 (xmalloc_widget_value, free_menubar_widget_value_tree)
20524 (parse_single_submenu, digest_single_submenu)
20525 (update_submenu_strings): Move to menu.c.
20526
20527 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
20528
20529 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
20530
20531 2008-06-06 Miles Bader <miles@gnu.org>
20532
20533 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
20534 face, not frame default.
20535
20536 2008-06-05 Martin Rudalics <rudalics@gmx.at>
20537
20538 * window.c (pop_up_windows, pop_up_frames)
20539 (display_buffer_reuse_frames, Vpop_up_frame_function)
20540 (Vdisplay_buffer_function, Veven_window_heights)
20541 (Vspecial_display_buffer_names, Vspecial_display_regexps)
20542 (Vspecial_display_function, Vsame_window_buffer_names)
20543 (Vsame_window_regexps, split_height_threshold)
20544 (Vsplit_window_preferred_function): Move those vars to window.el.
20545 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
20546 (Fdisplay_buffer): Move those functions to window.el.
20547 (syms_of_window): Remove corresponding declarations.
20548 (display_buffer): New function.
20549 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
20550 * dispnew.c (Flast_nonminibuf_frame): New function.
20551 * buffer.c (Fpop_to_buffer): Move to window.el.
20552
20553 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20554
20555 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
20556
20557 2008-06-05 Kenichi Handa <handa@m17n.org>
20558
20559 * coding.c (detect_coding): Fix previous change.
20560 (detect_coding_system): Likewise.
20561
20562 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20563
20564 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
20565
20566 * keymap.c (Vminibuffer_local_filename_must_match_map):
20567 Rename from Vminibuffer_local_must_match_filename_map.
20568 (syms_of_keymap):
20569 * minibuf.c (Fcompleting_read): Adjust accordingly.
20570 * commands.h: Rename declaration as well.
20571
20572 2008-06-05 Kenichi Handa <handa@m17n.org>
20573
20574 * font.c (Ffont_spec): Don't use font_parse_family_registry for
20575 family name.
20576 (Ffont_put): Likewise.
20577
20578 * fontset.c (fontset_find_font): Call font_open_for_lface with the
20579 current font-spec.
20580
20581 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
20582 is unspecified.
20583
20584 * xfaces.c (realize_x_face): If the font-related face attributes
20585 are the same as those of default face, realize a new fontset from
20586 default->fontset.
20587 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
20588
20589 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20590
20591 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
20592 (move_it_in_display_line): New wrapper.
20593
20594 * window.c (window_scroll_pixel_based_preserve_x)
20595 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
20596 (window_scroll_pixel_based, window_scroll_line_based):
20597 Use them to preserve column positions.
20598 (syms_of_window): Initialize them.
20599
20600 * indent.c (Fvertical_motion): Extend first arg to allow passing an
20601 (HPOS . VPOS) pair.
20602
20603 * dispextern.h (move_it_in_display_line): Declare.
20604
20605 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
20606
20607 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
20608 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
20609 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
20610
20611 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
20612
20613 * window.c (Fset_window_parameter): Doc fix.
20614 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
20615
20616 2008-06-04 Joakim Verona <joakim@verona.se>
20617
20618 * window.h (struct window): Add new member window_parameters.
20619
20620 * window.c (Fwindow_parameters, Fwindow_parameter)
20621 (Fset_window_parameter): New defuns.
20622 (syms_of_window): Defsubr the new defuns.
20623 (make_window): Initialize window_parameters to nil.
20624
20625 2008-06-04 John Paul Wallington <jpw@pobox.com>
20626
20627 * eval.c (Fdefmacro): Doc fix.
20628
20629 2008-06-04 Kenichi Handa <handa@m17n.org>
20630
20631 * coding.c (detect_coding): Fix handling of coding->head_ascii.
20632 Be sure to call setup_coding_system when we find a proper coding system.
20633 (detect_coding_system): Fix handling of coding->head_ascii.
20634
20635 2008-06-03 Andreas Schwab <schwab@suse.de>
20636
20637 * font.c (font_prop_validate_spacing): Fix last change.
20638
20639 2008-06-03 Kenichi Handa <handa@m17n.org>
20640
20641 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
20642 (font_parse_fcname): Fix handling of unknown key.
20643
20644 * xfont.c (xfont_list): Try an alias.
20645
20646 * charset.c (char_charset): Return NULL if the arg charset_list is
20647 specified and C doesn't belong to any of them.
20648
20649 2008-06-02 Chip Coldwell <coldwell@redhat.com>
20650
20651 * font.c (font_pixel_size): Don't take cdr of an integer.
20652
20653 2008-06-02 Jim Meyering <meyering@redhat.com>
20654
20655 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
20656 * alloc.c (xfree): Return right away for a NULL arg.
20657 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
20658 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
20659 * mac.c (create_apple_event_from_event_ref): Likewise.
20660 (create_apple_event_from_drag_ref, cfstring_create_normalized):
20661 Likewise.
20662 * doprnt.c (doprnt1): Likewise.
20663 * frame.c (frame): Likewise.
20664 * keyboard.c (wipe_kboard): Likewise.
20665 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
20666 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
20667 * term.c (tty_default_color_capabilities, maybe_fatal)
20668 (delete_tty): Likewise.
20669 * w16select.c (string): Likewise.
20670 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
20671 * w32bdf.c (w32_free_bdf_font): Likewise.
20672 * w32fns.c (w32_unload_font): Likewise.
20673 * w32font.c (w32font_close): Likewise.
20674 * window.c (size_window): Likewise.
20675 * xselect.c (receive_incremental_selection): Likewise.
20676 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
20677 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
20678 * w32.c (stat): Likewise.
20679
20680 Remove useless if-before-free tests.
20681 * editfns.c (Fset_time_zone_rule): Likewise.
20682 * lread.c (nosuffix): Likewise.
20683 * ralloc.c (get_bloc): Likewise.
20684 * regex.c (reg_free): Likewise.
20685 * xftfont.c (xftfont_open, xftfont_close): Likewise.
20686 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
20687 * xsmfns.c (smc_save_yourself_CB): Likewise.
20688
20689 2008-06-02 Kenichi Handa <handa@m17n.org>
20690
20691 * font.c (font_find_for_lface): Handle float font size.
20692 (font_open_for_lface): Likewise.
20693
20694 * xfaces.c (x_supports_face_attributes_p): Check face->font before
20695 comparing the properties.
20696
20697 2008-06-01 Jason Rumney <jasonr@gnu.org>
20698
20699 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
20700 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
20701 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
20702 Don't add empty script list.
20703 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
20704
20705 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
20706
20707 * Makefile.in (dot, dotdot): Remove, update users.
20708 ".." has been used elsewhere in the file for a long time.
20709 (LIBXT_STATIC): Remove conditional based on unused variable.
20710
20711 2008-06-01 Miles Bader <miles@gnu.org>
20712
20713 * xfaces.c (Vface_remapping_alist): New variable.
20714 (syms_of_xfaces): Initialize it.
20715 (enum named_merge_point_kind): New type.
20716 (struct named_merge_point): Add `named_merge_point_kind' field.
20717 (push_named_merge_point): Make cycle detection respect different
20718 named-merge-point kinds.
20719 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
20720 Remove face-name alias resolution.
20721 (lface_from_face_name): New definition using
20722 `lface_from_face_name_no_resolve'.
20723 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
20724 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
20725 (get_lface_attributes): New definition that layers face-remapping on
20726 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
20727 (lookup_basic_face): New function.
20728 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
20729 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
20730 `get_lface_attributes'.
20731 (face_at_buffer_position): Use `lookup_basic_face' to lookup
20732 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
20733 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
20734
20735 * xdisp.c (init_iterator): Pass base_face_id through
20736 `lookup_basic_face' when we actually use it as a face-id.
20737 (handle_single_display_prop): Use `lookup_basic_face' to lookup
20738 DEFAULT_FACE_ID.
20739
20740 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
20741 lookup the initial face-id.
20742
20743 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
20744
20745 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
20746
20747 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
20748 (Fremove_text_properties): Fix typos in docstrings.
20749
20750 2008-05-31 Kenichi Handa <handa@m17n.org>
20751
20752 * font.c (font_list_entities): Fix the car part of data to be
20753 stored in the cache.
20754
20755 * ftfont.c (ftfont_font_format): Don't use strcasestr.
20756
20757 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20758
20759 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
20760 Add a `test' argument so another predicate than `equal' can be used.
20761 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
20762 (map_char_table): Remove unused vars `c' and `i'.
20763 * lisp.h (Foptimize_char_table): Adjust declaration.
20764 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
20765
20766 2008-05-30 Kenichi Handa <handa@m17n.org>
20767
20768 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
20769 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
20770 defined.
20771
20772 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20773
20774 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
20775 (Fmake_variable_frame_local): Disallow mixing buffer-local and
20776 frame-local settings for the same variable.
20777
20778 2008-05-30 Kenichi Handa <handa@m17n.org>
20779
20780 * fontset.c (Ffont_info): Move to font.c.
20781 (syms_of_fontset): Delete defsubr of Sfont_info.
20782
20783 * font.c (font_style_to_value, font_score): Delete casting of the
20784 args to xstcasecmp.
20785 (register_font_driver): Increment num_font_drivers only when
20786 registering the driver globally.
20787 (Ffont_info): Move from fontset.c. Handle a font object too.
20788 (syms_of_font): Defsubr Sfont_info.
20789
20790 2008-05-29 Kenichi Handa <handa@m17n.org>
20791
20792 * coding.h (enum define_coding_utf8_arg_index): New enum.
20793 (enum coding_attr_index): Change coding_attr_utf_16_bom to
20794 coding_attr_utf_bom.
20795 (enum utf_bom_type): Rename from utf_16_bom_type.
20796 (struct utf_16_spec): Adjust for the above change.
20797 (struct coding_system): Add utf_8_bom in `spec' union.
20798
20799 * coding.c (CODING_UTF_8_BOM): New macro.
20800 (enum coding_category): Delete coding_category_utf_8, add
20801 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
20802 coding_category_utf_8_sig.
20803 (CATEGORY_MASK_UTF_8): Delete it.
20804 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
20805 (CATEGORY_MASK_UTF_8_SIG): New macros.
20806 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
20807 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
20808 CATEGORY_MASK_UTF_8_SIG.
20809 (CATEGORY_MASK_UTF_8): New macro.
20810 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
20811 (detect_coding_utf_8): Check BOM.
20812 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
20813 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
20814 (encode_coding_utf_16): Likewise.
20815 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
20816 (detect_coding, detect_coding_system): Handle utf-8-auto.
20817 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
20818 (syms_of_coding): Fix setting up of Vcoding_category_table.
20819
20820 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
20821
20822 * process.c (Faccept_process_output): If `millisec' is non-nil,
20823 `seconds' default to 0.
20824 (wait_reading_process_output): Also return non-nil if we read output
20825 from a non-running process.
20826
20827 2008-05-29 Jason Rumney <jasonr@gnu.org>
20828
20829 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
20830 `raster' specified.
20831 (add_font_entity_to_list): Allow non-opentype truetype fonts back
20832 in the uniscribe backend, but disallow any font that has no
20833 unicode subrange support.
20834
20835 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
20836
20837 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
20838 Fix typos in docstrings.
20839
20840 2008-05-29 Kenichi Handa <handa@m17n.org>
20841
20842 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
20843 (Fx_family_fonts): Set frame correctly.
20844
20845 2008-05-28 Jason Rumney <jasonr@gnu.org>
20846
20847 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
20848
20849 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
20850
20851 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
20852 calling build_annotations.
20853
20854 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
20855
20856 * coding.c (Fdecode_coding_region, Fencode_coding_region)
20857 (Fencode_coding_string):
20858 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
20859 <latin-extra-code-table>: Fix typos in docstrings.
20860 (syms_of_coding) <coding-system-alist>: Doc fix.
20861 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
20862
20863 2008-05-28 Kenichi Handa <handa@m17n.org>
20864
20865 * fontset.c (Ffont_info): Don't call font_close_object.
20866
20867 * font.c (font_parse_family_registry): Use Ffont_put to validate
20868 foundry and family.
20869 (font_delete_unmatched): Don't check spacing.
20870 (font_list_entities): Add spacing to the spec to list fonts.
20871
20872 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
20873 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
20874
20875 * coding.c (encode_coding_raw_text): Fix previous change.
20876 (encode_coding_object): When the dst_object is a buffer and is
20877 different from src_object, move gap to PT.
20878
20879 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
20880
20881 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
20882
20883 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20884
20885 * coding.c (encode_coding_raw_text): Set coding->produced_char for
20886 all branches. Compute it differently.
20887
20888 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
20889
20890 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
20891
20892 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
20893 into "else if () ... else ...".
20894
20895 2008-05-27 Jason Rumney <jasonr@gnu.org>
20896
20897 * w32font.c (w32font_open_internal): Determine if glyph indices
20898 are likely to work here.
20899
20900 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
20901
20902 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
20903 draw overlap glyphs with appropriate highlighting.
20904
20905 2008-05-27 Kenichi Handa <handa@m17n.org>
20906
20907 * xfont.c (xfont_open): Fix calculation of font->average_width.
20908
20909 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20910
20911 * casefiddle.c (casify_object): Try to guess better whether the
20912 argument is a byte or a char.
20913
20914 2008-05-26 Andreas Schwab <schwab@suse.de>
20915
20916 * xselect.c (x_reply_selection_request): Properly handle format == 32.
20917 Always send multiples of format size.
20918
20919 * xterm.c (x_set_frame_alpha): Fix type mismatch.
20920
20921 2008-05-26 Jason Rumney <jasonr@gnu.org>
20922
20923 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
20924 (compute_metrics): Don't set failure if we just cleared the cache.
20925 (w32_weight_table): Remove unused variable.
20926 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
20927 backwards compatibility.
20928
20929 2008-05-25 Kenichi Handa <handa@m17n.org>
20930
20931 * w32term.c (x_draw_glyph_string):
20932 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
20933
20934 * xfaces.c: Delete unused function prototypes.
20935 (xstrlwr, font_frame): Delete them.
20936 (clear_face_cache): Delete unused variable.
20937
20938 * xftfont.c (xftfont_open): Delete unused variable.
20939 If underline_thickness is not 1, adjust underline_position.
20940
20941 * ftxfont.c (ftxfont_open): Delete unused variable.
20942
20943 * fontset.c (face_for_char): Optimize for the case of no charset
20944 property.
20945
20946 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
20947 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
20948 (otf_open, font_otf_capability, generate_otf_features)
20949 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
20950 Comment out by surrounding "#if 0" and "#endif" for the moment.
20951 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
20952 (syms_of_font): Codes for accessing above commented out.
20953
20954 2008-05-24 Eli Zaretskii <eliz@gnu.org>
20955
20956 * w32proc.c: Include dispextern.h.
20957
20958 * w32.c: Include dispextern.h.
20959
20960 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
20961
20962 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
20963 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
20964 Fix typos in docstrings.
20965
20966 2008-05-23 Jason Rumney <jasonr@gnu.org>
20967
20968 * xsmfns.c: Remove includes that are already included by config.h.
20969
20970 2008-05-23 Kenichi Handa <handa@m17n.org>
20971
20972 * charset.c (Qemacs, charset_emacs): New variables.
20973 (char_charset): Fix for non-Unicode characters.
20974 (syms_of_charset): Define charset_emacs.
20975
20976 * w32term.c (x_draw_glyph_string): Be sure to update
20977 s->underline_thickness and s->underline_position. Be sure to draw
20978 underline within the current line area.
20979
20980 * xterm.c (x_draw_glyph_string): Be sure to update
20981 s->underline_thickness and s->underline_position. Be sure to draw
20982 underline within the current line area.
20983
20984 * fontset.c: Delete unused variables and add casting for char *
20985 throughout the file.
20986 (fontset_font): Try the fallback fonts of the current fontset
20987 before consulting the default fontset.
20988
20989 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
20990
20991 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
20992
20993 2008-05-22 Jason Rumney <jasonr@gnu.org>
20994
20995 * font.c: Don't include strings.h.
20996
20997 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
20998
20999 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
21000 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
21001 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
21002 to call xstrcasecmp.
21003
21004 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
21005
21006 * fontset.c (fs_query_fontset): Use xstrcasecmp.
21007
21008 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
21009
21010 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
21011
21012 2008-05-22 Kenichi Handa <handa@m17n.org>
21013
21014 * puresize.h (BASE_PURESIZE): Increase to 1220000.
21015
21016 * font.c (font_prop_validate_style): Adjust for the format
21017 change of font_style_table.
21018
21019 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
21020 two args.
21021
21022 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
21023 two args.
21024
21025 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
21026
21027 * minibuf.c (keys_of_minibuf): Delete.
21028 * lisp.h (keys_of_minibuf): Delete.
21029 * emacs.c (main): Don't call keys_of_minibuf.
21030
21031 2008-05-22 Kenichi Handa <handa@m17n.org>
21032
21033 * ftfont.c (ftfont_resolve_generic_family): Rename from
21034 ftfont_list_generic_family. Return a single family for each
21035 generic family.
21036 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
21037 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
21038 Call font_add_log.
21039 (ftfont_match): Call font_add_log.
21040
21041 * font.h (Ffont_xlfd_name): EXFUN adjusted.
21042 (FONT_DEBUG): Define it.
21043 (font_add_log): Extern it.
21044 (font_assert): Rename from xassert.
21045
21046 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
21047 (xfont_list_family): Call font_add_log.
21048 (xfont_match): Likewise.
21049 (memq_no_quit): Delete.
21050
21051 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
21052 call of Ffont_xlfd_name.
21053
21054 * xfaces.c (struct table_entry, slant_table, weight_table)
21055 (swidth_table): Move to font.c.
21056
21057 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
21058 xassert are changed to font_assert. Delete many unused variables.
21059 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
21060 New variables.
21061 (struct table_entry): Move from xfaces.c and modified.
21062 (weight_table, slant_table, width_table): Move from xfaces.c and
21063 contents adjusted for the change of struct table_entry.
21064 (font_style_to_value, font_style_symbolic): Adjust for the
21065 format change of font_style_table.
21066 (font_parse_family_registry): Don't overwrite existing foundry and
21067 family of font_spec.
21068 (font_score): Fix calculation of diff for sizes.
21069 (font_sort_entites): Call font_add_log.
21070 (font_delete_unmatched): Return a newly created list.
21071 (font_list_entities): Fix previous change. Call font_add_log.
21072 (font_matching_entity, font_open_entity, font_close_entity):
21073 Call font_add_log.
21074 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
21075 (Finternal_set_font_style_table): Delete.
21076 (BUILD_STYLE_TABLE): New macro.
21077 (build_style_table): New function.
21078 (Vfont_log, font_log_env_checked): New variables.
21079 (font_add_log): New function.
21080 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
21081 Declare Lisp variables "font-weight-table", "font-slant-table",
21082 "font-width-table", and "font-log". Initialize font_style_table.
21083
21084 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
21085
21086 * xterm.c (x_set_frame_alpha): Move declarations before statements.
21087
21088 2008-05-21 Seiji Zenitani <zenitani@mac.com>
21089 Ryo Yoshitake <ryo@shiftmode.net>
21090
21091 * frame.c (Qalpha): Add a new frame parameter `alpha'.
21092 (Vframe_alpha_lower_limit): New variable.
21093 (x_set_alpha): New function.
21094
21095 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
21096
21097 * xfns.c (x-create-frame, Qalpha):
21098 Initialize the frame parameter `alpha'.
21099 * xterm.c (OPAQUE, OPACITY): New.
21100 (x_set_frame_alpha): New function.
21101 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
21102
21103 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
21104 * w32fns.c (w32_frame_parm_handlers): Likewise.
21105
21106 2008-05-20 Jason Rumney <jasonr@gnu.org>
21107
21108 * w32font.c (add_font_entity_to_list): Don't add non-opentype
21109 truetype fonts to opentype list.
21110
21111 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
21112
21113 * fontset.c (Ffontset_info): Doc fix.
21114 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
21115 <ignore-relative-composition>: Fix typos in docstrings.
21116
21117 * font.c (syms-of-font) <font-encoding-alist>:
21118 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
21119 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
21120 (Ffont_otf_alternates): Doc fixes.
21121
21122 2008-05-20 Kenichi Handa <handa@m17n.org>
21123
21124 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
21125 font.h through out the file.
21126 (FONT_DRIVERS): Rename from FONTOBJ.
21127 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
21128 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
21129
21130 * emacs.c (main): Call syms_of_font unconditionally.
21131
21132 * font.h (find_font_encoding): Extern it.
21133
21134 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
21135 fontset.c.
21136 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
21137 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
21138 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
21139 only when HAVE_WINDOW_SYSTEM is defined.
21140 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
21141 when HAVE_WINDOW_SYSTEM is defined.
21142
21143 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
21144 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
21145
21146 * xfaces.c: Include font.h unconditionally.
21147 (merge_face_ref, merge_face_vectors)
21148 (Finternal_set_lisp_face_attribute): Cancel the previous change.
21149
21150 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
21151
21152 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
21153 indirect_variable.
21154 * eval.c (lisp_indirect_variable): New fun.
21155 (Fuser_variable_p): Use it.
21156
21157 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
21158
21159 * lisp.h (indirect_variable):
21160 * data.c (indirect_variable, let_shadows_buffer_binding_p):
21161 Use Lisp_Symbol pointers rather than Lisp_Object.
21162 Adjust callers.
21163 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
21164 To this end, change calling-convention.
21165
21166 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
21167 if some non-hidden buffers are selected by string&pred.
21168
21169 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
21170
21171 * process.c (wait_reading_process_output): Always check status
21172 when in batch mode.
21173
21174 2008-05-19 Kenichi Handa <handa@m17n.org>
21175
21176 * font.c (font_list_entities): Fix handling of cache.
21177 (font_matching_entity): Likewise.
21178
21179 * ftfont.c (cs_iso8859_1): Delete.
21180 (ft_face_cache): New variable.
21181 (struct ftfont_info): New member fc_charset_idx.
21182 (ftfont_build_basic_charsets): Delete.
21183 (fc_charset_table): New variable.
21184 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
21185 . FC_CHARSET_IDX) as :font-entity property in the font entity.
21186 Callers changed.
21187 (ftfont_lookup_cache, ftfont_get_charset): New functions.
21188 (ftfont_spec_pattern): New argument fc_charset_idx.
21189 Check registry more rigidly. Change callers.
21190 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
21191 change of :font-entity property of the font.
21192
21193 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
21194 property of the font.
21195
21196 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
21197
21198 * coding.c (Fcoding_system_p): Rename argument to match docstring.
21199 (Funencodable_char_position, Fcheck_coding_systems_region)
21200 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
21201 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
21202 (Ffind_operation_coding_system, Fset_coding_system_priority)
21203 (Fcoding_system_eol_type): Doc fixes.
21204
21205 2008-05-17 Glenn Morris <rgm@gnu.org>
21206
21207 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
21208
21209 2008-05-16 Eli Zaretskii <eliz@gnu.org>
21210
21211 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
21212 and st_gid.
21213
21214 * frame.c (Fdelete_frame): Don't call font_update_drivers if
21215 HAVE_WINDOW_SYSTEM is not defined.
21216
21217 * xfaces.c (merge_face_ref, merge_face_vectors)
21218 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
21219 HAVE_WINDOW_SYSTEM is defined.
21220 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
21221
21222 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
21223
21224 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
21225
21226 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21227
21228 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
21229
21230 2008-05-15 Kenichi Handa <handa@m17n.org>
21231
21232 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
21233 preference.
21234
21235 2008-05-15 Glenn Morris <rgm@gnu.org>
21236
21237 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
21238
21239 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
21240
21241 * fns.c (init_fns): Don't initialize weak_hash_tables here.
21242 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
21243
21244 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
21245
21246 2008-05-15 Kenichi Handa <handa@m17n.org>
21247
21248 * ftfont.c (ftfont_list): Downcase family name to check generic
21249 families.
21250
21251 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
21252 font-spec for QCfont value.
21253
21254 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
21255 buffer. Check the return value of it.
21256
21257 2008-05-14 Jason Rumney <jasonr@gnu.org>
21258
21259 * w32term.c (w32_get_glyph_overhangs): Remove.
21260 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
21261
21262 2008-05-14 Kenichi Handa <handa@m17n.org>
21263
21264 * font.c (font_prop_validate): Make nil a valid value.
21265 (font_clear_cache): Check if the cached vector of entities is nil
21266 or not.
21267
21268 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21269
21270 * emacs.c (main_thread): Conditionalize on
21271 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
21272 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
21273
21274 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
21275 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
21276 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
21277
21278 2008-05-14 Kenichi Handa <handa@m17n.org>
21279
21280 * coding.c (detect_coding_iso_2022): Ignore a coding category that
21281 has no corresponding coding system.
21282
21283 2008-05-14 Jason Rumney <jasonr@gnu.org>
21284
21285 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
21286
21287 * w32font.h (w32font_open_internal): Update declaration.
21288
21289 * w32font.c (w32font_open_internal): Change last argument from
21290 w32font_info struct to font object. Fill in font object from
21291 font_entity. Get Outline metrics if possible. Use them to
21292 calculate underline position and thickness. Use xlfd name as name
21293 property. Don't set codepage.
21294 (w32font_open): Pass font_object to w32font_open_internal. Don't
21295 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
21296 (w32font_draw): Use s->font.
21297 (clear_cached_metrics): Don't clear non-existent blocks.
21298
21299 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
21300 font was not found.
21301 (x_draw_glyph_string): Use underline position and thickness from font.
21302
21303 * w32uniscribe.c (uniscribe_open): Pass font_object to
21304 w32font_open_internal.
21305
21306 2008-05-14 Kenichi Handa <handa@m17n.org>
21307
21308 These changes are to delete all legacy font-handling codes, and
21309 make Emacs use only font-backends.
21310
21311 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
21312 (frame.o, image.o, print.o): Depend on $(FONTSRC).
21313
21314 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
21315
21316 * charset.h (Vcharset_non_preferred_head)
21317 (Vcurrent_iso639_language): Extern them.
21318
21319 * charset.c (Vcharset_non_preferred_head): New variable.
21320 (Vcurrent_iso639_language): New variable.
21321 (syms_of_charset): Declare it as a Lisp variable.
21322 (char_charset): Don't check non preferred charsets. As a last
21323 resort, return charset_unicode.
21324 (Fset_charset_priority): Update Vcharset_non_preferred_head.
21325
21326 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
21327 conditionals. Don't check enable_font_backend. Delete all codes
21328 used only when USE_FONT_BACKEND is not defined.
21329
21330 * dispextern.h (struct glyph_string): Change type of `font' to
21331 `struct font *'.
21332 (struct glyph_string): New member underline_position and
21333 underline_thickness.
21334 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
21335 (struct face): Change type of `font' to `struct font *'.
21336 Remove members `font_name', `font_info_id'.
21337 (per_char_metric, encode_char): Delete externs.
21338 (calc_pixel_width_or_height): Adjust the prototype.
21339
21340 * emacs.c (enable_font_backend): Delete extern.
21341 (main): Don't set enable_font_backend. Don't check the command
21342 line argument "-disable-font-backend".
21343
21344 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
21345 (enum font_property_index): New members FONT_DPI_INDEX,
21346 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
21347 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
21348 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
21349 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
21350 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
21351 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
21352 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
21353 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
21354 (struct font_spec, struct font_entity): New structs.
21355 (FONT_ENCODING_NOT_DECIDED): Move from fontset.h.
21356 (struct font): Many members from old "struct font_info" moved to
21357 here. Members font and entity deleted.
21358 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
21359 the new font-related objects.
21360 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
21361 (CHECK_FONT_GET_OBJECT): Likewise.
21362 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
21363 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move from font.h.
21364 (struct font_driver): New members case_sensitive anc check.
21365 Type of the member list and open changed.
21366 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
21367 (font_symbolic_width, font_find_object, font_get_spec)
21368 (font_set_lface_from_name): Delete extern.
21369 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
21370
21371 * font.c: Include <strings.h>.
21372 (enable_font_backend): Delete it.
21373 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
21374 (CHECK_VALIDATE_FONT_SPEC): Delete it.
21375 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move to font.h.
21376 (null_string): Delete it.
21377 (null_vector): Make it static.
21378 (font_family_alist): Delete it.
21379 (Qnormal): Extern it.
21380 (QCextra, QClanguage): Delete it.
21381 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
21382 (font_make_spec, font_make_entity, font_make_object)
21383 (font_intern_prop): Rename from intern_downcase. Don't downcase
21384 the string. Callers changed.
21385 (font_pixel_size): Adjust for the format change of font-related
21386 objects.
21387 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
21388 (font_style_to_value, font_style_symbolic): New function.
21389 (build_font_family_alist): Delete it.
21390 (font_registry_charsets): Use Fassoc_string instead of
21391 assq_no_quit.
21392 (font_prop_validate_symbol): Don't return null_string.
21393 (font_prop_validate_style): Adjust for the change of
21394 style-related values in a font vector.
21395 (font_property_table): Delete entries for QClanguage and
21396 QCantialias, add entries for QCavgwidth.
21397 (get_font_prop_index): Delete the 2nd argument FROM.
21398 (font_prop_validate): Arguments changed.
21399 (font_put_extra): Adjust for the change of font-related objects.
21400 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
21401 (font_parse_fcname, font_unparse_fcname)
21402 (font_prepare_composition): Likewise.
21403 (font_parse_family_registry): Rename from font_merge_old_spec.
21404 (otf_open): Delete the 1st arg entity.
21405 (font_otf_capability): Adjust for the above change.
21406 (font_score): New arg alternate_families. Adjusted for the change
21407 of font-related objects.
21408 (font_sort_entites): New arg best_only.
21409 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
21410 Delete them.
21411 (font_match_p): Check alternate families.
21412 (font_find_object): Delete it.
21413 (font_check_object): New function.
21414 (font_clear_cache): Adjust for the change of font-related objects.
21415 (font_delete_unmatched): New arg.
21416 (font_list_entities): Call font_driver->list with a spec that
21417 doesn't specify style-related properties.
21418 (font_matching_entity): Arguments changed. Caller changed.
21419 (font_open_entity): Adjust for the change of font-related objects.
21420 (font_close_object, font_has_char, font_encode_char)
21421 (font_get_name, font_get_spec): Likewise.
21422 (font_spec_from_name, font_clear_prop, font_update_lface):
21423 New functions.
21424 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
21425 (font_prepare_for_face, font_done_for_face, font_open_by_name)
21426 (font_at): Adjust for the change of font-related objects.
21427 (font_range): New function.
21428 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
21429 (Ffont_xlfd_name): Adjust for the change of font-related objects.
21430 (Fcopy_font_spec, Fmerge_font_spec): New function.
21431 (Ffont_family_list): Rename from list-families.
21432 (Finternal_set_font_style_table): Arguments changed.
21433 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
21434 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjust for the
21435 change of font-related objects.
21436 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
21437
21438 * fontset.h (struct font_info): Delete it. Most members go to
21439 struct font.
21440 (FONT_ENCODING_NOT_DECIDED): Move to font.h.
21441 (enum FONT_SPEC_INDEX): Delete it.
21442 (font_info, list_fonts_func, load_font_func, query_font_func)
21443 (set_frame_fontset_func, find_ccl_program_func)
21444 (get_font_repertory_func, new_fontset_from_font_name):
21445 Delete externs.
21446 (fontset_from_font_name): Extern it.
21447 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
21448 (FONT_INFO_FROM_FACE): Deleted.
21449 (face_for_font): Adjust prototype.
21450
21451 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
21452 conditionals. Don't check enable_font_backend. Delete all codes
21453 used only when USE_FONT_BACKEND is not defined.
21454 (get_font_info_func, list_font_func, load_font_func)
21455 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
21456 (get_font_repertory_func): Delete them.
21457 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
21458 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
21459 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
21460 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
21461 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
21462 (fontset_compare_rfontdef): New function.
21463 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
21464 rfont-defs by qsort. Adjusted for the change of font-group vector.
21465 (load_font_get_repertory): Deleted.
21466 (fontset_find_font): Use new macros to ref/set elements of
21467 font-def and rfont-def.
21468 (fontset_font): Fix the timing of remembering that no font for C.
21469 (free_face_fontset): Do nothing if the face has no fontset.
21470 (face_suitable_for_char_p): Use new macros to ref/set elements of
21471 rfont-def.
21472 (face_for_char): Likewise. Call face_for_char with font_object.
21473 (fs_load_font): Delete. Delete #pragma surrounding it.
21474 (fs_query_fontset): Use strcasecmp instead of strcmp.
21475 (generate_ascii_font_name): Adjust for the format change of
21476 font-spec.
21477 (Fset_fontset_font): Likewise. Use new macros to set elements of
21478 font-def.
21479 (Fnew_fontset): Use font_unparse_xlfd to generate
21480 FONTSET_ASCII (fontset).
21481 (new_fontset_from_font_name): Deleted.
21482 (fontset_from_font): Rename from new_fontset_from_font. Check if
21483 a fontset is already created for the font. FIx updating of
21484 Vfontset_alias_alist.
21485 (fontset_ascii_font): Deleted.
21486 (Ffont_info): Adjust for the format change of font-spec.
21487 (Finternal_char_font): Likewise.
21488 (Ffontset_info): Likewise.
21489 (syms_of_fontset): Don't check load_font_func.
21490
21491 * fns.c (internal_equal): Handle PREV_FONT.
21492
21493 * frame.h: Delete USE_FONT_BACKEND conditional.
21494
21495 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
21496 conditionals. Don't check enable_font_backend. Delete all codes
21497 used only when USE_FONT_BACKEND is not defined.
21498 (x_set_font): Call x_new_font, not x_new_fontset2.
21499 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
21500 already set for the frame.
21501
21502 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed.
21503 Make a font-entity by font_make_entity. Use font_intern_prop instead
21504 of intern_downcase. Use FONT_SET_STYLE to set a style-related
21505 font property. If a font is scalable, set avgwidth property to 0.
21506 Set font-entity property by font_put_extra.
21507 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
21508 (ffont_driver): Adjust for the change of struct font_driver.
21509 (ftfont_spec_pattern): New function.
21510 (ftfont_list): Return a list, not vector.
21511 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
21512 (ftfont_list_family): Don't downcase names.
21513 (ftfont_free_entity): Deleted.
21514 (ftfont_open): Return a font-object. Adjusted for the change of
21515 struct font. Get underline_thickness and underline_position from
21516 font property. Don't update dpyinfo->smallest_font_height and
21517 dpyinfo->smallest_char_width.
21518 (ftfont_close): Don't free `struct font'.
21519 (ftfont_has_char): Adjust for the format change of font-entity.
21520 (ftfont_encode_char, ftfont_text_extents): Likewise.
21521
21522 * ftxfont.c (ftxfont_list): Return a list, not vector.
21523 (ftxfont_open): Return a font-object. Adjusted for the change of
21524 struct font. Get underline_thickness and underline_position from
21525 font property. Don't update dpyinfo->smallest_font_height and
21526 dpyinfo->smallest_char_width.
21527 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
21528 (ftxfont_draw): Adjust for the change of struct font.
21529
21530 * image.c (image_ascent): Don't include "charset.h".
21531 Include "character.h" and "font.h".
21532
21533 * lisp.h (enum pvec_type): New member PREV_FONT.
21534 (Fassoc_string): EXFUN it.
21535
21536 * print.c: Include font.h.
21537 (print_object): Handle font-related objects.
21538
21539 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
21540 conditionals. Don't check enable_font_backend. Delete all codes
21541 used only when USE_FONT_BACKEND is not defined.
21542 (handle_auto_composed_prop): Do nothing if it->f is not on a
21543 window system. Check how many following characters can be
21544 displayed by the same font.
21545 (calc_pixel_width_or_height): Type of the 4th arg is changed to
21546 'struct font *'.
21547 (get_char_face_and_encoding): Assign the whole encoding task to
21548 the `encode-char' method of a font driver.
21549 (fill_composite_glyph_string): Adjust for the change of `struct
21550 face' and `struct glyph_string'.
21551 (fill_glyph_string): Likewise.
21552 (get_per_char_metric): Arguments changed.
21553 (x_get_glyph_overhangs): Adjust for the change of `struct face'
21554 and `struct glyph_string'.
21555 (produce_stretch_glyph, calc_line_height_property)
21556 (x_produce_glyphs): Likewise.
21557
21558 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
21559 conditionals. Don't check enable_font_backend. Delete all codes
21560 used only when USE_FONT_BACKEND is not defined.
21561 Use FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
21562 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
21563 (Qp): Extern them.
21564 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
21565 Deleted.
21566 (struct font_name): Deleted.
21567 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
21568 (compare_fonts_by_sort_order): New function.
21569 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
21570 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
21571 Deleted.
21572 (Fx_family_fonts): Use font_list_entities, and sort fonts by
21573 compare_fonts_by_sort_order.
21574 (Fx_font_family_list): Call Ffont_family_list.
21575 (face_numeric_value, face_numeric_weight, face_numeric_slant)
21576 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
21577 (face_symbolic_slant, face_symbolic_swidth)
21578 (split_font_name_into_vector, build_font_name_from_vector)
21579 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
21580 (font_rescale_ratio, split_font_name, build_font_name)
21581 (free_font_names, sort_fonts, x_face_list_fonts)
21582 (face_font_available_p, sorted_font_list, cmp_font_names)
21583 (font_list_1, concat_font_list, font_list, remove_duplicates):
21584 Deleted.
21585 (Fx_list_fonts): Use Ffont_list.
21586 (LFACE_AVGWIDTH): Deleted.
21587 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
21588 by FONTP.
21589 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
21590 (set_lface_from_font_name): Delete it.
21591 (set_lface_from_font): Rename from
21592 set_lface_from_font_and_fontset. Caller changed. Don't set
21593 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
21594 for face.
21595 (merge_face_vectors): Copy font-spec if necessary.
21596 Clear properties of the font-spec if necessary.
21597 (merge_face_ref): Clear properties of the font-spec if necessary.
21598 (Finternal_set_lisp_face_attribute): Likewise.
21599 (set_font_frame_param): Use font_load_for_lface to load a
21600 font-object, and call Fmodify_frame_parameters with it.
21601 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
21602 font name by Ffont_xlfd_name.
21603 (Finternal_lisp_face_attribute_values): Don't check QCweight,
21604 QCslant, and QCwidth.
21605 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
21606 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
21607 Compare fonts by EQ.
21608 (lookup_non_ascii_face): Deleted.
21609 (face_for_font): The 2nd argument changed.
21610 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
21611 Check atomic font properties by case insensitive.
21612 (realize_non_ascii_face): Set face->overstrike correctly.
21613 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
21614 (dump_realized_face): Get font name from
21615 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
21616
21617 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
21618 conditionals. Don't check enable_font_backend. Delete all codes
21619 used only when USE_FONT_BACKEND is not defined.
21620 (xic_create_xfontset): Original code deleted and renamed from
21621 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
21622 (x_make_gc): Don't set GCFont in GCs.
21623 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
21624 opened by "fixed".
21625 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
21626 find_ccl_program_func, query_font_func, set_frame_fontset_func,
21627 get_font_repertory_func.
21628
21629 * xfont.c: Include <stdlib.h> and "ccl.h".
21630 (struct xfont_info): New structure.
21631 (xfont_query_font): Deleted.
21632 (xfont_find_ccl_program): Rename from x_find_ccl_program and
21633 moved from xterm.c.
21634 (xfont_driver): Adjust for the change of struct font_driver.
21635 (compare_font_names): New function.
21636 (xfont_list_pattern): Sort font names case insensitively.
21637 Make font_entity by calling font_make_entity. Avoid auto-scaled fonts.
21638 (xfont_list): Return a list, not vector.
21639 (xfont_match): If the font doesn't have QCname property, generate
21640 a name from the other font properties.
21641 (xfont_open): Return a font-object. Adjusted for the change of
21642 struct font. Get underline_thickness and underline_position from
21643 font property. Don't update dpyinfo->smallest_font_height and
21644 dpyinfo->smallest_char_width.
21645 (xfont_close): Don't free struct font.
21646 (xfont_prepare_face): Adjust for the change of struct font.
21647 (xfont_done_face): Deleted.
21648 (xfont_has_char): Adjust for the change of struct font.
21649 (xfont_encode_char, xfont_draw): Likewise.
21650 (xfont_check): New function.
21651
21652 * xftfont.c (xftfont_list): Adjust for the change of `list'
21653 callback function.
21654 (xftfont_match): Adjust for the format change of font-entity.
21655 (xftfont_open): Adjust for the format change of font-entity and
21656 font-object. Adjusted for the change of struct font. Return a
21657 font-object. Don't update dpyinfo->smallest_font_height and
21658 dpyinfo->smallest_char_width.
21659 (xftfont_close): Block input while calling XftFontClose.
21660 (xftfont_prepare_face): Don't block input while calling
21661 xftfont_get_colors. Adjusted for the change of struct font.
21662 (xftfont_shape): Return value of error case fixed.
21663
21664 * xrdb.c (x_load_resources): Don't setup a fontset resource.
21665
21666 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
21667 conditionals.
21668 (FONT_WIDTH): Return (f)->max_width.
21669 (struct x_display_info): Delete member `font'.
21670 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
21671 (x_find_ccl_program, x_get_font_repertory): Delete externs.
21672 (struct x_output): Change type of `font' to `struct font *'.
21673
21674 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
21675 conditionals. Don't check enable_font_backend. Delete all codes
21676 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
21677 (x_per_char_metric, x_encode_char): Deleted.
21678 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
21679 (x_compute_glyph_string_overhangs): Adjust for the change of
21680 `struct face'.
21681 (x_draw_glyph_string_foreground)
21682 (x_draw_composite_glyph_string_foreground): Likewise.
21683 (x_draw_glyph_string): Likewise. Use font->underline_position and
21684 font->underline_thickness.
21685 (x_new_font): Rename from x_new_fontset2.
21686 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
21687 (x_check_font): Call `check' method of a font driver.
21688 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
21689 (x_query_font, x_get_font_repertory): Deleted.
21690 (x_find_ccl_program): Rename and moved to xfont.c.
21691 (x_redisplay_interface): Adjust for the change of `struct
21692 redisplay_interface'.
21693
21694 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
21695 conditionals. Don't check enable_font_backend. Delete all codes
21696 used only when USE_FONT_BACKEND is not defined. Surround non-used
21697 code by "#ifdef OLD_FONT" and "endif".
21698 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
21699
21700 * w32font.h (struct w32font_info): New member.
21701 (FONT_COMPAT): New macro.
21702 (w32font_open_internal): Prototype adjusted.
21703
21704 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
21705 OLD_FONT" and "endif".
21706
21707 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
21708 conditionals. Don't check enable_font_backend. Delete all codes
21709 used only when USE_FONT_BACKEND is not defined.
21710 (w32font_open): Return a font-object. Make a font-object by
21711 font_make_object. Adjusted for the change of struct w32font_info.
21712 (w32font_close): Don't free struct font. Adjusted for the change
21713 of struct w32font_info.
21714 (w32font_encode_char, w32font_text_extents, w32font_draw):
21715 Adjust for the change of struct w32font_info.
21716 (w32font_draw): Likewise.
21717 (w32font_list_internal): Return a list, not vector.
21718 (w32font_open_internal): Change the 4th arg to font-object.
21719 Adjusted for the change of struct w32font_info and font-object format.
21720 (add_font_name_to_list): Don't downcase names.
21721 (w32_enumfont_pattern_entity): Make a font-entity by
21722 font_make_entity. Adjusted for the format change of font-entity.
21723 Use FONT_SET_STYLE to set a style-related font property. If a
21724 font is scalable, set avgwidth property to 0. Set font-entity
21725 property by font_put_extra.
21726 (font_matches_spec): Adjust for the format change of font-entity.
21727 (w32_weight_table, w32_decode_weight): New variables.
21728 (w32_encode_weight): New function.
21729 (fill_in_logfont): Adjust for the format change of font-spec.
21730 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
21731 weight value.
21732 (w32font_driver): Adjust for the change of struct font_driver.
21733
21734 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
21735 conditionals. Don't check enable_font_backend. Surround non-used
21736 code by "#ifdef OLD_FONT" and "endif".
21737 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
21738 (FONT_AVG_WIDTH): Adjust for the change of struct font.
21739
21740 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
21741 conditionals. Don't check enable_font_backend. Delete all codes
21742 used only when USE_FONT_BACKEND is not defined. Surround non-used
21743 code by "#ifdef OLD_FONT" and "endif".
21744
21745 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
21746 (uniscribe_open): Return value changed to font-object.
21747 Adjusted for the format change of font-object.
21748 (uniscribe_otf_capability): Adjust for the change of struct font.
21749 (add_opentype_font_name_to_list): Don't downcase names.
21750 (uniscribe_font_driver): Adjust for the change of struct
21751 font_driver.
21752
21753 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
21754
21755 * dispnew.c (update_frame_1): Check if tty output is still valid
21756 before flushing it.
21757
21758 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
21759
21760 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
21761 to Gtk+ menus.
21762
21763 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
21764
21765 * dired.c (file_name_completion): Tweak the code so as to always do it
21766 in a single pass. Tighten the scope of some variables.
21767
21768 * dired.c (Qdefault_directory): New var.
21769 (file_name_completion): Use it instead of Fexpand_file_name.
21770 (syms_of_dired): Initialize it.
21771
21772 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
21773
21774 * fileio.c (double_dollars): Remove dead code.
21775
21776 2008-05-10 Eli Zaretskii <eliz@gnu.org>
21777
21778 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
21779 Mention w32-get-true-file-attributes in doc string.
21780
21781 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
21782
21783 2008-05-09 Glenn Morris <rgm@gnu.org>
21784
21785 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
21786 2008-04-23.
21787
21788 2008-05-09 Eli Zaretskii <eliz@gnu.org>
21789
21790 Support for reporting owner and group of each file on MS-Windows:
21791 * dired.c (stat_uname, stat_gname): New functions, with special
21792 implementation for w32.
21793 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
21794
21795 * w32.c: Rename the_passwd_* to dflt_passwd_*.
21796 (dflt_group_name): New static variable.
21797 (dflt_group): Rename from the_group.
21798 (init_user_info): Init dflt_group fields. Get user's group name
21799 from LookupAccountSid.
21800 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
21801 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
21802 New initialization states.
21803 (globals_of_w32): Initialize them to zero. Initialize the default
21804 group name to "None".
21805 (GetFileSecurity_Name): New global var, the name of the function
21806 to call for GetFileSecurity.
21807 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
21808 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
21809 (get_file_security, get_security_descriptor_owner)
21810 (get_security_descriptor_group, is_valid_sid)
21811 (get_file_security_desc, get_rid, get_name_and_id)
21812 (get_file_owner_and_group): New functions.
21813 (stat): Use get_file_security_desc and get_file_owner_and_group to
21814 report the owner and primary group of each file. Don't ignore the
21815 high 32 bits of file's size, now that st_size is 64-bit wide.
21816 Fix test when to get true file attributes.
21817 (init_user_info): Use get_rid instead of equivalent inline code.
21818 (fstat): Don't ignore the high 32 bits of file's size.
21819
21820 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
21821
21822 * image.c (png_load): Use correct bit-depth for setting background
21823 color.
21824
21825 2008-05-08 Eli Zaretskii <eliz@gnu.org>
21826
21827 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
21828 epa-hook.elc.
21829
21830 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
21831
21832 * font.c (Ffont_match_p): Don't use `iff' in docstring.
21833
21834 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
21835
21836 * macfns.c (Fx_create_frame): Make a copy of frame parameters
21837 because the original parameters are in pure storage now.
21838 (mac_window): Remove unused params. Update callers.
21839
21840 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
21841
21842 * lread.c (substitute_object_recurse): Use lower-level primitives.
21843 Don't signal errors when traversing sub-char-tables.
21844 Don't loop over all the possible characters when traversing char-tables.
21845
21846 * print.c (print_preprocess): Add sub-char-tables to the print-table,
21847 just like we do in print.c.
21848
21849 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
21850
21851 * minibuf.c (Ftry_completion): Remove code left over from when we used
21852 scmp instead of Fcompare_strings.
21853
21854 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
21855
21856 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
21857
21858 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21859
21860 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
21861 Create bitmap context in native byte order.
21862
21863 * macterm.c (XDrawLine)
21864 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
21865 context in native byte order.
21866
21867 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21868
21869 * config.in: Regenerate.
21870
21871 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
21872 New definitions for Image I/O support.
21873 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
21874 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
21875 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
21876 (mac_data_provider_release_data, image_load_image_io)
21877 [USE_MAC_IMAGE_IO]: New functions.
21878 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
21879 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
21880 (init_image_func_pointer) [MAC_OSX]: Remove function.
21881 (image_load_quartz2d) [MAC_OSX]: Check availability of
21882 CGImageCreateWithPNGDataProvider at compile time.
21883 Use lowercase `false' for boolean constant.
21884 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
21885 Use image_load_image_io.
21886 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
21887 Don't check MyCGImageCreateWithPNGDataProvider.
21888 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
21889 Don't call init_image_func_pointer.
21890
21891 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
21892
21893 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
21894 Make variable non-static.
21895 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
21896 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
21897
21898 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
21899 (RED_FROM_ULONG): Mask off higher bits.
21900 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
21901
21902 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
21903 Include AvailabilityMacros.h.
21904 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
21905 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
21906
21907 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
21908
21909 * chartab.c (Fset_char_table_range): If range is t, really set all
21910 chars to that value.
21911
21912 2008-05-03 Eli Zaretskii <eliz@gnu.org>
21913
21914 * dired.c (Ffile_attributes): Don't allow the device number become
21915 negative.
21916
21917 2008-05-02 Daiki Ueno <ueno@unixuser.org>
21918
21919 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
21920
21921 2008-05-02 Juri Linkov <juri@jurta.org>
21922
21923 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
21924 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
21925 DEFAULT argument as a list of default values in docstrings.
21926
21927 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
21928
21929 * puresize.h (BASE_PURESIZE): Increase to 1210000.
21930
21931 2008-05-01 Martin Rudalics <rudalics@gmx.at>
21932
21933 * dispnew.c (change_frame_size_1): Preserve small windows when
21934 shrinking frames by calling set_window_height|width with third
21935 arg 2.
21936
21937 * window.h (struct window): Replace field too_small_ok by field
21938 resize_proportionally.
21939
21940 * window.c (make_window): Initialize resize_proportionally.
21941 (enlarge_window): Temporarily set resize_proportionally to make
21942 sure that shrink_windows does scale the window proportionally.
21943 (shrink_windows): When window has resize_proportionally set try
21944 to shrink it proportionally by stealing from other windows.
21945 (struct saved_window, Fset_window_configuration)
21946 (compare_window_configurations): Handle resize_proportionally.
21947 (WINDOW_TOTAL_SIZE): New macro.
21948 (window_min_size, shrink_windows, size_window): Use it.
21949 (check_min_window_sizes): Remove. Invalid values of
21950 window-min-height|width are handled by window_min_size_2 now.
21951 (size_window, Fsplit_window, enlarge_window)
21952 (adjust_window_trailing_edge, grow_mini_window): Don't call
21953 check_min_window_sizes.
21954 (window_min_size_2, window_min_size_1, window_min_size):
21955 New argument safe_p for retrieving "safe" minimum sizes.
21956 (Fdisplay_buffer, Fsplit_window, enlarge_window)
21957 (adjust_window_trailing_edge, grow_mini_window):
21958 Adjust arguments of window_min_size... functions.
21959 (shrink_windows): Argument min_size removed. New argument
21960 safe_p allows shrinking windows to their safe minimum sizes.
21961 Calculate minimum size and decide whether a window shall be
21962 deleted for each window individually.
21963 (size_window): When nodelete_p equals 2, tell shrink_windows to
21964 delete windows only if their new minimum size is no more safe.
21965 (shrink_window_lowest_first): Call window_min_size_1 to make
21966 sure to preserve modeline of bottom-most window when resizing
21967 the minibuffer.
21968 (Fset_window_configuration, Fcurrent_window_configuration)
21969 (compare_window_configurations): Do not handle
21970 window-min-height|width any more.
21971 (syms_of_window): Clarify window-min-height|width doc-strings.
21972
21973 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
21974
21975 * dired.c (file_name_completion): Fix up the encoding/decoding issue
21976 some more. Copy some of the code from Ftry_completions.
21977 Remove special case code that dates back to initial revision when the
21978 slash was only added when necessary and that can't trigger nowadays.
21979
21980 2008-04-27 Kenichi Handa <handa@m17n.org>
21981
21982 * font.c (font_prop_validate): Signal `error' instead of `font'.
21983
21984 2008-04-29 Jason Rumney <jasonr@gnu.org>
21985
21986 * w32fns.c (Fw32_battery_status): New defun.
21987 (syms_of_w32fns): Defsubr it.
21988
21989 2008-04-28 Andreas Schwab <schwab@suse.de>
21990
21991 * dired.c (file_name_completion): Fix another mixing of encoded
21992 and decoded names.
21993
21994 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
21995
21996 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
21997
21998 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
21999
22000 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
22001
22002 2008-04-27 Andreas Schwab <schwab@suse.de>
22003
22004 * dired.c (file_name_completion): Fix inappropriate mixing of
22005 encoded and decoded names.
22006
22007 * xterm.c (XTread_socket): Fix use of uninitialized variable.
22008
22009 * puresize.h (BASE_PURESIZE): Increase to 1200000.
22010
22011 2008-04-26 Eli Zaretskii <eliz@gnu.org>
22012
22013 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
22014 2008-03-31, it's not needed anymore with `struct stat' definition
22015 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
22016 for the same reasons.
22017
22018 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
22019
22020 * m/sparc.h: Additional redefinitions for GNU/Linux.
22021
22022 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22023
22024 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
22025 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
22026 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
22027 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
22028 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
22029 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
22030 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
22031 Likewise.
22032
22033 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
22034 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
22035 (mac_ax_number_of_characters): Add externs.
22036 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
22037 [USE_MAC_TSM]: Likewise.
22038 (mac_handle_text_input_event) [MAC_OSX]:
22039 Handle kEventTextInputOffsetToPos for no active input area case.
22040 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
22041 (mac_handle_document_access_event)
22042 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
22043 (install_application_handler) [MAC_OSX]: Register handlers for
22044 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
22045 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
22046 Register mac_handle_document_access_event.
22047
22048 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
22049 Make functions non-static.
22050
22051 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
22052
22053 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
22054 (read_file_name_completion_ignore_case, insert_default_directory)
22055 (Qdefault_directory): Move to minibuffer.el.
22056 (Fread_file_name): Call the new `read-file-name' instead.
22057
22058 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22059
22060 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
22061 Make function non-static.
22062 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
22063 Remove function.
22064 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
22065 Move to mactoolbox.c.
22066 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
22067
22068 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
22069 (mac_rect_make): New macro.
22070
22071 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
22072 instead of float.
22073 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
22074 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
22075 (XSetBackground) [USE_CG_DRAWING]: Likewise.
22076 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
22077 CGRectMake.
22078 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
22079 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
22080 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
22081 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
22082 instead of WindowRef in argument type.
22083 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
22084 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
22085 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
22086 instead of DISPLAY. All uses changed.
22087 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
22088 (x_calc_absolute_position): Simplify so as not to use
22089 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
22090
22091 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
22092 instead of WindowRef in argument type.
22093 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
22094 [TARGET_API_MAC_CARBON]: Remove externs.
22095 (create_apple_event, mac_event_parameters_to_lisp)
22096 [TARGET_API_MAC_CARBON]: Add externs.
22097
22098 * mactoolbox.c (Vmac_ts_script_language_on_focus)
22099 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
22100 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
22101 is clicked.
22102 (x_activate_menubar): Remove extern for saved_menu_event_location.
22103 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
22104 Move from mac.c.
22105
22106 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22107
22108 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
22109 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
22110
22111 2008-04-23 Jason Rumney <jasonr@gnu.org>
22112
22113 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
22114 attributes only for local files.
22115
22116 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
22117 default to Qlocal.
22118
22119 2008-04-22 Juri Linkov <juri@jurta.org>
22120
22121 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
22122 read-buffer-to-switch instead of using the letter "B".
22123
22124 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
22125
22126 * fileio.c (Qdefault_directory): New variable.
22127 (Fread_file_name): Use it to pass `dir' to the completion functions.
22128
22129 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
22130
22131 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
22132
22133 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
22134
22135 * keyboard.c (Vpre_help_message): Remove.
22136 (show_help_echo): Remove default C code.
22137
22138 * dired.c (directory_files_internal, file_name_completion):
22139 Only call ENCODE_FILE if the string is indeed decoded.
22140
22141 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
22142
22143 * Makefile.in (TOOLKIT_DEFINES): Remove.
22144 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
22145
22146 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22147
22148 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
22149 (mactoolbox.o): New target.
22150
22151 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
22152 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
22153
22154 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
22155 Use mac_set_frame_window_background instead of XSetWindowBackground.
22156 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
22157 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
22158 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
22159 instead of SetWindowTitleWithCFString.
22160 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
22161 Move function to mactoolbox.c.
22162 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
22163 Use mac_set_window_modified instead of SetWindowModified.
22164 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
22165 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
22166 (Fx_focus_frame): Use mac_front_non_floating_window instead of
22167 FrontNonFloatingWindow. Use mac_activate_window instead of
22168 ActivateWindow. Use mac_active_non_floating_window instead of
22169 ActiveNonFloatingWindow.
22170 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
22171 Use mac_show_hourglass and mac_hide_hourglass.
22172 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
22173 instead of GetGlobalMouse.
22174 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
22175 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
22176 Use mac_bring_window_to_front instead of BringToFront.
22177 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
22178 mactoolbox.c.
22179 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
22180 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
22181 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
22182 mactoolbox.c.
22183
22184 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
22185 (XtPointer): Move typedef from macmenu.c.
22186 (enum button_type): Move enum from macmenu.c.
22187 (widget_value): Move typedef from macmenu.c.
22188 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
22189 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
22190 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
22191 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
22192 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
22193 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
22194 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
22195 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
22196 (Selection): Move typedef from macselect.c.
22197 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
22198 macterm.c.
22199 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
22200 (mac_is_window_collapsed, mac_bring_window_to_front)
22201 (mac_send_window_behind, mac_hide_window, mac_show_window)
22202 (mac_collapse_window, mac_front_non_floating_window)
22203 (mac_active_non_floating_window, mac_activate_window)
22204 (mac_move_window_structure, mac_move_window, mac_size_window)
22205 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
22206
22207 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
22208 (enum mac_menu_kind): Move enum to mactoolbox.c.
22209 (min_menu_id): Move variable to mactoolbox.c.
22210 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
22211 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
22212 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
22213 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
22214 [TARGET_API_MAC_CARBON]: Likewise.
22215 (XtPointer): Move typedef to macgui.h.
22216 (enum button_type): Move enum to macgui.h.
22217 (widget_value): Move typedef to macgui.h.
22218 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
22219 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
22220 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
22221 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
22222 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
22223 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
22224 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
22225 (popup_activated_flag): Make variable non-static.
22226 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
22227 (add_menu_item, fill_menu, dispose_menus):
22228 Move functions to mactoolbox.c.
22229 (restore_show_help_function, menu_target_item_handler)
22230 (install_menu_target_item_handler, mac_handle_dialog_event)
22231 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
22232 [TARGET_API_MAC_CARBON]: Likewise.
22233 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
22234 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
22235 (find_and_call_menu_selection, name_is_separator): Make function
22236 non-static.
22237 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
22238 to mactoolbox.c.
22239 (set_frame_menubar): Don't call install_menu_quit_handler.
22240 (menu_item_selection): New variable.
22241 (mac_menu_show): Use create_and_show_popup_menu.
22242 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
22243 selection but set variable menu_item_selection. All uses changed.
22244 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
22245 Call install_menu_quit_handler. Move to mactoolbox.c.
22246
22247 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
22248 (Selection): Move typedef to macgui.h.
22249 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
22250 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
22251 Make variables non-static.
22252 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
22253 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
22254 Make functions non-static.
22255 (Vmac_service_selection) [MAC_OSX]: Likewise.
22256 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
22257 (mac_valid_selection_target_p, mac_clear_selection)
22258 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
22259 (mac_put_selection_value, mac_selection_has_target_p)
22260 (mac_get_selection_value, mac_get_selection_target_list)
22261 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
22262 Move functions to mactoolbox.c.
22263 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
22264 Likewise.
22265 (copy_scrap_flavor_data, mac_handle_service_event)
22266 (install_service_handler) [MAC_OSX]: Likewise.
22267 (syms_of_macselect) <Vmac_dnd_known_types>:
22268 Use mac_dnd_default_known_types.
22269
22270 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
22271 Move to mactoolbox.c.
22272 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
22273 (Fx_selection_owner_p): Add EXFUN.
22274 (install_window_handler, remove_window_handler, XSetWindowBackground):
22275 Remove externs.
22276 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
22277 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
22278 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
22279 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
22280 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
22281 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
22282 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
22283 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
22284 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
22285 (create_and_show_popup_menu, mac_get_selection_from_symbol)
22286 (mac_valid_selection_target_p, mac_clear_selection)
22287 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
22288 (mac_put_selection_value, mac_selection_has_target_p)
22289 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
22290 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
22291 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
22292 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
22293 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
22294 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
22295 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
22296 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
22297 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
22298
22299 * mactoolbox.c: New file.
22300
22301 2008-04-18 Jason Rumney <jasonr@gnu.org>
22302
22303 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
22304
22305 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
22306
22307 * character.c (Fmultibyte_char_to_unibyte):
22308 Return latin1 chars unchanged.
22309
22310 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
22311 relocated if it points to `name'.
22312
22313 2008-04-17 Kenichi Handa <handa@m17n.org>
22314
22315 * data.c (Faset): Allow setting a multibyte character in an
22316 ASCII-only unibyte string.
22317
22318 * lisp.h (STRING_SET_MULTIBYTE): New macro.
22319
22320 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
22321
22322 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
22323 done in config.h.
22324
22325 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
22326
22327 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
22328 (Fchar_direction): Add usage in the docstring.
22329
22330 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
22331
22332 * keyboard.c (read_key_sequence): Remove always-true checks.
22333
22334 2008-04-14 Jason Rumney <jasonr@gnu.org>
22335
22336 * w32font.c (w32font_open_internal): Set max_bounds.descent in
22337 compatibility struct, for better underline positioning.
22338
22339 2008-04-13 David Hansen <david.hansen@gmx.net>
22340
22341 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
22342 string.
22343
22344 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
22345
22346 * m/hp800.h (XUINT, XSET): Remove.
22347
22348 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
22349
22350 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
22351 previous change.
22352
22353 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
22354
22355 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
22356 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
22357
22358 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
22359
22360 * keymap.h (map_keymap_canonical): Declare.
22361 * xmenu.c (single_keymap_panes): Use it.
22362
22363 2008-04-11 Glenn Morris <rgm@gnu.org>
22364
22365 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
22366 set the target's value to that of the alias.
22367
22368 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
22369
22370 * term.c (set_tty_color_mode): Left over typo.
22371
22372 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
22373
22374 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
22375 only after check for file name handler functions. Signal, when
22376 native functionality is not supported.
22377 (syms_of_fileio): Declare it unconditionally.
22378
22379 2008-04-10 Jason Rumney <jasonr@gnu.org>
22380
22381 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
22382 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
22383
22384 * w32.c (logon_network_drive): Also logon to remote drives that
22385 are mapped to drive letters.
22386
22387 2008-04-10 Glenn Morris <rgm@gnu.org>
22388
22389 * xdisp.c (truncate-partial-width-windows): Doc fix.
22390
22391 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
22392
22393 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
22394 Move functions to minibuffer.el.
22395 (syms_of_fileio): Don't declare them.
22396
22397 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
22398
22399 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
22400 (syms_of_minibuf): Remove its initialization.
22401
22402 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
22403
22404 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
22405
22406 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
22407
22408 2008-04-09 Jason Rumney <jasonr@gnu.org>
22409
22410 * makefile.w32-in (distclean): Delete makefile too.
22411 (maintainer-clean): New target.
22412
22413 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
22414
22415 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
22416 for new font backend and composite cases.
22417
22418 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
22419
22420 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
22421 Most of the code moved to run_timers.
22422 (do_pending_atimers): Call run_timers.
22423 (run_timers): New function.
22424
22425 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
22426 run atimers.
22427
22428 * process.c (wait_reading_process_output): The same as above.
22429
22430 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
22431
22432 * minibuf.c (last_exact_completion): Remove variable.
22433 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
22434 (complete_and_exit_1, complete_and_exit_2)
22435 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
22436 (Fdisplay_completion_list, display_completion_list_1)
22437 (Fminibuffer_completion_help, Fself_insert_and_exit)
22438 (Fexit_minibuffer, Fminibuffer_message): Move functions to
22439 minibuffer.el.
22440 (syms_of_minibuf): Remove corresponding initializations.
22441
22442 * keyboard.c (Qdeactivate_mark): New var.
22443 (command_loop_1): Use it to call `deactivate-mark'.
22444 (syms_of_keyboard): Initialize it.
22445
22446 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
22447 to another frame.
22448 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
22449 Don't call set_tty_color_mode.
22450 (store_frame_param): Reset previous_frame rather than call
22451 set_tty_color_mode.
22452 * term.c (set_tty_color_mode): Rewrite.
22453 * dispextern.h (set_tty_color_mode): New type.
22454 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
22455
22456 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
22457
22458 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
22459 for generic chars, which do not exist any more in emacs-unicode.
22460
22461 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
22462
22463 * coding.c (detect_coding_emacs_mule)
22464 (Ffind_operation_coding_system): Fix typo.
22465
22466 2008-04-08 Jason Rumney <jasonr@gnu.org>
22467
22468 * w32uniscribe.c (SNAME): Extract only symbol name.
22469
22470 * w32font.h (struct w32_metric_cache): New struct.
22471 (w32font_info): Use it.
22472 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
22473 (CACHE_BLOCKSIZE): New constants.
22474
22475 * w32font.c (Qja, Qko, Qzh): New symbols.
22476 (syms_of_w32font): Initialise them.
22477 (font_matches_spec): Use them to filter by language.
22478 (recompute_cached_metrics): Remove function.
22479 (compute_metrics, clear_cached_metrics): New functions.
22480 (w32font_encode_char): Use them to manage metric cache.
22481 (w32font_text_extents): Cache metrics for all glyphs on demand.
22482 Delay converting glyph indices to WORD until needed.
22483 (w32font_open_internal): Initialize metric cache to empty.
22484 (registry_to_w32_charset): Charset should always be a symbol.
22485 (fill_in_logfont, list_all_matching_fonts): Family should
22486 always be a symbol.
22487
22488 2008-04-06 Jason Rumney <jasonr@gnu.org>
22489
22490 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
22491 Give up if glyph indices not supported. Use uniscribe obtained
22492 ABC widths for individual metrics. Map glyph clusters back to
22493 characters using fClusterStart flag. Return number of glyphs
22494 produced, not chars processed.
22495 (uniscribe_shape): Map char at FROM to current glyph.
22496
22497 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22498
22499 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
22500 Use SetMenuItemHierarchicalMenu.
22501
22502 2008-04-05 Jason Rumney <jasonr@gnu.org>
22503
22504 * image.c (pbm_load): Allow color values up to 65535.
22505 Throw an error if max_color_idx is outside the supported range.
22506 Report an error when image size is invalid.
22507 Read two bytes at a time when raw images have max_color_idx above 255.
22508
22509 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
22510
22511 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
22512 append "CCL: Quitted" when the CCL program is quitted.
22513 (setup_ccl_program): Initialize ccl->quit_silently to zero.
22514
22515 * ccl.h (struct ccl_program): New member quit_silently.
22516
22517 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
22518
22519 * search.c (compile_pattern_1): Treat non-nil and non-string of
22520 search-spaces-regexp as nil.
22521
22522 * minibuf.c (Fassoc_string): Tweak docstring.
22523
22524 2008-04-05 Eli Zaretskii <eliz@gnu.org>
22525
22526 * dired.c (Ffile_attributes): Support inode numbers wider than 32
22527 bits. Remove ugly WINDOWSNT-specific kludge introduced on
22528 2008-03-14 to force inode be positive.
22529
22530 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
22531 _S_* ones, since we now use our own sys/stat.h.
22532 (stat, fstat): Don't mangle the inode number.
22533 (init_user_info): Don't restrict UID and GID to 0-60000 range.
22534
22535 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
22536
22537 * frame.h (struct frame): Give one more bit to `visible' since we use
22538 values larger than 1 to indicate obscured frames on ttys.
22539
22540 * keymap.c (Qkeymap_canonicalize): New var.
22541 (Fmap_keymap_internal): New fun.
22542 (describe_map): Use keymap-canonicalize.
22543
22544 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
22545 (Fundo_boundary): Set them.
22546 (syms_of_undo): Initialize them.
22547 (record_point): Use them instead of last_point_position*.
22548 (last_undo_buffer): Change type.
22549
22550 2008-04-04 Jason Rumney <jasonr@gnu.org>
22551
22552 * w32font.c (w32font_text_extents): Use font's ascent and descent.
22553 (recompute_cached_metrics): Don't set ascent and descent per char.
22554
22555 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
22556 (uniscribe_check_otf): Add GC protection before consing.
22557 Rearrange loop for counting features.
22558
22559 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
22560
22561 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
22562 buffer with byte-size of source buffer.
22563
22564 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
22565
22566 * callint.c (Fcall_interactively): Handle temporary region even
22567 when shift-select-mode is off.
22568
22569 2008-04-03 Jason Rumney <jasonr@gnu.org>
22570
22571 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
22572
22573 2008-04-03 Kenichi Handa <handa@m17n.org>
22574
22575 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
22576 (CATEGORY_MASK_UTF_16): Likewise.
22577 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
22578 binary file.
22579 (detect_coding): Add null-byte detection for a binary file.
22580 (detect_coding_system): Likewise.
22581
22582 2008-04-03 Jason Rumney <jasonr@gnu.org>
22583
22584 * w32uniscribe.c: New file.
22585
22586 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
22587
22588 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
22589
22590 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
22591 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
22592 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
22593 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
22594 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
22595 (Qphonetic): New symbols.
22596 (syms_of_w32font): Initialize them.
22597 (font_supported_scripts): Use them.
22598 (w32font_list_family): List all charsets.
22599 (w32font_text_extents, recompute_cached_metrics): Fix metric
22600 calculations.
22601 (w32_enumfont_pattern_entity): Make full_type a DWORD.
22602 Give opentype fonts their own format.
22603 (font_matches_spec): New arguments backend and logfont.
22604 Handle :otf spec for uniscribe backend.
22605 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
22606 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
22607
22608 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
22609 font backend.
22610 (globals_of_w32fns): Initialize uniscribe font backend.
22611
22612 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
22613 dependencies.
22614 (w32uniscribe.$(O)): New file to build.
22615 (FONT_OBJ): Include w32uniscribe.$(O).
22616 (LIBS): Add uniscribe libraries.
22617
22618 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
22619
22620 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
22621
22622 * callint.c (Vshift_select_mode): New var.
22623 (Finteractive): Document new ^ spec.
22624 (Fcall_interactively): Call handle-shift-selection if the ^ spec
22625 is present.
22626
22627 * keyboard.c (Vthis_command_keys_shift_translated): New var.
22628 (command_loop_1): Avoid running the direct display versions of
22629 forward-char and backward-char if shift-selection may occur.
22630 (read_key_sequence): Set Vthis_command_keys_shift_translated if
22631 shift-translation takes place.
22632
22633 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
22634 avoid clobbering by define-minor-mode.
22635
22636 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
22637 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
22638
22639 * syntax.c (Fforward_word): Add ^ interactive spec.
22640
22641 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
22642 (Fscroll_right): Add ^ interactive spec.
22643
22644 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
22645
22646 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
22647
22648 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
22649
22650 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
22651
22652 2008-03-31 Juri Linkov <juri@jurta.org>
22653
22654 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
22655
22656 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
22657
22658 * gtkutil.c (xg_set_geometry): Fix indentation.
22659 (xg_resize_outer_widget): Remove.
22660 (x_wm_size_hint_off): Fix indentation.
22661 (xg_frame_set_char_size): Call flush_and_sync after
22662 gtk_window_resize.
22663 (x_wm_set_size_hint): Pass NULL as geometry window to
22664 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
22665 Add menu bar and tool bar height to base height.
22666 (xg_update_frame_menubar, free_frame_menubar)
22667 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
22668 (update_frame_tool_bar, free_frame_tool_bar):
22669 Change xg_resize_outer_widget to xg_frame_set_char_size.
22670
22671 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
22672
22673 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
22674 (Fdbus_call_method): New parameter TIMEOUT.
22675 (dbus-send-signal): Optimize UNGCPRO call.
22676
22677 2008-03-29 Juri Linkov <juri@jurta.org>
22678
22679 * window.c (Fdisplay_buffer): Move call to
22680 Vsplit_window_preferred_function out of conditions that check
22681 if window is eligible for vertical splitting.
22682 When Vsplit_window_preferred_function is non-nil, call it and use
22683 its non-nil return value as window. Otherwise, continue doing
22684 vertical splitting using Fsplit_window with arg horflag=nil.
22685 (syms_of_window) <Vsplit_window_preferred_function>: Change the
22686 default value from `split-window' to nil.
22687
22688 2008-03-29 Juri Linkov <juri@jurta.org>
22689
22690 * callint.c (Fcall_interactively): Revert 2008-03-16 change
22691 for interactive code letters 'b' and 'B'.
22692
22693 2008-03-29 Eli Zaretskii <eliz@gnu.org>
22694
22695 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
22696 multibyte string.
22697
22698 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
22699
22700 * keyboard.c (pending_funcalls): New var.
22701 (timer_check): Run it.
22702 (syms_of_keyboard): Initialize it.
22703 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
22704 (Vdelete_terminal_functions): New vars.
22705 (syms_of_terminal): Initialize them.
22706 (Fdelete_terminal): Run delete-terminal-functions.
22707 * xdisp.c (safe_eval): Rewrite.
22708 (safe_call2): New fun.
22709 * frame.c (Qdelete_frame_functions): New var.
22710 (syms_of_frame): Initialize it.
22711 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
22712 * lisp.h (safe_call2, pending_funcalls): Declare.
22713
22714 2008-03-28 Andreas Schwab <schwab@suse.de>
22715
22716 * indent.c (Fmove_to_column): Move declaration before statements.
22717
22718 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
22719
22720 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
22721 (struct frame): Use bit fields for boolean vars.
22722
22723 * process.c (server_accept_connection): Simplify naming.
22724 (emacs_get_tty_pgrp): Use SDATA.
22725
22726 * coding.c (decode_coding_object): Fix last change.
22727
22728 2008-03-27 Jason Rumney <jasonr@gnu.org>
22729
22730 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
22731
22732 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
22733
22734 * charset.c (Fdefine_charset_internal): Change the way of
22735 registering charsets in Vcharset_order_list.
22736 (syms_of_charset): Make the charset `eight-bit' supplementary.
22737
22738 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
22739
22740 * regex.c (EXTEND_BUFFER): Change order of pointer addition
22741 operations, to avoid having the difference between pointers
22742 overflow.
22743
22744 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
22745
22746 * indent.c (check_display_width): New fun.
22747 (scan_for_column): Use it.
22748
22749 * data.c (syms_of_data): Mark most-positive-fixnum and
22750 most-negative-fixnum as constants.
22751
22752 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
22753
22754 * indent.c (scan_for_column): Extract from current_column_1.
22755 Merge with the same code from Fmove_to_column.
22756 (current_column_1, Fmove_to_column): Use it.
22757
22758 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
22759
22760 * keymap.c (map_keymap_internal): New fun.
22761 (map_keymap): Use it.
22762 (Fmap_keymap_internal): New fun.
22763 (Fmap_keymap): Remove left-out test from before make_save_value.
22764
22765 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
22766
22767 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
22768 Use XCAR/XCDR.
22769
22770 * process.h (struct Lisp_Process): Remove filter_multibyte.
22771 * process.c (QCfilter_multibyte): Remove.
22772 (setup_process_coding_systems): Don't use filter_multibyte.
22773 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
22774 (read_process_output): Don't adjust multibyteness to filter_multibyte.
22775 (Fset_process_filter_multibyte): Change the coding-system to
22776 approximate the previous behavior.
22777 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
22778 coding-system.
22779
22780 * coding.c (decode_coding_object): When not decoding into a buffer,
22781 obey the coding system's preference of (uni|multi)byte.
22782
22783 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
22784
22785 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
22786 every char is changed and has a different byte-length.
22787 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
22788 Fix int -> EMACS_INT.
22789
22790 2008-03-23 David Hansen <david.hansen@gmx.net>
22791
22792 * dbusbind.c (xd_read_message): Remove extra copying of message
22793 strings. Check for NULL `interface' or `member'.
22794
22795 2008-03-22 Eli Zaretskii <eliz@gnu.org>
22796
22797 * w32.c (readdir): If FindFirstFile/FindNextFile return in
22798 cFileName a file name that includes `?' characters, use the 8+3
22799 alias in cAlternateFileName instead.
22800
22801 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
22802
22803 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
22804
22805 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22806
22807 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
22808 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
22809 work on current_buffer only instead (that was already the case
22810 for some of the code anyway).
22811 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
22812 (temp_set_point, temp_set_point_both): Use EMACS_INT.
22813 (SET_PT, SET_PT_BOTH): Adjust.
22814 * intervals.h (set_point, temp_set_point, set_point_both)
22815 (temp_set_point_both): Remove redundant declarations.
22816
22817 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22818
22819 * fileio.c (Finsert_file_contents):
22820 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
22821 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
22822 when buffer != current_buffer anyway.
22823
22824 2008-03-20 Andreas Schwab <schwab@suse.de>
22825
22826 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
22827 as default.
22828
22829 2008-03-19 Jason Rumney <jasonr@gnu.org>
22830
22831 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
22832 (syms_of_w32fns): Initialize them.
22833 (HOURGLASS_ID): New constant.
22834 (x_window_to_frame): Don't check hourglass_window.
22835 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
22836 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
22837 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
22838 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
22839 Only change the cursor if hourglass is not active.
22840 (Fx_create_frame): Initialize frame's current_cursor.
22841 (hourglass_atimer): Remove.
22842 (hourglass_started): New function.
22843 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
22844 (show_hourglass): Adapt to w32, changing argument to frame.
22845
22846 * w32term.h (struct w32_output): Remove hourglass_window.
22847 Add current_cursor.
22848
22849 * eval.c (call_debugger, Fsignal):
22850 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
22851 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
22852 (Fexecute_extended_command, cancel_hourglass_unwind):
22853 * minibuf.c (read_minibuf):
22854 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
22855
22856 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
22857
22858 * window.c (run_funs): New fun.
22859 (run_window_configuration_change_hook): Use it to run the buffer-local
22860 and the global part of the hook.
22861
22862 * xdisp.c (format_mode_line_unwind_data): Add window argument.
22863 (unwind_format_mode_line): Restore selected window.
22864 (x_consider_frame_title, Fformat_mode_line): Set selected window.
22865
22866 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
22867
22868 * editfns.c (Fchar_equal): Check they are valid characters.
22869
22870 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
22871
22872 2008-03-17 Andreas Schwab <schwab@suse.de>
22873
22874 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
22875 against a charset.
22876
22877 * lisp.h (Fbuffer_list): Declare.
22878
22879 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
22880
22881 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
22882 handlebox_widget is != 0.
22883
22884 2008-03-16 Juri Linkov <juri@jurta.org>
22885
22886 * callint.c (Fcall_interactively): For interactive code letters
22887 'b' and 'B' put the buffer list into the list of default "future"
22888 values of the minibuffer.
22889
22890 2008-03-16 Andreas Schwab <schwab@suse.de>
22891
22892 * keyboard.c (read_key_sequence): Fix downcasing of letters with
22893 modifiers.
22894
22895 * regex.c (re_match_2_internal): Correct matching of a charset
22896 against latin-1 characters.
22897
22898 2008-03-16 Kenichi Handa <handa@m17n.org>
22899
22900 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
22901 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
22902 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
22903 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
22904 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
22905 CHAR_STRING_ADVANCE.
22906 (produce_chars): Fix for the case that the source and the
22907 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
22908 instead of CHAR_STRING_ADVANCE.
22909 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
22910 STRING_CHAR_ADVANCE.
22911
22912 2008-03-15 Andreas Schwab <schwab@suse.de>
22913
22914 * regex.c (re_match_2_internal): Correct matching of eight bit
22915 characters in unibyte strings.
22916
22917 2008-03-15 Martin Rudalics <rudalics@gmx.at>
22918
22919 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
22920 at end of range when it coincides with the end of the buffer.
22921
22922 2008-03-14 Eli Zaretskii <eliz@gnu.org>
22923
22924 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
22925
22926 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
22927
22928 2008-03-14 Jason Rumney <jasonr@gnu.org>
22929
22930 * editfns.c (initial_tz): New variable.
22931 (syms_of_editfns): Initialize it.
22932 (Fset_time_zone_rule): Set it when first called.
22933 Use it when TZSTRING is nil.
22934
22935 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
22936 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
22937 (monitor_from_point_fn, get_monitor_info_fn): New globals.
22938 (globals_of_w32fns): Initialize them.
22939 (compute_tip_xy): Use them to position tooltips.
22940
22941 2008-03-14 Glenn Morris <rgm@gnu.org>
22942
22943 * emacs.c (main): Revert previous change.
22944 (standard_args): Revert -internal-script back to -scriptload,
22945 and remove the long-option form.
22946
22947 2008-03-13 Glenn Morris <rgm@gnu.org>
22948
22949 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
22950 Remove option -enable-font-backend.
22951
22952 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
22953
22954 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
22955
22956 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
22957
22958 * xterm.c (x_connection_closed): For GTK: If this is the last
22959 terminal just exit without closing the display.
22960
22961 2008-03-11 Jason Rumney <jasonr@gnu.org>
22962
22963 * w32font.c (w32font_full_name): Use floor to round.
22964
22965 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
22966
22967 * sound.c (alsa_configure): Declare vol at beginning of block.
22968
22969 * fontset.c (Ffontset_info): Remove extra semicolon.
22970
22971 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
22972
22973 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
22974 size of resulting string.
22975
22976 2008-03-10 Jason Rumney <jasonr@gnu.org>
22977
22978 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
22979
22980 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22981
22982 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
22983 Don't pretend as if characters with display property haven't been
22984 consumed for string-replacing-string case.
22985
22986 2008-03-08 Kim F. Storm <storm@cua.dk>
22987
22988 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
22989 (get_next_display_element, next_element_from_string)
22990 (next_element_from_ellipsis, next_element_from_buffer): Use it.
22991
22992 2008-03-08 Andreas Schwab <schwab@suse.de>
22993
22994 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
22995
22996 2008-03-06 Jason Rumney <jasonr@gnu.org>
22997
22998 * w32font.c (w32_registry): Take font_type argument. Use ANSI
22999 when charset not specified. Only translate ANSI to unicode when
23000 font_type is truetype.
23001 (w32font_coverage_ok): New function.
23002 (add_font_entity_to_list): Use it to filter unsuitable fonts.
23003
23004 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
23005
23006 * lread.c (Fread_char): Resolve modifiers.
23007 (Fread_char_exclusive): Likewise.
23008
23009 * character.c (char_resolve_modifier_mask): New function.
23010 (char_string): Use char_resolve_modifier_mask.
23011 (Fchar_resolve_modifiers): New function.
23012 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
23013 function.
23014
23015 2008-03-04 Jason Rumney <jasonr@gnu.org>
23016
23017 * makefile.w32-in: Always include w32font.c in the build.
23018 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
23019
23020 2008-03-04 Andreas Schwab <schwab@suse.de>
23021
23022 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
23023 (versionclean): Likewise.
23024
23025 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
23026
23027 * .cvsignore: Add oo.
23028
23029 2008-03-03 Andreas Schwab <schwab@suse.de>
23030
23031 * coding.c (decode_coding_object): Inhibit gap shrinking while
23032 decoding in place.
23033
23034 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
23035
23036 * w32term.c: Remove unused include "gnu.h".
23037 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
23038
23039 * gnu.h: Rename to ...
23040 * emacs-icon.h: ... this.
23041 * xterm.c: Use emacs-icon.h instead of gnu.h.
23042 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
23043
23044 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
23045
23046 * w32font.c: Include math.h.
23047
23048 2008-03-03 Jason Rumney <jasonr@gnu.org>
23049
23050 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
23051 Compute options separately.
23052 (w32font_open_internal): Set glyph_idx before caching metrics.
23053
23054 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
23055 Define if system headers don't.
23056 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
23057 (w32font_encode_char): Don't declare here.
23058
23059 * w32font.c (Quniscribe, QCformat): New symbols.
23060 (syms_of_w32font): Define them.
23061 (w32font_has_char): Indicate uncertainty.
23062 (w32font_encode_char): Encode as glyph point. Make static.
23063 (recompute_cached_metrics): New function.
23064 (w32font_open_internal): Use it. Set font to use glyph points
23065 initially. Set format based on type of font.
23066 (w32font_text_extents, w32font_draw): Optionally use glyph points.
23067 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
23068 on it. Set format based on information available here.
23069 (add_font_entity_to_list): Identify backend based on opentype_only.
23070
23071 2008-03-02 Andreas Schwab <schwab@suse.de>
23072
23073 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
23074
23075 * coding.c (decode_coding_big5, produce_chars):
23076 Fix typos in last change.
23077
23078 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
23079
23080 * gnu.h: New icon.
23081
23082 2008-03-02 Kenichi Handa <handa@m17n.org>
23083
23084 * coding.c (decode_coding_utf_8): When eol-type of CODING is
23085 `dos', don't decode '\r' if that is the last in the source.
23086 (decode_coding_utf_16, decode_coding_emacs_mule)
23087 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
23088 (decode_coding_raw_text, decode_coding_charset): Likewise.
23089 (produce_chars): Don't decode EOL here. Use EMACS_INT.
23090
23091 2008-03-01 Jason Rumney <jasonr@gnu.org>
23092
23093 * w32font.c (w32font_full_name): Report point size for scalable fonts.
23094
23095 2008-03-01 Kim F. Storm <storm@cua.dk>
23096
23097 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
23098
23099 2008-03-01 Jason Rumney <jasonr@gnu.org>
23100
23101 * w32font.c (w32font_full_name): New function.
23102 (w32font_open_internal): Use it.
23103
23104 2008-03-01 Kim F. Storm <storm@cua.dk>
23105
23106 * dispnew.c (line_draw_cost): Fix invalid glyph check.
23107
23108 2008-03-01 Jason Rumney <jasonr@gnu.org>
23109
23110 * font.c (font_unparse_fcname): Increase len when style is a symbol.
23111
23112 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
23113
23114 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
23115 xg_frame_resized when the event is for the edit widget.
23116
23117 * gtkutil.h (xg_frame_resized): Rename from xg_resize_widgets.
23118
23119 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
23120 set_char_size.
23121 (xg_frame_resized): Rename from xg_resize_widgets. Remove all
23122 operations on widgets here. Just set frame size if needed.
23123 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
23124 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
23125 (x_wm_set_size_hint): Set size hints on the edit widget only, not
23126 the whole frame.
23127 (xg_create_tool_bar): Move attachment of the tool bar to
23128 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
23129 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
23130
23131 2008-03-01 Jason Rumney <jasonr@gnu.org>
23132
23133 * w32fns.c (w32_msg_pump): Disable debug code.
23134
23135 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23136
23137 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
23138
23139 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
23140
23141 * xdisp.c (next_overlay_string): Don't set
23142 overlay_strings_at_end_processed_p if we're currently reading from
23143 a display string.
23144
23145 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
23146
23147 * xdisp.c (get_overlay_strings_1): Fix typo.
23148
23149 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
23150
23151 * xdisp.c (get_overlay_strings_1): Add missing argument type.
23152
23153 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
23154
23155 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
23156
23157 * xdisp.c (display_mode_element): Cancel the previous change.
23158 (decode_mode_spec): Likewise.
23159 (handle_auto_composed_prop): Don't make composition if it->string
23160 is a string.
23161
23162 2008-02-27 Kim F. Storm <storm@cua.dk>
23163
23164 * lisp.h (GLYPH): Change type from int to struct with separate char
23165 and face_id members.
23166 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
23167 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
23168 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
23169 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
23170 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
23171 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
23172 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
23173 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
23174 handle new Lisp glyph code encoding, either an integer or a cons.
23175
23176 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
23177 (GLYPH_ALIAS): Delete.
23178 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
23179 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
23180 (GLYPH_FROM_CHAR): Replace macro by ...
23181 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
23182
23183 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
23184 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
23185 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
23186 (GLYPH_INVALID_P): New macro.
23187 (spec_glyph_lookup_face): Update prototype.
23188
23189 * dispnew.c (line_draw_cost): Adapt to new glyph type.
23190 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
23191 new glyph code encoding.
23192 (spec_glyph_lookup_face): No return value; update passed glyph instead.
23193 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
23194
23195 * xdisp.c (get_next_display_element, next_element_from_display_vector):
23196 Adapt to new glyph type and new glyph code encoding.
23197
23198 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
23199
23200 * indent.c (current_column, current_column_1, Fmove_to_column)
23201 (compute_motion): Adapt to new glyph code encoding.
23202
23203 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
23204
23205 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
23206
23207 * process.c (wait_reading_process_output): Check for window
23208 changes caused by timers.
23209 Suggested by Johan Bockgård.
23210
23211 2008-02-27 Glenn Morris <rgm@gnu.org>
23212
23213 * emacs.c (USAGE1): Add `--disable-font-backend'.
23214
23215 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
23216
23217 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
23218 is made to the buffer.
23219
23220 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
23221
23222 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
23223 (face_at_string_position):
23224 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
23225 (face_at_string_position):
23226 * xdisp.c (display_string, next_overlay_change):
23227 * buffer.h (overlays_at):
23228 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
23229 Update callers.
23230
23231 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
23232
23233 * editfns.c (Fformat): Doc fix.
23234
23235 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
23236
23237 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
23238 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
23239 (Ffont_otf_alternates, Fquery_font): Doc fixes.
23240
23241 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
23242
23243 * buffer.c (Fbuffer_swap_text): New function.
23244 (syms_of_buffer): Defsubr it.
23245
23246 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
23247
23248 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
23249
23250 2008-02-25 Jason Rumney <jasonr@gnu.org>
23251
23252 * w32font.c (w32font_draw): Draw one character at a time when padding.
23253
23254 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
23255
23256 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
23257 Handle a nil arg. Use run_window_configuration_change_hook.
23258 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
23259 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
23260 Use run_window_configuration_change_hook.
23261
23262 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
23263
23264 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
23265 1-pixel width.
23266
23267 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
23268
23269 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
23270 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
23271 if the glyph in the font is zero pixel with.
23272
23273 * dispextern.h (struct glyph_string): New member padding_p.
23274
23275 * w32font.c (w32font_draw): Pay attention to s->padding_p.
23276
23277 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
23278
23279 * xfont.c (xfont_draw): Pay attention to s->padding_p.
23280
23281 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
23282
23283 * font.c: If the font driver doesn't have `shape' function, return Qnil.
23284
23285 2008-02-25 Jason Rumney <jasonr@gnu.org>
23286
23287 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
23288
23289 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
23290
23291 Allow fine-grained image-cache flushing.
23292 * dispextern.h (struct image): Add `dependencies' field.
23293 (clear_image_caches): Change arg to Lisp_Object.
23294 * image.c (make_image): Initialize `dependencies' field.
23295 (clear_image_cache): Change arg to allow fine-grained flushing.
23296 Perform the flush even if image-cache-eviction-delay is nil.
23297 (clear_image_caches): Change arg to Lisp_Object.
23298 (Fclear_image_cache): Expand meaning of the argument.
23299 (mark_image): Mark `dependencies' field.
23300 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
23301 (lface_hash): Use XHASH rather than XFASTINT.
23302 (face_at_buffer_position): Fix int -> EMACS_INT position.
23303 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
23304 (select_frame_for_redisplay): Remove code duplication.
23305 (redisplay_internal): Adapt arg to call to clear_image_caches.
23306
23307 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
23308
23309 * s/vms4-0.h:
23310 * s/vms4-2.h:
23311 * s/vms4-4.h:
23312 * s/vms5-5.h: Remove, unused.
23313
23314 * s/irix5-2.h:
23315 * s/irix6-0.h:
23316 * s/riscos5.h:
23317 * s/mach-bsd4-3.h:
23318 * m/mips4.h: Remove files for obsolete systems.
23319
23320 * Makefile.in:
23321 * filelock.c:
23322 * unexmips.c:
23323 * m/hp9000s300.h:
23324 * m/iris4d.h:
23325 * s/aix3-1.h:
23326 * s/hpux.h:
23327 * s/msdos.h:
23328 * s/usg5-0.h:
23329 * s/usg5-2-2.h:
23330 * s/usg5-2.h:
23331 * s/usg5-3.h: Remove references to obsolete variables.
23332
23333 * s/irix5-0.h: Remove, move all the contents ...
23334 * s/irix6-5.h: ... here. Simplify.
23335 * config.in: Regenerate.
23336
23337 2008-02-24 Jason Rumney <jasonr@gnu.org>
23338
23339 * w32term.c (x_draw_glyph_string_background): Clear the background
23340 manually when cleartype is in use.
23341 (x_draw_glyph_string_foreground): Draw text transparently when
23342 cleartype is in use.
23343
23344 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
23345 a font into it unless we have to.
23346
23347 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
23348
23349 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
23350 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
23351
23352 2008-02-18 Jason Rumney <jasonr@gnu.org>
23353
23354 * w32fns.c (Fw32_shell_execute): Encode parameters.
23355
23356 2008-02-09 Eli Zaretskii <eliz@gnu.org>
23357
23358 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
23359
23360 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
23361
23362 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
23363
23364 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
23365
23366 * xterm.c (x_set_offset): Don't change the gravity if
23367 CHANGE_GRAVITY is -1.
23368
23369 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
23370
23371 * fileio.c (auto_save_error_occurred): New var.
23372 (auto_save_error): Set it.
23373 (Fdo_auto_save): Don't overwrite the error message if an auto-save
23374 error occurred.
23375
23376 2008-02-23 Eli Zaretskii <eliz@gnu.org>
23377
23378 * w32.c (globals_of_w32): Add initializations for
23379 g_b_init_get_sid_sub_authority and
23380 g_b_init_get_sid_sub_authority_count.
23381
23382 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
23383
23384 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
23385 (font_parse_xlfd): Use them for sanity check.
23386 (Finternal_set_font_style_table): Make sure the table is bijective.
23387
23388 Consolidate the image_cache to the terminal struct.
23389 * termhooks.h (P_): Remove redundant def.
23390 (struct terminal): New field `image_cache'.
23391 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
23392 of FRAME_X_IMAGE_CACHE.
23393 * xterm.h (struct x_display_info): Remove image_cache field.
23394 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
23395 * w32term.h (struct w32_display_info): Remove image_cache field.
23396 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
23397 * macterm.h (struct mac_display_info): Remove image_cache field.
23398 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
23399 * xterm.c (x_term_init):
23400 * w32term.c (w32_term_init):
23401 * macterm.c (mac_term_init): Set the image_cache in the terminal.
23402 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
23403 Remove declarations.
23404 (clear_image_caches, mark_image_cache): New declarations.
23405 * xfaces.c (clear_face_cache):
23406 * xdisp.c (redisplay_internal): Use clear_image_caches.
23407 * image.c (clear_image_cache): Don't check that a frame is on
23408 a window-system before checking if it shares the same cache.
23409 (clear_image_caches): New function.
23410 (Fclear_image_cache): Use it.
23411 (mark_image): Move from allo.c.
23412 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
23413 * alloc.c (mark_image, mark_image_cache): Move to image.c.
23414 (mark_object): Don't call mark_image_cache for frames.
23415 (mark_terminals): Call mark_image_cache.
23416
23417 * lisp.h (Fdelete_terminal): Declare.
23418
23419 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
23420 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
23421 wrong_type_argument.
23422
23423 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
23424
23425 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
23426 malayalam.el, and tamil.el. Add sinhala.el.
23427
23428 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
23429
23430 * xterm.c (x_connection_closed): Consolidate identical tests.
23431 (x_delete_terminal): Don't crash if called via x_connection_closed.
23432
23433 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
23434
23435 * xdisp.c (decode_mode_spec): New arg string.
23436 (display_mode_element): Adjust for the above change.
23437
23438 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
23439
23440 * callint.c (Fcall_interactively): Use AREF.
23441
23442 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
23443
23444 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
23445
23446 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
23447
23448 * xfns.c (Fx_show_tip): Set string to " " if empty.
23449
23450 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
23451
23452 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
23453 with Qt.
23454
23455 2008-02-17 Kenichi Handa <handa@m17n.org>
23456
23457 * ftfont.c (ftfont_shape): Return Lispy number.
23458
23459 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
23460 for GCs.
23461 (Finternal_set_font_selection_order): Call font_update_sort_order
23462 only when enable_font_backend is set.
23463 (realize_x_face): Set face->font_info to that of default face only
23464 when enable_font_backend is set.
23465
23466 * xdisp.c (handle_composition_prop): Set it->c to the fist
23467 character of the composed region.
23468 (fill_composite_glyph_string): Set base_face->font_info to
23469 s->font_info. Get a face for ascii from base_face->ascii_face.
23470 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
23471 with a face already decided.
23472 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
23473 non-negative.
23474 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
23475 call font_prepare_composition unconditionally.
23476
23477 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
23478
23479 * xterm.h (struct x_display_info): New member font.
23480
23481 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
23482 (x_set_mouse_face_gc, x_new_font): Likewise.
23483 (x_term_init): Setup display_info->font.
23484 (x_delete_terminal): Free display_info->font.
23485
23486 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
23487
23488 * ftxfont.c (ftxfont_default_fid): Delete it.
23489 (ftxfont_open): Set xfont->fid to 0.
23490 (ftxfont_end_for_frame): Clear data specific to the frame and the
23491 font-driver.
23492
23493 * xftfont.c (xftfont_default_fid): Delete it.
23494 (xftfont_open): Set xfont->fid to 0.
23495
23496 * fontset.c (FONTSET_OBJLIST): New macro.
23497 (fontset_find_font): Update font-object list of the fontset.
23498 (free_realized_fontset): New function.
23499 (free_face_fontset): Call free_realized_fontset.
23500 (Ffont_info): Call font_close_object only when enable_font_backend
23501 is set.
23502
23503 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
23504 [HAVE_NTGUI]: Include w32term.h.
23505 [MAC_OS]: Include macterm.ch.
23506 (font_otf_ValueRecord): Use make_number.
23507 (font_finish_cache): Fix handling of reference count.
23508 (font_clear_cache): Update num_fonts.
23509 (font_open_entity): Update smallest_char_width and
23510 smallest_font_height of the frame.
23511 (font_close_object): Update num_fonts.
23512 (Fclear_font_cache): Fix finding the target cache data.
23513
23514 2008-02-16 Glenn Morris <rgm@gnu.org>
23515
23516 * fontset.c (Finternal_char_font): Fix compilation warning.
23517
23518 2008-02-16 Eli Zaretskii <eliz@gnu.org>
23519
23520 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
23521 instead of char arrays. Enlarge the size of array passed to
23522 get_token_information.
23523
23524 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
23525 warnings.
23526
23527 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
23528
23529 * .gdbinit: Don't set `args', it breaks gdb --args.
23530
23531 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
23532
23533 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
23534 within a narrowed buffer.
23535
23536 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
23537
23538 * coding.c (decode_coding_object, encode_coding_object):
23539 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
23540
23541 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
23542
23543 * coding.c (coding_set_destination): Use BEG_BYTE rather than
23544 hardcoding 1.
23545 (detect_coding_system):
23546 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
23547 (string_char_to_byte, string_byte_to_char, insert_from_gap):
23548 * insdel.c (insert_from_gap):
23549 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
23550 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
23551 (string_to_multibyte):
23552 * character.c (chars_in_text, multibyte_chars_in_text):
23553 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
23554
23555 * character.h (FETCH_STRING_CHAR_ADVANCE)
23556 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
23557 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
23558 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
23559
23560 * casefiddle.c (casify_region): Only call after-change and composition
23561 functions on the part of the region that was changed.
23562
23563 * keyboard.c (read_avail_input):
23564 * frame.c (Fdelete_frame): Call Fdelete_terminal.
23565
23566 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
23567
23568 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
23569 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
23570
23571 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
23572
23573 * w32menu.c (push_submenu_start, push_submenu_end)
23574 (push_left_right_boundary, push_menu_pane, push_menu_item):
23575 * keyboard.c (read_key_sequence): Don't pass args with side effects
23576 to AREF, it fails when compiling with -DENABLE_CHECKING.
23577
23578 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
23579
23580 * Makefile.in (${lispsource}international/charprop.el):
23581 Delete this target.
23582
23583 * search.c (boyer_moore): Fix incorrect synching of the trunk and
23584 emacs-unicode-2.
23585
23586 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
23587
23588 * terminal.c (Fdelete_terminal): Clean up the `force' path.
23589
23590 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
23591
23592 * frame.c (Qnoelisp): New symbol.
23593 (syms_of_frame): Initialize it.
23594 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
23595 harmless Elisp code, from a strong `force' from x_connection_closed.
23596 * frame.h (Qnoelisp): Declare.
23597 * xterm.c (x_connection_closed): Pass `noelisp'.
23598
23599 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
23600 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
23601 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
23602 rather than `int' for the type of `type'.
23603
23604 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
23605
23606 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
23607
23608 * Makefile.in (GNUC): Remove support for gcc-1.x.
23609
23610 2008-02-10 Richard Stallman <rms@gnu.org>
23611
23612 * lisp.h (ASET): Use AREF, not ASLOT.
23613
23614 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
23615
23616 * lisp.h (ASET): Check bounds.
23617
23618 2008-02-10 Glenn Morris <rgm@gnu.org>
23619
23620 * buffer.c (mode-name): Doc fix.
23621
23622 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
23623
23624 * Makefile.in:
23625 * emacs.c:
23626 * gmalloc.c:
23627 * keyboard.c:
23628 * lisp.h:
23629 * m/ibm370aix.h:
23630 * process.c:
23631 * regex.c:
23632 * s/hpux.h:
23633 * sysdep.c:
23634 * sysselect.h:
23635 * systty.h:
23636 * unexec.c:
23637 * w32term.c:
23638 * xsmfns.c:
23639 * xterm.c: Remove code that deals with obsolete variables.
23640
23641 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
23642
23643 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
23644 nothing else needs it anymore.
23645
23646 2008-02-09 Eli Zaretskii <eliz@gnu.org>
23647
23648 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
23649 instead of unibyte_char_to_multibyte.
23650
23651 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
23652
23653 * s/gnu-linux.h: Remove commented out code.
23654
23655 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
23656
23657 * Makefile.in: Update what RMS says about using autoconf.
23658 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
23659 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
23660 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
23661 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
23662
23663 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
23664
23665 * keymap.c (Fkey_description): Move side effect outside of macro call.
23666
23667 * xfaces.c (Finternal_make_lisp_face):
23668 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
23669
23670 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
23671 (syms_of_fontset): Use ASET.
23672
23673 * fns.c (concat): Move side effect outside of macro call.
23674 (hash_clear): Use ASET.
23675
23676 2008-02-08 Richard Stallman <rms@gnu.org>
23677
23678 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
23679 If FORCE, and frame has a surrogate minibuffer for another frame,
23680 delete the other frame first.
23681
23682 2008-02-07 Timo Savola <timo.savola@iki.fi>
23683
23684 * xterm.c (x_detect_focus_change): Handle embed client message.
23685 (handle_one_xevent): Ditto.
23686 (handle_one_xevent): If embedded and we get a button press/release,
23687 request focus.
23688 (xembed_set_info, xembed_send_message): New functions.
23689 (x_make_frame_visible): Call xembed_set_info if embedded.
23690 (x_make_frame_invisible): Call xembed_set_info if embedded.
23691 (x_term_init): Initialize Xatom_XEMBED.
23692 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
23693 (x_iconify_frame): Ditto.
23694
23695 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
23696 (enum xembed_info, enum xembed_message, enum xembed_focus)
23697 (enum xembed_modifier, enum xembed_accelerator): New.
23698 (xembed_set_info, xembed_send_message): Declare.
23699 (FRAME_X_EMBEDDED_P): New.
23700
23701 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
23702 gtk_plug_new.
23703
23704 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
23705 window ID of a frame.
23706 (x_window): Reparent frame if embedded.
23707 (Fx_create_frame): Don't set border width if embedded.
23708
23709 * emacs.c (USAGE3): Add --parent-id.
23710 (standard_args): Ditto.
23711
23712 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
23713
23714 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
23715
23716 2008-02-07 Jim Meyering <meyering@redhat.com>
23717
23718 Use "do...while (0)", not "if (1)...else" in macro definitions.
23719 The latter provokes a warning from gcc about the empty else, when
23720 followed by ";". Also, without that trailing semicolon, it would
23721 silently swallow up any following statement.
23722 * syntax.h (SETUP_SYNTAX_TABLE)
23723 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
23724 * buffer.h (DECODE_POSITION): Likewise.
23725 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
23726 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
23727 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
23728 (FETCH_CHAR_ADVANCE): Likewise.
23729 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
23730
23731 2008-02-07 Jim Meyering <meyering@redhat.com>
23732
23733 * lread.c [lint]: Don't include <sys/inode.h>.
23734
23735 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
23736
23737 * xselect.c (x_handle_dnd_message):
23738 * xmenu.c (digest_single_submenu, xmenu_show):
23739 * xdisp.c (with_echo_area_buffer_unwind_data)
23740 (format_mode_line_unwind_data, unwind_format_mode_line)
23741 (display_menu_bar):
23742 * eval.c (Ffetch_bytecode):
23743 * doc.c (store_function_docstring):
23744 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
23745 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
23746 * buffer.c (add_overlay_mod_hooklist): Use ASET.
23747
23748 2008-02-07 Kenichi Handa <handa@m17n.org>
23749
23750 * ftxfont.c (ftxfont_open): Don't set
23751 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
23752
23753 * ftfont.c (ftfont_open): Fix previous change.
23754
23755 2008-02-06 Jason Rumney <jasonr@gnu.org>
23756
23757 * w32font.c (w32font_text_extents): Fill in lbearing metric.
23758 Use cached metrics for ASCII characters.
23759 (w32font_open_internal): Don't set font's owning_frame.
23760 Cache metrics for ASCII characters.
23761
23762 * w32font.h (struct w32font_info): Add ascii_metrics.
23763 Remove owning_frame.
23764
23765 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
23766
23767 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
23768 to negative value.
23769
23770 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
23771
23772 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
23773
23774 * charset.c (syms_of_charset): Set QCtest and Qeq.
23775
23776 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
23777
23778 * process.c (Fstart_process):
23779 * callproc.c (Fcall_process): Handle the case where
23780 Funhandled_file_name_directory returns nil.
23781
23782 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
23783 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
23784 * font.c (check_gstring): Use them and AREF to access the vector before
23785 we know it's really a gstring.
23786 (Ffont_shape_text): Fix typo.
23787 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
23788
23789 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
23790 Declare.
23791
23792 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
23793
23794 2008-02-05 Jason Rumney <jasonr@gnu.org>
23795
23796 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
23797 Set smallest_font_height and smallest_char_width in display info.
23798
23799 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
23800
23801 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
23802
23803 2008-02-05 Miles Bader <miles@gnu.org>
23804
23805 * xfaces.c (get_lface_attributes, merge_named_face)
23806 (lookup_named_face, lookup_derived_face, realize_named_face):
23807 Revert 2008-02-01 change by cyd@stupidchicken.com.
23808
23809 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
23810
23811 * fontset.c (Ffontset_info): Handle the case of inhibitting the
23812 fallback fonts.
23813 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
23814
23815 2008-02-04 Jason Rumney <jasonr@gnu.org>
23816
23817 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
23818 set full_name.
23819 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
23820
23821 2008-02-03 Jason Rumney <jasonr@gnu.org>
23822
23823 * makefile.w32-in (OBJ1): Include font.o here.
23824 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
23825
23826 2008-02-02 Jason Rumney <jasonr@gnu.org>
23827
23828 * makefile.w32-in (temacs): Bump EMHEAP to 21.
23829
23830 2008-02-01 Jason Rumney <jasonr@gnu.org>
23831
23832 * s/cygwin.h: Define VIRT_ADDR_VARIES.
23833
23834 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
23835
23836 2008-02-01 Andreas Schwab <schwab@suse.de>
23837
23838 * Makefile.in (shortlisp, lisp): Update for rename of
23839 ../lisp/language/myanmar.el.
23840
23841 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
23842
23843 * xfaces.c (get_lface_attributes): Delete function.
23844 (merge_named_face, lookup_named_face, lookup_derived_face)
23845 (realize_named_face): Call lface_from_face_name directly, and use
23846 the fact that merge_face_vectors does not alter its FROM argument.
23847
23848 2008-02-01 Jason Rumney <jasonr@gnu.org>
23849
23850 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
23851 input in the default locale. Handle non-Unicode multibyte input.
23852
23853 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23854
23855 * fontset.c (reorder_font_vector): Exclude nil elements from the
23856 font group. Don't try multiple fonts.
23857 (fontset_font): Adjust for the above change.
23858 (Finternal_char_font): Return nil if the found font doesn't
23859 contain the character ch.
23860
23861 * Makefile.in (lisp, shortlisp): Add cham.el.
23862
23863 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23864
23865 * font.h (FONTP): Make it return 1 also for a font-object.
23866
23867 * .gdbinit (xfontset): New function.
23868
23869 * font.c (font_find_for_lface): Check if the character C is
23870 supported or not only for the first font.
23871
23872 * fontset.c (reorder_font_vector): Fix typo.
23873 (fontset_find_font): Don't add a font-spec specifying a script.
23874 Use 0 (not Qt) for the indication of empty font-group. Change the
23875 format of RFONT-DEF. Return Qt if no font in the font-group
23876 support the character.
23877 (fontset_font): Adjust for the above change. If no font was
23878 found the character, remember that.
23879 (face_for_char): Adjust for the change of RFONT-DEF.
23880 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
23881 no font for the target.
23882 (Finternal_char_font): Adjust for the change of RFONT-DEF.
23883
23884 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23885
23886 * font.c (font_load_for_face): Handle the case that the font in
23887 face->lface is a string.
23888
23889 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23890
23891 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
23892
23893 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23894
23895 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
23896 Fix previous change. If the frame is not on a window system,
23897 signal an error.
23898
23899 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23900
23901 * coding.c (decode_coding_object, encode_coding_object):
23902 Adjust marker positions after conversion.
23903
23904 * lisp.h (struct Lisp_Marker): New member need_adjustment.
23905
23906 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23907
23908 * font.c (font_find_for_lface): Fix the handling of the return
23909 value of font_has_char.
23910 (Ffont_shape_text): Fix previous change.
23911
23912 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
23913 (fontset_ref_and_range): Delete it.
23914 (fontset_find_font): Call char_table_ref_and_range instead of
23915 FONTSET_REF_AND_RANGE.
23916 (make_fontset): Don't setup font groups of Latin here.
23917 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
23918 (new_fontset_from_font): Make the specified font the default for
23919 all Latin characters.
23920
23921 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23922
23923 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
23924 is on a window system before accessing the fontset of the frame.
23925
23926 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23927
23928 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
23929
23930 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
23931 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
23932
23933 * font.c (Ffont_shape_text): If the font driver doesn't have a
23934 shaper function, make zero-width glyphs to have at least one-pixel
23935 width. Fix setting of `to' field of glyphs.
23936
23937 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23938
23939 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
23940 glyphs.
23941
23942 * font.h (struct font_driver): Improve docstring of member `shape'.
23943
23944 2008-02-01 Kenichi Handa <handa@m17n.org>
23945
23946 * composite.c (syms_of_composite): Fix docstring of
23947 auto-composition-function.
23948
23949 * font.h (LGLYPH_SIZE): New macro.
23950
23951 * font.c (Ffont_fill_gstring): Stop filling when a character not
23952 supported by the font is found.
23953 (Ffont_shape_text): When a shape callback function returns nil,
23954 try at most two more times with larger gstring.
23955 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
23956
23957 * xdisp.c (handle_auto_composed_prop): Change the argument to
23958 auto-composition-function.
23959
23960 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
23961 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
23962 Lispy glyph and store it in the lgstring.
23963
23964 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
23965
23966 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
23967
23968 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23969
23970 * font.c (Ffont_shape_text): Avoid unnecessary composition.
23971
23972 * fontset.c (Vfont_encoding_charset_alist): New variable.
23973 (syms_of_fontset): DEFVAR it.
23974 (reorder_font_vector, fontset_find_font): Optimize for the case of
23975 no need of reordering.
23976 (face_for_char): Map the charset property by
23977 Vfont_encoding_charset_alist.
23978
23979 2008-02-01 Jason Rumney <jasonr@gnu.org>
23980
23981 * w32font.c (logfonts_match): Don't check adstyle here.
23982 (font_matches_spec): Check here against physical font instead.
23983 (add_font_entity_to_list): Avoid some substitutions.
23984
23985 * font.c (font_parse_fcname): Default weight and slant to normal.
23986 (font_score): Prefer normal fonts if weight or slant unspecified.
23987 (font_score) [WINDOWSNT]: Scale weight difference down to closer
23988 match freetype scores.
23989
23990 2008-02-01 Jason Rumney <jasonr@gnu.org>
23991
23992 * w32font.c (w32font_text_extents): Don't use the frame stored in the
23993 font, as it may have been deleted.
23994 (w32_enumfont_pattern_entity): Map generic family to adstyle using
23995 most common hyphenless variation.
23996 (logfonts_match): Check generic family.
23997 (font_matches_spec): Don't check generic family here.
23998 (fill_in_logfont): Set generic family based on adstyle.
23999
24000 * w32font.h (w32font_get_cache): Update declaration.
24001
24002 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24003
24004 * ftfont.c (ftfont_get_cache): Adjust the argument type.
24005
24006 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
24007 If none of the new drivers are available, call font_update_drivers
24008 with the old drivers.
24009
24010 * w32font.c (w32font_get_cache): Adjust the argument type.
24011
24012 * xfont.c (xfont_get_cache): Adjust the argument type.
24013
24014 * font.h (struct font_driver): Change argument type of get_cache.
24015
24016 * xftfont.c (xftfont_start_for_frame): Delete prototype.
24017
24018 * font.c (Ffont_get): Fix arguments to Fassoc.
24019 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
24020 (font_clear_cache): New function.
24021 (font_list_entities, font_matching_entity): Use font_get_cache.
24022 (font_update_drivers): Call font_clear_cache when finishing a driver.
24023
24024 * fontset.c (fontset_find_font): Fix previous change.
24025
24026 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24027
24028 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
24029 dpyinfo->font_table.
24030 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
24031 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
24032
24033 * font.c (font_at): Handle the case that the arg C is negative.
24034 Handle the unibyte case.
24035 (Ffont_at): Call font_at with the arg C -1.
24036
24037 * xdisp.c (handle_auto_composed_prop): Don't get a character at
24038 the position here, and call font_at with the arg C -1.
24039 Don't check the range of the existing composition at the point.
24040
24041 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24042
24043 * fontset.c (fontset_add): New args charset_id and family.
24044 Change caller.
24045 (load_font_get_repertory, fontset_find_font): Assume that
24046 font_spec is always a font-spec object.
24047 (Fset_fontset_font): Always store a font-spec object in a fontset.
24048
24049 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
24050 instead of get_property_and_range.
24051
24052 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24053
24054 * xftfont.c (struct xftfont_info): Delete the member ft_face.
24055 (xftfont_open): Don't keep locking face.
24056 (xftfont_close): Don't unlock face.
24057 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
24058
24059 * fontset.c (fontset_find_font): Don't prefer a font of
24060 supplementary charset.
24061
24062 2008-02-01 Kenichi Handa <handa@m17n.org>
24063
24064 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
24065 script, langsys_tag to langsys, new member script.
24066 (OTF_TAG_STR): Terminate by '\0'.
24067 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
24068 listing to the script specified in that property. Fix arg to
24069 OTF_check_features.
24070
24071 2008-02-01 Jason Rumney <jasonr@gnu.org>
24072
24073 * w32font.h: New file.
24074
24075 * w32font.c: Include it.
24076 (struct w32font_info): Add owning_frame field. Move to w32font.h.
24077 (w32font_open): Set owning_frame.
24078 (w32font_text_extents): Use owning_frame.
24079 (struct font_callback_data): Add opentype_only field.
24080 (add_font_entity_to_list): Use it to filter fonts.
24081 Don't check against full name.
24082 (w32font_list_internal): New function.
24083 (w32font_list): Use it.
24084 (w32font_match_internal): New function.
24085 (w32font_match): Use it.
24086 (w32font_open_internal): New function.
24087 (w32font_open): Use it.
24088 (w32font_get_cache, w32font_close, w32font_has_char)
24089 (w32font_encode_char, w32font_text_extents, w32font_draw):
24090 Make non-static.
24091
24092 * makefile.w32-in (w32font.o): Depend on w32font.h.
24093
24094 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24095
24096 * charset.c (Fdefine_charset_internal): Record a supplementary
24097 charset at the tail of Vcharset_order_list.
24098
24099 * font.c (Ffont_shape_text): Fix the return value.
24100
24101 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
24102
24103 * xdisp.c (handle_auto_composed_prop): Fix previous change.
24104
24105 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24106
24107 * ftfont.c (struct OpenTypeSpec): New struct.
24108 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
24109 (ftfont_get_open_type_spec): New function.
24110 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
24111
24112 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
24113
24114 2008-02-01 Jason Rumney <jasonr@gnu.org>
24115
24116 * w32font.c (add_font_entity_to_list): Compare only the beginning
24117 of full name.
24118
24119 2008-02-01 Kenichi Handa <handa@m17n.org>
24120
24121 * xdisp.c (handle_auto_composed_prop): Simplify the code.
24122 Never return HANDLED_RECOMPUTE_PROPS.
24123
24124 2008-02-01 Kenichi Handa <handa@m17n.org>
24125
24126 * font.c (font_gstring_produce): Delete it.
24127
24128 * composite.h (COMPOSITION_METHOD):
24129 Handle COMPOSITION_WITH_GLYPH_STRING.
24130
24131 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24132
24133 * xfont.c (Qx): Delete.
24134 (syms_of_xfont): Don't initialize Qx.
24135
24136 * composite.h (enum composition_method):
24137 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
24138
24139 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24140
24141 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
24142 (choose_face_font): Accept new form of font-spec.
24143
24144 * frame.h (font_driver_list): Declare it unconditionally.
24145 (struct frame): Define members font_driver_list and font_data_list
24146 unconditionally.
24147
24148 * fontset.c: Include "font.h" unconditionally.
24149 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
24150 (Fset_fontset_font): Accept a font-spec object.
24151
24152 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
24153 PIXEL_SIZE part a wild card.
24154
24155 * dispextern.h (struct glyph_string): Define members clip and
24156 num_clips unconditionally.
24157 (struct face): Define members font_info and extra unconditionally.
24158
24159 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
24160 ftfont_info only when HAVE_LIBOTF is defined.
24161
24162 2008-02-01 Andreas Schwab <schwab@suse.de>
24163
24164 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
24165 and end.
24166
24167 2008-02-01 Jason Rumney <jasonr@gnu.org>
24168
24169 * w32font.c (w32font_driver): Add new fields.
24170
24171 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24172
24173 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
24174 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
24175 (LIBES): Add @M17N_FLT_CFLAGS@.
24176
24177 * composite.c (compose_text): Don't treat the new style
24178 composition specially.
24179
24180 * emacs.c (main): Call syms_of_font unconditionally.
24181
24182 * font.h (FONT_ENTITY_NOT_LOADABLE)
24183 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
24184 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
24185 (struct font_driver): New member shape.
24186 (font_registry_charsets): Extern it.
24187 (font_find_for_lface, font_prepare_composition): Adjust prototype.
24188 (font_otf_capability, font_drive_otf): Delete their externs.
24189
24190 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
24191 (font_charset_alist, font_registry_charsets): Move from xfont.c
24192 and rename.
24193 (font_prop_validate_otf): New function.
24194 (font_property_table): Register it for QCotf.
24195 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
24196 (font_drive_otf): Delete.
24197 (font_prepare_composition): New arg F. Adjust for the change of
24198 lispy gstring.
24199 (font_find_for_lface): New arg C.
24200 (font_load_for_face): Adjust for the change of font_find_for_lface.
24201 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
24202 lispy gstring.
24203 (Ffont_shape_text): New function.
24204 (Fopen_font): If the font size is not given, use 12-pixel.
24205 (Ffont_at): New arg STRING.
24206 (syms_of_font): Initialize font_charset_alist.
24207 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
24208 conditionally.
24209
24210 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
24211 fonts of the same font-spec. Change the format of RFONT-DEF.
24212 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
24213 Adjust for the change of RFONT-DEF.
24214 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
24215
24216 * ftfont.h: New file.
24217
24218 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
24219 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
24220 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
24221 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
24222 font_otf_capability and font_drive_otf, set ftfont_shape.
24223 (ftfont_list): Adjust for the change of :otf property value.
24224 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
24225 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
24226 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
24227 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
24228 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
24229 (otf_gstring, gstring, m17n_flt_initialized): New variables.
24230
24231 * w32term.c (x_draw_composite_glyph_string_foreground):
24232 Adjust for the change of lispy gstring.
24233
24234 * xdisp.c (handle_composition_prop): Adjust for the change of
24235 lispy gstring. Call a function for auto-composition with the
24236 third arg it->window.
24237 (fill_composite_glyph_string): Adjust for the change of lispy string.
24238 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
24239
24240 * xfaces.c (set_font_frame_param): Adjust for the change of
24241 font_find_for_lface.
24242
24243 * xfont.c (x_font_charset_alist): Move to font.c and rename.
24244 (xfont_registry_charsets): Likewise. Change caller.
24245 (syms_of_xfont): Don't handle x_font_charset_alist.
24246
24247 * xftfont.c: Include "ftfont.h".
24248 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
24249 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
24250 (xftfont_close) [HAVE_LIBOTF]: Close otf.
24251 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
24252 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
24253 Set xftfont_driver.shape to xftfont_shape.
24254
24255 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
24256 the change of lispy gstring.
24257
24258 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24259
24260 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
24261
24262 2008-02-01 Jason Rumney <jasonr@gnu.org>
24263
24264 * w32font.c (w32font_draw): Fill background manually.
24265
24266 2008-02-01 Jason Rumney <jasonr@gnu.org>
24267
24268 * font.c (Qfontp): Remove unused symbol.
24269 (QCantialias): New symbol.
24270 (syms_of_font): Define it.
24271 (font_property_table): Set a validator for QCantialias.
24272
24273 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
24274 Define if not already.
24275 (QCfamily): Share with xfaces.c.
24276 (Qstandard, Qsubpixel, Qnatural): New symbols.
24277 (syms_of_w32font): Define them. Don't define QCfamily here.
24278 (w32_antialias_type, lispy_antialias_type): New functions.
24279 (w32_enumfont_pattern_entity): New arg requested_font.
24280 Set antialias parameter if non-default was requested.
24281 (fill_in_logfont): Fill in lfQuality if :antialias specified.
24282
24283 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24284
24285 * lread.c (read1): Undo the previous change.
24286
24287 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
24288
24289 * frame.c (Fdelete_frame): Call font_update_drivers only when
24290 USE_FONT_BACKEND is defined.
24291
24292 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24293
24294 * font.h (struct font_bitmap): New member bits_per_pixel.
24295 (struct font_driver): New members start_for_frame and end_for_frame.
24296 (struct font_data_list): New struct.
24297 (font_put_frame_data, font_get_frame_data): Extern them.
24298
24299 * frame.h (struct frame): New member font_data_list.
24300
24301 * font.c (font_update_drivers): Call driver->start_for_frame and
24302 driver->end_for_frame at proper timings.
24303 (font_put_frame_data, font_get_frame_data): New functions.
24304 (Ffont_spec): Add usage in the docstring.
24305
24306 * frame.c (make_frame): Initialize f->font_data_list to NULL.
24307 (Fdelete_frame): Call font_update_drivers.
24308
24309 * xftfont.c (struct xftface_info): Delete the member xft_draw.
24310 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
24311 (xftfont_get_xft_draw): New function.
24312 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
24313 (xftfont_end_for_frame): New function.
24314 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
24315
24316 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
24317 Change argument. Cache GCs in the per-frame data.
24318 (struct ftxfont_frame_data): New struct.
24319 (ftxfont_draw_bitmap): New arg gc_fore and flush.
24320 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
24321 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
24322 (ftxfont_end_for_frame): New function.
24323 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
24324
24325 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
24326
24327 2008-02-01 Kenichi Handa <handa@m17n.org>
24328
24329 * xselect.c (Vselection_coding_system)
24330 (Vnext_selection_coding_system): Delete them.
24331 (syms_of_xselect): Don't declare selection-coding-system and
24332 next-selection-coding-system. They are declared in select.el.
24333
24334 2008-02-01 Jason Rumney <jasonr@gnu.org>
24335
24336 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
24337
24338 * w32fns.c: Include imm.h.
24339 (get_composition_string_fn, get_ime_context_fn): New optional
24340 system functions.
24341 (globals_of_w32fns): Load them from imm32.dll.
24342 (ignore_ime_char): New flag.
24343 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
24344 WM_IME_ENDCOMPOSITION messages.
24345
24346 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
24347 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
24348
24349 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24350
24351 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
24352 (READCHAR_REPORT_MULTIBYTE): New macro.
24353 (readchar): New 2nd arg MULTIBYTE.
24354 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
24355 Make symbol's name multibyte according to the multibyteness of the
24356 source.
24357
24358 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24359
24360 * xfaces.c (face_for_overlay_string): Call lookup_face with
24361 correct arguments (fix of synching with the trunk).
24362
24363 2008-02-01 Kenichi Handa <handa@m17n.org>
24364
24365 * font.c (font_prop_validate_symbol, font_prop_validate_style)
24366 (font_prop_validate_non_neg, font_prop_validate_spacing):
24367 Delete argument prop_index.
24368 (font_property_table): Change arguments to validater. Change Callers.
24369 (font_lispy_object): Delete.
24370 (font_at): Use font_find_object instead fo font_lispy_object.
24371
24372 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24373
24374 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
24375 and file names.
24376
24377 2008-02-01 Jason Rumney <jasonr@gnu.org>
24378
24379 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
24380 (font_matches_spec): Remove debug output.
24381 (add_font_entity_to_list): Avoid using substituted fonts.
24382
24383 2008-02-01 Jason Rumney <jasonr@gnu.org>
24384
24385 * doc.c (Fsnarf_documentation):
24386 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
24387
24388 2008-02-01 Miles Bader <miles@gnu.org>
24389
24390 * dispextern.h (struct glyph_row): Only define "clip" field if
24391 HAVE_WINDOW_SYSTEM is defined.
24392
24393 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
24394
24395 Fix up multi-tty merge.
24396
24397 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
24398 and indentation.
24399
24400 * xfaces.c (free_realized_face, clear_face_gcs):
24401 Include font_done_for_face in the input_blocked section, just in case.
24402
24403 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
24404 (get_char_face_and_encoding): Undo last change and remove the *other*
24405 duplicate definition (i.e. keep the one that's better scoped and that
24406 includes code for the font-backend).
24407
24408 * terminal.c (create_terminal): Default keyboard_coding to
24409 `no-conversion' and terminal_coding to `undecided'.
24410
24411 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
24412
24413 * fontset.c (free_realized_fontsets): Check that the table entry does
24414 contain a fontset before trying to compare it to `base'.
24415
24416 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
24417 syms_of_charset, and syms_of_coding earlier because init_window_once
24418 now needs Vcoding_system_hash_table to be setup.
24419
24420 * coding.h (default_buffer_file_coding): Remove.
24421
24422 * coding.c (default_buffer_file_coding): Remove.
24423 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
24424 than ->symbol, and use the terminal-local coding system.
24425 (syms_of_coding): Don't setup the coding-systems that are not
24426 terminal-local.
24427 (Fdefine_coding_system_internal): Use XCAR/XCDR.
24428
24429 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
24430 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
24431
24432 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
24433 in chartab.c and were re-added here by mistake.
24434 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
24435
24436 * doc.c (Fsnarf_documentation):
24437 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
24438 src to etc.
24439
24440 * ChangeLog.10: Add mistakenly removed entry.
24441
24442 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
24443
24444 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
24445
24446 2008-02-01 Miles Bader <miles@gnu.org>
24447
24448 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
24449 Add extra args to FACE_FOR_CHAR.
24450
24451 2008-02-01 Kenichi Handa <handa@m17n.org>
24452
24453 * keymap.c (where_is_internal_1): If key is a cons, store the copy
24454 in sequence.
24455
24456 * chartab.c (map_sub_char_table, map_char_table): If the range
24457 contains just one character, call the function with that character
24458 even if the depth is not 3.
24459
24460 2008-02-01 Jason Rumney <jasonr@gnu.org>
24461
24462 * w32font.c (w32font_text_extents): Calculate metrics for the
24463 whole string.
24464
24465 2008-02-01 Jason Rumney <jasonr@gnu.org>
24466
24467 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
24468
24469 2008-02-01 Jason Rumney <jasonr@gnu.org>
24470
24471 * w32term.c (x_set_glyph_string_clipping):
24472 Use get_glyph_string_clip_rects.
24473 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
24474 Adjust for the change of struct glyph_string.
24475
24476 * w32font.c (w32font_draw): Do clipping here.
24477
24478 2008-02-01 Kenichi Handa <handa@m17n.org>
24479
24480 * xftfont.c (xftfont_draw): Adjust for the change of struct
24481 glyph_string.
24482
24483 * xterm.c (x_set_glyph_string_clipping):
24484 Use get_glyph_string_clip_rects.
24485 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
24486 Adjust for the change of struct glyph_string.
24487
24488 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
24489 the resulting clip(s}.
24490 (expose_overlaps): Add arg r. Change callers. Set it to
24491 row->clip temporarily.
24492 (expose_window): Redraw rows overlapping the exposed area.
24493
24494 * dispextern.h (struct glyph_row): New member clip.
24495 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
24496 clip_height, new member clip, and num_clips.
24497
24498 2008-02-01 Kenichi Handa <handa@m17n.org>
24499
24500 * data.c (Fchar_or_string_p): Fix docstring.
24501
24502 2008-02-01 Kenichi Handa <handa@m17n.org>
24503
24504 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
24505 create a temporary XftDraw object.
24506
24507 2008-02-01 Kenichi Handa <handa@m17n.org>
24508
24509 * font.c (Ffontp): Fix docstring.
24510
24511 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
24512 strong evidence of ISO-2022.
24513
24514 2008-02-01 Kenichi Handa <handa@m17n.org>
24515
24516 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
24517 SYNTAX_ENTRY_FOLLOW_PARENT.
24518
24519 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
24520
24521 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
24522 its type.
24523 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
24524 Update to the new type of weak_hash_tables and next_weak.
24525
24526 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
24527 a plain C pointer to Lisp_Hash_Table.
24528
24529 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
24530 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
24531 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
24532 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
24533 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
24534 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
24535 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
24536 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
24537 (GC_EQ): Remove since they've been identical to their non-GC_
24538 alter-egos ever since the markbit was eradicated.
24539
24540 * alloc.c:
24541 * buffer.c:
24542 * buffer.h:
24543 * data.c:
24544 * fileio.c:
24545 * filelock.c:
24546 * fns.c:
24547 * frame.h:
24548 * lisp.h:
24549 * macterm.c:
24550 * print.c:
24551 * process.c:
24552 * w32fns.c:
24553 * w32menu.c:
24554 * w32term.c:
24555 * xfns.c:
24556 * xmenu.c:
24557 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
24558
24559 2008-02-01 Kenichi Handa <handa@m17n.org>
24560
24561 * chartab.c (map_sub_char_table): Make it work for the top-level
24562 char-table. Fix handling of parent char-table.
24563 (map_char_table): Adjust for the above change.
24564
24565 2008-02-01 Jason Rumney <jasonr@gnu.org>
24566
24567 * w32font.c (Qgdi): Rename from Qw32.
24568
24569 2008-02-01 Jason Rumney <jasonr@gnu.org>
24570
24571 * w32bdf.c (get_quoted_string): Make function static.
24572
24573 2008-02-01 Kenichi Handa <handa@m17n.org>
24574
24575 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
24576 bigger ascent and descent than those of the font, use them as
24577 font's ascent and descent.
24578
24579 2008-02-01 Kenichi Handa <handa@m17n.org>
24580
24581 * Makefile.in (${lispsource}international/charprop.el): Move this
24582 target within "#ifdef HAVE_UNIDATA" and "#endif".
24583
24584 2008-02-01 Kenichi Handa <handa@m17n.org>
24585
24586 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
24587 (shortlisp): Add ../lisp/language/tai-viet.el.
24588
24589 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
24590
24591 * Makefile.in (${lispsource}international/charprop.el): Depend on
24592 temacs${EXEEXT}.
24593
24594 2008-02-01 Jason Rumney <jasonr@gnu.org>
24595
24596 * w32font.c (w32font_close): Delete the GDI font object.
24597
24598 * w32menu.c: Include character.h.
24599
24600 * w32proc.c: Likewise.
24601
24602 * w32select.c: Likewise.
24603
24604 * makefile.w32-in (w32proc.o): Depend on character.h.
24605
24606 2008-02-01 Jason Rumney <jasonr@gnu.org>
24607
24608 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
24609
24610 * w32menu.c (syms_of_w32menu): Likewise.
24611
24612 * w32proc.c (syms_of_ntproc): Likewise.
24613
24614 * w32select.c (syms_of_w32select): Likewise.
24615
24616 * w32term.c (syms_of_w32term): Likewise.
24617
24618 2008-02-01 Jason Rumney <jasonr@gnu.org>
24619
24620 * w32font.c (w32font_draw): Delete brush after using it.
24621
24622 2008-02-01 Jason Rumney <jasonr@gnu.org>
24623
24624 * w32font.c (w32font_open): Don't set font_idx.
24625 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
24626 to font settings.
24627 (w32font_draw): Fill background explicitly.
24628
24629 2008-02-01 Jason Rumney <jasonr@gnu.org>
24630
24631 * w32term.c (w32_initialize): Don't call w32font_initialize.
24632
24633 * w32font.c (w32font_info): Remove subranges.
24634 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
24635 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
24636 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
24637 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
24638 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
24639 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
24640 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
24641 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
24642 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
24643 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
24644 New symbols.
24645 (font_callback_data): New struct.
24646 (w32font_list, w32font_match): Use it.
24647 (w32font_open): Don't populate subranges.
24648 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
24649 (w32font_encode_char): Always return unicode code-point as-is.
24650 (w32font_text_extents): Supply a transformation matrix to
24651 GetGlyphOutline. Never look up by glyph index. Avoid looping
24652 twice. Use unicode version of GetTexExtentPoint32 instead of
24653 glyph index version.
24654 (set_fonts_frame): Remove.
24655 (w32_enumfont_pattern_entity): Add frame parameter, use it to
24656 set frame parameter. Use backward compatible fake foundries.
24657 Save generic family in extra slot under QCfamily. Make width slot
24658 constant. Save QCspacing value. Save list of scripts instead of
24659 binary subranges.
24660 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
24661 (add_font_entity_to_list): Use font_callback_data struct.
24662 Filter unwanted fonts.
24663 (add_one_font_entity_to_list): Use font_callback_data struct.
24664 (w32_registry): Default to iso10646_1.
24665 (fill_in_logfont): Use dpi from extra slot. Don't bother with
24666 string font registries. Don't fill in font name if it is a generic
24667 family name, fill family instead. Use spacing, family and script
24668 extra info to fill pitch, family and charset fields.
24669 (list_all_matching_fonts): Use font_callback_data struct.
24670 (unicode_range_for_char): Remove.
24671 (font_supported_scripts): New function.
24672 (w32font_initialize): Remove.
24673 (syms_of_w32font): Update which symbols are defined.
24674
24675 2008-02-01 Jason Rumney <jasonr@gnu.org>
24676
24677 * font.c (font_pixel_size): Reverse assq_no_quit args.
24678
24679 * w32term.h (FONT_WIDTH): Report max width, not average.
24680 (FONT_MAX_WIDTH): Remove.
24681 (FONT_AVG_WIDTH): New macro.
24682
24683 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
24684 redefinition of FONT_WIDTH.
24685
24686 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
24687 (w32_cache_char_metrics): Use FONT_WIDTH.
24688
24689 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
24690
24691 2008-02-01 Jason Rumney <jasonr@gnu.org>
24692
24693 * w32font.c (w32font_open): Make lfHeight negative.
24694
24695 * w32fns.c (x_default_font_parameter): Use new style font name.
24696 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
24697
24698 2008-02-01 Jason Rumney <jasonr@gnu.org>
24699
24700 * w32font.c (QCsubranges): New symbol.
24701 (w32font_open, w32font_has_char): Get subranges from subproperty
24702 of extra.
24703 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
24704 (syms_of_w32font): Define :subranges symbol.
24705
24706 * font.c (font_put_extra): Expose externally.
24707
24708 * font.h (font_put_extra): Move declaration from font.c.
24709
24710 * font.c (Ffont_get): Use font driver to determine otf capability.
24711 (adjust_anchor): Check if driver defines anchor_point before using.
24712
24713 * w32font.c (w32font_open): Handle size, height and pixel_size better.
24714 (w32font_draw): Use options.
24715 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
24716 Fix detection of truetype fonts.
24717 (registry_to_w32_charset): Handle charsets other than iso8859-1
24718 expressed as lisp symbols.
24719 (w32_registry): Express charset as lisp symbol.
24720 (fill_in_logfont): Reverse pixel and point height logic.
24721 Don't set width here. Set quality to default.
24722
24723 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
24724 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
24725
24726 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
24727 Remove redundant loop and allocation.
24728
24729 * makefile.w32-in (font.o, w32font.o): New objects.
24730 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
24731 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
24732
24733 * xdisp.c (fill_composite_glyph_string): Make the first arg to
24734 STORE_XCHARB a valid l-value.
24735
24736 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
24737 calculations for non-Truetype fonts.
24738 (x_draw_glyph_string): Sync with xterm.c.
24739 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
24740 Remove redundant code.
24741 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
24742
24743 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
24744 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
24745
24746 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
24747 (x_to_w32_charset, w32_to_x_charset): Expose externally.
24748
24749 * w32font.c: New file for w32 font backend.
24750
24751 2008-02-01 Kenichi Handa <handa@m17n.org>
24752
24753 * term.c: Don't include "buffer.h" twice.
24754
24755 2008-02-01 Kenichi Handa <handa@m17n.org>
24756
24757 * character.c (Funibyte_string): New function.
24758 (syms_of_character): Defsubr it.
24759
24760 2008-02-01 Jason Rumney <jasonr@gnu.org>
24761
24762 * w32term.c [USE_FONT_BACKEND]:
24763 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
24764 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
24765 (x_draw_glyph_string, x_draw_glyph_string_foreground)
24766 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
24767 (x_free_frame_resources): Sync with xterm.c.
24768
24769 2008-02-01 Andreas Schwab <schwab@suse.de>
24770
24771 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
24772 char-table size.
24773
24774 2008-02-01 Kenichi Handa <handa@m17n.org>
24775
24776 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
24777
24778 2008-02-01 Kenichi Handa <handa@m17n.org>
24779
24780 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
24781 font_otf_gpos, add font_drive_otf.
24782
24783 * fontset.c (fontset_find_font): Pay attention to font size
24784 specified for a font.
24785 (reorder_font_vector): Check contents of font_def.
24786
24787 * font.c (struct otf_list): Delete it.
24788 (otf_list): Make it a lisp variable.
24789 (otf_open): Use lispy otf_list.
24790 (generate_otf_features): Rename from parse_gsub_gpos_spec.
24791 (check_otf_features): New function.
24792 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
24793 New functions.
24794 (font_drive_otf): New function merging font_otf_gsub and
24795 font_otf_gpos.
24796 (font_open_for_lface): New arg spec. Change argument order.
24797 (font_load_for_face): Adjust for the change of font_open_for_lface.
24798 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
24799 Ffont_otf_gpos.
24800 (syms_of_font): Staticpro otf_list. Delete defsubr of
24801 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
24802
24803 * xfaces.c (set_font_frame_param): Adjust for the change of
24804 font_open_for_lface.
24805
24806 * font.h (font_open_for_lface): Adjust prototype.
24807 (struct font_driver): Delete members otf_gsub and otf_gpos, add
24808 member otf_drive.
24809 (font_otf_gsub, font_otf_gpos): Delete externs.
24810 (font_drive_otf): Extern it.
24811
24812 2008-02-01 Kenichi Handa <handa@m17n.org>
24813
24814 * font.c (font_at): If the window W is not on a window system,
24815 return Qnil.
24816
24817 * coding.c (produce_chars, encode_coding): Don't call
24818 insert_from_gap if no characters to produce.
24819
24820 2008-02-01 Kenichi Handa <handa@m17n.org>
24821
24822 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
24823 Fclear_face_cache.
24824
24825 * xfaces.c (face_for_font): Check also face->font==font->font.font.
24826
24827 2008-02-01 Miles Bader <miles@gnu.org>
24828
24829 * emacs.c (main): Change default value of `enable_font_backend' to 1.
24830 Parse "--disable-font-backend" option.
24831 (standard_args): Add "--disable-font-backend" option.
24832
24833 2008-02-01 Kenichi Handa <handa@m17n.org>
24834
24835 * fontset.c (fontset_find_font): New function.
24836 (fontset_font): Use fontset_find_font.
24837 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
24838 Register the specified font for all Latin characters.
24839 (new_fontset_from_font): Register the specified font for all Latin
24840 characters.
24841 (dump_fontset): For a realized fontset, include the base fontset
24842 name in the returned vector.
24843
24844 2008-02-01 Kenichi Handa <handa@m17n.org>
24845
24846 * character.h (CHAR_STRING): Cast C to unsigned on calling
24847 char_string.
24848
24849 * character.c (char_string): Type of arg C changed to unsigned.
24850 Signal an error if C is an invalid character code.
24851
24852 * editfns.c (general_insert_function, Fchar_to_string):
24853 Use CHARACTERP, not INTEGERP.
24854
24855 2008-02-01 Kenichi Handa <handa@m17n.org>
24856
24857 * character.h (MIN_MULTIBYTE_LEADING_CODE)
24858 (MAX_MULTIBYTE_LEADING_CODE): New macros.
24859
24860 * regex.c (analyse_first): Fix for multibyte characters in "case
24861 charset:" and "case categoryspec:".
24862
24863 2008-02-01 Andreas Schwab <schwab@suse.de>
24864
24865 * Makefile.in (LIBES): Move standard libraries to the end.
24866
24867 2008-02-01 Kenichi Handa <handa@m17n.org>
24868
24869 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
24870 nonzero, don't shrink the buffer nextb.
24871
24872 * buffer.h (struct buffer_text): New member inhibit_shrinking.
24873
24874 * coding.c (coding_alloc_by_making_gap): New arg offset.
24875 (alloc_destination): Call coding_alloc_by_making_gap with the arg
24876 offset.
24877 (decode_coding_iso_2022): Update coding->safe_charsets.
24878 (decode_coding_gap): Temporarily set
24879 current_buffer->text->inhibit_shrinking to 1.
24880
24881 2008-02-01 Kenichi Handa <handa@m17n.org>
24882
24883 * xterm.c (x_draw_composite_glyph_string_foreground):
24884 Fix indexing into elements of s->cmp and s->char2b.
24885
24886 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
24887
24888 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
24889
24890 2008-02-01 Kenichi Handa <handa@m17n.org>
24891
24892 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
24893 target_multibyte instead of multibyte.
24894 (re_match_2_internal): Call bcmp_translate with target_multibyte.
24895 (bcmp_translate): Change the argument name from multibyte to
24896 target_multibyte.
24897
24898 2008-02-01 Kenichi Handa <handa@m17n.org>
24899
24900 These changes are to compile a regexp into a pattern that can be
24901 used both for multibyte and unibyte targets.
24902
24903 * Makefile.in (search.o): Depend on charset.h.
24904
24905 * character.c (multibyte_char_to_unibyte_safe): New function.
24906
24907 * search.c: Include "charset.h".
24908 (compile_pattern_1): Delete argument multibyte. Don't set
24909 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
24910 (compile_pattern): Don't compare cp->buf.target_multibyte.
24911 Compare cp->buf.charset_unibyte.
24912 (compile_pattern): Set cp->buf.target_multibyte.
24913
24914 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
24915
24916 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
24917
24918 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
24919 multibyte. Change callers.
24920 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
24921 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
24922 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
24923 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
24924 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
24925 (regex_compile): Make the compiled pattern usable both for
24926 multibyte and unibyte targets.
24927 (analyse_first): Make the fastmap usable both for multibyte and
24928 unibyte targets.
24929 (TRANSLATE_VIA_MULTIBYTE): Delete.
24930 (re_match_2_internal): Pay attention to the case that the
24931 multibyteness of bufp and target may be different.
24932
24933 2008-02-01 Kenichi Handa <handa@m17n.org>
24934
24935 * xdisp.c (x_produce_glyphs): When a font is not found, make the
24936 empty box occupy at least one column width.
24937
24938 2008-02-01 Miles Bader <miles@gnu.org>
24939
24940 * Makefile.in: Remove redundant HAVE_XFT clause.
24941
24942 2008-02-01 Kenichi Handa <handa@m17n.org>
24943
24944 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
24945
24946 2008-02-01 Kenichi Handa <handa@m17n.org>
24947
24948 * fontset.c (Finternal_char_font): Fix for the case of POSITION
24949 being nil.
24950
24951 2008-02-01 Kenichi Handa <handa@m17n.org>
24952
24953 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
24954
24955 2008-02-01 Kenichi Handa <handa@m17n.org>
24956
24957 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
24958
24959 2008-02-01 Kenichi Handa <handa@m17n.org>
24960
24961 * search.c (simple_search): Fix previous change.
24962
24963 2008-02-01 Kenichi Handa <handa@m17n.org>
24964
24965 * xftfont.c (ftfont_font_format): Extern declaration.
24966
24967 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
24968
24969 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
24970 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
24971
24972 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
24973 (ftfont_font_format): Fix previous change.
24974
24975 * font.h (Ffont_xlfd_name): EXFUN it.
24976
24977 * font.c (font_parse_xlfd): Fix the array size of `f'.
24978 (register_font_driver): Use EQ to compare driver->type.
24979
24980 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
24981 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
24982 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
24983
24984 2008-02-01 Kenichi Handa <handa@m17n.org>
24985
24986 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
24987 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
24988
24989 2008-02-01 Kenichi Handa <handa@m17n.org>
24990
24991 * xfont.c (xfont_open): Set font->format.
24992
24993 * xftfont.c (xftfont_open): Set font->format.
24994
24995 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
24996 (ftfont_list): Include FC_FONTFORMAT in FcObject.
24997 (ftfont_open): Set font->format.
24998 (ftfont_font_format): New function.
24999
25000 * font.h (struct font): New member format.
25001
25002 * font.c (Qopentype): New variable.
25003 (syms_of_font): Defsym it.
25004 (Fquery_font): Change the format of the last element of the return
25005 value.
25006
25007 2008-02-01 Kenichi Handa <handa@m17n.org>
25008
25009 * xfns.c (xic_create_xfontset): Try the default fontset name as a
25010 last resort.
25011
25012 2008-02-01 Kenichi Handa <handa@m17n.org>
25013
25014 * coding.c (detect_coding_charset): Fix detection of multi-byte
25015 charset.
25016
25017 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
25018
25019 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
25020
25021 2008-02-01 Kenichi Handa <handa@m17n.org>
25022
25023 * xdisp.c (get_next_display_element): Set it->face_id for the
25024 first component of a composition.
25025 (x_produce_glyphs): Check if the font is changed or not for composition.
25026
25027 2008-02-01 Kenichi Handa <handa@m17n.org>
25028
25029 * fontset.c (Qlatin): New variable.
25030 (syms_of_fontset): Define it as a lisp symbol.
25031 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
25032
25033 2008-02-01 Kenichi Handa <handa@m17n.org>
25034
25035 * font.c (font_unparse_fcname): Pay attention to the case that
25036 some of font property is a null string.
25037
25038 2008-02-01 Kenichi Handa <handa@m17n.org>
25039
25040 * term.c: Include "composite.h".
25041 (encode_terminal_code): Output all components of composition.
25042 Check the size of encode_terminal_src.
25043 (produce_glyphs): For composition, call produce_composite_glyph.
25044 (append_composite_glyph, produce_composite_glyph): New functions.
25045
25046 * xdisp.c (x_produce_glyphs): In handling composition, if a font
25047 is not found, get font_info from the current ascii face.
25048
25049 2008-02-01 Kenichi Handa <handa@m17n.org>
25050
25051 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
25052 buffer-file-name to Qnil before calling insert_from_buffer.
25053
25054 * font.c (font_unparse_fcname): Pay attention to the case that
25055 foundry is a null string.
25056
25057 2008-02-01 Kenichi Handa <handa@m17n.org>
25058
25059 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
25060
25061 * font.c (Qunicode_sip): New variable.
25062 (syms_of_font): Declare it as a Lisp symbol.
25063
25064 * font.h (Qunicode_sip): Extern it.
25065
25066 2008-02-01 Kenichi Handa <handa@m17n.org>
25067
25068 * composite.c (get_composition_id): Pay attention to TAB component.
25069
25070 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
25071 TAB. Adjust for the change of s->char2b which always points to
25072 the first element of allocated memory.
25073
25074 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
25075
25076 * xdisp.c (handle_composition_prop): Set it->c to the first
25077 non-TAB component.
25078 (fill_composite_glyph_string): Change argument.
25079 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
25080 (x_produce_glyphs): Fix handling of left/right padding.
25081
25082 2008-02-01 Kenichi Handa <handa@m17n.org>
25083
25084 * coding.c (detect_coding_system): Fix for handling off
25085 inhibit_iso_escape_detection. Fix for the case that no coding
25086 system is defined for a specific coding category.
25087
25088 2008-02-01 Kenichi Handa <handa@m17n.org>
25089
25090 * font.c (font_matching_entity): Delete unused local var.
25091
25092 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
25093 opening a font.
25094
25095 * fileio.c (Finsert_file_contents): On recovering a file, assume
25096 Unix-like eol.
25097 (choose_write_coding_system): On auto-saving a file, force
25098 Unix-like eol.
25099
25100 * coding.c (setup_coding_system): Fix setting of
25101 coding->common_flags based on eol_type.
25102 (coding_inherit_eol_type): If PARENT is not nil, be sure to
25103 inherit from it.
25104
25105 2008-02-01 Kenichi Handa <handa@m17n.org>
25106
25107 * alloc.c (NSTATICS): Increas to 0x600.
25108
25109 2008-02-01 Kenichi Handa <handa@m17n.org>
25110
25111 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
25112 (ftfont_list): Don't check :name property.
25113 (ftfont_match): New function.
25114 (ftfont_pattern_entity): If the pattern doesn't contain
25115 FC_SPACING, don't assume FC_MONO.
25116
25117 * font.h (struct font_driver): New member `match'.
25118 (font_update_drivers): Adjust prototype.
25119
25120 * font.c (font_parse_fcname, font_parse_name): Don't change :name
25121 property of FONT.
25122 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring):
25123 Define them unconditionally.
25124 (font_matching_entity): New function.
25125 (font_open_by_name): Try font_matching_entity if exact match is
25126 not found.
25127 (font_update_drivers): Delete the arg FONT. Return a list of
25128 actually used backends. Don't free faces, font caches here.
25129 Don't store data in frame parameters. Don't call x_set_font.
25130 (Ffont_spec): Store :name property as is.
25131 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
25132 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
25133 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
25134 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
25135 Call font->driver->otf_gsub instead of font_otf_gsub.
25136
25137 * frame.c (x_set_font_backend): Do more works that were done in
25138 font_update_drivers before.
25139
25140 * xfont.c (xfont_match): New function.
25141 (xfont_driver): Set xfont_driver.match to xfont_match.
25142 (xfont_draw): Set font in GC if necessary.
25143
25144 * ftxfont.c (ftxfont_match): New function.
25145 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
25146
25147 * xftfont.c (xftfont_match): New function.
25148 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
25149
25150 2008-02-01 Kenichi Handa <handa@m17n.org>
25151
25152 * font.h (struct font): New member scalable.
25153 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
25154 (font_otf_gsub): Adjust prototype.
25155
25156 * font.c (font_otf_capability): Fix handling of the default langsys.
25157 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
25158 Check the contents of SPEC.
25159 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
25160 (check_gstring): New function.
25161 (REPLACEMENT_CHARACTER): New macro.
25162 (font_otf_gsub): New arg alternate_subst. Be sure to set all
25163 glyph codes of GSTRING.
25164 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
25165 (font_prepare_composition): Set cmp->glyph_len.
25166 (font_open_entity): Set font->scalable.
25167 (Ffont_get): Handle :otf property.
25168 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates):
25169 New functions.
25170 (Fquery_font): Use font->font.full_name.
25171 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
25172 Sfont_otf_alternates.
25173
25174 * ftfont.c (ftfont_open): Set font->font.full_name and
25175 font->font.name properly. Fix calculation of font->font.height
25176 and font->min_width.
25177
25178 * ftxfont.c (ftxfont_create_gcs): New function.
25179 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
25180 (ftxfont_draw_backgrond): Fix filling region.
25181 (ftxfont_default_fid): New function.
25182 (ftxfont_open): Set xfont->fid to the return value of
25183 ftxfont_default_fid.
25184 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
25185 (ftxfont_done_face): Free only GCs that are created by
25186 ftxfont_create_gcs.
25187 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
25188
25189 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
25190 Clip to src->width, etc (not src->clip_XXX).
25191
25192 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
25193 FontBackend frame parameter.
25194
25195 2008-02-01 Kenichi Handa <handa@m17n.org>
25196
25197 * font.h (struct font_driver_list): New member `on'.
25198 (Fclear_font_cache): EXFUN it.
25199 (font_update_drivers): Extern it.
25200
25201 * font.c (font_unparse_fcname): Fix typo (swidth->width).
25202 (font_list_entities): Check driver_list->on.
25203 (register_font_driver): Initialize `on' member to 0.
25204 (font_update_drivers): New function.
25205 (Fclear_font_cache): Check driver_list->on.
25206
25207 * frame.h (Qfont_backend): Extern it.
25208 (x_set_font_backend): Extern it.
25209
25210 * frame.c (Qfont_backend): New variable.
25211 (frame_parms): New element for font-backend.
25212 (x_set_font_backend): New function.
25213
25214 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
25215 FontBackend frame parameter.
25216 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
25217 x_set_font_backend.
25218
25219 * xfont.c (xfont_list): Don't try listing by :name property if the
25220 name is not for XLFD.
25221
25222 2008-02-01 Kenichi Handa <handa@m17n.org>
25223
25224 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
25225 (LGLYPH_SET_TO): New macros.
25226 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
25227 element of G is vector or not.
25228 (font_at): Extern it.
25229
25230 * font.c: Include window.h.
25231 (font_lispy_object): New function.
25232 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
25233 end of valid glyph.
25234 (font_close_object): Fix getting (struct font *).
25235 (font_at): New function.
25236 (Ffont_get): If FONT is a font-object, get entity from it.
25237 (Ffont_make_gstring): Initialize elements of glyphs with nil.
25238 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX.
25239 Fix range check.
25240 (Ffont_at): New function.
25241 (syms_of_font): Defsubr Sfont_at.
25242
25243 * xdisp.c (it_props): Move the entry for Qauto_composed to just
25244 before the entry for Qcomposition.
25245 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
25246 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
25247 the font in gstring.
25248 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
25249 LGLYPH_FORM (g) to detect the end of valid glyph.
25250 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
25251 we are composing with gstring.
25252
25253 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
25254 Check if adjustment is vector or not.
25255
25256 * Makefile.in (font.o): Make it depends on window.h.
25257
25258 2008-02-01 Kenichi Handa <handa@m17n.org>
25259
25260 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
25261 adjustment is vector or not.
25262
25263 2008-02-01 Miles Bader <miles@gnu.org>
25264
25265 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
25266
25267 2008-02-01 Kenichi Handa <handa@m17n.org>
25268
25269 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
25270 (LGLYPH_SET_WIDTH): Adjust for the change of LGLYPH format.
25271 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
25272
25273 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
25274 (DEVICE_DELTA): Fix typo.
25275 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
25276 LGLYPH format.
25277
25278 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
25279 the change of LGLYPH format.
25280
25281 2008-02-01 Kenichi Handa <handa@m17n.org>
25282
25283 * ftfont.c (ftfont_list): Fix typo.
25284 (ftfont_build_basic_charsets): Don't include letters with diacritics.
25285
25286 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
25287
25288 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
25289
25290 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
25291 xftface_info is non-NULL.
25292
25293 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
25294
25295 * ftfont.c (ftfont_list): Move misplaced #endif.
25296
25297 2008-02-01 Kenichi Handa <handa@m17n.org>
25298
25299 * ftfont.c (ftfont_list): Pay attention to the case that
25300 FC_CAPABILITY is not defined.
25301
25302 2008-02-01 Kenichi Handa <handa@m17n.org>
25303
25304 * xftfont.c (xftfont_open): Set charset related members to -1.
25305
25306 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
25307 QCname.
25308 (ftfont_open): Set charset related members to -1.
25309
25310 * fontset.c (Votf_script_alist): New variable.
25311 (syms_of_fontset): Initialize it.
25312 (fontset_font): Delete unused variable.
25313
25314 * fontset.h (Votf_script_alist): Extern it.
25315
25316 * font.c (font_find_for_lface): Optimize code.
25317
25318 * font.h (font_close_object, font_merge_old_spec): Extern them.
25319
25320 2008-02-01 Kenichi Handa <handa@m17n.org>
25321
25322 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
25323 (syms_of_font): Initialize them.
25324 (font_pixel_size): Allow float value in dpi.
25325 (font_prop_validate_type): Delete.
25326 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
25327 Change caller.
25328 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
25329 (font_prop_validate_extra): Delete.
25330 (font_prop_validate_spacing): New function.
25331 (font_property_table): Add elements for all known properties.
25332 (get_font_prop_index): Rename from check_font_prop_name.
25333 New argument FROM. Change caller.
25334 (font_prop_validate): Validate all known properties.
25335 (font_put_extra): Delete argument force. Change caller.
25336 (font_expand_wildcards): Make it static. Fix the way of shrinking
25337 the possible range.
25338 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
25339 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
25340 Change caller.
25341 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
25342 (font_parse_fcname): Delete argument merge. Fix parsing of point
25343 size. Don't validate properties values here. Change caller.
25344 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
25345 (font_open_by_name): Delete unused variable.
25346 (Ffont_spec): Likewise. Validate property values.
25347 (Ffont_match_p): New function.
25348
25349 * font.h (QCscalable): Extern it.
25350 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
25351
25352 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
25353
25354 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
25355 (xfont_list_pattern): New function.
25356 (xfont_list): Use xfont_list_pattern.
25357
25358 2008-02-01 Kenichi Handa <handa@m17n.org>
25359
25360 * font.h (Flist_fonts): EXFUN it.
25361
25362 2008-02-01 Jason Rumney <jasonr@gnu.org>
25363
25364 * w32term.c (w32_initialize): Add back smoothing_type and
25365 smoothing_enabled definitions.
25366
25367 2008-02-01 Kenichi Handa <handa@m17n.org>
25368
25369 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
25370 s->face->font on determining underline position.
25371
25372 2008-02-01 Kenichi Handa <handa@m17n.org>
25373
25374 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
25375 (font_has_char): Accept font-object too.
25376 (font_find_for_lface): Try at first with a size specified in face.
25377
25378 2008-02-01 Kenichi Handa <handa@m17n.org>
25379
25380 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
25381 font_open_by_name.
25382
25383 2008-02-01 Kenichi Handa <handa@m17n.org>
25384
25385 * font.h (QCspacing, QCdpi): Extern them.
25386 (enum font_spacing): New enum.
25387 (FONT_PIXEL_SIZE_QUANTUM): New macro.
25388
25389 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
25390 (QCspacing, QCdpi): New variables.
25391 (syms_of_font): Initialize them.
25392 (font_pixel_size): New function.
25393 (font_put_extra): New function.
25394 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
25395 in FONT_EXTRA.
25396 (font_parse_fcname): Handle enumerated values (e.g. bold).
25397 Fix handling font size. Add QCname property that contains only
25398 unknown properties.
25399 (font_score): Change argument. Change caller. Pay attention to
25400 FONT_PIXEL_SIZE_QUANTUM.
25401 (font_sort_entites, font_list_entities, font_find_for_lface)
25402 (font_open_for_lface, font_open_by_name): Fix handling of font size.
25403 (Ffont_spec): Add QCname property that contains only unknown properties.
25404
25405 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq.
25406 Don't include weight in listing pattern, instead check weight of each
25407 listed font. Don't include scalable in pattern. Pay attention to
25408 FONT_PIXEL_SIZE_QUANTUM.
25409
25410 2008-02-01 Kenichi Handa <handa@m17n.org>
25411
25412 * font.c (font_parse_fcname): Fix parsing of point-size.
25413 (font_unparse_fcname): Produce symbolic names for style properties.
25414 (font_list_entities): Handle float size correctly.
25415 (font_open_by_name): Prefer `normal' property values if the name
25416 doesn't specify them.
25417
25418 * fontset.c (Finternal_char_font): Use font_get_name, not
25419 Ffont_xlfd_name.
25420
25421 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
25422 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
25423 pattern. Don't force scalable.
25424
25425 * xftfont.c (xftfont_open): For generating a name, start from
25426 96-byte buffer.
25427
25428 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
25429
25430 * frame.h (x_new_fontset2): Fix prototype.
25431
25432 2008-02-01 Kenichi Handa <handa@m17n.org>
25433
25434 * font.h (struct font_driver): Delete member parse_name.
25435 (font_match_p, font_get_spec, font_parse_fcname)
25436 (font_unparse_fcname): Extern them.
25437 (font_get_name): Adjust prototype.
25438
25439 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
25440 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
25441 (font_expand_wildcards): Fix handling ENCODING field.
25442 Avoid unnecessary checks for weight, slant, and swidth.
25443 (font_parse_fcname): New function.
25444 (font_unparse_fcname): New function.
25445 (font_parse_name): New function.
25446 (font_match_p): New function.
25447 (font_get_name): Change return value to Lisp string.
25448 (font_get_spec): New function.
25449 (Qunspecified, Qignore_defface): Don't extern them.
25450 (font_find_for_lface): Assume that LFACE is fully specified.
25451 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
25452 object, use it for FACE.
25453 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
25454 driver->parse_name.
25455 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
25456
25457 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
25458 prototype.
25459
25460 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
25461 argument F. Don't call Fnew_fontset. Instead, directly call
25462 make_fontset.
25463
25464 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
25465
25466 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
25467 of x_new_fontset2.
25468
25469 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
25470 (Qsans__serif): New variables.
25471 (ftfont_generic_family_list): New variable.
25472 (syms_of_ftfont): Initialize the above variables.
25473 (ftfont_pattern_entity): Delete argument NAME.
25474 (ftfont_list_generic_family): New function.
25475 (ftfont_parse_name): Delete this function.
25476 (ftfont_list): Try generic family only when FcFontList found no font.
25477 (ftfont_list_family): Fix args to FcObjectSetBuild.
25478
25479 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
25480 object in attrs[LFACE_FONT_INDEX].
25481 (set_lface_from_font_name): Cancel all changes for font-backend.
25482 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
25483 function.
25484 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
25485 font object in QCfont attribute.
25486 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
25487 (realize_default_face) [USE_FONT_BACKEND]: Call
25488 set_lface_from_font_and_fontset.
25489
25490 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
25491 "fixed", and signal error here if no suitable font was found.
25492
25493 * xfont.c (xfont_parse_name): Delete this function.
25494
25495 * xftfont.c (xftfont_open): Change coding style of error
25496 handling. Generate fontconfig's fontname pattern.
25497
25498 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
25499 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
25500
25501 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
25502 Both args FONTSET and FONT_OBJECT must be existing ones.
25503
25504 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25505
25506 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
25507
25508 2008-02-01 Kenichi Handa <handa@m17n.org>
25509
25510 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
25511
25512 * font.h (struct font): Fix typo.
25513
25514 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
25515 XLFD_XXX_INDEX.
25516 (enum xlfd_field_mask): New enum.
25517 (intern_font_field): Change argument. Change caller. If digits
25518 are followed by non-digits, return a symbol.
25519 (font_expand_wildcards): New function.
25520 (font_parse_xlfd): Fix wildcard handling.
25521 (Ffont_spec): If :name is specified, reflect the info in the other
25522 properties.
25523
25524 * ftfont.c (ftfont_pattern_entity): Fix typo.
25525 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
25526 locale.
25527
25528 2008-02-01 Kenichi Handa <handa@m17n.org>
25529
25530 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
25531
25532 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
25533 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
25534 registry doesn't specify encoding part.
25535 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
25536 (font_open_by_name): At first try parsing the name.
25537 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
25538 as Lisp symbols.
25539
25540 * fontset.c (reorder_font_vector): Pay attention to the case that
25541 the 3rd element of font_def is nil.
25542 (fontset_font): For the default fontset, append one more fontset
25543 elements for a script-based font specification. Don't add script
25544 attribute on finding a font.
25545 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
25546 font name.
25547 (fontset_ascii_font): If a font can't be opened, return nil.
25548
25549 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
25550 (ftfont_pattern_entity): New function.
25551 (ftfont_get_cache): Assume that freetype_font_cache is already
25552 initialized.
25553 (ftfont_list): Handle the case that a file is specified in font
25554 name. Use ftfont_pattern_entity to generate entities.
25555 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
25556 (syms_of_ftfont): Initialize freetype_font_cache.
25557
25558 * xftfont.c (xftfont_open): Make the font name fontconfig's
25559 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
25560 (xftfont_close): Free font->font.name if not NULL.
25561
25562 * xfont.c (xfont_list): If script is specified for a font, return
25563 null_vector.
25564 (xfont_list_family): Declare argument type.
25565
25566 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
25567 name, set LFACE_FONT (lface) to nil.
25568
25569 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
25570 return Qnil.
25571
25572 2008-02-01 Kenichi Handa <handa@m17n.org>
25573
25574 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
25575 (standard_args): Add "-enable-font-backend".
25576
25577 2008-02-01 Kenichi Handa <handa@m17n.org>
25578
25579 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
25580 (struct xftdraw_list, xftdraw_list): Delete them.
25581 (register_xftdraw, check_xftdraw): Delete them.
25582 (xftfont_prepare_face): Don't call register_xftdraw.
25583 (xftfont_done_face): Don't call check_xftdraw.
25584 (xftfont_draw): Get background color only when with_background is
25585 nonzero.
25586
25587 * xfont.c (xfont_encode_char): Fix calculation of char2b.
25588
25589 2008-02-01 Kenichi Handa <handa@m17n.org>
25590
25591 These changes are for the new font handling codes.
25592
25593 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
25594 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
25595 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
25596 (FONTSRC, FONTOBJ): New variables.
25597 (obj): Add $(FONTOBJ).
25598 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
25599 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
25600 @LIBOTF_LIBS@.
25601 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
25602 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
25603
25604 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
25605
25606 * character.h (Vscript_representative_chars): Extern it.
25607
25608 * character.c (Vscript_representative_chars): New variable.
25609 (syms_of_character): Declare it as a Lisp variable.
25610
25611 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
25612 enable_font_backend is nonzero, accept the composition method
25613 COMPOSITION_WITH_GLYPH_STRING.
25614
25615 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
25616 enumeration COMPOSITION_WITH_GLYPH_STRING.
25617
25618 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
25619 members clip_x, clip_y, clip_width, and clip_height.
25620 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
25621
25622 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
25623 --enable-font-backend. Call syms_of_font.
25624
25625 * fns.c (assoc_no_quit): New function.
25626
25627 * fontset.h (FONT_INFO_FROM_FACE): New macro.
25628 (face_for_font, new_fontset_from_font)
25629 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
25630
25631 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
25632 (fontset_font, fontset_ascii, face_for_char)
25633 (make_fontset_for_ascii_face, Ffont_info)
25634 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
25635 is nonzero, use font-backend mechanism.
25636 (find_font_encoding): Make it non-static.
25637 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
25638 New functions.
25639
25640 * frame.h (struct frame): New members resx and resy.
25641 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
25642 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
25643
25644 * frame.c [USE_FONT_BACKEND]: Include "font.h".
25645 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
25646
25647 * lisp.h (assoc_no_quit): Extern it.
25648
25649 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
25650 Through out the file, use FONT_INFO_FROM_FACE instead of
25651 FONT_INFO_FROM_ID, use get_per_char_metric instead of
25652 rif->per_char_metric.
25653 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
25654 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
25655 (get_glyph_face_and_encoding, fill_composite_glyph_string)
25656 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
25657 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
25658 nonzero, use font-backend mechanism.
25659 (get_per_char_metric): New function.
25660
25661 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
25662 (set_lface_from_font_name)
25663 (set_font_frame_param, free_realized_face)
25664 (prepare_face_for_display, clear_face_gcs)
25665 (Finternal_set_font_selection_order, realize_x_face)
25666 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
25667 font-backend mechanism.
25668 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
25669 (load_face_font) [USE_FONT_BACKEND]: Abort.
25670 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
25671 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
25672
25673 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
25674 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
25675 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
25676 nonzero, register all available font drivers.
25677 Call x_default_font_parameter for deciding a font.
25678 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
25679
25680 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
25681 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
25682 (x_set_glyph_string_clipping_exactly)
25683 (x_compute_glyph_string_overhangs)
25684 (x_draw_glyph_string_foreground)
25685 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
25686 (x_free_frame_resources) [USE_FONT_BACKEND]: If
25687 enable_font_backend is nonzero, use font-backend mechanism.
25688 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
25689
25690 2008-02-01 Kenichi Handa <handa@m17n.org>
25691
25692 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
25693 system_eol_type.
25694 (syms_of_coding): Initialize system_eol_type.
25695
25696 * process.c (Fset_process_coding_system): Inherit system's eol
25697 format if necessary.
25698
25699 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25700
25701 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
25702
25703 2008-02-01 Kenichi Handa <handa@m17n.org>
25704
25705 * coding.c (decode_eol): Pay attention to buffer relocation in
25706 del_range_2.
25707 (decode_coding): Call decode_eol before restoring undo_list.
25708
25709 2008-02-01 Kenichi Handa <handa@m17n.org>
25710
25711 * charset.c (Fdefine_charset_internal): Fix setting of
25712 emacs_mule_bytes.
25713
25714 2008-02-01 Kenichi Handa <handa@m17n.org>
25715
25716 * keyboard.c (read_char): Check if C is a character or not before
25717 looking up Vkeyboard_translate_table.
25718
25719 2008-02-01 Kenichi Handa <handa@m17n.org>
25720
25721 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION):
25722 Fix condition to terminate the loop.
25723
25724 2008-02-01 Kenichi Handa <handa@m17n.org>
25725
25726 * coding.c (produce_composition): Compare charbuf[i] instead of
25727 args[i] against 0.
25728 (Fterminal_coding_system): Use EQ to compare Lisp objects.
25729
25730 2008-02-01 Kenichi Handa <handa@m17n.org>
25731
25732 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
25733 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
25734 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
25735 detect_coding.
25736 (emacs_mule_char): Handle old style (Emacs 20) component character
25737 of a composition.
25738 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
25739 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
25740 composition rule.
25741 (decode_coding_emacs_mule): Handle invalid bytes correctly.
25742
25743 2008-02-01 Kenichi Handa <handa@m17n.org>
25744
25745 * coding.c (encode_coding_ccl): Allocate destination dynamically
25746 when necessary.
25747
25748 2008-02-01 Kenichi Handa <handa@m17n.org>
25749
25750 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
25751 the loop. When quitted, show a proper error message.
25752
25753 2008-02-01 Kenichi Handa <handa@m17n.org>
25754
25755 * xterm.c (x_set_glyph_string_clipping_exactly):
25756 Set src->clip_head and src->clip_tail temporarily instead of src->hl.
25757
25758 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
25759 character sequence.
25760 (Fccl_execute_on_string): Use ASET, not XSET.
25761
25762 2008-02-01 Kenichi Handa <handa@m17n.org>
25763
25764 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
25765
25766 2008-02-01 Kenichi Handa <handa@m17n.org>
25767
25768 * coding.c (decode_coding): Fix the condition of terminating the
25769 decoding loop.
25770
25771 2008-02-01 Kenichi Handa <handa@m17n.org>
25772
25773 * data.c (Faset): On setting a character bigger than 255 in a
25774 unibyte string, signal an error instead of make the string multibyte.
25775
25776 2008-02-01 Kenichi Handa <handa@m17n.org>
25777
25778 * charset.c (map_charset_chars): Fix for ascii-compatible charset
25779 made by a mapping table.
25780
25781 2008-02-01 Kenichi Handa <handa@m17n.org>
25782
25783 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
25784 not.
25785 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
25786 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
25787
25788 * xterm.c (x_draw_composite_glyph_string_foreground):
25789 Check s->face is NULL or not.
25790
25791 2008-02-01 Kenichi Handa <handa@m17n.org>
25792
25793 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
25794 (x_draw_glyph_string): Fix drawing of right_overhang and
25795 left_overhang around/on cursor.
25796
25797 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
25798
25799 2008-02-01 Kenichi Handa <handa@m17n.org>
25800
25801 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
25802
25803 2008-02-01 Kenichi Handa <handa@m17n.org>
25804
25805 * coding.c (Fdefine_coding_system_internal)
25806 (Fdefine_coding_system_alias): Avoid a duplicated element in
25807 Vcoding_system_alist.
25808
25809 2008-02-01 Kenichi Handa <handa@m17n.org>
25810
25811 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
25812
25813 * coding.c (Qcoding_system_define_form): New variable.
25814 (syms_of_coding): Intern and staticpro it.
25815 (Fcoding_system_p): Check Qcoding_system_define_form.
25816 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
25817
25818 * coding.h (CODING_SYSTEM_P): If ID is not available, call
25819 Fcoding_system_p.
25820 (CHECK_CODING_SYSTEM): If ID is not available, call
25821 Fcheck_coding_system.
25822 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
25823 Try also Fcheck_coding_system.
25824
25825 2008-02-01 Kenichi Handa <handa@m17n.org>
25826
25827 * coding.c (code_conversion_restore): GCPRO arg.
25828
25829 2008-02-01 Kenichi Handa <handa@m17n.org>
25830
25831 * character.c (lisp_string_width): Check multibyteness of STRING.
25832
25833 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25834
25835 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
25836 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
25837 (decode_mac_font_name): Use decode_coding_c_string instead of
25838 decode_coding.
25839 (x_load_font): Initialize fontp->fontset to -1.
25840 Set fontp->encoding_type.
25841
25842 2008-02-01 Kenichi Handa <handa@m17n.org>
25843
25844 * search.c (search_buffer): Give up BM search on case-fold-search
25845 if one of a target character has a case-equivalence of different
25846 byte length even if that target character is an ASCII.
25847 (simple_search): Fix calculation of byte length of matched text.
25848 (boyer_moore): Fix handling of case-equivalent multibyte characters.
25849
25850 2008-02-01 Kenichi Handa <handa@m17n.org>
25851
25852 * coding.c (decode_coding): Fix handling of invalid bytes.
25853
25854 2008-02-01 Kenichi Handa <handa@m17n.org>
25855
25856 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
25857 Unicode characters.
25858
25859 2008-02-01 Kenichi Handa <handa@m17n.org>
25860
25861 * coding.c (encode_coding_object): If a pre-write-conversion
25862 function makes a new buffer, kill it.
25863
25864 2008-02-01 Kenichi Handa <handa@m17n.org>
25865
25866 * coding.c (QCascii_compatible_p): New variable.
25867 (syms_of_coding): Initialize it.
25868 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
25869 calling string_char.
25870 (record_conversion_result): Add `default:' case.
25871 (coding_charset_list): Delete unused variable `coding_type'.
25872 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
25873 property in the plist of the coding system.
25874 (Fcoding_system_put): Check QCascii_compatible_p.
25875
25876 2008-02-01 Miles Bader <miles@gnu.org>
25877
25878 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
25879 removed calculation of frame `f', as it's now used.
25880
25881 2008-02-01 Kenichi Handa <handa@m17n.org>
25882
25883 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
25884 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
25885 (UNIDATA): New variable.
25886 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
25887 (bootstrap-emacs${EXEEXT}): Depends on charprop.el.
25888 Run $(RUN_TEMACS) unconditionally.
25889
25890 2008-02-01 Kenichi Handa <handa@m17n.org>
25891
25892 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
25893 (admindir): New variable.
25894 ($(lispsource)international/charprop.el): New target.
25895
25896 2008-02-01 Miles Bader <miles@gnu.org>
25897
25898 * character.c (chars-in-region): Remove obsolete function.
25899 (syms_of_character): Remove its initialization.
25900
25901 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
25902
25903 * w32select.c (validate_coding_system)
25904 (setup_windows_coding_system): New functions.
25905 (convert_to_handle_as_coded, Fw32_get_clipboard_data):
25906 Use setup_windows_coding_system.
25907 (setup_config, Fw32_get_clipboard_data):
25908 Use validate_coding_system.
25909 (Fx_selection_exists): Move call to setup_config to a place
25910 where signals are allowed.
25911
25912 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
25913 (Fcheck_coding_system): Add declarations.
25914
25915 2008-02-01 Kenichi Handa <handa@m17n.org>
25916
25917 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
25918
25919 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25920
25921 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
25922 string as the second argument for x_new_fontset.
25923
25924 2008-02-01 Kenichi Handa <handa@m17n.org>
25925
25926 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
25927 (encode_coding_object): Use safe_call instead of call2.
25928
25929 2008-02-01 Kenichi Handa <handa@m17n.org>
25930
25931 * fontset.c (Fset_fontset_font): Check family element of a given vector.
25932
25933 * Makefile.in (lisp): Include charprop.el.
25934
25935 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25936
25937 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
25938 Not sure if it's unnecessary.
25939
25940 2008-02-01 Steven Tamm <steventamm@mac.com>
25941
25942 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
25943 some possibly unnecessary fontset checking code that crashed
25944 when creating a new frame.
25945
25946 2008-02-01 Kenichi Handa <handa@m17n.org>
25947
25948 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
25949 lookup_face.
25950
25951 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
25952
25953 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
25954
25955 2008-02-01 Kenichi Handa <handa@m17n.org>
25956
25957 * coding.c: Cancel the change done in HEAD on 2008-02-01.
25958 (coding_charset_list): New function.
25959
25960 * coding.h (coding_charset_list): Extern it.
25961
25962 2008-02-01 Kenichi Handa <handa@m17n.org>
25963
25964 * fontset.c (Fset_fontset_font): Call find_font_encoding with
25965 concatenation of family and registry.
25966
25967 2008-02-01 Kenichi Handa <handa@m17n.org>
25968
25969 * character.h (BYTE8_STRING): Fix typo.
25970
25971 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
25972 string to multibyte (sync to HEAD).
25973
25974 * casefiddle.c (casify_region): Handle changes in byte-length
25975 using replace_range_2 (sync to HEAD).
25976
25977 2008-02-01 Andreas Schwab <schwab@suse.de>
25978
25979 * chartab.c (map_char_table): GCPRO table and arg.
25980
25981 2008-02-01 Kenichi Handa <handa@m17n.org>
25982
25983 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
25984 already at limit.
25985
25986 2008-02-01 Kenichi Handa <handa@m17n.org>
25987
25988 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
25989 instead of fast_c_string_match_ignore_case.
25990 (find_font_encoding): Change argument to Lisp_Object.
25991 Use fast_string_match_ignore_case instead of
25992 fast_c_string_match_ignore_case. Change caller.
25993
25994 2008-02-01 Kenichi Handa <handa@m17n.org>
25995
25996 * xdisp.c (get_next_display_element): In unibyte case, decide to
25997 display in octal form by checking a character by
25998 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
25999
26000 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
26001
26002 * character.c (unibyte_has_multibyte_table): New variable.
26003
26004 * character.h (unibyte_has_multibyte_table): Extern it.
26005 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
26006
26007 2008-02-01 Kenichi Handa <handa@m17n.org>
26008
26009 * coding.c (encode_coding_iso_2022): Fix handling of charset
26010 annotation.
26011
26012 2008-02-01 Kenichi Handa <handa@m17n.org>
26013
26014 * coding.c (setup_coding_system): If coding_system is nil, use
26015 Qundecided.
26016 (Fterminal_coding_system): Return nil if terminal coding system is
26017 `undecided'.
26018 (syms_of_coding): Define coding-system `undecided' here.
26019 Setup terminal_coding as `undecided'.
26020
26021 2008-02-01 Kenichi Handa <handa@m17n.org>
26022
26023 * xdisp.c (message_dolog, set_message_1):
26024 Call unibyte_char_to_multibyte with arg type int.
26025
26026 * lread.c (read1): Fix reading of a char-table.
26027
26028 * print.c (print_object): Include sub char-table in circularities
26029 detection.
26030
26031 2008-02-01 Kenichi Handa <handa@m17n.org>
26032
26033 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
26034 Append the found sequences in car of ARGS instead of prepending.
26035
26036 2008-02-01 Kenichi Handa <handa@m17n.org>
26037
26038 * fileio.c (report_file_error): Make a unibyte string from
26039 strerror (errorno).
26040 (Fsubstitute_in_file_name): Fix the arg to
26041 unibyte_char_to_multibyte. It is evaluated twice.
26042
26043 2008-02-01 Kenichi Handa <handa@m17n.org>
26044
26045 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
26046
26047 2008-02-01 Kenichi Handa <handa@m17n.org>
26048
26049 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
26050 BOM is not found.
26051 (detect_coding, detect_coding_system): Optimization for ISO-2022
26052 when no 8-bit data is found.
26053
26054 2008-02-01 Jason Rumney <jasonr@gnu.org>
26055
26056 * w32fns.c (x_to_w32_font): Update to use new coding struct.
26057
26058 2008-02-01 Kenichi Handa <handa@m17n.org>
26059
26060 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
26061 CHARS.
26062
26063 2008-02-01 Steven Tamm <steventamm@mac.com>
26064
26065 * macterm.c (mac_encode_char): Add charset argument and update
26066 to use encoding_type.
26067 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
26068 switch to pure fontset.
26069 (decode_mac_font_name): Temporarily remove decoding.
26070 (x_font_name_to_mac_font_name): Temporarily remove encoding.
26071 (x_load_font): Temporarily remove encoding.
26072
26073 2008-02-01 Kenichi Handa <handa@m17n.org>
26074
26075 * xfaces.c (Fface_font): If frame is not on a window system,
26076 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
26077 refer to face->font.
26078 (split_font_name_into_vector, build_font_name_from_vector)
26079 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
26080 when HAVE_WINDOW_SYSTEM is defined.
26081
26082 2008-02-01 Kenichi Handa <handa@m17n.org>
26083
26084 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
26085 (x_produce_glyphs): Fix setting of members of cmp in case
26086 cmp->glyph_len is zero.
26087
26088 * fontset.c (Fset_fontset_font): Fix docstring.
26089 (Ffontset_info): Make it backward compatible. New arg ALL.
26090
26091 2008-02-01 Kim F. Storm <storm@cua.dk>
26092
26093 * process.c (read_process_output): Grow decoding_buf when needed;
26094 this could cause a crash in allocate_string and compact_small_strings.
26095
26096 2008-02-01 Kenichi Handa <handa@m17n.org>
26097
26098 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
26099
26100 2008-02-01 Kenichi Handa <handa@m17n.org>
26101
26102 * coding.c (setup_coding_system): Set coding->common_flags
26103 correctly for raw-text.
26104 (consume_chars): On encoding unibyte text by raw-text, don't check
26105 multibyte form.
26106 (encode_coding): On encoding by raw-text, never use translation tables.
26107
26108 * fileio.c (e_write): Short cut for the case of no encoding.
26109
26110 2008-02-01 Kenichi Handa <handa@m17n.org>
26111
26112 * coding.c (detect_coding, detect_coding_system): Delete unused
26113 variables.
26114
26115 2008-02-01 Kenichi Handa <handa@m17n.org>
26116
26117 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
26118 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
26119
26120 2008-02-01 Kenichi Handa <handa@m17n.org>
26121
26122 * coding.c (Ffind_coding_systems_region_internal):
26123 Include raw-text and no-conversion in the result.
26124
26125 2008-02-01 Kenichi Handa <handa@m17n.org>
26126
26127 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
26128 (load_font_get_repertory): Delete unnecessary check of ENCODING of
26129 FONT_DEF.
26130 (font_def_arg, add_arg, from_arg, to_arg): New args.
26131 (set_fontset_font): Change argument.
26132 (Fset_fontset_font): Fix for the case that TARGET is a script
26133 name and charset name.
26134 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
26135
26136 2008-02-01 Kenichi Handa <handa@m17n.org>
26137
26138 * fontset.c (fontset_font): Rename from fontset_face. Change return
26139 value.
26140 (face_suitable_for_char_p, face_for_char): Adjust for the change
26141 of fontset_font.
26142 (make_fontset_for_ascii_face): Fix setting of the fontset element
26143 for ASCII.
26144 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
26145 to get a font name.
26146 (Ffontset_info): Adjust for the change of fontset_font.
26147
26148 * coding.c (emacs_mule_char): Check invalid code more rigidly.
26149
26150 * character.h (LEADING_CODE_LATIN_1_MIN)
26151 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
26152
26153 2008-02-01 Kenichi Handa <handa@m17n.org>
26154
26155 * editfns.c (check_translation): New function.
26156 (Ftranslate_region_internal): Handle M:N mapping.
26157
26158 2008-02-01 Kenichi Handa <handa@m17n.org>
26159
26160 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
26161
26162 2008-02-01 Kenichi Handa <handa@m17n.org>
26163
26164 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
26165 goto invalid_code.
26166 (decode_coding_iso_2022): Fix handling of invalid designation.
26167
26168 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
26169 after calling code_conversion_save.
26170
26171 2008-02-01 Kenichi Handa <handa@m17n.org>
26172
26173 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
26174
26175 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
26176
26177 * fontset.c: Include "intervals.h".
26178 (fontset_face): Fix comparing of Lisp_Objects.
26179 (free_face_fontset, new_fontset_from_font_name):
26180 Fix Lisp_Object/int mixup.
26181
26182 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
26183
26184 * coding.c: Add many prototypes for static functions.
26185 (get_translation_table): Allow max_lookup to be NULL.
26186 (decode_coding, Ffind_coding_systems_region_internal)
26187 (Funencodable_char_position, Fcheck_coding_systems_region):
26188 Call get_translation_table with max_lookup NULL.
26189
26190 2008-02-01 Kenichi Handa <handa@m17n.org>
26191
26192 * coding.c (get_translation_table): Declare it as Lisp_Object.
26193 (LOOKUP_TRANSLATION_TABLE): New macro.
26194 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
26195 instead of CHAR_TABLE_REF.
26196
26197 2008-02-01 Kenichi Handa <handa@m17n.org>
26198
26199 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
26200 annotation data format.
26201 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
26202 Change arguments FROM and TO to single argument NCHARS. Change caller.
26203 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
26204 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
26205 (decode_coding_ccl, decode_coding_charset): Pay attention to
26206 coding->charbuf_used.
26207 (get_translation): New function.
26208 (produce_chars): New arguments translation_table and last_block.
26209 Translate characters here. Return number of carryover chars.
26210 Change caller.
26211 (produce_composition): New argument pos. Change caller.
26212 Adjust for the change of annotation data format.
26213 (produce_charset, produce_annotation): Likewise.
26214 (decode_coding, encode_coding): Don't call translate_chars.
26215 (consume_chars): New arg translation_table. Change caller.
26216 (translate_chars): Delete.
26217 (syms_of_coding): Make translation-table's number of extra slots 2.
26218
26219 2008-02-01 Kenichi Handa <handa@m17n.org>
26220
26221 * search.c (simple_search): Fix setting this_pos_byte in backward
26222 search.
26223
26224 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
26225 byte sequence.
26226 (detect_coding_ccl): Fix setting of the variable valids.
26227
26228 2008-02-01 Kenichi Handa <handa@m17n.org>
26229
26230 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
26231
26232 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
26233
26234 * editfns.c (Ftranslate_region_internal): Rename from
26235 Ftranslate_region. Accept a char-table in TABLE.
26236 (syms_of_editfns): Defsubr Stranslate_region_internal.
26237
26238 * xfaces.c (set_lface_from_font_name): If a font is specified for
26239 a frame, generate a fontset from the font.
26240 (build_scalable_font_name): If the scalable font is requested for
26241 a specific size, don't change that size.
26242 (try_font_list): Try a scalable font also in the case that a
26243 pattern string is specified.
26244
26245 2008-02-01 Kenichi Handa <handa@m17n.org>
26246
26247 * xfaces.c (Fface_font): New optional arg CHARACTER.
26248
26249 2008-02-01 Kenichi Handa <handa@m17n.org>
26250
26251 * charset.h (CHARSET_OFFSET): New macro.
26252
26253 2008-02-01 Kenichi Handa <handa@m17n.org>
26254
26255 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
26256
26257 * fontset.c (fontset_face): Handle the case that repertory is a
26258 char-table.
26259 (find_font_encoding): Return nil for unknown encoding.
26260 (Fset_fontset_font): Ignore a font of unknown encoding.
26261
26262 2008-02-01 Kenichi Handa <handa@m17n.org>
26263
26264 * keymap.c (describe_vector): Handle default value of a char table.
26265
26266 * fontset.c (fontset_face): Handle fallback fonts correctly.
26267 (Ffontset_info): Return infomation about fallback fonts.
26268
26269 2008-02-01 Kenichi Handa <handa@m17n.org>
26270
26271 * fontset.c (FONTSET_DEFAULT): New macro.
26272 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
26273 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
26274 the case that it is nil.
26275 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
26276 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
26277
26278 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
26279 subset or superset.
26280
26281 2008-02-01 Kenichi Handa <handa@m17n.org>
26282
26283 * emacs.c (main): Call init_charset after syms_of_XXX.
26284
26285 * charset.c (Vcharset_map_directory): Delete.
26286 (Vcharset_map_path): New variable.
26287 (load_charset_map_from_file): Use Vcharset_map_path instead.
26288 (init_charset): Initialize Vcharset_map_path.
26289 (syms_of_charset): Delete declaration of "charset-map-directory",
26290 add declaration of "charset-map-path".
26291
26292 2008-02-01 Kenichi Handa <handa@m17n.org>
26293
26294 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
26295 ASCII only string.
26296
26297 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
26298
26299 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
26300 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
26301
26302 2008-02-01 Kenichi Handa <handa@m17n.org>
26303
26304 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
26305
26306 * coding.c (QCmnemonic, QCdefalut_char)
26307 (QCdecode_translation_table, QCencode_translation_table)
26308 (QCpost_read_conversion, QCpre_write_conversion): New variables.
26309 (get_translation_table): Return a list of translation tables if
26310 necessary.
26311 (decode_coding): Call get_translation_table with ENCODEP 0.
26312 (char_encodable_p): If translation_table is non-nil, always call
26313 translate_char.
26314 (Fdefine_coding_system_internal): Accept list of translation
26315 tables as :encode-translation-table and :decode-translation-table.
26316 (Fcoding_system_put): New function.
26317 (syms_of_coding): Declare new symbols.
26318 Defsubr Scoding_system_put.
26319 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
26320 typically JISX0212.
26321
26322 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
26323 when the charset is superset type.
26324
26325 * character.c (translate_char): Accept list of translation tables.
26326
26327 2008-02-01 Kenichi Handa <handa@m17n.org>
26328
26329 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
26330 (CODING_ATTR_TRANS_TBL): New macro.
26331
26332 * coding.c (get_translation_table): New function.
26333 (translate_chars): Fix the bug of skipping annotation data.
26334 (decode_coding, encode_coding): Utilize get_translation_table.
26335 (char_encodable_p, Funencodable_char_position): Translate char if
26336 necessary.
26337 (Ffind_coding_systems_region_internal)
26338 (Fcheck_coding_systems_region): Setup translation table for encode
26339 in a coding system attribute vector in advance.
26340 (Fdefine_coding_system_internal): Allow a symbol as translation
26341 table. For shift-jis type coding system, allow 4th charset.
26342
26343 2008-02-01 Kenichi Handa <handa@m17n.org>
26344
26345 * coding.c (decode_coding_sjis): Check the first byte rigidly.
26346
26347 * xdisp.c (get_next_display_element): Pass -1 as POS to
26348 FACE_FOR_CHAR if displaying a C-string.
26349
26350 2008-02-01 Kenichi Handa <handa@m17n.org>
26351
26352 * composite.c (get_composition_id): Handle xoff and yoff in a
26353 composition rule.
26354
26355 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
26356 (struct composition): New member lbearing and rbearing.
26357
26358 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
26359 (x_get_glyph_overhangs): Handle a composition glyph.
26360 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
26361
26362 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
26363 composition glyph.
26364
26365 2008-02-01 Kenichi Handa <handa@m17n.org>
26366
26367 * print.c: Include charset.h.
26368 (Vprint_charset_text_property): New variable.
26369 (Qdefault): Extern it.
26370 (PRINT_STRING_NON_CHARSET_FOUND)
26371 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
26372 (print_check_string_result): New variable.
26373 (print_check_string_charset_prop): New function.
26374 (print_prune_charset_plist): New variable.
26375 (print_prune_string_charset): New function.
26376 (print_object): Call print_prune_string_charset if
26377 Vprint_charset_text_property is not t.
26378 (print_interval): Print nothing if interval->plist is nil.
26379 (syms_of_print): Declare Vprint_charset_text_property as a lisp
26380 variable. Init and staticpro print_prune_charset_plist.
26381
26382 2008-02-01 Kenichi Handa <handa@m17n.org>
26383
26384 * fontset.c (new_fontset_from_font_name): Use the specified font
26385 for all characters in the new fontset.
26386
26387 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
26388 OBJECT args.
26389
26390 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
26391 OBJECT args for composition too.
26392
26393 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
26394 OBJECT args.
26395
26396 2008-02-01 Kenichi Handa <handa@m17n.org>
26397
26398 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
26399
26400 * fontset.c (reorder_font_vector): Adjust for the change of
26401 FONT_DEF format.
26402 (fontset_face): New arg id. Change caller.
26403 (face_for_char): New args pos and object.
26404 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
26405 (fs_query_fontset): Check NAME by Fassoc too.
26406 (Fset_fontset_font): Allow non-XLFD font name.
26407 (Ffontset_info): Adjust for the change of FONT_DEF format.
26408
26409 * fontset.h (face_for_char): Adjust prototype.
26410
26411 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
26412 (append_space, extend_face_to_end_of_line)
26413 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
26414 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
26415
26416 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
26417 POS and OBJECT args.
26418
26419 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
26420 POS and OBJECT args.
26421
26422 2008-02-01 Jason Rumney <jasonr@gnu.org>
26423
26424 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
26425 of GlobalAlloc'ed memory.
26426
26427 2008-02-01 Kenichi Handa <handa@m17n.org>
26428
26429 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
26430
26431 * charset.h (charset_table_used): Delete extern.
26432
26433 * charset.c (charset_table_used): Make it static.
26434 (map_charset_chars): Fix args to c_function with.
26435
26436 * chartab.c (map_sub_char_table_for_charset): Fix args to
26437 c_function with.
26438
26439 * coding.h (enum coding_result_code):
26440 Delete CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
26441
26442 * coding.c (Qinsufficient_source, Qinconsistent_eol)
26443 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
26444 (Vlast_code_conversion_error): New variables.
26445 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
26446 (ONE_MORE_BYTE): Record error if any instead of signaling an
26447 error. If non-ASCII multibyte char is found, return the negative
26448 value of the code. All callers changed to check it.
26449 (ONE_MORE_BYTE_NO_CHECK): Likewise.
26450 (record_conversion_result): New function. Change all codes setting
26451 coding->result to call this function.
26452 (detect_coding_utf_8, decode_coding_utf_8)
26453 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
26454 Don't use the local variable incomplete.
26455 (emacs_mule_char): Change the second arg to `const'.
26456 (decode_coding): Fix of flushing out unprocessed data.
26457 (make_conversion_work_buffer): Fix making of a work buffer.
26458 (decode_coding_object): Return coding->dst_object.
26459
26460 * fontset.c (set_fontset_font): Fix args.
26461
26462 * lisp.h (CHARACTERBITS): Define as 22.
26463
26464 * process.c (send_process): Be sure to set coding->src_multibyte.
26465
26466 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
26467
26468 2008-02-01 Kenichi Handa <handa@m17n.org>
26469
26470 * xdisp.c (handle_auto_composed_prop): Give limit to
26471 Fnext_single_char_property_change.
26472
26473 2008-02-01 Kenichi Handa <handa@m17n.org>
26474
26475 * composite.c (syms_of_composite): Don't make the composition hash
26476 table weak.
26477
26478 * fontset.c (Fset_fontset_font): Fix docstring.
26479
26480 * lisp.h (detect_coding_system): Adjust prototype.
26481
26482 * fileio.c (kill_workbuf_unwind): Delete this function.
26483 (Finsert_file_contents): Adjust the call of detect_coding_system.
26484 Get conversion_buffer by code_conversion_save. Use the macro
26485 CODING_MAY_REQUIRE_DECODING. After decoding, update
26486 coding_system.
26487
26488 * coding.h (make_conversion_work_buffer): Delete extern.
26489 (code_conversion_save): Extern it.
26490
26491 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
26492 (CODING_GET_INFO): Delete argument eol_type. Change callers.
26493 (decode_coding_utf_8): Don't do eol converion.
26494 (detect_coding_utf_16): Check coding->src_chars, not
26495 coding->src_bytes. Add heuristics for those that have no signature.
26496 (decode_coding_emacs_mule, decode_coding_iso_2022)
26497 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
26498 Don't do eol converion.
26499 (adjust_coding_eol_type): Return a new coding system.
26500 (detect_coding): Don't detect eol. Fix for utf-16 detection.
26501 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
26502 each change.
26503 (decode_coding): Pay attention to undo_list. Do eol conversion for
26504 all types of coding-systems (if necessary).
26505 (Vcode_conversion_work_buf_list): Delete it.
26506 (Vcode_conversion_reused_workbuf): Rename from
26507 Vcode_conversion_reused_work_buf.
26508 (Vcode_conversion_workbuf_name): New variable.
26509 (reused_workbuf_in_use): New variable.
26510 (make_conversion_work_buffer): Delete the arg DEPTH.
26511 (code_conversion_restore): Change argument to cons.
26512 (code_conversion_save): Delete the argument BUFFER. Change callers.
26513 (detect_coding_system): New argument src_chars. Change callers.
26514 Fix for utf-16 detection.
26515 (init_coding_once): Don't use ISO_carriage_return.
26516 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
26517 reused_workbuf_in_use.
26518
26519 2008-02-01 Kenichi Handa <handa@m17n.org>
26520
26521 * keymap.c (store_in_keymap): Pay attention to the case that idx
26522 is a cons specifying a character range.
26523
26524 2008-02-01 Kenichi Handa <handa@m17n.org>
26525
26526 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
26527 HANDLED_RECOMPUTE_PROPS.
26528
26529 * coding.c (Fdefine_coding_system_internal): Fix checking of
26530 ascii compatibility.
26531
26532 2008-02-01 Kenichi Handa <handa@m17n.org>
26533
26534 * charset.c (find_charsets_in_text): Delete unused locale variable.
26535 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
26536
26537 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
26538 Resync charset_list to Vemacs_mule_charset_list.
26539
26540 * keymap.c (store_in_keymap): Pay attention to the case that idx
26541 is a cons specifying a character range.
26542
26543 2008-02-01 Kenichi Handa <handa@m17n.org>
26544
26545 * composite.c (update_compositions): Bind inhibit-read-only, etc
26546 to t before calling remove-list-of-text-properties.
26547
26548 * print.c (print_object): Always print ASCII chars as is.
26549
26550 2008-02-01 Kenichi Handa <handa@m17n.org>
26551
26552 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
26553
26554 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
26555 is a char table.
26556
26557 2008-02-01 Kenichi Handa <handa@m17n.org>
26558
26559 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
26560
26561 2008-02-01 Kenichi Handa <handa@m17n.org>
26562
26563 * xfaces.c (set_lface_from_font_name): Fix for the case that
26564 FONTNAME is not fontset name.
26565
26566 2008-02-01 Kenichi Handa <handa@m17n.org>
26567
26568 * fns.c (base64_encode_1): Fix previous change.
26569
26570 2008-02-01 Kenichi Handa <handa@m17n.org>
26571
26572 * fontset.c (set_fontset_font): New function.
26573 (Fset_fontset_font): If a font is specified for a charset, use
26574 map_charset_chars to store the font spec in a fontset.
26575
26576 2008-02-01 Kenichi Handa <handa@m17n.org>
26577
26578 * fontset.c (fontset_face): Create a fallback fontset on demand.
26579 (make_fontset): Don't create a fallback fontset here.
26580 (free_face_fontset): Free a fallback fontset (if any) too.
26581 (n_auto_fontsets): Delete this variable.
26582 (auto_fontset_alist): New variable.
26583 (new_fontset_from_font_name): Check auto_fontset_alist.
26584 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
26585 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
26586 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
26587 Defsubr Sfontset_list_all.
26588
26589 2008-02-01 Kenichi Handa <handa@m17n.org>
26590
26591 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
26592
26593 2008-02-01 Kenichi Handa <handa@m17n.org>
26594
26595 * fontset.c (Fnew_fontset): Check NAME more rigidly.
26596
26597 2008-02-01 Kenichi Handa <handa@m17n.org>
26598
26599 * editfns.c (Fgoto_char): Fix docstring.
26600
26601 2008-02-01 Kenichi Handa <handa@m17n.org>
26602
26603 * insdel.c (insert_from_gap): Adjust intervals correctly.
26604
26605 2008-02-01 Jason Rumney <jasonr@gnu.org>
26606
26607 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
26608 (pfnGetFontUnicodeRanges): New dynamically loaded function.
26609 (w32_initialize): Try to load it.
26610 (x_get_font_repertory): Use it if available.
26611 (w32_encode_char): Add shortcut for unicode output.
26612
26613 * w32fns.c (w32_load_system_font): Default charset to -1.
26614 (x_to_w32_charset): Match all fonts for unicode.
26615 (w32_to_x_charset): New parameter matching. Don't return partial
26616 or wildcard charsets.
26617 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
26618 (w32_codepage_for_font): Return CP_UNICODE for unicode.
26619 (w32_to_x_font): Match charset to real charset.
26620 (enum_font_cb2): Always list unicode versions.
26621
26622 * makefile.w32-in (temacs): Increase EMHEAP.
26623
26624 2008-02-01 Jason Rumney <jasonr@gnu.org>
26625
26626 * w32term.c (w32_encode_char): New charset parameter.
26627 font_info.encoding becomes encoding_type.
26628 (x_get_font_repertory): New function. Warning: stub only!
26629 (x_new_font): Return quickly if font already set.
26630 (x_new_fontset): fontsetname parameter is Lisp_Object.
26631 Use new fs_query_fontset. Try new_fontset_from_font_name.
26632 Use fontset_name for return value.
26633
26634 * w32term.h: Declare x_get_font_repertory.
26635
26636 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
26637 place of find_charset_in_text. Use encode_coding_object in place
26638 of encode_coding.
26639 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
26640 decode_coding.
26641
26642 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
26643 of x_new_fontset.
26644 (w32_load_system_font): Initialize charset as unicode.
26645 font_info.encoding becomes encoding_type.
26646 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
26647 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
26648 (syms_of_w32fns): Set get_font_repertory_func.
26649
26650 * w32console.c: Include character.h. Use terminal_encode_buffer
26651 from term.c.
26652 (write_glyphs): Use new version of encode_terminal_code.
26653 Use encode_coding_object in place of encode_coding.
26654
26655 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
26656 encoding becomes encoding_type.
26657
26658 * term.c (terminal_encode_buffer): Make externally visible.
26659
26660 * makefile.w32-in: Add character.h dependancies.
26661 (character.o, chartab.o): New targets.
26662
26663 2008-02-01 Kenichi Handa <handa@m17n.org>
26664
26665 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
26666 CODING_ID_EOL_TYPE.
26667
26668 2008-02-01 Andreas Schwab <schwab@suse.de>
26669
26670 * coding.c (produce_chars): Revert last change.
26671
26672 2008-02-01 Kenichi Handa <handa@m17n.org>
26673
26674 * charset.h (charset_unicode): Extern it.
26675
26676 * charset.c (string_xstring_p): Check by (C >= 0x100).
26677 (find_charsets_in_text): Change format of the arc CHARSETS.
26678 New arg MULTIBYTE.
26679 (Ffind_charset_region, Ffind_charset_string): Adjust for the
26680 change of find_charsets_in_text.
26681 (Fsplit_char): Fix doc. Never return unknown.
26682
26683 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
26684
26685 * coding.c (Fdefine_coding_system_alias):
26686 Update Vcoding_system_list.
26687
26688 * fontset.c (load_font_get_repertory): Pay attention to the case
26689 that ENCODING of a font is specified by a char-table.
26690
26691 * xterm.c (x_get_font_repertory): Handle the case that the
26692 encoding of font is other than Unicode.
26693
26694 2008-02-01 Kenichi Handa <handa@m17n.org>
26695
26696 * term.c (encode_terminal_code): Don't handle glyph-table.
26697 Check if a character is encodable by the terminal coding system.
26698 If not, produces proper number of `?'s. Update
26699 terminal_encode_buffer and terminal_encode_buf_size if necessary.
26700 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
26701
26702 2008-02-01 Kenichi Handa <handa@m17n.org>
26703
26704 * term.c (terminal_encode_buffer, terminal_encode_buf_size):
26705 New variables.
26706 (encode_terminal_code): Change argument. Encode multiple
26707 characters at once. Store the result of encoding in
26708 terminal_encode_buffer.
26709 (write_glyphs, insert_glyphs): Adjust for the change of
26710 encode_terminal_code.
26711 (term_init): Initialize terminal_encode_buffer and
26712 terminal_encode_buf_size.
26713
26714 * coding.c (consume_chars): If coding->src_object is nil, don't
26715 check annotation.
26716
26717 2008-02-01 Kenichi Handa <handa@m17n.org>
26718
26719 * character.c (char_string): Use ASCII_CHAR_P instead of
26720 SINGLE_BYTE_CHAR_P.
26721
26722 2008-02-01 Kenichi Handa <handa@m17n.org>
26723
26724 * xdisp.c (handle_auto_composed_prop): Check if the last
26725 characters of auto-composed region is newly composed with the
26726 following characters.
26727 (handle_composition_prop): Fix checking of point being inside
26728 composition.
26729
26730 2008-02-01 Kenichi Handa <handa@m17n.org>
26731
26732 * fns.c (concat): Don't change multibyteness of the result by
26733 concatenating an 8-bit character.
26734
26735 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
26736 multibyteness of the result when newelt is an 8-bit character.
26737
26738 2008-02-01 Dave Love <fx@gnu.org>
26739
26740 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
26741 EMACS_INT.
26742
26743 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
26744
26745 * xfaces.c (face_numeric_value): Declare dim size_t.
26746 (Finternal_lisp_face_equal_p): Remove unused f.
26747
26748 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
26749 (MATRIX_ROW): Remove unused vars.
26750 (draw_glyphs, x_insert_glyphs, fast_find_position)
26751 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
26752 byte/char counts.
26753
26754 * regex.c (regex_compile): Remove unused var.
26755
26756 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
26757
26758 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
26759 (Faccessible_keymaps, where_is_internal): Remove unused vars.
26760
26761 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
26762
26763 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
26764
26765 * fileio.c (Fwrite_region): Remove unused var.
26766
26767 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
26768 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
26769
26770 * composite.c (Fremove_list_of_text_properties): Declare.
26771
26772 * coding.c (inhibit_pre_post_conversion): Remove (unused).
26773 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
26774 (coding_inherit_eol_type): Remove unused attrs.
26775 (detect_coding): Cast arg of detect_eol.
26776
26777 * charset.c (syms_of_charset): Remove unused var p.
26778 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
26779 byte/char counts.
26780
26781 * casetab.c (set_case_table): Remove unused var.
26782
26783 * window.c (Fdisplay_buffer, Fframe_selected_window):
26784 Remove unused vars.
26785
26786 2008-02-01 Dave Love <fx@gnu.org>
26787
26788 * xterm.c (x_bitmap_mask): Declare.
26789
26790 2008-02-01 Dave Love <fx@gnu.org>
26791
26792 * xterm.c (x_term_init): Fix type error.
26793
26794 * lisp.h: Add Funibyte_char_to_multibyte.
26795
26796 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
26797 (Fset_coding_system_priority): Doc fix.
26798
26799 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
26800
26801 * indent.c (check_composition): Make start and end EMACS_INT.
26802
26803 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
26804
26805 * xdisp.c (handle_composition_prop, check_point_in_composition):
26806 Make buffer positions EMACS_INT.
26807
26808 * composite.c (find_composition, run_composition_function)
26809 (update_compositions, Ffind_composition_internal): Make buffer
26810 positions EMACS_INT.
26811
26812 * composite.h (find_composition, update_compositions):
26813 Make position args EMACS_INT.
26814
26815 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
26816
26817 * intervals.c (get_property_and_range):
26818 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
26819
26820 * unexalpha.c: Don't include varargs.h.
26821
26822 2008-02-01 Dave Love <fx@gnu.org>
26823
26824 * coding.h (ENCODE_UTF_8): New.
26825
26826 * Makefile.in (gtkutil.o): Depend on coding.h.
26827
26828 * coding.c (Fset_coding_system_priority): Doc fix.
26829
26830 2008-02-01 Kenichi Handa <handa@m17n.org>
26831
26832 * fileio.c (Finsert_file_contents): Call setup_coding_system in
26833 the case of auto saving.
26834
26835 2008-02-01 Andreas Schwab <schwab@suse.de>
26836
26837 * chartab.c (map_char_table, map_char_table_for_charset):
26838 Protect `range' from GC.
26839
26840 2008-02-01 Kenichi Handa <handa@m17n.org>
26841
26842 * coding.c (decode_coding_sjis): Check bytes more rigidly.
26843
26844 2008-02-01 Kenichi Handa <handa@m17n.org>
26845
26846 * fileio.c (choose_write_coding_system): Return a decided coding system.
26847 (Fwrite_region): Set Vlast_coding_system_used to the return value
26848 of choose_write_coding_system.
26849
26850 2008-02-01 Kenichi Handa <handa@m17n.org>
26851
26852 * charset.c (Fset_charset_priority): Pay attention to duplicated
26853 arguments.
26854
26855 * coding.c (QCcategory): New variable.
26856 (syms_of_coding): Defsym it. Set all elements of
26857 Vcoding_category_table and their symbol values.
26858 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
26859 coding-category-XXX, and coding-category-list.
26860 (Fdefine_coding_system_internal): Add category in the plist.
26861
26862 2008-02-01 Kenichi Handa <handa@m17n.org>
26863
26864 * callproc.c (Fcall_process): Handle carryover correctly.
26865
26866 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
26867 (raw_text_coding_system): Check NILP (coding_system).
26868 (coding_inherit_eol_type): Check NILP (coding_system) and
26869 NILP (parent).
26870 (consume_chars): Fix for the case of raw-text.
26871
26872 * process.c (read_process_output): Handle carryover correctly.
26873
26874 2008-02-01 Dave Love <fx@gnu.org>
26875
26876 * regex.c (re_search_2): Fix last change.
26877
26878 2008-02-01 Kenichi Handa <handa@m17n.org>
26879
26880 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
26881 target_multibyte. Even in a unibyte case, return a converted
26882 multibyte char.
26883 (GET_CHAR_AFTER): New macro.
26884 (PATFETCH): Translate via multibyte char.
26885 (HANDLE_UNIBYTE_RANGE): Delete this macro.
26886 (SETUP_MULTIBYTE_RANGE): New macro.
26887 (regex_compile): Setup compiled code so that its multibyteness
26888 matches that of a target. Fix the handling of "[X-YZ]" using
26889 SETUP_MULTIBYTE_RANGE.
26890 (analyse_first) <charset>: For filling fastmap for all multibyte
26891 characters, don't check by BASE_LEADING_CODE_P.
26892 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
26893 the same as RE_MULTIBYTE_P (bufp) now.
26894 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
26895 (TARGET_CHAR_AND_LENGTH): Delete this macro.
26896 (TRANSLATE_VIA_MULTIBYTE): New macro.
26897 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
26898 It is the same as RE_MULTIBYTE_P (bufp) now.
26899 <exactn>: Translate via multibyte.
26900 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH.
26901 Don't translate it.
26902 <charset, charset_not>: Fetch a character by
26903 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
26904 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
26905 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
26906 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
26907 by GET_CHAR_AFTER.
26908 (bcmp_translate): Likewise.
26909
26910 * search.c (compile_pattern): Check the member target_multibyte,
26911 not the member multibyte of buf.
26912
26913 * lread.c (read1): While reading a string, set force_singlebyte
26914 and force_multibyte correctly.
26915
26916 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
26917 up of unibyte_to_multibyte_table.
26918
26919 2008-02-01 Kenichi Handa <handa@m17n.org>
26920
26921 * coding.c (setup_coding_system): If coding has
26922 post-read-conversion or pre-write-conversion, set
26923 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
26924 respectively.
26925 (decode_coding_gap): Run post-read-conversion if any.
26926
26927 * fileio.c (Finsert_file_contents): Even if we read into a
26928 unibyte buffer, check if we must decode the result or not.
26929
26930 2008-02-01 Kenichi Handa <handa@m17n.org>
26931
26932 * coding.c (make_conversion_work_buffer): Change the work buffer
26933 name to the same one as that of Emacs 21.
26934
26935 2008-02-01 Kenichi Handa <handa@m17n.org>
26936
26937 * coding.h (make_conversion_work_buffer): Adjust prototype.
26938 (code_conversion_restore): Don't extern it.
26939
26940 * coding.c (detected_mask): Delete unused variable.
26941 (decode_coding_iso_2022): Pay attention to the byte sequence of
26942 CTEXT extended segment, and retain those bytes as is.
26943 (decode_coding_ccl): Delete unused variable `valids'.
26944 (setup_coding_system): Delete unused variable `category'.
26945 (consume_chars): Delete unused variable `category'. Make it work
26946 for non-multibyte case.
26947 (make_conversion_work_buffer): Change argument.
26948 (saved_coding): Delete unused variable.
26949 (code_conversion_restore): Don't check saved_coding->destination.
26950 (code_conversion_save): New function.
26951 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
26952 instead of record_unwind_protect.
26953 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
26954 (detect_coding_system): Delete unused variable `mask'.
26955 (Fdefine_coding_system_internal): Delete unused variable id.
26956
26957 * fileio.c (kill_workbuf_unwind): New function.
26958 (Finsert_file_contents): On replacing, call
26959 make_conversion_work_buffer with correct args, and call
26960 record_unwind_protect with the first arg kill_workbuf_unwind.
26961
26962 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
26963
26964 2008-02-01 Kenichi Handa <handa@m17n.org>
26965
26966 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
26967 (fontset_add): Fix for the case that TO is less than TO1.
26968 (Ffontset_info): Don't use fallback fontset on checking the
26969 default fontset.
26970 (dump_fontset): New function for debugging.
26971
26972 * coding.c (Fdefine_coding_system_internal): Fix for the case that
26973 coding_type is Qcharset.
26974
26975 2008-02-01 Kenichi Handa <handa@m17n.org>
26976
26977 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
26978 (map_char_table): Don't inherit the value from the parent on
26979 initializing VAL. Adjust for the above change.
26980
26981 2008-02-01 Kenichi Handa <handa@m17n.org>
26982
26983 * coding.c (Qsignature, Qendian): Delete these variables.
26984 (syms_of_coding): Don't initialize them.
26985 (CATEGORY_MASK_UTF_16_AUTO): New macro.
26986 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
26987 detect_info->found.
26988 (decode_coding_utf_16): Don't detect BOM here.
26989 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
26990 is NOT utf_16_without_bom.
26991 (setup_coding_system): For a coding system of type utf-16, check
26992 if the attribute :endian is Qbig or not (not nil or not), and set
26993 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
26994 (detect_coding): If coding type is utf-16 and BOM detection is
26995 required, detect it.
26996 (Fdefine_coding_system_internal): For a coding system of type
26997 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
26998
26999 2008-02-01 Kenichi Handa <handa@m17n.org>
27000
27001 * coding.c (coding_set_source): Fix for the case that the current
27002 buffer is different from coding->src_object.
27003 (decode_coding_object): Don't use the conversion work buffer if
27004 DST_OBJECT is a buffer.
27005
27006 2008-02-01 Dave Love <fx@gnu.org>
27007
27008 * lread.c (read_emacs_mule_char) [len==2]: Index
27009 emacs_mule_charset correctly.
27010
27011 2008-02-01 Dave Love <fx@gnu.org>
27012
27013 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
27014 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
27015 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
27016 treated specially.)
27017 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
27018 (detected_mask): Remove Big5 bits.
27019
27020 2008-02-01 Kenichi Handa <handa@m17n.org>
27021
27022 The following changes are to make the font rescaling facility
27023 compatible with Emacs 21.
27024
27025 * xfaces.c (Vface_font_rescale_alist): Rename from
27026 Vface_resizing_fonts.
27027 (struct font_name): Rename member resizing_ratio to rescale_ratio.
27028 (font_rescale_ratio): Rename from font_resizing_ratio.
27029 (split_font_name): Set font->rescale_ratio.
27030 (better_font_p): Pay attention to font->rescale_ratio.
27031 (build_scalable_font_name): Likewise. Change RESX, and RESY
27032 fields.
27033 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
27034
27035 2008-02-01 Kenichi Handa <handa@m17n.org>
27036
27037 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
27038 (Qutf_16_le): Remove these variables.
27039 (syms_of_coding): Don't DEFSYM them.
27040 (decode_coding_utf_16): Fix handling of BOM.
27041 (encode_coding_utf_16): Fix handling of BOM.
27042
27043 2008-02-01 Kenichi Handa <handa@m17n.org>
27044
27045 * fileio.c (Finsert_file_contents): On replacing, before decoding
27046 the file into the work buffer, set point of the work buffer to the end.
27047
27048 2008-02-01 Dave Love <fx@gnu.org>
27049
27050 * coding.c (Fcheck_coding_systems_region): Fix type errors.
27051
27052 2008-02-01 Dave Love <fx@gnu.org>
27053
27054 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
27055 and fix C types.
27056
27057 2008-02-01 Kenichi Handa <handa@m17n.org>
27058
27059 * xdisp.c (SKIP_GLYPHS): New macro.
27060 (set_cursor_from_row): Pay attention to string display properties.
27061
27062 * category.c (copy_category_entry): Fix for the case that RANGE
27063 is an integer.
27064
27065 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
27066
27067 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
27068
27069 2008-02-01 Kenichi Handa <handa@m17n.org>
27070
27071 * charset.c (Fcharset_id_internal): New function.
27072 (syms_of_charset): Defsubr it.
27073
27074 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
27075 with the last arg charset_list acquired from coding.
27076 (Fdefine_coding_system_internal): For ccl-based coding system, fix
27077 the attribute coding_attr_ccl_valids.
27078
27079 * coding.h (enum define_coding_ccl_arg_index): Set the first
27080 member coding_arg_ccl_decoder to coding_arg_max.
27081
27082 * ccl.h (ccl_driver): Adjust prototype.
27083
27084 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
27085 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
27086 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
27087 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
27088 last arg Qnil.
27089
27090 2008-02-01 Kenichi Handa <handa@m17n.org>
27091
27092 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
27093 call encode_char.
27094
27095 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
27096
27097 2008-02-01 Dave Love <fx@gnu.org>
27098
27099 * composite.c (syms_of_composite): Make composition_hash_table weak.
27100
27101 2008-02-01 Kenichi Handa <handa@m17n.org>
27102
27103 * dispextern.h (check_face_attributes, generate_ascii_font_name)
27104 (font_name_registry): Don't extern them.
27105 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
27106
27107 * fontset.h (Qfontset): Don't extern it.
27108 (new_fontset_from_font_name): Extern it.
27109
27110 * fontset.c: Give 8 extra slots to fontset objects.
27111 (Qfontset_info): New variable.
27112 (syms_of_fontset): Defsym it.
27113 (FONTSET_FALLBACK): New macro.
27114 (fontset_face): Try also the default fontset.
27115 (make_fontset): Realize a fallback fontset from the default fontset.
27116 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
27117 using split_font_name_into_vector and build_font_name_from_vector.
27118 (Fset_fontset_font): Access the elements of font_spec by enum
27119 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
27120 name by using split_font_name_into_vector.
27121 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
27122 generate a proper font name from the fontset name.
27123 Update Vfontset_alias_alist.
27124 (n_auto_fontsets): New variable.
27125 (new_fontset_from_font_name): New function.
27126 (Ffont_info): Store the information about fonts generated from the
27127 default fontset in the first extra slot of the returned char-table.
27128
27129 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
27130 (font_name_registry): Delete function.
27131 (split_font_name_into_vector): New function.
27132 (build_font_name_from_vector): New function.
27133 (font_list): The argument REGISTRY is now a list of registry names.
27134 (choose_face_font): If we are choosing an ASCII font, and ATTRS
27135 specifies an explicit font name, return the name as is. Make a
27136 list of registy names.
27137
27138 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
27139 of x_new_fontset.
27140 (Fx_create_frame): Don't call x_new_fontset here. Just use
27141 x_list_fonts to check the existence of fonts.
27142
27143 * xterm.h (x_new_fontset): Adjust prototype.
27144
27145 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
27146 string. Use new_fontset_from_font_name to create a fontset from a
27147 font name.
27148
27149 2008-02-01 Kenichi Handa <handa@m17n.org>
27150
27151 * syntax.c (Vfind_word_boundary_function_table): New name for
27152 Vnext_word_boundary_function_table.
27153 (find-word-boundary-function-table): New name for
27154 next-word-boundary-function-table.
27155
27156 2008-02-01 Dave Love <fx@gnu.org>
27157
27158 * Makefile.in: Fix some dependencies.
27159
27160 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
27161 set it to nil before returning.
27162
27163 * composite.c (update_compositions): Fix type error.
27164
27165 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
27166
27167 2008-02-01 Kenichi Handa <handa@m17n.org>
27168
27169 * xterm.c (x_new_font): Optimize for the case that the font is
27170 already set for the frame.
27171
27172 2008-02-01 Kenichi Handa <handa@m17n.org>
27173
27174 * chartab.c (char_table_ascii): Check if the char table contents
27175 is sub-char-table or not.
27176 (char_table_set, char_table_set_range): Fix argument to
27177 char_table_ascii.
27178
27179 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
27180 (detect_coding_utf_8, detect_coding_utf_16)
27181 (detect_coding_emacs_mule, detect_coding_iso_2022)
27182 (detect_coding_sjis, detect_coding_big5)
27183 (detect_coding_ccl, detect_coding_charset): Change argument MASK
27184 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
27185 sequence is valid in this coding system. Change callers.
27186 (MAX_ANNOTATION_LENGTH): New macro.
27187 (ADD_ANNOTATION_DATA): New macro.
27188 (ADD_COMPOSITION_DATA): Change argument. Change callers.
27189 Call ADD_ANNOTATION_DATA. Change the format of annotation data.
27190 (ADD_CHARSET_DATA): New macro.
27191 (emacs_mule_char): New argument ID. Change callers.
27192 (decode_coding_emacs_mule, decode_coding_iso_2022)
27193 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
27194 Produce charset annotation data in coding->charbuf.
27195 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
27196 to charset annotation data in coding->charbuf.
27197 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
27198 coding->common_flags if the coding system is iso-2022 based and
27199 uses designation.
27200 (produce_composition): Adjust for the new annotation data format.
27201 (produce_charset): New function.
27202 (produce_annotation): Handle charset annotation.
27203 (handle_composition_annotation, handle_charset_annotation):
27204 New functions.
27205 (consume_chars): Handle charset annotation. Utilize the above two
27206 functions.
27207 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
27208 buffer, get the deleted text as a string and set
27209 coding->src_object to that string.
27210 (detect_coding, detect_coding_system): Use the new struct
27211 coding_detection_info.
27212
27213 * coding.h (struct coding_detection_info): New structure.
27214 (struct coding_system): Adjust prototype of the member `detector'.
27215 (CODING_ANNOTATE_CHARSET_MASK): New macro.
27216
27217 2008-02-01 Kenichi Handa <handa@m17n.org>
27218
27219 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
27220
27221 2008-02-01 Dave Love <fx@gnu.org>
27222
27223 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
27224 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
27225 to new local and nullify apropos_accumulate before returning.
27226 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
27227
27228 2008-02-01 Kenichi Handa <handa@m17n.org>
27229
27230 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
27231 correctly.
27232
27233 2008-02-01 Dave Love <fx@gnu.org>
27234
27235 * fns.c (Flanginfo): Call synchronize_system_time_locale.
27236
27237 2008-02-01 Kenichi Handa <handa@m17n.org>
27238
27239 The following changes are to make character composition happen
27240 automatically on displaying.
27241
27242 * Makefile.in (lisp, shortlisp): Add composite.elc.
27243
27244 * composite.h (Qauto_composed, Vauto_composition_function)
27245 (Qauto_composition_function): Extern them.
27246
27247 * composite.c (Vcomposition_function_table)
27248 (Qcomposition_function_table): Delete variables.
27249 (Qauto_composed, Vauto_composition_function)
27250 (Qauto_composition_function): New variables.
27251 (run_composition_function): Don't call
27252 compose-chars-after-function.
27253 (update_compositions): Clear `auto-composed' text property.
27254 (compose_chars_in_text): Delete this function.
27255 (syms_of_composite): Staticpro Qauto_composed and
27256 Qauto_composition_function. Declare Vauto_composition_function as
27257 a Lisp variable.
27258
27259 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
27260
27261 * xdisp.c (it_props): Add an entry for Qauto_composed.
27262 (handle_auto_composed_prop): New function.
27263
27264 * xselect.c (selection_data_to_lisp_data): Don't call
27265 compose_chars_in_text.
27266
27267 2008-02-01 Dave Love <fx@gnu.org>
27268
27269 * keyboard.c (read_char): Modify checking around use of
27270 Vkeyboard_translate_table.
27271
27272 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
27273 and fix C types.
27274
27275 2008-02-01 Kenichi Handa <handa@m17n.org>
27276
27277 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
27278 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
27279 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
27280 the case that the last byte is '\r' correctly.
27281 (decode_coding): Flush out the unprocessed data correctly.
27282 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
27283
27284 2008-02-01 Dave Love <fx@gnu.org>
27285
27286 * xterm.c (XTread_socket): Fix changes for defined keysyms.
27287 Add XK_ISO... case.
27288 (xaw_scroll_callback): Revert last change.
27289
27290 2008-02-01 Kenichi Handa <handa@m17n.org>
27291
27292 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
27293
27294 2008-02-01 Kenichi Handa <handa@m17n.org>
27295
27296 * xfaces.c (Vface_resizing_fonts): New variable.
27297 (struct font_name): New member `resizing_ratio'.
27298 (font_resizing_ratio): New function.
27299 (split_font_name): Set font->resizing_ratio.
27300 (better_font_p): Pay attention to font->resizing_ratio.
27301 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
27302 RESX, and RESY fields.
27303 (try_alternative_families): Try scalable fonts if
27304 Vscalable_fonts_allowed is not Qt.
27305 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
27306
27307 2008-02-01 Dave Love <fx@gnu.org>
27308
27309 * xterm.c (xaw_scroll_callback): Cast correctly.
27310
27311 2008-02-01 Dave Love <fx@gnu.org>
27312
27313 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
27314 (lispy_kana_keys): Comment out.
27315 (make_lispy_event) [XK_kana_A]: Comment out.
27316
27317 * xterm.c (xaw_scroll_callback): Cast call_data.
27318 (XTread_socket): Deal with ASCII keysyms.
27319 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
27320
27321 2008-02-01 Dave Love <fx@gnu.org>
27322
27323 * xterm.c (Vx_keysym_table): New.
27324 (syms_of_xterm): Initialize it.
27325 (XTread_socket): Use it.
27326 From head: Eliminate incorrect optimization that tried to avoid
27327 decoding the output of X*LookupString.
27328 (x_get_font_repertory): Delete charset declaration.
27329
27330 2008-02-01 Kenichi Handa <handa@m17n.org>
27331
27332 * coding.c (detect_coding_charset): If only ASCII bytes are found,
27333 return 0.
27334 (Fdefine_coding_system_internal):
27335 Setup CODING_ATTR_ASCII_COMPAT (attrs) correctly.
27336
27337 2008-02-01 Dave Love <fx@gnu.org>
27338
27339 * coding.c (Fcheck_coding_system): Doc fix.
27340
27341 * editfns.c (Finsert_byte): Return a proper value.
27342
27343 2008-02-01 Kenichi Handa <handa@m17n.org>
27344
27345 * coding.c (decode_coding): Fix args to translate_chars.
27346 Pay attention to Vstandard_translation_table_for_decode.
27347 (encode_coding): Fix args to translate_chars. Pay attention to
27348 Vstandard_translation_table_for_encode.
27349
27350 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
27351 SINGLE_BYTE_CHAR_P.
27352
27353 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
27354 not by SINGLE_BYTE_CHAR_P.
27355
27356 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
27357 SINGLE_BYTE_CHAR_P.
27358
27359 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
27360 SINGLE_BYTE_CHAR_P.
27361
27362 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
27363 by SINGLE_BYTE_CHAR_P.
27364
27365 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
27366 SINGLE_BYTE_CHAR_P.
27367
27368 2008-02-01 Dave Love <fx@gnu.org>
27369
27370 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
27371
27372 2008-02-01 Dave Love <fx@gnu.org>
27373
27374 * fns.c (Flanginfo): Fix typo.
27375
27376 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
27377
27378 2008-02-01 Kenichi Handa <handa@m17n.org>
27379
27380 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
27381 (detect_coding_emacs_mule, detect_coding_iso_2022)
27382 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
27383 incomplete byte sequence. Don't update *mask when correctly detected.
27384 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
27385 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
27386 (detect_coding, detect_coding_system): Adjust for the changes above.
27387
27388 2008-02-01 Kenichi Handa <handa@m17n.org>
27389
27390 * character.c (char_string): Rename from
27391 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
27392 (string_char): Rename from string_char.
27393
27394 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
27395 if C is greater than MAX_3_BYTE_CHAR.
27396 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE):
27397 Call string_char instead of string_char_with_unification.
27398
27399 2008-02-01 Dave Love <fx@gnu.org>
27400
27401 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
27402
27403 2008-02-01 Kenichi Handa <handa@m17n.org>
27404
27405 * keymap.c (push_key_description): Pay attention to force_multibyte.
27406
27407 * regex.c (re_search_2): Fix for the case of unibyte buffer.
27408
27409 2008-02-01 Dave Love <fx@gnu.org>
27410
27411 * charset.c (define_charset_internal): Rename `supprementary'.
27412
27413 * Makefile.in (lisp, shortlisp): Remove latin-N.
27414
27415 2008-02-01 Dave Love <fx@gnu.org>
27416
27417 * xfns.c (x_window, x_window): Use use_xim.
27418
27419 * xterm.c (use_xim): Initialize.
27420 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
27421 (x_term_init): Maybe set use_xim.
27422
27423 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
27424
27425 2008-02-01 Kenichi Handa <handa@m17n.org>
27426
27427 * search.c (search_buffer): Fix case-fold-search of multibyte
27428 characters.
27429 (boyer_moore): Rename the last argument to char_high_bits.
27430
27431 2008-02-01 Kenichi Handa <handa@m17n.org>
27432
27433 * xdisp.c (display_string): Fix for the case of zero width glyph.
27434
27435 * xfns.c (x_set_font): Change the error message of the case that
27436 x_new_fontset returns Qt.
27437
27438 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
27439 (Finternal_set_lisp_face_attribute): Use signal_error for the
27440 error of invalid fontset.
27441
27442 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
27443 fontset, return Qt.
27444
27445 2008-02-01 Dave Love <fx@gnu.org>
27446
27447 * unexelf.c (unexec): Make .got handling not SGI-specific.
27448
27449 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
27450
27451 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
27452
27453 * keyboard.c (read_key_sequence): Fix type error.
27454
27455 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte):
27456 Fix type error.
27457
27458 * fontset.c (fontset_add): Return Lisp_Object.
27459
27460 2008-02-01 Dave Love <fx@gnu.org>
27461
27462 * charset.h (charset_ordered_list_tick): Declare extern.
27463
27464 2008-02-01 Kenichi Handa <handa@m17n.org>
27465
27466 The following changes (and some of 2008-02-01 changes of mine) are
27467 for handling syntax, category, and case conversion for unibyte
27468 characters by converting them to multibyte on the fly. With these
27469 changes, we don't have to setup syntax and case tables for unibyte
27470 characters in each language environment.
27471
27472 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
27473 multibyte if necessary.
27474
27475 * bytecode.c (Fbyte_code): Likewise.
27476
27477 * character.h (LEADING_CODE_LATIN_1_MIN)
27478 (LEADING_CODE_LATIN_1_MAX): New macros.
27479 (unibyte_to_multibyte_table): Extern it.
27480 (unibyte_char_to_multibyte): New macro.
27481 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
27482 (CHAR_LEADING_CODE): New macro.
27483 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
27484
27485 * character.c (unibyte_to_multibyte_table): New variable.
27486 (unibyte_char_to_multibyte): Move to character.h and define as macro.
27487 (multibyte_char_to_unibyte): If C is an eight-bit character,
27488 convert it to the corresponding byte value.
27489
27490 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
27491 not 1, signals an error. Update the elements of
27492 unibyte_to_multibyte_table.
27493 (init_charset_once): Initialize unibyte_to_multibyte_table.
27494 (syms_of_charset): Define the charset `iso-8859-1'.
27495
27496 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
27497 as is without converting it to unibyte. In a unibyte buffer,
27498 convert C to multibyte before checking the syntax.
27499
27500 * lisp.h (unibyte_char_to_multibyte): Delete extern.
27501
27502 * minibuf.c (Fminibuffer_complete_word): Use the macro
27503 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
27504
27505 * regex.h (struct re_pattern_buffer): New member target_multibyte.
27506
27507 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
27508 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte.
27509 If that is zero, convert an eight-bit char to multibyte.
27510 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
27511 non-emacs case.
27512 (PATFETCH): Convert an eight-bit char to multibyte.
27513 (HANDLE_UNIBYTE_RANGE): New macro.
27514 (regex_compile): Setup the compiled pattern for multibyte chars
27515 even if the given regex string is unibyte. Use PATFETCH_RAW
27516 instead of PATFETCH in many places. To handle `charset'
27517 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
27518 only for ASCII chars.
27519 (analyse_first) <exactn>: Simplify because the compiled pattern
27520 is multibyte.
27521 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
27522 <charset>: Use CHAR_LEADING_CODE to get leading codes.
27523 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
27524 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
27525 multibyte always 1.
27526 (re_search_2): In emacs, set the locale variable multibyte to 1,
27527 otherwise to 0. New local variable target_multibyte. Check it
27528 to decide the multibyteness of STR1 and STR2.
27529 If target_multibyte is zero, convert unibyte chars to multibyte
27530 before translating and checking fastmap.
27531 (TARGET_CHAR_AND_LENGTH): New macro.
27532 (re_match_2_internal): In emacs, set the locale variable multibyte
27533 to 1, otherwise to 0. New local variable target_multibyte.
27534 Check it to decide the multibyteness of STR1 and STR2.
27535 Use TARGET_CHAR_AND_LENGTH to fetch a character from D.
27536 <charset, charset_not>: If multibyte is nonzero, check fastmap
27537 only for ASCII chars. Call bcmp_translate with
27538 target_multibyte, not with multibyte.
27539 <begline>: Declare the local variable C as `unsigned'.
27540 (bcmp_translate): Change the last arg name to target_multibyte.
27541
27542 * search.c (compile_pattern_1): Don't adjust the multibyteness of
27543 the regexp pattern and the matching target. Set cp->buf.multibyte
27544 to the multibyteness of the regexp pattern. Set
27545 cp->but.target_multibyte to the multibyteness of the matching target.
27546 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
27547 FETCH_STRING_CHAR_ADVANCE.
27548 (Freplace_match): Convert unibyte chars to multibyte.
27549
27550 * syntax.c (char_quoted, back_comment, scan_words)
27551 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
27552 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
27553 unibyte chars to multibyte.
27554 (skip_chars): Delete the arg syntaxp, and move the code for
27555 handling syntaxes to skip_syntaxes. Change callers.
27556 Fix the case that the multibyteness of STRING and the current
27557 buffer doesn't match.
27558 (skip_syntaxes): New function.
27559 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
27560 SINGLE_BYTE_CHAR_P.
27561
27562 2008-02-01 Kenichi Handa <handa@m17n.org>
27563
27564 * xfaces.c (QCfontset): New variable.
27565 (LFACE_FONTSET): New macro.
27566 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
27567 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
27568 (Finternal_set_lisp_face_attribute)
27569 (Finternal_get_lisp_face_attribute): Handle QCfontset.
27570 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
27571 check also LFACE_FONTSET_INDEX.
27572 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
27573 attrs[LFACE_FONT_INDEX].
27574 (syms_of_xfaces): Intern and staticpro QCfontset.
27575
27576 * dispextern.h (enum lface_attribute_index): New member
27577 LFACE_FONTSET_INDEX.
27578
27579 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
27580
27581 2008-02-01 Kenichi Handa <handa@m17n.org>
27582
27583 * coding.c (coding_set_destination): Fix coding->destination for
27584 the case converting a region.
27585 (encode_coding_utf_8): Encode eight-bit chars as single byte.
27586 (encode_coding_object): Fix coding->dst_pos and
27587 coding->dst_pos_byte for the case converting a region.
27588
27589 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
27590
27591 * character.h (BYTE8_STRING): New macro.
27592
27593 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
27594
27595 2008-02-01 Kenichi Handa <handa@m17n.org>
27596
27597 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
27598 characters by octal form.
27599
27600 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
27601
27602 * buffer.h (_fetch_multibyte_char_len): Delete extern.
27603 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
27604 _fetch_multibyte_char_len.
27605 (FETCH_CHAR_AS_MULTIBYTE): New macro.
27606
27607 * casetab.c (set_canon, set_identity, shuffle): Simplify.
27608
27609 * casefiddle.c (casify_object): Simplify. Handle the case that
27610 the case conversion change the byte length.
27611 (casify_region): Likewise.
27612
27613 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
27614
27615 * character.c (_fetch_multibyte_char_len): Delete this variable.
27616 (syms_of_character): Setup Vprintable_chars.
27617
27618 * editfns.c (Fchar_equal): Fix for the unibyte case.
27619 (Finsert_byte): New function.
27620 (syms_of_editfns): Defsubr it.
27621
27622 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
27623 of direct code 0x3ffff.
27624
27625 * search.c (Freplace_match): Fix for the unibyte case.
27626
27627 2008-02-01 Kenichi Handa <handa@m17n.org>
27628
27629 * lread.c (safe_to_load_p): Fix the logic.
27630
27631 * syntax.c (scan_words): Don't treat characters belonging to
27632 different scripts as constituting a word.
27633
27634 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27635
27636 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
27637
27638 * emacs.c (main): In the case of --unibyte, instead of aborting on
27639 finding non-empty buffer, make it unibyte.
27640
27641 2008-02-01 Kenichi Handa <handa@m17n.org>
27642
27643 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
27644 to create a fontset.
27645
27646 2008-02-01 Dave Love <fx@gnu.org>
27647
27648 * character.c (Funibyte_char_to_multibyte): Doc fix.
27649
27650 * xfns.c [HAVE_STDLIB_H]: Fix last change.
27651
27652 2008-02-01 Kenichi Handa <handa@m17n.org>
27653
27654 * fontset.c (fontset_add): Make the type `int'.
27655 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
27656
27657 * character.c (unibyte_char_to_multibyte)
27658 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
27659 charset_unibyte, not charset_primary.
27660
27661 * charset.h (charset_unibyte): Extern it instead of charset_primary.
27662
27663 * charset.c (charset_unibyte): Rename from charset_primary.
27664 (Funibyte_charset): Rename from Fprimary_charset.
27665 (Fset_unibyte_charset): Rename from Fset_primary_charset.
27666 (syms_of_charset): Adjust for the above changes.
27667
27668 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
27669 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
27670 it->multibyte_p is zero.
27671
27672 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
27673 Delete extern.
27674
27675 2008-02-01 Kenichi Handa <handa@m17n.org>
27676
27677 * coding.c (Fdefine_coding_system_internal): Fix category setting
27678 for a coding system of type iso-2022.
27679
27680 2008-02-01 Kenichi Handa <handa@m17n.org>
27681
27682 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
27683
27684 2008-02-01 Kenichi Handa <handa@m17n.org>
27685
27686 * syntax.c (Vnext_word_boundary_function_table): New variable.
27687 (next-word-boundary-function-table): Declare it as a Lisp variable
27688 in syms_of_syntax.
27689 (scan_words): Call functions in Vnext_word_boundary_function_table
27690 if any.
27691
27692 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
27693
27694 * fontset.c (fs_load_font): If fontp->charset is not negative,
27695 return fontp without setting its members.
27696
27697 2008-02-01 Dave Love <fx@gnu.org>
27698
27699 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
27700
27701 * m/sparc.h (HAVE_ALLOCA): Delete.
27702
27703 * s/irix6-5.h: Don't include strings.h.
27704 (bcopy, bzero, bcmp): Don't undef.
27705
27706 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
27707
27708 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
27709 (TIOCSIGSEND): Don't test IRIX6.
27710 (bcopy, bzero, bcmp): Define conditionally.
27711
27712 2008-02-01 Kenichi Handa <handa@m17n.org>
27713
27714 * buffer.c (Qas, Qmake, Qto): New variables.
27715 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
27716 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
27717
27718 * callproc.c (Fcall_process): Don't call insert_1_both directly if
27719 we are inserting a process output into a multibyte buffer.
27720
27721 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
27722 multibyte_char_to_unibyte.
27723
27724 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
27725 by the primary charset, make it eight-bit char.
27726 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
27727
27728 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
27729 (charset_8_bit__control, charset_8_bit_graphic)
27730 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
27731 (define_charset_internal): New function.
27732 (syms_of_charset): Call define_charset_internal for pre-defined
27733 charsets.
27734
27735 * charset.h (charset_8_bit): Extern it.
27736
27737 * coding.c (make_conversion_work_buffer): Adjust for the change
27738 of Fset_buffer_multibyte.
27739 (encode_coding_raw_text): Increment p0 in the loop.
27740
27741 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
27742
27743 * xdisp.c (setup_echo_area_for_printing, set_message_1):
27744 Adjust for the change of Fset_buffer_multibyte.
27745
27746 * fns.c (Fstring_to_multibyte): New function.
27747 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
27748
27749 2008-02-01 Dave Love <fx@gnu.org>
27750
27751 * xfns.c (x_put_x_image): Declare args.
27752
27753 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
27754 (try_font_list): Declare an arg.
27755
27756 * xdisp.c (message2_nolog, set_message): Declare an arg.
27757
27758 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
27759
27760 * syntax.c (scan_sexps_forward): Declare an arg.
27761
27762 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
27763 Declare an arg.
27764
27765 * lisp.h (Fnew_fontset): Declare.
27766
27767 * keymap.c (push_key_description): Call CHARACTERP correctly.
27768
27769 * fontset.c (fontset_add): Declare args. Call make_number correctly.
27770 (face_for_char): Delete unused vars.
27771 (Fset_fontset_font): Doc fix. Delete unused vars.
27772
27773 * doc.c (Fsubstitute_command_keys): Delete unused vars.
27774
27775 * composite.c (update_compositions): Declare arg.
27776
27777 * cm.c (calccost, cmgoto): Declare args.
27778
27779 * charset.c: Remove `emacs' conditional. Doc fixes.
27780 (map_char_table_for_charset): Declare.
27781
27782 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
27783
27784 * ccl.c: Remove `emacs' conditional.
27785
27786 2008-02-01 Kenichi Handa <handa@m17n.org>
27787
27788 The following changes are to allow specifying multiple font
27789 patterns for a character range (specified by script or charset).
27790
27791 * Makefile.in (abbrev.o): Depend on syntax.h.
27792 (xfaces.o): Depend on charset.h.
27793
27794 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
27795 SINGLE_BYTE_CHAR_P.
27796
27797 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
27798
27799 * character.h (Vchar_script_table): Extern it.
27800
27801 * character.c (Vscript_alist): Delete.
27802 (Vchar_script_table, Qchar_script_table): New variable.
27803 (syms_of_character): Declare Vchar_script_table as a lisp variable
27804 and initialize it.
27805
27806 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
27807 have property char-table-extra-slots, make no extra slot.
27808
27809 * dispextern.h (struct face): Delete member `charset'.
27810 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
27811 SINGLE_BYTE_CHAR_P.
27812 (choose_face_font, lookup_non_ascii_face, font_name_registry):
27813 Add prototypes.
27814 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
27815 (generate_ascii_font_name): Rename from generate_ascii_font.
27816
27817 * fontset.h (get_font_repertory_func): New prototype.
27818 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
27819 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
27820
27821 * fontset.c (Qprepend, Qappend): New variables.
27822 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
27823 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
27824 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
27825 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
27826 (fontset_ref_and_range, fontset_add, reorder_font_vector)
27827 (load_font_get_repertory): New functions.
27828 (fontset_set): Delete.
27829 (fontset_face): New arg FACE. Return face ID, not face.
27830 Complete re-write to handle new fontset structure. Change caller.
27831 (free_face_fontset): Use ASET istead of AREF (X) = Y.
27832 (face_for_char): Don't call lookup_face.
27833 (make_fontset_for_ascii_face): New arg FACE.
27834 (fs_load_font): New arg CHARSET_ID. Don't check
27835 Vfont_encoding_alist here.
27836 (find_font_encoding): New function.
27837 (list_fontsets): Use STRINGP, not ! NILP.
27838 (accumulate_script_ranges): New function.
27839 (Fset_fontset_font, Fnew_fontset, Ffontset_info):
27840 Completely re-written to handle new fontset structure.
27841 (Ffontset_font): Return a copy of element.
27842 (syms_of_fontset): Define symbols Qprepend and Qappend.
27843 Fix docstring of font-encoding-alist.
27844
27845 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
27846 (Fset_fotset_font): Fix arguments to 5.
27847
27848 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
27849
27850 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
27851 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27852 (highlight_trailing_whitespace): Adjust for the change of
27853 lookup_named_face.
27854
27855 * xfaces.c: Include charset.h.
27856 (load_face_font): Delete argument C. Change caller.
27857 (generate_ascii_font_name): Rename from generate_ascii_font.
27858 (font_name_registry): New function.
27859 (cache_face): Store ascii faces before non-ascii faces in buckets.
27860 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
27861 Lookup only ascii faces.
27862 (lookup_non_ascii_face): New function.
27863 (lookup_named_face): Delete argument C. Change caller.
27864 (lookup_derived_face): Delete argument C. Change caller.
27865 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
27866 a string, just call font_list with it.
27867 (choose_face_font): Delete arguments FACE and C. New arg
27868 FONT_SPEC. Change caller.
27869 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
27870 Change caller.
27871 (realize_non_ascii_face): New function.
27872 (realize_x_face): Call load_face_font here.
27873 (realize_tty_face): Delete argument C. Change caller.
27874 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
27875 get a face ID.
27876 (dump_realized_face): Don't print charset of FACE.
27877
27878 * xfns.c (x_set_font): Always call x_new_fontset and
27879 store_frame_parameter.
27880 (Fx_create_frame): Call x_new_fontset, not x_new_font.
27881 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
27882
27883 * xterm.h (x_get_font_repertory): Extern it.
27884
27885 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
27886 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
27887 it->multibyte_p is zero.
27888 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27889 (x_new_fontset): If FONTSETNAME doesn't match any existing
27890 fontsets, create a new one.
27891 (x_get_font_repertory): New function.
27892
27893 2008-02-01 Kenichi Handa <handa@m17n.org>
27894
27895 * coding.c (Ffind_coding_systems_region_internal): Detect an
27896 ASCII only string correctly.
27897
27898 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
27899 version is 0.
27900
27901 2008-02-01 Kenichi Handa <handa@m17n.org>
27902
27903 * lread.c: Include "coding.h".
27904 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
27905 (load_each_byte, unread_char): New variables.
27906 (readchar_backlog): Delete.
27907 (readchar): Return a character unless load_each_byte is nonzero.
27908 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
27909 cons. If unread_char is not -1, simply return it.
27910 (unreadchar): Handle the case that readcharfun is
27911 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
27912 (read_multibyte): Delete.
27913 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
27914 (read_emacs_mule_char): New functions.
27915 (Fload): Even if the file doesn't have the extension ".elc", if
27916 safe_to_load_p returns a positive version number, assume that the
27917 file contains bytecompiled code. If the version is less than 22,
27918 load the file while decoding multibyte sequences by emacs-mule.
27919 (readevalloop): Don't use readchar_backlog.
27920 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
27921 (Fread_from_string): Pay attention to the case that STREAM is a cons.
27922 (read_escape): Delete the arg BYTEREP.
27923 (read1): Set load_each_byte to 1 temporarily while handling
27924 #@NUMBER. Don't call read_multibyte.
27925 (read_vector): Call Fread with a cons. If readcharfun is
27926 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
27927 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
27928 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
27929 and Qload_force_doc_strings.
27930
27931 2008-02-01 Kenichi Handa <handa@m17n.org>
27932
27933 * xdisp.c (face_before_or_after_it_pos):
27934 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
27935
27936 2008-02-01 Kenichi Handa <handa@m17n.org>
27937
27938 * character.h (TRAILING_CODE_P): New macro.
27939 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
27940 (string_char_with_unification): Fix prototype.
27941 (Vscript_alist): Extern it.
27942
27943 * character.c (Vscript_alist): New variable.
27944 (string_char_with_unification, str_as_unibyte)
27945 (string_escape_byte8): Add `const' to local variables.
27946 (syms_of_character): Declare script-alist as a Lisp variable.
27947
27948 * charset.h (Vcharset_ordered_list): Extern it.
27949 (charset_ordered_list_tick): Extern it.
27950 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
27951 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
27952 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
27953 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
27954 (Funify_charset): Adjust for the change of Funify_charset.
27955
27956 * charset.c (charset_ordered_list_tick): New variable.
27957 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
27958 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
27959 deunify instead of unify a charset.
27960 (string_xstring_p): Add `const' to local variables.
27961 (find_charsets_in_text): Add `const' to arguments and local variables.
27962 (encode_char): Adjust for the change of Funify_charset.
27963 Fix detecting of invalid code.
27964 (Fset_charset_priority): Increment charset_ordered_list_tick.
27965 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
27966 and TO_CODE.
27967
27968 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
27969 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
27970 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
27971 (decode_coding_ccl, consume_chars)
27972 (Ffind_coding_systems_region_internal)
27973 (Fcheck_coding_systems_region): Add `const' to local variables.
27974
27975 * print.c (print_object): Use octal form for printing the
27976 contents of a bool vector.
27977
27978 2008-02-01 Dave Love <fx@gnu.org>
27979
27980 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
27981 <version == 20>: Refuse to load.
27982
27983 2008-02-01 Dave Love <fx@gnu.org>
27984
27985 * fns.c: Move coding.h.
27986 (Qcodeset, Qdays, Qmonths): New.
27987 (concat): Use CHARACTERP instead of INTEGERP.
27988 (Flocale_codeset): Delete.
27989 (Flanginfo): New function.
27990 (syms_of_fns): Change accordingly.
27991
27992 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
27993
27994 2008-02-01 Dave Love <fx@gnu.org>
27995
27996 * casetab.c (init_casetab_once, init_casetab_once):
27997 Fix CHAR_TABLE_SET call.
27998
27999 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
28000
28001 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
28002
28003 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
28004 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
28005 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
28006
28007 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
28008
28009 * coding.c (ENCODE_DESIGNATION, decode_eol)
28010 (make_conversion_work_buffer, code_conversion_restore)
28011 (Fdefine_coding_system_internal): Convert Lisp types.
28012 (code_conversion_restore): Use EQ, not ==.
28013 (Fencode_coding_string): Fix code_convert_string call.
28014
28015 * coding.h (code_convert_region): Fix prototype.
28016
28017 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
28018
28019 * fontset.c (fontset_ref, fontset_set, fs_load_font)
28020 (Ffontset_info): Convert Lisp types.
28021
28022 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
28023
28024 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
28025
28026 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
28027
28028 * chartab.c: Include "...h", not <...h> in some cases.
28029
28030 * callproc.c (Fcall_process): Remove unused variables.
28031
28032 2008-02-01 Dave Love <fx@gnu.org>
28033
28034 * coding.c (Fset_coding_system_priority): Allow null arg list.
28035
28036 2008-02-01 Dave Love <fx@gnu.org>
28037
28038 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
28039 (Fself_insert_and_exit): Use CHARACTERP.
28040
28041 * callproc.c (Fcall_process): Remove unused vars.
28042
28043 * xterm.c (XTread_socket): Add extra dead keysyms.
28044
28045 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
28046
28047 * dispextern.h: Remove prototypes for redraw_frame,
28048 redraw_garbaged_frames.
28049
28050 * cmds.c (Fself_insert_command): Use CHARACTERP.
28051
28052 * chartab.c (make_sub_char_table): Remove unused var.
28053 (Fset_char_table_default, Fmap_char_table): Doc fix.
28054
28055 * keymap.c (access_keymap): Remove generic char code.
28056 (push_key_description): Use CHARACTERP.
28057
28058 2008-02-01 Dave Love <fx@gnu.org>
28059
28060 * charset.c: Doc fixes.
28061 (Funify_charset): Extra checking.
28062
28063 2008-02-01 Dave Love <fx@gnu.org>
28064
28065 * lread.c: Remove some unused variables.
28066 (safe_to_load_p): If safe, return the magic number version byte.
28067 (Fload): Maybe use load-with-code-conversion.
28068
28069 2008-02-01 Kenichi Handa <handa@m17n.org>
28070
28071 * category.c (Fmodify_category_entry): Don't modify the contents
28072 of category_set for characters out of the range.
28073 Avoid unnecessary modification.
28074
28075 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
28076 Vchar_unify_table. The default value of the table is now nil.
28077
28078 * character.c (syms_of_character): Setup Vchar_width_table for
28079 eight-bit-control and raw-byte chars.
28080
28081 * charset.h (enum define_charset_arg_index):
28082 Delete charset_arg_parents and add charset_arg_subset and
28083 charset_arg_superset.
28084 (enum charset_attr_index): Delete charset_parents and add
28085 charset_subset and charset_superset.
28086 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
28087 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
28088 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
28089 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
28090 (CHARSET_SUPERSET): New macros.
28091 (charset_work): Extern it.
28092 (ENCODE_CHAR): Use charset_work.
28093 (CHAR_CHARSET_P): Adjust for the change of encoder format.
28094 (map_charset_chars): Extern it.
28095
28096 * charset.c (load_charset_map): Set the default value of encoder
28097 and deunifier char-tables to nil.
28098 (map_charset_chars): Change argument. Change callers.
28099 Use map_char_table_for_charset instead of map_char_table.
28100 (Fmap_charset_chars): New optional args from_code and to_code.
28101 (Fdefine_charset_internal): Adjust for the change of
28102 `define-charset' (:parents -> :subset or :superset).
28103 (charset_work): New variable.
28104 (encode_char, syms_of_charset): Adjust for the change of
28105 Fdefine_charset_internal.
28106 (Ffind_charset_string): Setup the vector `charsets' correctly.
28107
28108 * chartab.c (sub_char_table_ref_and_range): New arg default.
28109 Fix the previous change.
28110 (char_table_ref_and_range): Adjust for the above change.
28111 (map_sub_char_table_for_charset): New function.
28112 (map_char_table_for_charset): New function.
28113
28114 * keymap.c (describe_vector): Handle a char-table directly here.
28115 (describe_char_table): Delete.
28116
28117 * lisp.h (map_charset_chars): Delete.
28118
28119 2008-02-01 Dave Love <fx@gnu.org>
28120
28121 * fns.c (count_combining): Comment out (unused).
28122 (Flocale_codeset): New.
28123 (syms_of_fns): Defsubr it.
28124
28125 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
28126 (size_t): Remove.
28127
28128 2008-02-01 Dave Love <fx@gnu.org>
28129
28130 * Makefile.in (chartab.o): Depend on charset.h.
28131
28132 2008-02-01 Kenichi Handa <handa@m17n.org>
28133
28134 * character.c (syms_of_character): Set the default value of
28135 Vprintable_chars to Qnil.
28136
28137 2008-02-01 Dave Love <fx@gnu.org>
28138
28139 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
28140
28141 2008-02-01 Kenichi Handa <handa@m17n.org>
28142
28143 * charset.c (load_charset_map): Handle the case that from < to
28144 correctly.
28145
28146 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
28147 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
28148 Pay attention to raw-8-bit chars.
28149
28150 2008-02-01 Kenichi Handa <handa@m17n.org>
28151
28152 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
28153 It is not bytecompiled now.
28154
28155 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
28156 (charset_jisx0208): New variables.
28157 (Fdefine_charset_internal): Setup them if appropriate.
28158 (init_charset_once): Initialize them to -1.
28159
28160 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
28161 (charset_jisx0208): Extern them.
28162
28163 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
28164 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
28165 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
28166 (setup_iso_safe_charsets): Fix arguments to Fassq.
28167 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
28168 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
28169 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
28170 (encode_coding_iso_2022): Change the 1st arg to
28171 ENCODE_ISO_CHARACTER to a variable.
28172
28173 2008-02-01 Kenichi Handa <handa@m17n.org>
28174
28175 * charset.h (enum define_charset_arg_index): New enums
28176 charset_arg_min_code and charset_arg_max_code.
28177 (struct charset): New member char_index_offset.
28178
28179 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
28180 Take charset->char_index_offset into account.
28181 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
28182 args[charset_arg_max_code]. Setup charset.char_index_offset.
28183 (syms_of_charset): Fix args to Fdefine_charset_internal.
28184
28185 2008-02-01 Dave Love <fx@gnu.org>
28186
28187 * coding.c (decode_coding_utf_8): Reject overlong sequences.
28188
28189 2008-02-01 Dave Love <fx@gnu.org>
28190
28191 * coding.c: Doc fixes.
28192 (Fcoding_system_aliases): Fix return value.
28193 (Qmac): Remove (duplicated) definition.
28194
28195 2008-02-01 Dave Love <fx@gnu.org>
28196
28197 * charset.c (Fcharset_priority_list, Fset_charset_priority):
28198 New functions.
28199
28200 * character.c (Fstring): Doc fix.
28201
28202 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
28203
28204 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
28205 (font-encoding-alist): Doc fix.
28206
28207 2008-02-01 Dave Love <fx@gnu.org>
28208
28209 * term.c (costs_set): Declare static, non-initialized for pcc.
28210 (encode_terminal_code): Remove unused var.
28211
28212 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
28213 for K&R.
28214
28215 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
28216
28217 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
28218 (suffixes): Move out of make_subsidiaries for K&R.
28219
28220 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
28221
28222 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
28223
28224 2008-02-01 Dave Love <fx@gnu.org>
28225
28226 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
28227
28228 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
28229
28230 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
28231
28232 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
28233
28234 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
28235
28236 2008-02-01 Kenichi Handa <handa@m17n.org>
28237
28238 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
28239 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
28240
28241 2008-02-01 Kenichi Handa <handa@m17n.org>
28242
28243 * coding.c (decode_coding_charset): Adjust for the change of
28244 Fdefine_coding_system_internal.
28245 (Fdefine_coding_system_internal): For a coding system of
28246 `charset' type, store a list of charset IDs in
28247 `charset_attr_charset_valids' element of coding attributes.
28248
28249 2008-02-01 Kenichi Handa <handa@m17n.org>
28250
28251 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
28252 (emacs_mule_char): New arg src. Delete arg `composition'.
28253 Change caller. Handle 2-byte and 3-byte charsets correctly.
28254 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
28255 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
28256 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
28257 (DECODE_EMACS_MULE_21_COMPOSITION):
28258 Call DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
28259 sequence.
28260 (decode_coding_emacs_mule): Handle composition correctly. Rewind
28261 `src' and `consumed_chars' correctly before calling emacs_mule_char.
28262 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
28263 and alt&rule composition.
28264 (decode_coding_iso_2022): Handle composition correctly.
28265 (init_coding_once): Setup emacs_mule_bytes for private charsets.
28266
28267 * charset.c (Fdefine_charset_internal): Fix bug for the case of
28268 re-defining a charset. If the charset has :emacs-mule-id, setup
28269 emacs_mule_bytes.
28270 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
28271
28272 2008-02-01 Kenichi Handa <handa@m17n.org>
28273
28274 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
28275 (encode_coding_big5, encode_coding_charset): If coding requires safe
28276 encoding, produce a character specified by
28277 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
28278
28279 2008-02-01 Dave Love <fx@gnu.org>
28280
28281 * xterm.c (XSetIMValues): Declare.
28282
28283 * process.c: Conditionally include sys/wait.h, pty.h.
28284
28285 * print.c (print_object): Fix print format for 64-bit systems.
28286
28287 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
28288
28289 * buffer.c (emacs_strerror): Declare.
28290
28291 * fontset.c (Fclear_face_cache): Declare.
28292 (accumulate_font_info): Comment-out (unused).
28293 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
28294 variables.
28295
28296 * character.h (string_escape_byte8): Declare.
28297
28298 * charset.c (load_charset_map, load_charset_map_from_file):
28299 Remove unused vars.
28300 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
28301 (Fmap_charset_chars): Doc fix.
28302
28303 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
28304 (Fset_coding_system_priority, Fset_coding_system_priority)
28305 (Fdefine_coding_system_internal): Doc fix.
28306
28307 2008-02-01 Dave Love <fx@gnu.org>
28308
28309 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
28310
28311 2008-02-01 Kenichi Handa <handa@m17n.org>
28312
28313 * character.c (string_escape_byte8): Make multibyte string with
28314 correct size.
28315
28316 * charset.c (Fmake_char): Delete unnecessary code.
28317
28318 2008-02-01 Kenichi Handa <handa@m17n.org>
28319
28320 * xfns.c (x_encode_text): Allocate coding.destination here, and
28321 call encode_coding_object with dst_object Qnil.
28322
28323 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
28324 multibyte form correctly.
28325
28326 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
28327 against Vfont_encoding_alist.
28328
28329 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
28330 handling of charset list.
28331 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
28332 (decode_coding_object): Move point to coding->dst_pos before
28333 calling post-read-conversion function.
28334 (encode_coding_object): Give correct arguments to
28335 pre-write-conversion. Ignore the return value of
28336 pre-write-conversion function. Pay attention to the case that
28337 pre-write-conversion changes the current buffer. If dst_object is
28338 Qt, even if coding->src_bytes is zero, allocate at least one byte
28339 to coding->destination.
28340
28341 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
28342
28343 * charset.c (Fmake_char): Make it more backward compatible.
28344 (Fmap_charset_chars): Fix docstring.
28345
28346 2008-02-01 Dave Love <fx@gnu.org>
28347
28348 * coding.c: Doc fixes.
28349 (Fdefine_coding_system_alias): Use names, not symbols, in
28350 coding-system-alist.
28351
28352 2008-02-01 Kenichi Handa <handa@m17n.org>
28353
28354 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
28355 of calling free_realized_face.
28356
28357 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
28358
28359 * charset.c (read_hex): Don't treat SPC as a comment starter.
28360 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
28361 (Fdecode_char): Fix typo.
28362
28363 2008-02-01 Kenichi Handa <handa@m17n.org>
28364
28365 * charset.h (struct charset): New member `code_space_mask'.
28366
28367 * coding.c (coding_set_source): Delete the local variable beg_byte.
28368 (encode_coding_charset, Fdefine_coding_system_internal):
28369 Delete the local variable charset.
28370 (Fdefine_coding_system_internal):
28371 Setup attrs[coding_attr_charset_valids] correctly.
28372
28373 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
28374 member to check if CODE is valid or not.
28375 (Fdefine_charset_internal): Initialize `code_space_mask' member.
28376 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
28377 is within the range of charset->min_code and carset->max_code.
28378
28379 2008-02-01 Dave Love <fx@gnu.org>
28380
28381 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
28382
28383 * dispextern.h (generate_ascii_font): Fix return type.
28384
28385 * xfaces.c (generate_ascii_font): Fix arg declaration.
28386
28387 * coding.c (coding_inherit_eol_type)
28388 (Fset_terminal_coding_system_internal)
28389 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
28390
28391 2008-02-01 Kenichi Handa <handa@m17n.org>
28392
28393 * coding.c (decode_coding_charset, encode_coding_charset):
28394 Handle multiple charsets correctly.
28395
28396 2008-02-01 Kenichi Handa <handa@m17n.org>
28397
28398 * search.c (boyer_moore): Fix handling of multibyte character
28399 translation.
28400
28401 * xdisp.c (display_mode_element): When the variable `elt' is
28402 changed, update `this' and `lisp_string'.
28403
28404 2008-02-01 Kenichi Handa <handa@m17n.org>
28405
28406 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
28407
28408 * callproc.c (Fcall_process): Be sure to give the current buffer
28409 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
28410
28411 * charset.c (struct charset_map_entries): New struct.
28412 (load_charset_map): Rename from parse_charset_map. New args
28413 entries and n_entries. Change caller.
28414 (load_charset_map_from_file): Rename from load_charset_map.
28415 Change caller. New arg control_flag. Call load_charset_map at
28416 the tail.
28417 (load_charset_map_from_vector): New function.
28418 (Fdefine_charset_internal): Setup charset.compact_codes_p.
28419 (encode_char): If the charset is compact, change a character index
28420 to a code point.
28421
28422 * coding.c (coding_alloc_by_making_gap): Check the case that the
28423 source and destination are the same correctly.
28424 (decode_coding_raw_text): Set coding->consumed_char and
28425 coding->consumed to 0.
28426 (produce_chars): If coding->chars_at_source is nonzero, update
28427 coding->consumed_char and coding->consumed before calling
28428 alloc_destination.
28429 (Fdefine_coding_system_alias): Register ALIAS in
28430 Vcoding_system_alist.
28431 (syms_of_coding): Define `no-conversion' coding system at the tail.
28432
28433 * fileio.c (Finsert_file_contents): Set coding_system instead of
28434 val. If the current buffer is multibyte, always call
28435 decode_coding_gap.
28436
28437 * xfaces.c (try_font_list): Give higher priority to fontset's
28438 family than face's family.
28439
28440 2008-02-01 Kenichi Handa <handa@m17n.org>
28441
28442 * callproc.c (Fcall_process): Be sure to give the current buffer
28443 to decode_coding_c_string.
28444
28445 * xfaces.c (try_font_list): Give a family specified in a fontset
28446 higher priority than a family specified in a face.
28447
28448 2008-02-01 Kenichi Handa <handa@m17n.org>
28449
28450 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
28451 Fix arguments to insert_from_buffer.
28452
28453 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
28454
28455 2008-02-01 Kenichi Handa <handa@m17n.org>
28456
28457 * coding.c (produce_chars): Set the variable `multibytep' correctly.
28458 (decode_coding_gap): Set coding->dst_multibyte correctly.
28459
28460 2008-02-01 Kenichi Handa <handa@m17n.org>
28461
28462 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
28463 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
28464 (encode_coding_utf_16): Substitute coding->default_char for
28465 non-Unicode characters.
28466 (decode_coding): Don't call record_insert here.
28467 (setup_coding_system): Initialize `surrogate' of
28468 coding->spec.utf_16 to 0.
28469 (EMIT_ONE_BYTE): Fix for multibyte case.
28470
28471 * insdel.c (insert_from_gap): Call record_insert.
28472
28473 2008-02-01 Kenichi Handa <handa@m17n.org>
28474
28475 * casefiddle.c (casify_region): Fix multibyte case.
28476
28477 * character.c (c_string_width): Add return type `int'.
28478 (char_string_with_unification): Delete arg ADVANCED.
28479
28480 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
28481 (CHAR_STRING): Adjust for the change of char_string_with_unification.
28482 (CHAR_STRING_ADVANCE): Make it do-while statement.
28483
28484 * chartab.c (sub_char_table_set_range): Optimize for the case
28485 DEPTH == 3. Add workaround code for a GCC optimization bug.
28486
28487 * charset.c (parse_charset_map): Remove an unused variable.
28488
28489 * coding.c: Delete unused variables.
28490
28491 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
28492 earlier. If inserted is zero and the coding system doesn't
28493 require flushing, don't call decode_coding_gap.
28494
28495 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
28496
28497 2008-02-01 Kenichi Handa <handa@m17n.org>
28498
28499 The following changes are for using Unicode as an internal
28500 character model, and use UTF-8 format for buffer/string
28501 representation.
28502
28503 * .gdbinit (xchartable): Adjust for the change of char table structure.
28504 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
28505
28506 * Makefile.in (obj): Add character.o and chartab.o.
28507 (lisp, shortlisp): Remove utf-8.elc.
28508 (*.o): For many files, change dependency on charset.h to
28509 character.h, and add dependency on character.h.
28510 (character.o, chartab.o): New targets.
28511
28512 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
28513 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
28514 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
28515 of "charset.h".
28516
28517 * dired.c, filelock.c: Include "character.h".
28518
28519 * alloc.c: Include "character.h" instead of "charset.h".
28520 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
28521 (syms_of_alloc): Remove defsubr for Smake_char_table.
28522
28523 * buffer.c: Include "character.h" instead of "charset.h", don't
28524 include "coding.h".
28525 (Fset_buffer_multibyte): Adjust for UTF-8.
28526
28527 * buffer.h: EXFUN Fbuffer_live_p.
28528
28529 * callproc.c: Include "character.h" instead of "charset.h".
28530 (Fcall_process): Big change for the new code-conversion APIs.
28531
28532 * casetab.c: Include "character.h" instead of "charset.h".
28533 (set_canon, set_identity, shuffle): Adjust for the new
28534 map_char_table spec.
28535 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
28536 accessing the char table structure.
28537
28538 * chartab.c: New file that implements char table.
28539
28540 * category.c: Include "character.h".
28541 (copy_category_entry): New function.
28542 (copy_category_table): Call map_char_table and copy_category_entry.
28543 (Fmake_category_table): Initialize all top-level slots.
28544 (char_category_set): New function.
28545 (modify_lower_category_set): Delete.
28546 (Fmodify_category_entry): Call char_table_ref_and_range.
28547
28548 * category.h (CATEGORY_SET): Just call char_category_set.
28549
28550 * ccl.c: Include "character.h".
28551 (Qccl, Qcclp): New variables.
28552 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
28553 it's less than 256.
28554 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
28555 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
28556 and DST type.
28557 (ccl_driver): Change types of argument, adjust code accordingly.
28558 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
28559 ccl_driver.
28560 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
28561
28562 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
28563 New members src_multibyte, dst_multibyte, consumed, and produced.
28564 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
28565 (CODING_SPEC_CCL_PROGRAM): New macro.
28566 (ccl_driver): Update prototype.
28567 (Qccl, Qcclp, Fccl_program_p): Extern them.
28568 (CHECK_CCL_PROGRAM): New macro.
28569
28570 * character.c, character.h, chartab.c: New files.
28571
28572 * charset.c: Mostly re-written. Move character and multibyte sequence
28573 handling codes to character.c.
28574
28575 * charset.h: Mostly re-written. Move character and multibyte sequence
28576 handling codes to character.h.
28577
28578 * coding.c, coding.h: Mostly re-written.
28579
28580 * composite.c: Include "character.h" instead of "charset.h".
28581 (CHAR_WIDTH): Move to character.h.
28582 (HASH_KEY, HASH_VALUE): Delete.
28583
28584 * composite.h (enum composition_method): Change order of enumeration
28585 symbols.
28586
28587 * data.c: Include "character.h" instead of "charset.h".
28588 (Faref): Call CHAR_TABLE_REF for a char table.
28589 (Faset): Call CHAR_TABLE_SET for a char table.
28590
28591 * dispextern.h (free_realized_face, check_face_attribytes)
28592 (generate_ascii_font): Extern them.
28593 (free_realized_multibyte_face): Delete extern.
28594
28595 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
28596 table structure.
28597
28598 * editfns.c: Include "character.h" instead of "charset.h".
28599 (Fchar_to_string): Always call CHAR_STRING.
28600
28601 * emacs.c (main): Call init_charset_once, init_charset,
28602 syms_of_chartab, and syms_of_character.
28603
28604 * fileio.c: Include "character.h" instead of "charset.h".
28605 (Finsert_file_contents): Big change for the new code-conversion API.
28606 (choose_write_coding_system, Fwrite_region): Likewise.
28607 (build_annotations_2): Delete.
28608 (e_write): Big change for the new code-conversion API.
28609
28610 * fns.c: Include "character.h" instead of "charset.h".
28611 (copy_sub_char_table): Move to chartab.c.
28612 (Fcopy_sequence): Call copy_char_table for a char table.
28613 (concat): Delete codes calling count_multibyte.
28614 (string_char_to_byte, string_byte_to_char): Adjust for the new
28615 multibyte form.
28616 (internal_equal): Adjust for the change of char table structure.
28617 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
28618 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
28619 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
28620 (char_table_translate, optimize_sub_char_table)
28621 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
28622 chartab.c.
28623 (char_table_ref_and_index): Delete.
28624 (HASH_KEY, HASH_VALUE): Move to lisp.h.
28625 (Fmd5): Call preferred_coding_system instead of accessing
28626 Vcoding_category_list. Adjust for the new code-conversion API.
28627 (syms_of_fns): Move defsubr for char table related functions to
28628 chartab.c.
28629
28630 * fontset.c: Mostly re-written.
28631
28632 * fontset.h (struct font_info): Change type of the member encoding_type.
28633 (enum FONT_SPEC_INDEX): New enum.
28634 (fontset_font_pattern, fs_load_font): Update prototype.
28635 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
28636
28637 * indent.c: Include "character.h" instead of "charset.h".
28638 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
28639
28640 * insdel.c: Include "character.h" instead of "charset.h".
28641 (copy_text): Don't refer to Vnonascii_translation_table.
28642 (insert_from_gap): New function.
28643
28644 * keyboard.c: Include "character.h" instead of "charset.h".
28645 (command_loop_1): Never call direct_output_forward_char before
28646 a non-ASCII character.
28647 (read_char): If Vkeyboard_translate_table is a char table, always
28648 translate a character.
28649
28650 * keymap.c: Include "character.h".
28651 (store_in_keymap): Handle the case that IDX is a cons.
28652 (Fdefine_key): Handle the case that KEY is a cons and the car part
28653 is also a cons (range).
28654 (push_key_description): Adjust for the new character code.
28655 (describe_vector): Call describe_char_table for a char table.
28656 (describe_char_table): New function.
28657
28658 * keymap.h (describe_char_table): Extern it.
28659
28660 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
28661 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
28662 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
28663 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
28664 Delete.
28665 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
28666 structure.
28667 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
28668 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
28669 (CHARTAB_SIZE_BITS_3): New macros.
28670 (chartab_size): Extern it.
28671 (struct Lisp_Char_Table): Re-design.
28672 (struct Lisp_Sub_Char_Table): New structure.
28673 (HASH_KEY, HASH_VALUE): Move from fns.c.
28674 (CHARACTERBITS): Define as 22.
28675 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
28676 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
28677 (GC_SUB_CHAR_TABLE_P): New macro.
28678 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
28679 (code_convert_string_norecord): Delete extern.
28680 (init_character_once, syms_of_character, init_charset)
28681 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
28682
28683 * lread.c: Include "character.h".
28684 (read_multibyte): New arg NBYTES.
28685 (read_escape): Change the meaning of returned *BYTEREP.
28686 (to_multibyte): Delete.
28687 (read1): Adjust the handling of char table and string.
28688
28689 * print.c: Include "character.h" instead of "charset.h".
28690 (print_string): Convert 8-bit raw bytes to octal form by
28691 string_escape_byte8.
28692 (print_object): Adjust for the new multibyte form. Print 8-bit
28693 raw bytes always in octal form. Handle sub char table correctly.
28694
28695 * process.c: Include "character.h" instead of "charset.h".
28696 (read_process_output, send_process): Adjust for the new
28697 code-conversion API.
28698
28699 * puresize.h (BASE_PURESIZE): Increase.
28700
28701 * regex.c: Include "character.h" instead of "charset.h".
28702 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
28703 (regex_compile): Accept a range whose starting and ending
28704 character have different leading bytes.
28705 (analyse_first): Adjust for the above change.
28706
28707 * search.c: Include "character.h" instead of "charset.h".
28708 (search_buffer, boyer_moore): Adjust for the new multibyte form.
28709 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
28710
28711 * syntax.c: Include "character.h" instead of "charset.h".
28712 (syntax_parent_lookup): Delete.
28713 (Fmodify_syntax_entry): Accept a cons as CHAR.
28714 (skip_chars): Adjust for the new multibyte form.
28715 (init_syntax_once): Call char_table_set_range instead of directly
28716 accessing the structure of a char table.
28717
28718 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
28719 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
28720 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
28721 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
28722
28723 * term.c: Include "buffer.h" and "character.h".
28724 (encode_terminal_code, write_glyphs): Adjust for the new
28725 code-conversion API.
28726 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
28727
28728 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
28729
28730 * xdisp.c: Include "character.h".
28731 (get_next_display_element): Adjust for the new multibyte form.
28732 (disp_char_vector): Adjust for the new char table structure.
28733 (decode_mode_spec_coding): Adjust for the new structure of
28734 coding system.
28735 (decode_mode_spec): Adjust for the new code-conversion API.
28736
28737 * xfaces.c: Include "character.h" instead of "charset.h".
28738 (load_face_font): Adjust for the change of choose_face_font and
28739 FS_LOAD_FONT.
28740 (generate_ascii_font): New function.
28741 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
28742 (set_font_frame_param): Adjust for the change of choose_face_font.
28743 (free_realized_face): Make it public.
28744 (free_realized_faces_for_fontset): Rename from
28745 free_realized_multibyte_face. Free also faces realized for ASCII.
28746 (choose_face_font): Change arguments. Adjust for the change of
28747 fontset_font_pattern and FS_LOAD_FONT.
28748
28749 * xfns.c: Include "character.h".
28750 (x_encode_text): Adjust for the new code-conversion API.
28751
28752 * xselect.c: Don't include "charset.h".
28753 (selection_data_to_lisp_data): Adjust for the new code conversion API.
28754
28755 * xterm.c: Include "character.h".
28756 (x_encode_char): New argument CHARSET. Change caller.
28757 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
28758 Call ENCODE_CHAR instead of SPLIT_CHAR.
28759 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
28760 CHAR_WIDTH instead of CHARSET_WIDTH.
28761 (XTread_socket): Adjust for the new code-conversion API.
28762 (x_new_font): Adjust for the change of FS_LOAD_FONT.
28763 (x_load_font): Adjust for the change of struct font.
28764
28765 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
28766
28767 * xfaces.c (face_at_buffer_position): Remove unused vars.
28768
28769 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
28770
28771 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
28772 Fix overflow checking.
28773
28774 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
28775
28776 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
28777 Cancel previous change.
28778
28779 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
28780
28781 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
28782 ccl->eight_bit_control. Fix check for buffer overflow.
28783 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
28784 (ccl_driver): Initialize extra_bytes to 0.
28785
28786 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
28787
28788 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
28789 return it ORed with ctrl_modifier.
28790
28791 2008-01-29 Miles Bader <miles@gnu.org>
28792
28793 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
28794
28795 2008-01-28 Jason Rumney <jasonr@gnu.org>
28796
28797 * w32.c (stat): Don't double check for networked drive.
28798
28799 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
28800
28801 * window.c (run_window_configuration_change_hook): New function.
28802 Code extracted from set_window_buffer. Set the selected frame.
28803 (set_window_buffer): Use it.
28804 * window.h (run_window_configuration_change_hook): Declare.
28805 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
28806
28807 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
28808
28809 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
28810
28811 * Makefile.in: Remove references to unused macros.
28812
28813 2008-01-26 Eli Zaretskii <eliz@gnu.org>
28814
28815 * w32.c (g_b_init_get_sid_sub_authority)
28816 (g_b_init_get_sid_sub_authority_count): New static variables.
28817 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
28818 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
28819 (init_user_info): Use them to retrieve uid and gid.
28820 Use 500/513, the Windows defaults, as Administrator's uid/gid.
28821 (fstat): Use pw_uid and pw_gid from the_passwd structure for
28822 st_uid and st_gid of the file.
28823
28824 2008-01-26 Jason Rumney <jasonr@gnu.org>
28825
28826 * w32.c (logon_network_drive): New function.
28827 (stat): Use it.
28828
28829 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
28830
28831 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
28832 invisible text covered with an ellipsis.
28833
28834 2008-01-25 Richard Stallman <rms@gnu.org>
28835
28836 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
28837 jump back to beginning. Move some other initializations after that.
28838 (Qwindow_text_change_functions, Vwindow_text_change_functions):
28839 New variables.
28840 (syms_of_xdisp): Init them.
28841
28842 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
28843
28844 * buffer.c (reset_buffer_local_variables):
28845 Implement `permanent-local-hook'.
28846 (Qpermanent_local_hook): New variable.
28847 (syms_of_buffer): Init and staticpro it.
28848
28849 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
28850
28851 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
28852
28853 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
28854
28855 * fns.c (Fclrhash): Return TABLE.
28856
28857 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28858
28859 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
28860 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
28861 is set even without positional changes.
28862 (x_scroll_bar_clear): Set bar->redraw_needed_p.
28863
28864 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
28865
28866 2008-01-23 Jason Rumney <jasonr@gnu.org>
28867
28868 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
28869
28870 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
28871 the unicode range available in MULE by locale-coding-system.
28872 Improve dbcs lead byte detection. Set event timestamp and modifiers
28873 earlier.
28874
28875 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28876
28877 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
28878 [MAC_OSX] (init_mac_osx_environment): Initialize it.
28879 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
28880 when used on child processes.
28881
28882 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
28883
28884 * dbusbind.c (Fdbus_method_return_internal): Rename from
28885 Fdbus_method_return.
28886 (Fdbus_unregister_object): Move to dbus.el.
28887 (Fdbus_call_method, Fdbus_method_return_internal)
28888 (Fdbus_send_signal): Improve debug messages.
28889
28890 2008-01-20 Martin Rudalics <rudalics@gmx.at>
28891
28892 * undo.c (undo_inhibit_record_point): New variable.
28893 (syms_of_undo): Initialize it.
28894 (record_point): Don't record point when undo_inhibit_record_point
28895 is set.
28896
28897 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
28898
28899 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
28900
28901 * xdisp.c (Qauto_hscroll_mode): New var.
28902 (syms_of_xdisp): Initialize it.
28903 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
28904 window's buffer.
28905 (hscroll_windows): Don't check automatic_hscrolling_p here.
28906
28907 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
28908 vscroll if we're setting window-buffer to the value it already has.
28909
28910 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
28911
28912 * m/intel386.h: Remove references to XENIX.
28913
28914 2008-01-17 Andreas Schwab <schwab@suse.de>
28915
28916 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
28917 instead of HAVE_X86_64_LIB64_DIR.
28918 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
28919
28920 2008-01-17 Glenn Morris <rgm@gnu.org>
28921
28922 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
28923 to HAVE_X86_64_LIB64_DIR.
28924
28925 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
28926
28927 * s/irix3-3.h:
28928 * s/irix4-0.h:
28929 * s/386-ix.h:
28930 * s/domain.h:
28931 * s/hpux9-x11r4.h:
28932 * s/hpux9shxr4.h: Remove files for systems no longer supported.
28933
28934 * sysdep.c: Remove code containing references to symbols defined
28935 by unsupported systems.
28936
28937 2008-01-16 Glenn Morris <rgm@gnu.org>
28938
28939 * coding.c (select-safe-coding-system-function): Doc fix.
28940
28941 2008-01-15 Glenn Morris <rgm@gnu.org>
28942
28943 * config.in: Revert 2008-01-13 change: this is a generated file.
28944
28945 2008-01-13 Tom Tromey <tromey@redhat.com>
28946
28947 * lisp.h: Fix typo.
28948
28949 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
28950
28951 * m/sequent-ptx.h:
28952 * m/sequent.h:
28953 * s/ptx.h:
28954 * s/ptx4-2.h:
28955 * s/ptx4.h: Remove files for systems no longer supported.
28956
28957 * callproc.c (Fcall_process): Fix previous change.
28958
28959 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
28960
28961 * unexsunos4.c: Remove file, system not supported anymore.
28962
28963 * m/mips.h:
28964 * m/intel386.h:
28965 * callproc.c:
28966 * config.in:
28967 * ecrt0.c:
28968 * emacs.c:
28969 * fileio.c:
28970 * frame.c:
28971 * getpagesize.h:
28972 * keyboard.c:
28973 * lread.c:
28974 * process.c:
28975 * puresize.h:
28976 * sysdep.c:
28977 * systty.h:
28978 * syswait.h:
28979 * unexec.c:
28980 * xdisp.c:
28981 * alloc.c: Remove code containing references to symbols defined by
28982 unsupported systems.
28983
28984 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
28985
28986 * coding.c (detect_coding_mask): Fix previous change.
28987
28988 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
28989
28990 * coding.c (detect_coding_iso2022): New arg
28991 latin_extra_code_state. Allow Latin extra codes only
28992 when *latin_extra_code_state is nonzero.
28993 (detect_coding_mask): If there is a NULL byte, detect the encoding
28994 as UTF-16 or binary. If Latin extra codes exist, detect the
28995 encoding as ISO-2022 only when there's no other proper encoding is
28996 found.
28997
28998 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28999
29000 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
29001 #ifdef MAC_OS.
29002
29003 2008-01-08 Richard Stallman <rms@gnu.org>
29004
29005 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
29006
29007 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
29008
29009 * keyboard.c (parse_menu_item): Don't enclose key bindings on
29010 menu bar in parentheses.
29011
29012 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
29013
29014 * m/7300.h:
29015 * m/acorn.h:
29016 * m/alliant-2800.h:
29017 * m/alliant.h:
29018 * m/alliant1.h:
29019 * m/alliant4.h:
29020 * m/altos.h:
29021 * m/amdahl.h:
29022 * m/apollo.h:
29023 * m/att3b.h:
29024 * m/aviion-intel.h:
29025 * m/aviion.h:
29026 * m/celerity.h:
29027 * m/clipper.h:
29028 * m/cnvrgnt.h:
29029 * m/convex.h:
29030 * m/cydra5.h:
29031 * m/delta88k.h:
29032 * m/dpx2.h:
29033 * m/dual.h:
29034 * m/elxsi.h:
29035 * m/f301.h:
29036 * m/gould-np1.h:
29037 * m/gould.h:
29038 * m/i860.h:
29039 * m/ibmps2-aix.h:
29040 * m/ibmrt-aix.h:
29041 * m/ibmrt.h:
29042 * m/irist.h:
29043 * m/is386.h:
29044 * m/isi-ov.h:
29045 * m/mega68.h:
29046 * m/mg1.h:
29047 * m/news-r6.h:
29048 * m/news-risc.h:
29049 * m/news.h:
29050 * m/nh3000.h:
29051 * m/nh4000.h:
29052 * m/ns16000.h:
29053 * m/ns32000.h:
29054 * m/nu.h:
29055 * m/orion.h:
29056 * m/orion105.h:
29057 * m/paragon.h:
29058 * m/pfa50.h:
29059 * m/plexus.h:
29060 * m/pyramid.h:
29061 * m/pyrmips.h:
29062 * m/sh3el.h:
29063 * m/sps7.h:
29064 * m/sr2k.h:
29065 * m/stride.h:
29066 * m/sun1.h:
29067 * m/sun2.h:
29068 * m/sun3-68881.h:
29069 * m/sun3-fpa.h:
29070 * m/sun3-soft.h:
29071 * m/sun3.h:
29072 * m/sun386.h:
29073 * m/symmetry.h:
29074 * m/tad68k.h:
29075 * m/tahoe.h:
29076 * m/targon31.h:
29077 * m/tek4300.h:
29078 * m/tekxd88.h:
29079 * m/tower32.h:
29080 * m/tower32v3.h:
29081 * m/ustation.h:
29082 * m/wicat.h:
29083 * m/xps100.h:
29084 * s/cxux.h:
29085 * s/cxux7.h:
29086 * s/dgux.h:
29087 * s/dgux4.h:
29088 * s/dgux5-4-3.h:
29089 * s/dgux5-4r2.h:
29090 * s/esix.h:
29091 * s/esix5r4.h:
29092 * s/hiuxmpp.h:
29093 * s/hiuxwe2.h:
29094 * s/iris3-5.h:
29095 * s/iris3-6.h:
29096 * s/isc2-2.h:
29097 * s/isc3-0.h:
29098 * s/isc4-0.h:
29099 * s/isc4-1.h:
29100 * s/newsos5.h:
29101 * s/newsos6.h:
29102 * s/osf1.h:
29103 * s/osf5-0.h:
29104 * s/riscix1-1.h:
29105 * s/riscix12.h:
29106 * s/sco4.h:
29107 * s/sco5.h:
29108 * s/sunos4-0.h:
29109 * s/sunos4-1.h:
29110 * s/sunos413.h:
29111 * s/sunos4shr.h:
29112 * s/umax.h:
29113 * s/unipl5-2.h:
29114 * s/xenix.h:
29115 * cxux-crt0.s:
29116 * unexapollo.c:
29117 * unexconvex.c:
29118 * unexenix.c:
29119 * unexsni.c: Remove files for systems no longer supported.
29120
29121 * m/intel386.h: Remove references to unsupported systems.
29122
29123 * w32.c (get_emacs_configuration): Remove reference to i860.
29124
29125 * sysdep.c: Remove dead code.
29126
29127 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
29128
29129 * s/rtu.h:
29130 * m/masscomp.h: Remove files. Platform is obsolete.
29131
29132 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
29133
29134 * dbusbind.c (Fdbus_method_return): New function.
29135 (xd_read_message): Add the serial number to the event.
29136 (Fdbus_register_method): Activate the function.
29137
29138 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
29139
29140 * keyboard.c (read_key_sequence): Fix typo.
29141
29142 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
29143
29144 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
29145 (xd_signature, xd_append_arg): Handle element type detection for
29146 empty arrays.
29147 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
29148 SDATA () calls; this must be solved more general.
29149 (Fdbus_register_signal): Use SBYTES instead of strlen.
29150
29151 2008-01-03 Magnus Henoch <magnus@zemdatav>
29152
29153 * dbusbind.c (xd_append_arg): Use unsigned char instead of
29154 unsigned int for byte values (necessary for big-endian platform).
29155 (Fdbus_call_method): Handle the case of no returned arguments.
29156
29157 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
29158
29159 * dbusbind.c (xd_read_message): Use non-static input_event struct.
29160
29161 2007-12-31 Magnus Henoch <mange@freemail.hu>
29162
29163 * dbusbind.c (xd_signature): Signature of variant is just "v".
29164
29165 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
29166
29167 * dbusbind.c: Fix several errors and compiler warnings.
29168 Reported by Tom Tromey <tromey@redhat.com>.
29169 (XD_ERROR, XD_DEBUG_MESSAGE)
29170 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
29171 (xd_append_arg): Part for basic D-Bus types rewritten.
29172 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
29173 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
29174 appropriate.
29175 (xd_read_message): Return Qnil. Don't signal an error; it is not
29176 useful during event reading.
29177 (Fdbus_register_signal): Signal an error if the check for
29178 FUNCTIONP fails.
29179 (Fdbus_register_method): New function. The implementation is not
29180 complete, the call of the function signals an error therefore.
29181 (Fdbus_unregister_object): New function, renamed from
29182 Fdbus_unregister_signal. The initial check signals an error, if
29183 the object is not well formed.
29184
29185 2007-12-30 Richard Stallman <rms@gnu.org>
29186
29187 * textprop.c (get_char_property_and_overlay):
29188 Signal error if POSITION is out of range in a buffer.
29189
29190 2007-12-29 Martin Rudalics <rudalics@gmx.at>
29191
29192 * w32fns.c (Fx_create_frame): Make copy of frame parameters
29193 because the original parameters are in pure storage now.
29194
29195 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29196
29197 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
29198
29199 2007-12-22 Eli Zaretskii <eliz@gnu.org>
29200
29201 * callint.c (syms_of_callint) <command-history>: Add reference to
29202 history-length in the doc string.
29203
29204 2007-12-17 Jason Rumney <jasonr@gnu.org>
29205
29206 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
29207 before passing as wParam.
29208
29209 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
29210
29211 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
29212 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
29213 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
29214 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
29215 as number.
29216 (Fdbus_call_method): Fix docstring.
29217
29218 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
29219
29220 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
29221 New macros.
29222 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
29223 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
29224 Simplify.
29225 (xd_signature): New function.
29226 (xd_append_arg): Compute also signatures. Major rewrite.
29227 (xd_retrieve_arg): Make debug messages friendly.
29228 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
29229 Check for signatures of arguments.
29230
29231 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
29232
29233 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
29234 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
29235 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
29236 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
29237 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
29238 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
29239 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
29240 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
29241 (xd_retrieve_value): Remove. Functionality included in ...
29242 (xd_append_arg): New function.
29243 (Fdbus_call_method, Fdbus_send_signal): Apply it.
29244
29245 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
29246
29247 * dbusbind.c (top): Include <stdio.h>.
29248 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
29249 dbus_message_new_method_call and dbus_message_new_signal.
29250 (Fdbus_register_signal): Rename unique_name to uname.
29251 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
29252 non-existing unique name. Fix typos in matching rule. Return an
29253 object which is useful in Fdbus_unregister_signal.
29254 (Fdbus_unregister_signal): Reimplementation, in order to remove
29255 only the corresponding entry.
29256 (Vdbus_registered_functions_table): Change the order of entries.
29257 Apply these changes in xd_read_message and Fdbus_register_signal.
29258
29259 2007-12-16 Andreas Schwab <schwab@suse.de>
29260
29261 * fileio.c (Finsert_file_contents): Fix overflow check to not
29262 depend on undefined integer overflow.
29263
29264 2007-12-14 Jason Rumney <jasonr@gnu.org>
29265
29266 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
29267 for characters above 127.
29268
29269 2007-12-13 Jason Rumney <jasonr@gnu.org>
29270
29271 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
29272 before dereferencing array.
29273 (lookup_vk_code): Remove zero comparison.
29274
29275 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
29276
29277 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
29278 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
29279 Use `unsigned int' instead of `uint'.
29280 (xd_read_message, Fdbus_register_signal): Split expressions into
29281 multiple lines before operators "&&" and "||", according to the
29282 GNU Coding Standards.
29283
29284 2007-12-14 Eli Zaretskii <eliz@gnu.org>
29285
29286 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
29287
29288 2007-12-12 Juri Linkov <juri@jurta.org>
29289
29290 * buffer.c (Frename_buffer): In interactive spec replace
29291 `read-buffer' with `read-string' that uses `buffer-name-history'
29292 as history, and the current buffer's name as default.
29293
29294 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
29295
29296 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
29297 manipulating the backtrace manually.
29298 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
29299 (struct backtrace, backtrace_list): Remove.
29300 (command_loop_1): Remove dead var `no_direct'.
29301
29302 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
29303 preserve non-built-in buffer-local variables.
29304 (Fkill_all_local_variables): Don't re-create&re-set permanent
29305 buffer-local variables.
29306
29307 2007-12-09 Juri Linkov <juri@jurta.org>
29308
29309 * buffer.c (Frename_buffer): Change interactive spec from "s" to
29310 Lisp code that uses `read-buffer' with current buffer as default.
29311
29312 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
29313
29314 * dbusbind.c (xd_read_message): Generate an event for every
29315 registered handler. There might be several handlers registered
29316 for the same signal.
29317 (Fdbus_register_signal): Don't overwrite a registration for the
29318 same signal. Add a new registration if handlers are different.
29319 (Vdbus_registered_functions_table): Rework doc string.
29320
29321 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
29322
29323 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
29324 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
29325 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
29326 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
29327 Unify argument lists.
29328 (xd_read_message, Fdbus_register_signal): Reorder and extend event
29329 arguments and hash table keys. Use unique name for service.
29330 (Fdbus_unregister_signal): Remove checks.
29331 (Vdbus_registered_functions_table): Fix doc string.
29332
29333 2007-12-05 Magnus Henoch <mange@freemail.hu>
29334
29335 * process.c (make_process): Initialize pty_flag to 0.
29336
29337 2007-12-05 Jason Rumney <jasonr@gnu.org>
29338
29339 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
29340 specified XBMs.
29341
29342 2007-12-05 Richard Stallman <rms@gnu.org>
29343
29344 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
29345
29346 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29347
29348 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
29349 New variable.
29350 (mac_try_close_socket) [MAC_OSX]: New function.
29351 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
29352 Update cfsockets_for_select. Replace invalid CFRunLoop source.
29353
29354 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
29355 Use mac_try_close_socket.
29356
29357 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29358
29359 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
29360 reloc_base.
29361 (copy_dysymtab): Compute relocation base here.
29362 (rebase_reloc_address) [__ppc64__]: New function.
29363 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
29364 changed.
29365
29366 2007-12-05 Jason Rumney <jasonr@gnu.org>
29367
29368 * w32proc.c (sys_spawnve): Quote args with wildcards.
29369
29370 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29371
29372 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
29373 __objc_* sections.
29374 (unrelocate) [_LP64]: Set relocation base to address of data segment.
29375
29376 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
29377
29378 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
29379 Move check for Vdbus_registered_functions_table to
29380 xd_read_queued_messages.
29381 (xd_read_queued_messages): Protect xd_read_message calls by
29382 internal_condition_case_1.
29383
29384 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
29385
29386 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
29387 Qdbus_system_bus and Qdbus_session_bus, respectively.
29388 (Vdbus_intern_symbols): Remove.
29389 (Vdbus_registered_functions_table): New hash table.
29390 (XD_SYMBOL_INTERN_SYMBOL): Remove.
29391 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
29392 Rewrite in order to manage registered functions by hash table
29393 Vdbus_registered_functions_table.
29394
29395 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
29396
29397 * xterm.c: Update URL to Window Manager Specification in comment.
29398
29399 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
29400
29401 * config.in (HAVE_DBUS): Add.
29402
29403 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
29404 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
29405 (obj): Add $(DBUS_OBJ).
29406 (LIBES): Add $(DBUS_LIBS).
29407 (dbusbind.o): New target.
29408
29409 * dbusbind.c: New file.
29410
29411 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
29412
29413 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
29414 (Qdbus_event): New Lisp symbol.
29415 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
29416 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
29417 (keys_of_keyboard): Define dbus-event.
29418
29419 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
29420
29421 2007-12-01 Richard Stallman <rms@gnu.org>
29422
29423 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
29424
29425 2007-11-30 Jason Rumney <jasonr@gnu.org>
29426
29427 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
29428 (w32con_reset_terminal_modes): Clear screen buffer.
29429 (w32_face_attributes): Don't use color indexes that are out of range.
29430 Only reverse the default colors.
29431
29432 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
29433 WINDOWSNT.
29434
29435 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
29436
29437 2007-11-29 Jason Rumney <jasonr@gnu.org>
29438
29439 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
29440 (w32_face_attributes): Use Vtty_defined_color_alist to determine
29441 if the terminal colors are initialized.
29442 (unspecified_fg, unspecified_bg): Remove unused declarations.
29443
29444 2007-11-29 Andreas Schwab <schwab@suse.de>
29445
29446 * keyboard.c (apply_modifiers): Fix typo.
29447
29448 2007-11-29 Richard Stallman <rms@gnu.org>
29449
29450 * keymap.c (Fcurrent_local_map): Doc fix.
29451
29452 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
29453
29454 * s/gnu-kfreebsd.h: New file.
29455
29456 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
29457
29458 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
29459 Don't cast redundantly.
29460
29461 * keyboard.c (KEY_TO_CHAR): New macro.
29462 (parse_modifiers, apply_modifiers): Accept integer arguments.
29463 (read_key_sequence): Use them to unify the "shift->unshift" mapping
29464 for chars and symbol keys.
29465 After doing such remapping, apply function-key-map again.
29466
29467 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
29468
29469 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
29470 compiled anymore.
29471
29472 2007-11-26 Andreas Schwab <schwab@suse.de>
29473
29474 * process.c (list_processes_1): Fix indentation level of the
29475 command column.
29476
29477 2007-11-23 Andreas Schwab <schwab@suse.de>
29478
29479 * editfns.c (Fformat): Handle %c specially since it requires the
29480 argument to be of type int.
29481
29482 2007-11-23 Markus Triska <markus.triska@gmx.at>
29483
29484 * emacs.c (main): Call init_editfns before init_process, since
29485 init_process sets Vprocess_connection_type depending on OS release.
29486
29487 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
29488
29489 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
29490 (find_symbol_value): Use do_symval_forwarding.
29491
29492 * data.c (set_internal): Set the value in the `cons-cell' (for
29493 Buffer_Local_values) not only for frame-local variables.
29494
29495 2007-11-22 Andreas Schwab <schwab@suse.de>
29496
29497 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
29498 values to sprintf.
29499 * keymap.c (Fsingle_key_description): Likewise.
29500 * print.c (print_object): Likewise.
29501
29502 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
29503
29504 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
29505 file for image is nil.
29506
29507 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
29508
29509 * term.c: Include stdarg.h.
29510 (fatal): Implement using varargs.
29511 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
29512
29513 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
29514
29515 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
29516 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
29517 Update call to buffer_slot_type_mismatch.
29518 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
29519 (buffer_slot_type_mismatch): Update.
29520 * buffer.c (buffer_local_types): Remove.
29521 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
29522 (defvar_per_buffer): Set the type in the buffer_objfwd.
29523
29524 2007-11-21 Jason Rumney <jasonr@gnu.org>
29525
29526 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
29527 CreateFileMapping returns NULL on failure.
29528
29529 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
29530
29531 * search.c (Fset_match_data): Remove the `evaporate' feature.
29532 (unwind_set_match_data): Don't use the `evaporate' feature.
29533
29534 2007-11-21 Jason Rumney <jasonr@gnu.org>
29535
29536 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
29537
29538 * w32console.c (w32con_write_glyphs): Remove unused variables.
29539
29540 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
29541
29542 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
29543
29544 * s/darwin.h (MULTI_KBOARD): Remove.
29545
29546 * macfns.c (x_create_tip_frame, Fx_create_frame)
29547 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
29548
29549 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
29550
29551 * buffer.c (Fbuffer_local_value): Remove redundant test.
29552 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
29553 than in `current-buffer' to match the comment.
29554 Do the swap using swap_in_global_binding.
29555
29556 * data.c (store_symval_forwarding, set_internal):
29557 * eval.c (specbind): Remove dead code.
29558
29559 * coding.c (detect_coding, Fupdate_coding_systems_internal):
29560 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
29561 Since we do not want to see internal Lisp_*fwd objects here.
29562
29563 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
29564
29565 * sysdep.c (init_system_name): Use getaddrinfo if available.
29566
29567 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
29568 (x_scroll_bar_note_movement): start, end, with, height in struct
29569 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
29570
29571 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
29572
29573 * puresize.h (BASE_PURESIZE): Increase to 1190000.
29574
29575 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
29576
29577 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
29578 This undoes Richard's change of 14-Oct-2002.
29579
29580 * alloc.c (allocate_other_vector):
29581 * lisp.h (allocate_other_vector): Remove.
29582
29583 * window.c (struct save_window_data): Move non-lisp data to the end
29584 and make it `int' rather than Lisp_Object.
29585 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
29586 Done wrap/unwrap integer values.
29587 (Fset_window_configuration, compare_window_configurations):
29588 Update use of fields to their new types.
29589
29590 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
29591 Turn integer fields into `int'. Merge x_window_low and x_window_high.
29592 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
29593 (SET_SCROLL_BAR_X_WINDOW): Remove.
29594 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
29595 Access the new x_window field directly.
29596 * xterm.c (x_scroll_bar_create): Use a pseudovector.
29597 Don't wrap/unwrap integers into Lisp_Objects.
29598 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
29599 (x_scroll_bar_report_motion):
29600 Don't wrap/unwrap integers into Lisp_Objects.
29601 (x_term_init): Use SDATA.
29602 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
29603 (x_scroll_bar_set_handle, x_scroll_bar_remove)
29604 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
29605 (x_scroll_bar_report_motion, x_scroll_bar_clear):
29606 * xfns.c (x_set_background_color):
29607 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
29608 Access the new x_window field directly.
29609
29610 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
29611 (allocate_pseudovector): Make non-static.
29612
29613 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
29614 (allocate_pseudovector): Declare.
29615 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
29616
29617 2007-11-15 Andreas Schwab <schwab@suse.de>
29618
29619 * editfns.c (Fformat): Correctly format EMACS_INT values.
29620 Also take precision into account when formatting an integer.
29621
29622 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
29623
29624 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
29625
29626 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
29627 (syms_of_keyboard): Defsubr it.
29628
29629 * data.c (swap_in_global_binding): Fix longstanding bug where
29630 store_symval_forwarding was not called with the right second argument,
29631 thus causing objfwd-ing from being dropped.
29632
29633 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
29634
29635 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
29636 (Fx_display_pixel_height, Fx_display_planes)
29637 (Fx_display_color_cells, Fx_server_max_request_size)
29638 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
29639 (Fx_display_visual_class, Fx_display_save_under):
29640 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
29641 (Fx_display_pixel_height, Fx_display_planes)
29642 (Fx_display_color_cells, Fx_server_max_request_size)
29643 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
29644 (Fx_display_mm_height, Fx_display_mm_width)
29645 (Fx_display_backing_store, Fx_display_visual_class)
29646 (Fw32_select_font, Fx_display_save_under):
29647 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
29648 (Fx_display_pixel_height, Fx_display_planes)
29649 (Fx_display_color_cells, Fx_server_max_request_size)
29650 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
29651 (Fx_display_save_under): Fix typos in docstrings.
29652
29653 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
29654
29655 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
29656 corresponding to deleted entries; they are an implementation detail.
29657 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
29658 Remove variables.
29659 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
29660 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
29661 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
29662 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
29663 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
29664 (Fw32_define_rgb_color, Fw32_load_color_file)
29665 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
29666 Fix typos in docstrings.
29667 (Fx_server_version): Reflow docstring.
29668 (Fw32_shell_execute): Doc fixes.
29669
29670 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
29671
29672 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
29673 if w32_parse_hot_key returned nil.
29674
29675 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
29676
29677 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
29678
29679 2007-11-09 Jason Rumney <jasonr@gnu.org>
29680
29681 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
29682
29683 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
29684
29685 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
29686 Remove W32_SCROLL_BAR_CLICK_EVENT.
29687
29688 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
29689 Add MULTIMEDIA_KEY_EVENT.
29690
29691 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
29692 (lispy_multimedia_keys) [WINDOWSNT]: New array.
29693 (make_lispy_event) [WINDOWSNT]: Use it to translate
29694 MULTIMEDIA_KEY_EVENT.
29695
29696 * w32term.h (WM_APPCOMMAND): Define if not already.
29697 (GET_APPCOMMAND_LPARAM): Likewise.
29698
29699 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
29700 WM_APPCOMMAND.
29701
29702 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
29703 (syms_of_w32fns): Export and initialize it.
29704 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
29705
29706 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
29707
29708 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
29709 twice.
29710
29711 * xdisp.c (handle_face_prop): Fix last change.
29712
29713 2007-11-09 Richard Stallman <rms@gnu.org>
29714
29715 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
29716 not just for after-strings and before-strings.
29717 Call face_for_overlay_string and pass the overlay to it.
29718 (handle_display_prop): Determine whether property came from an overlay.
29719 Pass OVERLAY arg to handle_single_display_spec.
29720 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
29721 (load_overlay_strings): Fill in it->string_overlays.
29722 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
29723
29724 * xfaces.c (face_for_overlay_string): Function renamed from
29725 face_at_buffer_position_no_overlays, and add arg OVERLAY.
29726
29727 * dispextern.h (struct it): New elt string_overlays.
29728 New elt from_overlay, also in stack.
29729 Rearrange a few elements.
29730 (face_for_overlay_string): Decl renamed from
29731 face_at_buffer_position_no_overlays, and add argument.
29732
29733 2007-11-09 Richard Stallman <rms@gnu.org>
29734
29735 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
29736 to get the base face for an overlay string.
29737
29738 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
29739
29740 * xfaces.c (face_at_buffer_position_no_overlays): New function.
29741
29742 * xdisp.c (handle_stop): Move some code out of loop.
29743
29744 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29745
29746 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
29747 Fix conversion from Lisp object to ATSUFontID.
29748
29749 2007-11-09 Jason Rumney <jasonr@gnu.org>
29750
29751 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
29752
29753 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29754
29755 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
29756 Don't assume regions are aligned to page boundary.
29757 (print_load_command_name): Add LC_UUID if defined.
29758
29759 2007-11-09 Richard Stallman <rms@gnu.org>
29760
29761 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
29762
29763 2007-11-07 Jason Rumney <jasonr@gnu.org>
29764
29765 * s/windows95.h: Remove.
29766
29767 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
29768
29769 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
29770 abort with a message on unhandled store_type values.
29771
29772 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
29773
29774 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
29775 Remove HAVE_X11R5 and HAVE_X11R4.
29776
29777 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
29778
29779 * Makefile.in: Remove references to sunfns.c and sunfns.o.
29780
29781 2007-11-01 Johan Bockgård <bojohan@gnu.org>
29782
29783 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
29784 Don't set s->stippled_p here, since it has already been set by
29785 x_set_glyph_string_gc from x_draw_glyph_string.
29786
29787 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
29788
29789 * sunfns.c: Remove file.
29790
29791 * m/sun386.h:
29792 * m/sun2.h:
29793 * m/sparc.h: Remove Sun windows code.
29794
29795 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
29796
29797 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
29798 (init_keyboard): Set current_kboard's window-system to nil.
29799 (tty_read_avail_input): Typo.
29800 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
29801
29802 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
29803
29804 * s/usg5-4.h:
29805 * s/usg5-3.h:
29806 * s/ptx.h:
29807 * m/is386.h:
29808 * m/ibmps2-aix.h:
29809 * Makefile.in: Remove all mentions of X10.
29810
29811 * dispnew.c (syms_of_display): Don't mention version 10.
29812
29813 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
29814
29815 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
29816 ($(BLD)/abbrev.$(O)): Remove.
29817
29818 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
29819
29820 Rewrite abbrev.c in Elisp.
29821 * image.c (Qcount): Don't declare as extern.
29822 (syms_of_image): Initialize and staticpro `Qcount'.
29823 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
29824 * emacs.c (main): Don't call syms_of_abbrev.
29825 * Makefile.in (obj): Remove abbrev.o.
29826 (abbrev.o): Remove.
29827 * abbrev.c: Remove.
29828
29829 2007-10-26 Martin Rudalics <rudalics@gmx.at>
29830
29831 * window.c (window_min_size_2): Don't count header-line.
29832
29833 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
29834
29835 * frame.h (struct frame): Move all bit fields after the first bit
29836 field to take advantage of the available space. Group all the
29837 chars together to reduce wasted space due to padding.
29838
29839 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
29840
29841 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
29842
29843 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
29844 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
29845 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
29846 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
29847 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
29848 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
29849 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
29850 (last_marked, mark_object_loop_halt): Make static.
29851
29852 * frame.c (syms_of_frame) <delete-frame-functions>:
29853 Fix typo in docstring.
29854
29855 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
29856
29857 * w32.c (init_environment): Fix tiny memory leak.
29858 (w32_get_resource): Remove unused variable `ok'.
29859
29860 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
29861
29862 Make `window-system' into a keyboard-local variable (rather than
29863 frame-local as done originally by multi-tty).
29864
29865 * keyboard.h (struct kboard): Add Vwindow_system.
29866 * keyboard.c (init_kboard): Set a default for Vwindow_system.
29867 (mark_kboards): Mark Vwindow_system.
29868
29869 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
29870 (init_display): Don't set the obsolete `window-system' frame-param.
29871
29872 * xterm.c (x_term_init):
29873 * w32term.c (w32_create_terminal):
29874 * term.c (init_tty): Set Vwindow_system.
29875 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
29876 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
29877
29878 * xfns.c (Fx_create_frame, x_create_tip_frame):
29879 * w32fns.c (Fx_create_frame, x_create_tip_frame):
29880 * macfns.c (Fx_create_frame):
29881 Don't set the obsolete `window-system' frame-param.
29882
29883 * frame.h (Qwindow_system): Remove.
29884 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
29885 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
29886
29887 2007-10-24 Richard Stallman <rms@gnu.org>
29888
29889 * frame.c (x_figure_window_size): For fullscreen case,
29890 set USPosition | PPosition without clobbering rest of window_prompting.
29891
29892 * keyboard.c (Fcurrent_idle_time): Doc fix.
29893
29894 * print.c (Fwith_output_to_temp_buffer): Doc fix.
29895
29896 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
29897
29898 * process.c (unwind_request_sigio): Only define if __ultrix__.
29899
29900 * callproc.c (child_setup): Remove spurious *.
29901
29902 * lisp.h (Fget_text_property): Declare.
29903 (have_menus_p): Declare it here rather than in sys-dep header files.
29904 * macterm.h (have_menus_p):
29905 * msdos.h (have_menus_p):
29906 * xterm.h (have_menus_p): Remove.
29907
29908 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
29909 (Fmake_variable_frame_local): Just check the variable's const-ness
29910 rather than checking nil or t.
29911
29912 2007-10-22 Jason Rumney <jasonr@gnu.org>
29913
29914 * w32fns.c: Include math.h.
29915 (w32_abort): Declaration moved to nt/config.nt.
29916
29917 * s/ms-w32.h (HAVE_STDLIB_H): Define.
29918 (abort): Redefinition moved to nt/config.nt.
29919
29920 * m/windowsnt.h: Remove.
29921
29922 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
29923
29924 * emacs.c (Fdump_emacs): Fix typo in message.
29925 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
29926 <installation-directory>: Reflow docstring.
29927
29928 2007-10-22 Juri Linkov <juri@jurta.org>
29929
29930 * minibuf.c: Allow minibuffer default to be a list of default values.
29931 With empty input use the first element of this list as returned default.
29932 (string_to_object)
29933 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
29934 (read_minibuf): If defalt is cons, set histstring to its car.
29935 (Fread_string): If default_value is cons, set val to its car.
29936 (Fread_buffer): If def is cons, use its car.
29937 (Fcompleting_read): If defalt is cons, set val to its car.
29938
29939 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
29940
29941 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
29942
29943 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
29944
29945 * doc.c (Fdocumentation): Check for advice in all cases.
29946
29947 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
29948
29949 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
29950
29951 2007-10-19 Richard Stallman <rms@gnu.org>
29952
29953 * doc.c (Fdocumentation): Check for and handle an advised function.
29954
29955 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
29956
29957 * process.c (Fset_process_filter): Doc fix.
29958
29959 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
29960
29961 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
29962 which caused key-translation-map to applied repeatedly (thus breaking
29963 double-mode).
29964
29965 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
29966
29967 * xselect.c (x_own_selection, x_handle_selection_clear)
29968 (x_clear_frame_selections):
29969 * w32menu.c (list_of_panes, list_of_items):
29970 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
29971 * textprop.c (validate_plist, interval_has_all_properties)
29972 (interval_has_some_properties, interval_has_some_properties_list)
29973 (add_properties, text_property_list):
29974 * process.c (Fget_buffer_process, list_processes_1, status_notify):
29975 * minibuf.c (Fassoc_string):
29976 * macselect.c (x_own_selection, x_clear_frame_selections)
29977 (Fx_disown_selection_internal):
29978 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
29979 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
29980
29981 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
29982
29983 * process.c: Link to libs for calling res_init() if available.
29984 (Fmake_network_process): Call res_init() before getaddrinfo or
29985 gethostbyname, if possible.
29986
29987 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
29988
29989 * lread.c (read1): Set pvectype for char_tables.
29990
29991 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
29992 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
29993 Add type checks.
29994 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
29995
29996 * alloc.c (free_misc): Use XMISCTYPE.
29997 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
29998
29999 2007-10-17 Glenn Morris <rgm@gnu.org>
30000
30001 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
30002 (syms_of_minibuf): Add Qcompletion_ignore_case.
30003 * dired.c (Qcompletion_ignore_case): Change to external.
30004 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
30005 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
30006 (Fread_file_name): Use it rather than intern'ing.
30007
30008 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
30009 (Fread_coding_system): Ignore case of user input.
30010
30011 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30012
30013 * xdisp.c (handle_display_prop): Ignore display specs after
30014 replacing one when string text is being replaced.
30015 (handle_single_display_spec): Pretend as if characters with display
30016 property haven't been consumed only when buffer text is being replaced.
30017
30018 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
30019
30020 * xfns.c (Fx_create_frame, Fx_display_list):
30021 * window.c (window_fixed_size_p, enlarge_window)
30022 (shrink_window_lowest_first):
30023 * macterm.c (init_font_name_table):
30024 * macfns.c (Fx_create_frame, Fx_display_list):
30025 * lread.c (close_load_descs):
30026 * keyboard.c (read_char_x_menu_prompt):
30027 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
30028 * coding.c (code_convert_region_unwind): Test the type of an object
30029 rather than just !NILP before extracting data from it.
30030
30031 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
30032
30033 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
30034 (XMISCANY): New macro.
30035 (XMISCTYPE): Use it.
30036 (struct Lisp_Misc_Any): New type.
30037 (union Lisp_Misc): Use it.
30038 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
30039 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
30040 (find_symbol_value, set_internal, default_value, Fset_default)
30041 (Fmake_variable_buffer_local, Fmake_local_variable)
30042 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
30043 (Flocal_variable_if_set_p, Fvariable_binding_locus):
30044 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
30045 * alloc.c (allocate_buffer): Set the size and tag.
30046 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
30047 Use XMISCANY.
30048 (die): Follow the GNU convention for error messages.
30049 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
30050 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
30051 tag any more.
30052 (set_buffer_internal_1):
30053 * frame.c (store_frame_param):
30054 * eval.c (specbind):
30055 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
30056
30057 * doc.c (Fsnarf_documentation): Simplify.
30058
30059 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
30060
30061 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
30062 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
30063
30064 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
30065
30066 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
30067
30068 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
30069
30070 * eval.c (do_autoload): Don't save autoloads.
30071
30072 * data.c (Ffset): Save autoload of the function being set.
30073
30074 2007-10-07 John Paul Wallington <jpw@pobox.com>
30075
30076 * xfns.c (x_create_tip_frame): Set the `display-type' frame
30077 parameter before setting up faces.
30078
30079 2007-10-13 Eli Zaretskii <eliz@gnu.org>
30080
30081 * ccl.c (Fregister_code_conversion_map):
30082 * keyboard.c (append_tool_bar_item): Reformat last change.
30083
30084 * lisp.h (eabs): Rename from `abs'. All callers changed.
30085
30086 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
30087
30088 * buffer.c (add_overlay_mod_hooklist):
30089 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
30090 * fontset.c (make_fontset):
30091 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
30092 (append_tool_bar_item):
30093 * macmenu.c (grow_menu_items):
30094 * w32menu.c (grow_menu_items):
30095 * xmenu.c (grow_menu_items): Use larger_vector.
30096
30097 2007-10-13 Eli Zaretskii <eliz@gnu.org>
30098
30099 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
30100 selected frame'' on MSDOS).
30101
30102 2007-10-12 Martin Rudalics <rudalics@gmx.at>
30103
30104 * frame.c (Qexplicit_name): New variable.
30105 (x_report_frame_params): Report it in parameter alist.
30106 (syms_of_frame): Intern and staticpro it.
30107
30108 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
30109
30110 * macfns.c (x_create_tip_frame): Set terminal for frame.
30111
30112 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
30113
30114 * frame.c (Qenvironment): Remove.
30115 (syms_of_frame) <Qenvironment>: Don't initialize.
30116 (Fdelete_frame): Don't treat the `environment' param specially.
30117 * frame.h (Qenvironment): Don't declare.
30118 * callproc.c (set_initial_environment): Don't set unused frame param.
30119
30120 * frame.c (Fframe_with_environment): Remove.
30121 (syms_of_frame) <Sframe_with_environment>: Don't declare.
30122
30123 * lisp.h (Fframe_with_environment): Don't declare.
30124
30125 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
30126
30127 * indent.c (indent_tabs_mode, last_known_column)
30128 (last_known_column_modified): Make static.
30129 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
30130
30131 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
30132
30133 * puresize.h (BASE_PURESIZE): Increase to 1170000.
30134
30135 2007-10-09 Jason Rumney <jasonr@gnu.org>
30136
30137 * w32term.c (x_set_window_size): Disable code that attempts to tell
30138 Lisp code about a size change before it actually happens.
30139
30140 2007-10-09 Richard Stallman <rms@gnu.org>
30141
30142 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
30143 return HANDLED_RETURN.
30144
30145 2007-10-08 Martin Rudalics <rudalics@gmx.at>
30146
30147 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
30148 when there's an unread command event.
30149
30150 * frame.c (focus_follows_mouse): Move here from frame.el to allow
30151 window autoselection act appropriately when leaving selected frame.
30152 (syms_of_frame): Initialize focus_follows_mouse.
30153 * frame.h (focus_follows_mouse): Extern it.
30154 * macterm.c (XTread_socket): When focus_follows_mouse is nil
30155 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
30156 * msdos.c (dos_rawgetc): Likewise.
30157 * w32term.c (w32_read_socket): Likewise.
30158 * xterm.c (handle_one_xevent): Likewise.
30159 * xdisp.c (syms_of_xdisp): In doc-string of
30160 mouse-autoselect-window mention focus-follows-mouse.
30161
30162 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30163
30164 * macterm.c (mac_load_query_font): Fix missing return value.
30165 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
30166 Add BLOCK_INPUT.
30167
30168 2007-10-08 Richard Stallman <rms@gnu.org>
30169
30170 * xdisp.c (get_window_cursor_type): Implement documented behavior
30171 for cursor-in-non-selected-windows = t.
30172
30173 2007-10-08 Jason Rumney <jasonr@gnu.org>
30174
30175 * w32.c (w32_get_resource): Always close registry keys.
30176
30177 2007-10-08 Jason Rumney <jasonr@gnu.org>
30178
30179 * makefile.w32-in (LIBS): Add COMCTL32.
30180
30181 * w32fns.c (globals_of_w32fns): Init common controls.
30182
30183 2007-10-08 Richard Stallman <rms@gnu.org>
30184
30185 * image.c (our_memory_buffer): Rename from omfib_buffer.
30186
30187 2007-10-08 Richard Stallman <rms@gnu.org>
30188
30189 * buffer.c (Foverlays_at): Doc fix.
30190
30191 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
30192
30193 * fns.c (Fplist_put): Preserve uneven tail data.
30194
30195 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
30196
30197 * termhooks.h (enum event_kind): Remove trailing comma.
30198
30199 * frame.h (enum): Remove trailing comma.
30200
30201 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
30202
30203 * w32proc.c (delete_child): Don't terminate threads of zombies.
30204
30205 2007-10-08 Martin Rudalics <rudalics@gmx.at>
30206
30207 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
30208
30209 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
30210 last-repeatable-command.
30211 (init_kboard): Initialize Vlast_repeatable_command.
30212 (command_loop_1): Set it to real_this_command unless that was
30213 bound to an input event.
30214 (mark_kboards): Mark it.
30215
30216 2007-10-08 Richard Stallman <rms@gnu.org>
30217
30218 * eval.c (condition-case): Doc fix.
30219
30220 2007-10-08 Masatake YAMATO <jet@gyve.org>
30221
30222 * xfaces.c (tty_supports_face_attributes_p): Fix code
30223 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
30224 was copied and not edited.
30225
30226 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
30227
30228 Add new `input-decode-map' keymap and use it for terminal
30229 escape sequences.
30230 * keyboard.h (struct kboard): Add Vinput_decode_map.
30231 Remove Vlocal_key_translation_map.
30232 * keyboard.c (read_key_sequence): Add support for input-decode-map.
30233 (init_kboard): Init input-decode-map.
30234 Replace local-key-translation-map back with key-translation-map.
30235 (syms_of_keyboard): Declare input-decode-map.
30236 Remove local-key-translation-map. Update docstrings.
30237 (mark_kboards): Mark Vinput_decode_map.
30238 Don't mark Vlocal_key_translation_map.
30239 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
30240 Replace local-key-translation-map back with key-translation-map.
30241 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
30242 Bind in input-decode-map rather than function-key-map.
30243
30244 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
30245 This was made redundant by the previous introduction of XSETPVECTYPE.
30246
30247 2007-10-09 Richard Stallman <rms@gnu.org>
30248
30249 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
30250
30251 2007-09-29 Richard Stallman <rms@gnu.org>
30252
30253 * eval.c (internal_condition_case_2, internal_condition_case_1)
30254 (internal_condition_case): Reenable abort if x_catching_errors ()
30255 to see if that really happens and why.
30256
30257 2007-10-06 Andreas Schwab <schwab@suse.de>
30258
30259 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
30260
30261 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
30262
30263 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
30264
30265 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
30266
30267 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
30268
30269 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
30270
30271 * window.h (struct window):
30272 * window.c (struct save_window_data, struct saved_window):
30273 * termhooks.h (struct terminal):
30274 * process.h (struct Lisp_Process):
30275 * frame.h (struct frame):
30276 * buffer.h (struct buffer):
30277 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
30278 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
30279 The size field of (pseudo)vectors is now unsigned.
30280 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
30281
30282 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
30283 Turn `count' into an integer.
30284
30285 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
30286 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
30287 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
30288 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
30289 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
30290
30291 * alloc.c (allocate_pseudovector): New fun.
30292 (ALLOCATE_PSEUDOVECTOR): New macro.
30293 (allocate_window, allocate_terminal, allocate_frame)
30294 (allocate_process): Use it.
30295 (mark_vectorlike): New function.
30296 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
30297 (mark_terminals): Use it.
30298 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
30299 (Fmake_byte_code): Use XSETPVECTYPE.
30300
30301 * frame.c (Fframe_parameters): Minor simplification.
30302
30303 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
30304
30305 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
30306
30307 * buffer.c (Fget_buffer_create, init_buffer_once):
30308 * lread.c (defsubr):
30309 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
30310
30311 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
30312 defined differently in the m/*.h files.
30313 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
30314 (XSETPVECTYPE): New macro.
30315 (XSETPSEUDOVECTOR): Use it.
30316
30317 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
30318 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
30319
30320 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
30321 * lread.c (defvar_per_buffer):
30322 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
30323
30324 * window.c (candidate_window_p): Only consider as visible frames that
30325 are on the same terminal.
30326
30327 * m/ibms390x.h (MARKBIT): Remove unused macro.
30328
30329 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
30330
30331 * lread.c (Fload): Fix typo in docstring.
30332
30333 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
30334
30335 * floatfns.c (Fexpt): Manually check for overflows, so that a power
30336 of a non-zero value can't yield zero.
30337
30338 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
30339
30340 * term.c (term_clear_mouse_face, term_mouse_highlight)
30341 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
30342
30343 * print.c (safe_debug_print): Use XHASH.
30344
30345 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
30346 Lisp elements such as tags.
30347 (XHASH): New macro.
30348 (EQ): Use it.
30349 (SREF, SSET, STRING_COPYIN): Use SDATA.
30350 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
30351
30352 * alloc.c (mark_terminal): Remove left-over declaration.
30353 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
30354 (allocate_vectorlike): Remove type argument. Adjust callers.
30355 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
30356 Only handle the one remaining MEM_TYPE_VECTORLIKE.
30357
30358 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
30359 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
30360 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
30361 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
30362 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
30363 Use them.
30364
30365 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
30366 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
30367 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
30368
30369 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
30370
30371 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
30372 loaded by default.
30373
30374 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
30375
30376 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
30377 on this tty.
30378 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
30379
30380 * term.c (mouse_face_window): Rename from Qmouse_face_window.
30381 Update all users.
30382 (handle_one_term_event): Use Gpm_DrawPointer.
30383 (Fgpm_mouse_start): Rename from Fterm_open_connection.
30384 Signal errors instead of returning nil. Always return nil.
30385 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
30386 Make it a noop if gpm-mouse was not activated.
30387 (syms_of_term): Update names.
30388
30389 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
30390
30391 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
30392 (init_sys_modes): Check that gpm_tty is the current tty.
30393
30394 * alloc.c (allocate_terminal): Set the vector size to only count the
30395 lisp fields. Initialize those to nil.
30396 (mark_object): Don't treat terminals specially.
30397 (mark_terminal): Remove.
30398 (mark_terminals): Use mark_object instead.
30399
30400 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
30401 the GC to the beginning.
30402
30403 * indent.h:
30404 * indent.c: Use EMACS_INT for ints coming from Elisp data.
30405
30406 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
30407
30408 2007-09-25 Jason Rumney <jasonr@gnu.org>
30409
30410 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
30411
30412 * w32console.c (create_w32cons_output): Remove.
30413
30414 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
30415
30416 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
30417 (reset_sys_modes): Use reset_terminal_modes_hook.
30418
30419 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
30420
30421 * eval.c (do_autoload): Don't output any message.
30422
30423 2007-09-24 Juri Linkov <juri@jurta.org>
30424
30425 * emacs.c (standard_args): Change priority of "--no-splash"
30426 from 40 to 3. Add "--no-desktop" with the same priority.
30427
30428 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
30429
30430 * alloc.c (gc_sweep): Check cons cell mark bits word by word
30431 and optimize the case where they are all 1.
30432
30433 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
30434
30435 * lisp.h (abs): Define if not defined.
30436 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
30437 Don't define `abs', since it's defined in lisp.h.
30438
30439 2007-09-22 Eli Zaretskii <eliz@gnu.org>
30440
30441 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
30442 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
30443 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
30444 (init_tty): Use DEV_TTY instead of "/dev/tty".
30445 [WINDOWSNT]: No need to protect from NAME arg being null.
30446
30447 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
30448
30449 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
30450 up the tty state.
30451
30452 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
30453
30454 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
30455 (gpm_tty): Change its type.
30456 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
30457 (gpm_tty): Change its type and initialize it.
30458 (Fterm_open_connection): Check the frame is indeed a tty.
30459 Use the new gpm_tty.
30460 (Fterm_close_connection): Use the new gpm_tty.
30461 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
30462 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
30463
30464 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
30465
30466 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
30467 underline_color, to draw strike-through.
30468
30469 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
30470
30471 * lisp.h (allocate_terminal): Declare.
30472
30473 * window.c (candidate_window_p): Consider frames that are being placed
30474 by the user as somewhere between visible and iconified.
30475 (window_loop): Prefer windows on the current frame.
30476 (Fselect_window): Move the use of select-frame to the beginning so we
30477 can just delegate all the work (it'll call us back anyway).
30478
30479 * frame.c (Qdisplay_environment_variable):
30480 * frame.h (Qdisplay_environment_variable): Delete.
30481
30482 * .gdbinit (xbacktrace): Print the arg's address rather than the value
30483 of the first arg, since that value may be a union.
30484
30485 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
30486 parameter rather than Qdisplay_environment_variable. If all else
30487 fails, look for DISPLAY in initial-environment.
30488
30489 2007-09-21 Glenn Morris <rgm@gnu.org>
30490
30491 * Makefile.in (emacstool): Remove target.
30492 (lisp, shortlisp): Remove termdev.elc.
30493
30494 2007-09-21 Markus Triska <markus.triska@gmx.at>
30495
30496 * xterm.c (x_delete_display): Compile session management conditionally.
30497
30498 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
30499
30500 * callproc.c (getenv_internal_1): New function.
30501 (getenv_internal): Use it.
30502 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
30503
30504 * terminal.c (get_terminal): Don't accept ints to represent terminals.
30505 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
30506 (Fset_terminal_parameter): Work with dead terminals as well.
30507 (Fmodify_terminal_parameters): Remove.
30508
30509 * terminal.c (get_terminal): Handle terminals.
30510 Make sure the terminal returned is live.
30511 (create_terminal): Use allocate_terminal.
30512 (mark_terminals): Move to alloc.c.
30513 (delete_terminal): Use terminal->name as liveness status.
30514 NULL out fields after freeing their contents.
30515 Don't deallocate the object.
30516 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
30517 rather than an int.
30518 (Fterminal_live_p): Accept non-integer arguments.
30519 (Fterminal_list): Return terminal objects rather than an ints.
30520
30521 * alloc.c (enum mem_type): New member for `terminal' objects.
30522 (allocate_terminal): New function.
30523 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
30524 Handle terminals.
30525 (mark_terminal): New fun.
30526 (mark_terminals): Move from terminal.c.
30527
30528 * term.c (get_tty_terminal): Don't treat output_initial specially.
30529 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
30530 (delete_tty): Use terminal->name as liveness status.
30531
30532 * termhooks.h (struct terminal): Make it into a pseudovector.
30533 Remove `deleted' replaced by checking `name's nullness.
30534
30535 * print.c (print_object): Handle terminals.
30536
30537 * lisp.h (enum pvec_type): New `terminal' pseudovector.
30538 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
30539
30540 * frame.c (make_terminal_frame):
30541 * keyboard.c (tty_read_avail_input):
30542 * w32term.c (x_delete_terminal):
30543 * xfns.c (Fx_create_frame, x_create_tip_frame):
30544 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
30545
30546 2007-09-20 Glenn Morris <rgm@gnu.org>
30547
30548 * process.c (Fmake_network_process): Doc fix.
30549
30550 2007-09-19 Jason Rumney <jasonr@gnu.org>
30551
30552 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
30553
30554 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
30555
30556 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
30557 Fix a C warning regarding variable constness.
30558
30559 * xterm.c (handle_one_xevent): Fix a C warning.
30560
30561 2007-09-18 Jason Rumney <jasonr@gnu.org>
30562
30563 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
30564
30565 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
30566
30567 * gtkutil.c (gdpy_def): New variable.
30568 (xg_initialize): Initialize gdpy_def.
30569 (xg_display_close): If no other display exists, set gdpy_def to a
30570 new connection.
30571
30572 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
30573
30574 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
30575 when we have no file name for the icon.
30576 (xg_tool_bar_expose_callback): Remove.
30577 (xg_create_tool_bar): Don't connect expose signal to
30578 xg_tool_bar_expose_callback.
30579 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
30580
30581 2007-09-16 Andreas Schwab <schwab@suse.de>
30582
30583 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
30584 values instead of zapping them.
30585
30586 2007-09-14 Glenn Morris <rgm@gnu.org>
30587
30588 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
30589 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
30590 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
30591 scope and rename to omfib_buffer for clarity.
30592 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
30593
30594 2007-09-14 Kenichi Handa <handa@m17n.org>
30595
30596 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
30597
30598 2007-09-13 Jason Rumney <jasonr@gnu.org>
30599
30600 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
30601
30602 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
30603
30604 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
30605 (mac_term_init): Call here instead, passing rif.
30606
30607 2007-09-13 Glenn Morris <rgm@gnu.org>
30608
30609 * s/hpux.h: No longer define `static' as nothing.
30610
30611 2007-09-13 Johan Bockgård <bojohan@gnu.org>
30612
30613 * callint.c (Fcall_interactively): Remove unused var `fun'.
30614
30615 2007-09-12 Romain Francoise <romain@orebokech.com>
30616
30617 * window.c (prefer_window_split_horizontally, display_buffer):
30618 Revert 2007-09-08 change.
30619
30620 2007-09-12 Glenn Morris <rgm@gnu.org>
30621
30622 * alloca.c: Remove file.
30623 * Makefile.in (alloca): Do not undef.
30624 (allocaobj, alloca.o): Remove.
30625 (otherobj): Remove allocaobj.
30626 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
30627 * regex.c (C_ALLOCA): Remove all references and code that was only
30628 used when this was defined.
30629 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
30630 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
30631 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
30632
30633 * Makefile.in (SOURCES, unlock, relock): Delete.
30634
30635 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
30636 (menu_grab_callback): All uses changed.
30637
30638 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
30639 (x_reply_selection_request): All uses changed.
30640
30641 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
30642
30643 * lread.c (load_warn_old_style_backquotes): Change message to look
30644 better when it appears in the middle of byte-compiler messages.
30645
30646 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
30647
30648 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
30649
30650 * xterm.c (x_create_terminal): Add comment.
30651
30652 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
30653
30654 2007-09-10 Richard Stallman <rms@gnu.org>
30655
30656 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
30657
30658 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
30659
30660 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
30661 (DEFUN): Document `intspec', use it instead of `prompt'.
30662
30663 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
30664
30665 * data.c (Finteractive_form): If the interactive specification starts
30666 with a `(', use it as a Lisp form.
30667
30668 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
30669 name and file modes.
30670
30671 * callint.c (Fcall_interactively): Comment fixes.
30672
30673 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
30674
30675 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
30676 and compiled functions.
30677
30678 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
30679
30680 * window.c (prefer_window_split_horizontally): New variable.
30681 (display_buffer): Consider splitting window horizontally depending
30682 on prefer_window_split_horizontally.
30683
30684 2007-09-08 Eli Zaretskii <eliz@gnu.org>
30685
30686 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
30687
30688 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
30689
30690 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
30691
30692 * frame.c (x_set_frame_parameters): Check number is positive before
30693 using XFASTINT.
30694
30695 * window.c (freeze_window_start): Don't presume selected_window holds
30696 a window object.
30697 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
30698
30699 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
30700
30701 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
30702
30703 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
30704
30705 * window.c (Vsplit_window_preferred_function): New var.
30706 (Fdisplay_buffer): Use it.
30707 (syms_of_window): Export, and initialize it.
30708
30709 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
30710
30711 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
30712
30713 2007-09-06 Glenn Morris <rgm@gnu.org>
30714
30715 * gtkutil.c (menu_grab_callback) <cnt>:
30716 * xselect.c (x_reply_selection_request) <cnt>: Move static
30717 variable to file scope.
30718
30719 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
30720
30721 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
30722 consistent values of selected_frame and selected_window.
30723
30724 2007-09-04 Jason Rumney <jasonr@gnu.org>
30725
30726 * w32console.c (initialize_w32_display): Zero unused hooks.
30727
30728 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
30729
30730 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
30731 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
30732
30733 2007-09-04 Jason Rumney <jasonr@gnu.org>
30734
30735 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
30736 in w32console.c. Set up input. Remove XXX comments that have been
30737 confirmed as correct.
30738
30739 * s/ms-w32.h (MULTI_KBOARD): Define.
30740
30741 * w32console.c (one_and_only_w32cons): Remove.
30742 (initialize_w32_display): Take terminal argument.
30743
30744 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
30745 initialize_w32_display.
30746 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
30747
30748 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
30749
30750 * keyboard.c (discard_mouse_events): Discard it.
30751 (make_lispy_event): Translate it to a lisp event.
30752 (lispy_wheel_names): Add wheel-left and right events.
30753 (syms_of_keyboard): Enlarge wheel_syms.
30754
30755 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
30756 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
30757
30758 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
30759
30760 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
30761 from WM_MOUSEHWHEEL.
30762 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
30763
30764 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
30765 terminal.
30766
30767 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
30768 keyboard for the terminal.
30769
30770 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
30771
30772 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
30773 (Vresume_tty_hook): Rename from Vresume_tty_functions.
30774 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
30775 and resume-tty-function to resume-tty-hook.
30776 (Fsuspend_tty, Fresume_tty): Use new names.
30777
30778 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
30779
30780 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
30781 if it starts with "n:".
30782
30783 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
30784
30785 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
30786
30787 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
30788
30789 * frame.h:
30790 * frame.c (Qterm_environment_variable): Remove.
30791 (syms_of_frame): Don't init and staticpro it.
30792
30793 * callproc.c (getenv_internal): Remove special case for $TERM.
30794
30795 * callproc.c (Vinitial_environment): New variable.
30796 (set_initial_environment): Initialize it.
30797 (syms_of_callproc): Declare it.
30798 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
30799 TERM under which a process runs is never related to the TERM in which
30800 Emacs is running.
30801
30802 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
30803
30804 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
30805 * s/darwin.h: ... do it here.
30806
30807 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
30808
30809 * lisp.h (set_initial_environment): Rename from set_global_environment.
30810
30811 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
30812 removed by mistake on the multi-tty branch.
30813
30814 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
30815 (Fmodify_frame_parameters): Return a value.
30816
30817 * image.c (png_load): Comment-out var only used in commented-out code.
30818
30819 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
30820 before passing it to mark_object.
30821
30822 * xfaces.c (internal_resolve_face_name): Return a value.
30823 (internal_resolve_face_name, resolve_face_name_error): Comment out.
30824
30825 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
30826 (x_icon): Comment-out var only used in commented-out code.
30827
30828 2007-08-29 Romain Francoise <romain@orebokech.com>
30829
30830 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
30831 QUIT hasn't been provided.
30832
30833 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
30834
30835 * callproc.c (child_setup, getenv_internal): Use the
30836 display-environment-variable and term-environment-variable frame params.
30837 (set_initial_environment): Initialise Vprocess_environment.
30838
30839 * config.in: Disable multi-keyboard support on a mac.
30840
30841 * frame.c (Qterm_environment_variable)
30842 (Qdisplay_environment_variable): New variables.
30843 (syms_of_frame): Intern and staticpro them.
30844 (Fmake_terminal_frame): Disable output method test.
30845
30846 * frame.h: Declare them here.
30847
30848 * macfns.c (x_set_mouse_color): Get rif from the frame.
30849 (x_set_tool_bar_lines): Don't use updating_frame.
30850 (mac_window): Add 2 new parameters for consistency with other systems.
30851 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
30852 frame parameters following what is done in X11 and w32. Don't use
30853 FRAME_MAC_DISPLAY_INFO.
30854 (Fx_open_connection, start_hourglass): Remove window-system check.
30855 (x_create_tip_frame): Get the keyboard from the terminal.
30856
30857 * macmenu.c: Reorder includes.
30858 (Fx_popup_menu): Use terminal specific mouse_position_hook.
30859
30860 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
30861 terminal parameter.
30862 (x_clear_frame): Add a frame parameter.
30863 (note_mouse_movement): Get rif from the frame.
30864 (mac_term_init): Initialize the terminal.
30865 (mac_initialize): Make static and move terminal initialization ...
30866 (mac_create_terminal): ... to this new function.
30867
30868 * macterm.h (struct mac_display_info): Add terminal.
30869 (mac_initialize): Delete declaration.
30870
30871 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
30872
30873 * sysdep.c: Comment out text after #endif.
30874
30875 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
30876 is defined. Better initialize ttys in windows. Use terminal
30877 specific mouse_position_hook.
30878
30879 * termhooks.h (union display_info): Add mac_display_info.
30880
30881 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
30882 Set the default minibuffer frame, window_system and the rest of the
30883 frame parameters following what is done in X11.
30884
30885 * w32term.c (w32_initialize): Make static.
30886
30887 * xselect.c (x_handle_selection_clear): Only access
30888 terminal->kboard when MULTI_KBOARD is defined.
30889
30890 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
30891 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
30892
30893 2007-08-29 Jason Rumney <jasonr@gnu.org>
30894
30895 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
30896 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
30897
30898 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
30899 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
30900
30901 * keyboard.c (restore_kboard_configuration): Only define when
30902 MULTI_KBOARD defined.
30903
30904 * makefile.w32-in: Update dependancies from Makefile.in.
30905 (OBJ1): Add terminal.$(O)
30906
30907 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
30908 Don't define function body.
30909 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
30910
30911 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
30912
30913 * w32.c (request_sigio, unrequest_sigio): Remove.
30914
30915 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
30916 (w32con_clear_frame, w32con_clear_end_of_line)
30917 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
30918 (w32con_delete_glyphs, w32con_set_terminal_window)
30919 (scroll_line, w32_sys_ring_bell): Add frame arg.
30920 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
30921 Add terminal arg.
30922 (PICK_FRAME): Remove.
30923 (w32con_write_glyphs): Use frame specific terminal coding.
30924 (one_and_only_w32cons): New global variable.
30925 (initialize_w32_display): Use it for storing hooks.
30926 (create_w32cons_output): New function.
30927
30928 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
30929 arg a frame.
30930
30931 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
30932 Set window_system.
30933 (x_set_tool_bar_lines): Don't use updating_frame.
30934 (Fx_create_frame): Set terminal and ref count.
30935 (Fx_open_connection): Remove window-system check.
30936
30937 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
30938
30939 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
30940 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
30941 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
30942 Add frame arg.
30943 (x_delete_terminal, w32_create_terminal): New functions.
30944 (w32_term_init): Create a terminal.
30945 (w32_initialize): Move terminal specific initialization to
30946 w32_create_terminal.
30947
30948 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
30949 (w32_clear_rect, w32_clear_area): Use background from frame.
30950 (w32_display_info): Add terminal.
30951 (w32_sys_ring_bell, x_delete_display): Declare here.
30952
30953 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
30954
30955 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
30956
30957 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
30958
30959 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
30960 Fix get_named_tty calls for the controlling tty.
30961
30962 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
30963
30964 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
30965
30966 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
30967
30968 * term.c (tty_insert_glyphs): Add missing first parameter.
30969
30970 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
30971
30972 * buffer.c (Fbuffer_list, Fbury_buffer):
30973 Take frame->buried_buffer_list into account.
30974
30975 * cm.c (current_tty): New variable, for cmputc().
30976 (cmputc): Use it.
30977 (cmcheckmagic): Add tty parameter, look up terminal streams there.
30978 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
30979 (cmgoto): Add tty parameter. Pass it on to calccost().
30980 Use emacs_tputs() instead of tputs().
30981
30982 * cm.h (emacs_tputs): New macro to set current_tty, and then call
30983 tputs().
30984 (current_tty): New variable, for cmputc().
30985 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
30986
30987 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
30988 (internal_condition_case, internal_condition_case_1)
30989 (internal_condition_case_2): Don't abort when x_catching_errors.
30990
30991 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
30992 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
30993 prevent crashes caused by bogus longjmps in read_char.
30994
30995 * keymap.h (Fset_keymap_parent): Add EXFUN.
30996
30997 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
30998 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
30999 Remove redundant definition.
31000
31001 * macfns.c (x_set_mouse_color, x_make_gc):
31002 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
31003
31004 * w32term.c (x_free_frame_resources):
31005 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
31006 (w32_initialize): Use the accessor macros for terminal characteristics.
31007
31008 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
31009 Use the accessor macros for terminal characteristics.
31010 * msdos.c (internal_terminal_init): Use the accessor macros for
31011 terminal characteristics.
31012 (ScreenVisualBell, internal_terminal_init):
31013 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
31014
31015 * termopts.h (no_redraw_on_reenter): Declare.
31016
31017 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
31018 (mark_terminals, mark_ttys): Declare.
31019 (Fgarbage_collect): Call them.
31020 (mark_object): Mark buried_buffer_list.
31021
31022 * prefix-args.c: Include stdlib.h for exit.
31023
31024 * syssignal.h: Add comment.
31025
31026 * indent.c: Include stdio.h.
31027
31028 * window.h (Vinitial_window_system): Declare.
31029 (Vwindow_system): Delete declaration.
31030
31031 * fontset.c (Finternal_char_font): Use FRAME_RIF.
31032
31033 * image.c (lookup_image): Don't initialize `c' until the xasserts
31034 have been run.
31035
31036 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
31037 FRAME_FOREGROUND_PIXEL.
31038
31039 * print.c (print_preprocess): Don't lose print_depth levels while
31040 iterating.
31041
31042 * widget.c (update_from_various_frame_slots):
31043 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
31044
31045 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
31046 frames.
31047 (window_internal_height): Remove bogus make_number call.
31048 (init_window_once): Call make_terminal_frame with two zero parameters.
31049
31050 * fileio.c (Fread_file_name): Update comment.
31051
31052 * callint.c (Fcall_interactively):
31053 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
31054 Make sure it is correctly unwound.
31055
31056 * xsmfns.c (x_session_close): New function.
31057
31058 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
31059 Delete declarations.
31060
31061 * xterm.h: Remove declaration for x_fully_uncatch_errors.
31062 (x_output): Remove background_pixel and foreground_pixel fields.
31063 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
31064 (x_delete_device, x_session_close): Declare.
31065
31066 * lread.c: Include setjmp.h. Update declaration of `read_char'.
31067 (read_filtered_event): Call `read_char' with a local
31068 `wrong_kboard_jmpbuf'.
31069
31070 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
31071 Don't call single_kboard_state. Use FRAME_RIF.
31072
31073 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
31074 systems.
31075
31076 * lisp.h (set_process_environment): Rename to `set_global_environment'.
31077 (Fframe_with_environment, Fset_input_meta_mode)
31078 (Fset_quit_char): EXFUN.
31079 (x_create_device, tty_output, terminal, tty_display_info): Declare.
31080 (init_sys_modes, reset_sys_modes): Update prototypes.
31081 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
31082
31083 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
31084 Vlocal_key_translation_map, and Vkeyboard_translate_table.
31085 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
31086 Delete declarations.
31087 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
31088 (temporarily_switch_to_single_kboard, tty_read_avail_input):
31089 New declarations.
31090
31091 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
31092 already does that during init_display(). Call syms_of_keymap
31093 before syms_of_keyboard. Call `syms_of_terminal'.
31094 Call set_initial_environment, not set_process_environment.
31095 (shut_down_emacs): Call reset_all_sys_modes() instead of
31096 reset_sys_modes().
31097
31098 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
31099 (internal_resolve_face_name, resolve_face_name_error): New functions.
31100 (resolve_face_name): Protect against loops and errors thrown by Fget.
31101 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
31102 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
31103
31104 * scroll.c: Replace CURTTY() with local variables throughout the
31105 file (where applicable).
31106 (calculate_scrolling, calculate_direct_scrolling)
31107 (scrolling_1, scroll_cost): Use the accessor macros for terminal
31108 characteristics.
31109
31110 * keymap.c (Vfunction_key_map): Remove.
31111 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
31112 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
31113 (Vkey_translation_map): Remove.
31114 (syms_of_keymap): Remove DEFVAR for key-translation-map.
31115 (Fdescribe_buffer_bindings)
31116 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
31117 Update for terminal-local key-translation-map.
31118
31119 * Makefile.in (callproc.o): Update dependencies.
31120 (lisp, shortlisp): Add termdev.elc.
31121 (obj): Add terminal.o.
31122 (terminal.o): Add dependencies.
31123 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
31124 (data.o, fns.o): Add termhooks.h dependency.
31125 (SOME_MACHINE_LISP): Add dnd.elc.
31126 (minibuf.o): Fix typo.
31127 Update dependencies.
31128
31129 * data.c (do_symval_forwarding, store_symval_forwarding)
31130 (find_symbol_value): Use the selected frame's keyboard, not
31131 current_kboard.
31132
31133 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
31134 Vwindow_system.
31135
31136 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
31137 Fmenu_bar_open.
31138 (syms_of_xmenu): Update defsubr.
31139 (mouse_position_for_popup, Fx_popup_menu)
31140 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
31141 (set_frame_menubar, free_frame_menubar)
31142 (create_and_show_popup_menu, xmenu_show)
31143 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
31144 an X frame.
31145
31146 * xselect.c (x_own_selection): Abort if not an X frame.
31147 (some_frame_on_display): Check if it is an X frame.
31148 (x_handle_selection_clear): Deal with MULTI_KBOARD.
31149
31150 * coding.c: Include frame.h and termhooks.h.
31151 (terminal_coding, keyboard_coding): Delete.
31152 (Fset_terminal_coding_system_internal)
31153 (Fset_keyboard_coding_system_internal)
31154 (Fkeyboard_coding_system)
31155 (Fterminal_coding_system): Add a terminal parameter.
31156 Get terminal_coding from the terminal.
31157 (init_coding_once): Don't call setup_coding_system here.
31158
31159 * dispextern.h (set_scroll_region, turn_off_insert)
31160 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
31161 (tty_clear_end_of_line, tty_setup_colors)
31162 (delete_tty, updating_frame)
31163 (produce_special_glyphs, produce_glyphs, write_glyphs)
31164 (insert_glyphs): Remove.
31165 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
31166 (tty_turn_off_highlight, get_tty_size): Add declaration.
31167 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
31168
31169 * frame.h (enum output_method): Add output_initial.
31170 (struct x_output): Delete.
31171 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
31172 Access foreground_pixel and background_pixel directly from the frame.
31173 (tty_display): Delete.
31174 (struct frame): Add buried_buffer_list, foreground_pixel,
31175 background_pixel and terminal. Delete kboard.
31176 (union output_data): Add tty.
31177 (FRAME_KBOARD): Get the kboard from the terminal.
31178 (FRAME_INITIAL_P): New macro.
31179 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
31180 (Qterm_environment_variable, Qdisplay_environment_variable)
31181 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
31182 New declarations.
31183
31184 * termchar.h (tty_output, tty_display_info): New structures.
31185 (tty_list): Declare.
31186 (FRAME_TTY, CURTTY): New macros.
31187 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
31188 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
31189 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
31190 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
31191
31192 * callproc.c: Include frame.h and termhooks.h, for terminal
31193 parameters.
31194 (add_env): New function.
31195 (child_setup): Use it.
31196 (child_setup, getenv_internal): Handle the new Vprocess_environment.
31197 (getenv_internal): Fix get_terminal_param call.
31198 (Fgetenv_internal, egetenv): Update doc.
31199 (syms_of_callproc): Initialize Vprocess_environment to nil.
31200 Register and initialize them. Remove obsolete defvars. Update doc
31201 strings.
31202 (child_setup): Handle Vlocal_environment_variables.
31203 (getenv_internal): Add terminal parameter.
31204 Handle Vlocal_environment_variables.
31205 (Fgetenv_internal): Add terminal parameter.
31206 (child_setup, getenv_internal, Fgetenv_internal): Store the local
31207 environment in a frame (not terminal) parameter. Update doc strings.
31208 (set_initial_environment): Rename from set_global_environment.
31209 Store Emacs environment in initial frame parameter.
31210
31211 * xdisp.c (redisplay_internal): Update references to
31212 `previous_terminal_frame'.
31213 (display_mode_line, Fformat_mode_line): Replace calls to
31214 `push_frame_kboard' with `push_kboard'.
31215 (get_glyph_string_clip_rects): Add extra parentheses and
31216 braces to prevent compiler warnings.
31217 (calc_pixel_width_or_height): Add xassert to check that the
31218 frame is alive. Don't call `lookup_image' on a termcap frame.
31219 (message2_nolog, message3_nolog, redisplay_internal)
31220 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
31221 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
31222 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
31223 (Fx_display_pixel_width, Fx_display_pixel_height)
31224 (Fx_display_planes, Fx_display_color_cells)
31225 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
31226 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
31227 (Fx_display_backing_store, Fx_display_visual_class)
31228 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
31229 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
31230
31231 * xfns.c (x_set_foreground_color x_set_background_color)
31232 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
31233 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
31234 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
31235 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
31236 terminal that is being deleted.
31237 (Fx_create_frame): Use `store_frame_param' to set `window-system'
31238 frame parameter, and make sure it overrides any user-supplied setting.
31239 (Fx_close_connection, Fx_synchronize): Unify argument names with
31240 the rest of the DEFUNs.
31241
31242 * dispnew.c (Fsend_string_to_terminal): Update call to
31243 `get_tty_terminal'.
31244 (Fredraw_frame, Fsend_string_to_terminal)
31245 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
31246 FRAME_TERMCAP_P and FRAME_TTY.
31247 (window_change_signal): Don't believe width/height values that are
31248 impossibly small.
31249 (Vinitial_window_system): Rename from Vwindow_system.
31250 (termscript, Wcm, rif): Delete.
31251
31252 * termhooks.h (struct terminal): New struct containing the
31253 previously global text display hooks and new members NAME,
31254 DELETED and PARAM_ALIST.
31255 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
31256 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
31257 (FRAME_RIF): New macros.
31258 (get_terminal_param, get_device): New declarations.
31259 (termscript): Delete declaration.
31260
31261 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
31262 (XTflash, x_free_frame_resources, x_scroll_bar_create)
31263 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
31264 FRAME_FOREGROUND_PIXEL.
31265 (x_fully_uncatch_errors): Disable definition.
31266 (x_scroll_bar_expose): Fix reference to foreground pixel.
31267 (XTread_socket): Disable loop on all X displays.
31268 (x_delete_terminal): Don't set terminal->deleted and let
31269 delete_terminal delete the frames on the terminal.
31270 (x_delete_display): Doc update to reflect changes in
31271 delete_terminal.
31272 (x_display_info) <terminal>: Move member earlier in the struct.
31273 (deleting_tty): Remove old variable.
31274 (Fsuspend_tty): Call clear_tty_hooks.
31275 (Fresume_tty, init_tty): Call set_tty_hooks.
31276 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
31277 errors on X frames.
31278 (x_catch_errors_unwind): Abort if x_error_message is NULL.
31279 (handle_one_xevent): Initialize `f' to NULL.
31280 (x_delete_terminal, x_create_terminal): New functions.
31281 (XTset_terminal_modes, XTreset_terminal_modes)
31282 (XTread_socket, x_connection_closed, x_term_init)
31283 (x_term_init, x_delete_display): Add terminal parameter.
31284 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
31285 X connections.
31286
31287 * frame.c: Include termchar.h.
31288 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
31289 (Qwindow_system, Qenvironment, Qterm_environment_variable)
31290 (Qdisplay_environment_variable): New vars.
31291 (Fframep): Deal with output_initial.
31292 (Fframe-live-p): Doc fix.
31293 (Fwindow-system): New function.
31294 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
31295 (make_terminal_frame): Don't create frames on a terminal that is
31296 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
31297 (store_frame_param): Check for found_for_frame before calling XFRAME.
31298 (Fmake_terminal_frame): Handle NULL tty names correctly.
31299 (syms_of_frame): Enhance doc string of `default-frame-alist'.
31300 (Fdelete_frame): Remove unused variable `count'. Don't allow other
31301 frames to refer to a deleted frame in their 'environment parameter.
31302 (Fframe_with_environment): New function.
31303 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
31304 (get_future_frame_param): New function.
31305 (Fmake_terminal_frame): Use it.
31306 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
31307
31308 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
31309 * sysdep.c (reset_sys_modes): Update for renames.
31310
31311 * keyboard.c (tty_read_avail_input): New function.
31312 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
31313 (syms_of_keyboard): Defsubr them.
31314 (Fset_input_meta_mode, Fset_quit_char): New functions.
31315 (Fset_input_mode): Split to above functions.
31316 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
31317 parameter. Use it in call to `read_char'.
31318 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
31319 Set wrong_kboard_jmpbuf correctly in recursive calls.
31320 Use current_kboard to access Vkeyboard_translate_table.
31321 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
31322 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
31323 Update longjmp invocations. Remember the original current_kboard,
31324 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
31325 changes it. Comment out unnecessary calls to
31326 `record_single_kboard_state' and `any_kboard_state'.
31327 Update recursive calls.
31328 (wrong_kboard_jmpbuf): Remove global variable.
31329 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
31330 Handle deleted interrupted_kboards correctly; that is a legal
31331 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
31332 and read_char calls. Abort if interrupted_kboard died in read_char.
31333 (any_kboard_state, single_kboard_state)
31334 (push_frame_kboard): Remove function.
31335 (pop_kboard): Switch out of single_kboard mode if the kboard has
31336 been deleted. Remove unused variable. Help debugging by not
31337 changing current_kboard unnecessarily. Set current_kboard to the
31338 kboard of the selected frame when the stored kboard object has
31339 been deleted before pop_kboard.
31340 (temporarily_switch_to_single_kboard): Change first parameter to a
31341 frame pointer. Throw an error when caller wants to change kboards
31342 while in single_kboard mode. Don't push_kboard if we weren't in
31343 single kboard state. Don't pop_kboard if we popped into any
31344 kboard state.
31345 (restore_kboard_configuration): Abort if pop_kboard changed the
31346 kboard in single_kboard mode. Call pop_kboard only after setting
31347 up single_kboard mode.
31348 (Frecursive_edit): Switch to single_kboard mode only in nested
31349 command loops.
31350 (cmd_error, command_loop, command_loop_1, timer_check):
31351 Comment out unnecessary call to `any_kboard_state' and
31352 `record_single_kboard_state'.
31353 (delete_kboard): Exit single_kboard mode if we have just deleted
31354 that kboard. Use FRAME_KBOARD.
31355 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
31356 `fatal_error_signal'.
31357 (record_single_kboard_state): Don't push_kboard if we weren't in
31358 single kboard state. Don't pop_kboard if we popped into any
31359 kboard state.
31360 (push_frame_kboard): Rename to push_kboard.
31361 (kbd_buffer_get_event): Use FRAME_TERMINAL.
31362 (read_avail_input): Read input from all terminals.
31363 (mark_kboards): Also mark Vkeyboard_translate_table.
31364 (kbd_buffer_store_event_hold): Simplify condition.
31365 (read_key_sequence): Reinitialize fkey and keytran at each replay.
31366 (Vkeyboard_translate_table): Move to struct kboard.
31367 (init_kboard): Initialize Vkeyboard_translate_table.
31368 (syms_of_keyboard): Use DEFVAR_KBOARD to define
31369 Vkeyboard_translate_table. Update doc strings. Update docs of
31370 local-function-key-map and function-key-map.
31371
31372 * terminal.c: New file.
31373
31374 * term.c: Include errno.h.
31375 (Vring_bell_function, device_list, initial_device)
31376 (next_device_id, ring_bell, update_begin, update_end)
31377 (set_terminal_window, cursor_to, raw_cursor_to)
31378 (clear_to_end, clear_frame, clear_end_of_line)
31379 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
31380 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
31381 (syms_of_term): Move their initialization to terminal.c.
31382 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
31383 (Ftty_display_color_cells)
31384 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
31385 (clear_tty_hooks, set_tty_hooks)
31386 (init_tty, maybe_fatal): New functions.
31387 (Ftty_type): Return nil if terminal is not on a tty instead of
31388 throwing an error. Doc update.
31389 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
31390 Doc update. Initialize new subrs and variables.
31391 (delete_tty): Use terminal->deleted.
31392 (tty_set_terminal_modes): Rename from set_terminal_modes.
31393 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
31394 (set_scroll_region): Rename to `tty_set_scroll_region'.
31395 (turn_on_insert): Rename to `tty_turn_on_insert'.
31396 (turn_off_insert): Rename to `tty_turn_off_insert'.
31397 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
31398 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
31399 (toggle_highligh): Rename to `tty_toggle_highlight'.
31400 (background_highlight): Rename to `tty_background_highlight'.
31401 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
31402 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
31403 (tty_set_scroll_region, tty_background_highlight)
31404 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
31405 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
31406 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
31407 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
31408 Add static modifier.
31409 (tty_reset_terminal_modes, tty_set_terminal_window)
31410 (tty_set_scroll_region, tty_background_highlight)
31411 (tty_highlight_if_desired, tty_cursor_to)
31412 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
31413 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
31414 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
31415 renames.
31416
31417 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
31418
31419 * keyboard.c: Qrtl is new.
31420 (parse_tool_bar_item): Handle :rtl keyword.
31421 (syms_of_keyboard): Intern :rtl keyword.
31422
31423 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
31424
31425 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
31426 so no Lisp code is executed.
31427 (file_for_image, find_rtl_image): New functions.
31428 (xg_get_image_for_pixmap): Use file_for_image.
31429 (update_frame_tool_bar): If direction is RTL, use RTL image if
31430 defined. Use Gtk stock images if defined.
31431
31432 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31433
31434 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
31435 for nonexistent or zero-width glyph in composition glyph.
31436
31437 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
31438
31439 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
31440
31441 * xdisp.c (Finvisible_p): New function.
31442 (syms_of_xdisp): defsubr it.
31443
31444 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
31445
31446 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
31447 Doc fixes.
31448
31449 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31450
31451 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
31452
31453 2007-08-24 Martin Rudalics <rudalics@gmx.at>
31454
31455 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
31456 whether decoding has modified buffer contents.
31457
31458 2007-08-24 Jason Rumney <jasonr@gnu.org>
31459
31460 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
31461 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
31462 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
31463 (init_svg_functions) [HAVE_NTGUI]: New function.
31464 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
31465 (svg_load_image): Use them.
31466 (svg_load_image) [HAVE_NTGUI]: Implement background.
31467
31468 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31469
31470 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
31471 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
31472 (LIBX): Remove @RSVG_LIBS@.
31473 (LIBES): Add $(RSVG_LIBS).
31474
31475 * image.c (svg_load_image): Blend with specified background if exists.
31476 Use IMAGE_BACKGROUND. Add Mac OS Support.
31477
31478 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
31479 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
31480 Remove macros.
31481 [MAC_OSX] (socket_callback): Do nothing.
31482 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
31483 ReceiveNextEvent.
31484 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
31485 socket_callback.
31486 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
31487
31488 2007-08-22 Glenn Morris <rgm@gnu.org>
31489
31490 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
31491
31492 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
31493
31494 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
31495
31496 * image.c: Add support for SVG images. Some additional comments
31497 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
31498 (svg_image_p): New function to test for SVG image.
31499 (svg_load): New function to load SVG image.
31500 (svg_load_image): New function, helper for svg_load.
31501 (Qsvg): New Lisp_object.
31502 (svg_keyword_index): New enum.
31503 (svg_format): New static `image_keyword' struct.
31504 (svg_type): New static `image_type' struct.
31505 (librsvg/rsvg.h): Include it.
31506
31507 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
31508
31509 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
31510
31511 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
31512
31513 * lread.c (Qold_style_backquotes): New var.
31514 (syms_of_lread): Init and staticpro it.
31515 (load_warn_old_style_backquotes): New fun.
31516 (Fload): Use them to warn about old style backquotes.
31517 (end_of_file_error, Fload): Remove unused vars.
31518
31519 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
31520
31521 * lread.c (Vold_style_backquotes): New var.
31522 (syms_of_lread): Init and export it to Elisp.
31523 (read1): Set it when we find an old-style (back)quote.
31524
31525 2007-08-22 Jason Rumney <jasonr@gnu.org>
31526
31527 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
31528
31529 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
31530
31531 * puresize.h (BASE_PURESIZE): Increase to 1140000.
31532
31533 2007-08-19 Richard Stallman <rms@gnu.org>
31534
31535 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
31536
31537 2007-08-19 Andreas Schwab <schwab@suse.de>
31538
31539 * alloc.c (pure): Round PURESIZE up.
31540
31541 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
31542
31543 * xterm.c (handle_one_xevent): Remove check that mouse click is in
31544 active frame.
31545
31546 2007-08-16 Richard Stallman <rms@gnu.org>
31547
31548 * eval.c (Fcommandp): Add parens to clarify.
31549
31550 * minibuf.c (Fall_completions): Use enum for type of table.
31551
31552 * emacs.c (USAGE2): Improve text.
31553
31554 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
31555
31556 * term.c (tty_default_color_capabilities): Declare static
31557 variables in file scope, to avoid HPUX compiler problem.
31558
31559 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
31560
31561 * gtkutil.c (update_frame_tool_bar): Use -1 as index
31562 to gtk_toolbar_insert.
31563
31564 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
31565
31566 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
31567
31568 * insdel.c (reset_var_on_error): New fun.
31569 (signal_before_change, signal_after_change):
31570 Use it to reset (after|before)-change-functions to nil in case of error.
31571 Bind inhibit-modification-hooks to t.
31572 Don't bind (after|before)-change-functions to nil while they run.
31573
31574 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31575
31576 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
31577 filling pixmap with stippled background.
31578
31579 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31580
31581 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
31582 Don't use invisible frame as parent window for repositioning.
31583
31584 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
31585
31586 * print.c (new_backquote_output): Rename from old_backquote_output.
31587 (print): Inverse its logic (according to its name) so as to match the
31588 behavior of new_backquote_flag in lread.c.
31589
31590 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31591
31592 * gmalloc.c (posix_memalign): New function.
31593
31594 * macterm.c (frame_highlight, frame_unhighlight): Don't call
31595 ActivateControl/DeactivateControl here.
31596 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
31597 frame-notice-user-settings is non-nil.
31598 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
31599 for kEventParamFMFontStyle.
31600 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
31601 mac_pass_command_to_system and mac_pass_control_to_system here.
31602 (XTread_socket): Call ActivateControl/DeactivateControl here.
31603 (XTread_socket) [TARGET_API_MAC_CARBON]:
31604 Check mac_pass_command_to_system and mac_pass_control_to_system here.
31605 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
31606 for window repositioning.
31607
31608 2007-08-08 Glenn Morris <rgm@gnu.org>
31609
31610 * Replace `iff' in doc-strings and comments.
31611
31612 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
31613
31614 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
31615
31616 2007-08-07 Martin Rudalics <rudalics@gmx.at>
31617
31618 * fileio.c (Finsert_file_contents): Run format-decode and
31619 after_insert_file_functions on entire buffer when REPLACE is
31620 non-nil and inhibit modification_hooks and point_motion_hooks.
31621 For consistency, run after_insert_file_functions iff something
31622 got inserted. Move signal_after_change and update_compositions
31623 after code running after_insert_file_functions. Make sure that
31624 undo_list doesn't record intermediate steps of the decoding process.
31625
31626 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31627
31628 * emacs.c (main)
31629 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
31630 Call malloc_enable_thread on interactive startup.
31631
31632 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
31633 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
31634 [USE_PTHREAD]: Conditionalize with it.
31635 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
31636 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
31637 New functions.
31638
31639 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
31640
31641 * xdisp.c (redisplay_window): When restoring original buffer
31642 position, make sure it is still valid.
31643
31644 * image.c (png_load): Ignore png-supplied background color.
31645
31646 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31647
31648 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
31649 Use kCFAbsoluteTimeIntervalSince1970.
31650
31651 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
31652 New variable.
31653 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
31654 event loop should be quit.
31655 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
31656 Quit dialog event loop if quit_dialog_event_loop is set.
31657
31658 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
31659 (Selection): New typedef. Use instead of ScrapRef.
31660 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
31661 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
31662 (mac_clear_selection): Rename from clear_scrap.
31663 (get_flavor_type_from_symbol): New argument SEL and subsume function of
31664 scrap_has_target_type. All uses changed.
31665 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
31666 (mac_selection_has_target_p): New functions.
31667 (mac_put_selection_value): Rename from put_scrap_string.
31668 (mac_get_selection_value): Rename from get_scrap_string.
31669 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
31670 (put_scrap_private_timestamp, scrap_has_target_type)
31671 (get_scrap_private_timestamp): Remove functions.
31672 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
31673 (x_own_selection, x_get_local_selection):
31674 Use mac_valid_selection_value_p.
31675 (x_own_selection): Don't use put_scrap_private_timestamp.
31676 Record OWNERSHIP-INFO into Vselection_alist instead.
31677 (x_get_local_selection): Don't check type if request is local.
31678 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
31679 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
31680
31681 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
31682
31683 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
31684 add comment explaining why.
31685
31686 2007-08-03 Richard Stallman <rms@gnu.org>
31687
31688 * fileio.c (Fvisited_file_modtime): Use make_time.
31689
31690 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
31691
31692 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
31693 build.
31694
31695 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
31696
31697 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
31698
31699 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
31700
31701 * puresize.h (BASE_PURESIZE): Increase to 1130000.
31702
31703 2007-07-30 Richard Stallman <rms@gnu.org>
31704
31705 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
31706
31707 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
31708
31709 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
31710
31711 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
31712
31713 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
31714 remote default-directory.
31715
31716 * buffer.c (mode-line-format): Update doc string.
31717
31718 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31719
31720 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
31721 scroll bar gap.
31722 (x_scroll_bar_create): Set bar->fringe_extended_p.
31723 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
31724 on frame edge. Check fringe background extension. Don't clear
31725 extended fringe background area.
31726
31727 * w32term.h (struct scroll_bar): New member fringe_extended_p.
31728 (w32_fill_area): Enclose multiple statements with do ... while (0).
31729
31730 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
31731 Extend fringe background to scroll bar gap.
31732 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
31733 Set bar->fringe_extended_p.
31734 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
31735 Put leftmost/rightmost scroll bars on frame edge. Check fringe
31736 background extension. Don't clear extended fringe background area.
31737
31738 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
31739 New member fringe_extended_p.
31740
31741 2007-07-25 Glenn Morris <rgm@gnu.org>
31742
31743 * Relicense all FSF files to GPLv3 or later.
31744
31745 * COPYING: Switch to GPLv3.
31746
31747 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
31748
31749 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
31750
31751 * data.c (Finteractive_form): Check for the presence of an
31752 `interactive-form' symbol property more thoroughly.
31753
31754 * data.c (Finteractive_form): Use an `interactive-form' property if
31755 present, analogous to the function-documentation property.
31756
31757 2007-07-24 Jason Rumney <jasonr@gnu.org>
31758
31759 * w32fns.c (x_real_positions): Get real position from OS instead of
31760 calculating it.
31761
31762 2007-07-23 Jason Rumney <jasonr@gnu.org>
31763
31764 * filelock.c (current_lock_owner): Allow for @ sign in username.
31765
31766 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
31767
31768 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
31769 remote default-directory.
31770
31771 * buffer.c (mode-line-format): Describe above case in doc string.
31772
31773 2007-07-20 Eli Zaretskii <eliz@gnu.org>
31774
31775 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
31776 Define if not defined.
31777
31778 2007-07-18 Jason Rumney <jasonr@gnu.org>
31779
31780 * w32proc.c (w32_executable_type): Handle 64 bit executables.
31781
31782 2007-07-18 Richard Stallman <rms@gnu.org>
31783
31784 * data.c (Fsetq_default): Doc fix.
31785
31786 * eval.c (Fsetq): Doc fix.
31787
31788 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
31789
31790 * coding.c (Ffind_operation_coding_system):
31791 * eval.c (For, Fand): Doc fixes.
31792 Reported by Johan Bockgård.
31793
31794 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
31795
31796 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
31797
31798 * xterm.h: Declare x_ewmh_activate_frame.
31799
31800 * xterm.c (x_ewmh_activate_frame): New function.
31801 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
31802
31803 2007-07-17 Martin Rudalics <rudalics@gmx.at>
31804
31805 * window.c (Fdisplay_buffer): If largest or LRU window is the
31806 only window, split it even if it is not eligible for splitting.
31807 This restores the original behavior broken by the 2007-07-15
31808 change.
31809
31810 2007-07-17 Glenn Morris <rgm@gnu.org>
31811
31812 * abbrev.c (abbrev_check_chars): New function.
31813 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
31814 Call abbrev_check_chars to check abbrev characters are word
31815 constituents. Doc fix.
31816
31817 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
31818
31819 * process.c (Fstart_process, Fmake_network_process)
31820 (read_process_output): Fix up last changes.
31821
31822 2007-07-16 Eli Zaretskii <eliz@gnu.org>
31823
31824 * makefile.w32-in (clean): Don't delete *~.
31825
31826 2007-07-16 Andreas Schwab <schwab@suse.de>
31827
31828 * window.c (Fdisplay_buffer): Use NILP.
31829 (Fset_window_scroll_bars): Likewise.
31830
31831 2007-07-15 Martin Rudalics <rudalics@gmx.at>
31832
31833 * window.c (window_min_size_2): New function.
31834 (window_min_size_1, size_window, Fdisplay_buffer)
31835 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
31836 windows without mode- or header-lines when window-min-height is
31837 too small.
31838 (size_window): Reset nodelete_p after testing it, following an
31839 earlier note by Kim F. Storm.
31840 (display_buffer): Do not set split_height_threshold to twice the
31841 value of window_min_height to avoid changing the value of a
31842 customizable variable. Rather explicitly check whether the
31843 height of the window that shall be splitted is at least as large
31844 as split_height_threshold.
31845 (Fwindow_full_width_p): New defun.
31846 (syms_of_window): Defsubr it.
31847
31848 * window.h: Add EXFUN for Fwindow_full_width_p.
31849
31850 2007-07-14 Jason Rumney <jasonr@gnu.org>
31851
31852 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
31853
31854 2007-07-14 Richard Stallman <rms@gnu.org>
31855
31856 * eval.c (maybe_call_debugger): New function.
31857 (find_handler_clause): Use maybe_call_debugger.
31858 Call it when the handler says `debug'.
31859 Eliminate DEBUGGER_VALUE_PTR.
31860 (Fsignal): Eliminate debugger_value.
31861 (Qdebug): New variable.
31862 (syms_of_eval): Initialize it.
31863
31864 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
31865
31866 * eval.c (Fprogn):
31867 * keyboard.c (Ftrack_mouse):
31868 * print.c (Fwith_output_to_temp_buffer):
31869 * window.c (Fsave_window_excursion): Doc fix.
31870
31871 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
31872
31873 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
31874
31875 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
31876
31877 * process.h (struct Lisp_Process): Turn slots infd, outfd,
31878 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
31879 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
31880 read_output_delay, and read_output_skip from Lisp_Objects to ints.
31881 Remove unused encoding_carryover.
31882 * process.c: Adjust all functions accordingly.
31883
31884 2007-07-12 Richard Stallman <rms@gnu.org>
31885
31886 * term.c: Include unistd.h only if HAVE_UNISTD_H.
31887
31888 2007-07-11 Jason Rumney <jasonr@gnu.org>
31889
31890 * makefile.w32-in (LIBS): Include OLE32.
31891
31892 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
31893 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
31894
31895 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
31896
31897 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
31898 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
31899 from a Lisp_Object into a bare pointer.
31900 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
31901 Adjust the code correspondingly.
31902
31903 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
31904
31905 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
31906 (term_show_mouse_face): Remove unused var `j'.
31907 (handle_one_term_event): Remove unused vars `i' and `j'.
31908 Don't cast return value of ttyname since it's not necessary.
31909
31910 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
31911
31912 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
31913 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
31914
31915 * fns.c (map_char_table): Use an array of int for `indices' rather than
31916 an array of Lisp_Objects (which are only ever integers anyway).
31917 (Fmap_char_table): Update caller.
31918 * lisp.h: Update prototype.
31919 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
31920 * fontset.c (Ffontset_info):
31921 * casetab.c (set_case_table): Update callers.
31922
31923 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
31924
31925 * keymap.c (struct accessible_keymaps_data)
31926 (struct where_is_internal_data): New structures.
31927 (accessible_keymaps_1, where_is_internal_1): Use them to change
31928 interface to adhere to the one used by map_keymap.
31929 (Faccessible_keymaps, where_is_internal): Use map_keymap.
31930 (accessible_keymaps_char_table, where_is_internal_2): Remove.
31931
31932 * keymap.h (map_keymap_function_t): More informative prototype.
31933
31934 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
31935
31936 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
31937 (looking_at_1): Don't change search_regs and last_thing_searched
31938 if `inhibit-changing-match-data' is non-nil.
31939 (string_match_1, search_buffer, set_search_regs): Likewise.
31940 (syms_of_search): Add Lisp level definition for
31941 `inhibit-changing-match-data' and set it to nil.
31942 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
31943 start and end of the match, instead of using values in search_regs.
31944
31945 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
31946
31947 * minibuf.c (Fcompleting_read): New value `confirm-only'
31948 for `require-match'.
31949
31950 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
31951
31952 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
31953 part of the 2007-06-27 change to syms_of_fileio.
31954
31955 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31956
31957 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
31958 Check WINDOWP before using XWINDOW. Consolidate return statements.
31959
31960 2007-06-27 Richard Stallman <rms@gnu.org>
31961
31962 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
31963
31964 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
31965
31966 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
31967
31968 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31969
31970 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
31971 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
31972 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
31973 (_free_internal, memalign): Use them.
31974 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
31975 Initialize to PTHREAD_MUTEX_INITIALIZER.
31976 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
31977 (morecore_nolock): Rename from morecore. All uses changed.
31978 Use only nolock versions of internal allocation functions.
31979 (_malloc_internal_nolock, _realloc_internal_nolock)
31980 (_free_internal_nolock): New functions created from
31981 _malloc_internal, _realloc_internal, and _free_internal.
31982 (_malloc_internal, _realloc_internal, _free_internal): Use them.
31983 Copy hook value to automatic variable before its use.
31984 (memalign): Copy hook value to automatic variable before its use.
31985
31986 2007-06-26 Kenichi Handa <handa@m17n.org>
31987
31988 * coding.c (Ffind_operation_coding_system): Docstring improved.
31989 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
31990
31991 2007-06-25 David Kastrup <dak@gnu.org>
31992
31993 * keymap.c (Fcurrent_active_maps): Add `position' argument.
31994 (Fwhere_is_internal): Adjust call to `current-active-maps' to
31995 cater for additional parameter.
31996
31997 * keymap.h: Adjust number of parameters to `current-active-maps'.
31998
31999 * doc.c (Fsubstitute_command_keys): Adjust call of
32000 `current-active-maps'.
32001
32002 2007-06-25 David Kastrup <dak@gnu.org>
32003
32004 * callint.c (Fcall_interactively): Make the parsing of interactive
32005 specs somewhat more readable.
32006
32007 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32008
32009 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
32010 to scroll bar gap also when bitmap fills fringe. Draw only foreground
32011 if extended background has already been filled.
32012
32013 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32014
32015 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
32016 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
32017
32018 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
32019 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
32020 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
32021 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
32022 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
32023 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
32024 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
32025 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
32026 Run timers during dialog popup.
32027 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
32028
32029 2007-06-21 Jason Rumney <jasonr@gnu.org>
32030
32031 * image.c (convert_mono_to_color_image): Swap fore and background.
32032
32033 2007-06-20 Jason Rumney <jasonr@gnu.org>
32034
32035 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
32036 (w32_free_bdf_font): Unmap memory not handle.
32037
32038 2007-06-20 Sam Steingold <sds@gnu.org>
32039
32040 * gmalloc.c (__morecore): Fix the declaration to comply with the
32041 definition.
32042
32043 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
32044
32045 * w32term.c (w32_delete_display): Remove leftover declaration.
32046 (w32_define_cursor, w32_initialize): Make static.
32047
32048 * w32.c (_wsa_errlist): Fix typo in error message.
32049 (init_environment): Ignore any environment variable from the
32050 registry having a null value.
32051
32052 2007-06-20 Glenn Morris <rgm@gnu.org>
32053
32054 * Makefile.in (LIBGIF): Default to -lgif.
32055
32056 2007-06-17 Jason Rumney <jasonr@gnu.org>
32057
32058 * w32menu.c (add_menu_item): Don't use multibyte string functions on
32059 unicode strings.
32060
32061 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
32062
32063 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
32064 Fix typo in docstring.
32065
32066 2007-06-16 Eli Zaretskii <eliz@gnu.org>
32067
32068 * w32menu.c (add_menu_item): Escape `&' characters in menu items
32069 and their keybindings.
32070
32071 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
32072
32073 * composite.c (update_compositions): Fix last fix.
32074
32075 2007-06-14 Jason Rumney <jasonr@gnu.org>
32076
32077 * w32.c (get_process_times_fn): New function pointer.
32078 (globals_of_w32): Intialize it if present in kernel32.dll.
32079 (w32_get_internal_run_time): New function.
32080
32081 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
32082
32083 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
32084
32085 * composite.c (update_compositions): Check the validness of
32086 compositions.
32087
32088 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32089
32090 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
32091 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
32092
32093 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
32094 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
32095
32096 * macgui.h (USE_MAC_TOOLBAR): New define.
32097
32098 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
32099 Return immediately unless popup is activated.
32100
32101 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
32102 background to scroll bar gap.
32103 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
32104 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
32105 scroll bars on frame edge. Check fringe background extension.
32106 Don't clear extended fringe background area.
32107 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
32108 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
32109 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
32110 [USE_MAC_TOOLBAR]: New macros.
32111 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
32112 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
32113 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
32114 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
32115 [USE_MAC_TOOLBAR]: New functions.
32116 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
32117 manually if previous repositioning has failed.
32118 (mac_handle_keyboard_event): Use precomputed event kind.
32119 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
32120 as tool bar item click. Handle mouse movement over tool bar items.
32121
32122 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
32123 toolbar_win_gravity.
32124 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
32125 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
32126 Add externs.
32127
32128 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
32129 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
32130
32131 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
32132
32133 * image.c (search_image_cache): Remove unused variable.
32134
32135 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
32136
32137 * xfns.c, xmenu.c: Link to xaw3d if available.
32138
32139 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32140
32141 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
32142 frame_foreground and frame_background.
32143
32144 * image.c (lookup_image): Save frame foreground and background colors.
32145 (search_image_cache): Check if saved and current frame colors match.
32146
32147 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
32148
32149 * regex.c (regex_compile): Remove the `regnum' counter.
32150 Use bufp->re_nsub instead. Add support for \(?N:RE\).
32151
32152 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
32153
32154 * term.c: Include intervals.h to declare Fget_text_property.
32155
32156 2007-06-10 Jason Rumney <jasonr@gnu.org>
32157
32158 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
32159
32160 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
32161
32162 * callint.c (Fcall_interactively):
32163 * editfns.c (Fdelete_and_extract_region):
32164 * fileio.c (Fread_file_name):
32165 * fns.c (Fmapconcat):
32166 * keyboard.c (cmd_error_internal):
32167 * keymap.c (Fkey_description):
32168 * lread.c (openp):
32169 * minibuf.c (read_minibuf):
32170 * search.c (wordify):
32171 * sunfns.c (sel_read):
32172 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
32173 * xfns.c (x_default_scroll_bar_color_parameter):
32174 * xmenu.c (menu_help_callback):
32175 * xselect.c (Fx_get_atom_name):
32176 * xterm.c (x_term_init): Use empty_unibyte_string.
32177
32178 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
32179
32180 * alloc.c (init_strings): Initialize canonical empty strings.
32181 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
32182 canonical empty string when the requested size is 0.
32183
32184 * emacs.c (empty_unibyte_string): Rename from empty_string.
32185 (empty_multibyte_string): New canonical empty string.
32186 (syms_of_emacs): Don't initialize empty_string.
32187
32188 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
32189 string, if appropriate.
32190 (empty_unibyte_string, empty_multibyte_string): New externs.
32191 (empty_string): Remove extern.
32192
32193 * lread.c (syms_of_lread): Use empty_unibyte_string.
32194
32195 2007-06-07 Jason Rumney <jasonr@gnu.org>
32196
32197 * s/ms-w32.h: Don't define HAVE_TZNAME.
32198
32199 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
32200
32201 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32202
32203 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
32204
32205 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
32206 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
32207
32208 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
32209 Don't call next handler.
32210 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
32211 Remove argument. Install handler to application.
32212 (set_frame_menubar): Don't change deep_p.
32213 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
32214 FRAME_OUTER_TO_INNER_DIFF_Y.
32215 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
32216 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
32217 [HAVE_DIALOGS]: New macros.
32218 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
32219 Use them.
32220 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
32221
32222 * macselect.c [MAC_OSX] (install_service_handler): Rename from
32223 init_service_handler. All callers changed. Return OSStatus value.
32224
32225 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
32226 All callers changed so as not to call SetPortWindowPort.
32227 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
32228 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
32229 mac_draw_string_common.
32230 (mac_draw_image_string_qd): Likewise.
32231 (mac_draw_string_common): Use them. Add INLINE.
32232 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
32233 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
32234 GetGlobalMouse.
32235 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
32236 and FRAME_OUTER_TO_INNER_DIFF_Y.
32237 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
32238 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
32239 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
32240 repositioning window to mac_handle_window_event.
32241 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
32242 saving window location to mac_handle_window_event
32243 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
32244 (install_menu_target_item_handler): Remove argument in extern.
32245 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
32246 Also accept command events.
32247 (do_keystroke): New function created from XTread_socket.
32248 (init_command_handler): Remove functions.
32249 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
32250 and save window location by kEventWindowShowing and kEventWindowHiding
32251 handlers here. Don't call next handler for window state change and
32252 focus events.
32253 (mac_handle_application_event, mac_handle_keyboard_event)
32254 [TARGET_API_MAC_CARBON]: New functions.
32255 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
32256 kEventWindowShowing and kEventWindowHiding events. Move installation
32257 of mouse, font, text input and menu target item handlers to
32258 install_application_handler.
32259 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
32260 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
32261 New function.
32262 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
32263 Register it.
32264 (XTread_socket) [TARGET_API_MAC_CARBON]:
32265 Consolidate SendEventToEventTarget calls.
32266 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
32267 Move application activation handler to mac_handle_application_event.
32268 Move keyboard handler to mac_handle_keyboard_event.
32269 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
32270 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
32271 init_command_handler. Call install_application_handler.
32272
32273 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
32274 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
32275
32276 2007-06-07 Glenn Morris <rgm@gnu.org>
32277
32278 * emacs.c (main): Use `emacs-copyright' in --version output.
32279
32280 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
32281
32282 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
32283
32284 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32285
32286 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
32287
32288 * macgui.h: Replace WindowPtr with WindowRef.
32289
32290 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
32291 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
32292 Replace ControlHandle with ControlRef.
32293 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
32294
32295 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
32296 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
32297 Replace ControlHandle with ControlRef.
32298 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
32299 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
32300
32301 * macterm.h (struct scroll_bar): Rename member control_handle_low
32302 and control_handle_high to control_ref_low and control_ref_high.
32303 All uses changed.
32304 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
32305 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
32306 respectively. All uses changed.
32307 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
32308 (install_window_handler, remove_window_handler): Replace WindowPtr
32309 with WindowRef in externs.
32310
32311 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
32312
32313 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
32314
32315 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
32316
32317 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
32318
32319 * frame.c (Fmouse_position, Fmouse_pixel_position):
32320 Condition on HAVE_GPM too.
32321
32322 * term.c (term_mouse_highlight): Remove unused variables.
32323 (Fterm_open_connection): Set gpm_zerobased to 1.
32324 (term_mouse_movement, term_mouse_click, handle_one_term_event):
32325 Use zero based co-ordinates.
32326 (handle_one_term_event): Report a drag as mouse movement too.
32327
32328 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
32329
32330 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
32331
32332 * image.c (search_image_cache): New function. Require background
32333 color match if background color is unspecified in the image spec.
32334 (uncache_image, lookup_image): Use it.
32335
32336 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
32337
32338 * window.c (Fshrink_window): Reflow docstring.
32339
32340 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
32341
32342 * Version 22.1 released.
32343
32344 2007-06-01 Richard Stallman <rms@gnu.org>
32345
32346 * xfns.c (x_encode_text): Add GCPRO.
32347
32348 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32349
32350 * xfns.c (x_set_name_internal): Save encoded name before
32351 x_encode_text in case string data is relocated.
32352
32353 2007-05-31 Richard Stallman <rms@gnu.org>
32354
32355 * buffer.c (syms_of_buffer): Doc fix.
32356
32357 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
32358
32359 * sysdep.c (init_sys_modes): Add rather than replace with
32360 O_NONBLOCK.
32361
32362 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
32363 term_mouse_moveto.
32364
32365 * termhooks.h (term_mouse_moveto): New extern.
32366
32367 * term.c (mouse_face_window): Rename...
32368 (Qmouse_face_window): ...to this.
32369 (term_show_mouse_face, term_clear_mouse_face)
32370 (term_mouse_highlight): Use Qmouse_face_window.
32371 (term_mouse_moveto): New function.
32372 (term_mouse_position): Make it work.
32373 (syms_of_term): Uncomment assignment to mouse_position_hook.
32374 Staticpro Qmouse_face_window.
32375
32376 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32377
32378 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
32379 around current_column call.
32380
32381 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
32382
32383 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
32384 * xdisp.c (next_element_from_buffer):
32385 * window.c (delete_window):
32386 * term.c (term_mouse_highlight):
32387 * msdos.c (getdefdir):
32388 * macterm.c (mac_create_bitmap_from_bitmap_data)
32389 (init_font_name_table):
32390 * fns.c (Fsxhash):
32391 * data.c (Fmake_local_variable):
32392 * ccl.c (ccl_driver): Likewise.
32393
32394 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32395
32396 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
32397 Call mac_wakeup_from_rne on window size change.
32398
32399 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
32400
32401 * image.c (uncache_image): Fix typo.
32402
32403 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
32404
32405 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
32406
32407 2007-05-22 Richard Stallman <rms@gnu.org>
32408
32409 * xterm.c (x_connection_closed): Remove NO_RETURN.
32410
32411 2007-05-22 Martin Rudalics <rudalics@gmx.at>
32412
32413 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
32414
32415 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
32416
32417 * image.c (uncache_image): New function.
32418 (Fimage_refresh): New function.
32419
32420 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
32421
32422 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
32423
32424 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
32425
32426 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
32427 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
32428
32429 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
32430
32431 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
32432 conditional on [HAVE_GPM_H].
32433
32434 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
32435
32436 * syntax.c (skip_chars): Update syntax-table only after we checked that
32437 the new location is valid.
32438
32439 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32440
32441 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
32442 mac_get_window_bounds.
32443
32444 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
32445
32446 * Makefile.in (LIBGPM): Allow it to be set from configure.
32447 If set then link Emacs with it.
32448
32449 * config.in: Regenerate.
32450
32451 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
32452 New externs.
32453
32454 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
32455 Include gpm.h.
32456 (handle_one_term_event, term_gpm): New externs.
32457
32458 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
32459 and allow it to be interrupted by SIGIO.
32460
32461 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
32462 (wait_reading_process_output): Wait on gpm_fd too.
32463 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
32464 (add_gpm_wait_descriptor_called_flag): New variable.
32465 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
32466
32467 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
32468 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
32469 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
32470 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
32471 (make_lispy_event): Add case GPM_CLICK_EVENT.
32472 (read_avail_input): Handle mouse input.
32473
32474 * term.c (write_glyphs_with_face): New function.
32475 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
32476 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
32477 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
32478 (mouse_face_face_id, term_gpm, pos_x, pos_y)
32479 (last_mouse_x, last_mouse_y): New variables.
32480 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
32481 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
32482 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
32483 (Fterm_close_connection): New functions.
32484 (term_init): Initialise mouse_face_window.
32485
32486 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
32487
32488 * xdisp.c (redisplay_window): If first window line is a
32489 continuation line, recompute the new window start instead of
32490 recentering.
32491
32492 2007-05-18 Glenn Morris <rgm@gnu.org>
32493
32494 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
32495 Suggested by Alfred M. Szmidt <ams@gnu.org>.
32496
32497 2007-05-17 Glenn Morris <rgm@gnu.org>
32498
32499 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
32500
32501 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32502
32503 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
32504 dead key repeat and up events.
32505
32506 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
32507
32508 * image.c (pbm_load): Check image size for monochrome pbm.
32509
32510 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
32511
32512 * xterm.c (XTread_socket): Revert last change.
32513
32514 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
32515
32516 * image.c (pbm_load): Correctly check image size for greyscale pbm.
32517
32518 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
32519
32520 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
32521
32522 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
32523 mixup (YAILOM).
32524
32525 2007-05-07 Andreas Schwab <schwab@suse.de>
32526
32527 * keymap.c (Flookup_key): Fix typo in last change.
32528
32529 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
32530
32531 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
32532 mapping for unibyte strings.
32533
32534 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32535
32536 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
32537 (Fx_popup_dialog) [MAC_OSX]: Likewise.
32538
32539 2007-04-29 Richard Stallman <rms@gnu.org>
32540
32541 * insdel.c (replace_range): For undo, record insertion first.
32542
32543 2007-04-29 Andreas Schwab <schwab@suse.de>
32544
32545 * lisp.h (VECSIZE): Use OFFSETOF.
32546
32547 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32548
32549 * xdisp.c (try_window_reusing_current_matrix): Fix number of
32550 disabled lines.
32551
32552 2007-04-28 Richard Stallman <rms@gnu.org>
32553
32554 * lread.c (read_escape): In a string, \s is always space.
32555
32556 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
32557
32558 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
32559
32560 * gtkutil.c (xg_update_menubar, create_menus): Create empty
32561 submenu for menu bar items.
32562
32563 See ChangeLog.10 for earlier changes.
32564
32565 ;; Local Variables:
32566 ;; coding: utf-8
32567 ;; End:
32568
32569 Copyright (C) 2007-2011 Free Software Foundation, Inc.
32570
32571 This file is part of GNU Emacs.
32572
32573 GNU Emacs is free software: you can redistribute it and/or modify
32574 it under the terms of the GNU General Public License as published by
32575 the Free Software Foundation, either version 3 of the License, or
32576 (at your option) any later version.
32577
32578 GNU Emacs is distributed in the hope that it will be useful,
32579 but WITHOUT ANY WARRANTY; without even the implied warranty of
32580 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32581 GNU General Public License for more details.
32582
32583 You should have received a copy of the GNU General Public License
32584 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.