Make tparam.h and terminfo.c consistent.
[bpt/emacs.git] / src / ChangeLog
1 2011-03-19 Paul Eggert <eggert@cs.ucla.edu>
2
3 Make tparam.h and terminfo.c consistent.
4 * cm.c (tputs, tgoto, BC, UP): Remove extern decls. Include
5 tparam.h instead, since it declares them.
6 * cm.h (PC): Remove extern decl; tparam.h now does this.
7 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
8 * terminfo.c: Include tparam.h, to check interfaces.
9 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
10 (tparam): Adjust signature to match interface in tparam.h;
11 this removes some undefined behavior. Check that outstring and len
12 are zero, which they always are with Emacs.
13 * tparam.h (PC, BC, UP): New extern decls.
14
15 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
16 (xftfont_open): Rename locals to avoid shadowing.
17
18 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
19 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
20 (OTF_TAG_SYM): Omit macro if not needed.
21 (ftfont_list): Remove unused local.
22 (get_adstyle_property, ftfont_pattern_entity):
23 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
24 Rename locals to avoid shadowing.
25
26 * xfont.c (xfont_list_family): Mark var as initialized.
27
28 * xml.c (make_dom): Now static.
29
30 * composite.c (composition_compute_stop_pos): Rename local to
31 avoid shadowing.
32 (composition_reseat_it): Remove unused locals.
33 (find_automatic_composition, composition_adjust_point): Likewise.
34 (composition_update_it): Mark var as initialized.
35 (find_automatic_composition): Mark vars as initialized,
36 with a FIXME (Bug#8290).
37
38 2011-03-18 Paul Eggert <eggert@cs.ucla.edu>
39
40 character.h: Rename locals to avoid shadowing.
41 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
42 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
43 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
44 (BUF_DEC_POS): Be more systematic about renaming local temporaries
45 to avoid shadowing.
46
47 * textprop.c (property_change_between_p): Remove; unused.
48
49 * intervals.c (interval_start_pos): Now static.
50
51 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
52
53 * atimer.c (start_atimer, append_atimer_lists, set_alarm): Rename
54 locals to avoid shadowing.
55
56 * sound.c (wav_play, au_play, Fplay_sound_internal):
57 Fix pointer signedness.
58 (alsa_choose_format): Remove unused local var.
59 (wav_play): Initialize a variable to 0, to prevent undefined
60 behavior (Bug#8278).
61
62 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
63
64 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
65
66 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
67 * sysdep.c (sys_subshell): Likewise.
68 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
69
70 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
71 This should get cleaned up, so that child_setup has the
72 same signature on all platforms.
73
74 * callproc.c (call_process_cleanup): Now static.
75 (relocate_fd): Rename locals to avoid shadowing.
76
77 2011-03-17 Eli Zaretskii <eliz@gnu.org>
78
79 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
80
81 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
82
83 Fix more problems found by GCC 4.5.2's static checks.
84
85 * process.c (make_serial_process_unwind, send_process_trap):
86 (sigchld_handler): Now static.
87
88 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
89 That way, the code declares only the vars that it needs.
90 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
91 * s/cygwin.h (PTY_ITERATION): Likewise.
92 * s/darwin.h (PTY_ITERATION): Likewise.
93 * s/gnu-linux.h (PTY_ITERATION): Likewise.
94
95 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
96 * process.c (allocate_pty): Don't declare stb unless it's needed.
97
98 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
99 (CONSTANTLIM): Remove; unused.
100 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
101 Define only if needed.
102
103 * unexelf.c (unexec): Name an expression,
104 to avoid gcc -Wbad-function-cast warning.
105 Use a different way to cause a compilation error if anyone uses
106 n rather than nn, a way that does not involve shadowing.
107 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
108
109 * deps.mk (unexalpha.o): Remove; unused.
110
111 New file unexec.h, the (simple) interface for unexec (Bug#8267).
112 * unexec.h: New file.
113 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
114 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
115 Depend on unexec.h.
116 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
117 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
118 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
119 Change as necessary to match prototype in unexec.h.
120
121 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
122 shadowing.
123 (back_comment, skip_chars): Mark vars as initialized.
124
125 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
126 Rename locals to avoid shadowing.
127
128 * lread.c (read1): Rewrite so as not to use empty "else".
129 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
130
131 * print.c (Fredirect_debugging_output): Fix pointer signedess.
132
133 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
134 warning when compiling print.c.
135
136 * font.c (font_unparse_fcname): Abort in an "impossible" situation
137 instead of using an uninitialized var.
138 (font_sort_entities): Mark var as initialized.
139
140 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
141
142 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
143 pointers to constants.
144 (font_parse_fcname): Remove unused vars.
145 (font_delete_unmatched): Now static.
146 (font_get_spec): Remove; unused.
147 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
148 (font_update_drivers, Ffont_get_glyphs, font_add_log):
149 Rename or move locals to avoid shadowing.
150
151 * fns.c (require_nesting_list, require_unwind): Now static.
152 (Ffillarray): Rename locals to avoid shadowing.
153
154 * floatfns.c (domain_error2): Define only if needed.
155 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
156
157 * alloc.c (mark_backtrace): Move decl from here ...
158 * lisp.h: ... to here, so that it can be checked.
159
160 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
161 (Fdefvar): Rewrite so as not to use empty "else".
162 (lisp_indirect_variable): Name an expression,
163 to avoid gcc -Wbad-function-cast warning.
164 (Fdefvar): Rename locals to avoid shadowing.
165
166 * callint.c (quotify_arg, quotify_args): Now static.
167 (Fcall_interactively): Rename locals to avoid shadowing.
168 Use const pointer when appropriate.
169
170 * lisp.h (get_system_name, get_operating_system_release):
171 Move decls here, to check interfaces.
172 * process.c (get_operating_system_release): Move decl to lisp.h.
173 * xrdb.c (get_system_name): Likewise.
174 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
175 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
176 some of which prompt warnings from gcc -Wbad-function-cast.
177 (Fformat_time_string, Fencode_time, Finsert_char):
178 (Ftranslate_region_internal, Fformat):
179 Rename or remove local vars to avoid shadowing.
180 (Ftranslate_region_internal): Mark var as initialized.
181
182 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
183 avoid shadowing.
184
185 * lisp.h (eassert): Check that the argument compiles, even if
186 ENABLE_CHECKING is not defined.
187
188 * data.c (Findirect_variable): Name an expression, to avoid
189 gcc -Wbad-function-cast warning.
190 (default_value, arithcompare, arith_driver, arith_error): Now static.
191 (store_symval_forwarding): Rename local to avoid shadowing.
192 (Fmake_variable_buffer_local, Fmake_local_variable): Mark
193 variables as initialized.
194 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
195
196 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
197 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
198 Rename locals to avoid shadowing.
199 (mark_stack): Move local variables into the #ifdef region where
200 they're used.
201 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
202 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
203 needed otherwise.
204 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
205 (GC_STRING_CHARS): Remove; not used.
206 (Fmemory_limit): Cast sbrk's returned value to char *.
207
208 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
209 avoids undefined behavior in theory.
210
211 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
212
213 Use functions, not macros, for up- and down-casing (Bug#8254).
214 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
215 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
216 to use the following functions instead of these macros.
217 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
218 EMACS_INT, since callers assume the returned value fits in int.
219 (upcase1): Likewise, for UPCASE_TABLE.
220 (uppercasep, lowercasep, upcase): New static inline functions.
221 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
222 the race-condition problem in the old DOWNCASE.
223
224 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
225 Rename locals to avoid shadowing.
226 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
227 (regex_compile, re_search_2, re_match_2_internal):
228 Remove unused local vars.
229 (FREE_VAR): Rewrite so as not to use empty "else",
230 which gcc can warn about.
231 (regex_compile, re_match_2_internal): Mark locals as initialized.
232 (RETALLOC_IF): Define only if needed.
233 (WORDCHAR_P): Likewise. This one is never needed, but is used
234 only in a comment talking about a compiler bug, so put inside
235 the #if 0 of that comment.
236 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
237 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
238 Remove; unused.
239
240 * search.c (boyer_moore): Rename locals to avoid shadowing.
241 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
242 (PREV_CHAR_BOUNDARY): Likewise.
243
244 * search.c (simple_search): Remove unused var.
245
246 * dired.c (compile_pattern): Move decl from here ...
247 * lisp.h: ... to here, so that it can be checked.
248 (struct re_registers): New forward decl.
249
250 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
251
252 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
253 All uses changed.
254 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
255 Rename locals to avoid shadowing.
256 (Fvertical_motion): Mark locals as initialized.
257
258 * casefiddle.c (casify_object, casify_region): Now static.
259 (casify_region): Mark local as initialized.
260
261 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
262
263 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
264 New macros, so that the caller can use some names other than
265 gcpro1, gcpro2, etc.
266 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
267 of the new macros.
268 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
269 argument, for consistency with GCPRO2_VAR, etc: it is now the
270 prefix of the variable, not the variable itself. All uses
271 changed.
272 * dired.c (directory_files_internal, file_name_completion):
273 Rename locals to avoid shadowing.
274
275 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
276 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
277 dired.c's scmp function, had undefined behavior.
278 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
279 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
280 * buffer.h: ... to here, because these macros use current_buffer,
281 and the new implementation with inline functions needs to have
282 current_buffer in scope now, rather than later when the macros
283 are used.
284 (downcase, upcase1): New static inline functions.
285 (DOWNCASE, UPCASE1): Reimplement using these functions.
286 This avoids undefined behavior in expressions like
287 DOWNCASE (x) == DOWNCASE (y), which previously suffered
288 from race conditions in accessing the global variables
289 case_temp1 and case_temp2.
290 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
291 * lisp.h (case_temp1, case_temp2): Remove their decls.
292 * character.h (ASCII_CHAR_P): Move from here ...
293 * lisp.h: ... to here, so that the inline functions mentioned
294 above can use them.
295
296 * dired.c (directory_files_internal_unwind): Now static.
297
298 * fileio.c (file_name_as_directory, directory_file_name):
299 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
300 Now static.
301 (file_name_as_directory): Use const pointers when appropriate.
302 (Fexpand_file_name): Likewise. In particular, newdir might
303 point at constant storage, so make it a const pointer.
304 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
305 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
306 signedness issues.
307 (Fset_file_times, Finsert_file_contents, auto_save_error):
308 Rename locals to avoid shadowing.
309
310 * minibuf.c (choose_minibuf_frame_1): Now static.
311 (Ftry_completion, Fall_completions): Rename or remove locals
312 to avoid shadowing.
313
314 * marker.c (bytepos_to_charpos): Remove; unused.
315
316 * lisp.h (verify_bytepos, count_markers): New decls,
317 so that gcc does not warn that these functions aren't declared.
318
319 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
320 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
321 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
322 (copy_text): Remove unused local var.
323
324 * filelock.c (within_one_second): Now static.
325 (lock_file_1): Rename local to avoid shadowing.
326
327 * buffer.c (fix_overlays_before): Mark locals as initialized.
328 (fix_start_end_in_overlays): Likewise. This function should be
329 simplified by using pointers-to-pointers, but that's a different
330 matter.
331 (switch_to_buffer_1): Now static.
332 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
333 (report_overlay_modification): Rename locals to avoid shadowing.
334
335 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
336 Fix pointer signedness issue.
337 (sys_subshell): Mark local as volatile if checking for lint,
338 to suppress a gcc -Wclobbered warning that does not seem to be right.
339 (MAXPATHLEN): Define only if needed.
340
341 * process.c (serial_open, serial_configure): Move decls from here ...
342 * systty.h: ... to here, so that they can be checked.
343
344 * fns.c (get_random, seed_random): Move extern decls from here ...
345 * lisp.h: ... to here, so that they can be checked.
346
347 * sysdep.c (reset_io): Now static.
348 (wait_for_termination_signal): Remove; unused.
349
350 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
351 (copy_keymap_item, append_key, push_text_char_description):
352 Now static.
353 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
354 (DENSE_TABLE_SIZE): Remove; unused.
355 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
356 (describe_map_tree):
357 Rename locals to avoid shadowing.
358
359 * keyboard.c: Declare functions static if they are not used elsewhere.
360 (echo_char, echo_dash, cmd_error, top_level_2):
361 (poll_for_input, handle_async_input): Now static.
362 (read_char, kbd_buffer_get_event, make_lispy_position):
363 (make_lispy_event, make_lispy_movement, apply_modifiers):
364 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
365 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
366 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
367 (read_key_sequence, read_char): Mark locals as initialized.
368 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
369
370 * keyboard.h (make_ctrl_char): New decl.
371 (mark_kboards): Move decl here ...
372 * alloc.c (mark_kboards): ... from here.
373
374 * lisp.h (force_auto_save_soon): New decl.
375
376 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
377 (DEFINE_DUMMY_FUNCTION): New macro.
378 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
379 Use it.
380 (main): Add casts to avoid warnings
381 if GCC considers string literals to be constants.
382
383 * lisp.h (fatal_error_signal): Add decl, since it's exported.
384
385 * dbusbind.c: Pointer signedness fixes.
386 (xd_signature, xd_append_arg, xd_initialize):
387 (Fdbus_call_method, Fdbus_call_method_asynchronously):
388 (Fdbus_method_return_internal, Fdbus_method_error_internal):
389 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
390 (Fdbus_register_signal): Use SSDATA when the context wants char *.
391
392 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
393 if GCC considers string literals to be constants.
394 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
395
396 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
397
398 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
399 (print_preprocess, print_object): New macro to fix last change.
400
401 * print.c (print_preprocess): Don't forget font objects.
402
403 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
404
405 * emacs.c (USAGE3): Doc fixes.
406
407 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
408
409 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
410 structure.
411
412 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
413
414 * lisp.h (VWindow_system, Qfile_name_history):
415 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
416 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
417 (w32_system_caret_x, w32_system_caret_y): Declare extern.
418
419 * w32select.c: Don't #include "keyboard.h".
420 (run_protected): Add extern declaration for waiting_for_input.
421
422 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
423 * w32console.c (detect_input_pending, read_input_pending)
424 (encode_terminal_code):
425 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
426 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
427 (w32_system_caret_y, Qfile_name_history):
428 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
429 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
430 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
431 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
432 * w32proc.c (Qlocal, report_file_error):
433 * w32term.c (Vwindow_system, updating_frame):
434 * w32uniscribe.c (initialized, uniscribe_font_driver):
435 Remove unneeded extern declarations.
436
437 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
438
439 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
440
441 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
442
443 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
444 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
445 These macros can no longer be used for assignment.
446
447 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Assign
448 struct members directly, instead of using BUF_BEGV etc.
449 (record_buffer_markers, fetch_buffer_markers): New functions for
450 recording and fetching special buffer markers.
451 (set_buffer_internal_1, set_buffer_temp): Use them.
452
453 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
454
455 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
456
457 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
458 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
459
460 * xdisp.c (hscroll_window_tree):
461 (reconsider_clip_changes): Use PT instead of BUF_PT.
462
463 2011-03-13 Eli Zaretskii <eliz@gnu.org>
464
465 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
466 $(EMACS_ROOT)/lib/intprops.h.
467
468 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
469
470 Fix more problems found by GCC 4.5.2's static checks.
471
472 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
473 to unsigned char * to avoid compiler diagnostic.
474 (xg_free_frame_widgets): Make it clear that a local variable is
475 needed only if USE_GTK_TOOLTIP.
476 (gdk_window_get_screen): Make it clear that this macro is needed
477 only if USE_GTK_TOOLTIP.
478 (int_gtk_range_get_value): New function, which avoids a diagnostic
479 from gcc -Wbad-function-cast.
480 (xg_set_toolkit_scroll_bar_thumb): Use it.
481 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
482 diagnostic from gcc -Wbad-function-cast.
483 (get_utf8_string, xg_get_file_with_chooser):
484 Rename locals to avoid shadowing.
485 (create_dialog): Move locals to avoid shadowing.
486
487 * xgselect.c (xg_select): Remove unused var.
488
489 * image.c (four_corners_best): Mark locals as initialized.
490 (gif_load): Initialize transparent_p to zero (Bug#8238).
491 Mark another local as initialized.
492 (my_png_error, my_error_exit): Mark with NO_RETURN.
493
494 * image.c (clear_image_cache): Now static.
495 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
496 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
497 (x_edge_detection): Remove unnecessary cast that
498 gcc -Wbad-function-cast diagnoses.
499 (gif_load): Fix pointer signedness.
500 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
501 (jpeg_load, gif_load): Rename locals to avoid shadowing.
502
503 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
504
505 Improve quality of tests for time stamp overflow.
506 For example, without this patch (encode-time 0 0 0 1 1
507 1152921504606846976) returns the obviously-bogus value (-948597
508 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
509 reports time overflow. See
510 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
511 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
512 * editfns.c: Include limits.h and intprops.h.
513 (TIME_T_MIN, TIME_T_MAX): New macros.
514 (time_overflow): Move earlier, to before first use.
515 (hi_time, lo_time): New functions, for an accurate test for
516 out-of-range times.
517 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
518 (Fget_internal_run_time): Don't assume time_t fits in int.
519 (make_time): Use list2 instead of Fcons twice.
520 (Fdecode_time): More accurate test for out-of-range times.
521 (check_tm_member): New function.
522 (Fencode_time): Use it, to test for out-of-range times.
523 (lisp_time_argument): Don't rely on undefined left-shift and
524 right-shift behavior when checking for time stamp overflow.
525
526 * editfns.c (time_overflow): New function, refactoring common code.
527 (Fformat_time_string, Fdecode_time, Fencode_time):
528 (Fcurrent_time_string): Use it.
529
530 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
531 * dired.c (make_time): Move to ...
532 * editfns.c (make_time): ... here.
533 * systime.h: Note the move.
534
535 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
536
537 * fringe.c (update_window_fringes): Remove unused variables.
538
539 * unexmacosx.c (copy_data_segment): Also copy __got section.
540 (Bug#8223)
541
542 2011-03-12 Eli Zaretskii <eliz@gnu.org>
543
544 * termcap.c [MSDOS]: Include "msdos.h".
545 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
546 Constify `char *' arguments and their references according to
547 prototypes in tparam.h.
548
549 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
550
551 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
552 Adapt all references accordingly.
553
554 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
555
556 2011-03-11 Tom Tromey <tromey@redhat.com>
557
558 * buffer.c (syms_of_buffer): Remove obsolete comment.
559
560 2011-03-11 Eli Zaretskii <eliz@gnu.org>
561
562 * termhooks.h (encode_terminal_code): Declare prototype.
563
564 * msdos.c (encode_terminal_code): Don't declare prototype.
565
566 * term.c (encode_terminal_code): Now external again, used by
567 w32console.c and msdos.c.
568
569 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)): Depend
570 on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
571
572 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
573
574 Fix some minor problems found by GCC 4.5.2's static checks.
575
576 * fringe.c (update_window_fringes): Mark locals as initialized
577 (Bug#8227).
578 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
579
580 * alloc.c (mark_fringe_data): Move decl from here ...
581 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
582 to check its interface.
583 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
584
585 * fontset.c (free_realized_fontset): Now static.
586 (Fset_fontset_font): Rename local to avoid shadowing.
587 (fontset_font): Mark local as initialized.
588 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
589
590 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
591
592 * xselect.c (x_disown_buffer_selections): Remove; not used.
593 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
594 (x_own_selection, Fx_disown_selection_internal): Rename locals
595 to avoid shadowing.
596 (x_handle_dnd_message): Remove local to avoid shadowing.
597
598 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
599 so that the caller can use some name other than gcpro1.
600 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
601 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
602 (Fx_backspace_delete_keys_p):
603 Use them to avoid shadowing, and rename vars to avoid shadowing.
604 (x_decode_color, x_set_name, x_window): Now static.
605 (Fx_create_frame): Add braces to silence GCC warning.
606 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
607 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
608 Remove unused locals.
609 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
610 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
611 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
612 macros.
613
614 * xterm.h (x_mouse_leave): New decl.
615
616 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
617 Remove unused functions.
618 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
619 (x_calc_absolute_position): Now static.
620 (XTread_socket): Don't define label "out" unless it's used.
621 Don't declare local "event" unless it's used.
622 (x_iconify_frame, x_free_frame_resources): Don't declare locals
623 unless they are used.
624 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
625 (x_fatal_error_signal): Remove; not used.
626 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
627 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
628 (x_error_catcher, x_connection_closed, x_error_handler):
629 (x_error_quitter, xembed_send_message, x_iconify_frame):
630 (my_log_handler): Rename locals to avoid shadowing.
631 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
632 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
633
634 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font): Rename
635 or move locals to avoid shadowing.
636 (tty_defined_color, merge_face_heights): Now static.
637 (free_realized_faces_for_fontset): Remove; not used.
638 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
639 does not deduce is never used uninitialized.
640 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
641 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
642
643 * terminal.c (store_terminal_param): Now static.
644
645 * xmenu.c (menu_highlight_callback): Now static.
646 (set_frame_menubar): Remove unused local.
647 (xmenu_show): Rename parameter to avoid shadowing.
648 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
649 since they might point to immutable storage.
650 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
651 since it's unused otherwise.
652
653 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
654 Add a FIXME, since the code still doesn't look right. (Bug#8215)
655 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
656 avoids a gcc -Wuninitialized diagnostic.
657 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
658 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
659 does not deduce are never used uninitialized.
660
661 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
662
663 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
664 * window.c (window_loop, size_window):
665 (run_window_configuration_change_hook, enlarge_window): Likewise.
666
667 * window.c (display_buffer): Now static.
668 (size_window): Mark variables that gcc -Wuninitialized
669 does not deduce are never used uninitialized.
670 * window.h (check_all_windows): New decl, to forestall
671 gcc -Wmissing-prototypes diagnostic.
672 * dispextern.h (bidi_dump_cached_states): Likewise.
673
674 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
675 shadowing.
676 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
677 Include <limits.h>.
678 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
679 and to avoid gcc -Wuninitialized warning.
680 (load_charset_map): Mark variables that gcc -Wuninitialized
681 does not deduce are never used uninitialized.
682 (load_charset): Abort instead of using uninitialized var (Bug#8229).
683
684 * coding.c (coding_set_source, coding_set_destination):
685 Use "else { /* comment */ }" rather than "else /* comment */;"
686 for clarity, and to avoid gcc -Wempty-body warning.
687 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
688 a block, when the outer 'i' will do.
689 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
690 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
691 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
692 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
693 (Fdecode_sjis_char, Fdefine_coding_system_internal):
694 Rename locals to avoid shadowing.
695 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
696 * coding.c (emacs_mule_char, encode_invocation_designation):
697 Now static, since they're not used elsewhere.
698 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
699 (decode_coding_object, encode_coding_object, detect_coding_system):
700 (decode_coding_emacs_mule): Mark variables that gcc
701 -Wuninitialized does not deduce are never used uninitialized.
702 (detect_coding_iso_2022): Initialize a local variable that might
703 be used uninitialized. Leave a FIXME because it's not clear that
704 this initialization is needed. (Bug#8211)
705 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
706 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
707 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
708 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
709 Remove unused macros.
710
711 * category.c (hash_get_category_set): Remove unused local var.
712 (copy_category_table): Now static, since it's not used elsewhere.
713 * character.c (string_count_byte8): Likewise.
714
715 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
716 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
717
718 * chartab.c (copy_sub_char_table): Now static, since it's not used
719 elsewhere.
720 (sub_char_table_ref_and_range, char_table_ref_and_range):
721 Rename locals to avoid shadowing.
722 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
723
724 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
725 (BIDI_BOB): Remove unused macro.
726
727 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
728 deduce are never used uninitialized.
729 * term.c (encode_terminal_code): Likewise.
730
731 * term.c (encode_terminal_code): Now static. Remove unused local.
732
733 * tparam.h: New file.
734 * term.c, tparam.h: Include it.
735 * deps.mk (term.o, tparam.o): Depend on tparam.h.
736 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
737 Move these decls to tparam.h, and make them agree with what
738 is actually in tparam.c. The previous trick of using incompatible
739 decls in different modules does not conform to the C standard.
740 All callers of tparam changed to use tparam's actual API.
741 * tparam.c (tparam1, tparam, tgoto):
742 Use const pointers where appropriate.
743
744 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
745 * cm.h (struct cm): Likewise.
746 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
747 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
748 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
749 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
750 (turn_on_face, init_tty): Likewise.
751 * termchar.h (struct tty_display_info): Likewise.
752
753 * term.c (term_mouse_position): Rename local to avoid shadowing.
754
755 * alloc.c (mark_ttys): Move decl from here ...
756 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
757
758 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
759
760 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
761
762 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
763
764 * search.c (compile_pattern_1): Remove argument regp, unused since
765 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
766 (compile_pattern): Don't pass it.
767
768 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
769
770 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
771 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
772 for ! HAVE_GTK3.
773 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
774
775 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
776
777 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
778 gdk_window_get_screen, gdk_window_get_geometry,
779 gdk_x11_window_lookup_for_display and GDK_KEY_g.
780 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
781 (xg_get_pixbuf_from_pixmap): New function.
782 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
783 to Pixmap, take frame as parameter, remove GdkColormap parameter.
784 Call xg_get_pixbuf_from_pixmap instead of
785 gdk_pixbuf_get_from_drawable.
786 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
787 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
788 (xg_check_special_colors): Use GtkStyleContext and its functions
789 for HAVE_GTK3.
790 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
791 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
792 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
793 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes): Call
794 gtk_widget_get_preferred_size.
795 (xg_frame_resized): gdk_window_get_geometry only takes 5
796 parameters.
797 (xg_win_to_widget, xg_event_is_for_menubar): Call
798 gdk_x11_window_lookup_for_display.
799 (xg_set_widget_bg): New function.
800 (delete_cb): New function.
801 (xg_create_frame_widgets): connect delete-event to delete_cb.
802 Call xg_set_widget_bg. Only set backgrund pixmap for ! HAVE_GTK3
803 (xg_set_background_color): Call xg_set_widget_bg.
804 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
805 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
806 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
807 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
808 if ! HAVE_GTK3.
809 (update_frame_tool_bar): Call gtk_widget_hide.
810 (xg_initialize): Use GDK_KEY_g.
811
812 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
813 if ! HAVE_GTK3
814 (x_session_initialize): Call gdk_x11_set_sm_client_id.
815
816 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
817 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
818 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
819
820 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
821
822 * w32xfns.c (select_palette): Check success of RealizePalette against
823 GDI_ERROR, not zero.
824
825 2011-03-07 Ben Key <bkey76@gmail.com>
826
827 * w32fns.c (FILE_NAME_COMBO_BOX, FILE_NAME_LIST): Define.
828 (file_dialog_callback): Fix locating the window handle of the File Name
829 text field. After disabling it, set focus on the list control.
830 (Fx_file_dialog): If only_dir_p is non-nil, set the text of the File
831 Name text field to "Current Directory" if it does not already have
832 another value. (Bug#8181)
833
834 2011-03-07 Adrian Robert <Adrian.B.Robert@gmail.com>
835
836 * nsterm.m (ns_draw_window_cursor): Fix handling of "cursor_width"
837 parameter for hbar cursors. Based on a patch by Ben Key
838 <bkey76@gmail.com>.
839
840 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
841
842 * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06
843 change.
844
845 2011-03-06 Paul Eggert <eggert@cs.ucla.edu>
846
847 current_column: Now returns EMACS_INT, fixing some iftc
848 that was introduced in the 2002-06-02 change "temporarily"; see
849 <http://lists.gnu.org/archive/html/emacs-devel/2002-06/msg00039.html>.
850 * bytecode.c (Fbyte_code): Don't cast current_column () to int.
851 * cmds.c (internal_self_insert): Likewise.
852 * indent.c (Fcurrent_column): Likewise.
853 * keymap.c (describe_command): Likewise.
854 * minibuf.c (read_minibuf): Likewise.
855 * indent.c (Fcurrent_indentation): Don't cast position_indentation ()
856 to int.
857 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
858 Likewise.
859 * cmds.c (internal_self_insert): Declare locals to be EMACS_INT,
860 not int or double, if they might contain a column number.
861 * indent.c (current_column, Findent_to, indented_beyond_p):
862 (compute_motion, vmotion): Likewise.
863 * keymap.c (describe_command): Likewise.
864 * xdisp.c (pint2str): Likewise.
865 * indent.c (last_known_column): Now EMACS_INT, not int.
866 * minibuf.c (minibuf_prompt_width): Likewise.
867 * indent.c (current_column, current_column_1, position_indentation):
868 Return EMACS_INT, not double.
869 * lisp.h (current_column): Likewise.
870 * indent.c (indented_beyond_p): Last arg is now EMACS_INT, not double.
871 All callers changed.
872 * lisp.h (indented_beyond_p): Likewise.
873
874 * minibuf.c (minibuf_prompt, minibuf_prompt_width): Move here
875 from xdisp.c, and make static, since these are used only here.
876 * window.h, xdisp.c (minibuf_prompt, minibuf_prompt_width):
877 Remove decls.
878
879 * cmds.c (internal_self_insert): Reindent to match Emacs style.
880 * xdisp.c (redisplay_window): Likewise.
881
882 * xdisp.c: Rename or move local decls to avoid shadowing.
883 (init_iterator, handle_fontified_prop, handle_single_display_spec):
884 (message_dolog, message_with_string, redisplay_internal):
885 (redisplay_window, try_window_reusing_current_matrix, try_window_id):
886 (compute_line_metrics, highlight_trailing_whitespace, cursor_row_p):
887 (display_line, display_string, rows_from_pos_range):
888 (mouse_face_from_buffer_pos, note_mouse_highlight, expose_frame):
889 Rename or move local decls.
890 * xdisp.c (BUILD_GLYPHLESS_GLYPH_STRING): Omit unused local var.
891 (produce_glyphless_glyph): Make a pointer "const"
892 since it might point to immutable storage.
893 (update_window_cursor): Now static, since it's not used elsewhere.
894 (SKIP_GLYPHS): Removed unused macro.
895
896 2011-03-06 Michael Shields <shields@msrl.com> (tiny change)
897
898 * window.c (Fnext_window): Doc fix. (Bug#5567)
899
900 2011-03-05 Chong Yidong <cyd@stupidchicken.com>
901
902 * nsterm.m (ns_draw_window_cursor): Fix typo in 2011-02-23 commit.
903
904 2011-03-02 Ken Brown <kbrown@cornell.edu>
905
906 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
907
908 2011-03-02 Paul Eggert <eggert@cs.ucla.edu>
909
910 Work around some portability problems with symlinks.
911
912 * fileio.c (Fmake_symbolic_link): Treat ENOSYS specially, and
913 generate a special message for it. Suggested by Eli Zaretskii in
914 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00995.html>.
915 (Frename_file, Fmake_symbolic_link, Ffile_symlink_p):
916 Simplify the code by assuming that the readlink and symlink calls
917 exist, even if they always fail on this host.
918 (Ffile_readable_p): Likewise, for fifos.
919 * config.in: Regenerate.
920
921 2011-02-27 Chong Yidong <cyd@stupidchicken.com>
922
923 * frame.c (store_frame_param): Don't store value directly in
924 buffer_list and buried_buffer_list; copy the list and remove dead
925 buffers (Bug#7898).
926
927 2011-02-27 Eli Zaretskii <eliz@gnu.org>
928
929 * msdos.c (readlink) [DJGPP < 2.04]: New stub function.
930
931 * msdos.h (readlink) [DJGPP < 2.04]: Declare prototype.
932
933 * w32.c (symlink, readlink): New stub functions.
934
935 2011-02-27 Paul Eggert <eggert@cs.ucla.edu>
936
937 * scroll.c (CHECK_BOUNDS): #define only if GLYPH_DEBUG.
938 This avoids a gcc warning in some configurations.
939
940 * frame.c (x_set_screen_gamma): Rename local to avoid shadowing.
941
942 * frame.h: Avoid gcc -Wmissing-prototypes diagnostics.
943 (set_menu_bar_lines, x_get_resource_string): New decls.
944 * msdos.c (set_menu_bar_lines): Omit decl.
945
946 * dispextern.h (struct glyph): Make u.img_id int, not unsigned.
947 It's always given int values and used as an int. This suppresses
948 a gcc "comparison of unsigned expression >= 0" warning in some
949 configurations.
950
951 * dispnew.c: Rename locals to avoid shadowing.
952 (update_text_area, scrolling_window, update_frame_1): Rename locals.
953
954 2011-02-26 Paul Eggert <eggert@cs.ucla.edu>
955
956 * dispnew.c: Fix problems uncovered by gcc -Wstrict-prototypes.
957 (copy_glyph_row_contents): Remove; not used.
958 (frame_row_to_window, check_current_matrix_flags):
959 (window_change_signal): Now static, since they're not used elsewhere.
960 (check_current_matrix_flags): Surround with "#if 0", since its
961 only use is in a comment. Maybe both the comment and the "#if 0"
962 stuff should be removed?
963
964 * dispnew.c: Fix problem uncovered by gcc -Wunused-variable.
965 (adjust_frame_glyphs_for_window_redisplay): Make 'w' local to the
966 contexts that actually need it.
967
968 2011-02-26 Eli Zaretskii <eliz@gnu.org>
969
970 * s/msdos.h (HAVE_LSTAT): Define for DJGPP >= 2.04.
971 (lstat): Define for DJGPP < 2.04.
972
973 2011-02-25 Paul Eggert <eggert@cs.ucla.edu>
974
975 * dired.c (Ffile_attributes): Increase size of modes from 10 to 12
976 as per recent filemodestring API change. Reported by Jonas Öster in
977 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg01069.html>.
978
979 2011-02-23 Ben Key <bkey76@gmail.com>
980
981 * nsterm.m (ns_draw_window_cursor): Obey the cursor_width argument
982 directly, for bar cursors.
983
984 2011-02-23 Chong Yidong <cyd@stupidchicken.com>
985
986 * xdisp.c (set_frame_cursor_types): Don't write an undefined value
987 into the frame's cursor_width.
988
989 2011-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
990
991 * print.c (print_object): Never print old-style backquotes.
992 Obey escapeflag for hash tables as well.
993
994 2011-02-23 Kenichi Handa <handa@m17n.org>
995
996 * font.c (font_open_entity): Be sure to set scaled_pixel_size.
997 (font_find_for_lface): Check if attrs[LFACE_HEIGHT_INDEX] is integer.
998
999 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
1000
1001 * dired.c (Ffile_attributes): Simplify and avoid #ifdef.
1002
1003 2011-02-22 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
1004
1005 * lread.c (openp): Correct Boolean typo in last commit.
1006
1007 2011-02-22 Adrian Robert <Adrian.B.Robert@gmail.com>
1008
1009 * nsterm.m (EmacsView-keyDown:): Don't pass shift-only-modified
1010 key to Emacs, treat as unmodified (go to input manager processing).
1011
1012 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
1013
1014 Assume S_ISLNK etc. work, since gnulib supports this.
1015 * config.in: Regenerate.
1016 * dired.c (lstat): Remove.
1017 (file_name_completion): Assume S_ISDIR works.
1018 (file_name_completion_stat): Assume S_ISLNK works.
1019 Do not bother calling stat unless lstat says it's a symlink.
1020 * fileio.c (S_ISLNK, S_ISFIFO, S_ISREG, lstat): Remove.
1021 (Fcopy_file): Assume S_ISREG and S_ISLNK work.
1022 (check_writable, Ffile_writable_p, Fset_file_times):
1023 Assume S_ISDIR works.
1024 (Ffile_readable_p): Use S_IFIFO, not S_ISFIFO, to guess whether
1025 fifos exist.
1026 (Ffile_regular_p, Finsert_file_contents): Assume S_ISREG works.
1027 * filelock.c (S_ISLNK): Remove.
1028 * lread.c (openp): Assume S_ISDIR works.
1029 * xrdb.c (S_ISDIR): Remove.
1030
1031 2011-02-21 Eli Zaretskii <eliz@gnu.org>
1032
1033 * makefile.w32-in ($(BLD)/filemode.$(O)): Move recipe to
1034 lib/makefile.w32-in.
1035 ($(BLD)/dired.$(O)): Depend on $(EMACS_ROOT)/lib/filemode.h.
1036 (GLOBAL_SOURCES): Remove filemode.c.
1037 (OBJ1): Remove $(BLD)/filemode.$(O).
1038
1039 2011-02-21 Paul Eggert <eggert@cs.ucla.edu>
1040
1041 Import filemode module from gnulib.
1042 * Makefile.in (base_obj): Remove filemode.o, as it's now in ../lib.
1043 * deps.mk (dired.o): Depend on ../lib/filemode.h, too.
1044 (filemode.o): Remove; this is now in ../lib.
1045 * dired.c: Include <filemode.h>.
1046 (filemodestring): Remove now-redundant decl.
1047 * config.in: Regenerate.
1048
1049 2011-02-20 Eli Zaretskii <eliz@gnu.org>
1050
1051 * makefile.w32-in ($(BLD)/fns.$(O)): Depend on
1052 $(EMACS_ROOT)/lib/md5.h and on stamp_BLD.
1053
1054 2011-02-20 Christoph Scholtes <cschol2112@gmail.com>
1055
1056 * makefile.w32-in: Remove md5.$(O).
1057 ($(BLD)/md5.$(O)): Remove prerequisites, moved to
1058 lib/makefile.w32-in.
1059
1060 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
1061
1062 Import crypto/md5 and stdint modules from gnulib.
1063 * Makefile.in (base_obj): Remove md5.o, since this file
1064 is in lib now.
1065 * config.in: Regenerate.
1066 * md5.h, md5.h: Move to ../lib.
1067 * deps.mk (md5.o): Remove.
1068 (fns.o): Depend on ../lib/md5.h, not md5.h.
1069
1070 2011-02-19 Eli Zaretskii <eliz@gnu.org>
1071
1072 * termcap.c (tputs): Don't declare baud_rate.
1073
1074 * s/msdos.h (strtold): Define to _strtold.
1075
1076 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1077
1078 * process.c (Fstart_process, Fmake_serial_process)
1079 (Fmake_network_process, server_accept_connection):
1080 Use empty_unibyte_string.
1081
1082 * alloc.c (make_unibyte_string): Don't SET_UNIBYTE redundantly.
1083
1084 * lread.c (Qdir_ok): New constant.
1085 (syms_of_lread): Initialize it.
1086 (openp): Don't ignore directories if the predicate returns dir-ok.
1087
1088 2011-02-18 Eli Zaretskii <eliz@gnu.org>
1089
1090 * xdisp.c (display_line): Fix the change made for bug#7939.
1091
1092 * terminal.c (create_terminal): Use default-keyboard-coding-system
1093 and default-terminal-coding-system to initialize coding systems of
1094 the new terminal. (Bug#7840)
1095
1096 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1097
1098 * lisp.h (BYTE_MARK_STACK): New macro.
1099 (mark_byte_stack): Only declare if BYTE_MARK_STACK is set.
1100
1101 * bytecode.c (BYTE_MAINTAIN_TOP): New macros.
1102 (struct byte_stack): Only define `top' and `bottom' if used.
1103 (mark_byte_stack): Only define if used.
1104 (BEFORE_POTENTIAL_GC, AFTER_POTENTIAL_GC): Nullify if BYTE_MAINTAIN_TOP
1105 is not set.
1106 (Fbyte_code): Don't set `bottom' unless BYTE_MAINTAIN_TOP is set.
1107
1108 * term.c (OUTPUT_IF): Use OUTPUT.
1109
1110 * alloc.c (Fgarbage_collect): When using stack scanning, don't
1111 redundantly scan byte-code stacks, catchlist, and handlerlist.
1112
1113 2011-02-17 Jan Djärv <jan.h.d@swipnet.se>
1114
1115 * nsfns.m (Fx_create_frame, ns_set_name_as_filename)
1116 (Fns_read_file_name): Replace B_ with BVAR.
1117
1118 * nsterm.m (ns_term_init): Use KVAR.
1119
1120 2011-02-16 Eli Zaretskii <eliz@gnu.org>
1121
1122 * msdos.c (internal_terminal_init): Use KVAR.
1123
1124 * w32fns.c (Fx_create_frame): Use KVAR.
1125
1126 * w32term.c (w32_create_terminal): Use KVAR.
1127
1128 * s/ms-w32.h (MODE_LINE_BINARY_TEXT): Remove.
1129 (getloadavg): Declare prototype which was removed from lisp.h.
1130
1131 * xdisp.c (decode_mode_spec): Don't use MODE_LINE_BINARY_TEXT.
1132
1133 * fileio.c (Finsert_file_contents, Fwrite_region):
1134 Remove references to buffer_file_type.
1135 (syms_of_fileio): Don't intern and staticpro
1136 find-buffer-file-type.
1137
1138 * callproc.c (syms_of_callproc): Remove references to
1139 buffer_file_type.
1140
1141 * buffer.c (reset_buffer_local_variables): Don't set
1142 buffer_file_type.
1143 (init_buffer_once): Likewise.
1144 (syms_of_buffer): Don't define buffer-file-type.
1145
1146 * buffer.h (struct buffer): Remove buffer_file_type.
1147
1148 2011-02-16 Tom Tromey <tromey@parfait>
1149
1150 * callint.c (Fcall_interactively): Update for change to field names.
1151 * doc.c (Fsubstitute_command_keys): Update for change to field names.
1152 * cmds.c (Fself_insert_command): Update for change to field names.
1153 * keymap.c (Fcurrent_active_maps, Fkey_binding)
1154 (Fdescribe_buffer_bindings): Update for change to field names.
1155 * macros.c (Fstart_kbd_macro, end_kbd_macro, Fend_kbd_macro)
1156 (store_kbd_macro_char, Fcall_last_kbd_macro, Fexecute_kbd_macro):
1157 Update for change to field names.
1158 * keyboard.c (echo_char, echo_dash, echo_now, cancel_echoing)
1159 (echo_length, echo_truncate, cmd_error, command_loop_1)
1160 (read_char, kbd_buffer_store_event_hold, make_lispy_event)
1161 (menu_bar_items, tool_bar_items, read_char_minibuf_menu_prompt)
1162 (read_key_sequence, Fcommand_execute, Fexecute_extended_command)
1163 (Fdiscard_input, init_kboard, init_keyboard, mark_kboards):
1164 Update for change to field names.
1165 * xfns.c (Fx_create_frame): Update for change to field names.
1166 * xterm.c (x_connection_closed, x_term_init): Update for change to
1167 field names.
1168 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN, init_tty):
1169 Update for change to field names.
1170 * window.c (window_scroll_pixel_based, window_scroll_line_based):
1171 Update for change to field names.
1172 * frame.c (make_frame_without_minibuffer, Fhandle_switch_frame)
1173 (delete_frame): Update for change to field names.
1174 * lisp.h (DEFVAR_KBOARD): Update for change to field names.
1175 * keyboard.h (struct kboard): Rename all Lisp_Object fields.
1176 (KBOARD_INTERNAL_FIELD, KVAR): New macros.
1177
1178 2011-02-16 Tom Tromey <tromey@redhat.com>
1179
1180 * lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR.
1181
1182 2011-02-16 Tom Tromey <tromey@parfait>
1183
1184 * xfns.c (x_create_tip_frame, Fx_show_tip): Replace B_ with BVAR.
1185 * xfaces.c (compute_char_face): Replace B_ with BVAR.
1186 * xdisp.c (pos_visible_p, init_iterator, reseat_1)
1187 (message_dolog, update_echo_area, ensure_echo_area_buffers)
1188 (with_echo_area_buffer, setup_echo_area_for_printing)
1189 (set_message_1, update_menu_bar, update_tool_bar)
1190 (text_outside_line_unchanged_p, redisplay_internal)
1191 (try_scrolling, try_cursor_movement, redisplay_window)
1192 (try_window_reusing_current_matrix, row_containing_pos)
1193 (try_window_id, get_overlay_arrow_glyph_row, display_line)
1194 (Fcurrent_bidi_paragraph_direction, display_mode_lines)
1195 (decode_mode_spec_coding, decode_mode_spec, display_count_lines)
1196 (get_window_cursor_type, note_mouse_highlight): Replace B_ with
1197 BVAR.
1198 * window.c (window_display_table, unshow_buffer, window_loop)
1199 (window_min_size_2, set_window_buffer, Fset_window_buffer)
1200 (select_window, Fforce_window_update, temp_output_buffer_show)
1201 (Fset_window_configuration, save_window_save): Replace B_ with
1202 BVAR.
1203 * w32fns.c (x_create_tip_frame, Fx_show_tip, Fw32_shell_execute):
1204 Replace B_ with BVAR.
1205 * undo.c (record_point, record_insert, record_delete)
1206 (record_marker_adjustment, record_first_change)
1207 (record_property_change, Fundo_boundary, truncate_undo_list)
1208 (Fprimitive_undo): Replace B_ with BVAR.
1209 * syntax.h (Vstandard_syntax_table, CURRENT_SYNTAX_TABLE)
1210 (SETUP_BUFFER_SYNTAX_TABLE): Replace B_ with BVAR.
1211 * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table)
1212 (Fset_syntax_table, Fmodify_syntax_entry, skip_chars)
1213 (skip_syntaxes, scan_lists): Replace B_ with BVAR.
1214 * search.c (compile_pattern_1, compile_pattern, looking_at_1)
1215 (string_match_1, fast_looking_at, newline_cache_on_off)
1216 (search_command, search_buffer, simple_search, boyer_moore)
1217 (Freplace_match): Replace B_ with BVAR.
1218 * process.c (get_process, list_processes_1, Fstart_process)
1219 (Fmake_serial_process, Fmake_network_process)
1220 (read_process_output, send_process, exec_sentinel)
1221 (status_notify, setup_process_coding_systems): Replace B_ with
1222 BVAR.
1223 * print.c (PRINTDECLARE, PRINTPREPARE, PRINTFINISH, printchar)
1224 (strout, print_string, temp_output_buffer_setup, print_object):
1225 Replace B_ with BVAR.
1226 * msdos.c (IT_frame_up_to_date): Replace B_ with BVAR.
1227 * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer):
1228 Replace B_ with BVAR.
1229 * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted)
1230 (set_marker_both, set_marker_restricted_both, unchain_marker):
1231 Replace B_ with BVAR.
1232 * lread.c (readchar, unreadchar, openp, readevalloop)
1233 (Feval_buffer, Feval_region): Replace B_ with BVAR.
1234 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE): Replace B_ with BVAR.
1235 * keymap.c (Flocal_key_binding, Fuse_local_map)
1236 (Fcurrent_local_map, push_key_description)
1237 (Fdescribe_buffer_bindings): Replace B_ with BVAR.
1238 * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt)
1239 (read_key_sequence): Replace B_ with BVAR.
1240 * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Replace B_ with BVAR.
1241 * intervals.c (set_point_both, get_local_map): Replace B_ with
1242 BVAR.
1243 * insdel.c (check_markers, insert_char, insert_1_both)
1244 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
1245 (adjust_after_replace, replace_range, del_range_2)
1246 (modify_region, prepare_to_modify_buffer)
1247 (Fcombine_after_change_execute): Replace B_ with BVAR.
1248 * indent.c (buffer_display_table, recompute_width_table)
1249 (width_run_cache_on_off, current_column, scan_for_column)
1250 (Findent_to, position_indentation, compute_motion, vmotion):
1251 Replace B_ with BVAR.
1252 * fringe.c (get_logical_cursor_bitmap)
1253 (get_logical_fringe_bitmap, update_window_fringes): Replace B_
1254 with BVAR.
1255 * frame.c (make_frame_visible_1): Replace B_ with BVAR.
1256 * font.c (font_at): Replace B_ with BVAR.
1257 * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5):
1258 Replace B_ with BVAR.
1259 * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer)
1260 (unlock_buffer): Replace B_ with BVAR.
1261 * fileio.c (Fexpand_file_name, Ffile_directory_p)
1262 (Ffile_regular_p, Ffile_selinux_context)
1263 (Fset_file_selinux_context, Ffile_modes, Fset_file_modes)
1264 (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind)
1265 (Finsert_file_contents, choose_write_coding_system)
1266 (Fwrite_region, build_annotations, Fverify_visited_file_modtime)
1267 (Fset_visited_file_modtime, auto_save_error, auto_save_1)
1268 (Fdo_auto_save, Fset_buffer_auto_saved): Replace B_ with BVAR.
1269 * editfns.c (region_limit, Fmark_marker, save_excursion_save)
1270 (save_excursion_restore, Fprevious_char, Fchar_before)
1271 (general_insert_function, Finsert_char, Finsert_byte)
1272 (make_buffer_string_both, Finsert_buffer_substring)
1273 (Fcompare_buffer_substrings, subst_char_in_region_unwind)
1274 (subst_char_in_region_unwind_1, Fsubst_char_in_region)
1275 (Ftranslate_region_internal, save_restriction_restore)
1276 (Fchar_equal): Replace B_ with BVAR.
1277 * dispnew.c (Fframe_or_buffer_changed_p): Replace B_ with BVAR.
1278 * dispextern.h (WINDOW_WANTS_MODELINE_P)
1279 (WINDOW_WANTS_HEADER_LINE_P): Replace B_ with BVAR.
1280 * dired.c (directory_files_internal): Replace B_ with BVAR.
1281 * data.c (swap_in_symval_forwarding, set_internal)
1282 (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p):
1283 Replace B_ with BVAR.
1284 * composite.c (fill_gstring_header)
1285 (composition_compute_stop_pos, composition_adjust_point)
1286 (Ffind_composition_internal): Replace B_ with BVAR.
1287 * coding.c (decode_coding, encode_coding)
1288 (make_conversion_work_buffer, decode_coding_gap)
1289 (decode_coding_object, encode_coding_object)
1290 (Fdetect_coding_region, Ffind_coding_systems_region_internal)
1291 (Funencodable_char_position, Fcheck_coding_systems_region):
1292 Replace B_ with BVAR.
1293 * cmds.c (Fself_insert_command, internal_self_insert): Replace B_
1294 with BVAR.
1295 * charset.c (Ffind_charset_region): Replace B_ with BVAR.
1296 * character.h (FETCH_CHAR_ADVANCE, INC_BOTH, DEC_BOTH)
1297 (ASCII_CHAR_WIDTH): Replace B_ with BVAR.
1298 * character.c (chars_in_text, Fget_byte): Replace B_ with BVAR.
1299 * category.h (Vstandard_category_table): Replace B_ with BVAR.
1300 * category.c (check_category_table, Fcategory_table)
1301 (Fset_category_table, char_category_set): Replace B_ with BVAR.
1302 * casetab.c (Fcurrent_case_table, set_case_table): Replace B_ with
1303 BVAR.
1304 * casefiddle.c (casify_object, casify_region): Replace B_ with
1305 BVAR.
1306 * callproc.c (Fcall_process, Fcall_process_region): Replace B_
1307 with BVAR.
1308 * callint.c (check_mark, Fcall_interactively): Replace B_ with
1309 BVAR.
1310 * bytecode.c (Fbyte_code): Replace B_ with BVAR.
1311 * buffer.h (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE, BVAR): Replace B_
1312 with BVAR.
1313 * buffer.c (Fbuffer_live_p, Fget_file_buffer)
1314 (get_truename_buffer, Fget_buffer_create)
1315 (clone_per_buffer_values, Fmake_indirect_buffer, reset_buffer)
1316 (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name)
1317 (Fbuffer_local_value, buffer_lisp_local_variables)
1318 (Fset_buffer_modified_p, Frestore_buffer_modified_p)
1319 (Frename_buffer, Fother_buffer, Fbuffer_enable_undo)
1320 (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1)
1321 (set_buffer_temp, Fset_buffer, set_buffer_if_live)
1322 (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer)
1323 (Fbuffer_swap_text, swapfield_, Fbuffer_swap_text)
1324 (Fset_buffer_multibyte, swap_out_buffer_local_variables)
1325 (record_overlay_string, overlay_strings, init_buffer_once)
1326 (init_buffer, syms_of_buffer): Replace B_ with BVAR.
1327
1328 2011-02-16 Eli Zaretskii <eliz@gnu.org>
1329
1330 * xdisp.c (redisplay_internal): Resynchronize `w' if the selected
1331 window is changed inside calls to do_pending_window_change.
1332 (Bug#8020)
1333
1334 2011-02-16 Paul Eggert <eggert@cs.ucla.edu>
1335
1336 Remove no-longer needed getloadavg symbols.
1337 * m/alpha.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1338 * m/amdx86-64.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1339 * m/ia64.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1340 * m/ibms390.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1341 * m/macppc.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1342 * m/sparc.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1343 * m/template.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1344 * m/vax.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1345 * s/aix4-2.h (KERNEL_FILE, LDAV_SYMBOL): Remove.
1346 * s/bsd-common.h (KERNEL_FILE, LDAV_SYMBOL): Remove #undef.
1347 * s/hpux10-20.h (KERNEL_FILE, LOAD_AVE_TYPE, LOAD_AVE_CVT):
1348 (LDAV_SYMBOL): Remove.
1349 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Remove.
1350 * s/usg5-4-common.h (KERNEL_FILE, LDAV_SYMBOL): Remove.
1351
1352 Import getloadavg module from gnulib.
1353 * deps.mk (getloadavg.o): Remove; gnulib now does this.
1354 * lisp.h (getloadavg) [!defined HAVE_GETLOADAVG]: Remove; gnulib
1355 now does this.
1356 * src/s/freebsd.h (HAVE_GETLOADAVG): Remove; gnulib now does this.
1357 * src/s/netbsd.h (HAVE_GETLOADAVG): Likewise.
1358 * config.in: Regenerate.
1359
1360 2011-02-15 Eli Zaretskii <eliz@gnu.org>
1361
1362 * nsfns.m (ns_set_name_as_filename, Fns_read_file_name): Use B_.
1363
1364 2011-02-14 Michael Welsh Duggan <md5i@md5i.com>
1365
1366 * print.c (float_to_string): Ensure that a decimal point is
1367 printed if using dtoastr (Bug#8033).
1368
1369 2011-02-14 Eli Zaretskii <eliz@gnu.org>
1370
1371 * msdos.c (IT_frame_up_to_date):
1372 * s/msdos.h (MODE_LINE_BINARY_TEXT): Use B_ for the MS-DOS build.
1373
1374 * dired.c (directory_files_internal):
1375 * fileio.c (Finsert_file_contents):
1376 * insdel.c (prepare_to_modify_buffer):
1377 * xdisp.c (pos_visible_p):
1378 * s/ms-w32.h (MODE_LINE_BINARY_TEXT):
1379 * w32fns.c (Fw32_shell_execute, Fx_show_tip, x_create_tip_frame):
1380 Use B_ for the MS-Windows build.
1381
1382 2011-02-14 Jan Djärv <jan.h.d@swipnet.se>
1383
1384 * xrdb.c (x_load_resources): For LUCID and XFT, don't put a
1385 resource that specifies helvetica for menus and dialogs.
1386
1387 * xmenu.c (apply_systemfont_to_dialog): Apply to *dialog.font.
1388 (apply_systemfont_to_menu): Set resources *menubar*font and
1389 *popup*font. Remove defflt.
1390 (set_frame_menubar, create_and_show_popup_menu):
1391 Call apply_systemfont_to_menu before lw_create_widget.
1392
1393 2011-02-14 Tom Tromey <tromey@redhat.com>
1394
1395 * buffer.c (init_buffer_once, syms_of_buffer): Use B_ in DOS_NT case.
1396
1397 * keyboard.h: Remove obsolete comment.
1398
1399 2011-02-14 Tom Tromey <tromey@parfait>
1400
1401 * composite.c (fill_gstring_header)
1402 (composition_compute_stop_pos, composition_adjust_point)
1403 (Ffind_composition_internal): Use B_.
1404 * intervals.c (set_point_both, get_local_map): Use B_.
1405 * callproc.c (Fcall_process, Fcall_process_region): Use B_.
1406 * process.c (get_process, list_processes_1, Fstart_process)
1407 (Fmake_serial_process, Fmake_network_process)
1408 (read_process_output, send_process, exec_sentinel)
1409 (status_notify, setup_process_coding_systems): Use B_.
1410 * bytecode.c (Fbyte_code): Use B_.
1411 * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table)
1412 (Fset_syntax_table, Fmodify_syntax_entry, skip_chars)
1413 (skip_syntaxes, scan_lists): Use B_.
1414 * lread.c (readchar, unreadchar, openp, readevalloop)
1415 (Feval_buffer, Feval_region): Use B_.
1416 * print.c (printchar, strout, print_string, PRINTDECLARE)
1417 (PRINTPREPARE, PRINTFINISH, temp_output_buffer_setup)
1418 (print_object): Use B_.
1419 * font.c (font_at): Use B_.
1420 * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5):
1421 Use B_.
1422 * callint.c (check_mark, Fcall_interactively): Use B_.
1423 * editfns.c (region_limit, Fmark_marker, save_excursion_save)
1424 (save_excursion_restore, Fprevious_char, Fchar_before)
1425 (general_insert_function, Finsert_char, Finsert_byte)
1426 (make_buffer_string_both, Finsert_buffer_substring)
1427 (Fcompare_buffer_substrings, subst_char_in_region_unwind)
1428 (subst_char_in_region_unwind_1, Fsubst_char_in_region)
1429 (Ftranslate_region_internal, save_restriction_restore)
1430 (Fchar_equal): Use B_.
1431 * data.c (swap_in_symval_forwarding, set_internal)
1432 (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p):
1433 Use B_.
1434 * undo.c (record_point, record_insert, record_delete)
1435 (record_marker_adjustment, record_first_change)
1436 (record_property_change, Fundo_boundary, truncate_undo_list)
1437 (Fprimitive_undo): Use B_.
1438 * search.c (compile_pattern_1, compile_pattern, looking_at_1)
1439 (string_match_1, fast_looking_at, newline_cache_on_off)
1440 (search_command, search_buffer, simple_search, boyer_moore)
1441 (Freplace_match): Use B_.
1442 * indent.c (buffer_display_table, recompute_width_table)
1443 (width_run_cache_on_off, current_column, scan_for_column)
1444 (Findent_to, position_indentation, compute_motion, vmotion):
1445 Use B_.
1446 * casefiddle.c (casify_object, casify_region): Use B_.
1447 * casetab.c (Fcurrent_case_table, set_case_table): Use B_.
1448 * cmds.c (Fself_insert_command, internal_self_insert): Use B_.
1449 * fileio.c (Fexpand_file_name, Ffile_directory_p)
1450 (Ffile_regular_p, Ffile_selinux_context)
1451 (Fset_file_selinux_context, Ffile_modes, Fset_file_modes)
1452 (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind)
1453 (Finsert_file_contents, choose_write_coding_system)
1454 (Fwrite_region, build_annotations, Fverify_visited_file_modtime)
1455 (Fset_visited_file_modtime, auto_save_error, auto_save_1)
1456 (Fdo_auto_save, Fset_buffer_auto_saved): Use B_.
1457 * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer): Use B_.
1458 * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted)
1459 (set_marker_both, set_marker_restricted_both, unchain_marker):
1460 Use B_.
1461 * insdel.c (check_markers, insert_char, insert_1_both)
1462 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
1463 (adjust_after_replace, replace_range, del_range_2)
1464 (modify_region, prepare_to_modify_buffer)
1465 (Fcombine_after_change_execute): Use B_.
1466 * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer)
1467 (unlock_buffer): Use B_.
1468 * keymap.c (Flocal_key_binding, Fuse_local_map)
1469 (Fcurrent_local_map, push_key_description)
1470 (Fdescribe_buffer_bindings): Use B_.
1471 * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt)
1472 (read_key_sequence): Use B_.
1473 * fringe.c (get_logical_cursor_bitmap)
1474 (get_logical_fringe_bitmap, update_window_fringes): Use B_.
1475 * xfns.c (x_create_tip_frame, Fx_show_tip): Use B_.
1476 * xfaces.c (compute_char_face): Use B_.
1477 * character.c (chars_in_text, Fget_byte): Use B_.
1478 * category.c (check_category_table, Fcategory_table)
1479 (Fset_category_table, char_category_set): Use B_.
1480 * coding.c (decode_coding, encode_coding)
1481 (make_conversion_work_buffer, decode_coding_gap)
1482 (decode_coding_object, encode_coding_object)
1483 (Fdetect_coding_region, Ffind_coding_systems_region_internal)
1484 (Funencodable_char_position, Fcheck_coding_systems_region):
1485 Use B_.
1486 * charset.c (Ffind_charset_region): Use B_.
1487 * window.c (window_display_table, unshow_buffer, window_loop)
1488 (window_min_size_2, set_window_buffer, Fset_window_buffer)
1489 (select_window, Fforce_window_update, temp_output_buffer_show)
1490 (Fset_window_configuration, save_window_save): Use B_.
1491 * xdisp.c (pos_visible_p, init_iterator, reseat_1)
1492 (message_dolog, update_echo_area, ensure_echo_area_buffers)
1493 (with_echo_area_buffer, setup_echo_area_for_printing)
1494 (set_message_1, update_menu_bar, update_tool_bar)
1495 (text_outside_line_unchanged_p, redisplay_internal)
1496 (try_scrolling, try_cursor_movement, redisplay_window)
1497 (try_window_reusing_current_matrix, row_containing_pos)
1498 (try_window_id, get_overlay_arrow_glyph_row, display_line)
1499 (Fcurrent_bidi_paragraph_direction, display_mode_lines)
1500 (decode_mode_spec_coding, decode_mode_spec, display_count_lines)
1501 (get_window_cursor_type, note_mouse_highlight): Use B_.
1502 * frame.c (make_frame_visible_1): Use B_.
1503 * dispnew.c (Fframe_or_buffer_changed_p): Use B_.
1504 * dispextern.h (WINDOW_WANTS_HEADER_LINE_P)
1505 (WINDOW_WANTS_MODELINE_P): Use B_.
1506 * syntax.h (Vstandard_syntax_table): Update.
1507 (CURRENT_SYNTAX_TABLE, SETUP_BUFFER_SYNTAX_TABLE): Use B_.
1508 * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Update.
1509 (TEXT_PROP_MEANS_INVISIBLE): Use B_.
1510 * character.h (FETCH_CHAR_ADVANCE): Update.
1511 (INC_BOTH, ASCII_CHAR_WIDTH, DEC_BOTH): Use B_.
1512 * category.h (Vstandard_category_table): Update.
1513 * lisp.h (DEFVAR_BUFFER_DEFAULTS): Update for change to field
1514 names.
1515 (DOWNCASE_TABLE, UPCASE_TABLE): Use B_.
1516 * buffer.c (swapfield_): New macro.
1517 (Fbuffer_swap_text): Use swapfield_ where appropriate.
1518 (Fbuffer_live_p, Fget_file_buffer, get_truename_buffer)
1519 (Fget_buffer_create, clone_per_buffer_values)
1520 (Fmake_indirect_buffer, reset_buffer)
1521 (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name)
1522 (Fbuffer_local_value, buffer_lisp_local_variables)
1523 (Fset_buffer_modified_p, Frestore_buffer_modified_p)
1524 (Frename_buffer, Fother_buffer, Fbuffer_enable_undo)
1525 (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1)
1526 (set_buffer_temp, Fset_buffer, set_buffer_if_live)
1527 (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer)
1528 (Fbuffer_swap_text, Fset_buffer_multibyte)
1529 (swap_out_buffer_local_variables, record_overlay_string)
1530 (overlay_strings, init_buffer_once, init_buffer, syms_of_buffer):
1531 Use B_.
1532 * buffer.h (struct buffer): Rename all Lisp_Object fields.
1533 (BUFFER_INTERNAL_FIELD, B_): New macro.
1534 (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE): Use B_.
1535
1536 2011-02-14 Jan Djärv <jan.h.d@swipnet.se>
1537
1538 * gtkutil.c (xg_tool_bar_menu_proxy): Handle case when tool bar label
1539 is null.
1540
1541 2011-02-13 Jan Djärv <jan.h.d@swipnet.se>
1542
1543 * callproc.c (Fcall_process):
1544 * process.c (create_process): Replace Gtk with GConf in SIGPIPE
1545 comment.
1546
1547 2011-02-12 Martin Rudalics <rudalics@gmx.at>
1548
1549 * window.c (select_window): Check inhibit_point_swap argument when
1550 deciding whether to return immediately.
1551
1552 2011-02-12 Jan Djärv <jan.h.d@swipnet.se>
1553
1554 * nsterm.m (setFrame, initFrame): Make sure pixel_height doesn't become
1555 zero (Bug#7348).
1556
1557 2011-02-12 Chong Yidong <cyd@stupidchicken.com>
1558
1559 * config.in (TERMINFO): New definition.
1560
1561 * s/netbsd.h: Use it to choose between terminfo and termcap
1562 (Bug#7642).
1563
1564 2011-02-12 Paul Eggert <eggert@cs.ucla.edu>
1565
1566 * md5.c (md5_process_bytes): Use sizeof, not __alignof__.
1567 The difference doesn't matter here, in practice, and sizeof is
1568 more portable to non-GCC compilers. Also, this makes the code
1569 match the already-existing comment.
1570
1571 2011-02-12 Andreas Schwab <schwab@linux-m68k.org>
1572
1573 * process.c (create_process): Reset SIGPIPE handler in the child.
1574 * callproc.c (Fcall_process): Likewise. (Bug#5238)
1575
1576 2011-02-12 Eli Zaretskii <eliz@gnu.org>
1577
1578 * xdisp.c <this_line_min_pos>: New variable.
1579 (move_it_in_display_line_to): Record in this_line_min_pos the
1580 smallest position iterated across.
1581 (display_line): Use this_line_min_pos to record the smallest
1582 position in the line even if it is not displayed due to
1583 hscrolling. (Bug#7939)
1584
1585 2011-02-12 Paul Eggert <eggert@cs.ucla.edu>
1586
1587 Port to Sun C 5.11, which has __attribute__ ((__aligned (N))).
1588 * md5.h (ATTRIBUTE_ALIGNED): New macro.
1589 (struct md5_ctx): Use it.
1590
1591 Port to Solaris 10, which doesn't support FC_HINT_STYLE.
1592 * xftfont.c (FC_HINT_STYLE): #define to "hintstyle" if not
1593 defined.
1594 * xsettings.c (parse_settings, apply_xft_settings): Don't assume
1595 FC_HINT_STYLE is supported.
1596
1597 2011-02-11 Jan Djärv <jan.h.d@swipnet.se>
1598
1599 * xterm.c (x_set_frame_alpha): Access data before it is free:d.
1600 Make sure we don't do x_catch_errors twice.
1601
1602 2011-02-10 Glenn Morris <rgm@gnu.org>
1603
1604 * Makefile.in (really-lwlib): Depend on globals.h, for parallel builds.
1605
1606 2011-02-09 Eli Zaretskii <eliz@gnu.org>
1607
1608 * makefile.w32-in (GLOBAL_SOURCES, SOME_MACHINE_OBJECTS, obj):
1609 New macros.
1610 (globals.h, gl-stamp): New targets.
1611 (clean): Clean gl-stamp and globals.h.
1612
1613 2011-02-09 Andreas Schwab <schwab@linux-m68k.org>
1614
1615 * Makefile.in (gl-stamp): Create globals.h here.
1616 (globals.h): Don't do it here.
1617 (mostlyclean): Clean globals.h and gl-stamp.
1618
1619 2011-02-09 Paul Eggert <eggert@cs.ucla.edu>
1620
1621 * Makefile.in ($(otherobj)): Depend on globals.h.
1622 Otherwise 'make -j10' failed on my host, because the build lacked
1623 necessary dependencies, e.g., vm-limit.o depends on globals.h.
1624
1625 2011-02-08 Tom Tromey <tromey@redhat.com>
1626
1627 * Makefile.in (NS_OBJC_OBJ): New variable.
1628 (base_obj): Rename from 'obj'.
1629 (obj): New variable.
1630 (globals.h, gl-stamp, $(obj)): New targets.
1631 (GLOBAL_SOURCES): New variable.
1632 * globals.h: Remove.
1633 * nsselect.m (Vselection_alist): Define. Reverts part of
1634 2011-01-19T22:11:33Z!jan.h.d@swipnet.se.
1635 * buffer.c: Don't use "no_cell" for name of kill-buffer-hook's
1636 variable.
1637 * xselect.c (Vselection_alist): Define. Reverts part of 2011-01-19T23:32:42Z!eggert@cs.ucla.edu.
1638
1639 2011-02-08 Kenichi Handa <handa@m17n.org>
1640
1641 * font.c (Ffont_get): Do not cache :otf value.
1642
1643 2011-02-07 Paul Eggert <eggert@cs.ucla.edu>
1644
1645 conform to C89 pointer rules
1646
1647 * dired.c (scmp, file_name_completion):
1648 Change types between char * and unsigned char *, to satisfy C89
1649 rules about pointer type compatibility.
1650 * casefiddle.c (casify_object, casify_region): Likewise.
1651 * search.c (Freplace_match, Fregexp_quote): Likewise.
1652 * alloc.c (make_string, make_specified_string, make_pure_string):
1653 Likewise.
1654 * data.c (Fstring_to_number): Likewise.
1655 * print.c (float_to_string, PRINTFINISH, printchar, strout):
1656 (print_object): Likewise.
1657 * editfns.c (init_editfns, Fchar_to_string, Fbyte_to_string):
1658 (Fuser_full_name, Fsubst_char_in_region, Ftranslate_region_internal):
1659 (Fformat): Likewise.
1660 * callint.c (Fcall_interactively): Likewise.
1661 * fns.c (string_make_multibyte, string_to_multibyte):
1662 (string_make_unibyte, Fstring_as_unibyte, Fstring_to_unibyte):
1663 (Fbase64_encode_region, base64_encode_1, Fbase64_decode_region, Fmd5):
1664 Likewise.
1665 * lread.c (read1, hash_string): Likewise.
1666 * process.c (read_process_output, send_process, Fprocess_send_region):
1667 Likewise.
1668 * callproc.c (Fcall_process): Likewise.
1669 * doprnt.c (doprnt): Likewise.
1670 * indent.c (compute_motion): Likewise.
1671 * xfont.c (xfont_decode_coding_xlfd): Likewise.
1672 * ralloc.c (resize_bloc): Likewise.
1673 * image.c (tiff_load): Likewise.
1674 * xml.c (make_dom, parse_region): Likewise.
1675 * character.c (strwidth): Make its argument const char *, not const
1676 unsigned char *, since more callers prefer it that way. All callers
1677 changed.
1678
1679 2011-02-06 Paul Eggert <eggert@cs.ucla.edu>
1680
1681 * xterm.c (x_alloc_nearest_color_1): Avoid unportable int assumption.
1682 Emacs assumes two's complement elsewhere, but the assumption is
1683 easy to remove here, and this suppresses a warning with Sun C 5.8.
1684
1685 conform to C89 pointer rules
1686
1687 * xterm.c (x_draw_fringe_bitmap, handle_one_xevent, x_bitmap_icon):
1688 (same_x_server, x_term_init):
1689 Change types between char * and unsigned char *, to satisfy C89
1690 rules about pointer type compatibility.
1691 * doc.c (get_doc_string, Fsnarf_documentation):
1692 (Fsubstitute_command_keys): Likewise.
1693 * xfns.c (Fx_open_connection, Fx_window_property): Likewise.
1694 * bitmaps/gray.xbm (gray_bits): Likewise.
1695 * image.c (xbm_read_bitmap_data, xbm_load_image, xbm_load): Likewise.
1696 * keyboard.c (echo_char, MULTI_LETTER_MOD, tty_read_avail_input):
1697 Likewise.
1698 * keymap.c (Ftext_char_description): Likewise.
1699 * minibuf.c (Fread_buffer): Likewise.
1700 * fileio.c (IS_DRIVE) [defined WINDOWSNT]:
1701 (DRIVE_LETTER) [defined DOS_NT]:
1702 (report_file_error, Ffile_name_directory, Ffile_name_nondirectory):
1703 (make_temp_name, Fexpand_file_name, file_name_absolute_p):
1704 (search_embedded_absfilename, Fsubstitute_in_file_name):
1705 (barf_or_query_if_file_exists, Fmake_directory_internal):
1706 (Fdelete_directory_internal, Ffile_name_absolute_p, read_non_regular):
1707 (Finsert_file_contents, Fwrite_region):
1708 Likewise.
1709 * insdel.c (insert, insert_and_inherit, insert_before_markers):
1710 (insert_before_markers_and_inherit, insert_1, insert_1_both):
1711 Likewise. This changes these functions' signatures, which is
1712 more convenient since most callers use char *. All remaining
1713 callers changed.
1714 * editfns.c (general_insert_function): Change signature to
1715 match changes to insert functions' signatures.
1716 * keymap.c (map_keymap_char_table_item, map_keymap_internal):
1717 Use explicit cast when converting between void * and function pointer
1718 types, as C89 requires this.
1719
1720 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
1721
1722 don't ignore chdir failure
1723 * sysdep.c (sys_subshell) [!defined DOS_NT]: Diagnose chdir
1724 failure and exit.
1725 (sys_subshell) [defined DOS_NT]: Mark with a FIXME the two
1726 remaining unchecked chdir calls in this function; some DOS/NT
1727 expert needs to fix them.
1728 * emacs.c (main): Mark with a FIXME the unchecked chdir calls
1729 in this function; some NextStep expert needs to fix them.
1730
1731 2011-02-05 Glenn Morris <rgm@gnu.org>
1732
1733 * xfaces.c (Finternal_set_lisp_face_attribute):
1734 Try to clarify some error messages. (Bug#2659)
1735
1736 2011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
1737
1738 * editfns.c (save_restriction_restore): Don't forget to invalidate the
1739 current_column cache (bug#7946).
1740
1741 2011-02-05 Kenichi Handa <handa@m17n.org>
1742
1743 * ftfont.c (ftfont_open): Use FC_DUAL only when it is defined.
1744
1745 * xftfont.c (xftfont_open): Likewise.
1746
1747 2011-02-05 Andreas Schwab <schwab@linux-m68k.org>
1748
1749 * window.c (Fselect_window): Add missing return value.
1750
1751 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
1752
1753 xstrcasecmp: conform to C89 pointer rules
1754 * xfaces.c (xstrcasecmp): Change args from const unsigned char *
1755 to const char *, since they're usually low-level C strings, and
1756 this stays compatible with C89 pointer rules. All callers changed.
1757
1758 * charset.c: Conform to C89 pointer rules.
1759 (define_charset_internal): Switch between char * and unsigned char *.
1760
1761 * xmenu.c: Conform to C89 const rules.
1762 (xmenu_show, xdialog_show): Declare local var as char *, not
1763 const char *, to stay compatible with C89 const rules.
1764
1765 * xdisp.c: Conform to C89 pointer rules.
1766 (store_mode_line_noprop, display_string, reseat_to_string):
1767 (c_string_pos, number_of_chars, message_dolog):
1768 (message_log_check_duplicate, set_message_1, store_mode_line_noprop):
1769 (display_mode_element, display_string):
1770 Switch between char * and unsigned char * to stay compatible wth
1771 C89 pointer rules.
1772
1773 * regex.c: Conform to C89 pointer rules.
1774 (re_wctype): Add cast, as C89 does not allow assigning between
1775 char * and unsigned char *.
1776 (regex_compile): Likewise.
1777
1778 sync from gnulib to remove HAVE_STDBOOL_H
1779 * config.in: Regenerate.
1780
1781 2011-02-04 Eli Zaretskii <eliz@gnu.org>
1782
1783 * makefile.w32-in (LISP_H, PROCESS_H): New variables.
1784 Replace all uses of lisp.h with $(LISP_H), and all uses of
1785 process.h with $(PROCESS_H).
1786 ($(BLD)/editfns.$(O)): Depend on ../lib/strftime.h.
1787 ($(BLD)/print.$(O)): Depend on ../lib/ftoastr.h and ../lib/intprops.h.
1788
1789 * deps.mk: Update for recent changes: gnutls support, gnulib
1790 imports, addition of globals.h.
1791
1792 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on
1793 ../lib/ignore-value.h.
1794
1795 2011-02-03 Paul Eggert <eggert@cs.ucla.edu>
1796
1797 allow C code to suppress warnings about ignored return values
1798
1799 We need to go through the code and for each such warning, either
1800 fix the code to pay attention to the returned value, or tell GCC
1801 that we really do want to ignore the returned value. Here is one
1802 example of how to do the latter.
1803 * sysdep.c: Include <ignore-value.h>.
1804 (sys_subshell): Suppress an undesirable warning about not checking
1805 the returned value of 'write', as there's nothing useful one can
1806 do with that returned value.
1807
1808 2011-02-03 Jan Djärv <jan.h.d@swipnet.se>
1809
1810 * xterm.c (x_connection_closed): Remove all calls that calls
1811 XSync (Bug#7949).
1812
1813 2011-02-01 Eli Zaretskii <eliz@gnu.org>
1814
1815 * image.c (tiff_load): Avoid compiler warning in 2nd arg to
1816 TIFFClientOpen.
1817
1818 2011-02-01 Jan Djärv <jan.h.d@swipnet.se>
1819
1820 * xsmfns.c (ice_connection_closed): Call delete_read_fd.
1821 (x_session_check_input): Change args and return type so it can be used
1822 as argument to add_read_fd. Make static. Remove call to select.
1823 Call kbd_buffer_store_event for emacs_event.
1824 (smc_save_yourself_CB): Also store initial argv to SmRestartCommand.
1825 (ice_conn_watch_CB): Call add_read_fd.
1826
1827 * xterm.c (XTread_socket): Remove HAVE_X_SM block with call to
1828 x_session_check_input.
1829 (x_session_initialized): Remove definition.
1830 (x_initialize): Remove setting of x_session_initialized.
1831
1832 * xterm.h (x_session_check_input): Remove declaration.
1833
1834 2011-02-01 Paul Eggert <eggert@cs.ucla.edu>
1835
1836 format-time-string now supports subsecond time stamp resolution
1837 * editfns.c (emacs_nmemftime): Rename from emacs_memftimeu,
1838 for consistency with its new argument and with gnulib nstrftime.
1839 All callers changed. New argument NS.
1840 (Fformat_time_string): Check that the time argument's microseconds
1841 component, if any, is in range; this avoids integer overflow and
1842 also nstrftime needs this. Document %N.
1843
1844 2011-01-31 Andreas Schwab <schwab@linux-m68k.org>
1845
1846 * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead
1847 of int. All uses adjusted.
1848 (PNG_JMPBUF, png_load, jpeg_load, tiff_load, gif_load)
1849 (svg_load_image): Remove casts.
1850
1851 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
1852
1853 * image.c (fn_png_longjmp, fn_png_set_longjmp_fn): New png
1854 function definitions for compiling with libpng-1.5.
1855 (PNG_LONGJMP, PNG_JMPBUF): New macros for libpng-1.5.
1856 (my_png_error, png_load): Use them. Suggested by Thomas Klausner
1857 (Bug#7908).
1858
1859 2011-01-31 Eli Zaretskii <eliz@gnu.org>
1860
1861 * s/ms-w32.h (HAVE_STRFTIME): Don't define.
1862
1863 * makefile.w32-in (OBJ2): Remove strftime.$(O).
1864 ($(BLD)/strftime.$(O)): Remove prerequisites.
1865
1866 2011-01-31 Paul Eggert <eggert@cs.ucla.edu>
1867
1868 src/emacs.c now gets version number from configure.in
1869 * emacs.c (emacs_version): Set to VERSION so that it
1870 is determined automatically from ../configure.in.
1871
1872 2011-01-31 Jim Meyering <meyering@redhat.com>
1873
1874 * charset.c (load_charset_map): Don't deref NULL on failed malloc.
1875 Use xmalloc rather than malloc.
1876
1877 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
1878
1879 strftime: import from gnulib
1880 * Makefile.in (obj): Remove strftime.o, as gnulib now does this for us.
1881 * deps.mk (strftime.o): Remove.
1882 * editfns.c: Include <strftime.h>, supplied by gnulib.
1883 (emacs_strftimeu): Remove decl.
1884 (emacs_memftimeu): Use nstrftime (the gnulib name) rather than
1885 emacs_strftimeu.
1886 * config.in: Regenerate.
1887 * strftime.c: Remove; we now use strftime from gnulib.
1888
1889 Use SSDATA when the context wants char *.
1890 * alloc.c, buffer.c, bytecode.c, callproc.c, dired.c:
1891 * dispnew.c, doc.c, editfns.c, emacs.c, fileio.c, filelock.c:
1892 * fns.c, font.c, frame.c, image.c, indent.c, keyboard.c:
1893 * lread.c, minibuf.c, print.c, process.c, search.c, widget.c:
1894 * xdisp.c, xfaces.c, xfns.c, xml.c, xselect.c, xterm.c:
1895 Use SSDATA (not SDATA) when the context of the expression wants
1896 char * (not unsigned char *).
1897
1898 2011-01-30 Jan Djärv <jan.h.d@swipnet.se>
1899
1900 * .gdbinit: Read global lisp variables as globals.f_V*.
1901
1902 2011-01-30 Andreas Schwab <schwab@linux-m68k.org>
1903
1904 * font.c (PROP_MATCH): Remove parameter N and use strlen instead.
1905 All uses changed.
1906 (PROP_SAVE): Likewise.
1907
1908 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
1909
1910 * keyboard.c (make_lispy_position): Fix typo in last change
1911 (Bug#7935).
1912
1913 2011-01-29 Eli Zaretskii <eliz@gnu.org>
1914
1915 * s/ms-w32.h (HAVE_MKTIME): Remove.
1916
1917 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
1918 (GNULIB): New variable.
1919 (LIBS): Add $(GNULIB).
1920 $(TEMACS): Depend on $(GNULIB).
1921 <top-level>: Fix font-lock disrupted by a lone `"'.
1922
1923 2011-01-29 Jan Djärv <jan.h.d@swipnet.se>
1924
1925 * nsselect.m (ns_string_from_pasteboard): Get length of string
1926 and use make_string instead of build_string (Bug#7934).
1927 (ns_string_to_pasteboard_internal): Use initWithBytesNoCopy
1928 instead of stringWithUTF8String (Bug#7934).
1929
1930 2011-01-29 Anders Lindgren <andlind@gmail.com> (tiny change)
1931
1932 * nsfont.m (nsfont_open): Ensure that fonts with inexact
1933 descenders would not become one pixel too tall (Bug#7887).
1934
1935 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
1936
1937 * keyboard.c (make_lispy_position): For clicks on right fringe or
1938 margin, compute text position using the X coordinate relative to
1939 the left of the text area (Bug#7839).
1940
1941 2011-01-28 Kenichi Handa <handa@m17n.org>
1942
1943 * ftfont.c (ftfont_spec_pattern): Check each extra property
1944 value.
1945
1946 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
1947
1948 * xdisp.c (safe_eval_handler): Distinguish symbols and strings.
1949
1950 2011-01-27 Chong Yidong <cyd@stupidchicken.com>
1951
1952 * font.c (font_parse_fcname): Undefine a temporary macro.
1953
1954 2011-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
1955
1956 Let the debugger continue to the normal handler (bug#7825).
1957 * eval.c (maybe_call_debugger): Declare before new use.
1958 (find_handler_clause): Don't call debugger any more.
1959 Ignore Vstack_trace_on_error.
1960 Use XCAR/XCDR.
1961 (syms_of_eval): Remove Vstack_trace_on_error.
1962 (Fsignal): Only modify handlerlist when we know we need to do it.
1963 Call the debugger when necessary.
1964 * globals.h (Vstack_trace_on_error): Remove.
1965
1966 2011-01-26 Chong Yidong <cyd@stupidchicken.com>
1967
1968 * font.c (font_parse_fcname): Rewrite GTK font name parser.
1969
1970 2011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
1971
1972 * xdisp.c (handle_fontified_prop): Be careful with font-lock changing
1973 the buffer's point-max (bug#7876).
1974
1975 2011-01-25 Chong Yidong <cyd@stupidchicken.com>
1976
1977 * lisp.h (XPNTR): Obey DATA_SEG_BITS in all non-USE_LSB_TAG cases.
1978 Remove unused case (Bug#6811).
1979
1980 2011-01-23 Jan Djärv <jan.h.d@swipnet.se>
1981
1982 * nsterm.m (x_set_offset): Set dont_constrain to 0 so the call to
1983 setFrameTopLeftPoint is constrained.
1984
1985 2011-01-23 Paul Eggert <eggert@cs.ucla.edu>
1986
1987 Check return values of some library calls.
1988 * emacs.c (main): Check dup result.
1989 * frame.c: Include <limits.h>, for INT_MIN and INT_MAX.
1990 (frame_name_fnn_p): Check strtol result.
1991
1992 * image.c (x_create_bitmap_from_xpm_data): Add cast to fix type clash
1993 when calling XpmCreatePixmapFromData.
1994
1995 Promote SSDATA macro from gtkutil.c and xsmfns.c to lisp.h.
1996 * lisp.h (SSDATA): New macro.
1997 All uses of (char *) SDATA (x) replaced with SSDATA (x),
1998 and all uses of (unsigned char *) SDATA (x) replaced with SDATA (x).
1999 * gtkutil.c (SSDATA): Remove, as lisp.h now defines this.
2000 * xsmfns.c (SSDATA): Likewise.
2001
2002 2011-01-22 Martin Rudalics <rudalics@gmx.at>
2003
2004 * window.c (select_window): New function.
2005 (Fselect_window): Call it.
2006 (inhibit_point_swap): Variable deleted.
2007 (Fset_window_configuration): Call select_window directly.
2008
2009 2011-01-22 Jan Djärv <jan.h.d@swipnet.se>
2010
2011 * nsterm.m (constrainFrameRect): Only constrain the first time called.
2012
2013 2011-01-21 Jan Djärv <jan.h.d@swipnet.se>
2014
2015 * nsterm.m (x_set_offset, windowDidMove): When calculating y, use first
2016 screen, not the window screen.
2017 (x_set_window_size): Remove constraints.
2018 Calculate origin.y only if zooming is 0 and without referring to a
2019 screen.
2020 (windowWillResize): Don't modify frameSize.
2021 (windowDidBecomeKey, mouseDown): Set dont_constrain to 1.
2022 (initFrameFromEmacs): Initialize ns_userRect.
2023 (windowShouldZoom): Set zooming to one. Remove all other code.
2024 (windowWillUseStandardFrame): Move static ns_userRect to EmacsView.
2025 Zero it after restore.
2026 (constrainFrameRect): New method for EmacsWindow.
2027 (mouseDragged): Always post NSWindowDidResizeNotification after call to
2028 windowWillResize.
2029
2030 * nsterm.h (ns_output): Add dont_constrain and zooming.
2031 (EmacsView): Add ns_userRect.
2032
2033 * nsterm.m (keyDown): If ns_right_alternate_modifier is Qleft, check
2034 if ns_alternate_modifier is none.
2035
2036 2011-01-20 Jan Djärv <jan.h.d@swipnet.se>
2037
2038 * unexmacosx.c: Add comment about include order.
2039
2040 2011-01-20 Glenn Morris <rgm@gnu.org>
2041
2042 * minibuf.c (syms_of_minibuf) <read-expression-history>:
2043 Give it a doc string.
2044 * globals.h: Add Vread_expression_history.
2045
2046 * macros.c (syms_of_macros) <kbd-macro-termination-hook>:
2047 Give it a doc string.
2048 * globals.h: Add Vkbd_macro_termination_hook.
2049
2050 2011-01-20 Chong Yidong <cyd@stupidchicken.com>
2051
2052 * fns.c (Fyes_or_no_p): Revert 2011-01-07 change, removing ARGS.
2053
2054 2011-01-19 Paul Eggert <eggert@cs.ucla.edu>
2055
2056 Fix X11 compilation failure.
2057 * globals.h (struct emacs_globals): Document f_Vselection_alist.
2058 * xselect.c (Vselection_alist): Remove declaration, moving its
2059 documentation to globals.h. This fixes a compilation failure
2060 induced by the earlier change to globals.h today.
2061
2062 2011-01-19 Jan Djärv <jan.h.d@swipnet.se>
2063
2064 * unexmacosx.c: Include config.h before unistd.h (Bug#7859).
2065
2066 * nsterm.m (ns_input_file, ns_input_font, ns_input_fontsize)
2067 (ns_input_line, ns_input_color, ns_input_text, ns_working_text)
2068 (ns_input_spi_name, ns_input_spi_arg)
2069 (ns_alternate_modifier, ns_right_alternate_modifier)
2070 (ns_command_modifier, ns_right_command_modifier, ns_control_modifier)
2071 (ns_right_control_modifier, ns_function_modifier)
2072 (ns_antialias_text, ns_confirm_quit): Move to globals.h.
2073 (Vx_toolkit_scroll_bars, x_use_underline_position_properties)
2074 (x_underline_at_descent_line): Remove declaration.
2075 (syms_of_nsterm): Remove & from DEFVAR_LISP and DEFVAR_BOOL.
2076
2077 * nsselect.m (Vns_sent_selection_hooks, Vns_lost_selection_hooks)
2078 (Vselection_alist, Vselection_converter_alist): Move to globals.h.
2079 (syms_of_nsselect): Remove & from DEFVAR_LISP.
2080
2081 * nsmenu.m (Voverriding_local_map, Voverriding_local_map_menu_flag):
2082 Remove declaration.
2083
2084 * nsfont.m (Vns_reg_to_script, ns_antialias_text): Move to
2085 globals.h.
2086 (syms_of_nsfont): Remove & from DEFVAR_LISP.
2087
2088 * nsfns.m (Vmenu_bar_mode, Vtool_bar_mode): Remove declaration.
2089 (Vns_icon_type_alist, Vns_version_string): Move to globals.h.
2090 (syms_of_nsfns): Remove & from DEFVAR_LISP calls.
2091
2092 * globals.h (struct emacs_globals): Add f_ns_input_file,
2093 f_ns_input_font, f_ns_input_fontsize, f_ns_input_line,
2094 f_ns_input_color, f_ns_input_text, f_ns_working_text,
2095 f_ns_input_spi_name, f_ns_input_spi_arg, f_ns_alternate_modifier,
2096 f_ns_right_alternate_modifier, f_ns_command_modifier,
2097 f_ns_right_command_modifier, f_ns_control_modifier,
2098 f_ns_right_control_modifier, f_ns_function_modifier,
2099 f_ns_antialias_text, f_ns_confirm_quit, f_Vns_icon_type_alist,
2100 f_Vns_version_string, f_Vns_sent_selection_hooks,
2101 f_Vns_lost_selection_hooks, f_Vselection_alist, f_Vns_reg_to_script
2102 and corresponding defines.
2103
2104 2011-01-19 Sam Steingold <sds@gnu.org>
2105
2106 * w32.c (check_windows_init_file): Remove declarations of
2107 Vwindow_system, Vload_path, Qfile_exists_p to fix compilation.
2108 * w32fns.c: Fix an error introduced by the previous patch.
2109
2110 2011-01-19 Tom Tromey <tromey@redhat.com>
2111
2112 * window.c: Fix error introduced by previous patch.
2113
2114 2011-01-18 Tom Tromey <tromey@parfait>
2115
2116 * globals.h: New file.
2117 * xterm.h (Vx_pixel_size_width_font_regexp): Remove declaration.
2118 * window.h (Vinitial_window_system, Vminibuf_scroll_window)
2119 (Vwindow_system_version): Remove declaration.
2120 * w32term.h (Vw32_enable_palette)
2121 (Vx_pixel_size_width_font_regexp): Remove declaration.
2122 * w32menu.c (Voverriding_local_map)
2123 (Voverriding_local_map_menu_flag): Remove declaration.
2124 * w32inevt.c (Vw32_alt_is_meta, Vw32_apps_modifier)
2125 (Vw32_capslock_is_shiftlock, Vw32_enable_caps_lock)
2126 (Vw32_enable_num_lock, Vw32_lwindow_modifier)
2127 (Vw32_pass_lwindow_to_system, Vw32_pass_rwindow_to_system)
2128 (Vw32_phantom_key_code, Vw32_recognize_altgr)
2129 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
2130 (w32_use_full_screen_buffer): Remove declaration.
2131 * w32.c (Vsystem_configuration, Vw32_downcase_file_names)
2132 (Vw32_generate_fake_inodes, Vw32_get_true_file_attributes)
2133 (w32_num_mouse_buttons, w32_pipe_read_delay): Remove declaration.
2134 * termopts.h (Vtruncate_partial_width_windows, inverse_video)
2135 (no_redraw_on_reenter, visible_bell): Remove declaration.
2136 * sysdep.c (Vsystem_name): Remove declaration.
2137 * syntax.h (parse_sexp_lookup_properties): Remove declaration.
2138 * menu.h (Vmenu_updating_frame): Remove declaration.
2139 * macros.h (Vexecuting_kbd_macro, executing_kbd_macro_index):
2140 Remove declaration.
2141 * lisp.h (Vafter_init_time, Vafter_load_alist)
2142 (Vauto_save_list_file_name, Vbefore_init_time, Vcommand_history)
2143 (Vcompletion_regexp_list, Vcurrent_load_list)
2144 (Vcurrent_prefix_arg, Vdata_directory, Vdebug_on_error)
2145 (Vdoc_directory, Vdoc_file_name, Vdynamic_library_alist)
2146 (Vexec_directory, Vexec_path, Vexec_suffixes)
2147 (Vface_font_rescale_alist, Vface_ignored_fonts, Vfeatures)
2148 (Vhelp_form, Vhistory_length, Vinhibit_field_text_motion)
2149 (Vinhibit_quit, Vinhibit_read_only, Vinhibit_redisplay)
2150 (Vinstallation_directory, Vinvocation_directory)
2151 (Vinvocation_name, Vload_file_rep_suffixes, Vload_history)
2152 (Vload_suffixes, Vmark_even_if_inactive, Vmemory_full)
2153 (Vmessage_log_max, Vobarray, Vprint_length, Vprint_level)
2154 (Vpurify_flag, Vquit_flag, Vsaved_region_selection)
2155 (Vscalable_fonts_allowed, Vselect_active_regions)
2156 (Vshell_file_name, Vstandard_input, Vstandard_output)
2157 (Vsystem_name, Vtemporary_file_directory, Vthrow_on_input)
2158 (Vtop_level, Vtty_erase_char, Vundo_outer_limit)
2159 (Vuser_login_name, Vwindow_scroll_functions)
2160 (Vwindow_system_version, Vx_no_window_manager)
2161 (Vx_resource_class, Vx_resource_name, baud_rate)
2162 (completion_ignore_case, debug_on_next_call, gc_cons_threshold)
2163 (history_delete_duplicates, inhibit_x_resources)
2164 (last_nonmenu_event, load_in_progress, max_specpdl_size)
2165 (minibuffer_auto_raise, print_escape_newlines, scroll_margin)
2166 (use_dialog_box, use_file_dialog): Remove declaration.
2167 Include globals.h.
2168 * keymap.h (Voverriding_local_map)
2169 (Voverriding_local_map_menu_flag, meta_prefix_char):
2170 Remove declaration.
2171 * keyboard.h (Vdouble_click_time, Vfunction_key_map)
2172 (Vinput_method_function, Vkey_translation_map)
2173 (Vlucid_menu_bar_dirty_flag, Vthis_original_command)
2174 (do_mouse_tracking, extra_keyboard_modifiers)
2175 (num_nonmacro_input_events): Remove declaration.
2176 * intervals.h (Vchar_property_alias_alist)
2177 (Vdefault_text_properties, Vinhibit_point_motion_hooks)
2178 (Vtext_property_default_nonsticky): Remove declaration.
2179 * gtkutil.h (x_gtk_file_dialog_help_text)
2180 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
2181 (x_gtk_whole_detached_tool_bar): Remove declaration.
2182 * frame.h (Vdefault_frame_alist, Vframe_alpha_lower_limit)
2183 (Vmenu_bar_mode, Vmouse_highlight, Vterminal_frame)
2184 (Vtool_bar_mode, Vx_resource_class, Vx_resource_name)
2185 (focus_follows_mouse): Remove declaration.
2186 * fontset.h (Valternate_fontname_alist, Vfontset_alias_alist)
2187 (Vignore_relative_composition, Votf_script_alist)
2188 (Vuse_default_ascent, Vvertical_centering_font_regexp):
2189 Remove declaration.
2190 * font.h (Vfont_log): Remove declaration.
2191 * dosfns.h (Vdos_display_scancodes, Vdos_version)
2192 (Vdos_windows_version, dos_codepage, dos_country_code)
2193 (dos_decimal_point, dos_hyper_key, dos_keyboard_layout)
2194 (dos_keypad_mode, dos_super_key, dos_timezone_offset):
2195 Remove declaration.
2196 * disptab.h (Vglyph_table, Vstandard_display_table):
2197 Remove declaration.
2198 * dispextern.h (Vface_remapping_alist, Vglyphless_char_display)
2199 (Vmouse_autoselect_window, Voverflow_newline_into_fringe)
2200 (Vshow_trailing_whitespace, Vtool_bar_button_margin)
2201 (Vtool_bar_style, cursor_in_echo_area, display_hourglass_p)
2202 (inverse_video, mode_line_in_non_selected_windows)
2203 (tool_bar_button_relief, tool_bar_max_label_size)
2204 (underline_minimum_offset)
2205 (unibyte_display_via_language_environment, x_stretch_cursor_p):
2206 Remove declaration.
2207 * composite.h (Vauto_composition_function)
2208 (Vcomposition_function_table): Remove declaration.
2209 * commands.h (Vexecuting_kbd_macro)
2210 (Vminibuffer_local_completion_map)
2211 (Vminibuffer_local_filename_completion_map)
2212 (Vminibuffer_local_filename_must_match_map)
2213 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
2214 (Vminibuffer_local_ns_map, Vthis_command)
2215 (Vunread_command_events, cursor_in_echo_area)
2216 (last_command_event, last_nonmenu_event, unread_command_char):
2217 Remove declaration.
2218 * coding.h (Vcoding_system_for_read, Vcoding_system_for_write)
2219 (Vdefault_file_name_coding_system)
2220 (Vdefault_process_coding_system, Vfile_name_coding_system)
2221 (Vlast_coding_system_used, Vlocale_coding_system)
2222 (Vselect_safe_coding_system_function)
2223 (Vtranslation_table_for_input, coding_system_require_warning)
2224 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
2225 (eol_mnemonic_unix, inherit_process_coding_system):
2226 Remove declaration.
2227 * charset.h (Vcharset_list, Vcurrent_iso639_language):
2228 Remove declaration.
2229 * character.h (Vauto_fill_chars, Vchar_direction_table)
2230 (Vchar_script_table, Vchar_width_table, Vprintable_chars)
2231 (Vscript_representative_chars, Vtranslation_table_vector)
2232 (Vunicode_category_table): Remove declaration.
2233 * ccl.h (Vfont_ccl_encoder_alist): Remove declaration.
2234 * buffer.h (Vafter_change_functions, Vbefore_change_functions)
2235 (Vdeactivate_mark, Vfirst_change_hook, Vtransient_mark_mode)
2236 (inhibit_modification_hooks): Remove declaration.
2237 * xterm.c (syms_of_xterm): Update.
2238 (Vx_alt_keysym, Vx_hyper_keysym, Vx_keysym_table)
2239 (Vx_meta_keysym, Vx_super_keysym, Vx_toolkit_scroll_bars)
2240 (x_mouse_click_focus_ignore_position)
2241 (x_underline_at_descent_line)
2242 (x_use_underline_position_properties): Remove.
2243 * xsmfns.c (syms_of_xsmfns): Update.
2244 (Vx_session_id, Vx_session_previous_id): Remove.
2245 * xsettings.c (syms_of_xsettings): Update.
2246 (Vxft_settings, use_system_font): Remove.
2247 * xselect.c (syms_of_xselect): Update.
2248 (Vselection_converter_alist, Vx_lost_selection_functions)
2249 (Vx_sent_selection_functions, x_selection_timeout): Remove.
2250 * xfns.c (syms_of_xfns): Update.
2251 (Vgtk_version_string, Vmotif_version_string)
2252 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
2253 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
2254 (Vx_no_window_manager, Vx_nontext_pointer_shape)
2255 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
2256 (Vx_sensitive_text_pointer_shape)
2257 (Vx_window_horizontal_drag_shape, x_gtk_file_dialog_help_text)
2258 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
2259 (x_gtk_use_system_tooltips, x_gtk_whole_detached_tool_bar):
2260 Remove.
2261 * xfaces.c (syms_of_xfaces): Update.
2262 (Vface_default_stipple, Vface_font_rescale_alist)
2263 (Vface_ignored_fonts, Vface_new_frame_defaults)
2264 (Vface_remapping_alist, Vfont_list_limit)
2265 (Vscalable_fonts_allowed, Vtty_defined_color_alist): Remove.
2266 * xdisp.c (syms_of_xdisp): Update.
2267 (Vauto_resize_tool_bars, Vblink_cursor_alist)
2268 (Vdisplay_pixels_per_inch, Vfontification_functions)
2269 (Vframe_title_format, Vglobal_mode_string)
2270 (Vglyphless_char_display, Vhourglass_delay, Vhscroll_step)
2271 (Vicon_title_format, Vinhibit_redisplay)
2272 (Vline_number_display_limit, Vline_prefix)
2273 (Vmax_mini_window_height, Vmenu_bar_update_hook)
2274 (Vmenu_updating_frame, Vmessage_log_max)
2275 (Vmouse_autoselect_window, Vnobreak_char_display)
2276 (Voverlay_arrow_position, Voverlay_arrow_string)
2277 (Voverlay_arrow_variable_list, Vredisplay_end_trigger_functions)
2278 (Vresize_mini_windows, Vshow_trailing_whitespace)
2279 (Vtool_bar_border, Vtool_bar_button_margin, Vtool_bar_style)
2280 (Vtruncate_partial_width_windows, Vvoid_text_area_pointer)
2281 (Vwindow_scroll_functions, Vwindow_size_change_functions)
2282 (Vwindow_text_change_functions, Vwrap_prefix)
2283 (auto_raise_tool_bar_buttons_p, automatic_hscrolling_p)
2284 (debug_end_pos, display_hourglass_p, emacs_scroll_step)
2285 (highlight_nonselected_windows, hscroll_margin)
2286 (inhibit_eval_during_redisplay, inhibit_free_realized_faces)
2287 (inhibit_menubar_update, inhibit_try_cursor_movement)
2288 (inhibit_try_window_id, inhibit_try_window_reusing)
2289 (line_number_display_limit_width)
2290 (make_cursor_line_fully_visible_p, message_truncate_lines)
2291 (mode_line_inverse_video, multiple_frames, overline_margin)
2292 (scroll_conservatively, scroll_margin, tool_bar_button_relief)
2293 (tool_bar_max_label_size, underline_minimum_offset)
2294 (unibyte_display_via_language_environment, x_stretch_cursor_p):
2295 Remove.
2296 * window.c (syms_of_window): Update.
2297 (Vminibuf_scroll_window, Vother_window_scroll_buffer)
2298 (Vrecenter_redisplay, Vscroll_preserve_screen_position)
2299 (Vtemp_buffer_show_function, Vwindow_configuration_change_hook)
2300 (Vwindow_point_insertion_type, auto_window_vscroll_p)
2301 (mode_line_in_non_selected_windows, next_screen_context_lines)
2302 (window_min_height, window_min_width): Remove.
2303 (scroll_margin): Remove declaration.
2304 * w32term.c (syms_of_w32term): Update.
2305 (Vw32_capslock_is_shiftlock, Vw32_grab_focus_on_raise)
2306 (Vw32_recognize_altgr, Vw32_swap_mouse_buttons)
2307 (Vx_toolkit_scroll_bars, w32_num_mouse_buttons)
2308 (w32_use_visible_system_caret, x_underline_at_descent_line)
2309 (x_use_underline_position_properties): Remove.
2310 (Vcommand_line_args, Vsystem_name, extra_keyboard_modifiers):
2311 Remove declaration.
2312 * w32select.c (syms_of_w32select): Update.
2313 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
2314 * w32proc.c (syms_of_ntproc): Update.
2315 (Vw32_downcase_file_names, Vw32_generate_fake_inodes)
2316 (Vw32_get_true_file_attributes, Vw32_quote_process_args)
2317 (Vw32_start_process_inherit_error_mode)
2318 (Vw32_start_process_share_console)
2319 (Vw32_start_process_show_window, w32_pipe_read_delay): Remove.
2320 (Vsystem_name): Remove declaration.
2321 * w32font.c (syms_of_w32font): Update.
2322 (Vw32_charset_info_alist): Remove.
2323 * w32fns.c (globals_of_w32fns, syms_of_w32fns): Update.
2324 (Vw32_alt_is_meta, Vw32_apps_modifier, Vw32_bdf_filename_alist)
2325 (Vw32_color_map, Vw32_enable_caps_lock, Vw32_enable_num_lock)
2326 (Vw32_enable_palette, Vw32_lwindow_modifier)
2327 (Vw32_pass_alt_to_system, Vw32_pass_lwindow_to_system)
2328 (Vw32_pass_rwindow_to_system, Vw32_phantom_key_code)
2329 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
2330 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
2331 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
2332 (Vx_no_window_manager, Vx_nontext_pointer_shape)
2333 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
2334 (Vx_sensitive_text_pointer_shape)
2335 (Vx_window_horizontal_drag_shape, w32_ansi_code_page)
2336 (w32_enable_synthesized_fonts, w32_mouse_button_tolerance)
2337 (w32_mouse_move_interval)
2338 (w32_pass_extra_mouse_buttons_to_system)
2339 (w32_pass_multimedia_buttons_to_system, w32_quit_key)
2340 (w32_strict_fontnames, w32_strict_painting): Remove.
2341 (Vhourglass_delay, Vmenu_bar_mode, Vtool_bar_mode)
2342 (Vw32_recognize_altgr, Vwindow_system_version)
2343 (w32_num_mouse_buttons, w32_use_visible_system_caret):
2344 Remove declaration.
2345 * w32console.c (syms_of_ntterm): Update.
2346 (w32_use_full_screen_buffer): Remove.
2347 (Vtty_defined_color_alist): Remove declaration.
2348 * w16select.c (syms_of_win16select): Update.
2349 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
2350 * undo.c (syms_of_undo): Update.
2351 (Vundo_outer_limit, Vundo_outer_limit_function)
2352 (undo_inhibit_record_point, undo_limit, undo_strong_limit):
2353 Remove.
2354 * textprop.c (syms_of_textprop): Update.
2355 (Vchar_property_alias_alist, Vdefault_text_properties)
2356 (Vinhibit_point_motion_hooks, Vtext_property_default_nonsticky):
2357 Remove.
2358 * terminal.c (syms_of_terminal): Update.
2359 (Vdelete_terminal_functions, Vring_bell_function): Remove.
2360 * term.c (syms_of_term): Update.
2361 (Vresume_tty_functions, Vsuspend_tty_functions)
2362 (no_redraw_on_reenter, system_uses_terminfo, visible_cursor):
2363 Remove.
2364 * syntax.c (syms_of_syntax): Update.
2365 (Vfind_word_boundary_function_table, multibyte_syntax_as_symbol)
2366 (open_paren_in_column_0_is_defun_start)
2367 (parse_sexp_ignore_comments, parse_sexp_lookup_properties)
2368 (words_include_escapes): Remove.
2369 * search.c (syms_of_search): Update.
2370 (Vinhibit_changing_match_data, Vsearch_spaces_regexp): Remove.
2371 * process.c (syms_of_process): Update.
2372 (Vprocess_adaptive_read_buffering, Vprocess_connection_type)
2373 (delete_exited_processes): Remove.
2374 * print.c (syms_of_print): Update.
2375 (Vfloat_output_format, Vprint_charset_text_property)
2376 (Vprint_circle, Vprint_continuous_numbering, Vprint_gensym)
2377 (Vprint_length, Vprint_level, Vprint_number_table)
2378 (Vstandard_output, print_escape_multibyte)
2379 (print_escape_newlines, print_escape_nonascii, print_quoted):
2380 Remove.
2381 * msdos.c (syms_of_msdos): Update.
2382 (Vdos_unsupported_char_glyph): Remove.
2383 (unibyte_display_via_language_environment): Remove declaration.
2384 * minibuf.c (syms_of_minibuf): Update.
2385 (Vcompletion_regexp_list, Vhistory_add_new_input)
2386 (Vhistory_length, Vminibuffer_completing_file_name)
2387 (Vminibuffer_completion_confirm)
2388 (Vminibuffer_completion_predicate, Vminibuffer_completion_table)
2389 (Vminibuffer_exit_hook, Vminibuffer_help_form)
2390 (Vminibuffer_history_position, Vminibuffer_history_variable)
2391 (Vminibuffer_prompt_properties, Vminibuffer_setup_hook)
2392 (Vread_buffer_function, Vread_expression_map)
2393 (completion_ignore_case, enable_recursive_minibuffers)
2394 (history_delete_duplicates, minibuffer_allow_text_properties)
2395 (minibuffer_auto_raise, read_buffer_completion_ignore_case):
2396 Remove.
2397 * marker.c (syms_of_marker): Update.
2398 (byte_debug_flag): Remove.
2399 * macros.c (syms_of_macros): Update.
2400 (Vexecuting_kbd_macro, executing_kbd_macro_index): Remove.
2401 * lread.c (syms_of_lread): Update.
2402 (Vafter_load_alist, Vbyte_boolean_vars)
2403 (Vbytecomp_version_regexp, Vcurrent_load_list)
2404 (Veval_buffer_list, Vload_file_name, Vload_file_rep_suffixes)
2405 (Vload_history, Vload_path, Vload_read_function)
2406 (Vload_source_file_function, Vload_suffixes, Vobarray)
2407 (Vold_style_backquotes, Vpreloaded_file_list, Vread_circle)
2408 (Vread_symbol_positions_list, Vread_with_symbol_positions)
2409 (Vsource_directory, Vstandard_input, Vuser_init_file, Vvalues)
2410 (force_load_messages, load_convert_to_unibyte)
2411 (load_dangerous_libraries, load_force_doc_strings)
2412 (load_in_progress): Remove.
2413 * keymap.c (syms_of_keymap): Update.
2414 (Vdefine_key_rebound_commands, Vemulation_mode_map_alists)
2415 (Vminibuffer_local_completion_map)
2416 (Vminibuffer_local_filename_completion_map)
2417 (Vminibuffer_local_filename_must_match_map)
2418 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
2419 (Vminibuffer_local_ns_map, Vminor_mode_map_alist)
2420 (Vminor_mode_overriding_map_alist, Vwhere_is_preferred_modifier):
2421 Remove.
2422 * keyboard.c (syms_of_keyboard): Update.
2423 (Vauto_save_timeout, Vcommand_error_function)
2424 (Vcommand_hook_internal, Vdeactivate_mark)
2425 (Vdeferred_action_function, Vdeferred_action_list)
2426 (Vdisable_point_adjustment, Vdouble_click_time)
2427 (Vecho_keystrokes, Venable_disabled_menus_and_buttons)
2428 (Vfunction_key_map, Vglobal_disable_point_adjustment)
2429 (Vhelp_char, Vhelp_event_list, Vhelp_form)
2430 (Vinput_method_function, Vinput_method_previous_message)
2431 (Vkey_translation_map, Vlast_event_frame)
2432 (Vlucid_menu_bar_dirty_flag, Vmenu_bar_final_items)
2433 (Vminibuffer_message_timeout, Voverriding_local_map)
2434 (Voverriding_local_map_menu_flag, Vpost_command_hook)
2435 (Vpre_command_hook, Vprefix_help_command)
2436 (Vsaved_region_selection, Vselect_active_regions)
2437 (Vshow_help_function, Vspecial_event_map, Vsuggest_key_bindings)
2438 (Vthis_command, Vthis_command_keys_shift_translated)
2439 (Vthis_original_command, Vthrow_on_input, Vtimer_idle_list)
2440 (Vtimer_list, Vtool_bar_separator_image_expression, Vtop_level)
2441 (Vtty_erase_char, Vunread_command_events)
2442 (Vunread_input_method_events, Vunread_post_input_method_events)
2443 (auto_save_interval, cannot_suspend, do_mouse_tracking)
2444 (double_click_fuzz, extra_keyboard_modifiers)
2445 (inhibit_local_menu_bar_menus, last_command_event)
2446 (last_input_event, last_nonmenu_event, menu_prompt_more_char)
2447 (menu_prompting, meta_prefix_char, num_input_keys)
2448 (num_nonmacro_input_events, polling_period, unread_command_char):
2449 Remove.
2450 * insdel.c (syms_of_insdel): Update.
2451 (Vcombine_after_change_calls, check_markers_debug_flag): Remove.
2452 * indent.c (syms_of_indent): Update.
2453 (indent_tabs_mode): Remove.
2454 * image.c (syms_of_image): Update.
2455 (Vimage_cache_eviction_delay, Vimage_types)
2456 (Vimagemagick_render_type, Vmax_image_size, Vx_bitmap_file_path)
2457 (cross_disabled_images): Remove.
2458 * fringe.c (syms_of_fringe): Update.
2459 (Vfringe_bitmaps, Voverflow_newline_into_fringe): Remove.
2460 * frame.c (syms_of_frame): Update.
2461 (Vdefault_frame_alist, Vdefault_frame_scroll_bars)
2462 (Vdelete_frame_functions, Vframe_alpha_lower_limit)
2463 (Vmake_pointer_invisible, Vmenu_bar_mode, Vmouse_highlight)
2464 (Vmouse_position_function, Vterminal_frame, Vtool_bar_mode)
2465 (Vx_resource_class, Vx_resource_name, focus_follows_mouse):
2466 Remove.
2467 * fontset.c (syms_of_fontset): Update.
2468 (Valternate_fontname_alist, Vfont_encoding_charset_alist)
2469 (Vfontset_alias_alist, Vignore_relative_composition)
2470 (Votf_script_alist, Vuse_default_ascent)
2471 (Vvertical_centering_font_regexp): Remove.
2472 * font.c (syms_of_font): Update.
2473 (Vfont_encoding_alist, Vfont_log, Vfont_slant_table)
2474 (Vfont_weight_table, Vfont_width_table): Remove.
2475 * fns.c (syms_of_fns): Update.
2476 (Vfeatures, use_dialog_box, use_file_dialog): Remove.
2477 * filelock.c (syms_of_filelock): Update.
2478 (Vtemporary_file_directory): Remove.
2479 * fileio.c (syms_of_fileio): Update.
2480 (Vafter_insert_file_functions, Vauto_save_include_big_deletions)
2481 (Vauto_save_list_file_name, Vauto_save_visited_file_name)
2482 (Vdefault_file_name_coding_system, Vfile_name_coding_system)
2483 (Vfile_name_handler_alist, Vinhibit_file_name_handlers)
2484 (Vinhibit_file_name_operation, Vset_auto_coding_function)
2485 (Vwrite_region_annotate_functions)
2486 (Vwrite_region_annotations_so_far)
2487 (Vwrite_region_post_annotation_function)
2488 (delete_by_moving_to_trash, write_region_inhibit_fsync): Remove.
2489 (Vw32_get_true_file_attributes): Remove declaration.
2490 * eval.c (syms_of_eval): Update.
2491 (Vdebug_ignored_errors, Vdebug_on_error, Vdebug_on_signal)
2492 (Vdebugger, Vinhibit_quit, Vmacro_declaration_function)
2493 (Vquit_flag, Vsignal_hook_function, Vstack_trace_on_error)
2494 (debug_on_next_call, debug_on_quit, debugger_may_continue)
2495 (max_lisp_eval_depth, max_specpdl_size): Remove.
2496 * emacs.c (syms_of_emacs): Update.
2497 (Vafter_init_time, Vbefore_init_time, Vcommand_line_args)
2498 (Vdynamic_library_alist, Vemacs_copyright, Vemacs_version)
2499 (Vinstallation_directory, Vinvocation_directory)
2500 (Vinvocation_name, Vkill_emacs_hook, Vpath_separator)
2501 (Vprevious_system_messages_locale, Vprevious_system_time_locale)
2502 (Vsystem_configuration, Vsystem_configuration_options)
2503 (Vsystem_messages_locale, Vsystem_time_locale, Vsystem_type)
2504 (inhibit_x_resources, noninteractive1): Remove.
2505 * editfns.c (syms_of_editfns): Update.
2506 (Vbuffer_access_fontified_property)
2507 (Vbuffer_access_fontify_functions, Vinhibit_field_text_motion)
2508 (Voperating_system_release, Vsystem_name, Vuser_full_name)
2509 (Vuser_login_name, Vuser_real_login_name): Remove.
2510 * dosfns.c (syms_of_dosfns): Update.
2511 (Vdos_display_scancodes, Vdos_version, Vdos_windows_version)
2512 (dos_codepage, dos_country_code, dos_decimal_point)
2513 (dos_hyper_key, dos_keyboard_layout, dos_keypad_mode)
2514 (dos_super_key, dos_timezone_offset): Remove.
2515 * doc.c (syms_of_doc): Update.
2516 (Vbuild_files, Vdoc_file_name): Remove.
2517 * dispnew.c (syms_of_display): Update.
2518 (Vglyph_table, Vinitial_window_system)
2519 (Vredisplay_preemption_period, Vstandard_display_table)
2520 (Vwindow_system_version, baud_rate, cursor_in_echo_area)
2521 (inverse_video, redisplay_dont_pause, visible_bell): Remove.
2522 * dired.c (syms_of_dired): Update.
2523 (Vcompletion_ignored_extensions): Remove.
2524 (Vw32_get_true_file_attributes): Remove declaration.
2525 * dbusbind.c (syms_of_dbusbind): Update.
2526 (Vdbus_debug, Vdbus_registered_buses)
2527 (Vdbus_registered_objects_table): Remove.
2528 * data.c (syms_of_data): Update.
2529 (Vmost_negative_fixnum, Vmost_positive_fixnum): Remove.
2530 * composite.c (syms_of_composite): Update.
2531 (Vauto_composition_function, Vauto_composition_mode)
2532 (Vcompose_chars_after_function, Vcomposition_function_table):
2533 Remove.
2534 * coding.c (syms_of_coding): Update.
2535 (Vcharset_revision_table, Vcoding_category_list)
2536 (Vcoding_system_alist, Vcoding_system_for_read)
2537 (Vcoding_system_for_write, Vcoding_system_list)
2538 (Vdefault_process_coding_system, Venable_character_translation)
2539 (Vfile_coding_system_alist, Vlast_code_conversion_error)
2540 (Vlast_coding_system_used, Vlatin_extra_code_table)
2541 (Vlocale_coding_system, Vnetwork_coding_system_alist)
2542 (Vprocess_coding_system_alist)
2543 (Vselect_safe_coding_system_function)
2544 (Vstandard_translation_table_for_decode)
2545 (Vstandard_translation_table_for_encode)
2546 (Vtranslation_table_for_input, coding_system_require_warning)
2547 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
2548 (eol_mnemonic_unix, inherit_process_coding_system)
2549 (inhibit_eol_conversion, inhibit_iso_escape_detection)
2550 (inhibit_null_byte_detection): Remove.
2551 * cmds.c (syms_of_cmds): Update.
2552 (Vpost_self_insert_hook): Remove.
2553 * charset.c (syms_of_charset): Update.
2554 (Vcharset_list, Vcharset_map_path, Vcurrent_iso639_language)
2555 (inhibit_load_charset_map): Remove.
2556 * character.c (syms_of_character): Update.
2557 (Vauto_fill_chars, Vchar_direction_table, Vchar_script_table)
2558 (Vchar_width_table, Vprintable_chars)
2559 (Vscript_representative_chars, Vtranslation_table_vector)
2560 (Vunicode_category_table): Remove.
2561 * ccl.c (syms_of_ccl): Update.
2562 (Vcode_conversion_map_vector, Vfont_ccl_encoder_alist)
2563 (Vtranslation_hash_table_vector): Remove.
2564 * category.c (syms_of_category): Update.
2565 (Vword_combining_categories, Vword_separating_categories): Remove.
2566 * callproc.c (syms_of_callproc): Update.
2567 (Vconfigure_info_directory, Vdata_directory, Vdoc_directory)
2568 (Vexec_directory, Vexec_path, Vexec_suffixes)
2569 (Vinitial_environment, Vprocess_environment)
2570 (Vshared_game_score_directory, Vshell_file_name): Remove.
2571 * callint.c (syms_of_callint): Update.
2572 (Vcommand_debug_status, Vcommand_history, Vcurrent_prefix_arg)
2573 (Vmark_even_if_inactive, Vmouse_leave_buffer_hook): Remove.
2574 * bytecode.c (syms_of_bytecode): Update.
2575 (Vbyte_code_meter, byte_metering_on): Remove.
2576 * buffer.c (syms_of_buffer): Update.
2577 (Vafter_change_functions, Vbefore_change_functions)
2578 (Vchange_major_mode_hook, Vfirst_change_hook)
2579 (Vinhibit_read_only, Vkill_buffer_query_functions)
2580 (Vtransient_mark_mode, inhibit_modification_hooks): Remove.
2581 * alloc.c (syms_of_alloc): Update.
2582 (Vgc_cons_percentage, Vgc_elapsed, Vmemory_full)
2583 (Vmemory_signal_data, Vpost_gc_hook, Vpurify_flag)
2584 (cons_cells_consed, floats_consed, garbage_collection_messages)
2585 (gc_cons_threshold, gcs_done, intervals_consed)
2586 (misc_objects_consed, pure_bytes_used, string_chars_consed)
2587 (strings_consed, symbols_consed, vector_cells_consed): Remove.
2588
2589 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
2590 (DEFVAR_INT): Assume global is in `globals'.
2591 * alloc.c (globals): Define.
2592
2593 2011-01-18 Tom Tromey <tromey@redhat.com>
2594
2595 * image.c (Vimagemagick_render_type): Remove redundant
2596 definition.
2597
2598 2011-01-18 Tom Tromey <tromey@redhat.com>
2599
2600 * xdisp.c (emacs_scroll_step): Rename from scroll_step.
2601 (try_scrolling): Rename argument to 'arg_scroll_conservatively'.
2602 (redisplay_window): Update.
2603 (syms_of_xdisp): Update.
2604
2605 2011-01-18 Tom Tromey <tromey@redhat.com>
2606
2607 * gtkutil.h (x_gtk_use_old_file_dialog, x_gtk_show_hidden_files)
2608 (x_gtk_file_dialog_help_text, x_gtk_whole_detached_tool_bar):
2609 Declare.
2610 * gtkutil.c (xg_uses_old_file_dialog):
2611 (xg_get_file_with_chooser):
2612 (xg_tool_bar_detach_callback): Don't redeclare globals.
2613
2614 2011-01-18 Tom Tromey <tromey@redhat.com>
2615
2616 * lisp.h (DEFVAR_BUFFER_DEFAULTS): New macro.
2617 * buffer.c (syms_of_buffer): Use DEFVAR_BUFFER_DEFAULTS.
2618
2619 2011-01-18 Paul Eggert <eggert@cs.ucla.edu>
2620
2621 * lisp.h (DECL_ALIGN): Define if HAVE_ATTRIBUTE_ALIGNED, not if
2622 defined __GNUC__. ../configure now checks for this GCC feature,
2623 which is now also supported by IBM and Oracle compilers.
2624 (USE_LSB_TAG) [defined DECL_ALIGN]: Also define if defined __sun,
2625 since Solaris malloc returns mult-of-8.
2626
2627 2011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
2628
2629 * image.c (syms_of_image): Don't access XSYMBOL's internals directly.
2630
2631 2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
2632
2633 Give a name FLOAT_TO_STRING_BUFSIZE to the constant 350.
2634 * lisp.h (FLOAT_TO_STRING_BUFSIZE): New macro.
2635 * data.c (Fnumber_to_string): Use it.
2636 * print.c (float_to_string, print_object): Likewise.
2637
2638 Include <unistd.h> unilaterally.
2639 * alloc.c, atimer.c, buffer.c, callproc.c, dired.c, dispnew.c, doc.c:
2640 * doprnt.c, editfns.c, emacs.c, fileio.c, filelock.c, fns.c:
2641 * getloadavg.c, getpagesize.h, gmalloc.c, image.c, keyboard.c:
2642 * lread.c, process.c, process.h, ralloc.c, regex.c, sysdep.c:
2643 * systty.h, term.c, termcap.c, xfns.c, xrdb.c, xselect.c, xsmfns.c:
2644 * xterm.c:
2645 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
2646 unistd.h is always present now, possibly supplied by gnulib.
2647
2648 * mktime.c: Remove; moving to ../lib.
2649
2650 Use gnulib's mktime module.
2651 * deps.mk (mktime.o): Remove rule.
2652
2653 Use gnulib's ftoastr module.
2654 * print.c: Include ftoastr.h.
2655 (FLT_RADIX, DBL_MANT_DIG, DBL_DIG, DBL_MIN, DOUBLE_DIGITS_BOUND):
2656 Remove; no longer needed.
2657 (float_to_string): Use dtoastr rather than rolling our own code,
2658 which had an off-by-one bug on non-IEEE hosts.
2659
2660 Automate syncing from gnulib.
2661 * Makefile.in (lib): New macro.
2662 (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib.
2663 ($(lib)/libgnu.a): New rule.
2664 (temacs$(EXEEXT)): Also link $(lib)/libgnu.a.
2665
2666 * xfns.c (x_real_positions): Fix signedness of local var 'ign'.
2667 XGetGeometry wants unsigned int *, not int *, for its last 4 args,
2668 so change the type of 'ign' to unsigned int from int.
2669
2670 * regex.c (analyse_first): Remove unreachable 'continue' statement.
2671
2672 * xterm.h (struct x_display_info): Remove stray semicolon.
2673 The extra semicolon didn't conform to the C standard.
2674 Problem reported by Sun cc.
2675
2676 * lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics.
2677 These changes make compilation easier to follow with Sun cc.
2678 (ARRAY_MARK_FLAG): Make it signed, so that it can be assigned to
2679 EMACS_INT values without provoking overflow diagnostics.
2680 (PSEUDOVECTOR_FLAG): Likewise, for consistency.
2681 (XSET) [! USE_LSB_TAG]: Use unsigned left shift to avoid overflow
2682 diagnostic with signed left shift.
2683
2684 * fileio.c (make_temp_name): Remove unreachable code.
2685
2686 * fontset.c (free_realized_fontset): Mark unreachable code with if (0).
2687 Previously it was marked by preceding it with "return;", but
2688 Sun cc complains about this.
2689
2690 * coding.c (decode_coding_emacs_mule): Remove unreachable code.
2691 This is a typo left over from 2009-03-06T07:51:52Z!handa@m17n.org,
2692 which fixed Bug#2370. Caught by Sun cc.
2693
2694 2011-01-15 Martin Rudalics <rudalics@gmx.at>
2695
2696 * window.c (inhibit_point_swap): New variable.
2697 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping
2698 point this time.
2699 (Fset_window_configuration): Set inhibit_point_swap to 1 instead
2700 of setting selected_window to nil (Bug#7728).
2701
2702 2011-01-11 Tassilo Horn <tassilo@member.fsf.org>
2703
2704 * image.c (imagemagick_load_image, Finit_image_library):
2705 Free intermediate image after creating a MagickWand from it.
2706 Terminate MagickWand environment after image loading.
2707
2708 2011-01-10 Michael Albinus <michael.albinus@gmx.de>
2709
2710 * dbusbind.c (Fdbus_register_service): Raise an error in case of
2711 unexpected return values.
2712 (Fdbus_register_method): Remove connection initialization.
2713
2714 2011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
2715
2716 * dbusbind.c (QCdbus_request_name_allow_replacement): New symbol;
2717 used by Fdbus_register_service.
2718 (QCdbus_request_name_replace_existing): Likewise.
2719 (QCdbus_request_name_do_not_queue): Likewise.
2720 (QCdbus_request_name_reply_primary_owner): Likewise.
2721 (QCdbus_request_name_reply_in_queue): Likewise.
2722 (QCdbus_request_name_reply_exists): Likewise.
2723 (QCdbus_request_name_reply_already_owner): Likewise.
2724 (Fdbus_register_service): New function.
2725 (Fdbus_register_method): Use Fdbus_register_service to do the name
2726 registration.
2727 (syms_of_dbusbind): Add symbols dbus-register-service,
2728 :allow-replacement, :replace-existing, :do-not-queue,
2729 :primary-owner, :existing, :in-queue and :already-owner.
2730
2731 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
2732
2733 * gtkutil.c (update_frame_tool_bar): Don't advance tool-bar index
2734 when removing extra buttons.
2735
2736 2011-01-08 Chong Yidong <cyd@stupidchicken.com>
2737
2738 * fns.c (Fyes_or_no_p): Doc fix.
2739
2740 2011-01-08 Andreas Schwab <schwab@linux-m68k.org>
2741
2742 * fns.c (Fyes_or_no_p): Add usage.
2743
2744 2011-01-08 Glenn Morris <rgm@gnu.org>
2745
2746 * makefile.w32-in ($(EMACS)):
2747 * Makefile.in (emacs$(EXEEXT)): -batch implies -q.
2748
2749 * xdisp.c (syms_of_xdisp) <Qrisky_local_variable>: Move from here...
2750 * emacs.c (syms_of_emacs) <Qrisky_local_variable>: ...to here.
2751
2752 2011-01-07 Andreas Schwab <schwab@linux-m68k.org>
2753
2754 * image.c (imagemagick_load_image): Fix some resource leaks and
2755 error handling.
2756
2757 2011-01-07 Chong Yidong <cyd@stupidchicken.com>
2758
2759 * fns.c (Fyes_or_no_p): Accept format string args.
2760
2761 2011-01-07 Glenn Morris <rgm@gnu.org>
2762
2763 * emacs.c (no_site_lisp): New int.
2764 (USAGE1): Add --no-site-lisp, mention -Q uses it.
2765 (main): Set no_site_lisp.
2766 (standard_args): Add --no-site-lisp.
2767 * lisp.h (no_site_lisp): New int.
2768 * lread.c (init_lread): If no_site_lisp, don't re-add site-lisp
2769 directories to Vload_path.
2770
2771 2011-01-05 Andreas Schwab <schwab@linux-m68k.org>
2772
2773 * alloc.c (mark_stack): Use __builtin_unwind_init if available.
2774
2775 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
2776
2777 * dbusbind.c (Fdbus_register_method): Add optional parameter
2778 dont_register_service. Updated docstring accordingly.
2779
2780 2011-01-04 Glenn Morris <rgm@gnu.org>
2781
2782 * emacs.c (emacs_copyright): Update short copyright year to 2011.
2783
2784 2011-01-03 Eli Zaretskii <eliz@gnu.org>
2785
2786 * image.c (png_jmpbuf): Remove definition.
2787 (my_png_error, png_load): Don't use png_jmpbuf.
2788
2789 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2790
2791 * keyboard.c (Vselect_active_regions): Doc fix. (Bug#7702)
2792
2793 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2794
2795 * image.c <Qlibpng_version>: New variable.
2796 (syms_of_image): Intern and staticpro it. Set its value to the
2797 version of PNG library we were compiled with.
2798 (my_png_error, png_load): Avoid GCC warnings about direct access
2799 to png_ptr->jmpbuf. (Bug#7716)
2800 (png_jmpbuf): New macro.
2801 (my_png_error, png_load): Use it instead of #ifdef'ing according
2802 to PNG_LIBPNG_VER_MAJOR and PNG_LIBPNG_VER_MINOR.
2803
2804 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
2805
2806 * .gdbinit (xgetptr): Fix the union+lsb case.
2807 (xbacktrace): Fix the union case.
2808
2809 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
2810
2811 * window.c (Fmove_to_window_line): Avoid abort when called in a buffer
2812 different from selected-window's.
2813
2814 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2815
2816 * keyboard.c (parse_menu_item): Prepend " " to the key sequence
2817 equivalent of a menu item when the key sequence is given by the
2818 `:keys' attribute. (Bug#7662)
2819
2820 * xdisp.c (Fformat_mode_line): Doc fix: no need to state that only
2821 the basic faces are supported.
2822
2823 2011-01-02 Jan Djärv <jan.h.d@swipnet.se>
2824
2825 * xterm.c (x_check_fullscreen): Fix pixel/character mixup.
2826
2827 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2828
2829 * xdisp.c (Fformat_mode_line): Fix last change.
2830
2831 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
2832
2833 * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic
2834 faces (Bug#7587).
2835
2836 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2837
2838 * fileio.c (Fexpand_file_name): One more doc fix.
2839
2840 2011-01-01 Chong Yidong <cyd@stupidchicken.com>
2841
2842 * gtkutil.c (xg_get_tool_bar_widgets): Use NULL for a missing
2843 image or label in the container.
2844 (xg_make_tool_item): Replace VERT_ONLY arg with HORIZ, TEXT_IMAGE.
2845 (xg_show_toolbar_item): Function deleted.
2846 (xg_tool_item_stale_p): New function.
2847 (update_frame_tool_bar): Calculate tool-bar style once per call.
2848 Instead of hiding text labels, omit them. Don't use
2849 xg_show_toolbar_item; create new GtkToolItems from scratch if
2850 necessary, instead of trying to re-use them. This avoids an
2851 annoying animation when changing tool-bars.
2852
2853 2010-12-31 Jan Djärv <jan.h.d@swipnet.se>
2854
2855 * nsfns.m (ns_set_name_as_filename): Always use buffer name for
2856 title and buffer filename only for RepresentedFilename.
2857 Handle bad UTF-8 in buffer name (Bug#7517).
2858
2859 2010-12-30 Jan Djärv <jan.h.d@swipnet.se>
2860
2861 * coding.h (ENCODE_UTF_8): Remove "Used by ..." comment.
2862
2863 * nsfns.m (ns_set_name_iconic): Remove.
2864 (ns_set_name_internal): New function (Bug#7517).
2865 (Vicon_title_format): Extern declare.
2866 (ns_set_name): Call ns_set_name_internal.
2867 (x_explicitly_set_name): Remove call to ns_set_name_iconic.
2868 (x_implicitly_set_name): Ditto.
2869 (x_set_title): Remove commet about EXPLICIT. Call ns_set_name_internal.
2870 (ns_set_name_as_filename): Encode name with ENCODE_UTF_8 (Bug#7517).
2871
2872 2010-12-29 Štěpán Němec <stepnem@gmail.com> (tiny change)
2873
2874 * window.c (syms_of_window): Add missing defsubr for
2875 window-use-time.
2876
2877 2010-12-28 Andreas Schwab <schwab@linux-m68k.org>
2878
2879 * xterm.h (x_alloc_lighter_color_for_widget): Restore declaration.
2880 * xterm.c (x_alloc_lighter_color_for_widget): Restore.
2881
2882 2010-12-27 Andreas Schwab <schwab@linux-m68k.org>
2883
2884 * buffer.c: Remove unused declarations.
2885 * buffer.h: Likewise.
2886 * charset.h: Likewise.
2887 * composite.h: Likewise.
2888 * dispextern.h: Likewise.
2889 * dispnew.c: Likewise.
2890 * font.h: Likewise.
2891 * fontset.c: Likewise.
2892 * fontset.h: Likewise.
2893 * intervals.h: Likewise.
2894 * keymap.h: Likewise.
2895 * lisp.h: Likewise.
2896 * syntax.c: Likewise.
2897 * syntax.h: Likewise.
2898 * termhooks.h: Likewise.
2899 * window.h: Likewise.
2900 * xsettings.h: Likewise.
2901 * xterm.c: Likewise.
2902 * xterm.h: Likewise.
2903
2904 * chartab.c (sub_char_table_ref): Make static.
2905 * dispnew.c (line_hash_code, required_matrix_height)
2906 (required_matrix_width): Likewise.
2907 * eval.c (interactive_p, apply_lambda): Likewise.
2908 * fns.c (string_make_multibyte, copy_hash_table, hash_clear):
2909 Likewise.
2910 * font.c (QCadstyle, QCregistry, font_make_spec)
2911 (font_parse_fcname, font_encode_char, font_at): Likewise.
2912 * frame.c (x_frame_get_arg): Likewise.
2913 * keymap.c (get_keyelt): Likewise.
2914 * lread.c (read_filtered_event): Likewise.
2915 * print.c (write_string_1): Likewise.
2916 * window.c (delete_window, window_height, window_width)
2917 (foreach_window): Likewise.
2918 * xrdb.c (x_get_customization_string, x_get_resource): Likewise.
2919 * xterm.c (x_scroll_bar_clear, xembed_set_info)
2920 (xembed_send_message): Likewise.
2921
2922 * eval.c (run_hook_list_with_args): Delete.
2923 * font.c (font_unparse_gtkname, font_update_lface): Likewise.
2924 * terminal.c (get_terminal_param): Likewise.
2925 * xterm.c (x_alloc_lighter_color_for_widget): Likewise.
2926
2927 * scroll.c: Fix comment.
2928
2929 * dispnew.c (add_window_display_history)
2930 (add_frame_display_history, glyph_row_slice_p)
2931 (find_glyph_row_slice, flush_stdout)
2932 (check_matrix_pointer_lossage, matrix_row)
2933 (check_matrix_invariants, check_window_matrix_pointers)
2934 (check_matrix_pointers, window_to_frame_vpos)
2935 (window_to_frame_hpos): Prototize.
2936 * textprop.c (erase_properties): Likewise.
2937
2938 2010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
2939
2940 * print.c (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): Remove.
2941 (print_preprocess): Fix handling of uninterned symbols in last change.
2942
2943 * print.c (print, print_preprocess, print_object): Use a hash table
2944 rather than a linear table for Vprint_number_table.
2945
2946 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
2947
2948 * frame.c (focus_follows_mouse): Default to 0 (Bug#7269).
2949
2950 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
2951
2952 * keyboard.c (Vtool_bar_separator_image_expression): New variable.
2953 (parse_tool_bar_item): Use it to obtain image separators for
2954 displays not using native tool-bar separators.
2955
2956 * xdisp.c (build_desired_tool_bar_string): Don't handle separators
2957 specially, since this is now done in parse_tool_bar_item.
2958
2959 2010-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
2960
2961 Minor clean up to silence some gcc warnings.
2962 * window.c (Fset_window_buffer):
2963 * xterm.c (x_set_frame_alpha): Restructure code to silence
2964 compiler warning.
2965 (handle_one_xevent): Remove unused var `p'.
2966 (do_ewmh_fullscreen): Remove unused var `lval'.
2967 (xembed_set_info): Remove unused var `atom'.
2968 * textprop.c (Fremove_list_of_text_properties): Add braces to silence
2969 compiler warning.
2970 * fontset.c (fontset_id_valid_p, dump_fontset):
2971 * ftfont.c (ftfont_drive_otf): Modernize k&r declaration.
2972 * eval.c (Feval, Ffuncall): Avoid unneeded gotos.
2973 * dispnew.c (update_frame, update_frame_1): Compile the `do_pause'
2974 label only when it's used.
2975 * image.c (x_create_bitmap_from_xpm_data):
2976 * dispextern.h (x_create_bitmap_from_xpm_data): Use const char** like
2977 its callers.
2978 * coding.c (detect_coding_utf_16): Remove unused vars `src_base' and
2979 `consumed_chars'.
2980 (DECODE_EMACS_MULE_21_COMPOSITION): Remove unused var `charbuf_base'.
2981 (decode_coding_emacs_mule): Remove unused label `retry'.
2982 (detect_eol): Add parens to silence compiler warning.
2983 * alloc.c (bytes_used_when_reconsidered): Move to the #ifdef where
2984 it's used to silence the compiler.
2985 (make_number): Modernize k&r declaration.
2986 (mark_char_table): Add parens to silence compiler warning.
2987
2988 2010-12-17 Chong Yidong <cyd@stupidchicken.com>
2989
2990 * keyboard.c (parse_tool_bar_item): Allow menu separators in
2991 tool-bar maps.
2992 (menu_separator_name_p): New function, from gtkutil.c.
2993 (separator_names): Move from gtkutil.c.
2994
2995 * keyboard.h (menu_separator_name_p): Add prototype.
2996
2997 * gtkutil.c (XG_BIN_CHILD): New macro.
2998 (xg_get_menu_item_label, xg_update_menubar)
2999 (xg_update_menu_item, xg_tool_bar_menu_proxy)
3000 (xg_show_toolbar_item, update_frame_tool_bar): Use it.
3001 (separator_names, xg_separator_p): Move to keyboard.c.
3002 (create_menus, xg_update_submenu, update_frame_tool_bar):
3003 Use menu_separator_name_p.
3004
3005 * nsmenu.m (name_is_separator): Function deleted.
3006 (addItemWithWidgetValue): Use menu_separator_name_p.
3007
3008 * w32menu.c (name_is_separator): Function deleted.
3009 (add_menu_item): Use menu_separator_name_p.
3010
3011 2010-12-16 Jan Djärv <jan.h.d@swipnet.se>
3012
3013 * nsterm.m (ns_draw_window_cursor): If the cursor color is the
3014 same as the background, use the face forground as cursor.
3015
3016 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3017
3018 * fileio.c (Fexpand_file_name): Doc fix. (Bug#7617)
3019
3020 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3021
3022 * xdisp.c (string_pos_nchars_ahead, c_string_pos)
3023 (face_before_or_after_it_pos, next_element_from_string)
3024 (next_element_from_c_string, produce_stretch_glyph): Remove unused
3025 calculations of maximum string length before calling
3026 string_char_and_length and STRING_CHAR_AND_LENGTH.
3027 (string_char_and_length): Update commentary: MAXLEN is no longer
3028 needed.
3029
3030 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
3031
3032 * keyboard.c (kbd_buffer_get_event): Construct SAVE_SESSION_EVENT
3033 as (Qsave_session arg).
3034
3035 * xsmfns.c (smc_interact_CB): Set arg to Qnil.
3036 (smc_die_CB): Make an event with arg Qt.
3037 (Fhandle_save_session): If event has Qt as argument,
3038 call Fkill_emacs (Bug#7552).
3039
3040 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3041
3042 * buffer.c (transient-mark-mode): Doc fix (Bug#7465).
3043
3044 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
3045
3046 * xsmfns.c (smc_die_CB): Call Fkill_emacs (Bug#7552).
3047
3048 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3049
3050 * dispextern.h (struct it): New member overlay_strings_charpos.
3051
3052 * xdisp.c (next_overlay_string, load_overlay_strings): Record the
3053 charpos where we computed n_overlay_strings.
3054 (next_overlay_string): Load overlay strings at recorded position,
3055 which may not be the same as the iterator's charpos (Bug#7016).
3056
3057 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3058
3059 * xdisp.c (try_scrolling): Avoid infloop if the first line is
3060 obscured due to a vscroll (Bug#7537).
3061
3062 2010-12-13 Jan Djärv <jhd@zeplinf.localdomain>
3063
3064 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
3065
3066 * nsterm.m (x_set_window_size, windowWillResize, initFrameFromEmacs):
3067 Use FRAME_TOOLBAR_HEIGHT.
3068 (x_set_offset): Handle XNegative and YNegative in
3069 f->size_hint_flags (Bug#7510).
3070
3071 2010-12-11 Eli Zaretskii <eliz@gnu.org>
3072
3073 * w32fns.c (Fx_show_tip): Call try_window with last argument
3074 TRY_WINDOW_IGNORE_FONTS_CHANGE. Delete the TODO ifdef: problem
3075 solved. Round up the tip height to an integral multiple of the
3076 frame's line height. Add FRAME_COLUMN_WIDTH to the tip width.
3077 (Bug#7398)
3078
3079 2010-12-08 Glenn Morris <rgm@gnu.org>
3080
3081 * fileio.c (Fverify_visited_file_modtime): Default to current buffer.
3082
3083 2010-12-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3084
3085 * xml.c (parse_region): Ignore blank HTML nodes.
3086 (make_dom): Return CDATA sections (like <style>foo</style>) as
3087 text nodes.
3088
3089 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3090
3091 * lread.c (read1): Allow newstyle unquote outside of backquote.
3092 Disallow old-style backquotes inside new-style backquotes.
3093 Don't count unquotes to figure out when we're "syntactically inside
3094 but semantically outside of a backquote" any more.
3095 Extend the restriction no-unescaped-commas-and-backquotes-in-symbols
3096 to all contexts.
3097
3098 2010-12-05 Chong Yidong <cyd@stupidchicken.com>
3099
3100 * process.c: Remove checks for HAVE_SYS_IOCTL_H (Bug#7484).
3101
3102 2010-12-04 Andreas Schwab <schwab@linux-m68k.org>
3103
3104 * Makefile.in (M_FILE): Substitute @M_FILE@ instead of @machfile@.
3105 (S_FILE): Substitute @S_FILE@ instead of @opsysfile@.
3106 * m/arm.h, m/sh3.h, m/xtensa.h: Remove files.
3107
3108 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
3109
3110 * lisp.h (union Lisp_Object): Explicitly declare signedness of
3111 bit-field.
3112 (XINT): Remove variant for EXPLICIT_SIGN_EXTEND.
3113 * m/alpha.h (EXPLICIT_SIGN_EXTEND): Don't define.
3114 * m/amdx86-64.h (EXPLICIT_SIGN_EXTEND): Likewise.
3115 * m/ia64.h (EXPLICIT_SIGN_EXTEND): Likewise.
3116 * m/ibms390.h (EXPLICIT_SIGN_EXTEND): Likewise.
3117 * m/ibms390x.h (EXPLICIT_SIGN_EXTEND): Likewise.
3118 * m/iris4d.h (EXPLICIT_SIGN_EXTEND): Likewise.
3119 * m/m68k.h (EXPLICIT_SIGN_EXTEND): Likewise.
3120 * m/sparc.h (EXPLICIT_SIGN_EXTEND): Likewise.
3121 * m/template.h (EXPLICIT_SIGN_EXTEND): Likewise.
3122 * m/hp800.h: Remove file.
3123 * m/mips.h: Remove file.
3124
3125 2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
3126
3127 * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background
3128 with cursor color and draw a rectangle around the image (Bug#7412).
3129
3130 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
3131
3132 * frame.c (x_set_font): Remove unused variable.
3133
3134 2010-12-02 Jan Djärv <jan.h.d@swipnet.se>
3135
3136 * nsmenu.m (update_frame_tool_bar): Remove NSLog on invalid image.
3137
3138 * nsterm.m (ns_draw_glyph_string): Switch fore- and background if
3139 drawing text under filled box cursor (Bug#7479).
3140
3141 2010-11-27 Kenichi Handa <handa@m17n.org>
3142
3143 * charset.c (emacs_mule_charset): Make it an array of charset ID;
3144 i.e. integer.
3145 (Fdefine_charset_internal): Adjust for the above change.
3146 (init_charset_once): Likewise.
3147
3148 * charset.h (emacs_mule_charset): Adjust the prototype.
3149 Delete duplicated extern.
3150
3151 * coding.c (emacs_mule_char): Adjust for the change of
3152 emacs_mule_charset.
3153
3154 * lread.c (read_emacs_mule_char): Adjust for the change of
3155 emacs_mule_charset.
3156
3157 2010-11-27 Eli Zaretskii <eliz@gnu.org>
3158
3159 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
3160 of w32api >= 3.15. (Bug#6989) (Bug#7452)
3161
3162 2010-11-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3163
3164 * alloc.c (mark_terminals): Ensure that the image cache is marked
3165 even if the terminal object was marked earlier (Bug#6301).
3166
3167 2010-11-21 Chong Yidong <cyd@stupidchicken.com>
3168
3169 * editfns.c (Fbyte_to_string): Signal an error arg is not a byte.
3170
3171 2010-11-27 Jan Djärv <jan.h.d@swipnet.se>
3172
3173 * gtkutil.c (menubar_map_cb): New function (Bug#7425).
3174 (xg_update_frame_menubar): Connect signal map to menubar_map_cb.
3175 Use 23 as menubar height if 0. (Bug#7425).
3176
3177 2010-11-26 Eli Zaretskii <eliz@gnu.org>
3178
3179 * xdisp.c (set_message_1): Force paragraph direction in echo area
3180 be left-to-right.
3181
3182 * keyboard.c (make_lispy_position): Put a meaningful value in yret
3183 when the click is on the header or mode line.
3184
3185 2010-11-25 Eli Zaretskii <eliz@gnu.org>
3186
3187 * xdisp.c (set_cursor_from_row): Don't forget to consider the
3188 `cursor' property of the first character in overlay strings.
3189 (Bug#7474) (Bug#7481)
3190
3191 2010-11-24 Jan Djärv <jan.h.d@swipnet.se>
3192
3193 * nsterm.m (NSLeftControlKeyMask, NSLeftCommandKeyMask)
3194 (NSLeftAlternateKeyMask): New defines.
3195 (keyDown): Parse left and right keys separately (Bug#7458).
3196 Compare Left key masks exactly (Bug#7458).
3197
3198 2010-11-23 Eli Zaretskii <eliz@gnu.org>
3199
3200 * intervals.c (temp_set_point_both): Define before calling, to
3201 avoid GCC warnings.
3202
3203 2010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
3204
3205 * nsmenu.m: Use #include <config.h> instead of "config.h".
3206
3207 * term.c (Qglyphless_char,last_glyphless_glyph_frame)
3208 (last_glyphless_glyph_face_id, last_glyphless_glyph_merged_face_id):
3209 Move declarations ...
3210 * lisp.h (Qglyphless_char,last_glyphless_glyph_frame)
3211 (last_glyphless_glyph_face_id, last_glyphless_glyph_merged_face_id):
3212 ... here.
3213
3214 * emacs.c (gdb_use_union, gdb_valbits,gdb_gctypebits)
3215 (gdb_data_seg_bits, gdb_array_mark_flag, PVEC_FLAG)
3216 (gdb_pvec_type):
3217 * print.c (print_output_debug_flag):
3218 * lisp.h (debug_print): Mark as EXTERNALLY_VISIBLE.
3219 (safe_debug_print): New declaration.
3220
3221 * xterm.c:
3222 * systty.h:
3223 * sound.c: Include <sys/ioctl.h> unconditionally.
3224
3225 2010-11-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3226
3227 * alloc.c (mark_maybe_object): Return early if given a Lisp
3228 integer (Bug#6301).
3229
3230 2010-11-21 Ken Brown <kbrown@cornell.edu>
3231
3232 * sheap.c (STATIC_HEAP_SIZE): Revert previous change.
3233
3234 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
3235
3236 * nsterm.m (ns_right_command_modifier, ns_right_control_modifier):
3237 Define (Bug#7458).
3238 (NSRightCommandKeyMask, NSRightControlKeyMask): Define (Bug#7458).
3239 (EV_MODIFIERS): Check for NSRightCommandKeyMask and
3240 NSRightControlKeyMask also (Bug#7458).
3241 (keyDown): Ditto (Bug#7458).
3242 (syms_of_nsterm): Defvar ns-right-command-modifier and
3243 ns-right-control-modifier (Bug#7458).
3244
3245 2010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
3246
3247 * sysdep.c (sys_subshell): Remove SET_EMACS_PRIORITY.
3248 * emacs.c (emacs_priority, syms_of_emacs): Remove emacs_priority.
3249
3250 * intervals.h (temp_set_point, temp_set_point_both):
3251 * buffer.h (offset_intervals, copy_intervals): Remove INLINE.
3252
3253 2010-11-20 Ken Brown <kbrown@cornell.edu>
3254
3255 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
3256
3257 2010-11-20 Eli Zaretskii <eliz@gnu.org>
3258
3259 * term.c (produce_glyphless_glyph): Use \uNNNN, \UNNNNNN, or
3260 \xNNNNNN for hex-code display of glyphless characters.
3261
3262 2010-11-20 Jan Djärv <jan.h.d@swipnet.se>
3263
3264 * gtkutil.c (xg_make_tool_item): Take vert_only as argument.
3265 Set important to ! vert_only.
3266 (xg_show_toolbar_item): Don't show label horizontally if
3267 tool item isn't important.
3268 (update_frame_tool_bar): Get TOOL_BAR_ITEM_VERT_ONLY and pass it to
3269 xg_make_tool_item, or update important on existing tool item.
3270
3271 * keyboard.c (QCvert_only): New variable.
3272 (parse_tool_bar_item): Check for QCvert_only.
3273 (syms_of_keyboard): Initialize QCvert_only.
3274
3275 * dispextern.h (tool_bar_item_idx): Add TOOL_BAR_ITEM_VERT_ONLY.
3276
3277 2010-11-20 Eli Zaretskii <eliz@gnu.org>
3278
3279 * msdos.c (dos_rawgetc): Use gen_help_event, instead of doing the
3280 same in-line.
3281
3282 2010-11-20 Andreas Schwab <schwab@linux-m68k.org>
3283
3284 * xfaces.c (lookup_face): Make static.
3285 * dispnew.c (copy_row_except_pointers): Likewise.
3286 * syntax.c (dec_bytepos): Likewise.
3287 (inc_bytepos): Remove.
3288 * dispextern.h (lookup_face): Remove declaration.
3289
3290 2010-11-19 Eli Zaretskii <eliz@gnu.org>
3291
3292 * xdisp.c (set_cursor_from_row): Display cursor after all the
3293 glyphs that come from an overlay. Don't overstep the last glyph
3294 when skipping glyphs from an overlay. (Bug#6687)
3295
3296 2010-11-18 Dan Nicolaescu <dann@ics.uci.edu>
3297
3298 * alloc.c (refill_memory_reserve): Move declaration ...
3299 * lisp.h (refill_memory_reserve): ... here.
3300
3301 * strftime.c (_strftime_copytm): Add declaration.
3302
3303 * callproc.c (syms_of_callproc): Use intern_c_string.
3304
3305 Move declarations from .c files to .h files.
3306 * process.c (timers_run):
3307 * minibuf.c (quit_char):
3308 * lread.c (read_emacs_mule_char):
3309 * keyboard.c (minibuf_level, message_enable_multibyte)
3310 (pending_malloc_warning):
3311 * insdel.c (Vselect_active_regions, Vsaved_region_selection)
3312 (Qonly): Remove declarations.
3313 * lisp.h (pending_malloc_warning, Vsaved_region_selection)
3314 (Vselect_active_regions):
3315 * keyboard.h (timers_run): Add declarations.
3316
3317 * strftime.c (my_strftime_gmtime_r, my_strftime_localtime_r)
3318 (tm_diff): Convert definitions to standard C.
3319 (extra_args_spec_iso): Remove, unused.
3320
3321 2010-11-18 Jan Djärv <jan.h.d@swipnet.se>
3322
3323 * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
3324
3325 * config.in (HAVE_G_TYPE_INIT): New symbol.
3326
3327 2010-11-18 Eli Zaretskii <eliz@gnu.org>
3328
3329 * lread.c (Fload): Mention `load-in-progress' and
3330 `load-file-name'. (Bug#7346)
3331
3332 * keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses.
3333 (kbd_buffer_store_event_hold, kbd_buffer_get_event)
3334 (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef
3335 subprocesses. Use buffer_free only ifdef subprocesses.
3336
3337 * process.c (init_process) [subprocesses]: Init kbd_is_on_hold in
3338 the subprocesses version, not in the non-subprocesses one.
3339
3340 * Makefile.in: Don't use ## comment, it breaks the MSDOS build.
3341
3342 2010-11-17 Eli Zaretskii <eliz@gnu.org>
3343
3344 * xdisp.c (set_cursor_from_row): Fix cursor positioning in empty
3345 lines on text-mode terminals. (bug#7417)
3346
3347 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
3348
3349 * xterm.c (get_current_wm_state): Rename from get_current_vm_state.
3350 (do_ewmh_fullscreen, x_handle_net_wm_state): Update callers.
3351
3352 2010-11-17 Kenichi Handa <handa@m17n.org>
3353
3354 * coding.c (Fset_terminal_coding_system_internal): Fix previous
3355 change (set charset-ID list instead of charset-symbol list).
3356
3357 2010-11-16 Chong Yidong <cyd@stupidchicken.com>
3358
3359 * keyboard.c (make_lispy_position): For text area clicks, record Y
3360 pixel position relative to the text area, excluding header line.
3361 Also change X and Y to Lisp_Objects, not pointers; don't return
3362 coordinate values via pointers. Pass ON_TEXT_AREA coordinate to
3363 buffer_posn_from_coords counting from the start of the text area.
3364 (Fposn_at_x_y, make_lispy_event): Callers changed.
3365
3366 * window.c (coordinates_in_window): Change X and Y to ints rather
3367 than pointers; don't return coordinates via pointers.
3368 (struct check_window_data): Change X and Y from pointers to ints.
3369 (window_from_coordinates): Remove args WX and WY; don't return
3370 coordinates via pointers.
3371 (Fcoordinates_in_window_p, window_from_coordinates):
3372 (check_window_containing, Fwindow_at): Callers changed.
3373 (window_relative_x_coord): New function.
3374
3375 * window.h (window_from_coordinates, window_relative_x_coord):
3376 Update prototypes.
3377
3378 * dispnew.c (buffer_posn_from_coords): Assume that X counts from
3379 the start of the text area.
3380
3381 * xdisp.c (remember_mouse_glyph): Change window_from_coordinates
3382 call. Use window_relative_x_coord.
3383 (note_mouse_highlight): Change window_from_coordinates call.
3384
3385 * w32term.c (w32_read_socket):
3386 * msdos.c (dos_rawgetc):
3387 * xterm.c (handle_one_xevent): Likewise.
3388
3389 2010-11-16 Dan Nicolaescu <dann@ics.uci.edu>
3390
3391 * strftime.c (LOCALE_PARAM_DECL): Update for standard C.
3392 (LOCALE_PARAM, LOCALE_PARAM_PROTO): Remove, unused.
3393 (memcpy_lowcase, so_week_days, extra_args_spec, emacs_strftimeu):
3394 Convert definitions to standard C.
3395 * regex.c: Do not include <stdlib.h>, config.h does it.
3396 Include unistd.h.
3397 (xrealloc, init_syntax_once, re_match, regcomp, regexec)
3398 (regerror, regfree): Convert definitions to standard C.
3399 * mktime.c (my_mktime_localtime_r, ydhms_tm_diff, ranged_convert)
3400 (__mktime_internal): Convert definitions to standard C.
3401
3402 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3403
3404 * w32proc.c:
3405 * w32inevt.c:
3406 * w32heap.c:
3407 * w32.c: Remove config.h include guards.
3408
3409 * callproc.c (child_setup): Reorder code to simplify #ifdefs.
3410 No code changes.
3411
3412 * process.c: Include <sys/ioctl.h> unconditionally,
3413 keyboard.c already does it.
3414
3415 * keyboard.c (pending_malloc_warning): Add const to match
3416 definition in alloc.c.
3417 (Fset_input_interrupt_mode): Simplify #ifdefs.
3418
3419 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3420
3421 Clean up systty.h macros.
3422 * systty.h (EMACS_GET_TTY_PGRP, EMACS_SET_TTY_PGRP, EMACS_GET_TTY)
3423 (EMACS_SET_TTY): Remove unneeded abstraction, instead inline the
3424 definition in all uses.
3425 (EMACS_TTY_TABS_OK): Remove, it has a single user.
3426 * sysdep.c (discard_tty_input, child_setup_tty)
3427 (init_sys_modes, tabs_safe_p, reset_sys_modes):
3428 * emacs.c (shut_down_emacs):
3429 * callproc.c (child_setup):
3430 * term.c (dissociate_if_controlling_tty): Inline removed macros.
3431
3432 * data.c (sign_extend_temp, sign_extend_lisp_int): Remove, unused.
3433
3434 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
3435
3436 * w32fns.c (Fx_create_frame):
3437 * nsfns.m (Fx_create_frame): Don't check for the cursorColor
3438 resource here; it's now done at startup.
3439
3440 2010-11-14 Jan Djärv <jan.h.d@swipnet.se>
3441
3442 * xterm.c (set_wm_state): Add Qnil to final cons.
3443
3444 * xselect.c (x_send_client_event): Remove unused variables cons and
3445 size.
3446
3447 2010-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3448
3449 * keyboard.c (modify_event_symbol): Add const to array elements of
3450 arg NAME_TABLE.
3451 (lispy_accent_keys, lispy_function_keys, lispy_multimedia_keys)
3452 (lispy_kana_keys, iso_lispy_function_keys, lispy_wheel_names)
3453 (lispy_wheel_names, lispy_drag_n_drop_names, modifier_names):
3454 Add const to array elements.
3455 (scroll_bar_parts): Make static. Fix position of const.
3456
3457 * w32fns.c (lispy_function_keys): Add const to extern.
3458
3459 * w32inevt.c (lispy_function_keys): Likewise.
3460
3461 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
3462
3463 * xfns.c (Fx_create_frame): Don't check for the cursorColor
3464 resource here; it's now done at startup.
3465
3466 2010-11-13 Dan Nicolaescu <dann@ics.uci.edu>
3467
3468 * xmenu.c: Make it clear that ../lwlib/lwlib.h is only needed for Motif.
3469
3470 Fix compilation on Solaris.
3471 * sysdep.c: Do not #include <term.h>.
3472 (tputs): Add declaration, similar to what cm.c does. (Bug#7178)
3473
3474 * s/ms-w32.h (HAVE_TERMIOS_H): Do not undef, not used anymore.
3475
3476 2010-11-13 Jan Djärv <jan.h.d@swipnet.se>
3477
3478 * xterm.c (set_wm_state): Don't put Atom in cons, call
3479 make_fixnum_or_float on them first.
3480 (x_term_init): Initialize Xatom_net_supporting_wm_check and
3481 Xatom_net_supported correctly.
3482
3483 * xselect.c (x_send_client_event): Move CHECK_STRING ...
3484 (Fx_send_client_event): to here.
3485
3486 2010-11-13 Martin Rudalics <rudalics@gmx.at>
3487
3488 * window.c (Fwindow_use_time): New function.
3489
3490 2010-11-13 Eli Zaretskii <eliz@gnu.org>
3491
3492 * xdisp.c (set_cursor_from_row): Fix cursor positioning on
3493 zero-width characters.
3494
3495 * .gdbinit (pgx): Adapt to latest changes in `struct glyph'.
3496
3497 * w32term.c (x_draw_glyphless_glyph_string_foreground): Draw the
3498 box before drawing the glyphs inside it.
3499
3500 * xdisp.c (syms_of_xdisp) <glyphless-char-display>: Doc fix.
3501
3502 * dispextern.h (enum glyphless_display_method):
3503 Rename GLYPHLESS_DISPLAY_HEXA_CODE to GLYPHLESS_DISPLAY_HEX_CODE.
3504 All users changed.
3505
3506 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
3507 Fix comments.
3508 (produce_glyphless_glyph): Enclose "U+nnnn" and "empty box"
3509 whitespace in "[]", to simulate a box. Don't use uninitialized
3510 variable `width'.
3511
3512 2010-11-11 Julien Danjou <julien@danjou.info>
3513
3514 * xsettings.c (init_xsettings): Use already fetch atoms.
3515
3516 * xsmfns.c (create_client_leader_window): Use SM_CLIENT_ID atom
3517 from dpyinfo.
3518
3519 * xselect.c (Fx_send_client_event): Split and create
3520 x_send_client_event.
3521
3522 * lisp.h: Do not EXFUN Fx_send_client_event.
3523
3524 * xterm.c (x_set_frame_alpha): Use _NET_WM_WINDOW_OPACITY atom
3525 from dpyinfo.
3526 (wm_supports): Use atoms from dpyinfo.
3527 (do_ewmh_fullscreen): Use atoms from dpyinfo.
3528 (x_ewmh_activate_frame): Use atoms from dpyinfo.
3529 (xembed_set_info): Use atoms from dpyinfo.
3530 (x_term_init): Fetch _XEMBED_INFO, _NET_SUPPORTED,
3531 _NET_SUPPORTING_WM_CHECK, _NET_WM_WINDOW_OPACITY and
3532 _NET_ACTIVE_WINDOW, XSETTINGS atoms.
3533 Get all atoms in one round-trip.
3534 (set_wm_state): Use x_send_client_event rather than
3535 Fx_send_client_event, using Atom directly.
3536 (x_ewmh_activate_frame): Ditto.
3537 (x_set_sticky): Pass atoms to set_wm_state.
3538 (do_ewmh_fullscreen): Ditto.
3539
3540 * xterm.h (x_display_info): Add Xatom_net_supported,
3541 Xatom_net_supporting_wm_check, Xatom_net_active_window,
3542 Xatom_net_wm_window_opacity, Xatom_XEMBED_INFO, SM_CLIENT_ID.
3543
3544 * xfns.c (Fx_show_tip): Fix typo in docstring.
3545
3546 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
3547
3548 * cmds.c (Fself_insert_command): Don't call XFASTINT without checking
3549 it's not negative.
3550
3551 2010-11-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3552
3553 * font.c (font_filter_properties): Add const to array elements of
3554 properties args.
3555
3556 * font.h (font_filter_properties): Likewise.
3557
3558 * ftfont.c (ftfont_booleans, ftfont_non_booleans): Add const to array
3559 elements.
3560
3561 * w32font.c (w32font_booleans, w32font_non_booleans): Likewise.
3562
3563 2010-11-10 Michael Albinus <michael.albinus@gmx.de>
3564
3565 * dbusbind.c (QCdbus_type_unix_fd): New Lisp object.
3566 (XD_BASIC_DBUS_TYPE, xd_symbol_to_dbus_type, xd_signature)
3567 (xd_append_arg, xd_retrieve_arg): Support DBUS_TYPE_UNIX_FD.
3568 (Fdbus_call_method): Add DBUS_TYPE_UNIX_FD type mapping to doc string.
3569 (syms_of_dbusbind): Initialize QCdbus_type_unix_fd).
3570
3571 2010-11-10 Glenn Morris <rgm@gnu.org>
3572
3573 * emacs.c (syms_of_emacs) <system-type>: Doc fix.
3574
3575 2010-11-09 Eli Zaretskii <eliz@gnu.org>
3576
3577 * xfns.c (x_real_positions): Fix declaration-after-statement problem.
3578
3579 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
3580
3581 * image.c (free_image): Don't garbage the frame here, since this
3582 function can be called while redisplaying (Bug#7210).
3583 (uncache_image): Garbage the frame here (Bug#6426).
3584
3585 2010-11-09 Jan Djärv <jan.h.d@swipnet.se>
3586
3587 * xfns.c (x_real_positions): Only use _NET_FRAME_EXTENTS if our
3588 parent is the root window. Check this after traversing window tree.
3589
3590 * xterm.c (x_term_init): Initialize Xatom_net_frame_extents.
3591
3592 * xterm.h (struct x_display_info): Xatom_net_frame_extents is new.
3593
3594 * xfns.c (x_real_positions): Try to get _NET_FRAME_EXTENTS first
3595 before traversing window tree (Bug#5721).
3596
3597 2010-11-07 Jan Djärv <jan.h.d@swipnet.se>
3598
3599 * xfns.c (set_machine_and_pid_properties): Let X set WM_CLIENT_MACHINE.
3600
3601 * xdisp.c (note_mode_line_or_margin_highlight):
3602 Initialize Cursor to No_Cursor for HAVE_WINDOW_SYSTEM also.
3603
3604 2010-11-06 Eli Zaretskii <eliz@gnu.org>
3605
3606 * xfns.c (Fx_show_tip): If any of the tool-tip text lines is R2L,
3607 adjust width of tool-tip frame to the width of text, excluding the
3608 stretch glyph at the beginning of R2L glyph rows.
3609
3610 * w32fns.c (Fx_show_tip): Likewise.
3611
3612 2010-11-06 Jan Djärv <jan.h.d@swipnet.se>
3613
3614 * nsfont.m: Include termchar for new mouse-highlight.
3615 (nsfont_draw): Use MOUSE_HL_INFO.
3616
3617 2010-11-05 Eli Zaretskii <eliz@gnu.org>
3618
3619 Unify mouse-highlight code for all GUI and TTY sessions.
3620
3621 * term.c: Remove static mouse_face_* variables. All users
3622 changed.
3623 (term_show_mouse_face, term_clear_mouse_face)
3624 (fast_find_position, term_mouse_highlight): Functions deleted.
3625 (tty_draw_row_with_mouse_face): New function.
3626 (term_mouse_movement): Call note_mouse_highlight instead of
3627 term_mouse_highlight.
3628
3629 * nsterm.m (ns_update_window_begin, ns_update_window_end)
3630 (ns_update_end, x_destroy_window, ns_frame_up_to_date)
3631 (ns_dumpglyphs_box_or_relief, ns_maybe_dumpglyphs_background)
3632 (ns_dumpglyphs_image, ns_dumpglyphs_stretch)
3633 (ns_initialize_display_info, keyDown, mouseMoved, mouseExited):
3634 Replace Display_Info with Mouse_HLInfo everywhere where
3635 mouse_face_* members were accessed for mouse highlight purposes.
3636
3637 * xterm.c (x_update_window_begin, x_update_window_end)
3638 (x_update_end, XTframe_up_to_date, x_set_mouse_face_gc)
3639 (handle_one_xevent, x_free_frame_resources, x_term_init):
3640 Replace Display_Info with Mouse_HLInfo everywhere where mouse_face_*
3641 members were accessed for mouse highlight purposes.
3642
3643 * w32term.c (x_update_window_begin, x_update_window_end)
3644 (x_update_end, w32_read_socket, x_free_frame_resources)
3645 (w32_initialize_display_info): Replace Display_Info with
3646 Mouse_HLInfo everywhere where mouse_face_* members were accessed
3647 for mouse highlight purposes.
3648
3649 * xdisp.c (show_mouse_face, note_mode_line_or_margin_highlight)
3650 (note_mouse_highlight) [HAVE_WINDOW_SYSTEM]: Don't run GUI code
3651 unless the frame is on a window-system.
3652 (get_tool_bar_item, handle_tool_bar_click)
3653 (note_tool_bar_highlight, draw_glyphs, erase_phys_cursor)
3654 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
3655 (note_mode_line_or_margin_highlight, note_mouse_highlight)
3656 (x_clear_window_mouse_face, cancel_mouse_face, expose_frame):
3657 Replace Display_Info with Mouse_HLInfo everywhere where
3658 mouse_face_* members were accessed for mouse highlight purposes.
3659 (coords_in_mouse_face_p): Move prototype out of the
3660 HAVE_WINDOW_SYSTEM conditional.
3661 (x_y_to_hpos_vpos, frame_to_window_pixel_xy): Move out of the
3662 HAVE_WINDOW_SYSTEM block.
3663 (try_window_id) [HAVE_GPM || MSDOS]:
3664 Call x_clear_window_mouse_face.
3665 (draw_row_with_mouse_face): Implementation for HAVE_WINDOW_SYSTEM
3666 systems. Call tty_draw_row_with_mouse_face for TTY systems.
3667 (show_mouse_face): Call draw_row_with_mouse_face, instead of
3668 calling draw_glyphs directly.
3669 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
3670 (cursor_in_mouse_face_p, rows_from_pos_range)
3671 (mouse_face_from_buffer_pos, mouse_face_from_string_pos)
3672 (note_mode_line_or_margin_highlight, note_mouse_highlight)
3673 (x_clear_window_mouse_face, cancel_mouse_face): Move out of the
3674 HAVE_WINDOW_SYSTEM block. Ifdef away window-system specific
3675 fragments.
3676 (note_mouse_highlight): Call popup_activated for MSDOS as well.
3677 Clear mouse highlight if pointer is over glyphs whose OBJECT is an
3678 integer.
3679 (mouse_face_from_buffer_pos): Add parentheses around && within ||.
3680 (x_consider_frame_title, tool_bar_lines_needed):
3681 Move prototypes to HAVE_WINDOW_SYSTEM-only part.
3682 (get_window_cursor_type): Move inside a HAVE_WINDOW_SYSTEM-only
3683 part. Remove "#ifdef HAVE_WINDOW_SYSTEM" from body of function.
3684 (null_glyph_slice): Move declaration into HAVE_WINDOW_SYSTEM-only
3685 part.
3686
3687 * dispnew.c (mirror_make_current): Set Y coordinate of the
3688 mode-line and header-line rows.
3689 (init_display): Setup initial frame's output_data for text
3690 terminal frames.
3691
3692 * xmenu.c (popup_activated): Don't define on MSDOS, which now has
3693 its own definition on msdos.c.
3694
3695 * msdos.c (show_mouse_face, clear_mouse_face)
3696 (fast_find_position, IT_note_mode_line_highlight)
3697 (IT_note_mouse_highlight): Functions deleted.
3698 (IT_frame_up_to_date, dos_rawgetc): Call note_mouse_highlight
3699 instead of IT_note_mouse_highlight.
3700 (draw_row_with_mouse_face, popup_activated): New functions.
3701 (dos_set_window_size, draw_row_with_mouse_face, IT_update_begin)
3702 (IT_update_end, IT_frame_up_to_date, internal_terminal_init)
3703 (dos_rawgetc): Replace Display_Info with Mouse_HLInfo everywhere
3704 where mouse_face_* members were accessed for mouse highlight
3705 purposes.
3706
3707 * msdos.h (initialize_msdos_display): Add prototype.
3708
3709 * frame.h (MOUSE_HL_INFO): New macro.
3710
3711 * lisp.h (Mouse_HLInfo): New data type.
3712
3713 * xterm.h (struct x_display_info):
3714 * w32term.h (struct w32_display_info):
3715 * nsterm.h (struct ns_display_info):
3716 * termchar.h (struct tty_display_info): Use it instead of
3717 mouse_face_* members.
3718
3719 * dispextern.h (show_mouse_face, clear_mouse_face): Update type of
3720 1st argument.
3721 (frame_to_window_pixel_xy, note_mouse_highlight)
3722 (x_clear_window_mouse_face, cancel_mouse_face, clear_mouse_face)
3723 (show_mouse_face, cursor_in_mouse_face_p): Move prototypes out of
3724 HAVE_WINDOW_SYSTEM conditional.
3725 (draw_row_with_mouse_face): Declare prototype.
3726 (tty_draw_row_with_mouse_face): Declare prototype.
3727
3728 2010-11-05 Eli Zaretskii <eliz@gnu.org>
3729
3730 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
3731 Remove unused variables.
3732
3733 2010-11-05 Adrian Robert <Adrian.B.Robert@gmail.com>
3734
3735 * nsterm.m (EmacsView-mouseExited:): Correct error in conditional
3736 logic pointed out by Eli Zaretskii.
3737
3738 2010-11-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
3739
3740 * coding.c (coding-category-list): Refer to set-coding-system-priority
3741 instead of the obsolete set-coding-priority in the doc string.
3742
3743 2010-11-04 Adrian Robert <Adrian.B.Robert@gmail.com>
3744
3745 * nsfont.m (nsfont_draw): Correct previous patch to return
3746 correct value.
3747 * nsimage.m (EmacsImage-setXBMColor:): Correct previous patch:
3748 don't change the method signature, change the return.
3749
3750 2010-11-04 Ismail Donmez <ismail@namtrac.org> (tiny change)
3751
3752 * nsfont.m (nsfont_draw)
3753 * nsimage.m (EmacsImage-setXBMColor:)
3754 * nsterm.m (EmacsView-performDragOperation:): Correct empty return.
3755
3756 2010-11-03 Julien Danjou <julien@danjou.info>
3757
3758 * image.c (gif_load): Add support for transparency and specified
3759 :background.
3760
3761 2010-11-01 Kenichi Handa <handa@m17n.org>
3762
3763 * dispextern.h (lookup_glyphless_char_display): Extern it.
3764
3765 * termhooks.h (struct terminal): New member charset_list.
3766
3767 * coding.c (Fset_terminal_coding_system_internal): Set the
3768 `charset_list' member of struct terminal.
3769
3770 * term.c (produce_glyphs): Handle the case it->what == IT_GLYPHLESS.
3771 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
3772
3773 * xdisp.c (lookup_glyphless_char_display): Make it non-static.
3774 (lookup_glyphless_char_display): Set it->what at the end.
3775 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
3776 (last_glyphless_glyph_merged_face_id): Make them non-static.
3777
3778 * w32term.c (x_draw_glyphless_glyph_string_foreground):
3779 Fix the arg with_background for font->driver->draw.
3780
3781 2010-11-01 Kenichi Handa <handa@m17n.org>
3782
3783 * w32gui.h (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
3784 Surround chp by parentheses.
3785
3786 2010-11-01 Kenichi Handa <handa@m17n.org>
3787
3788 Implement various display methods for glyphless characters.
3789
3790 * xdisp.c (Qglyphless_char, Vglyphless_char_display)
3791 (Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space)
3792 (Qzero_width): New variables.
3793 (THIN_SPACE_WIDTH): New macro.
3794 (lookup_glyphless_char_display): New function.
3795 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
3796 (last_glyphless_glyph_merged_face_id): New variables.
3797 (get_next_display_element): Check glyphless characters.
3798 (redisplay_internal): Initialize last_glyphless_glyph_frame and
3799 last_glyphless_glyph_face_id.
3800 (fill_glyphless_glyph_string): New function.
3801 (BUILD_GLYPHLESS_GLYPH_STRING): New macro.
3802 (BUILD_GLYPH_STRINGS): Handle the case GLYPHLESS_GLYPH.
3803 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
3804 (x_produce_glyphs): If a suitable font is not found, produce a
3805 glyphless glyph. Handle the case it->what == IT_GLYPHLESS.
3806 (syms_of_xdisp): Intern and staticpro Qglyphless_char,
3807 Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space, and
3808 Qzero_width.
3809 (Vglyphless_char_display): Declare it as a Lisp variable.
3810
3811 * dispextern.h (enum glyph_type): Add GLYPHLESS_GLYPH.
3812 (struct glyph): Change the size of the member "type" to 3.
3813 Add glyphless to the union slice and u.
3814 (enum display_element_type): Add IT_GLYPHLESS.
3815 (enum glyphless_display_method): New enum.
3816 (struct it): New member glyphless_method.
3817 (Vglyphless_char_display): Extern it.
3818
3819 * xterm.c (x_draw_glyphless_glyph_string_foreground): New function.
3820 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
3821
3822 * w32term.c (x_draw_glyphless_glyph_string_foreground): New function.
3823 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
3824
3825 * nsterm.m (ns_draw_glyph_string): Handle the case
3826 GLYPHLESS_GLYPH (the detail is not yet implemented).
3827
3828 2010-10-31 Glenn Morris <rgm@gnu.org>
3829
3830 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Fix merge, maybe.
3831
3832 * frame.c (syms_of_frame) <tool-bar-mode>:
3833 Default to nil if !HAVE_WINDOW_SYSTEM. (Bug#7299)
3834
3835 2010-10-31 Chong Yidong <cyd@stupidchicken.com>
3836
3837 * xterm.c (x_connection_closed): Print informative error message
3838 when aborting on GTK. This requires using shut_down_emacs
3839 directly instead of Fkill_emacs.
3840
3841 2010-10-29 Eli Zaretskii <eliz@gnu.org>
3842
3843 * emacs.c (main): Call syms_of_filelock unconditionally.
3844
3845 * filelock.c (syms_of_filelock): Move out of #ifdef CLASH_DETECTION
3846 clause, but keep part of it conditioned on CLASH_DETECTION.
3847
3848 2010-10-29 Glenn Morris <rgm@gnu.org>
3849
3850 * nsfns.m (Fx-display-save-under, Fx-open-connection)
3851 (Fxw-color-defined-p, Fxw-display-color-p, Fx-show-tip):
3852 * w32fns.c (Fxw_color_defined_p, Fx_open_connection):
3853 * xfns.c (Fxw_color_defined_p, Fx_open_connection):
3854 Sync docs between X, W32, NS.
3855
3856 * buffer.c (syms_of_buffer) <abbrev-mode, transient-mark-mode>:
3857 * frame.c (syms_of_frame) <tool-bar-mode>: Move doc here from Lisp.
3858
3859 2010-10-26 Juanma Barranquero <lekktu@gmail.com>
3860
3861 * eval.c (init_eval_once): Set max_lisp_eval_depth to 600;
3862 otherwise, bootstrapping on Windows fails to compile macroexp.el.
3863
3864 2010-10-26 Eli Zaretskii <eliz@gnu.org>
3865
3866 * cmds.c (internal_self_insert): Don't insert if argument N is
3867 zero or negative. (Bug#7281)
3868
3869 2010-10-26 Jan Djärv <jan.h.d@swipnet.se>
3870
3871 * gtkutil.c (qttip_cb): Set title to empty for ATK (Bug#7278).
3872
3873 2010-10-25 Glenn Morris <rgm@gnu.org>
3874
3875 * Makefile.in (SOME_MACHINE_LISP): Remove easymenu.elc.
3876
3877 2010-10-24 Glenn Morris <rgm@gnu.org>
3878
3879 * w32fns.c (Fx_synchronize, Fx_change_window_property)
3880 (Fx_window_property, Fx_file_dialog):
3881 * xfns.c (Fx_synchronize, Fx_change_window_property)
3882 (Fx_window_property, Fx_file_dialog): Sync docs between w32 and X.
3883
3884 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3885
3886 * xterm.c (x_connection_closed): Kill Emacs unconditionally.
3887
3888 2010-10-24 Eli Zaretskii <eliz@gnu.org>
3889
3890 * frame.c (Fframep, Fwindow_system): Deprecate use as a predicate.
3891
3892 * dispnew.c (syms_of_display) <initial-window-system, window-system>:
3893 Deprecate use as a boolean flag.
3894
3895 2010-10-24 Jim Meyering <jim@meyering.net>
3896
3897 * emacs.c (argmatch): Don't treat "--" as "--chdir".
3898
3899 2010-10-24 Glenn Morris <rgm@gnu.org>
3900
3901 * w16select.c (syms_of_win16select) <selection-coding-system>:
3902 <next-selection-coding-system>:
3903 * w32select.c (syms_of_w32select) <selection-coding-system>:
3904 <next-selection-coding-system>:
3905 Sync docs with select.el.
3906
3907 * xfaces.c (syms_of_xfaces) <tty-defined-color-alist>: Sync doc with
3908 Lisp version.
3909
3910 * w32term.c (syms_of_w32term) <x-use-underline-position-properties>:
3911 Sync doc with the xterm.c version.
3912
3913 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
3914 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
3915
3916 2010-10-23 Glenn Morris <rgm@gnu.org>
3917
3918 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
3919 * frame.c (syms_of_frame) <menu-bar-mode>:
3920 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode, display-hourglass>:
3921 <hourglass-delay>: Sync docs with Lisp.
3922
3923 2010-10-23 Eli Zaretskii <eliz@gnu.org>
3924
3925 Implement mouse highlight for bidi-reordered lines.
3926
3927 * xdisp.c (fast_find_string_pos): #ifdef away, not used anymore.
3928 (mouse_face_from_string_pos): New function, replaces
3929 fast_find_string_pos.
3930 (note_mouse_highlight): Call it instead of fast_find_string_pos.
3931 (note_mode_line_or_margin_highlight): Support bidi-reordered
3932 strings and R2L glyph rows. Fix comments.
3933 (note_mouse_highlight): When bidi reordering is turned on in a
3934 buffer, call next-single-property-change and
3935 previous-single-property-change with last argument nil.
3936 Clear mouse highlight when mouse pointer is in a R2L row on the stretch
3937 glyph that stands for no text beyond the line end.
3938 (row_containing_pos): Don't return too early when CHARPOS is in a
3939 bidi-reordered continued line. Return immediately when the first
3940 hit is found in a line that is not continued, or when an exact
3941 match for CHARPOS is found.
3942 (rows_from_pos_range): New function.
3943 (mouse_face_from_buffer_pos): Use it instead of calling
3944 row_containing_pos for START_CHARPOS and END_CHARPOS. Rewrite the
3945 function to support mouse highlight in bidi-reordered lines and
3946 not to assume that START_CHARPOS is always in mouse_face_beg_row.
3947 If necessary, swap mouse_face_beg_row and mouse_face_end_row so
3948 that the former is always above the latter or identical to it.
3949 (show_mouse_face): Support drawing highlighted R2L lines.
3950 (coords_in_mouse_face_p): New function, bidi-aware.
3951 (cursor_in_mouse_face_p, note_mouse_highlight, erase_phys_cursor):
3952 Call it instead of comparing with mouse-face members of dpyinfo.
3953 (note_mode_line_or_margin_highlight): Fix confusingly swapped
3954 usage of hpos and vpos.
3955
3956 2010-10-22 Jan Djärv <jan.h.d@swipnet.se>
3957
3958 * xrdb.c: Include keyboard.h for MOTIF.
3959
3960 * xmenu.c: Revert 2010-07-27 change: lwlib.h is needed for
3961 MOTIF (Bug#7263).
3962
3963 * xfns.c: Include Xm/TextF and Xm/List.
3964 (file_dialog_cb, file_dialog_unmap_cb, clean_up_file_dialog):
3965 Make ANSI prototypes.
3966
3967 2010-10-22 Glenn Morris <rgm@gnu.org>
3968
3969 * Makefile.in (SOME_MACHINE_LISP): Add w32-vars.
3970 Remove ccl and duplicate mouse.
3971
3972 2010-10-21 Chong Yidong <cyd@stupidchicken.com>
3973
3974 * insdel.c (prepare_to_modify_buffer): Don't set
3975 saved-region-selection if modification hooks are disabled.
3976
3977 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
3978
3979 * cmds.c (Fdelete_char): Doc fix.
3980
3981 2010-10-19 Ken Brown <kbrown@cornell.edu>
3982
3983 * s/cygwin.h (SIGNALS_VIA_CHARACTERS): New define (bug#7225).
3984
3985 2010-10-19 Kenichi Handa <handa@m17n.org>
3986
3987 Fix incorrect font metrics when the same font is opened with
3988 different pixelsizes.
3989
3990 * xftfont.c: Include composite.h.
3991 (xftfont_shape): New function.
3992 (syms_of_xftfont): Set xftfont_driver.shape.
3993
3994 2010-10-18 Julien Danjou <julien@danjou.info>
3995
3996 * frame.c (Fframe_pointer_visible_p):
3997 Add `frame-pointer-visible-p' to get the pointer visibility.
3998
3999 2010-10-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
4000
4001 * gnutls.c (emacs_gnutls_read): Return 0 if we get a
4002 non-"EAGAIN"-like error to signal to Emacs that the socket should
4003 be closed.
4004
4005 2010-10-15 Eli Zaretskii <eliz@gnu.org>
4006
4007 * unexcoff.c (make_hdr): Fix prototype according to changes in
4008 2010-10-03T13:59:56Z!dann@ics.uci.edu.
4009
4010 * image.c (tiff_load): Cast 3rd argument to avoid compiler warning.
4011
4012 2010-10-15 Tassilo Horn <tassilo@member.fsf.org>
4013
4014 * Makefile.in (really-oldXMenu): Fix typo in variable name that
4015 made building the X menu fail.
4016 (really-oldXMenu): Fix my previous fix.
4017
4018 2010-10-14 Damyan Pepper <damyanp@gmail.com>
4019
4020 Fix handling of font properties on Windows (bug#6303).
4021 * font.c (font_filter_properties): New function, refactored from
4022 ftfont_filter_properties.
4023 * font.h (font_filter_properties): Declare.
4024 * ftfont.c (ftfont_filter_properties): Use font_filter_properties.
4025 * w32font.c (w32font_booleans, w32font_non_booleans): New variables.
4026 (w32font_filter_properties): New function.
4027 (w32font_driver): Add w32font_filter_properties.
4028
4029 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
4030
4031 * font.c (Ffont_variation_glyphs):
4032 * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
4033
4034 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
4035
4036 * w32fns.c (w32_wnd_proc, file_dialog_callback):
4037 * w32font.c (w32_generic_family):
4038 * w32inevt.c (key_event):
4039 * w32menu.c (fill_in_menu):
4040 * w32proc.c (reader_thread, w32_executable_type, compare_env)
4041 (merge_and_sort_env, int_from_hex, enum_locale_fn, enum_codepage_fn):
4042 * w32term.c (w32_read_socket): Make static.
4043
4044 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
4045
4046 * image.c (DEF_IMGLIB_FN): Add argument to adapt to strict
4047 prototypes; all callers changed.
4048
4049 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
4050
4051 * makefile.w32-in (TLIB2): Rename from TLIBW32.
4052 (OBJ2): New macro.
4053 (WIN32OBJ, FONTOBJ): Remove.
4054 (OBJ1): Redistribute object files with OBJ2.
4055 (LIBS, $(TEMACS)): Use TLIB2.
4056 (make-buildobj-CMD, make-buildobj-SH): Use OBJ2.
4057 ($(TLIB2), TAGS, TAGS-LISP, TAGS-gmake): Depend on OBJ2.
4058
4059 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
4060
4061 * emacs.c (Vdynamic_library_alist)
4062 (syms_of_emacs) <dynamic-library-alist>: Move from image.c and rename.
4063 Doc fix.
4064
4065 * lisp.h (Vdynamic_library_alist): Declare extern.
4066
4067 * image.c (Vimage_library_alist)
4068 (syms_of_image) <image-library-alist>: Move to emacs.c and rename.
4069 (lookup_image_type): Use Vdynamic_library_alist.
4070 (Finit_image_library): Doc fix.
4071
4072 2010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
4073
4074 * Makefile.in (lispsource, libsrc, etc, oldxmenudir, lwlibdir)
4075 (lispdir): Remove trailing /, update all uses.
4076
4077 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
4078
4079 * nsterm.m (Qleft): Declare.
4080 (ns_right_alternate_modifier): New variable.
4081 (NSRightAlternateKeyMask): New define.
4082 (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
4083 ns_right_alternate_modifier isn't Qleft.
4084 (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
4085 as emacs modifier for NSRightAlternateKeyMask.
4086 (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
4087
4088 2010-10-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4089
4090 * gnutls.c (emacs_gnutls_write): If we're trying to write before
4091 gnutls is ready, return EAGAIN as the errno.
4092
4093 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
4094
4095 * vm-limit.c:
4096 * unexhp9k800.c:
4097 * unexelf.c:
4098 * unexaix.c:
4099 * termcap.c: Remove #ifdef emacs / #ifndef emacs code, unused.
4100
4101 * Makefile.in (temacs): Use $(ALL_CFLAGS) on the link line.
4102 (PROFILING_LDFLAGS): Remove, not needed anymore.
4103
4104 * Makefile.in: Use $(...) everywhere instead of ${...}.
4105 (CRT_DIR): Move near potential user.
4106 (START_FILE): Move near CRT_DIR, it might use it.
4107
4108 * sysdep.c (LPASS8): Remove, unused.
4109 (emacs_ospeed): Change from being a global to a local in the only
4110 user: init_baud_rate.
4111
4112 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
4113
4114 * gnutls.c (syms_of_gnutls): All the bootprops are keywords.
4115 (emacs_gnutls_write): Remove the debuggin fsync call.
4116 (emacs_gnutls_read): Return -1 if we got an error from
4117 gnutls_read. This allows us to actually read lots of data from
4118 the GnuTLS stream.
4119 (emacs_gnutls_write): Check for GNUTLS_E_AGAIN and not EINTR.
4120 According to the documentation, this is correct, and it seems to
4121 make things work.
4122
4123 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
4124
4125 * xterm.c (x_draw_relief_rect): Clear corner pixels.
4126
4127 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
4128
4129 * keyboard.c: Revert last change; it was not intended to be
4130 synchronized with the trunk.
4131
4132 2010-10-08 Kenichi Handa <handa@m17n.org>
4133
4134 * coding.c (complement_process_encoding_system): Fix previous change.
4135
4136 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
4137
4138 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
4139 (Fdbus_init_bus): ... here. (Bug#7113)
4140
4141 2010-10-08 Glenn Morris <rgm@gnu.org>
4142
4143 * buffer.c (before-change-functions, after-change-functions):
4144 Three-year overdue doc fix following 2007-08-13 change.
4145
4146 2010-10-08 Kenichi Handa <handa@m17n.org>
4147
4148 * coding.c (coding_inherit_eol_type): If parent doesn't specify
4149 eol-format, inherit from the system's default.
4150 (complement_process_encoding_system): Make a new coding system
4151 inherit the original eol-format.
4152
4153 2010-10-08 Kenichi Handa <handa@m17n.org>
4154
4155 * coding.c (complement_process_encoding_system): New function.
4156
4157 * coding.h (complement_process_encoding_system): Extern it.
4158
4159 * callproc.c (Fcall_process): Complement the coding system for
4160 encoding arguments.
4161 (Fcall_process_region): Complement the coding system for encoding
4162 the input to the process.
4163
4164 * process.c (Fstart_process): Complement the coding system for
4165 encoding arguments.
4166 (send_process): Complement the coding system for encoding what
4167 sent to the process.
4168
4169 2010-10-08 Kenichi Handa <handa@m17n.org>
4170
4171 * xfont.c (xfont_open): Fix setting of font->average_width from
4172 :avgwidth property (Bug#7123).
4173
4174 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
4175
4176 * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
4177 is more portable.
4178
4179 * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
4180 (kbd_buffer_get_event): ... here. This is needed for cygwin, which
4181 has not defined SIGIO.
4182
4183 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
4184
4185 * xterm.c (x_draw_relief_rect): If box width is larger than 1,
4186 draw the outermost line using the black relief, for legibility.
4187 Omit drawing the four corner pixels.
4188
4189 2010-10-04 Chong Yidong <cyd@stupidchicken.com>
4190
4191 * keyboard.c (echo_prompt): Function moved into read_key_sequence.
4192 (read_key_sequence): Inline echo_prompt.
4193 (echo_dash): Add a dash only if key is continued (Bug#7137).
4194
4195 2010-10-04 Dan Nicolaescu <dann@ics.uci.edu>
4196
4197 Remove O_RDONLY, O_WRONLY definitions, not needed.
4198 * unexcoff.c:
4199 * lread.c:
4200 * fileio.c:
4201 * doc.c:
4202 * callproc.c:
4203 * alloc.c:
4204 * termcap.c: Remove O_RDONLY O_WRONLY definitions.
4205
4206 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
4207
4208 * gnutls.h (GNUTLS_LOG2): Convenience macro.
4209
4210 * gnutls.c: Add property list symbol holders.
4211 (emacs_gnutls_handshake): Clarify how sockets are passed to
4212 GnuTLS.
4213 (gnutls_log_function2): Convenience function using GNUTLS_LOG2.
4214 (Fgnutls_boot): Get all parameters from a plist. Require trustfiles
4215 and keyfiles to be a list of file names. Default to "NORMAL" for
4216 the priority string. Improve logging.
4217
4218 2010-10-03 Glenn Morris <rgm@gnu.org>
4219
4220 * fileio.c (Vdirectory_sep_char): Remove.
4221
4222 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
4223
4224 * termhooks.h: Remove #ifdef CONSP.
4225
4226 * xterm.c (NO_INLINE, noinline): Move definitions to ../configure.in.
4227
4228 Include <fcntl.h> unconditionally.
4229 * termcap.c:
4230 * sysdep.c:
4231 * lread.c:
4232 * keyboard.c:
4233 * filelock.c:
4234 * fileio.c:
4235 * doc.c:
4236 * callproc.c:
4237 * alloc.c: Remove include guards for <fcntl.h>, process.c already
4238 does it.
4239
4240 * process.c: Do not include <sys/wait.h>, syswait.h does it.
4241
4242 * sysdep.c (flush_pending_output): Remove code, does not do
4243 anything on any platform.
4244
4245 Remove unused code.
4246 * sysdep.c (select_alarm, sys_select, read_input_waiting):
4247 Remove select emulation, all systems support select.
4248 (set_exclusive_use): Remove, the only user is in an #if 0 block.
4249 * process.c (create_process): Remove #if 0 code.
4250
4251 Remove unused arguments for unexec.
4252 The third one is never used, and the last two are always passed as zero.
4253 * emacs.c (unexec): Add declaration.
4254 (Fdump_emacs): Only pass the first two arguments to unexec.
4255 Simplify #ifdef.
4256 * unexw32.c (unexec):
4257 * unexsol.c (unexec):
4258 * unexhp9k800.c (unexec):
4259 * unexcw.c (unexec): Remove the last 3 arguments, unused.
4260 * unexelf.c (unexec): Remove the last 3 arguments, unused.
4261 (find_section): Use const.
4262 * unexmacosx.c (unexec): Remove the last 3 arguments, unused.
4263 (unexec_error): Declare it NO_RETURN.
4264 * unexcoff.c (make_hdr): Assume bss_start is always zero, remove
4265 it as an argument, remove data_start and entry_address arguments, unused.
4266 (unexec): Remove bss_start, data_start and
4267 entry_address arguments.
4268 * unexaix.c (make_hdr): Assume bss_start is always zero, remove
4269 it as an argument, remove data_start and entry_address arguments, unused.
4270 (unexec): Remove bss_start, data_start and
4271 entry_address arguments.
4272
4273 2010-10-03 Juanma Barranquero <lekktu@gmail.com>
4274
4275 * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ).
4276
4277 * gnutls.c (emacs_gnutls_handshake, gnutls_make_error)
4278 (gnutls_emacs_global_init, gnutls_emacs_global_deinit): Make static.
4279 (Fgnutls_get_initstage, Fgnutls_deinit, Fgnutls_boot, Fgnutls_bye):
4280 Fix typos in docstrings.
4281 (Fgnutls_error_fatalp, Fgnutls_error_string): Doc fixes.
4282 (Fgnutls_errorp): Doc fix; use ERR for the argument name.
4283
4284 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
4285
4286 * keyboard.c (command_loop_1): Make sure the mark is really alive
4287 before using it (Bug#7044).
4288
4289 2010-10-02 Juanma Barranquero <lekktu@gmail.com>
4290
4291 * makefile.w32-in (tags): Rename target to full-tags.
4292
4293 2010-10-02 Eli Zaretskii <eliz@gnu.org>
4294
4295 * emacs.c (main): Remove !WINDOWSNT conditional.
4296 (Fkill_emacs): Don't mention exemption on MS-Windows.
4297
4298 2010-10-02 Glenn Morris <rgm@gnu.org>
4299
4300 * character.c (Fchar_bytes): Remove obsolete function.
4301 (syms_of_character): Remove Schar_bytes.
4302
4303 * emacs.c (fatal_error_signal): Also run Fkill_emacs on SIGINT.
4304 (main) [!WINDOWSNT]: Handle SIGINT with fatal_error_signal
4305 in batch-mode.
4306 (Fkill_emacs): Doc fix. Also run the hook in batch mode.
4307 (kill-emacs-hook): Doc fix.
4308
4309 2010-10-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4310
4311 * xml.c (Flibxml_parse_xml_region, Flibxml_parse_html_region)
4312 (parse_region): Rework to take regions instead of strings, and
4313 renamed to reflect that these are the libxml functions.
4314
4315 2010-10-01 Eli Zaretskii <eliz@gnu.org>
4316
4317 * term.c (init_tty) [DOS_NT]: Don't call Wcm_clear after setting
4318 screen dimensions in tty->Wcm.
4319
4320 * xdisp.c (set_cursor_from_row): When the row is truncated and
4321 point is outside the range of displayed characters, position the
4322 cursor inside the scroll margin. (Bug#6349)
4323
4324 2010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
4325
4326 Do not include stdlib.h and string.h, config.h does it.
4327 * xfont.c:
4328 * w32term.c:
4329 * w32reg.c:
4330 * w32inevt.c:
4331 * w32heap.c:
4332 * w32console.c:
4333 * w16select.c:
4334 * unexsol.c:
4335 * term.c:
4336 * sound.c:
4337 * scroll.c (m):
4338 * gtkutil.c:
4339 * font.c:
4340 * filelock.c:
4341 * fileio.c:
4342 * dosfns.c:
4343 * dbusbind.c:
4344 * bidi.c:
4345 * callproc.c:
4346 * process.c:
4347 * msdos.c:
4348 * charset.c: Do not include stdlib.h and string.h, config.h does it.
4349
4350 * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h
4351 defines it.
4352
4353 * process.c: Move #include <pty.h> earlier.
4354 (SIGCHLD): Remove conditional definition, syssignal.h defines it.
4355 (pty_name): Move definition later.
4356
4357 * nsselect.m (syms_of_nsselect):
4358 * nsmenu.m (syms_of_nsmenu):
4359 * nsfns.m (syms_of_nsfns):
4360 * msdos.c (syms_of_msdos):
4361
4362 * image.c (syms_of_image):
4363 * charset.c (syms_of_charset): Use intern_c_string instead of intern.
4364
4365 * point.h: Remove, unused.
4366
4367 2010-10-01 Eli Zaretskii <eliz@gnu.org>
4368
4369 * makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
4370 (TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
4371 (nt-TAGS-gmake, nt-TAGS-nmake): New targets.
4372
4373 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
4374
4375 * xml.c (parse_string): Use const.
4376
4377 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4378
4379 * eval.c (Fbacktrace): Don't overwrite print-level on exit.
4380 Also only override Vprint_level if it isn't already bound, and increase
4381 the level to 8 to produce more useful backtraces for bug reports.
4382
4383 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
4384
4385 * Makefile.in: ecrt0.c does not exist anymore, do not mention it.
4386
4387 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
4388
4389 * w32console.c (vga_stdcolor_name): Remove unused function;
4390 presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
4391
4392 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4393
4394 * gnutls.c (emacs_gnutls_handshake): Made into internal function.
4395 (Fgnutls_boot): Start the handshake.
4396 (emacs_gnutls_read): Perform the handshake from the reader loop.
4397 (Fgnutls_boot): Remove some debugging messages.
4398 Change indentation throughout to use the Emacs style.
4399 (emacs_gnutls_handshake): Cast the fds to something that's
4400 possibly the expected length.
4401 (emacs_gnutls_write): Return -1 if we try to write before handshake.
4402
4403 * process.h (Lisp_Process): Add a gnutls_p field to Lisp_Process.
4404
4405 * process.c (make_process): Set the gnutls_p field to zero by
4406 default.
4407 (read_process_output): Always call the gnutls_read function if the
4408 stream is a gnutls stream.
4409 (send_process): Ditto for writes.
4410
4411 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Refuse to read
4412 or write anything until the state is GNUTLS_STAGE_READY.
4413 (Fgnutls_boot): Mark the stream as being a gnutls stream.
4414
4415 2010-09-29 Eli Zaretskii <eliz@gnu.org>
4416
4417 * xdisp.c (reseat_1): Initialize bidi_it.paragraph_dir to
4418 NEUTRAL_DIR.
4419 (handle_invisible_prop, iterate_out_of_display_property)
4420 (next_element_from_buffer): If bidi_it.first_elt is set, call
4421 bidi_paragraph_init with NO_DEFAULT_P argument non-zero.
4422 (Bug#7128)
4423
4424 * print.c (print_object): Fix format string and argument types for
4425 printing a Lisp_Misc_Marker.
4426
4427 * xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
4428 (load_overlay_strings, get_overlay_strings_1)
4429 (get_overlay_strings, forward_to_next_line_start)
4430 (back_to_previous_visible_line_start, reseat, reseat_to_string)
4431 (get_next_display_element, next_element_from_string)
4432 (next_element_from_c_string, next_element_from_buffer)
4433 (move_it_vertically_backward, move_it_by_lines, add_to_log)
4434 (message_dolog, message_log_check_duplicate, message2_nolog)
4435 (message3, message3_nolog, vmessage, set_message, set_message_1)
4436 (hscroll_window_tree, text_outside_line_unchanged_p)
4437 (set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
4438 (find_last_unchanged_at_beg_row)
4439 (find_first_unchanged_at_end_row, row_containing_pos)
4440 (trailing_whitespace_p, display_mode_element, decode_mode_spec)
4441 (display_count_lines, x_produce_glyphs, note_mouse_highlight):
4442 Use EMACS_INT for buffer and string positions.
4443
4444 * dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
4445 (row_containing_pos): Adjust prototype.
4446
4447 * lisp.h (pos_visible_p, message2, message2_nolog, message3)
4448 (message2_nolog, set_message): Adjust prototypes.
4449
4450 2010-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
4451
4452 * gnutls.c (Fgnutls_boot): Remove unused vars `data' and `srp_cred'.
4453 (Fgnutls_boot): Use SDATA.
4454 (Fgnutls_handshake): Remove unused var `max_log_level'.
4455
4456 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
4457
4458 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
4459 (Bug#7113)
4460
4461 2010-09-27 Jan Djärv <jan.h.d@swipnet.se>
4462
4463 * xgselect.c (xg_select): Clear file descriptors not set from
4464 rfds and wfds.
4465
4466 * process.c (wait_reading_process_output): Add missing FD_CLR
4467 for write_mask (must mirror connect_wait_mask).
4468
4469 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
4470
4471 * gnutls.c (gnutls_log_function): Show level and "gnutls.c"
4472 prefix.
4473 (Fgnutls_boot): Use changed process members. Use log level with a
4474 function parameter to set it. Bring back Emacs-level debugging
4475 messages at log level 1 and 2.
4476
4477 * process.c (make_process): Initialize gnutls_log_level.
4478
4479 * process.h: Add gnutls_log_level and rename x509_cred and
4480 anon_cred to have the gnutls_ prefix for consistency.
4481
4482 * gnutls.h (GNUTLS_LOG): Add convenience macro.
4483
4484 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
4485
4486 * w32.c (g_b_init_get_sid_identifier_authority)
4487 (GetSidIdentifierAuthority_Proc, get_sid_identifier_authority):
4488 Remove, not used.
4489 (globals_of_w32): Don't set g_b_init_get_sid_identifier_authority.
4490 (init_winsock): Remove useless assignment.
4491 (open_process_token, get_token_information, lookup_account_sid)
4492 (get_sid_sub_authority, get_sid_sub_authority_count, get_file_security)
4493 (get_security_descriptor_owner, get_security_descriptor_group)
4494 (is_valid_sid, equal_sid, get_length_sid, copy_sid)
4495 (get_native_system_info, get_system_times, init_user_info, crlf_to_lf)
4496 (is_unc_volume, GetCachedVolumeInformation, get_volume_info)
4497 (is_fat_volume, open_unc_volume, read_unc_volume, close_unc_volume)
4498 (unc_volume_file_attributes, convert_from_time_t)
4499 (create_toolhelp32_snapshot, process32_first, process32_next)
4500 (open_thread_token, impersonate_self, revert_to_self)
4501 (get_process_memory_info, get_process_working_set_size)
4502 (global_memory_status, global_memory_status_ex, socket_to_fd)
4503 (shutdown_handler): Make static.
4504
4505 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
4506
4507 * dbusbind.c (dbus_fd_cb, xd_get_dispatch_status)
4508 (xd_pending_messages): Functions removed.
4509 (xd_read_queued_messages): Add parameters fd, *data, for_read in
4510 order to be compatible with add_read_fd. Determine bus from data,
4511 and call xd_read_message just for this bus.
4512 (xd_add_watch): Use xd_read_queued_messages as callback function.
4513 Add data.
4514
4515 * lisp.h (xd_pending_messages, xd_read_queued_messages): Remove.
4516
4517 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4518
4519 * gnutls.c (gnutls_log_function): Add more debugging.
4520 (emacs_gnutls_read): Don't infloop while reading.
4521
4522 2010-09-27 Kenichi Handa <handa@m17n.org>
4523
4524 These changes are to remove restriction on the number of glyphs in
4525 one composition.
4526
4527 * dispextern.h (struct glyph): Change the member "slice" to union.
4528 Remove u.cmp.from and u.cmp.to. Give more bits to u.cmp.id.
4529 (GLYPH_SLICE_EQUAL_P): Adjust for the above change.
4530
4531 * dispnew.c (buffer_posn_from_coords): Use glyph->slice.img
4532 instead of glyph->slice.
4533 (marginal_area_string): Likewise.
4534
4535 * term.c (encode_terminal_code): Use glyph->slice.cmp instead of
4536 glyph->u.cmp.
4537 (append_composite_glyph): Likewise.
4538
4539 * xdisp.c (dump_glyph): Use glyph->slice.cmp instead of
4540 glyph->u.cmp.
4541 (fill_gstring_glyph_string, x_get_glyph_overhangs)
4542 (append_composite_glyph): Likewise.
4543 (fill_image_glyph_string): Use glyph->slice.img instead of
4544 glyph->slice.
4545 (append_glyph, produce_image_glyph, append_stretch_glyph)
4546 (note_mouse_highlight): Likewise.
4547
4548 2010-09-26 Jan Djärv <jan.h.d@swipnet.se>
4549
4550 * process.c (add_keyboard_wait_descriptor)
4551 (delete_keyboard_wait_descriptor): Reinstate ifdef subprocesses.
4552 (wait_reading_process_output): Don't pass write_mask to select
4553 if SELECT_CANT_DO_WRITE_MASK is defined.
4554 (SELECT_CANT_DO_WRITE_MASK): Define if SELECT_CANT_DO_WRITE_MASK.
4555
4556 * process.h (add_read_fd, delete_read_fd, add_write_fd)
4557 (delete_write_fd): Declare.
4558
4559 * process.c (gpm_wait_mask, max_gpm_desc): Remove.
4560 (write_mask): New variable.
4561 (max_input_desc): Rename from max_keyboard_desc.
4562 (fd_callback_info): New variable.
4563 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd):
4564 New functions.
4565 (Fmake_network_process): FD_SET write_mask.
4566 (deactivate_process): FD_CLR write_mask.
4567 (wait_reading_process_output): Connecting renamed to Writeok.
4568 check_connect removed. check_write is new. Remove references to gpm.
4569 Use Writeok/check_write unconditionally (i.e. no #ifdef
4570 NON_BLOCKING_CONNECT) instead of Connecting.
4571 Loop over file descriptors and call callbacks in fd_callback_info
4572 if file descriptor is ready for I/O.
4573 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor.
4574 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor.
4575 (keyboard_bit_set): Use max_input_desc.
4576 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor):
4577 Remove #ifdef subprocesses. Use max_input_desc.
4578 (init_process): Initialize write_mask and fd_callback_info.
4579
4580 * keyboard.c (readable_events, gobble_input): Remove DBUS code.
4581
4582 * dbusbind.c: Include process.h.
4583 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch)
4584 (xd_read_message_1): New functions.
4585 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd.
4586 Handle watch for both read and write.
4587 (Fdbus_init_bus): Also register xd_toggle_watch.
4588 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
4589 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call
4590 to dbus_connection_flush.
4591 (xd_read_message): Move most of the code to xd_read_message_1.
4592 Call xd_read_message_1 until status is COMPLETE.
4593
4594 2010-09-26 Dan Nicolaescu <dann@ics.uci.edu>
4595
4596 * term.c: Do not include sys/ioctl.h, not needed.
4597 (init_tty): Reorder code to reduce the number of #ifdefs.
4598 No code changes.
4599
4600 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
4601
4602 * process.h: Set up GnuTLS support.
4603
4604 * process.c (make_process, Fstart_process)
4605 (read_process_output, send_process): Set up GnuTLS support for
4606 process input/output file descriptors.
4607
4608 * gnutls.h: The GnuTLS glue for Emacs, macros and enums.
4609
4610 * gnutls.c: The source code for GnuTLS support in Emacs.
4611
4612 * emacs.c: Set up GnuTLS support and call syms_of_gnutls.
4613
4614 * config.in: Set up GnuTLS support.
4615
4616 * Makefile.in (LIBGNUTLS_LIBS, LIBGNUTLS_CFLAGS, ALL_CFLAGS)
4617 (obj, LIBES): Set up GnuTLS support.
4618
4619 2010-09-26 Juanma Barranquero <lekktu@gmail.com>
4620
4621 * w32.c (get_emacs_configuration_options): Fix previous change.
4622
4623 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
4624
4625 * insdel.c (prepare_to_modify_buffer): Ensure the mark marker is
4626 alive before using it (Bug#6977).
4627
4628 2010-09-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4629
4630 * xdisp.c (face_before_or_after_it_pos): EMACS_INT/int fixup.
4631
4632 * dispextern.h: EMACS_INT/int fixup.
4633
4634 * xdisp.c (string_pos_nchars_ahead, init_iterator): EMACS_INT/int
4635 fixup.
4636
4637 * xrdb.c (magic_file_p): EMACS_INT/int fixup.
4638
4639 2010-09-25 Eli Zaretskii <eliz@gnu.org>
4640
4641 * window.c (Fpos_visible_in_window_p, Fdelete_other_windows)
4642 (Fselect_window, window_scroll_pixel_based)
4643 (window_scroll_line_based, Frecenter, Fset_window_configuration):
4644 Use EMACS_INT for buffer positions.
4645
4646 * textprop.c (validate_interval_range, interval_of)
4647 (property_change_between_p, Fadd_text_properties)
4648 (set_text_properties_1, Fremove_text_properties)
4649 (Fremove_list_of_text_properties, Ftext_property_any)
4650 (Ftext_property_not_all, copy_text_properties)
4651 (text_property_list, extend_property_ranges)
4652 (verify_interval_modification): Use EMACS_INT for buffer
4653 positions.
4654
4655 * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT
4656 for buffer positions.
4657
4658 * process.c (read_process_output, send_process)
4659 (Fprocess_send_region, status_notify): Use EMACS_INT for buffer
4660 and string positions and size.
4661
4662 * print.c (print_object, print_string, strout): Use EMACS_INT for
4663 string indices.
4664
4665 * minibuf.c (string_to_object): Use EMACS_INT for string position
4666 and size.
4667
4668 * marker.c (verify_bytepos): Use EMACS_INT for buffer positions.
4669
4670 * lread.c <read_from_string_index, read_from_string_index_byte>
4671 <read_from_string_limit, readchar_count>: Define EMACS_INT.
4672 (readchar, unreadchar, read_internal_start): Use EMACS_INT for
4673 buffer positions and string length.
4674
4675 * keyboard.c <last_point_position, last_non_minibuf_size>: Declare
4676 EMACS_INT.
4677 (echo_truncate, adjust_point_for_property, read_char)
4678 (gen_help_event, make_lispy_event, modify_event_symbol)
4679 (Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT
4680 for buffer positions and string length.
4681
4682 * keyboard.h (gen_help_event): Adjust prototype.
4683
4684 * termhooks.h <struct input_event>: Make `code' member EMACS_INT.
4685
4686 * commands.h <last_point_position>: Declare EMACS_INT.
4687
4688 * xdisp.c <help_echo_pos>: Define as EMACS_INT.
4689 (truncate_echo_area): Accept EMACS_INT argument.
4690
4691 * dispextern.h <help_echo_pos>: Declare EMACS_INT.
4692
4693 * lisp.h (truncate_echo_area): Adjust prototype.
4694
4695 * composite.c (composition_adjust_point): Return EMACS_INT.
4696
4697 * composite.h (composition_adjust_point): Adjust prototype.
4698
4699 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
4700
4701 * process.c (Fmake_network_process): When arg :host is 'local,
4702 use address 127.0.0.1, not name "localhost". (Bug#6781)
4703
4704 2010-09-24 Eli Zaretskii <eliz@gnu.org>
4705
4706 * indent.c (Fcurrent_indentation, indented_beyond_p)
4707 (compute_motion): Use EMACS_INT for buffer position variables.
4708
4709 * lisp.h (indented_beyond_p): Adjust prototype.
4710
4711 * buffer.c (overlay_strings): Return EMACS_INT.
4712
4713 * buffer.h (overlay_strings): Adjust prototype.
4714
4715 * region-cache.c (pp_cache): Adjust format to arguments.
4716
4717 * eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT.
4718 (call_debugger): Use EMACS_INT for specpdl_size related variables.
4719 (verror): Use EMACS_INT for size of allocated buffer.
4720
4721 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer
4722 positions.
4723
4724 * xdisp.c (redisplay_internal, try_window_id)
4725 (set_cursor_from_row, find_first_unchanged_at_end_row):
4726 Use EMACS_INT for buffer positions.
4727
4728 * dispextern.h (set_cursor_from_row): Adjust prototype.
4729
4730 * dispnew.c (increment_matrix_positions)
4731 (increment_row_positions, copy_glyph_row_contents)
4732 (mode_line_string, marginal_area_string): Use EMACS_INT for buffer
4733 positions.
4734
4735 * dispextern.h (mode_line_string, marginal_area_string)
4736 (increment_matrix_positions, increment_row_positions):
4737 Adjust prototypes.
4738
4739 * data.c (Faref, Faset): Use EMACS_INT for string length and
4740 positions.
4741
4742 * cmds.c (internal_self_insert): Use EMACS_INT for the count of
4743 characters to insert.
4744
4745 * ccl.c (Fccl_execute_on_string): Use EMACS_INT for string
4746 position and size.
4747
4748 * syntax.c (scan_words, update_syntax_table)
4749 (prev_char_comend_first, back_comment, skip_chars)
4750 (skip_syntaxes, Fforward_comment, Fbackward_prefix_chars):
4751 Use EMACS_INT for buffer and string positions.
4752
4753 * syntax.h (scan_words, update_syntax_table): Adjust prototypes.
4754
4755 * casefiddle.c (operate_on_word): Use EMACS_INT for buffer
4756 positions.
4757
4758 2010-09-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4759
4760 * scroll.c (calculate_scrolling, line_ins_del)
4761 (calculate_direct_scrolling, scroll_cost): Fix EMACS_INT/int
4762 conversion.
4763
4764 * region-cache.c (move_cache_gap, set_cache_region, pp_cache)
4765 (region_cache_backward, region_cache_forward)
4766 (revalidate_region_cache, set_cache_region): FIX EMACS_INT/int
4767 conversion.
4768
4769 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
4770
4771 * eval.c (verror): Fix EMACS_INT/int conversion.
4772
4773 * print.c (PRINTDECLARE, PRINTPREPARE, strout, print_string)
4774 (print_preprocess, print_check_string_charset_prop)
4775 (print_object): Fix EMACS_INT/int conversion.
4776
4777 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
4778
4779 2010-09-24 Eli Zaretskii <eliz@gnu.org>
4780
4781 * callproc.c (Fcall_process): Use EMACS_INT for count of
4782 characters read from the subprocess.
4783
4784 * bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
4785 positions.
4786 (bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
4787 positions.
4788
4789 * buffer.c (struct sortvec): Use EMACS_INT for buffer positions.
4790 (struct sortstrlist, overlay_str_len): Use EMACS_INT for string
4791 length.
4792 (advance_to_char_boundary, Fset_buffer_multibyte)
4793 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
4794 (overlay_touches_p, record_overlay_string, overlay_strings)
4795 (recenter_overlay_lists, fix_start_end_in_overlays)
4796 (modify_overlay, Fmove_overlay, report_overlay_modification)
4797 (evaporate_overlays): Use EMACS_INT for buffer positions.
4798
4799 * lisp.h (fix_start_end_in_overlays, overlay_touches_p):
4800 Adjust prototypes.
4801
4802 * dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
4803 positions.
4804
4805 * fns.c (Fcompare_strings, Fstring_lessp, concat)
4806 (string_make_unibyte, Fstring_as_unibyte, Fsubstring)
4807 (Fsubstring_no_properties, substring_both, Ffillarray)
4808 (Fclear_string, mapcar1, Fmapconcat, Fmapcar, Fmapc)
4809 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
4810 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
4811 (Fmd5): Use EMACS_INT for buffer and string positions and length
4812 variables and arguments.
4813
4814 * lisp.h (substring_both): Adjust prototype.
4815
4816 2010-09-24 Juanma Barranquero <lekktu@gmail.com>
4817
4818 Remove W32 API function pointer unused since 2005-02-15 (revno 2005-02-15T23:19:26Z!jasonr@gnu.org).
4819 * w32fns.c (clipboard_sequence_fn): Don't declare.
4820 (globals_of_w32fns): Don't initialize it.
4821
4822 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
4823
4824 * syntax.c (back_comment): Detect the case where a 1-char comment
4825 starter is also the 2nd char of a 2-char comment ender.
4826
4827 2010-09-23 Jan Djärv <jan.h.d@swipnet.se>
4828
4829 * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
4830
4831 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4832
4833 * eval.c (verror): EMACS_INT/int cleanup.
4834
4835 * lisp.h (SPECPDL_INDEX): Cast to int, since we're not going to
4836 unwind_protect more than 2GB worth of functions.
4837
4838 * editfns.c (Finsert_char): EMACS_INT/int cleanup.
4839
4840 * lisp.h: Have oblookup take EMACS_INT to allow interning big
4841 string and avoid compiler warnings.
4842 (USE_SAFE_ALLOCA): Cast to int to avoid compilation warnings in
4843 all users.
4844
4845 * lread.c (oblookup): EMACS_INT/int cleanup.
4846
4847 * cmds.c (Fforward_line, Fdelete_char): EMACS_INT/int cleanup.
4848
4849 2010-09-23 Eli Zaretskii <eliz@gnu.org>
4850
4851 * editfns.c (clip_to_bounds): Return an EMACS_INT value.
4852
4853 * lisp.h (clip_to_bounds): Adjust prototype.
4854
4855 * intervals.c (adjust_for_invis_intang): Return EMACS_INT value.
4856
4857 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4858
4859 * lisp.h: doprnt.c EMACS_INT/int cleanup.
4860
4861 * doprnt.c (doprnt): EMACS_INT/int cleanup.
4862
4863 * doc.c (Fsnarf_documentation, get_doc_string): EMACS_INT/int
4864 cleanup.
4865
4866 * lisp.h: Change the definition of all marker.c functions that
4867 take and return buffer stuff to be EMACS_INT instead of int.
4868
4869 * marker.c (buf_charpos_to_bytepos, CONSIDER, set_marker_both)
4870 (buf_charpos_to_bytepos, bytepos_to_charpos)
4871 (buf_bytepos_to_charpos, Fbuffer_has_markers_at)
4872 (set_marker_restricted, set_marker_both): Convert int to EMACS_INT
4873 for all buffer positions.
4874
4875 2010-09-23 Chong Yidong <cyd@stupidchicken.com>
4876
4877 * intervals.c (traverse_intervals, rotate_right, rotate_left)
4878 (split_interval_right, find_interval, next_interval)
4879 (delete_node, delete_interval, interval_deletion_adjustment)
4880 (adjust_intervals_for_deletion, merge_interval_right)
4881 (merge_interval_left, graft_intervals_into_buffer)
4882 (copy_intervals): Convert EMACS_UINTs to EMACS_INT.
4883
4884 * intervals.h (traverse_intervals): Update prototype.
4885
4886 2010-09-23 Eli Zaretskii <eliz@gnu.org>
4887
4888 * indent.c (compute_motion): Use EMACS_INT for arguments to
4889 region_cache_forward.
4890
4891 * region-cache.c (struct boundary, struct region_cache):
4892 Use EMACS_INT for positions.
4893 (find_cache_boundary, move_cache_gap, insert_cache_boundary)
4894 (delete_cache_boundaries, set_cache_region)
4895 (invalidate_region_cache, know_region_cache)
4896 (region_cache_forward, region_cache_backward, pp_cache):
4897 Use EMACS_INT for buffer positions.
4898
4899 * region-cache.h (know_region_cache, invalidate_region_cache)
4900 (region_cache_forward, region_cache_backward): Adjust prototypes.
4901
4902 * search.c (string_match_1, fast_c_string_match_ignore_case)
4903 (looking_at_1, scan_buffer, scan_newline)
4904 (find_next_newline_no_quit, find_before_next_newline)
4905 (search_command, trivial_regexp_p, search_buffer, simple_search)
4906 (boyer_moore, wordify, Freplace_match): Use EMACS_INT for buffer
4907 and string positions and length.
4908
4909 * lisp.h (scan_buffer, scan_newline, find_next_newline_no_quit)
4910 (find_before_next_newline): Adjust prototypes.
4911
4912 * editfns.c (transpose_markers, update_buffer_properties)
4913 (buildmark, clip_to_bounds, Fgoto_char, overlays_around)
4914 (get_pos_property, Fconstrain_to_field)
4915 (Fline_beginning_position, Fline_end_position, Fprevious_char)
4916 (Fchar_after, Fchar_before, Finsert_char)
4917 (Finsert_buffer_substring, Fcompare_buffer_substrings)
4918 (Fsubst_char_in_region, Fformat, Ftranspose_regions):
4919 Use EMACS_INT for buffer and string position variables.
4920 (Finsert_char): Protect against too large insertions.
4921
4922 * lisp.h (clip_to_bounds): Adjust prototype.
4923
4924 * intervals.c (traverse_intervals, rotate_right, rotate_left)
4925 (balance_an_interval, split_interval_right, split_interval_left)
4926 (find_interval, next_interval, update_interval)
4927 (adjust_intervals_for_insertion, delete_node, delete_interval)
4928 (interval_deletion_adjustment, adjust_intervals_for_deletion)
4929 (offset_intervals, merge_interval_right, merge_interval_left)
4930 (graft_intervals_into_buffer, adjust_for_invis_intang)
4931 (move_if_not_intangible, get_local_map, copy_intervals)
4932 (copy_intervals_to_string, compare_string_intervals)
4933 (set_intervals_multibyte_1): Use EMACS_INT for buffer positions
4934 and for interval tree size.
4935
4936 * intervals.h (traverse_intervals, split_interval_right)
4937 (split_interval_left, find_interval, offset_intervals)
4938 (graft_intervals_into_buffer, copy_intervals)
4939 (copy_intervals_to_string, move_if_not_intangible, get_local_map)
4940 (update_interval): Adjust prototypes.
4941
4942 * xdisp.c (check_point_in_composition, reconsider_clip_changes):
4943 Use EMACS_INT for buffer position variables and arguments.
4944
4945 * composite.c (get_composition_id, find_composition)
4946 (run_composition_function, compose_text)
4947 (composition_gstring_width, autocmp_chars)
4948 (composition_update_it, Ffind_composition_internal): Use EMACS_INT
4949 for buffer positions and string length variables and arguments.
4950
4951 * composite.h (get_composition_id, find_composition, compose_text)
4952 (composition_gstring_width): Adjust prototypes.
4953
4954 * editfns.c (Fformat): Use EMACS_INT for string size variables.
4955
4956 * xdisp.c (store_mode_line_noprop, display_mode_element):
4957 Use EMACS_INT for string positions.
4958
4959 * intervals.c (get_property_and_range): Use EMACS_INT for buffer
4960 position arguments.
4961
4962 * intervals.h (get_property_and_range): Adjust prototype.
4963
4964 * character.c (parse_str_as_multibyte, str_as_multibyte)
4965 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
4966 (string_count_byte8, string_escape_byte8, c_string_width)
4967 (strwidth, lisp_string_width, multibyte_chars_in_text):
4968 Use EMACS_INT for string length variables and arguments.
4969
4970 * character.h (parse_str_as_multibyte, str_as_multibyte)
4971 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
4972 (c_string_width, strwidth, lisp_string_width):
4973 Adjust prototypes.
4974
4975 * font.c (font_intern_prop): Use EMACS_INT for string length
4976 variables.
4977
4978 * font.c (font_intern_prop): Use EMACS_INT for string length
4979 variables.
4980
4981 * fns.c (Fstring_as_multibyte): Use EMACS_INT for string length
4982 variables.
4983
4984 * alloc.c <total_string_size>: Declare as EMACS_INT, not int.
4985 (Fmake_string): Protect against too large strings.
4986 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
4987 (live_misc_p): Use ptrdiff_t instead of int for pointer
4988 differences.
4989 (string_bytes, check_sblock, check_string_free_list)
4990 (allocate_string_data, compact_small_strings, Fmake_string)
4991 (Fmake_bool_vector, make_string, make_unibyte_string)
4992 (make_multibyte_string, make_string_from_bytes)
4993 (make_specified_string_string, Fmake_list, Fmake_vector):
4994 Use EMACS_INT for string length variables and arguments.
4995 (find_string_data_in_pure, make_pure_string, make_pure_c_string)
4996 (Fpurecopy): Use EMACS_INT for string size.
4997 (mark_vectorlike, mark_char_table, mark_object): Use EMACS_UINT
4998 for vector size.
4999
5000 * lisp.h (make_string, make_unibyte_string, make_multibyte_string)
5001 (make_string_from_bytes, make_specified_string_string)
5002 (make_pure_string, string_bytes, check_point_in_composition):
5003 Adjust prototypes.
5004
5005 2010-09-22 Eli Zaretskii <eliz@gnu.org>
5006
5007 * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal)
5008 (check_translation): Use EMACS_INT for buffer positions and
5009 length.
5010
5011 * undo.c (record_marker_adjustment, record_delete)
5012 (record_change, record_point, record_insert)
5013 (record_property_change, Fprimitive_undo): Use EMACS_INT for
5014 buffer positions.
5015
5016 * lisp.h (record_marker_adjustment, record_delete)
5017 (record_change, record_point, record_insert)
5018 (record_property_change, Fprimitive_undo): Adjust prototypes.
5019
5020 2010-09-22 Juanma Barranquero <lekktu@gmail.com>
5021 Eli Zaretskii <eliz@gnu.org>
5022
5023 * w32.c (get_emacs_configuration_options): Fix buffer overrun.
5024
5025 2010-09-22 Eli Zaretskii <eliz@gnu.org>
5026
5027 * minibuf.c (Fminibuffer_contents)
5028 (Fminibuffer_contents_no_properties)
5029 (Fminibuffer_completion_contents): Use EMACS_INT for minibuffer
5030 positions.
5031
5032 * keyboard.c (command_loop_1): Use EMACS_INT to compare point with
5033 mark.
5034
5035 * alloc.c (make_uninit_string, make_uninit_multibyte_string)
5036 (allocate_string_data): Accept EMACS_INT for string length.
5037
5038 * editfns.c (Ffield_string, Ffield_string_no_properties)
5039 (make_buffer_string, make_buffer_string_both, Fbuffer_substring)
5040 (Fbuffer_substring_no_properties, find_field, Fdelete_field)
5041 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
5042 (Ffield_end): Use EMACS_INT for buffer positions.
5043
5044 * insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare
5045 point with mark.
5046
5047 * lisp.h (allocate_string_data, make_uninit_string)
5048 (make_uninit_multibyte_string, make_buffer_string)
5049 (make_buffer_string_both): Adjust prototypes.
5050
5051 2010-09-22 Chong Yidong <cyd@stupidchicken.com>
5052
5053 * xml.c: Switch to GNU indentation.
5054 (make_dom): Change parse tree format to match xml.el.
5055 (Fxml_parse_html_string_internal): Rename from html-parse-string.
5056 (Fxml_parse_string_internal): Rename from xml-parse-string.
5057
5058 2010-09-22 Kenichi Handa <handa@m17n.org>
5059
5060 * xdisp.c (compute_stop_pos): Call composition_compute_stop_pos
5061 only if we are not at a composition.
5062 (set_iterator_to_next): Give it->end_charpos to
5063 composition_compute_stop_pos.
5064 (set_iterator_to_next, next_element_from_buffer): Likewise.
5065
5066 * dispnew.c (buffer_posn_from_coords): Fix position when the
5067 current display element is a grapheme cluster in bidi-reordered
5068 region.
5069
5070 2010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
5071
5072 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
5073 the regions may overlap.
5074
5075 2010-09-21 Juanma Barranquero <lekktu@gmail.com>
5076
5077 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
5078
5079 2010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
5080
5081 * emacs.c: Do not include sys/ioctl.h, not needed.
5082
5083 * doprnt.c: Do not include stdlib.h, config.h does it.
5084 Move #include before macro definition.
5085
5086 2010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
5087
5088 * Makefile.in (temacs): Link using $(CC) not $(LD).
5089 (LD_FIRSTFLAG): Define using autoconf.
5090 (LD): Remove.
5091
5092 Remove HAVE_TERMIOS definitions.
5093 * s/usg5-4-common.h (HAVE_TERMIOS):
5094 * s/template.h (HAVE_TERMIOS):
5095 * s/gnu-linux.h (HAVE_TERMIOS):
5096 * s/darwin.h (HAVE_TERMIOS):
5097 * s/cygwin.h (HAVE_TERMIOS):
5098 * s/bsd-common.h (HAVE_TERMIOS):
5099 * s/aix4-2.h (HAVE_TERMIOS):
5100 * s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
5101 defined on all non-MS platforms.
5102 (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
5103
5104 * xterm.c (xt_action_hook): Use const.
5105
5106 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
5107
5108 Don't make W32 code conditional on HAVE_SOCKETS, it's always defined.
5109 * w32.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
5110 (gethostname) [!HAVE_SOCKETS]: Remove.
5111 (SOCK_REPLACE_HANDLE): Remove macro.
5112 (socket_to_fd, sys_close, _sys_read_ahead, sys_read, sys_write)
5113 (term_ntproc, init_ntproc): Don't conditionalize on HAVE_SOCKETS.
5114 * w32proc.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
5115 (syms_of_ntproc): Don't conditionalize on HAVE_SOCKETS.
5116
5117 2010-09-18 Eli Zaretskii <eliz@gnu.org>
5118
5119 * deps.mk (xml.o): Add dependencies.
5120
5121 * xdisp.c (Fcurrent_bidi_paragraph_direction):
5122 Call bidi_paragraph_init with NO_DEFAULT_P non-zero. (Bug#7038)
5123
5124 * bidi.c (bidi_paragraph_init): Accept an additional argument
5125 NO_DEFAULT_P; all callers changed. If NO_DEFAULT_P is non-zero,
5126 search back until a paragraph with a strong directional character
5127 is found, and use that to determine paragraph's base direction.
5128
5129 * dispextern.h (bidi_paragraph_init): Update prototype.
5130
5131 2010-09-17 Eli Zaretskii <eliz@gnu.org>
5132
5133 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
5134 of w32api >= 3.15. (Bug#6989)
5135
5136 2010-09-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5137
5138 * process.c (wait_reading_process_output): Don't message about
5139 accept-process-output unless the time limit really is zero.
5140
5141 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
5142
5143 * frame.c (Ftool_bar_pixel_width): YAILOM (Yet another
5144 int/Lisp_Object mixup).
5145
5146 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
5147
5148 * keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL
5149 not HELP.
5150
5151 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
5152
5153 * frame.c (Ftool_bar_pixel_width): New function to expose tool
5154 bar's pixel width to Lisp (Bug#7048).
5155
5156 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
5157
5158 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
5159
5160 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
5161
5162 * gtkutil.c (xg_pack_tool_bar): Call gtk_handle_box_set_handle_position
5163 with argument top/left if tool bar is vertical/horizontal (Bug#7051).
5164
5165 2010-09-17 Kenichi Handa <handa@m17n.org>
5166
5167 * ftfont.c (ftfont_check_otf): Fix previous change.
5168
5169 2010-09-14 Kenichi Handa <handa@m17n.org>
5170
5171 * ftfont.c (ftfont_check_otf): Fix the case of checking just
5172 existence of GSUB or GPOS.
5173
5174 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
5175
5176 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
5177
5178 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
5179
5180 * xml.c (parse_buffer): Rename to parse_string(), since that's
5181 what it does.
5182 (parse_string): Return nil when the document can't be parsed.
5183
5184 2010-09-14 Jan Djärv <jan.h.d@swipnet.se>
5185
5186 * xterm.c (get_current_vm_state): New function.
5187 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
5188 want_fullscreen so set_wm_state calls are few (Bug#7013).
5189 (x_handle_net_wm_state): Move code to get_current_vm_state and
5190 call that function.
5191
5192 2010-09-14 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
5193
5194 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
5195
5196 2010-09-14 Kenichi Handa <handa@m17n.org>
5197
5198 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
5199 we may use designation or locking-shift.
5200
5201 2010-09-14 Kenichi Handa <handa@m17n.org>
5202
5203 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
5204 sequence when the source is multibyte.
5205
5206 2010-09-14 Andreas Schwab <schwab@linux-m68k.org>
5207
5208 * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last change.
5209 Don't make first argument optional. Doc fix.
5210
5211 2010-09-14 Leo <sdl.web@gmail.com> (tiny change)
5212
5213 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
5214 parameters for the doc string.
5215
5216 2010-09-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
5217
5218 * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
5219
5220 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5221
5222 * fns.c (Fy_or_n_p): Move to lisp/subr.el.
5223 (syms_of_fns): Don't defsubr Sy_or_n_p.
5224 * lisp.h: Don't declare Fy_or_n_p.
5225 * fileio.c (barf_or_query_if_file_exists): Fy_or_n_p -> y-or-n-p.
5226
5227 2010-09-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
5228
5229 * xml.c (Fxml_parse_buffer): New function to parse XML files.
5230
5231 2010-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
5232
5233 * xml.c: New file.
5234 (Fhtml_parse_buffer): New function to interface to the libxml2
5235 html parsing function.
5236
5237 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
5238
5239 * biditype.h: Regenerate.
5240
5241 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
5242
5243 * nsimage.m (ns_load_image): Check argument types.
5244
5245 * image.c: Remove all uses of gcpro.
5246 (xpm_load): Check all lisp types.
5247 (pbm_load): Likewise.
5248 (png_load): Likewise.
5249 (jpeg_load): Likewise.
5250 (tiff_load): Likewise.
5251 (gif_load): Likewise.
5252 (imagemagick_load_image): Likewise.
5253 (imagemagick_load): Likewise.
5254 (svg_load): Likewise.
5255 (gs_load): Likewise.
5256
5257 2010-09-04 Eli Zaretskii <eliz@gnu.org>
5258
5259 * w32uniscribe.c (uniscribe_shape): Update commentary.
5260 Don't try to reorder grapheme clusters, since LGSTRING should always
5261 hold them in the logical order.
5262 (uniscribe_encode_char, uniscribe_shape): Force ScriptShape to
5263 return glyph codes in the logical order.
5264
5265 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
5266
5267 * image.c (imagemagick_image_p): Replace bcopy by memcpy.
5268 (imagemagick_load_image): Fix type mismatch.
5269 (Fimagemagick_types): Likewise. Doc fix.
5270
5271 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
5272
5273 * xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
5274
5275 * xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
5276
5277 * xselect.c: Remove declaration of cut-buffer objects and functions.
5278 (symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
5279 (x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
5280 (Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
5281 (Fx_rotate_cut_buffers_internal): Remove.
5282 (syms_of_xselect): Remove defsubr of above.
5283 Remove intern of QCUT_BUFFERn.
5284
5285 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
5286
5287 * cmds.c (Vblink_paren_function): Remove.
5288 (internal_self_insert): Make it insert N chars at a time.
5289 Don't call blink-paren-function.
5290 (Fself_insert_command): Adjust accordingly.
5291 (syms_of_cmds): Don't declare blink-paren-function.
5292
5293 2010-08-31 Kenichi Handa <handa@m17n.org>
5294
5295 * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
5296 characters.
5297
5298 * term.c (encode_terminal_code): Fix the previous change.
5299 (produce_glyphs): Don't set it->char_to_display here.
5300 Don't handle unibyte-display-via-language-environment here.
5301 (produce_special_glyphs): Set temp_it.char_to_display before
5302 calling produce_glyphs.
5303
5304 * xdisp.c (get_next_display_element): Set it->char_to_display
5305 here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit
5306 characters.
5307 (get_overlay_arrow_glyph_row): Set it.char_to_display too before
5308 calling PRODUCE_GLYPHS.
5309 (append_space_for_newline): Save and store it->char_to_display.
5310 Set it->char_to_display before calling PRODUCE_GLYPHS.
5311 (extend_face_to_end_of_line): Set it->char_to_display before
5312 calling PRODUCE_GLYPHS.
5313 (get_glyph_face_and_encoding): Set the glyph code an 8-bit
5314 character to its byte value.
5315 (get_char_glyph_code): New function.
5316 (produce_stretch_glyph): Set it2.char_to_display too before
5317 calling x_produce_glyphs.
5318 (x_produce_glyphs): Simplify by using the same code for ASCII and
5319 non-ASCII characters. Don't set it->char_to_display here.
5320 Don't handle unibyte-display-via-language-environment here. For a
5321 character of no glyph, use font->space_width instead of FONT_WIDTH.
5322
5323 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
5324
5325 * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
5326
5327 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
5328
5329 * keyboard.c (command_loop_1): Don't call x-set-selection on tty.
5330
5331 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
5332
5333 * marker.c (Fcopy_marker): Make the first arg optional.
5334
5335 2010-08-30 Kenichi Handa <handa@m17n.org>
5336
5337 * composite.c (composition_update_it): Fix computing of
5338 cmp_it->width.
5339
5340 2010-08-29 Kenichi Handa <handa@m17n.org>
5341
5342 * term.c (encode_terminal_code): Encode byte chars to the
5343 corresponding bytes.
5344
5345 2010-08-29 Jan Djärv <jan.h.d@swipnet.se>
5346
5347 * nsterm.m (ns_draw_window_cursor): Draw BAR_CURSOR correct for R2L.
5348
5349 2010-08-26 Kenichi Handa <handa@m17n.org>
5350
5351 * xdisp.c (compute_stop_pos): Pay attention to bidi scan direction
5352 on calling composition_compute_stop_pos.
5353
5354 2010-08-25 Kenichi Handa <handa@m17n.org>
5355
5356 * fontset.c (reorder_font_vector): Prefer a font-spec specifying
5357 :otf.
5358
5359 * composite.c (composition_compute_stop_pos): Don't break
5360 composition at PT.
5361 (composition_reseat_it): Likewise. Fix calculation of character
5362 position starting a composition.
5363 (Fcomposition_get_gstring): Don't limit the number of components
5364 for automatic composition.
5365
5366 2010-08-25 Kenichi Handa <handa@m17n.org>
5367
5368 * composite.c (composition_compute_stop_pos): In forward search,
5369 pay attention to the possibility that some character after ENDPOS
5370 will be composed with charactrs before ENDPOS.
5371
5372 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
5373
5374 * keyboard.c (command_loop_1): Don't clobber primary selection
5375 during handle-switch-frame (Bug#6872).
5376
5377 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
5378
5379 * dbusbind.c: Accept UNIX domain sockets as bus address.
5380 (Fdbus_close_bus): New function.
5381 (Vdbus_registered_buses): New variable.
5382 (xd_initialize): Implement string as bus address.
5383 (Fdbus_init_bus): Add bus to Vdbus_registered_buses).
5384 (Fdbus_get_unique_name, Fdbus_call_method)
5385 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
5386 (Fdbus_method_error_internal, Fdbus_send_signal)
5387 (Fdbus_register_signal, Fdbus_register_method): Remove bus type
5388 check. This is done in xd_initialize_bus. Adapt doc string, if
5389 necessary.
5390 (xd_pending_messages, xd_read_queued_messages): Loop over buses in
5391 Vdbus_registered_buses.
5392 (Vdbus_registered_objects_table): Create hash.
5393
5394 2010-08-22 Juri Linkov <juri@jurta.org>
5395
5396 * keyboard.c (Fexecute_extended_command): Move reading a command name
5397 with `completing-read' to a new Elisp function `read-extended-command'.
5398 Call it to read a command to `function' (bug#5364, bug#5214).
5399
5400 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
5401
5402 * emacs.c (main): Remove handling of --unibyte arg (Bug#6886).
5403
5404 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
5405
5406 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
5407 instead of SAFE_ALLOCA.
5408
5409 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
5410
5411 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
5412 (Bug#6214).
5413
5414 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
5415
5416 * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
5417
5418 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
5419
5420 * doc.c (Fsnarf_documentation): Initialize skip_file before
5421 build-files test.
5422
5423 2010-08-22 Peter O'Gorman <pogma@thewrittenword.com> (tiny change)
5424
5425 * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
5426 New definitions.
5427 (HAVE_TERMIO): Remove.
5428
5429 2010-08-22 Eli Zaretskii <eliz@gnu.org>
5430
5431 * deps.mk (sysdep.o, msdos.o): Depend on sysselect.h.
5432
5433 * sysselect.h [WINDOWSNT]: Don't define the FD_* and select stuff
5434 for w32.
5435
5436 * s/ms-w32.h (HAVE_SYS_TIMEB_H): Don't #undef HAVE_SYS_SELECT_H,
5437 it's done in nt/config.nt.
5438
5439 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on sysselect.h.
5440
5441 * unexcoff.c (report_error, make_hdr, write_segment)
5442 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
5443 Convert argument lists and prototypes to ANSI C.
5444 (make_hdr, write_segment): Remove unused variables.
5445 (unexec): Remove commented-out line. Initialize `new' to shut up
5446 compiler warnings.
5447
5448 2010-08-22 Dan Nicolaescu <dann@ics.uci.edu>
5449
5450 Simplify termio code.
5451 All non-MSDOS non-WINDOWSNT platforms define HAVE_TERMIOS, so
5452 HAVE_TERMIO code is obsolete.
5453 Replace HAVE_TERMIOS conditionals with !DOS_NT.
5454 * systty.h: Do not define HAVE_TCATTR.
5455 Remove HAVE_TERMIO, HAVE_LTCHARS and HAVE_TCHARS code.
5456 Do not define EMACS_HAVE_TTY_PGRP. Only define
5457 EMACS_GET_TTY_PGRP for !DOS_NT.
5458 * sysdep.c: Include sysselect.h unconditionally. Do not include
5459 sys/ioctl.h and termios.h, systty.h does it.
5460 Use HAVE_SYS_UTSNAME_H instead of USG as an include guard.
5461 (init_baud_rate): Remove HAVE_TERMIO code.
5462 (child_setup_tty): Remove HAVE_TERMIO code.
5463 (emacs_get_tty, emacs_set_tty): Remove HAVE_TERMIO, HAVE_TCHARS
5464 and HAVE_LTCHARS code. Use !DOS_NT instead of HAVE_TCATTR.
5465 (new_ltchars, new_tchars): Remove, unused.
5466 (init_sys_modes): Remove HAVE_TERMIO, HAVE_TCHARS and HAVE_LTCHARS
5467 code. Remove special casing for __mips__, it was a no-op.
5468 Remove HAVE_TCATTR conditional, it is implied by HAVE_TERMIOS.
5469 (init_sys_modes): Remove HPUX special case.
5470 * process.c: Include stdlib.h unconditionally. Do not include
5471 fcntl.h, systty.h does it. Remove conditional code for
5472 HAVE_SERIAL, it is always true.
5473 (process_send_signal): Remove HAVE_TERMIOS conditional, it's
5474 always true when SIGNALS_VIA_CHARACTERS is true.
5475 (Fcontinue_process, Fprocess_send_eof): Simplify conditionals:
5476 !WINDOWSNT means HAVE_TERMIOS.
5477 (create_process): Remove HAVE_TERMIOS, it's inside a HAVE_PTYS
5478 conditional, which is true for all HAVE_TERMIOS systems.
5479 * keyboard.c (init_keyboard): Do not use HAVE_TERMIO, use !DOS_NT
5480 instead of HAVE_TERMIOS.
5481 * emacs.c (shut_down_emacs): Use !defined DOS_NT instead of
5482 EMACS_HAVE_TTY_PGRP.
5483 * callproc.c (child_setup): Move EMACS_SET_TTY_PGRP use to the
5484 non-MSDOS, non-WINDOWSNT code, it's only defined for such systems
5485 anyway.
5486
5487 2010-08-21 Eli Zaretskii <eliz@gnu.org>
5488
5489 * dispnew.c (buffer_posn_from_coords): Fix off-by-one error in
5490 mirroring pixel positions.
5491
5492 2010-08-20 Dan Nicolaescu <dann@ics.uci.edu>
5493
5494 * alloc.c (malloc_sbrk_used, malloc_sbrk_unused): Remove,
5495 write only.
5496 (init_alloc_once): Remove writes to malloc_sbrk_unused, and
5497 malloc_sbrk_used, nothing uses them.
5498
5499 * puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
5500 defined, unconditionally defined in lisp.h.
5501
5502 * term.c: Do not include <termios.h>, systty.h does it.
5503
5504 * s/unixware.h (HAVE_TCATTR):
5505 * s/aix4-2.h (HAVE_TCATTR): Remove definitions, not needed.
5506 systty.h defines it when HAVE_TERMIOS is defined.
5507
5508 2010-08-20 Eli Zaretskii <eliz@gnu.org>
5509
5510 * dispnew.c (buffer_posn_from_coords): Fix last change for text
5511 terminals: add one-character offset for R2L lines.
5512
5513 * emacs.c <emacs_version>: Add a comment regarding
5514 msdos/mainmake.v2's dependency on the syntax of this declaration.
5515
5516 2010-08-20 Eli Zaretskii <eliz@gnu.org>
5517
5518 * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer
5519 position for R2L lines by mirroring the pixel position wrt the
5520 text are box. Improve commentary.
5521
5522 2010-08-20 Andreas Schwab <schwab@linux-m68k.org>
5523
5524 * image.c (imagemagick_clear_image): Remove debugging output.
5525
5526 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
5527
5528 * cmds.c (Vself_insert_face, Vself_insert_face_command): Remove.
5529 (Qpost_self_insert_hook, Vpost_self_insert_hook): New vars.
5530 (internal_self_insert): Run Qpost_self_insert_hook rather than handle
5531 self-insert-face.
5532 (syms_of_cmds): Initialize the new vars.
5533
5534 2010-08-19 Jason Rumney <jasonr@gnu.org>
5535
5536 * w32menu.c (set_frame_menubar): Remove call to undefined function.
5537
5538 * w32fns.c (w32_wnd_proc): Don't check context before initializing.
5539
5540 2010-08-19 Jan Djärv <jan.h.d@swipnet.se>
5541
5542 * nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".
5543
5544 2010-08-18 Eli Zaretskii <eliz@gnu.org>
5545
5546 * xterm.c (x_draw_bar_cursor):
5547 * w32term.c (x_draw_bar_cursor): If the character under cursor is
5548 R2L, draw the bar cursor on its right rather than on its left.
5549
5550 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
5551
5552 * eval.c (Fdefmacro): Only obey one declaration.
5553
5554 * casefiddle.c (casify_region): Setup gl_state.
5555
5556 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
5557
5558 * nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
5559
5560 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
5561
5562 * gtkutil.c (update_frame_tool_bar): Literal strings are const char*.
5563
5564 2010-08-18 David De La Harpe Golden <david@harpegolden.net>
5565
5566 * nsselect.m (QCLIPBOARD, NXPrimaryPboard): Define.
5567 (symbol_to_nsstring): Map QCLIPBOARD => NSGeneralPboard,
5568 QPRIMARY => NXPrimaryPboard.
5569 (ns_string_to_symbol): NSGeneralPboard => QCLIPBOARD,
5570 NXPrimaryPboard => QPRIMARY.
5571 (nxatoms_of_nsselect): NXPrimaryPboard = PrimarySelection,
5572 NXSecondaryPboard = SecondarySelection.
5573 (syms_of_nsselect): Intern QCLIPBOARD (Bug#6677).
5574
5575 2010-08-18 Joakim Verona <joakim@verona.se>
5576
5577 * image.c: Add support for ImageMagick. When HAVE_IMAGEMAGICK is
5578 defined:
5579 (imagemagick_image_p): New function to test for ImageMagic image.
5580 (imagemagick_load): New function to load ImageMagick image.
5581 (imagemagick_load_image): New function, helper for imagemagick_load.
5582 (imagemagick-types): New function.
5583 (Qimagemagick): New Lisp_object.
5584 (imagemagick-render-type): New variable, decides which renderer to use.
5585
5586 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
5587
5588 * gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
5589 is a string.
5590
5591 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
5592
5593 * nsfns.m (ns_frame_parm_handlers): Add a slot for the
5594 x_set_tool_bar_position handler.
5595
5596 2010-08-17 Eli Zaretskii <eliz@gnu.org>
5597
5598 * w32fns.c <w32_frame_parm_handlers>: Add a slot for the
5599 x_set_tool_bar_position handler, needed to support changes from
5600 2010-07-29T16:49:59Z!jan.h.d@swipnet.se for positioning the tool bar. (Bug#6796)
5601
5602 2010-08-16 Jan Djärv <jan.h.d@swipnet.se>
5603
5604 * nsselect.m: Include keyboard.h for QPRIMARY, remove its
5605 declaration (Bug#6863).
5606 (syms_of_nsselect): Don't intern QPRIMARY.
5607
5608 * xselect.c: Remove declaration of QPRIMARY (Bug#6864).
5609
5610 * keyboard.h (QPRIMARY): Declare (Bug#6864).
5611
5612 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
5613
5614 * keyboard.c (command_loop_1): Avoid setting selection twice,
5615 since it's done in deactivate-mark as well.
5616 (Vselect_active_regions): Change default to t. Replace `lazy'
5617 with non-default value `only', meaning only set PRIMARY for
5618 temporarily active regions.
5619
5620 * insdel.c (prepare_to_modify_buffer): Handle `only' value of
5621 select-active-regions.
5622
5623 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
5624
5625 * keyboard.c (parse_tool_bar_item): Put in a bad label if :label
5626 isn't a string.
5627
5628 2010-08-15 Andreas Schwab <schwab@linux-m68k.org>
5629
5630 * keyboard.c (parse_tool_bar_item): Avoid excessive use of strlen.
5631
5632 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
5633
5634 * keyboard.c (parse_tool_bar_item): malloc buf.
5635 Set TOOL_BAR_ITEM_LABEL to empty string if not set to
5636 new_lbl (Bug#6855).
5637
5638 2010-08-14 Eli Zaretskii <eliz@gnu.org>
5639
5640 * xterm.c (x_draw_stretch_glyph_string):
5641 * w32term.c (x_draw_stretch_glyph_string): In R2L rows, display
5642 the cursor on the right edge of the stretch glyph.
5643
5644 * xdisp.c (window_box_right_offset, window_box_right):
5645 Fix commentary.
5646
5647 * xdisp.c (Fcurrent_bidi_paragraph_direction): Fix paragraph
5648 direction when point is inside a run of whitespace characters.
5649
5650 * bidi.c (bidi_at_paragraph_end): Remove obsolete comment.
5651
5652 2010-08-14 Jason Rumney <jasonr@gnu.org>
5653
5654 * keyboard.c (lispy_function_keys): Do not define VK_PACKET (bug#4836)
5655
5656 2010-08-14 Chong Yidong <cyd@stupidchicken.com>
5657
5658 * fns.c (Fmake_hash_table): Doc fix (Bug#6851).
5659
5660 2010-08-13 Jason Rumney <jasonr@gnu.org>
5661
5662 * w32menu.c (simple_dialog_show): Use unicode message box if available.
5663 (MessageBoxW_Proc): New function typedef.
5664 (unicode-message-box): New function pointer.
5665 (globals_of_w32menu): Import it from user32.dll. (Bug#5629)
5666
5667 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
5668
5669 * frame.h (Qtool_bar_position): Declare.
5670
5671 * xfns.c (Fx_create_frame): Call x_default_parameter for
5672 Qtool_bar_position.
5673
5674 2010-08-13 Eli Zaretskii <eliz@gnu.org>
5675
5676 * unexcoff.c: Remove the parts used when "emacs" is not defined.
5677 (report_error, report_error_1): Ditto.
5678 (write_segment): Remove "#if 0" unused code.
5679 (make_hdr): Remove code that was "#ifndef NO_REMAP" before
5680 NO_REMAP was removed (in 2010-07-29T03:25:08Z!dann@ics.uci.edu).
5681 (start_of_text): Remove unused function (was used only if NO_REMAP
5682 was NOT defined).
5683
5684 * msdos.c (IT_set_face): Fix format string to match argument
5685 types.
5686 (IT_write_glyphs, IT_note_mode_line_highlight)
5687 (IT_set_frame_parameters): Remove unused variables.
5688 (x_set_menu_bar_lines): Declare set_menu_bar_lines.
5689 (IT_set_terminal_modes): Disambiguate expression in if clause.
5690 (Fmsdos_remember_default_colors): Return Qnil.
5691 (IT_set_frame_parameters): Add parens to disambiguate boolean
5692 expression for logging the cursor type to termscript.
5693 (keyboard_layout_list, keypad_translate_map)
5694 (grey_key_translate_map): Add braces in inner initializers.
5695 (dos_rawgetc): Add parens in condition for mouse-3 button-press.
5696 (dos_rawgetc): Remove unused label.
5697 (XMenuActivate): Add braces to remove ambiguous `else'.
5698 (dos_ttraw): Always return a value.
5699 (spawnve): Declare.
5700 (run_msdos_command): Cast 3rd arg of spawnve to "char **".
5701
5702 * dosfns.h (x_set_title): Declare.
5703
5704 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
5705 Remove unused variables.
5706
5707 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused
5708 variables.
5709 (init_dosfns): Declare get_lim_data.
5710 (system_process_attributes): Declare Fget_internal_run_time.
5711
5712 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument
5713 list to be consistent with menu.h.
5714
5715 * w32menu.c (add_menu_item, name_is_separator): Shut up compiler
5716 warnings due to mixing of "char *" and "const char *".
5717
5718 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
5719
5720 Introduce a new comment style "c" flag.
5721 * syntax.c (SYNTAX_FLAGS_COMMENT_STYLEB)
5722 (SYNTAX_FLAGS_COMMENT_STYLEC): New macros.
5723 (SYNTAX_FLAGS_COMMENT_STYLE): Use them, add an argument.
5724 (syntax_prefix_flag_p): New function.
5725 (Fstring_to_syntax): Understand new "c" flag.
5726 (Finternal_describe_syntax_value): Recognize new flag; use the
5727 SYNTAX_FLAGS_* macros.
5728 (scan_sexps_forward, Fparse_partial_sexp): Change representation of
5729 comment style to accomodate the new styles.
5730 (back_comment, forw_comment, Fforward_comment, scan_lists)
5731 (scan_sexps_forward): Update code to obey the new comment style flag.
5732
5733 * syntax.h: Move SYNTAX_FLAGS_FOO() macros to syntax.c.
5734
5735 * casefiddle.c (casify_region): Use the new syntax_prefix_flag_p.
5736
5737 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
5738
5739 * xfns.c (x_defined_color): If USE_GTK, call xg_check_special_colors
5740 first.
5741 (Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
5742
5743 * gtkutil.h (xg_check_special_colors): Declare.
5744
5745 * gtkutil.c (xg_check_special_colors, style_changed_cb): New functions.
5746 (xg_create_frame_widgets): Connect theme name changes to
5747 style_changed_cb.
5748
5749 * xterm.c (emacs_class): New char[] for EMACS_CLASS.
5750 (xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class.
5751 (x_term_init): Use char[] display_opt and name_opt instead of
5752 string literal. file is const char*.
5753
5754 * xsmfns.c (NOSPLASH_OPT): Change to char[].
5755 (smc_save_yourself_CB): Do xstrdup on all ->type and ->name for
5756 props. Free them at the end.
5757
5758 * xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "".
5759
5760 * xrdb.c (get_system_app): Make path const and use char *p for
5761 non-const char.
5762
5763 * xmenu.c (Fx_popup_dialog): error_name is const char*.
5764 (xmenu_show): error parameter is const char **. pane_string is const
5765 char *.
5766 (button_names): Is const char *.
5767 (xdialog_show): error_name and pane_string is const.
5768
5769 * process.h (synch_process_death): Is const char*.
5770
5771 * w32menu.c (w32_menu_show):
5772 * nsmenu.m (ns_menu_show): error parameter is const char **.
5773
5774 * menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter
5775 is const char **.
5776
5777 * menu.c (Fx_popup_menu): error_name is const.
5778
5779 * keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean
5780 with unsigned char and XtPointer with void *.
5781
5782 * gtkutil.h: Replace widget_value with struct _widget_value.
5783 (enum button_type, struct _widget_value): Remove and use the one from
5784 keyboard.h.
5785
5786 * gtkutil.c (get_utf8_string): Always return an allocated string.
5787 Parameter is const.
5788 (create_dialog, xg_create_one_menuitem, create_menus)
5789 (xg_item_label_same_p, xg_update_menu_item): Free result from
5790 get_utf8_string.
5791 (xg_separator_p, xg_item_label_same_p): label is const.
5792
5793 * font.h (font_open_by_name): Make name const.
5794
5795 * font.c (font_open_by_name): Make name const.
5796
5797 * floatfns.c (matherr): Use a const char* variable for x->name.
5798
5799 * emacs.c (main): Pass char[] to putenv instead of literal.
5800
5801 * callproc.c (synch_process_death): Make const.
5802 (Fcall_process): Make signame const.
5803
5804 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle)
5805 (addDisplayItemWithImage): Use const char*.
5806
5807 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle)
5808 (addDisplayItemWithImage, update_frame_tool_bar): Use const char*.
5809
5810 * nsfont.m (ns_descriptor_to_entity): Use const char*.
5811
5812 * keyboard.h (_widget_value): name, value and key are const char*.
5813
5814 * unexmacosx.c (unexec_error): Use const char *.
5815
5816 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
5817
5818 * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
5819 (font_parse_name, font_open_by_name):
5820 * font.c (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
5821 (font_parse_name, font_open_by_name): Remove const.
5822
5823 2010-08-09 Andreas Schwab <schwab@linux-m68k.org>
5824
5825 Use autoconf determined WORDS_BIGENDIAN instead of hardcoded
5826 definition.
5827
5828 * m/alpha.h: Don't define/undef WORDS_BIG_ENDIAN.
5829 * m/amdx86-64.h: Likewise.
5830 * m/arm.h: Likewise.
5831 * m/hp800.h: Likewise.
5832 * m/ia64.h: Likewise.
5833 * m/ibmrs6000.h: Likewise.
5834 * m/ibms390.h: Likewise.
5835 * m/intel386.h: Likewise.
5836 * m/iris4d.h: Likewise.
5837 * m/m68k.h: Likewise.
5838 * m/macppc.h: Likewise.
5839 * m/mips.h: Likewise.
5840 * m/sh3.h: Likewise.
5841 * m/sparc.h: Likewise.
5842 * m/template.h: Likewise.
5843 * m/vax.h: Likewise.
5844 * m/xtensa.h: Likewise.
5845 * fringe.c (init_fringe_bitmap): Test WORDS_BIGENDIAN instead of
5846 WORDS_BIG_ENDIAN.
5847 * lisp.h: Likewise.
5848 * md5.c: Likewise.
5849 * sound.c (le2hl, le2hs, be2hl, be2hs): Likewise.
5850
5851 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
5852
5853 Use const char* instead of char*.
5854 Reduce the number of warnings with -Wwrite-strings.
5855 * xrdb.c (get_environ_db, get_system_name):
5856 * unexelf.c (find_section):
5857 * term.c (string_cost, string_cost_one_line, per_line_cost)
5858 (get_named_tty, init_tty):
5859 * sysdep.c (sys_subshell):
5860 * sound.c (sound_perror, sound_warning, vox_open, vox_init)
5861 (alsa_sound_perror, alsa_open, alsa_configure, alsa_init):
5862 * search.c (Freplace_match):
5863 * process.c (Fmake_network_process, send_process, init_process):
5864 * lread.c (Fload, init_lread):
5865 * keymap.c (Fdescribe_buffer_bindings, describe_map_tree):
5866 * keyboard.c (parse_tool_bar_item, struct event_head):
5867 * gtkutil.h (xg_get_font_name):
5868 * gtkutil.c (get_dialog_title, create_dialog, xg_get_font_name)
5869 (make_widget_for_menu_item, make_menu_item, create_menus)
5870 (xg_make_tool_item):
5871 * font.c (parse_matrix, font_parse_name):
5872 * floatfns.c (rounding_driver, float_error_fn_name):
5873 * filelock.c (get_boot_time_1, lock_file_1):
5874 * fileio.c (barf_or_query_if_file_exists, check_writable):
5875 * editfns.c (get_system_name, get_operating_system_release)
5876 (Fencode_time, Fset_time_zone_rule):
5877 * dispextern.h (string_cost, per_line_cost, get_named_tty, init_tty):
5878 * buffer.c (defvar_per_buffer): Use const.
5879
5880 2010-08-08 Kenichi Handa <handa@m17n.org>
5881
5882 * charset.c: Include <stdlib.h>.
5883 (struct charset_sort_data): New struct.
5884 (charset_compare): New function.
5885 (Fsort_charsets): New function.
5886 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
5887
5888 * coding.c (decode_coding_iso_2022): Fix checking of dimension
5889 number in CTEXT extended segment.
5890
5891 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
5892
5893 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
5894 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
5895
5896 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
5897
5898 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
5899 (Fhash_table_size): Fix typos in docstrings.
5900 (Fmake_hash_table): Doc fix.
5901
5902 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
5903
5904 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
5905 Doc fix (bug#5625).
5906
5907 2010-08-08 Ken Brown <kbrown@cornell.edu>
5908
5909 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
5910 the MSDOS definition.
5911
5912 2010-08-08 Dan Nicolaescu <dann@ics.uci.edu>
5913
5914 Use const char* instead of char*.
5915 * xterm.c (x_create_toolkit_scroll_bar):
5916 * xfont.c (xfont_list_pattern):
5917 * xfns.c (x_default_scroll_bar_color_parameter)
5918 (xic_create_fontsetname, x_default_font_parameter)
5919 (x_screen_planes):
5920 * xdisp.c (c_string_pos, number_of_chars, reseat_to_string)
5921 (store_mode_line_string, decode_mode_spec, display_string):
5922 * menu.c (digest_single_submenu):
5923 * keymap.h (initial_define_key, initial_define_lispy_key):
5924 * keymap.c (initial_define_key, initial_define_lispy_key):
5925 * image.c (image_error, image_keyword):
5926 * gtkutil.h (xg_create_widget, xg_create_scroll_bar):
5927 * gtkutil.c (xg_create_widget, xg_create_scroll_bar):
5928 * ftfont.c (struct fc_charset_table, ftfont_spec_pattern)
5929 (ftfont_list, ftfont_match):
5930 * frame.c (frame_parm_table):
5931 * font.h (font_intern_prop, font_parse_xlfd, font_parse_fcname)
5932 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
5933 (font_add_log, font_deferred_log):
5934 * font.c (font_intern_prop, font_parse_xlfd, font_parse_fcname)
5935 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
5936 (font_add_log, font_deferred_log):
5937 * emacs.c (argmatch):
5938 * dispextern.h (struct it):
5939 * coding.c (ENCODE_DESIGNATION):
5940 * charset.c (define_charset_internal): Use const.
5941
5942 * s/freebsd.h (DECLARE_GETPWUID_WITH_UID_T): Remove, unused.
5943
5944 * xrdb.c: Remove include guard.
5945 Remove DECLARE_GETPWUID_WITH_UID_T conditional it had no effect.
5946 Remove #if 0 code. Replace malloc->xmalloc, free->xfree,
5947 realloc->xrealloc instead of using #defines.
5948
5949 2010-08-08 Eli Zaretskii <eliz@gnu.org>
5950
5951 * cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
5952 * editfns.c (Fline_beginning_position, Fline_end_position):
5953 State in the doc strings that start and end of line are in the
5954 logical order.
5955
5956 * xdisp.c (display_line): Move the handling of overlay arrow after
5957 the call to find_row_edges. (Bug#6699)
5958
5959 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
5960
5961 * keyboard.c (command_loop_1):
5962 * insdel.c (prepare_to_modify_buffer): Don't call validate_region.
5963
5964 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
5965
5966 * insdel.c (prepare_to_modify_buffer): Save active region text to
5967 Vsaved_region_selection.
5968
5969 * xselect.c (QPRIMARY): Move to keyboard.c.
5970
5971 * keyboard.c (Vselect_active_regions): Move from simple.el.
5972 (Vsaved_region_selection, Qx_set_selection, QPRIMARY, Qlazy): New vars.
5973 (command_loop_1): Set window selection prior to deactivating the mark.
5974
5975 2010-08-07 Juanma Barranquero <lekktu@gmail.com>
5976
5977 * alloc.c (lisp_malloc):
5978 * buffer.c (set_buffer_internal, set_buffer_internal_1):
5979 * charset.h (emacs_mule_charset):
5980 * dispextern.h (inhibit_free_realized_faces, redraw_frame)
5981 (redraw_garbaged_frames, scroll_cost, update_frame, scrolling)
5982 (bitch_at_user):
5983 * lisp.h (Fcheck_coding_system, Fget_text_property)
5984 (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize):
5985 Remove duplicate declarations.
5986
5987 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
5988
5989 * process.c: Simplify include logic.
5990
5991 * keyboard.h (quit_char): Add declaration.
5992 * process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
5993 (QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary):
5994 Add declarations.
5995 * sysdep.c:
5996 * w32.c: Remove the above declarations.
5997
5998 Remove extern declarations in .c files, .h files have them.
5999 * xterm.c:
6000 * xdisp.c:
6001 * msdos.c:
6002 * image.c:
6003 * gtkutil.c:
6004 * fileio.c:
6005 * eval.c: Remove declarations.
6006
6007 * frame.c (frame_params): Make const.
6008
6009 * lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
6010
6011 * emacs.c (emacs_copyright, emacs_version): Make static.
6012 (Vinitial_window_system, Vauto_save_list_file_name)
6013 (Vinhibit_redisplay): Remove declarations.
6014 (main): Remove HAVE_SHM code, unused. Remove _I386 conditional
6015 for AIX.
6016
6017 Use const for some arrays and functions.
6018 * xterm.h (xg_set_icon_from_xpm_data):
6019 * xfns.c (xg_set_icon_from_xpm_data):
6020 * term.c (fkeys):
6021 * keyboard.c (lispy_accent_keys, lispy_function_keys)
6022 (lispy_multimedia_keys, lispy_kana_keys, iso_lispy_function_keys)
6023 (lispy_drag_n_drop_names, scroll_bar_parts, modify_event_symbol)
6024 (frame.c frame_parms):
6025 * emacs-icon.h (gnu_xpm_bits):
6026 * callint.c (callint_argfuns): Use const.
6027
6028 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
6029
6030 * sysdep.c: Move include term.h last of includes (Bug#6812).
6031
6032 2010-08-06 Eli Zaretskii <eliz@gnu.org>
6033
6034 * dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
6035
6036 * msdos.c (IT_display_cursor): Log cursor position on termscript.
6037
6038 * .gdbinit (pgx): Display the avoid_cursor_p flag.
6039
6040 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
6041
6042 * makefile.w32-in ($(BLD)/xdisp.$(O)): Update dependencies.
6043
6044 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
6045
6046 * xterm.h (x_get_focus_frame): Declare.
6047
6048 * keyboard.h (poll_for_input_1): Unconditionally declare.
6049
6050 * nsterm.h (x_set_menu_bar_lines): Declare.
6051
6052 * window.c: Don't include menu.h, it depends on lots of other .h-files.
6053
6054 * xfaces.c (x_create_gc, x_free_gc): Convert to ANSI C prototypes.
6055
6056 * window.c: Include menu.h.
6057
6058 * unexmacosx.c (print_region_list, print_regions)
6059 (build_region_list, find_emacs_zone_regions)
6060 (unexec_regions_merge, read_load_commands, dump_it)
6061 (unexec_init_emacs_zone): Convert to ANSI C prototypes.
6062
6063 * term.c: Check HAVE_SYS_IOCTL_H.
6064
6065 * sysdep.c: Check HAVE_TERM_H.
6066
6067 * process.c: Check HAVE_UTIL_H. Include nsterm.h if HAVE_NS.
6068
6069 * nsterm.m (ns_init_paths, ns_alloc_autorelease_pool)
6070 (ns_ring_bell, ns_defined_color, hide_hourglass)
6071 (x_display_pixel_height, x_display_pixel_width, syms_of_nsterm):
6072 Convert to ANSI C prototypes.
6073 (x_set_window_size, ns_draw_fringe_bitmap, judge): Move declarations
6074 before code.
6075
6076 * nsterm.h : Include sysselect.h.
6077 (x_sync, x_get_focus_frame, x_set_mouse_position)
6078 (x_set_mouse_pixel_position, x_make_frame_visible)
6079 (x_make_frame_invisible, x_iconify_frame, x_char_width, x_char_height)
6080 (x_pixel_width, x_pixel_height, x_set_frame_alpha, x_set_tool_bar_lines)
6081 (x_activate_menubar, free_frame_menubar, ns_init_paths, ns_select)
6082 (syms_of_nsterm, syms_of_nsfns, syms_of_nsmenu, syms_of_nsselect):
6083 Declare.
6084
6085 * nsmenu.m (popup_activated, name_is_separator)
6086 (syms_of_nsmenu): Convert to ANSI C prototypes.
6087 (runMenuAt): Prototypes and move declarations before code.
6088
6089 * nsimage.m (ns_load_image): Move NSTRACE after declarations.
6090
6091 * nsfont.m (ns_fallback_entity, syms_of_nsfont): Convert to ANSI C
6092 prototypes.
6093
6094 * nsfns.m (have_menus_p, ns_display_info_for_name)
6095 (x_set_cursor_type, ns_appkit_version_str)
6096 (ns_appkit_version_int, ns_do_applescript)
6097 (x_set_scroll_bar_default_width, x_sync, compute_tip_xy)
6098 (syms_of_nsfns): Convert to ANSI C prototypes.
6099
6100 * menu.h (x_set_menu_bar_line): Declare.
6101 (free_menubar_widget_value_tree et.al): Add HAVE_NS for these functions.
6102
6103 * lisp.h (fmod_float): Declare.
6104
6105 * image.c (xpm_scan, xpm_make_color_table_v)
6106 (xpm_put_color_table_v, xpm_get_color_table_v)
6107 (xpm_make_color_table_h, xpm_put_color_table_h)
6108 (xpm_get_color_table_h, xpm_str_to_color_key, xpm_load_image)
6109 (xpm_load): Convert to ANSI C prototypes.
6110
6111 * emacs.c: Include nsterm.h if HAVE_NS.
6112
6113 * bidi.c (bidi_dump_cached_states): Fix fprintf warning.
6114
6115 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
6116
6117 * process.c: Remove HAVE_SOCKETS #ifdefs inside #ifdef
6118 subprocesses, only MSDOS does not define HAVE_SOCKETS.
6119 (socket_options): Use const char* for name.
6120
6121 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
6122
6123 Fix changes in 2010-08-05T23:15:24Z!dann@ics.uci.edu..2010-08-05T23:34:12Z!dann@ics.uci.edu for Windows build.
6124
6125 * xmenu.c [USE_X_TOOLKIT || USE_GTK]:
6126 Don't declare xmalloc_widget_value and digest_single_submenu.
6127
6128 * w32font.c (Qlatin): Remove declaration.
6129
6130 * menu.h (xmalloc_widget_value, digest_single_submenu): Declare.
6131
6132 * dired.c (compile_pattern): Restore declaration.
6133
6134 2010-08-05 Dan Nicolaescu <dann@ics.uci.edu>
6135
6136 Remove extern declarations in .c files, .h files have them.
6137 * data.c:
6138 * dired.c:
6139 * editfns.c:
6140 * filelock.c:
6141 * fns.c:
6142 * font.c:
6143 * fontset.c:
6144 * frame.c:
6145 * fringe.c:
6146 * ftfont.c:
6147 * gtkutil.c:
6148 * indent.c:
6149 * keyboard.c:
6150 * keymap.c:
6151 * lread.c:
6152 * menu.c:
6153 * print.c:
6154 * search.c:
6155 * sound.c:
6156 * window.c:
6157 * xdisp.c:
6158 * xfaces.c:
6159 * xfns.c:
6160 * xfont.c:
6161 * xftfont.c:
6162 * xmenu.c:
6163 * xterm.c: Remove declarations.
6164
6165 Cleanup syssignal.h.
6166 * syssignal.h (sighold, sigrelse, RETSIGTYPE): Remove, unused.
6167 (main_thread): Move down to remove #ifdef.
6168 (SIGMASKTYPE, SIGEMPTYMASK, SIGFULLMASK, sigmask, sigunblock):
6169 Remove conditional definition following unconditional ones.
6170
6171 * lisp.h: Remove HAVE_SHM code, unused.
6172 (QCmap, QCrehash_size, QCrehash_threshold, QCsize, QCtest)
6173 (QCweakness, Qabove_handle, Qbackquote, Qbar, Qbelow_handle)
6174 (Qborder, Qbottom, Qbox, Qcircular_list, Qcomma, Qcomma_at)
6175 (Qcomma_dot, Qcursor, Qdefault, Qdown, Qend_scroll, Qeq, Qeql)
6176 (Qequal, Qfile_exists_p, Qfont_param, Qfringe, Qfunction)
6177 (Qfunction_documentation, Qhandle, Qhbar, Qheader_line, Qhollow)
6178 (Qidentity, Qleft_margin, Qmenu, Qmenu_bar_update_hook)
6179 (Qmode_line_inactive, Qmouse, Qoverriding_local_map)
6180 (Qoverriding_terminal_local_map, Qratio, Qregion, Qright_margin)
6181 (Qscroll_bar, Qtool_bar, Qtop, Qup, Qvertical_border, Qwhen)
6182 (Qwindow_scroll_functions, Vafter_load_alist)
6183 (Vauto_save_list_file_name, Vface_alternative_font_family_alist)
6184 (Vface_alternative_font_registry_alist, Vface_font_rescale_alist)
6185 (Vface_ignored_fonts, Vinhibit_redisplay, Vminibuffer_list)
6186 (Vprint_length, Vprint_level, Vscalable_fonts_allowed)
6187 (Vshell_file_name, Vsystem_name, Vwindow_scroll_functions)
6188 (Vwindow_system_version, Vx_no_window_manager, initial_argc)
6189 (initial_argv, last_nonmenu_event, load_in_progress)
6190 (noninteractive_need_newline, scroll_margin): Add declarations.
6191
6192 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
6193 Remove declarations, menu.h has them.
6194 (QCbutton, QCtoggle, QCradio, QClabel, extra_keyboard_modifiers)
6195 (Vinput_method_function, Qinput_method_function)
6196 (Qevent_symbol_element_mask, last_event_timestamp):
6197 * dispextern.h (Voverflow_newline_into_fringe):
6198 * font.h (QCantialias, Qp, syms_of_ftfont, syms_of_xfns)
6199 (syms_of_ftxfont, syms_of_xftfont, syms_of_bdffont)
6200 (syms_of_w32font, syms_of_nsfont):
6201 * fontset.h (find_font_encoding, Qlatin):
6202 * frame.h (Qtooltip, Qrun_hook_with_args, Vmenu_bar_mode)
6203 (Vtool_bar_mode, set_frame_menubar):
6204 * ftfont.h (ftfont_font_format, ftfont_get_fc_charset):
6205 * xterm.h (Qx_gtk_map_stock):
6206 * keymap.h (meta_prefix_char): Add declarations.
6207
6208 * term.c: Remove dead code.
6209
6210 Fix emacs -Q -f server-start & emacsclient -t on GNU/Linux.
6211 * term.c (dissociate_if_controlling_tty): Use USG5 instead of
6212 USG. This is equivalent to defined (USG) && !defined (BSD_PGRPS),
6213 which is what was there before BSD_PGRPS was removed.
6214
6215 2010-08-05 Eli Zaretskii <eliz@gnu.org>
6216
6217 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
6218
6219 * unexcoff.c: Renamed from unexec.c.
6220
6221 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
6222
6223 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
6224
6225 2010-08-03 Johan Bockgård <bojohan@gnu.org>
6226
6227 * data.c (Flocal_variable_p): Handle variable aliases correctly.
6228 (Bug#6744)
6229
6230 2010-08-02 Jan Djärv <jan.h.d@swipnet.se>
6231
6232 * xterm.c (x_create_toolkit_scroll_bar): Only set XtNbeNiceToColormap
6233 to TRUE if depth of screen is < 16.
6234
6235 * gtkutil.c (hierarchy_ch_cb, qttip_cb): Do not define unless
6236 USE_GTK_TOOLTIP.
6237 (xg_prepare_tooltip): Return 0 unless USE_GTK_TOOLTIP.
6238 (xg_show_tooltip, xg_hide_tooltip): Do nothing unless USE_GTK_TOOLTIP.
6239 (xg_create_frame_widgets): Surround tooltip-related code with ifdef
6240 USE_GTK_TOOLTIP.
6241 (xg_free_frame_widgets): Don't delete ttip_* unless USE_GTK_TOOLTIP.
6242
6243 * xterm.h (USE_GTK_TOOLTIP): New define.
6244 (struct x_output): Put ttip_* inside ifdef USE_GTK_TOOLTIP.
6245
6246 * sysdep.c (child_setup_tty): Enable ICANON in lflags and set VEOF
6247 to Control-D (Bug#6771).
6248
6249 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
6250
6251 * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
6252 Wording by Drew Adams <drew.adams@oracle.com>.
6253
6254 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
6255
6256 * xterm.h (struct x_output): Add ttip_widget, ttip_window and
6257 ttip_lbl.
6258
6259 * xterm.c (x_clear_frame): Check FRAME_GTK_WIDGET (f) before
6260 calling gtk_widget_queue_draw.
6261 (x_free_frame_resources): Call xg_free_frame_widgets.
6262
6263 * xfns.c (x_gtk_use_system_tooltips): New variable.
6264 (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call
6265 new gtkutil tooltip functions to show the tooltip.
6266 (Fx_hide_tip): Call xg_hide_tooltip.
6267 (syms_of_xfns): Defvar x-gtk-use-system-tooltips.
6268
6269 * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip)
6270 (xg_show_tooltip, xg_hide_tooltip): Declare.
6271
6272 * gtkutil.c (hierarchy_ch_cb, qttip_cb, xg_prepare_tooltip)
6273 (xg_show_tooltip, xg_hide_tooltip, xg_free_frame_widgets):
6274 New functions.
6275 (xg_create_frame_widgets): Set ttip_* to 0. Set a dummy tooltip
6276 text so qttip_cb is called. Connect query-tooltip to qttip_cb.
6277 Remove code that is commented out.
6278
6279 2010-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
6280
6281 * keymap.c (Fdefine_key, Flookup_key): Say what event is invalid.
6282
6283 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
6284
6285 * xselect.c (x_own_selection): Use list4.
6286
6287 2010-07-30 Dan Nicolaescu <dann@ics.uci.edu>
6288
6289 * buffer.c (Qwindow): Do not define, already defined in data.c.
6290 (syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
6291
6292 2010-07-29 Chad Brown <yandros@mit.edu>
6293
6294 Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf.
6295 * dired.c, sysdep.c: Test HAVE_DIRENT_H instead of SYSV_SYSTEM_DIR.
6296 * config.in: Undef HAVE_DIRENT_H.
6297 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h,
6298 * s/msdos.h, s/usg5-4.h: Don't define SYSV_SYSTEM_DIR.
6299
6300 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6301
6302 Rename s/usg5-4.h -> s/usg5-4-common.h.
6303 * s/usg5-4.h: Rename file to ...
6304 * s/usg5-4-common.h: ... this for consistency with what we do for BSD.
6305 * s/unixware.h:
6306 * s/sol2-6.h:
6307 * s/irix6-5.h: Update includes accordingly.
6308
6309 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
6310
6311 * xfns.c (x_set_tool_bar_position): Remove debug fprintf.
6312
6313 * xterm.h (struct x_output): Add toolbar_top_height,
6314 toolbar_bottom_height, toolbar_left_width, toolbar_right_width.
6315 Remove toolbar_height.
6316 If USE_GTK: Add hbox_widget and toolbar_in_hbox.
6317 (FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
6318 (FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
6319 (FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
6320
6321 * xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
6322
6323 * xfns.c (x_set_tool_bar_position): New function.
6324 (xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
6325 (x_frame_parm_handlers): Add x_set_tool_bar_position.
6326 (syms_of_xfns): If USE_GTK, provide move-toolbar.
6327
6328 * window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
6329 and FRAME_TOOLBAR_LEFT_WIDTH.
6330
6331 * gtkutil.h (xg_change_toolbar_position): Declare.
6332
6333 * gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
6334 (xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
6335 (xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
6336 (xg_create_frame_widgets): Create a hobox for placing widgets
6337 vertically. Use gtk_box_pack_start.
6338 (xg_height_or_width_changed): Rename from xg_height_changed.
6339 (x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
6340 (xg_update_frame_menubar, free_frame_menubar): Change to
6341 xg_height_or_width_changed.
6342 (xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
6343 size correctly. Remove hardcoded 4, instead use handlebox size -
6344 toolbar size.
6345 (xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
6346 size correctly. Use handlebox size + toolbar size as additional size.
6347 (xg_pack_tool_bar): POS is a new parameter.
6348 Set orientation of tool bar based on pos.
6349 Only make handlebox_widget if NULL.
6350 Check if tool bar goes to vbox or hbox depending on pos.
6351 (xg_update_tool_bar_sizes): New function.
6352 (update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
6353 height, call xg_update_tool_bar_sizes instead.
6354 (free_frame_tool_bar): Remove from hbox or vbox depending on
6355 toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
6356 (xg_change_toolbar_position): New function.
6357
6358 * frame.h (struct frame): Add tool_bar_position.
6359 (Qbottom): Declare.
6360
6361 * frame.c (Qtool_bar_position): New variable.
6362 (make_frame): Set tool_bar_position to Qtop.
6363 (frame_parms): Add tool-bar-position.
6364 (x_report_frame_params): Store tool_bar_position.
6365 (x_set_fringe_width): Reset wm size hint after fringe changes.
6366
6367 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6368
6369 Make lisp_time_argument declaration work on all systems.
6370 * lisp.h (lisp_time_argument): Move declaration ...
6371 * systime.h (lisp_time_argument): ... here
6372 * editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
6373
6374 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
6375
6376 * vm-limit.c (POINTER): Add typedef for it.
6377 (start_of_data): Change return type from POINTER to char *.
6378
6379 * frame.h (Qtty_color_mode): Move declaration out of ifdef
6380 HAVE_WINDOW_SYSTEM.
6381
6382 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6383
6384 * vm-limit.c: Do not include sys/resource.h, mem-limits.h does it.
6385 Remove reference to __osf__, unused.
6386
6387 * mem-limits.h: Remove duplicated includes.
6388 (NULL): Remove definition, unused.
6389 (POINTER): Remove definition.
6390 (start_of_data): Use char* in prototype, as the function
6391 definition does.
6392
6393 Remove extern declarations from .c files, and them to .h files.
6394 * keyboard.h (Qhelp_echo, waiting_for_input)
6395 (input_available_clear_time, ignore_mouse_drag_p)
6396 (Vdouble_click_time, real_this_command, Vthis_original_command):
6397 * keymap.h (Qremap, Qmenu_item, Voverriding_local_map)
6398 (Voverriding_local_map_menu_flag):
6399 * lisp.h (Qinteractive_form, use_file_dialog)
6400 (Qcursor_in_echo_area, QCascent, QCmargin, QCrelief, Qcount)
6401 (Qextension_data, QCconversion, QCcolor_symbols, QCheuristic_mask)
6402 (QCindex, QCmatrix, QCcolor_adjustment, QCmask)
6403 (Qrisky_local_variable, map_char_table_for_charset, Vprint_level)
6404 (Qfunction, debug_on_next_call, Qfield)
6405 (Vinhibit_field_text_motion, Vuser_login_name, lisp_time_argument)
6406 (Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string)
6407 (Qfile_directory_p, Qinsert_file_contents)
6408 (Qcompletion_ignore_case, Qcompletion_ignore_case)
6409 (Vcompletion_regexp_list, Vhistory_length, completion_ignore_case)
6410 (history_delete_duplicates, minibuffer_auto_raise, Qonly)
6411 (Qfile_name_handler_alist, Qfront_sticky, Qrear_nonsticky)
6412 (Qminibuffer_prompt)
6413 (Vtemporary_file_directory,char_ins_del_vector, Qface):
6414 * xterm.h (gray_bitmap_width, gray_bitmap_height)
6415 (gray_bitmap_bits, xic_create_fontsetname):
6416 * coding.h (Vtranslation_table_for_input): Add extern declarations.
6417
6418 * xsmfns.c (Vuser_login_name):
6419 * xrdb.c (Vdouble_click_time):
6420 * xfaces.c (xic_create_fontsetname):
6421 * w32select.c (waiting_for_input):
6422 * print.c (minibuffer_auto_raise):
6423 * msdos.c (Qhelp_echo):
6424 * macros.c (real_this_command):
6425 * keymap.c (Voverriding_local_map):
6426 * xterm.c (poll_for_input_1, gray_bitmap_width)
6427 (gray_bitmap_height, gray_bitmap_bits;
6428 * xmenu.c ( Voverriding_local_map)
6429 (Voverriding_local_map_menu_flag; Qmenu_item; use_dialog_box)
6430 (use_file_dialog, Xt_app_con):
6431 * xdisp.c (minibuffer_auto_raise, Voverriding_local_map)
6432 (Voverriding_local_map_menu_flag, Qmenu_item, Qface, Qinvisible)
6433 (Qwidth, Qinvisible, Qwindow, Qpriority, Qtool_bar_lines)
6434 (Qtool_bar_lines, ignore_mouse_drag_p):
6435 * minibuf.c (Voverriding_local_map, Qfield, Qfront_sticky)
6436 (Qrear_nonsticky, nconc2):
6437 * keyboard.c (current_global_map, minibuf_level, Qmenu_item)
6438 (Vhistory_length, Vtranslation_table_for_input, Qcomposition)
6439 (Qdisplay, Qafter_string, Qbefore_string, Qundefined):
6440 * fileio.c (use_dialog_box, use_file_dialog, Vuser_login_name)
6441 (minibuf_level, minibuffer_auto_raise, lisp_time_argument):
6442 * eval.c (Qinteractive_form, Qrisky_local_variable, Qfunction)
6443 (gc_in_progress):
6444 * doc.c (Voverriding_local_map, Qremap):
6445 * dired.c (completion_ignore_case, Qcompletion_ignore_case)
6446 (Vcompletion_regexp_list):
6447 * coding.c (Qmac, Qinsert_file_contents, Qwrite_region)
6448 (Qcompletion_ignore_case):
6449 * callint.c (Qcursor_in_echo_area, Qfile_directory_p, Qonly)
6450 (Vhistory_length, Vthis_original_command, real_this_command)
6451 (Qface, Qminibuffer_prompt, history_delete_duplicates):
6452 * image.c (Qrisky_local_variable):
6453 * fontset.c (QCname):
6454 * fns.c (minibuffer_auto_raise, QCname):
6455 * dispnew.c (char_ins_del_cost):
6456 * composite.c (font_fill_lglyph_metrics):
6457 * cmds.c (Qface, Vtranslation_table_for_input):
6458 * charset.c (map_char_table_for_charset, Qfile_name_handler_alist):
6459 * ccl.c (charset_unicode):
6460 * callproc.c (Vtemporary_file_directory):
6461 * buffer.c (emacs_strerror): Remove extern declarations.
6462
6463 * data.c (Qwindow): Make non-static, used from other files too.
6464 * frame.c (validate_x_resource_name): Remove shadow definition for i.
6465
6466 * unexec.c (make_hdr): Remove references to NO_REMAP, COFF,
6467 SEGMENT_MASK, SECTION_ALIGNMENT, ADJUST_EXEC_HEADER.
6468 * s/usg5-4.h (COFF):
6469 * s/template.h:
6470 * s/msdos.h (COFF, NO_REMAP):
6471 * s/ms-w32.h (NO_REMAP):
6472 * s/hpux10-20.h (NO_REMAP):
6473 * m/sparc.h (SEGMENT_MASK):
6474 * m/m68k.h (NO_REMAP):
6475 * m/intel386.h (SEGMENT_MASK):
6476 * m/arm.h (NO_REMAP):
6477 * m/alpha.h (COFF):
6478 * m/template.h: Remove references to unused defines.
6479
6480 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
6481
6482 * xsettings.c (Ftool_bar_get_system_style): Also check for
6483 Qtext_image_horiz.
6484
6485 * xdisp.c (Qtext_image_horiz): Define.
6486 (syms_of_xdisp): Initialize Qtext_image_horiz. Add text-image-horiz
6487 to documentation of tool-bar-style.
6488
6489 * lisp.h (Qtext_image_horiz): Declare.
6490
6491 * gtkutil.c (xg_make_tool_item, xg_show_toolbar_item): Handle tool bar
6492 style text_image_horiz.
6493
6494 2010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
6495
6496 * emacs.c (Fkill_emacs): Remove return statement.
6497
6498 * term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
6499 (encode_terminal_code, produce_composite_glyph): Remove unused variables.
6500 (set_tty_color_mode, term_mouse_highlight, term_get_fkeys):
6501 Remove local extern declarations.
6502
6503 * xmenu.c: Do not included lwlib.h, not needed.
6504
6505 * m/iris4d.h (XUINT, XSET): Remove, not needed.
6506
6507 * process.c: Move definitions earlier to minimize #ifdefs.
6508
6509 * xterm.h (x_get_customization_string, x_load_resources)
6510 (x_get_resource, x_text_icon, x_text_icon, x_check_errors)
6511 (x_check_errors, x_property_data_to_lisp, defined_color)
6512 (xic_set_xfontset, x_defined_color): Use const.
6513
6514 * xterm.c (xlwmenu_window_p, xlwmenu_redisplay): Remove declarations.
6515 (x_text_icon, x_check_errors, x_connection_closed): Use const.
6516
6517 * xselect.c (selection_data_to_lisp_data)
6518 (x_property_data_to_lisp):
6519 * xrdb.c (x_get_string_resource, file_p)
6520 (x_get_customization_string, magic_file_p, search_magic_path)
6521 (get_system_app, get_user_app, x_load_resources, x_get_resource)
6522 (x_get_string_resource): Use const.
6523
6524 * xfns.c: Include xlwmenu.h when USE_LUCID.
6525 (x_defined_color, xic_set_xfontset): Use const.
6526 (Fx_hide_tip): Remove local extern declaration.
6527
6528 * xfaces.c (Qmouse_face): Remove declaration.
6529 (face_color_gray_p, tty_defined_color, defined_color)
6530 (face_color_gray_p, face_color_supported_p): Add const.
6531
6532 * xdisp.c (do_mouse_tracking): Remove declaration.
6533 (add_to_log): Use const.
6534
6535 * minibuf.c (Qmouse_face): Remove declaration.
6536
6537 * msdos.c (IT_note_mouse_highlight): Remove local extern declaration.
6538
6539 * keyboard.h (do_mouse_tracking): Add declaration.
6540
6541 * image.c (QCwidth, QCheight, QCforeground, QCbackground, QCfile)
6542 (QCdata, QCtype, Qcenter): Remove declarations.
6543
6544 * frame.c (x_get_resource_string, x_get_string_resource)
6545 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
6546 (x_default_parameter): Use const.
6547
6548 * font.c (Qnormal, QCtype, QCfamily, QCweight, QCslant, QCwidth)
6549 (QCheight, QCsize, QCname): Remove declarations.
6550
6551 * emacs.c (main): Remove local extern declaration.
6552
6553 * editfns.c (region_limit, syms_of_editfns): Remove local extern
6554 declarations.
6555
6556 * dispnew.c: Remove duplicate #include <unistd.h>.
6557 (update_window, update_frame_1, init_display): Remove local extern
6558 declarations.
6559
6560 * dispextern.h (add_to_log): Remove declaration.
6561 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
6562 (x_frame_get_and_record_arg, x_default_parameter): Add const.
6563
6564 * dired.c (scmp): Add const.
6565 (directory_files_internal): Remove local extern declaration.
6566
6567 * data.c (Finteractive_form): Use const.
6568
6569 * composite.c (syms_of_composite): Remove local extern declarations.
6570
6571 * charset.c (add_to_log): Remove declaration.
6572
6573 * character.c (strwidth, parse_str_to_multibyte): Add const.
6574
6575 * character.h (strwidth, parse_str_to_multibyte): Likewise.
6576
6577 * buffer.c (Fset_buffer_multibyte): Remove local extern declaration.
6578
6579 * lisp.h (Fkill_emacs): Mark as NO_RETURN.
6580 (Lisp_Subr): Make doc and intspec constant.
6581 (QCsize, Qspace, Qcenter, QCalign_to, QCdata, QCfile, QCtype)
6582 (Qlocal, Qapply, Qnormal, QCfamily, QCweight, QCslant, QCwidth)
6583 (QCheight, QCsize, QCname, QCwidth, QCforeground)
6584 (QCbackground, add_to_log, stack_base, Vmark_even_if_inactive)
6585 (display_arg): Add declarations.
6586
6587 2010-07-27 Christoph Scholtes <cschol2112@gmail.com>
6588
6589 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
6590
6591 * window.c (Fwindow_height): Doc fix (bug#6518).
6592
6593 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
6594
6595 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
6596
6597 2010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
6598
6599 * keyboard.c (Ftop_level, Fexit_recursive_edit)
6600 (Fabort_recursive_edit): Remove return statements in NO_RETURN
6601 functions.
6602
6603 * frame.h (Qtty_color_mode): Add declaration.
6604
6605 * lisp.h (Ftop_level, Fexit_recursive_edit)
6606 (Fabort_recursive_edit): Mark as NO_RETURN.
6607
6608 2010-07-26 Kenichi Handa <handa@m17n.org>
6609
6610 * font.c (Ffont_shape_gstring): Terminate GSTRING by nil if the
6611 number of glyphs gets smaller than the original length. (Bug#6621)
6612
6613 2010-07-26 Juanma Barranquero <lekktu@gmail.com>
6614
6615 * lread.c (unreadpure, mapatoms_1): Make static.
6616
6617 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
6618
6619 * terminfo.c (tparam): Fix prototype of tparm.
6620
6621 2010-07-25 Andreas Schwab <schwab@linux-m68k.org>
6622
6623 * emacs.c (main) [PROFILING]: Use __executable_start if defined to
6624 find start of text segment.
6625 * dispnew.c (safe_bcopy): Don't define if HAVE___EXECUTABLE_START
6626 is defined.
6627
6628 * callproc.c (set_initial_environment): Avoid unbalanced braces.
6629
6630 2010-07-25 Ken Brown <kbrown@cornell.edu>
6631
6632 * vm-limit.c (check_memory_limits): Fix previous change;
6633 accidentally reverted an earlier change.
6634
6635 2010-07-25 Ken Brown <kbrown@cornell.edu>
6636
6637 * mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
6638 * vm-limit.c: ...add 'defined (CYGWIN)' here (Bug#6715).
6639
6640 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
6641
6642 * callproc.c (relocate_fd): Set inside #ifndef WINDOWSNT.
6643 * dired.c (opendir, readdir): Fix prototypes.
6644 * editfns.c (w32_get_internal_run_time): Fix prototypes.
6645 * keyboard.c (input_available_signal): Declare inside #ifdef SIGIO.
6646 * ndir.h (opendir, readdir, seekdir, closedir): Fix prototypes.
6647 (telldir): Remove declaration.
6648 * ralloc.c (real_morecore, __morecore): Fix prototypes.
6649 * sound.c (alsa_sound_perror): Declare inside #ifdef HAVE_ALSA.
6650 * syssignal.h (strsignal): Fix prototype.
6651 * term.c (tparam): Fix prototype.
6652 (term_get_fkeys_address, term_get_fkeys_kboard, term_get_fkeys_1)
6653 (term_get_fkeys): Set inside "#ifndef DOS_NT".
6654 * vm-limit.c (check_memory_limits): Fix prototypes of real_morecore
6655 and __morecore.
6656 * w32gui.h (XParseGeometry): Fix prototype.
6657 * w32heap.h (get_data_start, get_data_end, init_heap): Fix prototypes.
6658 * w32term.c (my_set_focus): Declare inside #if 0.
6659 * w32term.h (x_window_to_frame, x_display_info_for_name, w32_term_init)
6660 (w32_fill_rect, w32_clear_window, init_crit, delete_crit, signal_quit)
6661 (drain_message_queue, get_next_msg, post_msg, parse_button)
6662 (ClipboardSequence_Proc): Fix prototypes.
6663 (wait_for_sync): Remove declaration.
6664
6665 2010-07-24 Juanma Barranquero <lekktu@gmail.com>
6666
6667 * w32fns.c (w32_to_x_color): Remove, unused.
6668
6669 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
6670
6671 * lisp.h: Remove leftover P_.
6672
6673 2010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
6674
6675 * ecrt0.c, unexalpha.c: Remove files, unused.
6676
6677 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
6678
6679 * cmds.c (internal_self_insert): Make static.
6680 * lisp.h (internal_self_insert): Remove declaration.
6681
6682 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
6683
6684 * alloc.c (free_float):
6685 * font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse):
6686 * frame.c (delete_frame_handler):
6687 * ralloc.c (reorder_bloc):
6688 * w32menu.c (menubar_id_to_frame, add_left_right_boundary):
6689 Remove unused static functions.
6690
6691 * menu.c (cleanup_popup_menu): Set inside "#ifdef HAVE_NS";
6692 it is called only from NS code.
6693
6694 * w32term.c (my_set_focus): #ifdef away; it is called only from
6695 "#ifdef 0" code.
6696
6697 * w32fns.c (x_edge_detection):
6698 * xfaces.c (may_use_scalable_font_p):
6699 Remove obsolete static declarations.
6700
6701 2010-07-20 Juanma Barranquero <lekktu@gmail.com>
6702
6703 * alloc.c (emacs_blocked_free, emacs_blocked_malloc)
6704 (emacs_blocked_realloc, uninterrupt_malloc):
6705 * fringe.c (w32_reset_fringes):
6706 * image.c (convert_mono_to_color_image, lookup_rgb_color)
6707 (init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
6708 * sound.c (be2hs, do_play_sound):
6709 * vm-limit.c (get_lim_data, ret_lim_data):
6710 * w32term.c (x_free_frame_resources):
6711 * xfaces.c (x_create_gc, x_free_gc):
6712 Convert definitions to standard C.
6713
6714 2010-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
6715
6716 * eval.c (Feval, Ffuncall): Use the new names.
6717
6718 * lisp.h (struct Lisp_Subr): Rename `am' to aMANY and add aUNEVALLED.
6719 (DEFUN): Add braces around the union initialisation and use ## to
6720 specify the right union alternative and avoid a cast.
6721
6722 2010-07-18 Juanma Barranquero <lekktu@gmail.com>
6723
6724 * makefile.w32-in ($(BLD)/keyboard.$(O)): Update dependencies.
6725
6726 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
6727
6728 * frame.c (make_initial_frame): Use set_menu_bar_lines (Bug#6660).
6729
6730 2010-07-17 Jan Djärv <jan.h.d@swipnet.se>
6731
6732 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
6733 is related to the menu bar (Bug#6499).
6734 (xg_frame_resized): GTK_IS_MAPPED => gtk_widget_get_mapped, for Gtk 3.0.
6735
6736 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
6737
6738 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
6739
6740 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
6741
6742 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
6743 i.e. don't put back ButtonRelease (Bug#6608).
6744
6745 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
6746 instead of Window. Call xg_event_is_for_menubar when
6747 USE_GTK (Bug#6499).
6748
6749 * gtkutil.h (xg_event_is_for_menubar): Declare.
6750
6751 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
6752
6753 2010-07-16 Eli Zaretskii <eliz@gnu.org>
6754
6755 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
6756 when it's the same as the old foreground. (Bug#6609)
6757
6758 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
6759
6760 * xmenu.c (free_frame_menubar): Only call x_set_window_size if
6761 widget is non-null (Bug#6645).
6762
6763 2010-07-15 Andreas Schwab <schwab@linux-m68k.org>
6764
6765 * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font):
6766 Convert old-style definition.
6767
6768 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
6769 timestamp argument.
6770
6771 2010-07-15 Eli Zaretskii <eliz@gnu.org>
6772
6773 * fringe.c (update_window_fringes): Restore mistakenly reverted
6774 code from 2010-04-17T12:33:05Z!eliz@gnu.org merged in 2010-04-20T13:31:28Z!eliz@gnu.org.
6775
6776 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
6777
6778 * xterm.c (xm_scroll_callback, x_process_timeouts): K&R => prototype.
6779 (SET_SAVED_KEY_EVENT): Remove (not used).
6780 (SET_SAVED_MENU_EVENT): Rename to SET_SAVED_BUTTON_EVENT and
6781 remove size parameter.
6782 (handle_one_xevent): Check popup_activated () for menu for Xt also.
6783 Remove #ifdef USE_GTK around finish = X_EVENT_DROP.
6784 Remove #ifdef USE_MOTIF code that did SET_SAVED_BUTTON_EVENT for
6785 ButtonRelease.
6786 (x_set_window_size_1): scroll_bar_actual_width is always
6787 SCROLL_BAR_COLS * COLUMN_WIDTH for the purpose of frame sizing.
6788
6789 * xdisp.c (pending_menu_activation): Remove extern declaration.
6790 (prepare_menu_bars): Remove setting of pending_menu_activation.
6791
6792 * xmenu.c (pending_menu_activation): Remove.
6793 (x_activate_menubar): Set popup_activated_flag for Xt also.
6794 Remove setting of pending_menu_activation.
6795 (set_frame_menubar): Remove check of pending_menu_activation.
6796 Declare menubar_size before code. Correct spelling in comment.
6797
6798 2010-07-14 Kenichi Handa <handa@m17n.org>
6799
6800 * font.c (font_open_entity): Cancel previous change.
6801 (Ffont_get): Don't check FONT_ENTITY_INDEX of a font-object.
6802
6803 2010-07-13 Eli Zaretskii <eliz@gnu.org>
6804
6805 Remove subprocesses #ifdefs.
6806 * process.c <inhibit_sentinels>: Move to the common part.
6807 (Fwaiting_for_user_input_p): Move to the common part; return nil
6808 if async subprocesses aren't supported.
6809 * sysdep.c (wait_for_termination) [!MSDOS]: Don't compile on
6810 MS-DOS. Remove "#ifdef subprocesses".
6811 (sys_subshell, sys_select): Remove "#ifdef subprocesses".
6812 (gettimeofday): Remove "#ifdef subprocesses".
6813 (wait_without_blocking): Remove function.
6814 (flush_pending_output, child_setup_tty): Don't compile on MS-DOS.
6815 Remove "#ifdef subprocesses".
6816 (child_setup_tty): Use WINDOWSNT instead of DOS_NT, since not
6817 compiled on MS-DOS.
6818 * callproc.c (Fcall_process) [!MSDOS]: Don't call
6819 wait_for_termination on MS-DOS.
6820 * emacs.c (shut_down_emacs): Remove "#ifndef subprocesses" from
6821 initialization of inhibit_sentinels.
6822 * keyboard.c (record_asynch_buffer_change): Remove "#ifdef
6823 subprocesses" conditional.
6824 * callproc.c (Fcall_process) [!subprocesses]: Don't call
6825 wait_for_termination, since `buffer' cannot be an integer when
6826 async subprocesses are not supported
6827 * xdisp.c (decode_mode_spec): Use `MSDOS' instead of `subprocesses'
6828 for ifdefing away the call to Fprocess_status.
6829
6830 * process.c (add_keyboard_wait_descriptor) [!subprocesses]: Ifdef
6831 away the entire body of the function.
6832
6833 2010-07-13 Dan Nicolaescu <dann@ics.uci.edu>
6834
6835 Remove subprocesses #ifdefs from term.c.
6836 * process.c (add_keyboard_wait_descriptor)
6837 (delete_keyboard_wait_descriptor): Move to common section, do
6838 nothing when subprocesses is not defined.
6839 * term.c (Fsuspend_tty, Fresume_tty, init_tty):
6840 Remove subprocesses #ifdefs.
6841
6842 Convert maybe_fatal to standard C.
6843 * lisp.h (verror): Declare.
6844 * eval.c (verror): New function containing the code from ...
6845 (error): ... this. Call verror.
6846 * term.c (vfatal): New function containing the code from ...
6847 (fatal): ... this. Call vfatal.
6848 (maybe_fatal): Convert to standard C, use variable number of
6849 arguments. Declare as non-return.
6850 (init_tty): Fix maybe_fatal call.
6851
6852 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6853
6854 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose)
6855 (_scroll_bar_note_movement): Convert definitions to standard C.
6856 * xmenu.c (menu_help_callback, pop_down_menu, xmenu_show):
6857 * xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
6858
6859 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6860
6861 * xterm.c (x_frame_of_widget, x_alloc_nearest_color_for_widget)
6862 (x_alloc_lighter_color_for_widget, cvt_string_to_pixel)
6863 (cvt_pixel_dtor, x_window_to_menu_bar, xt_action_hook)
6864 (xaw_jump_callback, xaw_scroll_callback)
6865 (x_create_toolkit_scroll_bar, x_set_toolkit_scroll_bar_thumb)
6866 (x_wm_set_size_hint, x_activate_timeout_atimer):
6867 Convert definitions to standard C.
6868 * xmenu.c (menubar_id_to_frame, popup_get_selection)
6869 (popup_activate_callback, popup_deactivate_callback)
6870 (menu_highlight_callback, menubar_selection_callback)
6871 (apply_systemfont_to_dialog, apply_systemfont_to_menu)
6872 (free_frame_menubar, popup_selection_callback, as)
6873 (create_and_show_popup_menu, dialog_selection_callback)
6874 (create_and_show_dialog):
6875 * xfns.c (hack_wm_protocols, x_window):
6876 * xfaces.c (x_update_menu_appearance):
6877 * widget.c (get_default_char_pixel_size, pixel_to_char_size)
6878 (char_to_pixel_size, round_size_to_char, get_wm_shell)
6879 (set_frame_size, update_wm_hints, setup_frame_gcs)
6880 (update_various_frame_slots, update_from_various_frame_slots)
6881 (EmacsFrameInitialize, EmacsFrameRealize, EmacsFrameResize)
6882 (EmacsFrameSetValues, EmacsFrameQueryGeometry)
6883 (EmacsFrameSetCharSize, widget_store_internal_border): Likewise.
6884
6885 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6886
6887 * dbusbind.c (xd_initialize): Don't compare boolean with a constant.
6888
6889 2010-07-12 Eli Zaretskii <eliz@gnu.org>
6890
6891 * process.c (setup_process_coding_systems): Move to the part
6892 shared by non-subprocesses systems, and make its body empty when
6893 subprocesses is not defined.
6894 (close_process_descs): Move to the part shared by non-subprocesses
6895 systems.
6896 (wait_reading_process_output) [!subprocesses]: Convert arg list to
6897 ANSI C.
6898
6899 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6900
6901 * editfns.c (transpose_markers): Convert old-style definition.
6902 * emacs.c (abort, shut_down_emacs, fixup_locale)
6903 (synchronize_system_time_locale)
6904 (synchronize_system_messages_locale, syms_of_emacs): Likewise.
6905 * floatfns.c (extract_float, matherr, init_floatfns)
6906 (syms_of_floatfns): Likewise.
6907 * fns.c (make_hash_table): Likewise.
6908 * ftfont.c (ftfont_get_otf, ftfont_otf_features)
6909 (ftfont_otf_capability, ftfont_get_glyph_id, ftfont_get_metrics)
6910 (ftfont_drive_otf, ftfont_shape_by_flt, ftfont_shape)
6911 (ftfont_variation_glyphs): Likewise.
6912 * gtkutil.c (xg_create_widget, xg_modify_menubar_widgets): Likewise.
6913 * keymap.c (describe_map_tree, describe_map, describe_vector): Likewise.
6914 * lread.c (read_filtered_event): Likewise.
6915 * minibuf.c (read_minibuf_noninteractive, read_minibuf): Likewise.
6916 * process.c (wait_reading_process_output): Likewise.
6917 * scroll.c (do_line_insertion_deletion_costs): Likewise.
6918 * search.c (search_buffer, boyer_moore): Likewise.
6919 * syntax.c (scan_sexps_forward): Likewise.
6920 * xdisp.c (try_scrolling): Likewise.
6921 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
6922 (face_at_string_position): Likewise.
6923 * xfns.c (x_default_scroll_bar_color_parameter): Likewise.
6924 * xselect.c (x_get_window_property, receive_incremental_selection)
6925 (x_get_window_property_as_lisp_data, lisp_data_to_selection_data):
6926 Likewise.
6927 * xterm.c (x_draw_relief_rect, x_draw_box_rect): Likewise.
6928
6929 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6930
6931 * callproc.c (child_setup): Remove subprocesses conditional.
6932 Remove code dealing with SET_EMACS_PRIORITY, unused.
6933
6934 * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
6935 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
6936
6937 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
6938 (__do_global_dtors, __main): Use void in definition.
6939 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
6940 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
6941 the only users from ...
6942 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
6943 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
6944 (HAVE_VOLATILE): Remove, unused.
6945
6946 Convert more function definitions to standard C.
6947 * xdisp.c (window_box_edges, handle_single_display_spec)
6948 (display_string): Convert definition to standard C.
6949 * scroll.c (do_direct_scrolling, scrolling_1):
6950 * dispnew.c (allocate_matrices_for_frame_redisplay)
6951 (mirrored_line_dance):
6952 * coding.c (code_convert_string):
6953 * charset.c (map_charset_chars):
6954 * ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
6955 (Fregister_ccl_program, Fregister_code_conversion_map):
6956 * keyboard.c (kbd_buffer_nr_stored): Likewise.
6957 (head_table): Make static and const.
6958
6959 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6960
6961 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
6962 (PROFILING_LDFLAGS): Set from substitution.
6963 (ALL_CFLAGS): Add C_WARNINGS_SWITCH and PROFILING_CFLAGS, put
6964 CFLAGS last.
6965
6966 2010-07-12 Kenichi Handa <handa@m17n.org>
6967
6968 * Makefile.in (lisp): Change hebrew.el to hebrew.elc.
6969 (shortlisp): Likewise.
6970
6971 * font.h (enum font_property_index): New member FONT_ENTITY_INDEX.
6972
6973 * font.c (font_open_entity): Record ENTITY in FONT_OBJECT's slot
6974 of FONT_ENTITY_INDEX.
6975 (Ffont_get): If KEY is :otf and the font-object doesn't have the
6976 property, get the property value dynamically.
6977 (Ffont_put): Accept font-entity and font-object too.
6978 (Ffont_get_glyhphs): Rename from Fget_font_glyphs. Arguments and
6979 return value changed.
6980 (syms_of_font): Adjust for the above change.
6981
6982 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
6983
6984 * blockinput.h: Remove obsolete comment.
6985
6986 * lisp.h: Include <stddef.h>.
6987 (OFFSETOF): Don't define.
6988 (VECSIZE): Use offsetof instead of OFFSETOF.
6989 (PSEUDOVECSIZE): Likewise.
6990 * process.c (conv_sockaddr_to_lisp): Likewise.
6991 * alloc.c: Don't include <stddef.h>.
6992 * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof.
6993
6994 * process.c: Remove obsolete comment.
6995
6996 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
6997
6998 * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
6999
7000 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
7001
7002 * callint.c (Fcall_interactively): Use strchr, strrchr instead of
7003 index, rindex.
7004 * doc.c (get_doc_string, Fsnarf_documentation): Likewise.
7005 * editfns.c (Fuser_full_name, Fformat): Likewise.
7006 * emacs.c (argmatch, sort_args, decode_env_path): Likewise.
7007 * fileio.c (Ffile_symlink_p): Likewise.
7008 * filelock.c (current_lock_owner): Likewise.
7009 * font.c (font_parse_name, font_parse_family_registry): Likewise.
7010 * fontset.c (fontset_pattern_regexp): Likewise.
7011 * lread.c (read1): Likewise.
7012 * sysdep.c (init_system_name): Likewise.
7013 * xfns.c (select_visual): Likewise.
7014 * s/hpux10-20.h (index, rindex): Don't define.
7015 * s/ms-w32.h (index): Likewise.
7016 * s/usg5-4.h: Likewise.
7017
7018 * callproc.c (relocate_fd): Use F_DUPFD if defined.
7019
7020 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
7021 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
7022 (egetenv): Likewise.
7023 * doprnt.c (doprnt): Likewise.
7024 * editfns.c (set_time_zone_rule, format2): Likewise.
7025 * emacs.c (decode_env_path): Likewise.
7026 * eval.c (signal_error, error): Likewise.
7027 * insdel.c (replace_range_2): Likewise.
7028 * keyboard.c (cmd_error_internal): Likewise.
7029 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
7030 * print.c (write_string, write_string_1, print_error_message):
7031 Likewise.
7032 * vm-limit.c (warn_function, memory_warnings): Likewise.
7033 * xdisp.c (message1, message1_nolog, message_with_string)
7034 (vmessage, message, message_nolog): Likewise.
7035 * emacs.c: Remove duplicate declaration.
7036 * keyboard.h: Likewise.
7037 * lisp.h: Update prototypes.
7038
7039 * eval.c: Fix indentation problem.
7040
7041 * keyboard.c: Include "process.h".
7042
7043 * eval.c: Remove obsolete noinline declaration.
7044 * fns.c: Likewise.
7045
7046 2010-07-11 Ken Raeburn <raeburn@raeburn.org>
7047
7048 * doprnt.c (doprnt): Take a va_list argument instead of count and
7049 pointer.
7050 * eval.c (error): Change to a standard-C variadic function.
7051 * xdisp.c (vmessage): Rename from message, made static, and
7052 changed to take a va_list argument.
7053 (message): New variadic wrapper.
7054 (message_nolog): Now a variadic function, calling vmessage.
7055 * lisp.h: Include stdarg.h for va_list.
7056 (doprnt, error, message, message_nolog): Decls updated.
7057
7058 2010-07-11 Eli Zaretskii <eliz@gnu.org>
7059
7060 * process.c (syms_of_process) <delete-exited-processes>: Define
7061 even if !subprocesses.
7062 (delete_exited_processes): Ditto.
7063
7064 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
7065 (delete_exited_processes): Don't define.
7066
7067 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
7068
7069 * frame.c (make_frame): Initialize menu_bar_lines and
7070 tool_bar_lines members.
7071 (make_initial_frame, make_terminal_frame):
7072 Initialize menu_bar_lines using value of menu-bar-mode.
7073
7074 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
7075
7076 2010-07-10 Eli Zaretskii <eliz@gnu.org>
7077
7078 * process.c: Reshuffle #include's. Condition some of the global
7079 and static variables on `subprocesses'.
7080 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
7081 Leave only one implementation.
7082 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
7083 (kill_buffer_processes, Flist_system_processes)
7084 (Fprocess_attributes, init_process, syms_of_process): Unify the
7085 implementations for with subprocesses and without them.
7086
7087 2010-07-09 Jan Djärv <jan.h.d@swipnet.se>
7088
7089 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
7090 correct size for Motif.
7091 (free_frame_menubar): Call x_set_window_size to update frame size.
7092
7093 * xfns.c (x_window): Set borderWidth to 0 for pane and
7094 EmacsFrame. Frame size calculation is wrong otherwise.
7095
7096 2010-07-09 Michael Albinus <michael.albinus@gmx.de>
7097
7098 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
7099 allows to suppress errors when polling in Emacs' main loop.
7100 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
7101 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
7102 (Fdbus_method_error_internal, Fdbus_send_signal)
7103 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
7104 (Fdbus_register_method): Use it. (Bug#6579)
7105
7106 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
7107
7108 * alloc.c: Convert DEFUNs to standard C.
7109 * buffer.c:
7110 * bytecode.c:
7111 * callint.c:
7112 * callproc.c:
7113 * casefiddle.c:
7114 * casetab.c:
7115 * category.c:
7116 * character.c:
7117 * charset.c:
7118 * chartab.c:
7119 * cmds.c:
7120 * coding.c:
7121 * composite.c:
7122 * data.c:
7123 * dbusbind.c:
7124 * dired.c:
7125 * dispnew.c:
7126 * doc.c:
7127 * dosfns.c:
7128 * editfns.c:
7129 * emacs.c:
7130 * eval.c:
7131 * fileio.c:
7132 * filelock.c:
7133 * floatfns.c:
7134 * fns.c:
7135 * font.c:
7136 * fontset.c:
7137 * frame.c:
7138 * fringe.c:
7139 * image.c:
7140 * indent.c:
7141 * insdel.c:
7142 * keyboard.c:
7143 * keymap.c:
7144 * lread.c:
7145 * macros.c:
7146 * marker.c:
7147 * menu.c:
7148 * minibuf.c:
7149 * msdos.c:
7150 * nsfns.m:
7151 * nsmenu.m:
7152 * nsselect.m:
7153 * print.c:
7154 * process.c:
7155 * search.c:
7156 * sound.c:
7157 * syntax.c:
7158 * term.c:
7159 * terminal.c:
7160 * textprop.c:
7161 * undo.c:
7162 * w16select.c:
7163 * w32console.c:
7164 * w32fns.c:
7165 * w32font.c:
7166 * w32menu.c:
7167 * w32proc.c:
7168 * w32select.c:
7169 * window.c:
7170 * xdisp.c:
7171 * xfaces.c:
7172 * xfns.c:
7173 * xmenu.c:
7174 * xselect.c:
7175 * xsettings.c:
7176 * xsmfns.c: Likewise.
7177
7178 2010-07-08 Eli Zaretskii <eliz@gnu.org>
7179
7180 * process.c (kbd_is_on_hold, hold_keyboard_input)
7181 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
7182
7183 2010-07-08 Jan Djärv <jan.h.d@swipnet.se>
7184
7185 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
7186 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
7187 unless USE_LUCID.
7188
7189 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
7190
7191 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative
7192 declaration.
7193
7194 Clean up include guards.
7195 * tparam.c: Remove include guards for config.h, string.h and code
7196 that assumes #ifndef emacs.
7197 * termcap.c:
7198 * unexalpha.c:
7199 * sysdep.c:
7200 * filemode.c:
7201 * filelock.c:
7202 * bidi.c: Likewise.
7203
7204 Remove prefix-args.c
7205 * prefix-args.c: Remove file.
7206 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
7207 * Makefile.in (temacs${EXEEXT}): Remove references to
7208 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
7209 (mostlyclean): Remove reference to prefix-args.
7210 (prefix-args): Remove.
7211
7212 Simplify cstart_of_data, start_of_code and related code.
7213 * mem-limits.h: Remove !emacs and _LIBC conditional code.
7214 (start_of_data): Merge into start_of_data function.
7215 * sysdep.c (start_of_text): Remove. Move simplified versions of
7216 it in the only users: unexaix.c and unexec.c.
7217 (read_input_waiting): Remove local declaration of quit_char.
7218 (start, etext): Remove declarations.
7219 (start_of_data): Merge with the version in mem-limits.h and move
7220 to vm-limits.c.
7221 * vm-limit.c (start_of_data): Merged and simplified version of the
7222 code formerly in mem-limits.h and sysdep.c.
7223 * unexec.c (start): New declaration, moved from sysdep.c.
7224 (start_of_text): Simplified version of the code formerly in sysdep.c.
7225 * unexaix.c (start_of_text): Simplified version of the code
7226 formerly in sysdep.c.
7227 * m/alpha.h (HAVE_TEXT_START): Remove.
7228 (TEXT_START): Move ...
7229 * unexalpha.c (TEXT_START): ... here.
7230 * s/hpux10-20.h (TEXT_START): Remove.
7231 * s/darwin.h (TEXT_START):
7232 * m/mips.h (TEXT_START):
7233 * m/macppc.h (HAVE_TEXT_START):
7234 * m/m68k.h (TEXT_START):
7235 * m/iris4d.h (TEXT_START):
7236 * m/intel386.h (TEXT_START):
7237 * m/ibmrs6000.h (TEXT_START):
7238 * m/ia64.h (HAVE_TEXT_START):
7239 * s/msdos.h (TEXT_START): Likewise.
7240
7241 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
7242
7243 * alloc.c (overrun_check_malloc, overrun_check_realloc)
7244 (overrun_check_free, xstrdup, allocate_string)
7245 (allocate_string_data, compact_small_strings, Fmake_string)
7246 (make_unibyte_string, make_multibyte_string)
7247 (make_string_from_bytes, make_specified_string, make_float)
7248 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
7249 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
7250 memcpy, memmove, memset, memcmp.
7251 * atimer.c (start_atimer, set_alarm): Likewise.
7252 * buffer.c (clone_per_buffer_values, report_overlay_modification)
7253 (mmap_realloc, init_buffer_once): Likewise.
7254 * callint.c (Fcall_interactively): Likewise.
7255 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
7256 (getenv_internal_1): Likewise.
7257 * casefiddle.c (casify_object): Likewise.
7258 * ccl.c (ccl_driver): Likewise.
7259 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
7260 * charset.c (load_charset_map_from_file)
7261 (load_charset_map_from_file, load_charset_map_from_vector)
7262 (Fdefine_charset_internal): Likewise.
7263 * cm.c (Wcm_clear): Likewise.
7264 * coding.c (decode_eol, decode_coding_object)
7265 (Fset_coding_system_priority, make_subsidiaries): Likewise.
7266 * data.c (Faset): Likewise.
7267 * dired.c (directory_files_internal, file_name_completion_stat):
7268 Likewise.
7269 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
7270 (clear_glyph_row, copy_row_except_pointers)
7271 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
7272 (save_current_matrix, restore_current_matrix)
7273 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
7274 (mirror_line_dance, scrolling_window): Likewise.
7275 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
7276 Likewise.
7277 * doprnt.c (doprnt): Likewise.
7278 * editfns.c (Fuser_full_name, make_buffer_string_both)
7279 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
7280 * emacs.c (sort_args): Likewise.
7281 * eval.c (Fapply, Ffuncall): Likewise.
7282 * fileio.c (Ffile_name_directory, make_temp_name)
7283 (Fexpand_file_name, search_embedded_absfilename)
7284 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
7285 (auto_save_error): Likewise.
7286 * fns.c (Fstring_equal, Fcopy_sequence, concat)
7287 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
7288 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
7289 (Fmake_hash_table): Likewise.
7290 * fringe.c (Fdefine_fringe_bitmap): Likewise.
7291 * ftfont.c (ftfont_text_extents): Likewise.
7292 * getloadavg.c (getloadavg): Likewise.
7293 * image.c (define_image_type, make_image, make_image_cache)
7294 (x_create_x_image_and_pixmap, xbm_image_p)
7295 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
7296 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
7297 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
7298 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
7299 (tiff_image_p, tiff_read_from_memory, gif_image_p)
7300 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
7301 Likewise.
7302 * indent.c (scan_for_column, compute_motion): Likewise.
7303 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
7304 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
7305 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
7306 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
7307 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
7308 (store_user_signal_events, menu_bar_items, tool_bar_items)
7309 (process_tool_bar_item, append_tool_bar_item)
7310 (read_char_minibuf_menu_prompt, read_key_sequence)
7311 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
7312 Likewise.
7313 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
7314 Likewise.
7315 * lisp.h (STRING_COPYIN): Likewise.
7316 * lread.c (Fload, read1, oblookup): Likewise.
7317 * msdos.c (Frecent_doskeys): Likewise.
7318 * nsfns.m (Fx_create_frame): Likewise.
7319 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
7320 Likewise.
7321 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
7322 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
7323 Likewise.
7324 * nsmenu.m (ns_update_menubar): Likewise.
7325 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
7326 * print.c (print_unwind, printchar, strout, print_string)
7327 (print_error_message): Likewise.
7328 * process.c (conv_lisp_to_sockaddr, set_socket_option)
7329 (Fmake_network_process, Fnetwork_interface_list)
7330 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
7331 (init_process): Likewise.
7332 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
7333 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
7334 Likewise.
7335 * scroll.c (do_scrolling, do_direct_scrolling)
7336 (scrolling_max_lines_saved): Likewise.
7337 * search.c (search_buffer, wordify, Freplace_match): Likewise.
7338 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
7339 * syntax.c (skip_chars, skip_syntaxes): Likewise.
7340 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
7341 (emacs_set_tty): Likewise.
7342 * term.c (encode_terminal_code, calculate_costs)
7343 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
7344 Likewise.
7345 * termcap.c (tgetst1, gobble_line): Likewise.
7346 * termhooks.h (EVENT_INIT): Likewise.
7347 * tparam.c (tparam1): Likewise.
7348 * unexalpha.c (unexec): Likewise.
7349 * unexec.c (write_segment): Likewise.
7350 * unexmacosx.c (unexec_write_zero): Likewise.
7351 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
7352 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
7353 * w32font.c (w32font_list_family, w32font_text_extents)
7354 (w32font_list_internal, w32font_match_internal)
7355 (w32font_open_internal, compute_metrics, Fx_select_font):
7356 Likewise.
7357 * w32menu.c (set_frame_menubar, add_menu_item)
7358 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
7359 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
7360 * w32uniscribe.c (uniscribe_list_family): Likewise.
7361 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
7362 * window.c (make_window, replace_window, set_window_buffer)
7363 (Fsplit_window): Likewise.
7364 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
7365 (add_to_log, message3, x_consider_frame_title)
7366 (append_space_for_newline, extend_face_to_end_of_line)
7367 (decode_mode_spec_coding, init_glyph_string): Likewise.
7368 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
7369 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
7370 (face_attr_equal_p, make_realized_face, make_face_cache)
7371 (free_realized_faces, lookup_named_face, smaller_face)
7372 (face_with_height, lookup_derived_face)
7373 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
7374 (Finternal_set_font_selection_order, realize_default_face)
7375 (compute_char_face, face_at_buffer_position)
7376 (face_for_overlay_string, face_at_string_position, merge_faces):
7377 Likewise.
7378 * xfns.c (xic_create_fontsetname, Fx_create_frame)
7379 (Fx_window_property, x_create_tip_frame)
7380 (Fx_backspace_delete_keys_p): Likewise.
7381 * xfont.c (xfont_list, xfont_match, xfont_list_family)
7382 (xfont_text_extents): Likewise.
7383 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
7384 * xrdb.c (magic_file_p, x_get_resource): Likewise.
7385 * xselect.c (x_queue_event, x_get_window_property)
7386 (receive_incremental_selection): Likewise.
7387 * xsmfns.c (x_session_check_input): Likewise.
7388 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
7389 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
7390 Likewise.
7391 * character.h (BCOPY_SHORT): Removed.
7392 * config.in: Regenerate.
7393 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
7394 * emacs.c (main) [PROFILING]: Don't declare
7395 dump_opcode_frequencies.
7396 * lisp.h (safe_bcopy): Remove declaration.
7397 (memset) [!HAVE_MEMSET]: Declare.
7398 (memcpy) [!HAVE_MEMCPY]: Likewise.
7399 (memmove) [!HAVE_MEMMOVE]: Likewise.
7400 (memcmp) [!HAVE_MEMCMP]: Likewise.
7401 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
7402 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
7403 Don't define.
7404 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
7405 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
7406 (BCOPY_DOWNWARD_SAFE): Don't define.
7407 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
7408 (memcpy) [!HAVE_MEMCPY]: Define.
7409 (memmove) [!HAVE_MEMMOVE]: Define.
7410 (memcmp) [!HAVE_MEMCMP]: Define.
7411
7412 2010-07-07 Jan Djärv <jan.h.d@swipnet.se>
7413
7414 * process.c (kbd_is_on_hold): New variable.
7415 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
7416 New functions.
7417 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
7418 select on empty input mask.
7419 (init_process): Initialize kbd_is_on_hold to 0.
7420
7421 * process.h (hold_keyboard_input, unhold_keyboard_input)
7422 (kbd_on_hold_p): Declare.
7423
7424 * keyboard.c (input_available_signal): Declare.
7425 (kbd_buffer_nr_stored): New function.
7426 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
7427 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
7428 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
7429 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
7430 (tty_read_avail_input): If input is on hold, return.
7431 Don't read more that free slots in kbd_buffer (Bug#6571).
7432
7433 2010-07-07 Eli Zaretskii <eliz@gnu.org>
7434
7435 * msdos.h:
7436 * msdos.c:
7437 * dosfns.c:
7438 * w16select.c: Convert function definitions to ANSI C.
7439
7440 * msdos.h (ctrl_break_func, install_ctrl_break_check):
7441 Remove unused prototypes.
7442
7443 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
7444
7445 * coding.c, sysdep.c: Convert some more functions to standard C.
7446
7447 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
7448
7449 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
7450 (encode_coding_object): Use SPECPDL_INDEX.
7451 (syms_of_coding): Use DOS_NT.
7452
7453 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
7454
7455 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
7456
7457 Make the function member of Lisp_Subr use standard C prototypes.
7458 * lisp.h (struct Lisp_Subr): Use a union for the function member.
7459 (DECL_ALIGN): Add a cast for the function.
7460 * eval.c (Feval, Ffuncall): Use the proper type for each type
7461 function call.
7462
7463 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
7464
7465 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
7466 fringe face id, so face-remapping-alist works (Bug#6091).
7467
7468 2010-07-06 Juanma Barranquero <lekktu@gmail.com>
7469
7470 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
7471 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
7472 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
7473
7474 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
7475
7476 * xterm.c (x_get_keysym_name): Change type of parameter to int.
7477 * lisp.h: Declare x_get_keysym_name.
7478 * keyboard.c (modify_event_symbol): Don't declare
7479 x_get_keysym_name here.
7480
7481 2010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
7482
7483 * ecrt0.c: Revert conversion to standard C.
7484
7485 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
7486
7487 * vm-limit.c (memory_warnings):
7488 * keyboard.c (modify_event_symbol):
7489 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
7490 (round2, emacs_rint):
7491 * process.c (send_process, old_sigpipe): Convert function
7492 definitions and declarations to standard C.
7493
7494 2010-07-05 Juanma Barranquero <lekktu@gmail.com>
7495
7496 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
7497 * xdisp.c: Convert function definitions to standard C.
7498
7499 * cm.c (cmputc): Arg C is now int, not char.
7500 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
7501
7502 2010-07-05 James Cloos <cloos@jhcloos.com>
7503
7504 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
7505
7506 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
7507 _NET_WM_ICON_NAME atoms.
7508
7509 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
7510 and _NET_WM_ICON_NAME properties, too, matching what is
7511 done in the Gtk+ case.
7512
7513 2010-07-05 Jan Djärv <jan.h.d@swipnet.se>
7514
7515 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
7516
7517 * xsmfns.c (SSDATA): New macro.
7518 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
7519 passed to strlen/strcpy/strcat.
7520 (create_client_leader_window): Surround with #ifndef USE_GTK.
7521 Cast 7:th arg to XChangeProperty to (unsigned char *).
7522
7523 * xsettings.c (something_changedCB, parse_settings)
7524 (apply_xft_settings): Reformat prototype.
7525 (something_changedCB, init_gconf): Remove unused variable i.
7526 (read_settings): Remove unused variable long_len.
7527
7528 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
7529 (xg_get_image_for_pixmap, create_dialog)
7530 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
7531 (menuitem_highlight_callback, make_menu_item)
7532 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
7533 (xg_create_scroll_bar, xg_update_scrollbar_pos)
7534 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
7535 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
7536 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
7537 (xg_tool_bar_item_expose_callback): Reformat prototype.
7538 (xg_update_menubar): GList *group => GSList *group.
7539 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
7540 before use.
7541 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
7542 to GTK_IMAGE (wimage).
7543
7544 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
7545
7546 * atimer.c: Use "" instead of <> for local includes for
7547 consistency with the rest of the code.
7548
7549 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
7550 * xrdb.c (get_system_name):
7551 * window.c (shrink_windows):
7552 * syntax.c (forw_comment):
7553 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
7554 (ins_del_costs):
7555 * mem-limits.h (start_of_data):
7556 * lread.c (readevalloop):
7557 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
7558 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
7559 * frame.c (x_get_focus_frame):
7560 * floatfns.c (fmod_float):
7561 * fileio.c (choose_write_coding_system):
7562 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
7563 (malloc_initialize_hook, sort_args, synchronize_locale):
7564 * doprnt.c (doprnt):
7565 * dired.c (compile_pattern):
7566 * data.c (fmod_float):
7567 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
7568 (map_char_table_for_charset):
7569 * charset.c (define_charset_internal):
7570 * alloc.c (Fgarbage_collect): Convert declarations or definitions
7571 to standard C.
7572
7573 2010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
7574 Stefan Monnier <monnier@iro.umontreal.ca>
7575
7576 * lread.c (read1): Fix up last change to not mess up `c'.
7577
7578 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7579
7580 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
7581
7582 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7583
7584 Fix prototypes.
7585
7586 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
7587 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
7588 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
7589 arg, as required by internal_condition_case_1.
7590 * print.c (strout): Use const char* for arg PTR.
7591 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
7592 (analyse_first): Fix "const const".
7593 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
7594 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
7595 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
7596
7597 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
7598
7599 * alloc.c: Convert function definitions to standard C.
7600 * atimer.c:
7601 * bidi.c:
7602 * bytecode.c:
7603 * callint.c:
7604 * callproc.c:
7605 * casefiddle.c:
7606 * casetab.c:
7607 * category.c:
7608 * ccl.c:
7609 * character.c:
7610 * charset.c:
7611 * chartab.c:
7612 * cmds.c:
7613 * coding.c:
7614 * composite.c:
7615 * data.c:
7616 * dbusbind.c:
7617 * dired.c:
7618 * dispnew.c:
7619 * doc.c:
7620 * doprnt.c:
7621 * ecrt0.c:
7622 * editfns.c:
7623 * fileio.c:
7624 * filelock.c:
7625 * filemode.c:
7626 * fns.c:
7627 * font.c:
7628 * fontset.c:
7629 * frame.c:
7630 * fringe.c:
7631 * ftfont.c:
7632 * ftxfont.c:
7633 * gtkutil.c:
7634 * indent.c:
7635 * insdel.c:
7636 * intervals.c:
7637 * keymap.c:
7638 * lread.c:
7639 * macros.c:
7640 * marker.c:
7641 * md5.c:
7642 * menu.c:
7643 * minibuf.c:
7644 * prefix-args.c:
7645 * print.c:
7646 * ralloc.c:
7647 * regex.c:
7648 * region-cache.c:
7649 * scroll.c:
7650 * search.c:
7651 * sound.c:
7652 * strftime.c:
7653 * syntax.c:
7654 * sysdep.c:
7655 * termcap.c:
7656 * terminal.c:
7657 * terminfo.c:
7658 * textprop.c:
7659 * tparam.c:
7660 * undo.c:
7661 * unexelf.c:
7662 * window.c:
7663 * xfaces.c:
7664 * xfns.c:
7665 * xfont.c:
7666 * xftfont.c:
7667 * xgselect.c:
7668 * xmenu.c:
7669 * xrdb.c:
7670 * xselect.c:
7671 * xsettings.c:
7672 * xsmfns.c:
7673 * xterm.c: Likewise.
7674
7675 2010-07-03 Eli Zaretskii <eliz@gnu.org>
7676
7677 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
7678 frames other than the initial one. Fix reversal of colors when
7679 `reverse' is specified in the frame parameters.
7680 Call update_face_from_frame_parameter instead of
7681 internal-set-lisp-face-attribute. Initialize screen colors from
7682 initial_screen_colors[] when f->default_face_done_p is zero,
7683 instead of depending on being called with default-frame-alist as
7684 the alist argument.
7685
7686 * xfaces.c (update_face_from_frame_parameter): Move out of
7687 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
7688 with HAVE_WINDOW_SYSTEM.
7689
7690 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
7691 to menu-bar-mode, if not set in the frame parameters or in
7692 default-frame-alist.
7693
7694 * w32console.c (sys_tputs): Adjust argument list to prototype in
7695 term.c.
7696
7697 2010-07-03 Juanma Barranquero <lekktu@gmail.com>
7698
7699 * lisp.h (memory_warnings): Fix prototype.
7700
7701 * cm.h (evalcost): Fix prototype.
7702
7703 * cm.c (evalcost): Fix arg type.
7704
7705 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
7706
7707 * term.c (term_clear_mouse_face, Fidentity):
7708 * syssignal.h (signal_handler_t):
7709 * lisp.h (memory_warnings):
7710 * coding.h (preferred_coding_system):
7711 * cm.h (evalcost):
7712 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
7713
7714 2010-07-02 Eli Zaretskii <eliz@gnu.org>
7715
7716 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
7717 from prototypes.
7718
7719 * msdos.h (load_pixmap): Don't define away.
7720
7721 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
7722
7723 * lisp.h:
7724 * atimer.h: Remove define for P_.
7725
7726 * alloc.c: Remove __P and P_ from .c and .m files.
7727 * atimer.c:
7728 * buffer.c:
7729 * callint.c:
7730 * category.c:
7731 * charset.c:
7732 * chartab.c:
7733 * cm.c:
7734 * coding.c:
7735 * composite.c:
7736 * data.c:
7737 * dired.c:
7738 * dispnew.c:
7739 * doc.c:
7740 * editfns.c:
7741 * emacs.c:
7742 * eval.c:
7743 * fileio.c:
7744 * filelock.c:
7745 * fns.c:
7746 * font.c:
7747 * fontset.c:
7748 * frame.c:
7749 * ftfont.c:
7750 * ftxfont.c:
7751 * gmalloc.c:
7752 * gtkutil.c:
7753 * image.c:
7754 * indent.c:
7755 * intervals.c:
7756 * keyboard.c:
7757 * keymap.c:
7758 * lread.c:
7759 * marker.c:
7760 * menu.c:
7761 * minibuf.c:
7762 * print.c:
7763 * process.c:
7764 * scroll.c:
7765 * search.c:
7766 * sound.c:
7767 * strftime.c:
7768 * syntax.c:
7769 * sysdep.c:
7770 * term.c:
7771 * terminal.c:
7772 * textprop.c:
7773 * unexalpha.c:
7774 * w32console.c:
7775 * w32fns.c:
7776 * w32font.c:
7777 * w32menu.c:
7778 * w32term.c:
7779 * w32uniscribe.c:
7780 * window.c:
7781 * xdisp.c:
7782 * xfaces.c:
7783 * xfns.c:
7784 * xfont.c:
7785 * xftfont.c:
7786 * xmenu.c:
7787 * xselect.c:
7788 * xterm.c: Likewise.
7789
7790 Remove P_ and __P macros.
7791 * atimer.h: Remove P_ and __P macros.
7792 * buffer.h:
7793 * category.h:
7794 * ccl.h:
7795 * character.h:
7796 * charset.h:
7797 * cm.h:
7798 * coding.h:
7799 * composite.h:
7800 * dispextern.h:
7801 * disptab.h:
7802 * dosfns.h:
7803 * font.h:
7804 * fontset.h:
7805 * frame.h:
7806 * gtkutil.h:
7807 * indent.h:
7808 * intervals.h:
7809 * keyboard.h:
7810 * keymap.h:
7811 * lisp.h:
7812 * macros.h:
7813 * md5.h:
7814 * menu.h:
7815 * msdos.h:
7816 * nsterm.h:
7817 * puresize.h:
7818 * region-cache.h:
7819 * syntax.h:
7820 * syssignal.h:
7821 * systime.h:
7822 * termhooks.h:
7823 * w32font.h:
7824 * w32term.h:
7825 * widget.h:
7826 * window.h:
7827 * xgselect.h:
7828 * xsettings.h:
7829 * xterm.h: Likewise.
7830
7831 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
7832
7833 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
7834
7835 Cleanup old code.
7836 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
7837 * syssignal.h: Remove code for Lynx, not supported anymore.
7838 * vm-limit.c: Remove unused code the depends on emacs not being
7839 defined and NO_LIM_DATA being defined.
7840 * mem-limits.h: Remove dead code.
7841
7842 2010-07-01 Jan Djärv <jan.h.d@swipnet.se>
7843
7844 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
7845
7846 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
7847 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
7848
7849 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
7850 parameters, they are already absolute.
7851
7852 * nsterm.m (x_set_window_size, initFrameFromEmacs):
7853 Rename FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
7854
7855 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
7856
7857 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar):
7858 Update FRAME_TOOLBAR_HEIGHT.
7859
7860 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar):
7861 Add BLOCK/UNBLOCK_INPUT so asserts don't trigger.
7862
7863 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
7864
7865 * frame.c (get_future_frame_param, Fmake_terminal_frame):
7866 Don't check default-frame-alist.
7867
7868 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
7869
7870 * process.c (create_process): Avoid using invalid file descriptors.
7871
7872 * callproc.c (child_setup): Avoid closing a file descriptor twice.
7873
7874 2010-06-30 Jan Djärv <jan.h.d@swipnet.se>
7875
7876 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
7877 Improve documentation. Return font regardless of use_system_font.
7878 (syms_of_xsettings): Improve documentation for font-use-system-font.
7879
7880 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
7881
7882 * xfaces.c (realize_face): Garbage the frame if a face is removed
7883 (Bug#6593).
7884
7885 2010-07-05 Andreas Schwab <schwab@linux-m68k.org>
7886
7887 * keyboard.c: Remove duplicate <setjmp.h>.
7888 (read_key_sequence): Remove volatile qualifiers.
7889
7890 2010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7891
7892 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
7893 (struct glyph_row): New members left_fringe_offset and
7894 right_fringe_offset.
7895
7896 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
7897 specially.
7898 * w32term.c (w32_draw_fringe_bitmap): Likewise.
7899 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
7900
7901 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
7902 Take account of bitmap offset.
7903 (draw_window_fringes): Take account of window vscroll.
7904 (update_window_fringes): Likewise. Extend top-aligned top indicator
7905 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
7906 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
7907 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
7908
7909 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7910
7911 * w32fns.c (Qtooltip): Declare.
7912 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
7913
7914 2010-07-03 Jan Djärv <jan.h.d@swipnet.se>
7915
7916 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
7917 grab on just Press (Bug#6499).
7918
7919 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
7920
7921 * frame.c (Qtooltip): New var.
7922 (delete_frame): Use it. Fix faulty if statement. Don't update
7923 mode line for tooltip frames. Suggested by Martin Rudalics.
7924
7925 * xfns.c (x_create_tip_frame):
7926 * w32fns.c (x_create_tip_frame): Use it.
7927
7928 2010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
7929
7930 * xftfont.c (xftfont_open): Check font width one by one also when
7931 spacing is dual.
7932
7933 * ftfont.c (ftfont_open): Ditto.
7934
7935 2010-06-30 Glenn Morris <rgm@gnu.org>
7936
7937 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
7938
7939 * Makefile.in (CANNOT_DUMP): Update for configure name change.
7940
7941 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
7942 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
7943 * s/darwin.h (SYSTEM_MALLOC):
7944 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
7945
7946 2010-06-29 Jan Djärv <jan.h.d@swipnet.se>
7947
7948 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
7949 (ns_get_screen): Don't assign integer to f.
7950 (Fx_display_color_cells): Declarations before statements.
7951
7952 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
7953
7954 * xfns.c (x_default_font_parameter): Remove got_from_system
7955 (Bug#6526).
7956
7957 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
7958 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper):
7959 New defines based on what configure finds.
7960
7961 * xterm.c (XTflash): Use gtk_widget_get_window.
7962 (xg_scroll_callback): Use gtk_adjustment_get_upper and
7963 gtk_adjustment_get_page_size.
7964 (handle_one_xevent): Use gtk_widget_get_mapped.
7965 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
7966 messages.
7967
7968 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
7969
7970 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
7971 HAVE_GTK_FILE_SELECTION_NEW.
7972
7973 * gtkutil.c (xg_display_open, xg_display_close):
7974 Remove HAVE_GTK_MULTIDISPLAY, it is always defined.
7975 (xg_display_open): Return type is void.
7976 (gtk_widget_set_has_window)
7977 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
7978 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
7979 (gtk_adjustment_set_page_increment)
7980 (gtk_adjustment_get_step_increment): #define these if not found
7981 by configure.
7982 (remove_submenu): New define based on Gtk+ version.
7983 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar):
7984 Use gtk_widget_get_window.
7985 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
7986 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
7987 (create_dialog): Use gtk_dialog_get_action_area and
7988 gtk_dialog_get_content_area.
7989 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
7990 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
7991 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
7992 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item):
7993 Use g_object_ref and g_object_unref.
7994 (xg_update_menu_item, xg_tool_bar_menu_proxy):
7995 Use gtk_widget_get_sensitive.
7996 (xg_update_submenu): Use remove_submenu.
7997 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
7998 properties instead to get old x and y position.
7999 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
8000 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
8001 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
8002 (xg_get_tool_bar_widgets): New function.
8003 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
8004 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
8005 (toolbar_set_orientation): New #define based on if configure
8006 finds gtk_orientable_set_orientation.
8007 (xg_create_tool_bar): Call toolbar_set_orientation.
8008 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
8009 instead of gtk_box_pack_start_defaults.
8010
8011 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
8012
8013 * cmds.c (Fdelete_backward_char): Move into Lisp.
8014
8015 2010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
8016
8017 * s/freebsd.h (BSD4_2): Remove redundant definition.
8018 bsd-common.h defines it already.
8019
8020 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
8021
8022 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
8023 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
8024 tool-bar-mode, which are now set using these X resources at
8025 startup, to determine the defaults (Bug#2249).
8026
8027 * w32fns.c (Fx_create_frame):
8028 * nsfns.m (Fx_create_frame): Likewise.
8029
8030 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
8031
8032 2010-06-24 Juanma Barranquero <lekktu@gmail.com>
8033
8034 * gtkutil.c (xg_update_scrollbar_pos):
8035 Avoid C99 mid-block variable declaration.
8036
8037 2010-06-22 Jan Djärv <jan.h.d@swipnet.se>
8038
8039 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
8040
8041 * gtkutil.h (xg_show_scroll_bar): Remove.
8042
8043 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
8044 if height is less than scroll bar min size.
8045 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
8046
8047 * xfns.c (x_default_font_parameter): Try to open font from system
8048 before using it (bug#6478). Rename got_from_gconf to got_from_system.
8049
8050 2010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
8051
8052 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
8053
8054 2010-06-20 Eli Zaretskii <eliz@gnu.org>
8055
8056 * xdisp.c (try_scrolling): When scroll-conservatively is set to
8057 most-positive-fixnum, be extra accurate when scrolling window
8058 start, to avoid missing the cursor line.
8059
8060 2010-06-19 Eli Zaretskii <eliz@gnu.org>
8061
8062 * xdisp.c (try_scrolling): Compute the limit for searching point
8063 in forward scroll from scroll_max, instead of an arbitrary limit
8064 of 10 screen lines.
8065 See http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
8066 and
8067 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
8068 for details.
8069
8070 2010-06-16 Glenn Morris <rgm@gnu.org>
8071
8072 * editfns.c (Fbyte_to_string): Pacify compiler.
8073
8074 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
8075
8076 * lread.c (read1): Phase out old-style backquotes a bit more.
8077
8078 2010-06-12 Eli Zaretskii <eliz@gnu.org>
8079
8080 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
8081 bidimirror.h.
8082
8083 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
8084
8085 * bidi.c (bidi_initialize): Remove explicit initialization of
8086 bidi_type_table; include biditype.h instead. Don't support
8087 entries whose second codepoint is zero. Initialize bidi_mirror_table.
8088 (bidi_mirror_char): Use bidi_mirror_table.
8089
8090 * biditype.h: New file.
8091
8092 * bidimirror.h: New file.
8093
8094 * window.c (syms_of_window): Doc fix (bug#6409).
8095
8096 2010-06-12 Romain Francoise <romain@orebokech.com>
8097
8098 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
8099 ediff-hook.
8100
8101 2010-06-10 Glenn Morris <rgm@gnu.org>
8102
8103 * editfns.c (Fbyte_to_string): Pacify compiler.
8104
8105 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
8106
8107 2010-06-26 Andreas Schwab <schwab@linux-m68k.org>
8108
8109 * alloc.c (Fmake_byte_code): Don't access undefined argument
8110 (Bug#6517).
8111
8112 2010-06-25 Chong Yidong <cyd@stupidchicken.com>
8113
8114 * xdisp.c (next_element_from_image): Ensure that after-strings are
8115 read the next time we hit handle_stop (Bug#1336).
8116
8117 2010-06-23 Andreas Schwab <schwab@linux-m68k.org>
8118
8119 * lread.c (read1): Signal error if #s is not followed by paren.
8120
8121 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
8122
8123 * image.c (free_image): Mark frame as garbaged (Bug#6426).
8124
8125 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
8126
8127 2010-06-15 Glenn Morris <rgm@gnu.org>
8128
8129 * editfns.c (Fbyte_to_string): Pacify compiler.
8130
8131 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
8132
8133 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
8134 Check `object's type before accessing its guts.
8135
8136 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
8137
8138 * s/usg5-4.h: Fix previous change.
8139 Suggested by Lawrence Mitchell <wence@gmx.li>
8140
8141 2010-06-08 Andreas Schwab <schwab@linux-m68k.org>
8142
8143 * minibuf.c (Fall_completions): Add more checks.
8144
8145 2010-06-08 Juanma Barranquero <lekktu@gmail.com>
8146
8147 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
8148
8149 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
8150
8151 * lread.c (X_OK): Remove, unused.
8152
8153 * dispnew.c: Remove obsolete comment.
8154
8155 Remove INCLUDED_FCNTL.
8156 * xterm.c (INCLUDED_FCNTL):
8157 * callproc.c (INCLUDED_FCNTL):
8158 * alloc.c (INCLUDED_FCNTL):
8159 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
8160 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
8161
8162 2010-06-07 Martin Rudalics <rudalics@gmx.at>
8163
8164 * window.c (Fselect_window): Move `record_buffer' up to the
8165 beginning of this function, so the buffer gets recorded
8166 even if the selected window does not change.
8167 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
8168
8169 2010-06-07 Juanma Barranquero <lekktu@gmail.com>
8170
8171 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
8172 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
8173
8174 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
8175
8176 Remove BSTRING related code, all platforms define it.
8177 * s/usg5-4.h (BSTRING): Remove definition.
8178 * s/template.h (BSTRING):
8179 * s/msdos.h (BSTRING):
8180 * s/ms-w32.h (BSTRING):
8181 * s/hpux10-20.h (BSTRING):
8182 * s/gnu-linux.h (BSTRING):
8183 * s/darwin.h (BSTRING):
8184 * s/cygwin.h (BSTRING):
8185 * s/bsd-common.h (BSTRING):
8186 * s/aix4-2.h (BSTRING): Likewise.
8187 * sysdep.c: Remove code depending on BSTRING not being defined.
8188
8189 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
8190
8191 Remove obsolete macro BASE_LEADING_CODE_P.
8192 * character.h (BASE_LEADING_CODE_P): Remove.
8193 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
8194 * buffer.c (Fset_buffer_multibyte):
8195 * indent.c (scan_for_column, compute_motion):
8196 * insdel.c (count_combining_before, count_combining_after):
8197 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
8198
8199 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
8200
8201 Turn `directory-sep-char' into a noop.
8202
8203 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
8204 (DIRECTORY_SEP): Define unconditionally.
8205
8206 * s/ms-w32.h (DIRECTORY_SEP): Remove.
8207
8208 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
8209 call dostounix_filename directly.
8210
8211 * fileio.c (CORRECT_DIR_SEPS): Remove.
8212 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
8213 (Fsubstitute_in_file_name): Use dostounix_filename instead.
8214 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
8215 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
8216
8217 * w32proc.c (CORRECT_DIR_SEPS): Remove.
8218 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
8219
8220 2010-06-03 Andreas Schwab <schwab@linux-m68k.org>
8221
8222 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 address.
8223 (Bug#6346)
8224
8225 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
8226
8227 * ccl.c (Fccl_program_p): Fix typo in docstring.
8228
8229 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
8230
8231 Move UNEXEC definition to autoconf.
8232 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
8233 * s/sol2-10.h (UNEXEC):
8234 * s/irix6-5.h (UNEXEC):
8235 * s/hpux10-20.h (UNEXEC):
8236 * s/gnu-linux.h (UNEXEC):
8237 * s/darwin.h (UNEXEC):
8238 * s/cygwin.h (UNEXEC):
8239 * s/bsd-common.h (UNEXEC):
8240 * s/aix4-2.h (UNEXEC):
8241 * m/alpha.h (UNEXEC): Likewise.
8242 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
8243
8244 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
8245
8246 Remove obsolete pre-unicode2 macros.
8247 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
8248 * composite.c (composition_reseat_it):
8249 * data.c (Faset):
8250 * fns.c (Ffillarray):
8251 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
8252 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
8253
8254 2010-06-03 Juri Linkov <juri@jurta.org>
8255
8256 * buffer.c (Fother_buffer): Add CHECK_FRAME.
8257 (Fswitch_to_buffer): Remove unused variable `err'.
8258
8259 2010-06-03 Glenn Morris <rgm@gnu.org>
8260
8261 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
8262
8263 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
8264 now that AH_BOTTOM does it.
8265
8266 * m/hp800.h (HAVE_ALLOCA):
8267 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
8268
8269 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
8270 Remove NOT_C_CODE tests, it is always true now.
8271
8272 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
8273
8274 Fix config.h includes.
8275 * xsettings.c:
8276 * xgselect.c:
8277 * nsterm.m:
8278 * nsselect.m:
8279 * nsimage.m:
8280 * nsfont.m:
8281 * nsfns.m:
8282 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
8283 other files do.
8284
8285 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
8286
8287 * s/sol2-6.h: Remove obsolete comments.
8288
8289 Remove unnecessary alloca.h includes.
8290 * keymap.c: Do not include alloca.h, config.h does that.
8291 * sysdep.c: Likewise. Do not define fwrite, not used.
8292
8293 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
8294
8295 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
8296 the HAVE_TERMIO where it belongs (bug#6149).
8297
8298 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
8299
8300 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
8301 of bug#6305).
8302
8303 2010-05-30 Eli Zaretskii <eliz@gnu.org>
8304
8305 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
8306 state is always cached (bug#6306).
8307
8308 2010-05-29 Eli Zaretskii <eliz@gnu.org>
8309
8310 Fix cursor motion in bidi-reordered continued lines.
8311 * xdisp.c (try_cursor_movement): Backup to non-continuation line
8312 only after finding point's row. Fix the logic. Rewrite the loop
8313 over continuation lines in bidi-reordered buffers.
8314 Return CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
8315 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
8316
8317 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
8318
8319 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
8320
8321 2010-05-28 Kenichi Handa <handa@m17n.org>
8322
8323 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
8324 Don't sheck SPEC if it is nil.
8325 (font_list_entities): Call font_delete_unmatched if
8326 Vface_ignored_fonts is non-nil. (Bug#6287)
8327
8328 2010-05-28 Glenn Morris <rgm@gnu.org>
8329
8330 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
8331
8332 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8333
8334 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
8335 whether to trash.
8336 (internal_delete_file, Frename_file): Callers changed.
8337 (delete_by_moving_to_trash): Doc fix.
8338 (Fdelete_directory_internal): Don't move to trash.
8339
8340 * callproc.c (delete_temp_file):
8341 * buffer.c (Fkill_buffer): Callers changed.
8342
8343 * lisp.h: Update prototype.
8344
8345 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8346
8347 * xdisp.c (redisplay_window): After redisplay, check if point is
8348 still valid before setting it (Bug#6177).
8349
8350 2010-05-27 Glenn Morris <rgm@gnu.org>
8351
8352 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
8353 Convert comments to Makefile format.
8354
8355 * Makefile.in (bootstrap-clean): No more Makefile.c.
8356
8357 2010-05-26 Glenn Morris <rgm@gnu.org>
8358
8359 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
8360 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
8361
8362 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
8363 Remove.
8364 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8365
8366 2010-05-26 Kenichi Handa <handa@m17n.org>
8367
8368 * composite.c (composition_compute_stop_pos): Fix condition for
8369 backward scanning.
8370
8371 2010-05-25 Glenn Morris <rgm@gnu.org>
8372
8373 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
8374 Move before TEMACS_LDFLAGS.
8375 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8376 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8377
8378 * Makefile.in (NOT_C_CODE): No longer define.
8379 (config.h): No longer include.
8380
8381 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
8382 variables it may reference.
8383
8384 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
8385 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
8386
8387 2010-05-25 Kenichi Handa <handa@m17n.org>
8388
8389 * dispextern.h (struct composition_it): New members rule_idx and
8390 charpos.
8391
8392 * xdisp.c (set_iterator_to_next): While scanning backward, assume
8393 that the character positions of IT point the last character of the
8394 current grapheme cluster.
8395 (next_element_from_composition): Don't change character positions
8396 of IT.
8397 (append_composite_glyph): Set glyph->charpos to
8398 it->cmp_it.charpos.
8399
8400 * composite.c (autocmp_chars): Change the first argument to RULE,
8401 and try composition with RULE only.
8402 (composition_compute_stop_pos): Record the index number of the
8403 composition rule in CMP_IT->rule_idx.
8404 (composition_reseat_it): Call autocmp_chars repeatedly until the
8405 correct rule of the composition is found.
8406 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
8407 is at the last character of the current grapheme cluster when
8408 CMP_IT->reversed_p is nonzero.
8409
8410 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
8411
8412 * editfns.c (Fbyte_to_string): New function.
8413
8414 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
8415
8416 * process.c (Fmake_network_process): Set :host to nil if it's not used.
8417 Suggested by Masatake YAMATO <yamato@redhat.com>.
8418
8419 2010-05-23 Eli Zaretskii <eliz@gnu.org>
8420
8421 * dispextern.h (init_iterator): Sync prototype with changed definition.
8422
8423 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
8424
8425 * s/netbsd.h: If terminfo is found, use it in preference to
8426 termcap. (Bug#6190) [Backport from trunk]
8427
8428 2010-05-19 Eli Zaretskii <eliz@gnu.org>
8429
8430 Redesign and reimplement bidi-aware edge positions of glyph rows.
8431
8432 * dispextern.h (struct glyph_row): New members minpos and maxpos.
8433 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
8434 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
8435 and maxpos members instead of start.pos and end.pos, respectively.
8436
8437 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
8438 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
8439 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
8440 (try_window_reusing_current_matrix, try_window_id):
8441 Use ROW->minpos rather than ROW->start.pos.
8442 (init_from_display_pos, init_iterator): Use EMACS_INT for
8443 character and byte positions.
8444 (find_row_edges): Rename from find_row_end. Accept additional
8445 arguments for minimum and maximum buffer positions seen by
8446 display_line for this row. Don't use iterator to find the
8447 position following the maximum one; instead, increment the
8448 position found by display_line directly. Fix logic; eol_pos
8449 should be tested before the rest. Handle the case of characters
8450 delivered from display vector (bug#6036). Fix tests related to
8451 it->method. Handle the truncated_on_right_p rows.
8452 (RECORD_MAX_MIN_POS): New macro.
8453 (display_line): Use it to record the minimum and maximum buffer
8454 positions for glyphs in the row being assembled. Record the
8455 position of the newline that terminates the line. If word wrap is
8456 in effect, restore minimum and maximum positions seen up to the
8457 wrap point, when iterator returns to it.
8458 (try_window_reusing_current_matrix): Give up if in bidi-reordered
8459 row and cursor not already at point. Restore original pre-bidi
8460 code for unidirectional buffers.
8461
8462 * dispnew.c (increment_row_positions, check_matrix_invariants):
8463 Increment and check row->start.pos and row->end.pos, in addition
8464 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
8465
8466 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
8467 Display truncated_on_left_p and truncated_on_right_p flags.
8468 Formatting fixes.
8469 (pmtxrows): Display the ordinal number of each row. Don't display
8470 rows beyond the last one.
8471
8472 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
8473 it is not copied by bidi_copy_it.
8474
8475 2010-05-22 Eli Zaretskii <eliz@gnu.org>
8476
8477 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
8478 (Bug#6237)
8479
8480 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
8481
8482 * image.c (Fimage_flush): Rename from image-refresh.
8483
8484 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
8485
8486 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
8487 just one window.
8488
8489 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
8490 (clear_image_cache): If the number of cached images is unusually
8491 large, decrease the cache eviction delay (Bug#6230).
8492
8493 2010-05-21 Glenn Morris <rgm@gnu.org>
8494
8495 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
8496 Move these rules to ns.mk.
8497 * ns.mk: New file.
8498
8499 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
8500
8501 * Makefile.in (CANNOT_DUMP): New, set by configure.
8502 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
8503
8504 2010-05-20 Juri Linkov <juri@jurta.org>
8505
8506 * fileio.c (Fdelete_file): Change interative spec to use
8507 `read-file-name' like in `find-file-read-args' where the default
8508 value is `default-directory' instead of `buffer-file-name'.
8509 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
8510
8511 2010-05-20 Kevin Ryde <user42@zip.com.au>
8512
8513 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
8514 (Voverriding_terminal_local_map, Vsystem_key_alist)
8515 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
8516
8517 2010-05-20 Glenn Morris <rgm@gnu.org>
8518
8519 * Makefile.in (DEPDIR): New constant.
8520 (DEPFLAGS): Set with configure, not cpp.
8521 (MKDEPDIR): New, set by configure.
8522 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
8523 (clean): Use $DEPDIR.
8524 (deps_frag): Include from configure.
8525 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
8526 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
8527
8528 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state):
8529 Fix reallocation of the cache. (Bug#6210)
8530
8531 2010-05-19 Glenn Morris <rgm@gnu.org>
8532
8533 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
8534
8535 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
8536 (GNULIB_VAR): Remove.
8537 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
8538
8539 * m/ibms390x.h (LINKER):
8540 * m/macppc.h (LINKER) [GNU_LINUX]:
8541 * s/aix4-2.h (ORDINARY_LINK):
8542 * s/cygwin.h (LINKER):
8543 * s/darwin.h (ORDINARY_LINK):
8544 * s/gnu.h (ORDINARY_LINK):
8545 * s/netbsd.h (LINKER):
8546 * s/usg5-4.h (ORDINARY_LINK):
8547 Move to configure.
8548
8549 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
8550
8551 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
8552
8553 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
8554 prevent stack overflow if number of arguments is too large
8555 (Bug#6214).
8556
8557 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
8558
8559 * charset.c (load_charset_map_from_file): Don't call close after fclose.
8560
8561 2010-05-18 Glenn Morris <rgm@gnu.org>
8562
8563 * s/gnu-linux.h: Combine two conditionals.
8564
8565 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
8566 $(POST_ALLOC_OBJ).
8567
8568 * Makefile.in (RALLOC_OBJ): New, set by configure.
8569 (rallocobj): Replace with the previous variable.
8570 (otherobj): Use $RALLOC_OBJ.
8571
8572 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
8573 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
8574
8575 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
8576 (gmallocobj, vmlimitobj): Replace with previous two variables.
8577 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
8578
8579 2010-05-17 Glenn Morris <rgm@gnu.org>
8580
8581 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
8582 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
8583
8584 2010-05-16 Glenn Morris <rgm@gnu.org>
8585
8586 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
8587
8588 * Makefile.in (clean): Get rid of HAVE_NS conditional.
8589
8590 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
8591 trailing "/".
8592
8593 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
8594 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
8595
8596 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
8597 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
8598 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
8599 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
8600 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
8601
8602 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
8603 Remove ${STARTFLAGS}, nothing ever sets it.
8604
8605 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
8606
8607 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
8608
8609 2010-05-16 Glenn Morris <rgm@gnu.org>
8610
8611 * Makefile.in (LIBX_BASE): Always define.
8612
8613 * Makefile.in (LIBX_OTHER): Move out of cpp section.
8614
8615 * Makefile.in (LIBXT): Always define.
8616
8617 2010-05-15 Glenn Morris <rgm@gnu.org>
8618
8619 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
8620
8621 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
8622 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
8623
8624 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
8625
8626 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
8627 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
8628
8629 * emacs.c (main): Initialize initial-environment and
8630 process-environment before generating from env, not after.
8631
8632 Handle --version reasonably in CANNOT_DUMP configuration.
8633 * emacs.c (emacs_version, emacs_copyright): New string variables.
8634 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
8635 (syms_of_emacs): Defvar them, and initialize them from the C
8636 string variables.
8637 (main): If initialization hasn't been done, print initial version
8638 info from the C strings, instead of starting an interactive session.
8639
8640 2010-05-15 Eli Zaretskii <eliz@gnu.org>
8641
8642 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
8643 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
8644 (bidi_paragraph_init): Remove redundant assertion that we are at
8645 the beginning of a line after call to bidi_find_paragraph_start.
8646
8647 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
8648 (syms_of_xdisp): Defsubr it.
8649
8650 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
8651
8652 * Makefile.in: Fix MSDOS-related comments.
8653
8654 2010-05-15 Glenn Morris <rgm@gnu.org>
8655
8656 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
8657 (really-lwlib, really-oldXMenu): Always define.
8658 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
8659
8660 * Makefile.in: Simplify cpp conditional.
8661
8662 * Makefile.in (${ns_appdir}): Simplify using umask.
8663
8664 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
8665
8666 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
8667
8668 * eval.c (specbind): Remove left-over duplicate test.
8669 Disallow let-binding frame-local vars. Add comment.
8670
8671 2010-05-14 Eli Zaretskii <eliz@gnu.org>
8672
8673 Make the cache of bidi iterator states dynamically allocated.
8674 * bidi.c (bidi_cache_shrink): New function.
8675 (bidi_init_it): Call it.
8676 (bidi_cache_iterator_state): Enlarge the cache if needed.
8677
8678 * bidi.c (bidi_move_to_visually_next): Rename from
8679 bidi_get_next_char_visually. All callers changed.
8680
8681 2010-05-14 Kenichi Handa <handa@m17n.org>
8682
8683 * dispextern.h (struct composition_it): New member reversed_p.
8684
8685 * composite.c (composition_compute_stop_pos): Search backward if
8686 ENDPOS < CHARPOS.
8687 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
8688 Set CMP_IT->reversed_p.
8689 (composition_update_it): Pay attention to CMP_IT->reversed_p.
8690
8691 * xdisp.c (set_iterator_to_next):
8692 Call composition_compute_stop_pos with negative ENDPOS if we are
8693 scanning backward. Call composition_compute_stop_pos if scan
8694 direction is changed.
8695 (next_element_from_buffer): Call composition_compute_stop_pos with
8696 negative ENDPOS if we are scanning backward.
8697 (next_element_from_composition): Pay attention to
8698 IT->cmp_it.reversed_p.
8699
8700 2010-05-14 Kenichi Handa <handa@m17n.org>
8701
8702 * font.c (font_range): Return the range for the font found at first.
8703
8704 2010-05-14 Glenn Morris <rgm@gnu.org>
8705
8706 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
8707
8708 * Makefile.in (mktime, X11, register): Move undefs to configure.
8709
8710 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
8711 (MSDOS_X_OBJ): New variable.
8712 (MSDOS_SUPPORT_REAL): New constant.
8713 (MSDOS_SUPPORT): Set as a variable, not with cpp.
8714 (obj): Use MSDOS_X_OBJ.
8715 (lisp): Use MSDOS_SUPPORT as a variable.
8716
8717 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
8718 (GPM_MOUSE_SUPPORT): Now it's a constant.
8719 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
8720 not cpp.
8721
8722 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
8723 (ns_appresdir): Remove, unused.
8724
8725 * Makefile.in (SHELL): Move outside cpp section.
8726
8727 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
8728
8729 2010-05-13 Glenn Morris <rgm@gnu.org>
8730
8731 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
8732 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
8733
8734 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
8735 HAVE_WINDOW_SYSTEM must be too.
8736
8737 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
8738 (lisp): Remove WINNT_SUPPORT.
8739
8740 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
8741 Let configure set these variables (to empty) in this case as well.
8742
8743 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
8744 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
8745
8746 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
8747 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
8748 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
8749 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
8750 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
8751 the values output by configure.
8752 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
8753
8754 2010-05-12 Glenn Morris <rgm@gnu.org>
8755
8756 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
8757 (LINKER_WAS_SPECIFIED): Remove.
8758
8759 * Makefile.in (LIB_GCC): Set using configure, not cpp.
8760 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
8761 * m/arm.h (LIB_GCC) [GNU_LINUX]:
8762 * s/cygwin.h (LIB_GCC):
8763 * s/freebsd.h (LIB_GCC):
8764 * s/gnu-linux.h (LIB_GCC):
8765 * s/msdos.h (LIB_GCC):
8766 * s/netbsd.h (LIB_GCC):
8767 Move to configure.
8768
8769 2010-05-11 Karel Klíč <kklic@redhat.com>
8770
8771 * ftfont.c: Fix incorrect parentheses of #if condition for
8772 definining M17N_FLT_USE_NEW_FEATURE.
8773
8774 2010-05-11 Glenn Morris <rgm@gnu.org>
8775
8776 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
8777 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
8778
8779 2010-05-10 Eli Zaretskii <eliz@gnu.org>
8780
8781 * xdisp.c (init_iterator): Don't turn on bidi reordering in
8782 unibyte buffers. See
8783 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
8784
8785 2010-05-10 Glenn Morris <rgm@gnu.org>
8786
8787 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
8788 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
8789 (LIBES): Use LIBS_SYSTEM as a variable.
8790 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
8791 * s/aix4-2.h (LIBS_SYSTEM):
8792 * s/freebsd.h (LIBS_SYSTEM):
8793 * s/hpux10-20.h (LIBS_SYSTEM):
8794 * s/sol2-6.h (LIBS_SYSTEM):
8795 * s/unixware.h (LIBS_SYSTEM):
8796 Move to configure.
8797
8798 * s/aix4-2.h (MAIL_USE_LOCKF):
8799 * s/bsd-common.h (MAIL_USE_FLOCK):
8800 * s/darwin.h (MAIL_USE_FLOCK):
8801 * s/gnu-linux.h (MAIL_USE_FLOCK):
8802 * s/irix6-5.h (MAIL_USE_FLOCK):
8803 * s/template.h (MAIL_USE_FLOCK):
8804 Move to configure.
8805
8806 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
8807
8808 * Version 23.2 released.
8809
8810 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
8811
8812 * composite.c (autocmp_chars): Save point as marker before calling
8813 auto-composition-function (Bug#5984).
8814
8815 * lisp.h (restore_point_unwind): Add prototype.
8816
8817 * fileio.c (restore_point_unwind): Remove static attribute.
8818
8819 2010-05-08 Kenichi Handa <handa@m17n.org>
8820
8821 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
8822 new feature of libotf and m17n-flt.
8823 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
8824 Call OTF_check_features even if no specific feature is given.
8825 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
8826 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
8827 that OUT is NULL. Use OTF_drive_gsub_with_log and
8828 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
8829 OTF_drive_gpos.
8830 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
8831 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
8832 Setup mflt_enable_new_feature and mflt_try_otf.
8833
8834 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
8835
8836 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
8837
8838 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
8839 box and toolbar (Bug #6139).
8840 (xg_create_tool_bar): Remove comment (Bug #6139).
8841 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
8842 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
8843
8844 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
8845
8846 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
8847 Update dependencies.
8848
8849 2010-05-08 Eli Zaretskii <eliz@gnu.org>
8850
8851 * fringe.c (update_window_fringes): Set up truncation bitmaps for
8852 R2L lines.
8853
8854 2010-05-08 Glenn Morris <rgm@gnu.org>
8855
8856 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
8857
8858 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
8859 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
8860 (termcapobj): Replace with TERMCAP_OBJ.
8861 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
8862 (LIBES): Use LIBS_TERMCAP as a variable.
8863
8864 * s/freebsd.h (osreldate.h): No longer include, since this file
8865 does not use __FreeBSD_version any more.
8866
8867 * s/aix4-2.h (TERMINFO):
8868 * s/cygwin.h (TERMINFO):
8869 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8870 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
8871 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8872 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8873 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
8874 * s/irix6-5.h (TERMINFO):
8875 * s/netbsd.h (LIBS_TERMCAP):
8876 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
8877 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
8878 * s/usg5-4.h (TERMINFO):
8879 Move to configure.
8880
8881 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8882
8883 * eval.c (unbind_to): Don't unbind a local binding into the global
8884 binding when the local binding disappeared. Inversely, don't unbind
8885 a global binding into a newly created local binding.
8886 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
8887 can specify the frame to use, when applicable. Adjust callers.
8888
8889 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
8890 Stefan Monnier <monnier@iro.umontreal.ca>
8891
8892 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
8893
8894 2010-05-07 Eli Zaretskii <eliz@gnu.org>
8895
8896 * w32fns.c: Include w32.h.
8897 (Fw32_shell_execute): Decode the error message before passing it
8898 to `error'. (Bug#6126)
8899
8900 * msdos.c (dos_set_window_size):
8901 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
8902 instead of `XSYMBOL (foo)->value'.
8903
8904 2010-05-07 Eli Zaretskii <eliz@gnu.org>
8905
8906 Fix the MS-DOS build, broken by autoconfiscation.
8907
8908 * Makefile.in: Don't use Make-style comments past the "start of
8909 cpp stuff" line.
8910 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
8911
8912 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
8913 edited directly by msdos/sed1v2.inp).
8914
8915 2010-05-07 Glenn Morris <rgm@gnu.org>
8916
8917 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
8918 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
8919 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
8920 move out of cpp section.
8921 * s/freebsd.h (LD_SWITCH_SYSTEM):
8922 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
8923 * s/netbsd.h (LD_SWITCH_SYSTEM):
8924 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
8925
8926 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
8927
8928 Define LIB_STANDARD and START_FILES using autoconf.
8929 * s/usg5-4.h (LIB_STANDARD):
8930 * s/netbsd.h (START_FILES):
8931 * s/irix6-5.h (LIB_STANDARD):
8932 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
8933 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
8934 * s/freebsd.h (START_FILES):
8935 * s/darwin.h (START_FILES):
8936 * s/cygwin.h (START_FILES):
8937 * s/aix4-2.h (LIB_STANDARD):
8938 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
8939 * Makefile.in (STARTFILES): Rename to START_FILES, define using
8940 autoconf, not cpp.
8941
8942 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
8943
8944 Remove NEED_BSDTTY and NEED_UNISTD_H.
8945 * s/hpux10-20.h (NEED_BSDTTY): Remove.
8946 * s/aix4-2.h (NEED_UNISTD_H): Remove.
8947 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
8948 <sys/ptyio.h> and <unistd.h>.
8949
8950 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
8951
8952 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
8953 * s/gnu.h (START_FILES): Remove empty definition.
8954
8955 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
8956
8957 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
8958
8959 2010-05-06 Glenn Morris <rgm@gnu.org>
8960
8961 * Makefile.in (CPP, LN_S): Remove unused variables.
8962
8963 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8964
8965 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
8966
8967 2010-05-05 Lawrence Mitchell <wence@gmx.li>
8968
8969 * m/sparc.h: Fix typo in earlier change.
8970
8971 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8972
8973 Misc tweaks.
8974 * eval.c (Fdefvaralias): Remove unintended nested if.
8975 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
8976
8977 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
8978
8979 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
8980
8981 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
8982
8983 Remove BSD_PGRPS.
8984 * s/bsd-common.h (BSD_PGRPS): Remove undef.
8985 * s/gnu-linux.h (BSD_PGRPS): Remove.
8986 * term.c (dissociate_if_controlling_tty):
8987 * sysdep.c (narrow_foreground_group, widen_foreground_group)
8988 (init_sys_modes, reset_sys_modes):
8989 * emacs.c (main):
8990 * callproc.c (Fcall_process, child_setup): Remove code depending
8991 on BSD_PGRPS.
8992
8993 Remove POSIX_SIGNALS.
8994 * s/usg5-4.h (POSIX_SIGNALS):
8995 * s/netbsd.h (POSIX_SIGNALS):
8996 * s/msdos.h (POSIX_SIGNALS):
8997 * s/ms-w32.h (POSIX_SIGNALS):
8998 * s/hpux11.h (POSIX_SIGNALS):
8999 * s/gnu.h (POSIX_SIGNALS):
9000 * s/gnu-linux.h (POSIX_SIGNALS):
9001 * s/freebsd.h (POSIX_SIGNALS):
9002 * s/darwin.h (POSIX_SIGNALS):
9003 * s/cygwin.h (POSIX_SIGNALS):
9004 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
9005 * s/unixware.h:
9006 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
9007 * process.c (create_process):
9008 * syssignal.h:
9009 * sysdep.c (wait_for_termination, init_signals):
9010 * process.c (create_process):
9011 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
9012 remove all code that assumes the contrary.
9013
9014 2010-05-04 Glenn Morris <rgm@gnu.org>
9015
9016 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
9017 variable.
9018 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
9019 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
9020 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
9021 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
9022 LD_SWITCH_SYSTEM_tmp.
9023 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
9024 New variables, set by configure.
9025
9026 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
9027 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
9028 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
9029 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
9030 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
9031
9032 * s/aix4-2.h (C_SWITCH_SYSTEM):
9033 * m/alpha.h (C_SWITCH_MACHINE):
9034 Move to configure.in.
9035 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
9036 New variables, set by configure.
9037 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
9038 $c_switch_machine and $c_switch_system.
9039
9040 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
9041
9042 * s/hpux10-20.h (LIB_STANDARD): New definition.
9043 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
9044 on it, not used anymore.
9045
9046 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
9047
9048 * eval.c (internal_condition_case_n): Rename from
9049 internal_condition_case_2.
9050 (internal_condition_case_2): New function.
9051
9052 * xdisp.c (safe_call): Use internal_condition_case_n.
9053
9054 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
9055 (internal_delete_file, Frename_file): Callers changed.
9056
9057 * buffer.c (Fkill_buffer):
9058 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
9059
9060 * lisp.h: Update prototypes.
9061
9062 2010-05-03 Glenn Morris <rgm@gnu.org>
9063
9064 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
9065 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
9066 (LIBXT): Set with configure, not cpp.
9067 (LIBX): Remove.
9068 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
9069
9070 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
9071
9072 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
9073 The FreeBSD is not needed, the default works, Solaris version is
9074 not needed, and the remaining case is not supported by configure.
9075
9076 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
9077
9078 * xsmfns.c (CHDIR_OPT): New define.
9079 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
9080 restarting emacs.
9081
9082 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
9083 shut_down_emacs.
9084
9085 * emacs.c (USAGE1): Mention --chdir.
9086 (main): Handle --chdir.
9087 (standard_args): Add --chdir.
9088 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
9089 #5552).
9090
9091 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
9092
9093 Remove LD_SWITCH_MACHINE.
9094 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
9095 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
9096
9097 Clean up IRIX code.
9098 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
9099 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
9100
9101 Clean up AIX code.
9102 * m/ibmrs6000.inp: Remove file, unused.
9103 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
9104 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
9105 definition ...
9106 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
9107
9108 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
9109 unused.
9110
9111 2010-05-01 Eli Zaretskii <eliz@gnu.org>
9112
9113 Emulate POSIX_SIGNALS on MS-Windows.
9114
9115 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
9116 (SIG_SETMASK, SIG_UNBLOCK): Define.
9117
9118 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
9119 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
9120 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
9121
9122 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
9123 New stubs.
9124
9125 Miscellaneous fixes of bidi display.
9126
9127 * xdisp.c (find_row_end): New function, refactored from display_line.
9128 (display_line): Use it.
9129 (extend_face_to_end_of_line): In almost-filled rows, extend only
9130 if the row is R2L and not continued.
9131 (display_line): Fix prepending of truncation glyphs to R2L rows.
9132 Preserve overlay and string info in row->end.
9133 (insert_left_trunc_glyphs): Support addition of left truncation
9134 glyphs to R2L rows.
9135 (set_cursor_from_row): Don't place cursor on the vertical border
9136 glyph between adjacent windows. Fix a crash when a display string
9137 is continued to the next line. Don't return zero if cursor was
9138 found by `cursor' property of a display string.
9139 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
9140 test for that explicitly.
9141
9142 2010-05-01 Glenn Morris <rgm@gnu.org>
9143
9144 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
9145 for clarity.
9146 (OTHER_OBJ): Remove.
9147 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
9148 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
9149
9150 2010-05-01 Karel Klíč <kklic@redhat.com>
9151
9152 * fileio.c (Ffile_selinux_context): Context functions may return null.
9153
9154 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
9155
9156 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
9157
9158 2010-04-30 Glenn Morris <rgm@gnu.org>
9159
9160 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
9161 (OTHER_OBJ): Define as a separate variable, for clarity.
9162
9163 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
9164
9165 * xsettings.c: Include limits.h and update file comment.
9166
9167 2010-04-30 Glenn Morris <rgm@gnu.org>
9168
9169 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
9170 Set with configure, not cpp.
9171 (LIBW): Remove, replace with $TOOLKIT_LIBW.
9172
9173 * Makefile.in (mallocobj): Remove.
9174 (otherobj): Simplify using @OTHER_OBJ@.
9175
9176 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
9177 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
9178 Don't bother making nsgui.h dependency platform-specific.
9179
9180 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
9181
9182 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
9183
9184 * process.c (read_process_output, exec_sentinel): Don't burp if the
9185 sentinel/filter kills the current buffer (bug#6060).
9186
9187 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
9188 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
9189 Remove unused var `args'.
9190 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
9191 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
9192 * doc.c (store_function_docstring): Use XSETCAR.
9193
9194 2010-04-28 Glenn Morris <rgm@gnu.org>
9195
9196 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
9197 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
9198
9199 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
9200
9201 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
9202 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
9203
9204 * Makefile.in (FONT_OBJ): New, set by configure.
9205 (FONT_DRIVERS): Use $FONT_OBJ.
9206
9207 * Makefile.in (LIBXMU): Set with configure, not cpp.
9208 * s/aix4-2.h (LIBXMU):
9209 * s/hpux10-20.h (LIBXMU):
9210 Remove definition, now set in configure.
9211
9212 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
9213
9214 * m/amdx86-64.h [i386]: Move this test to configure.in.
9215
9216 2010-04-27 Glenn Morris <rgm@gnu.org>
9217
9218 * Makefile.in (LIBXTR6): Set with configure, not cpp.
9219 * s/unixware.h (NEED_LIBW): Remove definition.
9220
9221 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
9222 (TOOLKIT_LIBW): New, set by configure.
9223 (@X_TOOLKIT_TYPE@): No longer define it.
9224
9225 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
9226 (MOTIF_LIBW): Set with configure, not cpp.
9227 * s/aix4-2.h (LIB_MOTIF):
9228 * s/gnu-linux.h (LIB_MOTIF):
9229 * s/unixware.h (LIB_MOTIF): Move to configure.in.
9230
9231 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
9232
9233 Reduce CPP usage.
9234 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
9235 (obj): Use autoconf for unexec instead of cpp.
9236 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE):
9237 Remove definitions and undefs. Inline definitions in the only user.
9238 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
9239
9240 2010-04-27 Glenn Morris <rgm@gnu.org>
9241
9242 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
9243 since the defaults (set by the system file) are fine in most cases.
9244 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
9245 * m/ibms390x.h (START_FILES, LIB_STANDARD):
9246 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
9247 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
9248 Remove definitions, since they are set correctly in s/gnu-linux.h.
9249 * s/freebsd.h (START_FILES, LIB_STANDARD):
9250 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
9251 * s/hpux10-20.h (START_FILES):
9252 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
9253 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
9254
9255 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
9256 (MOTIF_LIBW): Use $LIBXP.
9257 (otherobj): Use $WIDGET_OBJ.
9258
9259 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
9260
9261 * Makefile.in (LIBS_MACHINE): Remove, unused.
9262
9263 Use autoconf instead of cpp for LIB_MATH.
9264 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
9265 * s/cygwin.h (LIB_MATH): Likewise.
9266 * Makefile.in (LIB_MATH): Do not define with cpp.
9267 (LIBES): Use autoconf for LIB_MATH.
9268
9269 2010-04-26 Kenichi Handa <handa@m17n.org>
9270
9271 * composite.c (Ffind_composition_internal): Fix the return value
9272 for an automatic composition.
9273
9274 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
9275
9276 Remove all NO_ARG_ARRAY uses.
9277 * fns.c (concat2, concat3, nconc2):
9278 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
9279 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
9280 * m/xtensa.h (NO_ARG_ARRAY):
9281 * m/template.h (NO_ARG_ARRAY):
9282 * m/sparc.h (NO_ARG_ARRAY):
9283 * m/sh3.h (NO_ARG_ARRAY):
9284 * m/mips.h (NO_ARG_ARRAY):
9285 * m/macppc.h (NO_ARG_ARRAY):
9286 * m/iris4d.h (NO_ARG_ARRAY):
9287 * m/intel386.h (NO_ARG_ARRAY):
9288 * m/ibms390x.h (NO_ARG_ARRAY):
9289 * m/ibms390.h (NO_ARG_ARRAY):
9290 * m/ibmrs6000.h (NO_ARG_ARRAY):
9291 * m/ia64.h (NO_ARG_ARRAY):
9292 * m/hp800.h (NO_ARG_ARRAY):
9293 * m/arm.h (NO_ARG_ARRAY):
9294 * m/amdx86-64.h (NO_ARG_ARRAY):
9295 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
9296
9297 2010-04-25 Eli Zaretskii <eliz@gnu.org>
9298
9299 * xdisp.c (display_line): Don't assume 2nd call to
9300 get_next_display_element cannot return zero. (Bug#6030)
9301 (iterate_out_of_display_property): New function, body from pop_it.
9302 (pop_it): Use it.
9303
9304 2010-04-24 Glenn Morris <rgm@gnu.org>
9305
9306 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
9307 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
9308 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
9309 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
9310
9311 2010-04-24 Eli Zaretskii <eliz@gnu.org>
9312
9313 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
9314 use `get_next_display_element' and `set_iterator_to_next' to
9315 advance to the next character, when looking for the character that
9316 begins the next row.
9317
9318 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
9319 definition of "struct Lisp_Symbol".
9320
9321 2010-04-24 Glenn Morris <rgm@gnu.org>
9322
9323 * Makefile.in (CRT_DIR): New variable, set by configure.
9324 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
9325 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
9326
9327 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9328
9329 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
9330
9331 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
9332
9333 Remove redundant flags.
9334 * s/freebsd.h (C_SWITCH_SYSTEM):
9335 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
9336 * s/netbsd.h (C_SWITCH_SYSTEM):
9337 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
9338 of these.
9339
9340 Simplify m/intel386.h.
9341 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
9342 user: ecrt0.c.
9343 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
9344 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
9345 the only user: s/unixware.h.
9346 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
9347 from m/intel386.h.
9348 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE):
9349 Definitions moved here from m/intel386.h.
9350
9351 * m/mips.h: Remove #if 0 code.
9352
9353 2010-04-23 Eli Zaretskii <eliz@gnu.org>
9354
9355 Fix display of composed characters from L2R scripts in bidi buffers.
9356 * xdisp.c (set_iterator_to_next, next_element_from_composition):
9357 After advancing IT past the composition, resync the bidi iterator
9358 with IT's position. (Bug#5977)
9359
9360 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9361
9362 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
9363 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
9364
9365 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9366
9367 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
9368
9369 2010-04-23 Eli Zaretskii <eliz@gnu.org>
9370
9371 Support `display' text properties and overlay strings in bidi buffers.
9372 * xdisp.c (pop_it): When the stack is popped after displaying
9373 from a string, bidi-iterate to exit from the text portion covered
9374 by the `display' property or overlay. (Bug#5988, bug#5920)
9375
9376 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9377
9378 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
9379 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
9380
9381 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
9382 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
9383
9384 Simplify STARTFILES definition.
9385 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
9386 relying on Makefile.in to define it.
9387 * s/cygwin.h (START_FILES): Likewise.
9388 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
9389
9390 Clean up Solaris code.
9391 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
9392 (LIB_MOTIF): Remove, configure takes care of this.
9393 (NOT_USING_MOTIF): Remove, unused.
9394 * xrdb.c: Remove #if 0-ed #include.
9395 (SYSV): Remove conditional for old SysV.
9396 * sysdep.c (closedir): Remove conditional code for Solaris,
9397 Solaris has closedir.
9398
9399 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
9400
9401 * xsettings.c (read_and_apply_settings): Check if current_font is
9402 NULL before strcmp (Bug#6001).
9403
9404 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
9405
9406 Clean up HP-UX files.
9407 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
9408 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
9409 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
9410 * s/hpux10-20.h: ... to the only user, here.
9411
9412 2010-04-21 Eli Zaretskii <eliz@gnu.org>
9413
9414 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
9415 use buffer-local values of paragraph-start and paragraph-separate.
9416 <paragraph_start_re, paragraph_separate_re>: Rename from
9417 fallback_paragraph_start_re and fallback_paragraph_separate_re.
9418 (Bug#5992)
9419
9420 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9421
9422 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
9423 current_tool_bar_style are new.
9424 (store_config_changed_event): Rename from store_font_changed_event.
9425 (XSETTINGS_TOOL_BAR_STYLE): New define.
9426 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
9427 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
9428 HAVE_XFT.
9429 (something_changedCB): store_font_changed_event is now
9430 store_config_changed_event.
9431 (parse_settings): Rename from parse_xft_settings.
9432 Read non-xft xsettings outside #ifdef HAVE_XFT.
9433 (read_settings): Rename from read_xft_settings.
9434 (apply_xft_settings): Take current settings as parameter. Do not
9435 call read_(xft)_settings.
9436 (read_and_apply_settings): New function.
9437 (xft_settings_event): Do non-xft stuff out of HAVE_XFT.
9438 Call read_and_apply_settings if there are settings to be read.
9439 (init_xsettings): Rename from init_xfd_settings.
9440 Call read_and_apply_settings unconditionally.
9441 (xsettings_initialize): Call init_xsettings.
9442 (Ftool_bar_get_system_style): New function.
9443 (syms_of_xsettings): Define Qmonospace_font_name and
9444 Qtool_bar_style. Initialize current_tool_bar_style to nil.
9445 defsubr Stool_bar_get_system_style. Fprovide on
9446 dynamic-setting.
9447 Move misplaced HAVE_GCONF.
9448
9449 * xsettings.h (Ftool_bar_get_system_style): Declare.
9450
9451 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
9452 Qtext, Qboth, Qboth_horiz are new.
9453 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
9454 Vtool_bar_style, tool_bar_max_label_size.
9455
9456 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
9457
9458 * keyboard.c: QClabel is new.
9459 (parse_tool_bar_item): Take out QClabel from tool bar items.
9460 Try to construct a label if ther is no QClabel.
9461 (syms_of_keyboard): Intern :label as QClabel.
9462
9463 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
9464 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
9465 New.
9466
9467 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
9468 dynamic-setting.el.
9469
9470 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
9471 (xg_make_tool_item, xg_show_toolbar_item): New function.
9472 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
9473 Call xg_make_tool_item to make a tool bar item.
9474 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
9475
9476 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
9477 into account for toolbars.
9478
9479 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9480
9481 * data.c (make_blv): Declarations before code (Bug#5993).
9482
9483 2010-04-21 Glenn Morris <rgm@gnu.org>
9484
9485 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
9486 Define using autoconf, not cpp.
9487 (LIBXSM): New variable, set by autoconf.
9488 (LIBXT): Use $LIBXSM.
9489
9490 2010-04-21 Dan Nicolaescu <local_user@dannlt>
9491
9492 Remove NOMULTIPLEJOBS, unused.
9493 * s/template.h (NOMULTIPLEJOBS):
9494 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
9495
9496 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
9497 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
9498 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
9499 detects -znocombreloc and passes it to the linker
9500 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
9501
9502 2010-04-21 Glenn Morris <rgm@gnu.org>
9503
9504 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
9505
9506 2010-04-21 Karel Klíč <kklic@redhat.com>
9507
9508 * Makefile.in (LIBSELINUX_LIBS): New.
9509 (LIBES): Add $LIBSELINUX_LIBS.
9510 * eval.c, lisp.h (call7): New function.
9511 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
9512 (Ffile_selinux_context, Fset_file_selinux_context):
9513 New functions.
9514 (Fcopy_file): New parameter preserve-selinux-context.
9515 (Frename_file): Preserve selinux context when renaming by copy-file.
9516
9517 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
9518 Eli Zaretskii <eliz@gnu.org>
9519
9520 Don't depend on cm.c or termcap.c on Windows, use stubs.
9521 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
9522 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
9523 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
9524 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
9525 (sys_tputs, sys_tgetstr): New stubs.
9526 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
9527 (tputs, tgetstr): New; define to sys_*.
9528
9529 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
9530
9531 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
9532
9533 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9534
9535 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
9536 Just signal a warning rather than an error when inside a let.
9537 (Fmake_variable_frame_local): Add the same test.
9538
9539 * font.c (syms_of_font): Make the style table vars read-only.
9540
9541 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
9542 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
9543
9544 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
9545
9546 2010-04-20 Eli Zaretskii <eliz@gnu.org>
9547
9548 Fix R2L paragraph display on TTY.
9549
9550 * xdisp.c (unproduce_glyphs): New function.
9551 (display_line): Use it when produced glyphs are discarded from R2L
9552 glyph rows.
9553 (append_composite_glyph): In R2L rows, prepend the glyph rather
9554 than appending it.
9555
9556 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
9557 rather than append it. Set up the resolved_level and bidi_type
9558 attributes of the appended glyph.
9559 (produce_special_glyphs): Mirror the backslash continuation
9560 character in R2L lines.
9561
9562 Implement display of R2L paragraphs in GUI sessions.
9563
9564 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
9565 append_stretch_glyph.
9566 (set_cursor_from_row) <cursor_x>: Remove unused variable.
9567 Fix off-by-one error in computing x at end of text in the row.
9568 (append_stretch_glyph): In reversed row, prepend the glyph rather
9569 than append it. Set resolved_level and bidi_type of the glyph.
9570 (extend_face_to_end_of_line): If the row is reversed, prepend a
9571 stretch glyph whose width is such that the rightmost glyph will be
9572 drawn at the right margin of the window. Fix off-by-one error on
9573 TTY frames in testing whether a line needs face extension.
9574 Fix face extension at ZV. If this is the last glyph row, use
9575 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
9576 region face.
9577 (set_cursor_from_row, display_line):
9578 Use MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
9579 row->continuation_lines_width.
9580 (next_element_from_buffer): Don't call bidi_paragraph_init if we
9581 are at ZV. Fixes a crash when reseated to ZV by
9582 try_window_reusing_current_matrix.
9583 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
9584 which happens with R2L glyph rows. Fixes a crash when inserting a
9585 character at end of an R2L line.
9586 (set_cursor_from_row): Don't be fooled by truncated rows: don't
9587 treat them as having zero-width characters. Improve comments.
9588 Don't reverse pos_before and pos_after for reversed glyph rows.
9589 Set cursor.x to negative value when the cursor might be on the
9590 left fringe.
9591 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
9592 left fringe, not the right one.
9593 (notice_overwritten_cursor, draw_phys_cursor_glyph)
9594 (erase_phys_cursor): For reversed cursor_row, support cursor on
9595 the left fringe.
9596
9597 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
9598 of continuation indicators on the fringes.
9599 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
9600 left fringe.
9601
9602 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
9603 draw cursor on the left fringe.
9604
9605 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
9606 cursor on the left fringe.
9607
9608 * dispnew.c (update_text_area): Handle reversed desired rows when
9609 the cursor is on the left fringe.
9610 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
9611 below, not by 0, for when the cursor is on the left fringe.
9612
9613 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
9614
9615 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
9616 widget is a scrollbar.
9617
9618 2010-04-20 Kenichi Handa <handa@m17n.org>
9619
9620 * charset.c (char_charset): Consider Vcharset_non_preferred_head
9621 only when the arg CHARSET_LIST is nil.
9622
9623 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9624
9625 Make variable forwarding explicit rather the using special values.
9626 Basically, this makes the structure of buffer-local values and object
9627 forwarding explicit in the type of Lisp_Symbols rather than use
9628 special Lisp_Objects for that. This tends to lead to slightly more
9629 verbose code, but is more C-like, simpler, and makes it easier to make
9630 sure we handled all cases, among other things by letting the compiler
9631 help us check it.
9632 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
9633 Removing forwarding objects.
9634 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
9635 (struct Lisp_Symbol): Make the various forms of variable-forwarding
9636 explicit rather than hiding them inside Lisp_Object "values".
9637 (XFWDTYPE): New macro.
9638 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
9639 (XBUFFER_LOCAL_VALUE): Remove.
9640 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
9641 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
9642 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
9643 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
9644 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
9645 Remove the Lisp_Misc_* header.
9646 (struct Lisp_Buffer_Local_Value): Redefine.
9647 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
9648 (struct Lisp_Misc_Any): Add filler to get the right size.
9649 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
9650 Lisp_Intfwd.
9651 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
9652 (DEFVAR_KBOARD): Allocate a forwarding object.
9653 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
9654 (let_shadows_global_binding_p): New function.
9655 (union Lisp_Val_Fwd): New type.
9656 (make_blv): New function.
9657 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
9658 (store_symval_forwarding, swap_in_global_binding, Fboundp)
9659 (swap_in_symval_forwarding, find_symbol_value, Fset)
9660 (let_shadows_buffer_binding_p, set_internal, default_value)
9661 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
9662 (Fkill_local_variable, Fmake_variable_frame_local)
9663 (Flocal_variable_p, Flocal_variable_if_set_p)
9664 (Fvariable_binding_locus):
9665 * xdisp.c (select_frame_for_redisplay):
9666 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
9667 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
9668 * frame.c (store_frame_param):
9669 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
9670 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
9671 value structure.
9672 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
9673 (clone_per_buffer_values): Only adjust markers into the current buffer.
9674 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
9675 (Fbuffer_local_value, set_buffer_internal_1)
9676 (swap_out_buffer_local_variables):
9677 Adapt to the new symbol value structure.
9678 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
9679 (defvar_per_buffer): Take a new arg for the fwd object.
9680 (buffer_lisp_local_variables): Return a proper alist (different fix
9681 for bug#4138).
9682 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
9683 (Fgarbage_collect): Don't handle buffer_defaults specially.
9684 (mark_object): Handle new symbol value structure rather than the old
9685 special Lisp_Misc_* objects.
9686 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
9687 * term.c (set_tty_color_mode):
9688 * bidi.c (bidi_initialize): Don't access the ->value field directly.
9689 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
9690 a buffer_local_flags.
9691 * print.c (print_object): Get rid of impossible forwarding objects.
9692
9693 2010-04-19 Eli Zaretskii <eliz@gnu.org>
9694
9695 * bidi.c (bidi_get_type, bidi_get_category)
9696 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
9697 (bidi_type_of_next_char, bidi_level_of_next_char):
9698 Declare static. Use `INLINE' rather than `inline'.
9699
9700 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
9701
9702 * dired.c (Ffile_attributes): Fix typo in docstring.
9703
9704 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9705
9706 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
9707 NSInteger (Bug#5811).
9708
9709 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9710
9711 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
9712 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
9713
9714 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9715
9716 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
9717
9718 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
9719
9720 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
9721 terminal frames (Bug#5837).
9722
9723 2010-04-19 Eli Zaretskii <eliz@gnu.org>
9724
9725 * .gdbinit (xsubchartable): New command.
9726
9727 2010-04-19 Eli Zaretskii <eliz@gnu.org>
9728
9729 * xdisp.c (display_line): Don't write beyond the last glyph row in
9730 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
9731 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
9732 and
9733 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
9734
9735 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
9736
9737 * alloc.c (Fpurecopy): Hash-cons if requested.
9738 (syms_of_alloc): Update purify-flag docstring.
9739
9740 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
9741
9742 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
9743 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
9744
9745 2010-04-17 Eli Zaretskii <eliz@gnu.org>
9746
9747 Fix a crash when an NSM character is inserted at BEGV.
9748
9749 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
9750 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
9751 NEUTRAL_B or UNKNOWN_BT.
9752
9753 2010-04-16 Eli Zaretskii <eliz@gnu.org>
9754
9755 * xdisp.c (set_cursor_from_row): Don't consider possibility of
9756 other rows with cursor unless they are different from this row and
9757 this row is part of a continued line. (Bug#5943)
9758
9759 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
9760
9761 * s/freebsd.h: Restore osreldate.h include.
9762 Suggested by Naohiro Aota.
9763
9764 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
9765
9766 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
9767
9768 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
9769
9770 * s/cygwin.h: Avoid linking against static libgcc.
9771
9772 2010-04-15 Juri Linkov <juri@jurta.org>
9773
9774 * window.c: Add Qscroll_command.
9775 Remove Vscroll_preserve_screen_position_commands.
9776 (window_scroll_pixel_based, window_scroll_line_based): Check the
9777 `scroll-command' property on the last command instead of searching
9778 the last command in Vscroll_preserve_screen_position_commands.
9779 (syms_of_window): Initialize and staticpro `Qscroll_command'.
9780 Put Qscroll_command property on Qscroll_up and Qscroll_down.
9781 (scroll-preserve-screen-position): Doc fix.
9782 (Vscroll_preserve_screen_position_commands): Remove variable.
9783
9784 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
9785
9786 * xdisp.c (message): Do not use NO_ARG_ARRAY.
9787
9788 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
9789
9790 Reduce cpp use in Makefile.in.
9791 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
9792 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
9793 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
9794 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
9795 (CRT0_COMPILE): Remove, inline it in the only user.
9796
9797 2010-04-14 Juri Linkov <juri@jurta.org>
9798
9799 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
9800 `scroll-up-command' and `M-v' from `scroll-down' to
9801 `scroll-down-command'.
9802
9803 2010-04-14 Juri Linkov <juri@jurta.org>
9804
9805 * window.c (Vscroll_preserve_screen_position_commands): New variable
9806 with the default value as the list of Qscroll_down and Qscroll_up.
9807 (window_scroll_pixel_based, window_scroll_line_based): Search the
9808 last command in the list Vscroll_preserve_screen_position_commands
9809 instead of comparing with Qscroll_up and Qscroll_down.
9810
9811 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
9812
9813 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
9814 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
9815 does that.
9816
9817 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
9818 to zero.
9819
9820 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9821
9822 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
9823
9824 Try to solve the problem of spurious EOF chars in long lines of text
9825 sent to interactive subprocesses.
9826 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
9827 (system_process_attributes): Remove unused var `ttotal'.
9828 * process.c (send_process): Don't bother breaking long line with EOF
9829 chars when talking to ttys any more.
9830 (wait_reading_process_output): Output a warning when called in such
9831 a way that it could block without being interruptible.
9832
9833 Try to detect file modification within the same second.
9834 * buffer.h (struct buffer): New field modtime_size.
9835 * buffer.c (reset_buffer): Initialize it.
9836 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
9837 (Fverify_visited_file_modtime): Check it.
9838 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
9839 (Fset_visited_file_modtime): Set (or clear) it.
9840
9841 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9842
9843 * process.c (status_notify): Remove unused var `ro'.
9844
9845 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
9846
9847 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
9848 more than one visual (Bug#5938).
9849
9850 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
9851
9852 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
9853 Undefine.
9854
9855 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
9856
9857 Remove C_SWITCH_SYSTEM_TEMACS.
9858 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
9859 (malloc, realloc, free): Use emacs, not temacs for conditional
9860 definition.
9861
9862 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
9863 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
9864
9865 Use autoconf, not cpp for some variables.
9866 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
9867 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
9868 (ALL_CFLAGS): Use them as make variables.
9869 (really-lwlib, really-oldXMenu): Do not pass them.
9870
9871 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
9872
9873 * xmenu.c (apply_systemfont_to_dialog): New.
9874 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
9875
9876 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9877
9878 * process.c (exec_sentinel): Preserve current-buffer.
9879
9880 * process.c (read_process_output): Move the save-current-buffer to
9881 apply to both the filter and the non-filter branches.
9882
9883 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
9884
9885 * s/msdos.h (UNEXEC): New definition.
9886
9887 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9888
9889 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
9890 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
9891
9892 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
9893 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
9894 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
9895 TRY_WINDOW_CHECK_MARGINS.
9896
9897 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
9898 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
9899 width only when it is for padding.
9900
9901 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
9902
9903 * xfns.c (Fx_show_tip): Call try_window in a loop until
9904 fonts_changed_p is zero (Bug#2423).
9905
9906 2010-04-08 Eli Zaretskii <eliz@gnu.org>
9907
9908 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
9909 the end of TEXT_AREA. (Bug#5856)
9910
9911 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
9912
9913 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
9914 HAVE_GCONF.
9915
9916 2010-04-08 Eli Zaretskii <eliz@gnu.org>
9917
9918 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
9919 prev.orig_type, for resolving type of NSM. (Bug#5858)
9920
9921 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
9922
9923 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
9924 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
9925 in current_font.
9926 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
9927 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
9928 New functions.
9929 (syms_of_xsettings): Initialize current_font.
9930 defsubr Sfont_get_system_normal_font.
9931
9932 * xsettings.h (Ffont_get_system_normal_font)
9933 (xsettings_get_system_normal_font): Declare.
9934
9935 * xfns.c (extern xlwmenu_default_font): Remove.
9936 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
9937 to xlwmenu.c.
9938
9939 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
9940 menu items in UTF-8.
9941
9942 * xmenu.c: Include xsettings.h and xlwmenu.h if USE_LUCID.
9943 (apply_systemfont_to_menu): New function.
9944 (set_frame_menubar, create_and_show_popup_menu):
9945 Call apply_systemfont_to_menu.
9946
9947 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
9948
9949 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
9950 FRAME_LINE_TO_PIXEL_Y.
9951
9952 * xterm.c (x_set_window_size_1): Don't add border_width/height to
9953 pixelwidth/height.
9954
9955 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
9956
9957 Simplify code for HP machines.
9958 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
9959 for GNU_LINUX, not needed.
9960 (UNEXEC, NEED_BSDTTY): Move definitions...
9961 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
9962
9963 * m/iris4d.h (UNEXEC): Move definition ...
9964 * s/irix6-5.h (UNEXEC): ... here.
9965
9966 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
9967
9968 * xfns.c (set_machine_and_pid_properties): New function.
9969 (Fx_create_frame): Call set_machine_and_pid_properties.
9970
9971 2010-04-03 Eli Zaretskii <eliz@gnu.org>
9972
9973 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char):
9974 Check bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
9975 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
9976
9977 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
9978 in this function. (Bug#5703)
9979
9980 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
9981
9982 * nsterm.h: Fix last change.
9983
9984 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
9985
9986 * m/intel386.h (NO_REMAP): Move definition ...
9987 * s/msdos.h (NO_REMAP): ... here.
9988
9989 * m/vax.h (CRT0_DUMMIES): Remove, unused.
9990
9991 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
9992 used on those platforms.
9993
9994 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
9995
9996 Remove extern errno declarations.
9997 * xterm.c:
9998 * xrdb.c:
9999 * w32term.c:
10000 * unexec.c:
10001 * unexaix.c:
10002 * sysdep.c:
10003 * process.c:
10004 * lread.c:
10005 * keyboard.c:
10006 * floatfns.c:
10007 * filelock.c:
10008 * fileio.c:
10009 * emacs.c (main):
10010 * ecrt0.c:
10011 * dispnew.c:
10012 * callproc.c:
10013 * buffer.c: Remove errno extern declarations.
10014 * s/netbsd.h (NEED_ERRNO): Remove.
10015
10016 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
10017
10018 Remove all uses of LIBX11_SYSTEM.
10019 * Makefile.in (LIBX11_SYSTEM): Remove.
10020 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
10021 instead.
10022
10023 2010-04-01 Eli Zaretskii <eliz@gnu.org>
10024
10025 Remove support for DJGPP v1.x (bug#5813).
10026
10027 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
10028 * s/msdos.h:
10029 * unexec.c (make_hdr, copy_text_and_data):
10030 * sysdep.c (wait_for_termination, sys_subshell):
10031 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
10032 (IT_set_terminal_modes, __write, _rename, gethostname)
10033 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
10034 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
10035 the value of __DJGPP__.
10036 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
10037 compatibility code.
10038 * lread.c:
10039 * gmalloc.c (memalign):
10040 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
10041 * emacs.c (main):
10042 * dosfns.c (init_dosfns):
10043 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
10044
10045 2010-04-01 Eli Zaretskii <eliz@gnu.org>
10046
10047 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
10048 string with `cursor' property comes from an `after-string'
10049 overlay. (Bug#5816)
10050
10051 2010-04-01 Glenn Morris <rgm@gnu.org>
10052
10053 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
10054 Define as Makefile variables.
10055 (LIBX): Use above variables rather than directly using autoconf.
10056
10057 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
10058
10059 Clean up BSD_SYSTEM use.
10060 * xterm.c:
10061 * process.c:
10062 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
10063 for including <sys/ioctl.h>.
10064 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
10065 code is only used for MSDOS.
10066
10067 2010-03-31 Juri Linkov <juri@jurta.org>
10068
10069 * image.c: Add `Qextension_data'.
10070 (syms_of_image): Initialize and staticpro `Qextension_data'.
10071 (Fimage_metadata): Rename from `Fimage_extension_data'.
10072 (gif_load): Put GIF extension data to the property
10073 `Qextension_data'.
10074
10075 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10076
10077 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
10078 * nsterm.h: Fix prototype.
10079
10080 2010-03-31 Eli Zaretskii <eliz@gnu.org>
10081
10082 * xdisp.c (highlight_trailing_whitespace): Support highlight of
10083 trailing whitespace in right-to-left rows.
10084
10085 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10086
10087 Get rid of the direct_output optimizations.
10088 * keyboard.c (nonundocount): Remove extern declaration.
10089 (command_loop_1): Remove brittle optimisation for cheap and
10090 common operations.
10091 * xdisp.c (redisplay_internal): Don't bother checking
10092 redisplay_performed_directly_p any more.
10093 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
10094 any more.
10095 * dispnew.c (redisplay_performed_directly_p)
10096 (direct_output_for_insert, direct_output_forward_char):
10097 * dispextern.h (redisplay_performed_directly_p)
10098 (direct_output_for_insert, direct_output_forward_char): Remove.
10099 * cmds.c (nonundocount): Make it static.
10100
10101 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
10102
10103 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
10104
10105 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
10106
10107 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
10108 invisible (Bug#5766).
10109
10110 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
10111
10112 * xdisp.c (x_consider_frame_title, update_window_cursor):
10113 Remove HAVE_NS conditionals.
10114 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
10115
10116 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
10117 filename for the title.
10118 (ns_set_doc_edited): Do nothing if the selected window is a
10119 minibuffer window.
10120
10121 * nsterm.h: Add prototypes for ns_set_name_as_filename and
10122 ns_set_doc_edited.
10123
10124 * nsterm.m: Remove unneeded prototype.
10125
10126 2010-03-31 Glenn Morris <rgm@gnu.org>
10127
10128 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
10129 in the DOC file. (Bug#5336)
10130
10131 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10132
10133 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
10134
10135 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10136
10137 * window.c (keys_of_window): Remove redundant/overridden bindings.
10138
10139 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10140
10141 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
10142 Restore original behavior when the iterator is not bidi_p.
10143
10144 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
10145
10146 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
10147
10148 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10149
10150 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
10151 are outside the range of cached character positions.
10152
10153 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
10154
10155 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
10156
10157 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10158
10159 Initial support for bidirectional editing.
10160
10161 * Makefile.in (obj): Include bidi.o.
10162 (bidi.o): New target.
10163
10164 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
10165 ($(BLD)/bidi.$(O)): New target.
10166
10167 * bidi.c: New file.
10168
10169 * buffer.h (struct buffer): New members bidi_display_reordering
10170 and bidi_paragraph_direction.
10171
10172 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
10173 and bidi_paragraph_direction.
10174 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
10175 and bidi-paragraph-direction.
10176 (Fbuffer_swap_text): Swap the values of
10177 bidi_display_reordering and bidi_paragraph_direction.
10178
10179 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
10180 (bidi_type_t, bidi_dir_t): New types.
10181 (bidi_saved_info, bidi_stack, bidi_it): New structures.
10182 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
10183 prev_stop, base_level_stop, and eol_pos.
10184 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
10185 (IT_STACK_SIZE): Enlarge to 5.
10186 (struct glyph_row): New member reversed_p.
10187 <string_buffer_position>: Update prototype.
10188 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
10189 glyph_row if bidi_it.paragraph_dir == R2L.
10190 (struct glyph): New members resolved_level and bidi_type.
10191
10192 * dispnew.c (direct_output_forward_char): Give up if we need bidi
10193 processing or buffer's direction is right-to-left.
10194 (prepare_desired_row): Preserve the reversed_p flag.
10195 (row_equal_p): Compare the reversed_p attributes as well.
10196
10197 * xdisp.c (init_iterator): Initialize it->bidi_p.
10198 Call bidi_init_it and set it->paragraph_embedding from the current
10199 buffer's value of bidi_paragraph_direction.
10200 (reseat_1): Initialize bidi_it.first_elt.
10201 (set_iterator_to_next, next_element_from_buffer): Use the value of
10202 paragraph_embedding to determine the paragraph direction.
10203 (set_iterator_to_next): Under bidi reordering, call
10204 bidi_get_next_char_visually. Call bidi_paragraph_init if the
10205 new_paragraph flag is set in the bidi iterator.
10206 (next_element_from_buffer): If bidi_it.first_elt is set,
10207 initialize paragraph direction and find the first character to
10208 display in the visual order. If reseated to a middle of a line,
10209 prime the bidi iterator starting at the line's beginning.
10210 Handle the situation where we overstepped stop_charpos due to
10211 non-linearity of the bidi iteration. Likewise for when we back up
10212 beyond the previous stop_charpos. When moving across stop_charpos,
10213 record it in prev_stop.
10214 (display_line): Set row->end and it->start for the next row to the
10215 next character in logical order. Always extend reversed_p rows to
10216 the end of line, even if they end at ZV. Copy the reversed_p flag
10217 to the next glyph row. Keep calling set_cursor_from_row for
10218 bidi-reordered rows even if we already have a possible candidate
10219 for cursor position. Set row_end after all the row's glyphs have
10220 been produced, by looping over the glyphs. Record the position
10221 after EOL in it->eol_pos, and use it to set end_pos of the last
10222 row produced for a continued line.
10223 <Qright_to_left, Qleft_to_right>: New variables.
10224 (syms_of_xdisp): Initialize and staticpro them.
10225 (string_buffer_position_lim): New function.
10226 (string_buffer_position): Most of code moved to
10227 string_buffer_position_lim. Last argument and return value are
10228 now EMACS_INT; all callers changed.
10229 (set_cursor_from_row): Rewritten to support bidirectional text and
10230 reversed glyph rows.
10231 (text_outside_line_unchanged_p, try_window_id):
10232 Disable optimizations if we are reordering bidirectional text and the
10233 paragraph direction can be affected by the change.
10234 (append_glyph, append_composite_glyph)
10235 (produce_image_glyph, append_stretch_glyph): Set the
10236 resolved_level and bidi_type members of each glyph.
10237 (append_glyph): If the glyph row is reversed, prepend the glyph
10238 rather than appending it.
10239 (handle_stop_backwards): New function.
10240 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
10241 (reseat): Call handle_stop_backwards to recompute prev_stop and
10242 base_level_stop for the new position.
10243 (handle_invisible_prop): Under bidi iteration, skip invisible text
10244 using bidi_get_next_char_visually. If we are `reseat'ed, init the
10245 paragraph direction. Update IT->prev_stop after skipping
10246 invisible text.
10247 (move_it_in_display_line_to): New variables prev_method
10248 and prev_pos. Compare for strict equality in
10249 BUFFER_POS_REACHED_P.
10250 (try_cursor_movement): Examine all the candidate rows that occlude
10251 point, to return the best match. If rows are bidi-reordered
10252 and point moved backwards, back up to the row that is not a
10253 continuation line, and start looking for a suitable row from
10254 there.
10255
10256 * term.c (append_glyph): Reverse glyphs by pre-pending them,
10257 rather than appending, if the glyph_row's reversed_p flag is set.
10258 Set the resolved_level and bidi_type members of each glyph.
10259
10260 * .gdbinit (pbiditype): New command.
10261 (pgx): Use it to display bidi level and type of the glyph.
10262 (pitx): Display some bidi information about the iterator.
10263 (prowlims, pmtxrows): New commands.
10264
10265 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
10266
10267 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
10268 * s/usg5-4.h (LIBS_DEBUG):
10269 * s/irix6-5.h (C_DEBUG_SWITCH):
10270 * s/gnu-linux.h (LIBS_DEBUG):
10271 * s/darwin.h (LIBS_DEBUG):
10272 * s/bsd-common.h (LIBS_DEBUG):
10273 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
10274 * m/iris4d.h (LIBS_DEBUG):
10275 * m/hp800.h (LIBS_DEBUG): Remove definitions.
10276
10277 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
10278 (LIBS_DEBUG): Remove definition.
10279
10280 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
10281
10282 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
10283 Windows.
10284
10285 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10286
10287 * process.c (Fmake_network_process): Don't call turn_on_atimers around
10288 `connect' (Bug#5723).
10289
10290 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
10291
10292 * process.c (Fmake_network_process): Call `select' for interrupted
10293 `connect' rather than creating new socket (Bug#5173).
10294
10295 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
10296
10297 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
10298
10299 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
10300
10301 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
10302
10303 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10304
10305 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
10306 XLoadQueryFont.
10307
10308 2010-03-24 Kenichi Handa <handa@m17n.org>
10309
10310 * coding.c (decode_coding_ccl): Fix previous change for the
10311 multibyte case.
10312 (encode_coding_ccl): Don't setup ccl program here. Fix for the
10313 case that the output buffer is fullfilled.
10314 (encode_coding): Setup ccl program here.
10315
10316 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
10317
10318 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
10319
10320 Simplify LIBS_MACHINE definitions.
10321 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
10322 * m/iris4d.h (LIBS_MACHINE): Likewise.
10323 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
10324 * s/aix4-2.h (LIBS_SYSTEM): ... here.
10325 * s/netbsd.h: Remove commented out code.
10326
10327 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
10328
10329 Remove dead code dealing with POSIX_SIGNALS.
10330 * atimer.c (set_alarm): Remove dead code, all USG systems define
10331 POSIX_SIGNALS.
10332 * data.c (arith_error): Likewise.
10333 * keyboard.c (input_available_signal, handle_user_signal)
10334 (interrupt_signal): Likewise.
10335 * process.c (sigchld_handler): Likewise.
10336 (create_process): Remove if 0 code. Remove HPUX conditional when
10337 !defined (POSIX_SIGNALS), it cannot be true.
10338 * syssignal.h: Remove USG5_4 and USG conditionals when
10339 !POSIX_SIGNALS, they cannot be true.
10340
10341 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
10342 NO_SOCK_SIGIO, not used anymore.
10343
10344 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
10345
10346 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
10347 support vax on BSDs.
10348
10349 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
10350 * s/aix4-2.h (ORDINARY_LINK): ... here.
10351
10352 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
10353
10354 * Makefile.in (abs_builddir): Define.
10355 (bootstrap_exe): Use it.
10356 (VPATH): Use $(srcdir) instead of @srcdir@.
10357
10358 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
10359
10360 * Makefile.in (bootstrap_exe): Use an absolute name.
10361
10362 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10363
10364 Remove support for old GNU/Linux using libc version 5.
10365 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
10366 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
10367
10368 Consolidate redundant definitions in s/bsd-common.h.
10369 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10370 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10371 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
10372 doing it in all files that include this one.
10373 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10374 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10375 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10376 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10377 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10378 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10379 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10380 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10381 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10382
10383 Consolidate redundant definitions.
10384 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
10385 it's undefined in all files that include this one.
10386 (POSIX_SIGNALS): Define here instead of doing it in all files that
10387 include this one.
10388 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10389 (POSIX_SIGNALS): Do not define.
10390 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10391 (POSIX_SIGNALS): Do not define.
10392 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10393 (POSIX_SIGNALS): Do not define.
10394
10395 Remove support for old UNIX System V systems.
10396 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
10397 * s/usg-5-4-2.h: Remove.
10398
10399 Remove support for Solaris on PPC and for old versions.
10400 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
10401 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
10402 that cancel each other.
10403 * s/sol2-3.h:
10404 * s/sol2-4.h:
10405 * s/sol2-5.h: Remove.
10406 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
10407 (NO_REMAP): Remove, unused.
10408 (UNEXEC): Move definition ...
10409 * s/aix4-2.h (UNEXEC): ... here.
10410
10411 * s/openbsd.h: Remove support for non-ELF and for systems that do
10412 not support shared libraries.
10413 * s/netbsd.h:
10414 * s/freebsd.h: Likewise.
10415
10416 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10417
10418 Remove non-working support for lynxos 3.0.
10419 * s/lynxos.h: Remove file.
10420
10421 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
10422 COFF_BSD_SYMBOLS, nothing defines it anymore.
10423
10424 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10425
10426 Remove obsolete uses of HAVE_SHM.
10427 * emacs.c (standard_args):
10428 (Fdump_emacs):
10429 (syms_of_emacs): Remove code depending on HAVE_SHM.
10430
10431 * alloc.c: Remove HAVE_SHM dependent definition.
10432
10433 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
10434
10435 2010-03-18 Glenn Morris <rgm@gnu.org>
10436
10437 * emacs.c (USAGE4): Hard-code bug address.
10438 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
10439 (bug_reporting_address): Remove.
10440 (main): Don't call bug_reporting_address.
10441
10442 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
10443 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
10444
10445 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
10446
10447 * xfns.c (Fx_create_frame):
10448 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
10449 on left.
10450
10451 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
10452
10453 * editfns.c (Fformat): Account for string precision when computing
10454 field width (Bug#5710).
10455
10456 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
10457
10458 * xfns.c (Fx_create_frame): Set default to Qright.
10459
10460 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
10461 all window systems.
10462
10463 2010-03-12 Eli Zaretskii <eliz@gnu.org>
10464
10465 These changes remove termcap.c from the build on Posix platforms.
10466 * Makefile.in (termcapobj): Move termcap.o from here...
10467 (MSDOS_OBJ): ...to here.
10468 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
10469 now identical to when LIBS_TERMCAP is defined.
10470
10471 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
10472
10473 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
10474
10475 * config.in: Regenerated. (See top-level ChangeLog.)
10476
10477 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
10478
10479 * Branch for 23.2.
10480
10481 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
10482
10483 Cleanup setup of gl_state in various parts of the code.
10484 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
10485 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
10486 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
10487 (skip_chars):
10488 * regex.c (regex_compile): Use it.
10489 (re_compile_pattern): Don't set gl_state.current_syntax_table since
10490 it's now set in regex_compile when/if we need it.
10491
10492 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
10493
10494 Make it possible to C-g in a tight bytecode loop again (bug#5680).
10495 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
10496 (QUIT): Use it to consolidate code and remove redundancy.
10497 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
10498
10499 * regex.c (regex_compile): Setup gl_state as well.
10500
10501 * syntax.c (skip_chars): Setup gl_state (bug#3823).
10502 (in_classes): Use CONSP before XCAR/XCDR.
10503
10504 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
10505
10506 * keymap.c (Fwhere_is_internal): Use Fequal to compare
10507 definitions, so that keyboard macros are correctly handled
10508 (Bug#5481).
10509
10510 2010-03-02 Eli Zaretskii <eliz@gnu.org>
10511
10512 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
10513 text that could be relocated inside the call to emacs_mule_char.
10514 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
10515 (CODING_DECODE_CHAR): Add a comment describing its purpose.
10516
10517 2010-03-02 Kenichi Handa <handa@m17n.org>
10518
10519 * character.c (parse_str_as_multibyte): Fix handling of the
10520 multibyte form of raw-bytes.
10521 (str_as_multibyte): Likewise.
10522
10523 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
10524 form of raw-bytes.
10525
10526 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
10527
10528 * charset.c (load_charset_map_from_file)
10529 (load_charset_map_from_vector): Zero out allocated
10530 charset_map_entries before using them.
10531
10532 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
10533
10534 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
10535
10536 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
10537
10538 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
10539 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
10540
10541 2010-02-26 Kenichi Handa <handa@m17n.org>
10542
10543 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
10544
10545 * xdisp.c (reseat_to_string): Fix previous change.
10546
10547 2010-02-26 David Reitter <david.reitter@gmail.com>
10548
10549 * nsfont.m (nsfont_draw): ns_antialias_text should be a
10550 Lisp_Object (Bug#4736).
10551
10552 2010-02-25 Kenichi Handa <handa@m17n.org>
10553
10554 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
10555
10556 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
10557
10558 * xterm.c (XTflash): Move declarations before statements.
10559
10560 * gtkutil.c (xg_get_gdk_display): Remove (unused).
10561 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
10562 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
10563 (xg_create_tool_bar): Remove unused variables.
10564 (x_wm_set_size_hint): Move declarations before statements.
10565 (xg_create_frame_widgets): Remove variable grav.
10566
10567 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
10568
10569 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
10570
10571 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
10572
10573 * term.c (fatal): Add a final \n if needed (bug#5596).
10574
10575 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
10576
10577 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
10578
10579 2010-02-18 Glenn Morris <rgm@gnu.org>
10580
10581 * callint.c (Finteractive): Doc fix.
10582
10583 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
10584
10585 * coding.c (record_conversion_result):
10586 Handle CODING_RESULT_INSUFFICIENT_DST.
10587 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
10588 memory allocation error.
10589
10590 2010-02-17 Kenichi Handa <handa@m17n.org>
10591
10592 * coding.c (decode_coding_ccl): Don't setup ccl program here.
10593 Fix for the case that the output buffer is fullfilled.
10594 (decode_coding): Setup ccl program here. Keep looping when the
10595 decoder stopped because the output buffer is
10596 fullfilled (bug#5534).
10597
10598 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
10599
10600 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
10601
10602 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
10603 bug #5571.
10604 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
10605 overdrawn.
10606
10607 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
10608
10609 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
10610 doing_interact here.
10611 (ice_connection_closed): New function.
10612 (x_session_check_input, smc_die_CB, ice_io_error_handler)
10613 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
10614 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
10615 returns I/O error.
10616 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
10617 bug #5512.
10618
10619 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
10620
10621 * nsfont.m (nsfont_open): The system's value for the font descent
10622 is negative, so round it down to avoid clipping.
10623
10624 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
10625
10626 * charset.c (load_charset_map_from_file)
10627 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
10628 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
10629
10630 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
10631
10632 * charset.c (load_charset_map_from_file): Allocate large
10633 charset_map_entries structure on the heap rather than the stack.
10634 (Bug#5526).
10635
10636 2010-01-31 Kenichi Handa <handa@m17n.org>
10637
10638 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
10639 size in NAME is invalid, return -1 (Bug#5396).
10640
10641 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
10642
10643 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
10644 <deactivated@gmail.com> (Bug#3605).
10645
10646 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
10647
10648 * fileio.c (Frename_file): Correctly rename symlinks to
10649 directories (Bug#5496).
10650
10651 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
10652
10653 * nsterm.m (ns_ring_bell): Handle visible bell like X.
10654
10655 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
10656
10657 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
10658
10659 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
10660
10661 * frame.c (DEFAULT_ROWS): Change default to 35.
10662
10663 * xfns.c (x_default_font_parameter): Change default XFT font to
10664 monospace-10 (Bug#3643).
10665
10666 2010-01-29 Eli Zaretskii <eliz@gnu.org>
10667
10668 * w32inevt.c (key_event): Remove unnecessary comparison of
10669 event->uChar.AsciiChar with 128.
10670
10671 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
10672
10673 * fileio.c (Frename_file): Fix last change (Bug#5487).
10674
10675 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
10676
10677 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
10678
10679 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
10680
10681 * xfns.c (Fx_create_frame): Remove window size matching code from
10682 2010-01-15.
10683 (x_get_current_desktop, x_get_desktop_workarea): Remove.
10684
10685 2010-01-27 Jason Rumney <jasonr@gnu.org>
10686
10687 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
10688 (key_event): Use unicode for characters 128 and higher (Bug#4567).
10689
10690 2010-01-27 Kenichi Handa <handa@m17n.org>
10691
10692 * regex.c (analyse_first): Fix setting of fastmap for unibyte
10693 pattern string (Bug#4209).
10694
10695 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
10696
10697 * fileio.c (Frename_file): Call copy-directory and
10698 delete-directory for directories, in order to handle cross-device
10699 renaming (Bug#3353).
10700
10701 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
10702
10703 * xfns.c (Fx_create_frame): If frame height is too big, try
10704 sizes 24 and 10. Bug #3643.
10705
10706 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
10707
10708 Try and fix bug#788, hopefully for real this time.
10709 * keymap.c (shadow_lookup): Add `remap' arg.
10710 (describe_map, describe_vector): Update calls to shadow_lookup.
10711 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
10712 `remapped' so this flag is applicable to `sequence'. Be careful to
10713 perform remapping during shadow_lookup check of remapped_sequences.
10714
10715 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
10716
10717 * image.c (png_load): Use png_sig_cmp instead of the obsolete
10718 png_check_sig, which has been removed in libpng 1.4.
10719
10720 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
10721
10722 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
10723 lacks this header file).
10724
10725 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10726
10727 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
10728 as in Emacs 22.
10729
10730 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10731
10732 * lisp.h (make_pure_string): String pointer arg now points to const.
10733
10734 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
10735 args now point to const.
10736
10737 2010-01-22 Eli Zaretskii <eliz@gnu.org>
10738
10739 * lread.c (Fload): Don't treat files without .elc extension as
10740 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
10741 them. (bug#5303)
10742
10743 2010-01-20 Kenichi Handa <handa@m17n.org>
10744
10745 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
10746 treat the source as actual byte sequence.
10747
10748 2010-01-19 Alan Mackenzie <acm@muc.de>
10749
10750 Fix spurious before-change-functions invocation from (insert ?\n).
10751 * textprop.c (set_text_properties): Rename parameter
10752 `signal_after_change_p' to `coherent_change_p', and make the
10753 invocation of `modify_region' conditional on it.
10754
10755 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
10756
10757 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
10758 for debug purpose.
10759 (syms_of_xsettings): Declare xft-settings.
10760
10761 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
10762
10763 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
10764
10765 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
10766
10767 * xterm.c (event_handler_gdk): Block input (Bug#5037).
10768
10769 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
10770
10771 * emacs.c (standard_args): Adjust arg priorities to reflect how
10772 they are processed in startup.el.
10773
10774 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
10775
10776 * Makefile.in (lisp, shortlisp): Update.
10777
10778 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
10779
10780 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
10781 code, link the new kboard into all_kboard before running Lisp code,
10782 and protect the new terminal with GCPRO (Bug#5365).
10783 (x_term_init): Remove unused var `atom'.
10784 (x_delete_display, x_delete_terminal): Remove unused var `i'.
10785
10786 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
10787
10788 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
10789 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
10790 to find out usable size of the desktop. Don't make frames larger than
10791 this. Bug #3643.
10792
10793 2010-01-15 Kenichi Handa <handa@m17n.org>
10794
10795 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
10796
10797 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
10798
10799 * nsterm.m (Qnone): Define.
10800
10801 * nsfns.m (Qnone): Move definition to nsterm.m.
10802
10803 2010-01-14 Kenichi Handa <handa@m17n.org>
10804
10805 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
10806 systems.
10807
10808 2010-01-14 Kenichi Handa <handa@m17n.org>
10809
10810 Make auto-composition work on all buffers even if they are
10811 fundamental mode.
10812
10813 * composite.c (Vauto_composition_mode): New variable.
10814 (composition_compute_stop_pos): Check Vauto_composition_mode
10815 instead of Vauto_composition_function.
10816 (composition_adjust_point, Ffind_composition_internal): Likewise.
10817 (syms_of_composite): Declare Lisp variable
10818 "auto-composition-mode" here.
10819
10820 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
10821
10822 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
10823 during call to vendor-specific-keysyms (Bug#5365).
10824
10825 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10826
10827 * keyboard.c (input_available_signal) [SYNC_INPUT]:
10828 Call SIGNAL_THREAD_CHECK (Bug#5333).
10829
10830 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
10831 Call SIGNAL_THREAD_CHECK.
10832
10833 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
10834
10835 Try to fix bug#5314. This is probably not the final word, tho.
10836 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
10837 recent-auto-save-p as a side-effect.
10838 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
10839 * buffer.c (Fkill_buffer, reset_buffer):
10840 * editfns.c (Fsubst_char_in_region):
10841 * fileio.c (Finsert_file_contents, Fdo_auto_save)
10842 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
10843
10844 2010-01-13 Kenichi Handa <handa@m17n.org>
10845
10846 Display buffer name, etc. in mode line by composing correctly.
10847
10848 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
10849 STRING is not nil.
10850 (display_mode_element): Adjust for the change of
10851 decode_mode_spec and display_line.
10852 (decode_mode_spec): Change arg MULTIBYTE to STRING.
10853 (display_string): Handle the case that STRING is non-null and
10854 LISP_STRING is not nil.
10855
10856 * xterm.c (x_draw_composite_glyph_string_foreground):
10857 Pay attention to s->face->overstrike.
10858
10859 * composite.c (composition_reseat_it): Don't check PT if STRING is
10860 non nil.
10861
10862 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10863
10864 * keyboard.c (read_char): Don't apply previous change when current
10865 buffer is unchanged by command execution.
10866
10867 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
10868
10869 * keyboard.c (read_char): Return after executing from special map.
10870
10871 2010-01-12 Glenn Morris <rgm@gnu.org>
10872
10873 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
10874 bug-gnu-emacs rather than emacs-pretest-bug.
10875
10876 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
10877
10878 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
10879 initializing the Lisp variables that depend on them.
10880
10881 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10882
10883 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
10884 Clear areas that will not be updated after change of menu bar lines.
10885 Clear the menu bar window's current matrix when the window gets empty.
10886
10887 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
10888
10889 * intervals.h, textprop.c (extend_property_ranges): Return value
10890 and args changed. Discard properties that begin at or after the
10891 new end (Bug#5306).
10892
10893 * editfns.c (Fformat): Caller changed.
10894
10895 * nsterm.m (ns_set_default_prefs): Delete function.
10896 (syms_of_nsterm): Initialize ns_command_modifier,
10897 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
10898 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
10899
10900 * xdisp.c (pos_visible_p): Check for invisible text at the correct
10901 position (Bug#4040).
10902
10903 2010-01-09 Eli Zaretskii <eliz@gnu.org>
10904
10905 * editfns.c (Ffloat_time): Doc fix.
10906
10907 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
10908
10909 * xfns.c (Fx_create_frame): Don't create frame larger than display
10910 by default bug#3643.
10911
10912 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10913
10914 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
10915 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
10916 windows above internal border.
10917
10918 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
10919 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
10920 windows above internal border.
10921
10922 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
10923 tool bar windows specially.
10924
10925 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
10926
10927 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
10928 specially.
10929 (XTflash): Take account of menu bar height.
10930
10931 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
10932 specially.
10933
10934 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
10935
10936 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
10937 also be true before we can return early (bug #5339).
10938
10939 2010-01-06 David Reitter <david.reitter@gmail.com>
10940
10941 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
10942 (Fns_display_usable_bounds): Rewrite, computing bounds properly
10943 (Bug#3233).
10944
10945 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
10946
10947 * font.c (font_open_entity): Enable chache and call cached_font_ok
10948 for the driver if defined.
10949 (QCuser_spec): New symbol.
10950 (font_spec_from_name): Save name as user-spec.
10951 (font_load_for_lface): Keep user-spec instead of name.
10952 (font_open_by_name): Save name as user-spec.
10953 (syms_of_font): Initialize QCuser_spec.
10954 (font_clear_prop): Clear name if it exists in font (bug#5157).
10955
10956 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
10957 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
10958 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
10959
10960 * font.h (struct font_driver): Add cached_font_ok.
10961
10962 * xterm.c (x_clear_frame): Queue draw for scroll bars.
10963
10964 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
10965
10966 * xterm.c (x_new_font): Move code for setting rows/cols before
10967 resizing ...
10968 (x_set_window_size): ... to here. Bug #2568.
10969
10970 * gtkutil.c (xg_clear_under_internal_border): New function.
10971 (xg_frame_resized, xg_frame_set_char_size):
10972 Call xg_clear_under_internal_border.
10973 (xg_update_scrollbar_pos): Clear under old scroll bar position.
10974
10975 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
10976
10977 * keyboard.c (read_key_sequence): Catch keyboard switch after
10978 making a new tty frame (Bug#5095).
10979
10980 2010-01-05 Kenichi Handa <handa@m17n.org>
10981
10982 * fontset.c (fontset_find_font): Fix getting the frame pointer.
10983
10984 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
10985
10986 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
10987 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
10988 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
10989
10990 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
10991
10992 * dbusbind.c (xd_add_watch): Improve debug message.
10993 (xd_remove_watch): Improve debug message. If DATA is the session
10994 bus, unset D-Bus session environment.
10995 (Fdbus_init_bus): Pass the bus as argument to
10996 dbus_connection_set_watch_functions. (Bug#5283)
10997
10998 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
10999
11000 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
11001
11002 * lread.c (syms_of_lread): Make it clearer that these are the
11003 names of loaded files (Bug#5068).
11004
11005 * eval.c (run_hook_with_args): Handle the case where the global
11006 value has the obsolete single-function form (Bug#5026).
11007
11008 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
11009
11010 * minibuf.c (Fall_completions): Minor optimization.
11011
11012 2009-12-26 Eli Zaretskii <eliz@gnu.org>
11013
11014 * .gdbinit (pgx): Fix display of composite glyphs.
11015 Display cmp.from and cmp.to as well.
11016 (pitx): Fix last change.
11017
11018 2009-12-25 Kenichi Handa <handa@m17n.org>
11019
11020 * composite.h (composition_adjust_point): Update prototype.
11021
11022 * composite.c (composition_reseat_it): Don't make a composition
11023 spanning over point.
11024 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
11025 composable characters.
11026 (composition_adjust_point): New arg NEW_PT. Callers changed.
11027
11028 * keyboard.c (command_loop_1): Force redisplay if the last point
11029 was within a composition.
11030 (adjust_point_for_property): Don't adjust point for automatic
11031 composition when called after buffer modification.
11032
11033 2009-12-19 Eli Zaretskii <eliz@gnu.org>
11034
11035 * .gdbinit (pitx): Don't use enum names, use their values.
11036 Remove reference to non-existing value GET_FROM_COMPOSITION.
11037 (pgx): Don't use enum names, use their values.
11038 (pitmethod): New helper command.
11039 (pitx): Use it to display iteration method.
11040 (pgrowit): New command.
11041
11042 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
11043
11044 Update dependencies in Makefile.in.
11045
11046 * Makefile.in (alloc.o): Depend on termhooks.h.
11047 (atimer.o): Depend on blockinput.h.
11048 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
11049 and frame.h.
11050 (callint.o): Depend on systime.h, coding.h, and composite.h.
11051 (callproc.o): Depend on buffer.h.
11052 (casefiddle.o): Don't depend on charset.h.
11053 (casetab.o): Depend on character.h.
11054 (ccl.o): Depend on composite.h.
11055 (chartab.o): Depend on ccl.h.
11056 (cm.o): Depend on dispextern.h.
11057 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
11058 (coding.o): Don't depend on $(INTERVALS_H).
11059 (composite.o): Don't depend on dispextern.h explicitly (it's in
11060 $(INTERVALS_H)). Depend on ccl.h.
11061 (data.o): Depend on systime.h, coding.h, composite.h,
11062 dispextern.h, font.h, and ccl.h.
11063 (dired.o): Depend on composite.h.
11064 (dispnew.o): Depend on coding.h. Don't depend explicitly on
11065 composite.h (it's in $(INTERVALS_H)).
11066 (doc.o): Depend on systime.h, coding.h, and composite.h.
11067 (editfns.o): Don't depend explicitly on dispextern.h.
11068 (emacs.o): Depend on frame.h and coding.h.
11069 (eval.o): Depend on coding.h, composite.h, and xterm.h.
11070 (fileio.o): Depend on frame.h and commands.h. Don't depend
11071 explicitly on dispextern.h.
11072 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
11073 composite.h.
11074 (fns.o): Don't depend on termhooks.h.
11075 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
11076 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
11077 coding.h, $(INTERVALS_H), window.h, xterm.h.
11078 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
11079 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
11080 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
11081 fontset.h, ccl.h, and ftfont.h.
11082 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
11083 (gtkutil.o): Depend on dispextern.h and composite.h.
11084 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
11085 termhooks.h, and ccl.h.
11086 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
11087 (intervals.o): Depend on systime.h and coding.h.
11088 (keyboard.o): Depend on composite.h and coding.h.
11089 (keymap.o): Depend on coding.h and frame.h.
11090 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
11091 (macros.o): Depend on systime.h, coding.h, and composite.h.
11092 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
11093 and atimer.h.
11094 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
11095 dispextern.h explicitly.
11096 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
11097 Don't depend explicitly on dispextern.h and composite.h.
11098 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
11099 (regex.o): Don't depend on charset.h.
11100 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
11101 (search.o): Don't depend explicitly on composite.h.
11102 (sound.o): Depend on atimer.h and systime.h.
11103 (syntax.o): Don't depend explicitly on composite.h.
11104 (sysdep.o): Depend on coding.h and composite.h.
11105 (term.o): Depend on xterm.h and buffer.h.
11106 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
11107 (textprop.o): Don't depend on dispextern.h explicitly.
11108 (undo.o): Depend on dispextern.h.
11109 (window.o): Depend on coding.h and termhooks.h. Don't depend on
11110 dispextern.h and composite.h explicitly.
11111 (xdisp.o): Depend on ccl.h.
11112 (xfaces.o): Depend on coding.h and ccl.h.
11113 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
11114 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
11115 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
11116 ftfont.h.
11117 (xgselect.o): New dependency.
11118 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
11119 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
11120 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
11121 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
11122 (xsmfns.o): Depend on frame.h and dispextern.h.
11123 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
11124 sysselect.h.
11125
11126 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
11127
11128 * font.c (Fclear_font_cache): Pass correct cache argument to
11129 font_clear_cache.
11130
11131 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
11132
11133 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
11134 twice.
11135
11136 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
11137
11138 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
11139 calling file-remote-p. Reported by Jim Meyering.
11140
11141 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
11142
11143 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
11144 avoid compiler warnings. (Bug #5217)
11145
11146 2009-12-14 Kenichi Handa <handa@m17n.org>
11147
11148 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
11149 in 8-bit encoding.
11150
11151 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
11152
11153 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
11154 tooltip windows.
11155
11156 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
11157
11158 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
11159 Xatom_net_window_type.
11160
11161 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
11162 Xatom_net_window_type.
11163
11164 * xterm.c (my_log_handler): New function.
11165 (x_term_init): Set my_log_handler as log handler during gtk_init
11166 so we can filter out buggy messages. (Bug #5120).
11167
11168 * xterm.c (xg_scroll_callback): Parameter list changed,
11169 use parameter GtkScrollType to determine scroll/line/page.
11170 Only allow dragging if a button < 4 is grabbed (bug #5177).
11171 (xg_end_scroll_callback): New function.
11172 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
11173 xg_create_scroll_bar.
11174
11175 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
11176 (scroll_end_callback): Remove.
11177 (xg_create_scroll_bar): Add parameter end_callback, bind it to
11178 button-release-event. Replace value-changed event with change-value,
11179 bug #5177.
11180 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
11181 bug #5177.
11182
11183 * gtkutil.h (XG_LAST_SB_DATA): Remove.
11184 (xg_create_scroll_bar): Add GCallback end_callback.
11185
11186 * xftfont.c (QClcdfilter): New variable.
11187 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
11188 (syms_of_xftfont): Initialize QClcdfilter.
11189
11190 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
11191
11192 * xsettings.c (struct xsettings): Add member seen.
11193 (parse_xft_settings): Update member seen with what we have read.
11194 Return non-zero if Xft-settings have been parsed, 0 otherwise.
11195 (apply_xft_settings): Only update Xft settings with what member seen
11196 indicates as new.
11197
11198 2009-12-12 Eli Zaretskii <eliz@gnu.org>
11199
11200 * dispextern.h (struct text_pos): Use EMACS_INT.
11201 (struct glyph): Use EMACS_INT for charpos.
11202 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
11203 region_beg_charpos, region_end_charpos,
11204 redisplay_end_trigger_charpos, and also for
11205 iterator_stack_entry.end_charpos and
11206 iterator_stack_entry.stop_charpos.
11207
11208 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
11209
11210 * gtkutil.c (scroll_end_callback): New function (bug #5177).
11211 (xg_create_scroll_bar): Call scroll_end_callback on button release
11212 event (bug #5177).
11213 (xg_event_is_for_scrollbar): != replaced with ==.
11214
11215 2009-12-12 Kenichi Handa <handa@m17n.org>
11216
11217 * ftfont.c (struct ftfont_info): New member matrix.
11218 (ftfont_open): Setup xftfont_info->matrix.
11219 (MFLTFontFT): New member matrix.
11220 (FLOOR, CEIL, ROUND): New macros.
11221 (ftfont_get_metrics): Handle matrix transformation.
11222 (ftfont_shape_by_flt): New arg matrix. Callers changed.
11223
11224 * xftfont.c (struct xftfont_info): New member matrix.
11225 (xftfont_open): Setup xftfont_info->matrix.
11226
11227 2009-12-10 Kenichi Handa <handa@m17n.org>
11228
11229 * xdisp.c (append_space_for_newline): Consider face-remapping.
11230
11231 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
11232
11233 * xsettings.c: Include "keyboard.h".
11234
11235 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
11236
11237 Fix implicit function declarations.
11238 * cmds.c: Include "frame.h".
11239 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
11240 * frame.h: Move declaration of delete_frame outside of
11241 HAVE_WINDOW_SYSTEM.
11242
11243 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
11244
11245 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
11246
11247 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
11248 GTK builds.
11249
11250 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
11251
11252 * unexelf.c (unexec): Don't search for .data twice.
11253
11254 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
11255
11256 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
11257 if push failed.
11258 (handle_line_prefix): Set avoid_cursor_p here. Check return value
11259 of push_display_prop (Bug#5000).
11260
11261 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
11262 value of font_list_entities (Bug#5085).
11263
11264 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
11265
11266 Fix `string-to-number' to deal consistently with integers and floats.
11267 * lread.c (isfloat_string): New argument ignore_trailing to accept all
11268 trailing characters, not just whitespace.
11269 (read1): Pass new arg 0 to keep old behavior.
11270 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
11271 trailing chars, as it is already done for integers. Doc fixes.
11272 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
11273
11274 2009-12-04 Eli Zaretskii <eliz@gnu.org>
11275
11276 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
11277 Delete unused enumeration value.
11278
11279 2009-12-03 Eli Zaretskii <eliz@gnu.org>
11280
11281 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
11282
11283 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
11284
11285 * process.c (Fmake_network_process): Fix up the tests for
11286 "connectionless socket", so they DTRT for seqpacket sockets as well.
11287
11288 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
11289
11290 * process.c (Qseqpacket): New symbol.
11291 (HAVE_SEQPACKET): New macro.
11292 (Fmake_network_process): Accept new :type `seqpacket'.
11293 (init_process): Add `seqpacket' feature when applicable.
11294 (syms_of_process): Initialize Qseqpacket.
11295
11296 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11297
11298 * font.c (font_load_for_lface, font_open_by_name): Don't store name
11299 if entity is Qnil.
11300
11301 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
11302
11303 * print.c (print_preprocess): Preprocess the key_and_value table of
11304 hashtables, even tho they're "hidden" (bug#5082).
11305
11306 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
11307
11308 * frame.c (frame_make_pointer_invisible)
11309 (frame_make_pointer_visible): Declare f before statements.
11310
11311 2009-11-28 Eli Zaretskii <eliz@gnu.org>
11312
11313 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
11314 omitted dependencies on lisp.h.
11315
11316 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
11317
11318 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
11319 is NULL.
11320
11321 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
11322
11323 * frame.c (frame_make_pointer_invisible)
11324 (frame_make_pointer_visible): Just return if there isn't any selected
11325 frame.
11326
11327 * search.c (simple_search): Remove warning by making *p const.
11328
11329 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
11330
11331 * xdisp.c (power_letter): Remove duplicate const.
11332
11333 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
11334
11335 * term.c (delete_tty): Remove check for last terminal (bug#4970).
11336
11337 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
11338 defaults (bug #5025).
11339
11340 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
11341
11342 * insdel.c (adjust_markers_for_delete): Move it in the
11343 right direction! (bug#4803)
11344
11345 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11346
11347 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
11348
11349 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
11350
11351 2009-11-24 Glenn Morris <rgm@gnu.org>
11352
11353 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
11354
11355 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
11356
11357 * Makefile.in: Must create deps for ecrt0.o in its rule.
11358
11359 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
11360 because that is what Gtk+ font dialog understands.
11361
11362 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
11363 of Fcopy_sequence.
11364 (font_open_by_name): Put name given into QCname for font-object returned.
11365
11366 * frame.c (x_set_font): Save original font name as frame parameter
11367 font-parameter.
11368
11369 * xsettings.c (set_default_xft_settings): New function.
11370 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
11371 is found.
11372
11373 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
11374
11375 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
11376 searching backwards through multibyte buffer.
11377
11378 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
11379
11380 * xterm.c: #include xgselect.h.
11381 (x_initialize): Call xgselect_initialize.
11382
11383 * xsettings.c (something_changedCB): C++ comments => C comments.
11384 (init_gconf): Do not deal with any GLib file descriptors, xg_select
11385 does that now.
11386
11387 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
11388 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
11389 (scroll_bar_button_cb): Remove.
11390 (create_menus): C++ comments => C comments. Don't bind grab-notify
11391 event.
11392 (xg_create_scroll_bar): Don't bind button-press-event and
11393 button-release-event.
11394
11395 * process.c: Include xgselect.h if defined (USE_GTK) ||
11396 defined (HAVE_GCONF).
11397 (wait_reading_process_output): Call xg_select for the same condition.
11398
11399 * xgselect.c (xg_select): New function to better integrate with
11400 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
11401
11402 * xgselect.h: New file, declare xg_select, xgselect_initialize.
11403
11404 * Makefile.in (XOBJ): Add xgselect.o.
11405
11406 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
11407
11408 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
11409 Remove ignored second argument. All callers changed.
11410 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
11411 (RE_STRING_CHAR_AND_LENGTH): Likewise.
11412 * xdisp.c (string_char_and_length): Likewise.
11413
11414 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
11415
11416 * xterm.c (x_new_font):
11417 * print.c (print_object):
11418 * cmds.c (Fself_insert_command): Move declarations before statements.
11419
11420 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
11421
11422 * s/cygwin.h: Remove unneeded linker flags.
11423
11424 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
11425
11426 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
11427
11428 * xsettings.h: Declare xsettings_get_system_font.
11429
11430 * xsettings.c (xsettings_get_system_font): New function.
11431 (init_gconf): No use initiating gconf unless we have Xft also.
11432 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
11433 HAVE_GCONF.
11434
11435 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
11436 add a blank entry so it doesn't collapse into nothing.
11437
11438 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11439
11440 * lread.c (Funintern): Comment out last change.
11441
11442 2009-11-19 Richard Stallman <rms@gnu.org>
11443
11444 * lread.c (Funintern): Error if symbol is t or nil.
11445
11446 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11447
11448 * insdel.c (make_gap_larger): Don't make as many assumptions about the
11449 representation of Lisp integers.
11450 Reported by MJ Chan <mjchan.inbox@gmail.com>.
11451
11452 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
11453
11454 * lisp.h: Remove declaration of Ffont_get_system_font.
11455 * xfns.c: Move include of "xsettings.h".
11456 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
11457
11458 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11459
11460 * xsettings.c (something_changedCB, Ffont_get_system_font):
11461 Check use_system_font.
11462 (syms_of_xsettings): DEFVAR font-use-system-font.
11463
11464 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
11465
11466 * xfns.c (x_default_font_parameter): Remove dead assignment.
11467
11468 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
11469
11470 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11471
11472 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
11473 not have FC_LCD_*. #define them if not there.
11474
11475 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
11476
11477 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
11478
11479 * xterm.c (handle_one_xevent): Call xft_settings_event for
11480 ClientMessage, PropertyNotify and DestroyNotify.
11481 (x_term_init): If we have XFT, get DPI from Xft.dpi.
11482 Call xsettings_initialize.
11483
11484 * xftfont.c (xftfont_fix_match): New function.
11485 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
11486 Call xftfont_fix_match after XftFontMatch.
11487
11488 * xfont.c (xfont_driver): Initialize all members.
11489
11490 * xfns.c (x_default_font_parameter):
11491 Try font from Ffont_get_system_font.
11492 Do not get font from x_default_parameter if we got one from
11493 Ffont_get_system_font.
11494 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
11495
11496 * w32font.c (w32font_driver): Initialize all members.
11497
11498 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
11499
11500 * lisp.h: Declare syms_of_xsettings.
11501
11502 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
11503 Handle CONFIG_CHANGED_EVENT.
11504
11505 * ftfont.c (ftfont_filter_properties): New function.
11506
11507 * frame.c (x_set_font): Remove unused variable lval.
11508
11509 * font.h (struct font_driver): Add filter_properties.
11510
11511 * font.c (font_put_extra): Don't return if val is nil, it means
11512 boolean option is off.
11513 (font_parse_fcname): Collect all extra properties in extra_props
11514 and call filter_properties for all drivers with extra_props and
11515 font as parameter.
11516 (font_open_entity): Do not use cache, it does not pick up new
11517 fontconfig settings like hinting.
11518 (font_load_for_lface): If spec had a name in it, store it in entity.
11519
11520 * emacs.c (main): Call syms_of_xsettings.
11521
11522 * config.in: HAVE_GCONF is new.
11523
11524 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
11525 xsettings.o is new.
11526
11527 2009-11-17 Kenichi Handa <handa@m17n.org>
11528
11529 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
11530 back to the default font in case that no suitable font is found.
11531
11532 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
11533
11534 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
11535 Suggested by Chad Brown <yandros@mit.edu>.
11536 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
11537
11538 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
11539
11540 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
11541
11542 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
11543
11544 * Makefile.in: Ignore errors from mkdir when creating deps directory.
11545
11546 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
11547
11548 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
11549 has a parent.
11550
11551 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
11552 dependency files in deps/. Include those files into Makefile.
11553
11554 * config.in: Generated (AUTO_DEPEND).
11555
11556 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
11557
11558 * dbusbind.c (Vdbus_registered_objects_table): Rename from
11559 Vdbus_registered_functions_table, because it contains also
11560 properties. Fix docstring.
11561 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
11562
11563 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11564
11565 * alloc.c (mark_object): Don't reprocess marked strings.
11566 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
11567 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
11568
11569 2009-11-13 Kenichi Handa <handa@m17n.org>
11570
11571 * category.c (word_boundary_p): Adjust for the change of the
11572 semantics of Vword_combining_categories.
11573 (Vword_combining_categories): Describe the slight change of the
11574 semantics.
11575
11576 2009-11-13 Eli Zaretskii <eliz@gnu.org>
11577
11578 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
11579
11580 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
11581
11582 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
11583
11584 * xdisp.c (syms_of_xdisp): Fix typo in last change.
11585
11586 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
11587
11588 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
11589
11590 2009-11-11 David Reitter <david.reitter@gmail.com>
11591
11592 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
11593 variables to fix 2009-11-09 change.
11594
11595 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11596
11597 * process.c (ifflag_def): Make flag_sym constant.
11598 (Fnetwork_interface_info): Use a constant pointer.
11599 (ifflag_table):
11600 * xfns.c (cursor_bits):
11601 * xdisp.c (power_letter):
11602 * termcap.c (speeds, esctab):
11603 * sysdep.c (baud_convert):
11604 * keyboard.c (lispy_accent_codes, modifier_names):
11605 * image.c (xbm_format, xpm_format, pbm_format, png_format)
11606 (jpeg_format, tiff_format, gif_format, svg_format)
11607 (interlace_start, interlace_increment, gs_format):
11608 * gtkutil.c (separator_names):
11609 * fringe.c (swap_nibble):
11610 * fns.c (base64_value_to_char, base64_char_to_value):
11611 * fileio.c (make_temp_name_tbl):
11612 * coding.c (suffixes): Make constant.
11613
11614 * frame.c (make_initial_frame):
11615 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
11616 build_string.
11617 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
11618
11619 * s/freebsd.h:
11620 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
11621
11622 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
11623 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
11624
11625 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
11626 * xterm.c (syms_of_xterm):
11627 * xfaces.c (syms_of_xfaces):
11628 * xdisp.c (syms_of_xdisp):
11629 * lread.c (syms_of_lread):
11630 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
11631 build_string.
11632
11633 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
11634
11635 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
11636
11637 * fns.c (Fplist_get): Merge the active and the commented out code.
11638
11639 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
11640
11641 * keyboard.h: Declare timer_check.
11642
11643 * keyboard.c (timer_check_2): New function that does what the old
11644 timer_check did.
11645 (timer_check): Call timer_check_2 until -1 or a non-zero time is
11646 returned, i.e. don't return -1 with timers pending.
11647
11648 * process.c: Remove extern declaration of timer_check.
11649
11650 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
11651 even if timer_check returned -1.
11652
11653 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
11654 xg_dialog_data.
11655 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
11656 the event loop.
11657 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
11658 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
11659 Destroy the dialog after xg_dialog_run.
11660
11661 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
11662
11663 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
11664
11665 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
11666
11667 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
11668
11669 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
11670
11671 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
11672
11673 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
11674
11675 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
11676 w32menu.c, and nsmenu.m.
11677 Simplify the obsolete case where position is nil.
11678 (cleanup_popup_menu): New function, moved from nsmenu.m.
11679 (struct skp): Remove slot `notreal'.
11680 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
11681 adjust callers.
11682 (single_menu_item): Adjust call to parse_menu_item.
11683 (syms_of_menu): Defsubr x-popup-menu.
11684 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
11685 (keymap_panes): Don't export any more.
11686 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
11687 (xmenu_show): Declare.
11688 * keyboard.c (parse_menu_item): Remove arg `notreal'.
11689 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
11690 * keyboard.h (parse_menu_item): Update declaration.
11691 * xmenu.c (Fx_popup_menu): Remove.
11692 (syms_of_xmenu): Don't defsubr x-popup-menu.
11693 * w32menu.c (Fx_popup_menu): Remove.
11694 (syms_of_w32menu): Don't defsubr x-popup-menu.
11695 * nsmenu.m (cleanup_popup_menu): Remove.
11696 (ns_menu_show): Rename from ns_popup_menu and remove all the code
11697 moved to menu.c's Fx_popup_menu.
11698 (Fx_popup_menu): Remove.
11699 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
11700 menu_items (it's done in menu.c already).
11701
11702 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
11703
11704 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
11705 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
11706
11707 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
11708
11709 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
11710 xmenu_show. Hide any tooltip before opening a menu.
11711 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
11712 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
11713
11714 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
11715
11716 Let integers use up 2 tags to give them one extra bit and thus double
11717 their range.
11718 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
11719 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
11720 New macros.
11721 (enum Lisp_Type): Use them. Give explicit values.
11722 (Lisp_Type_Limit): Remove.
11723 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
11724 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
11725 Pay attention to USE_2_TAGS_FOR_INTS.
11726 (INTEGERP): Use LISP_INT_TAG_P.
11727 * fns.c (internal_equal): Simplify the default case.
11728 (sxhash): Use case_Lisp_Int.
11729 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
11730 any more.
11731 (Ftype_of): Use case_Lisp_Int.
11732 (store_symval_forwarding): Take into account the fact that Ints can
11733 now have more than one tag.
11734 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
11735 (buffer_slot_type_mismatch):
11736 * xfaces.c (face_attr_equal_p):
11737 * print.c (print_object):
11738 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
11739 Use case_Lisp_Int.
11740
11741 2009-11-06 Eli Zaretskii <eliz@gnu.org>
11742
11743 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
11744
11745 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
11746 warning.
11747
11748 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
11749
11750 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
11751
11752 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
11753
11754 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
11755 ButtonPressRelease and MotionNotify (bug#4870).
11756
11757 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
11758
11759 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
11760
11761 * xterm.c (syms_of_xterm):
11762 * xselect.c (syms_of_xselect):
11763 * xmenu.c (syms_of_xmenu):
11764 * xfns.c (syms_of_xfns):
11765 * xfaces.c (syms_of_xfaces):
11766 * xdisp.c (syms_of_xdisp):
11767 * window.c (syms_of_window):
11768 * w32fns.c (syms_of_w32fns):
11769 * undo.c (syms_of_undo):
11770 * textprop.c (syms_of_textprop):
11771 * terminal.c (syms_of_terminal):
11772 * syntax.c (syms_of_syntax):
11773 * sound.c (syms_of_sound):
11774 * search.c (syms_of_search):
11775 * print.c (syms_of_print):
11776 * minibuf.c (syms_of_minibuf):
11777 * macros.c (syms_of_macros):
11778 * keymap.c (syms_of_keymap, initial_define_key)
11779 (initial_define_lispy_key):
11780 * keyboard.c (syms_of_keyboard):
11781 * insdel.c (syms_of_insdel):
11782 * image.c (syms_of_image):
11783 * fringe.c (syms_of_fringe):
11784 * frame.c (syms_of_frame):
11785 * fontset.c (syms_of_fontset):
11786 * fns.c (syms_of_fns):
11787 * fns.c (syms_of_fns):
11788 * fileio.c (syms_of_fileio):
11789 * fileio.c (syms_of_fileio):
11790 * eval.c (syms_of_eval):
11791 * doc.c (syms_of_doc):
11792 * dispnew.c (syms_of_display):
11793 * dired.c (syms_of_dired):
11794 * dbusbind.c (syms_of_dbusbind):
11795 * data.c (syms_of_data):
11796 * composite.c (syms_of_composite):
11797 * coding.c (syms_of_coding):
11798 * cmds.c (syms_of_cmds):
11799 * charset.c (define_charset_internal, syms_of_character):
11800 * ccl.c (syms_of_ccl):
11801 * category.c (syms_of_category, init_category_once):
11802 * casetab.c (syms_of_casetab):
11803 * casefiddle.c (syms_of_casefiddle):
11804 * callint.c (syms_of_callint):
11805 * bytecode.c (syms_of_bytecode):
11806 * buffer.c (keys_of_buffer, syms_of_buffer):
11807 * alloc.c (syms_of_alloc):
11808 * process.c (syms_of_process, init_process):
11809 * lread.c (syms_of_lread, init_obarray):
11810 * font.c (build_style_table):
11811 * emacs.c (syms_of_emacs, main): Replace calls to intern with
11812 intern_c_string, calls to make_pure_string with
11813 make_pure_c_string. Use pure_cons instead of Fcons.
11814
11815 * process.c (socket_options): Make it const.
11816 (set_socket_option, init_process): Use a const pointer.
11817
11818 * lread.c (intern_c_string): New function.
11819 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
11820 (defvar_int): Uset it. Make the name const char*.
11821
11822 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
11823 (defvar_int): Update prototypes.
11824 (DEFUN, EXFUN): Support for prototypes is now required.
11825 (intern_c_string): New prototype.
11826 (struct Lisp_Subr): Make symbol_name constant.
11827
11828 * font.c (struct table_entry): Remove unused member. Make NAMES
11829 constant.
11830 (weight_table, slant_table, width_table): Make constant.
11831
11832 * emacs.c (struct standard_args): Make name and longname constant.
11833
11834 * character.h (DEFSYM): Use intern_c_string.
11835
11836 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
11837
11838 * alloc.c (make_pure_c_string): New function.
11839
11840 * eval.c (Fautoload): Purecopy all arguments.
11841
11842 2009-11-05 Kenichi Handa <handa@m17n.org>
11843
11844 * fileio.c (Finsert_file_contents): Be sure set coding-system of
11845 the buffer in case of replace.
11846
11847 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
11848
11849 * puresize.h (BASE_PURESIZE): Increase to 1620000.
11850
11851 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
11852
11853 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
11854 when applicable (bug#4851).
11855
11856 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
11857 (P_): Support for prototypes is now required.
11858
11859 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
11860
11861 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
11862 (Bug#4827).
11863
11864 2009-10-30 Eli Zaretskii <eliz@gnu.org>
11865
11866 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
11867
11868 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
11869
11870 * puresize.h (BASE_PURESIZE): Increase to 1470000.
11871
11872 * lread.c (Fload): Purecopy the file name when building
11873 Vpreloaded_file_list.
11874
11875 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
11876
11877 * w32fns.c (syms_of_w32fns): Change default value of
11878 w32-scroll-lock-modifier to nil. (Bug#2827)
11879
11880 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
11881
11882 * minibuf.c (Fall_completions): Fix typos in docstring.
11883
11884 2009-10-26 Andreas Schwab <schwab@redhat.com>
11885
11886 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
11887
11888 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
11889
11890 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
11891 For delta < 0, skip check that only makes sense when the mini-window
11892 is going to be enlarged. (Bug#4534)
11893
11894 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
11895
11896 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
11897 string in menu maps (Bug#4471).
11898
11899 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
11900
11901 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
11902 FRAME_NS_VIEW on terminal frames (Bug#4765).
11903
11904 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
11905
11906 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
11907 DBUS_TYPE_UINTnn separately to get proper sign extension.
11908
11909 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
11910 can properly handle unsigned types.
11911 (make_uid, make_gid): Remove.
11912
11913 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
11914 types again.
11915
11916 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
11917 (system_process_attributes): Likewise.
11918
11919 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
11920
11921 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
11922
11923 * eval.c (Fautoload): Purecopy the filename. Simplify.
11924
11925 * category.c (Fdefine_category): Purecopy docstring.
11926
11927 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
11928
11929 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
11930
11931 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
11932
11933 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
11934
11935 * window.c (Fwindow_edges, Fwindow_pixel_edges)
11936 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
11937 (Bug#4775).
11938
11939 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
11940
11941 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
11942 (init_fileio_once):
11943 * lisp.h (init_fileio_once): Remove.
11944 * emacs.c (main): Don't call init_fileio_once.
11945
11946 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
11947
11948 * puresize.h (BASE_PURESIZE): Increase to 1430000.
11949
11950 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
11951
11952 * doprnt.c (doprnt): Fix overflow check.
11953
11954 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
11955
11956 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
11957
11958 * xterm.h (x_wait_for_event): Declare it.
11959
11960 * xterm.c (pending_event_wait): New variable.
11961 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
11962 see pending_event_wait.eventtype.
11963 (handle_one_xevent): Don't change gravity when parent changes.
11964 (x_new_font): Call change_frame_size with new rows/columns before we
11965 try to resize the frame.
11966 (x_wait_for_event): New function.
11967 (x_set_window_size_1): Don't change gravity unless change_gravity
11968 is set.
11969 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
11970 don't change frame size, instead wait for the ConfigureNotify.
11971 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
11972 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
11973 (x_initialize): Initialize pending_event_wait.
11974
11975 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
11976 size.
11977
11978 * widget.c (EmacsFrameSetValues): Add comment.
11979 (EmacsFrameSetCharSize): Just call x_set_window_size.
11980
11981 * gtkutil.c (xg_frame_set_char_size): Flush events and call
11982 x_wait_for_event.
11983 (flush_and_sync): Remove again.
11984 (xg_get_font_name): Suggest monospace if no previous font is known.
11985
11986 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
11987
11988 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
11989 8th bit, since that only made sense in the ASCII world (bug#4751).
11990
11991 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11992
11993 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
11994 processing pending events when event is filtered for input method.
11995 (Bug#3681)
11996
11997 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
11998
11999 * fns.c: Add #endif accidentally removed in previous change.
12000
12001 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
12002
12003 * fns.c: Remove code for unsupported system: MAC_OS.
12004 * image.c: Likewise. Include setjmp.h.
12005
12006 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
12007
12008 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
12009 pixel -1 (bug #4742).
12010
12011 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
12012
12013 * process.c (create_pty): Remove conditionals for no longer
12014 supported systems: UNIPLUS and RTU.
12015
12016 * xterm.c:
12017 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
12018
12019 * alloc.c: Do not define struct catchtag.
12020 * eval.c: Move struct catchtag definition ...
12021 * lisp.h: ... here.
12022
12023 * image.c: Move png.h #include earlier to avoid warnings.
12024
12025 * xterm.c:
12026 * xsmfns.c:
12027 * xselect.c:
12028 * xrdb.c:
12029 * xmenu.c:
12030 * xftfont.c:
12031 * xfont.c:
12032 * xfns.c:
12033 * xfaces.c:
12034 * xdisp.c:
12035 * window.c:
12036 * widget.c:
12037 * w32xfns.c:
12038 * w32uniscribe.c:
12039 * w32term.c:
12040 * w32select.c:
12041 * w32reg.c:
12042 * w32proc.c:
12043 * w32menu.c:
12044 * w32inevt.c:
12045 * w32heap.c:
12046 * w32font.c:
12047 * w32fns.c:
12048 * w32console.c:
12049 * w32.c:
12050 * w16select.c:
12051 * vm-limit.c:
12052 * unexsol.c:
12053 * unexec.c:
12054 * unexcw.c:
12055 * unexaix.c:
12056 * undo.c:
12057 * tparam.c:
12058 * textprop.c:
12059 * terminfo.c:
12060 * terminal.c:
12061 * termcap.c:
12062 * term.c:
12063 * syntax.c:
12064 * sound.c:
12065 * sheap.c:
12066 * search.c:
12067 * scroll.c:
12068 * region-cache.c:
12069 * regex.c:
12070 * ralloc.c:
12071 * process.c:
12072 * print.c:
12073 * nsterm.m:
12074 * nsselect.m:
12075 * nsmenu.m:
12076 * nsimage.m:
12077 * nsfont.m:
12078 * nsfns.m:
12079 * msdos.c:
12080 * minibuf.c:
12081 * menu.c:
12082 * marker.c:
12083 * macros.c:
12084 * keymap.c:
12085 * keyboard.c:
12086 * intervals.c:
12087 * insdel.c:
12088 * indent.c:
12089 * gtkutil.c:
12090 * ftxfont.c:
12091 * ftfont.c:
12092 * fringe.c:
12093 * frame.c:
12094 * fontset.c:
12095 * font.c:
12096 * fns.c:
12097 * floatfns.c:
12098 * filelock.c:
12099 * fileio.c:
12100 * emacs.c:
12101 * editfns.c:
12102 * dosfns.c:
12103 * doprnt.c:
12104 * doc.c:
12105 * dispnew.c:
12106 * dired.c:
12107 * dbusbind.c:
12108 * data.c:
12109 * composite.c:
12110 * coding.c:
12111 * cmds.c:
12112 * cm.c:
12113 * chartab.c:
12114 * charset.c:
12115 * character.c:
12116 * ccl.c:
12117 * category.c:
12118 * casetab.c:
12119 * casefiddle.c:
12120 * callproc.c:
12121 * callint.c:
12122 * bytecode.c:
12123 * buffer.c:
12124 * atimer.c: Include setjmp.h. (Bug#4643)
12125
12126 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
12127
12128 Remove leftover table unibyte_to_multibyte_table.
12129 * character.c (unibyte_to_multibyte_table): Remove.
12130 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
12131 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
12132 * character.h (UNIBYTE_TO_CHAR): New macro.
12133 (MAKE_CHAR_MULTIBYTE): Use it.
12134 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
12135 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
12136 (message_dolog, set_message_1):
12137 * search.c (Freplace_match):
12138 * editfns.c (Fcompare_buffer_substrings):
12139 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
12140 (concat):
12141 * insdel.c (copy_text, count_size_as_multibyte):
12142 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
12143 * term.c (produce_glyphs):
12144 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
12145 * regex.c (RE_CHAR_TO_MULTIBYTE):
12146 * cmds.c (internal_self_insert):
12147 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
12148
12149 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
12150
12151 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
12152
12153 * puresize.h (BASE_PURESIZE): Increase to 1310000.
12154
12155 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
12156
12157 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
12158
12159 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
12160
12161 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
12162 still needed under Tiger.
12163
12164 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
12165
12166 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
12167 __Apple__.
12168
12169 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
12170
12171 2009-10-15 Kenichi Handa <handa@m17n.org>
12172
12173 * print.c (print_object): Escape a symbol like "2E10" too.
12174
12175 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
12176
12177 Cleanups and changes for 64-bit compile under Snow Leopard.
12178 Based on suggestions by Erik Charlebois.
12179
12180 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
12181
12182 * nsfont.m (ns_char_width): Replace deprecated call.
12183 (ns_findfonts, nsfont_list_family): Use long format in printf, and
12184 cast argument.
12185 (nsfont_open): Use ns_char_width() everywhere.
12186 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
12187
12188 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
12189
12190 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
12191 where appropriate.
12192
12193 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
12194 where appropriate.
12195 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
12196 Use stringWithUTF8String.
12197 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
12198
12199 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
12200 Add formal protocol mention to inheritance.
12201 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
12202
12203 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
12204 Fix printf format.
12205 (ns_query_color): Use CGFloat where appropriate.
12206 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
12207 (EmacsScroller-mouseDown:): Use long format in printf, and cast
12208 argument.
12209
12210 * config.in (NS_HAVE_NSINTEGER): Drop.
12211
12212 * dbusbind.c (dbus-method-return-internal)
12213 (dbus-method-error-internal): Use long format in printf, and cast
12214 argument.
12215
12216 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
12217 in printf, and cast argument.
12218
12219 * process.c (list_processes_1): Use long format in printf, and
12220 cast argument.
12221
12222 2009-10-11 Glenn Morris <rgm@gnu.org>
12223
12224 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
12225
12226 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
12227
12228 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
12229 menu bar with a small width so it doesn't enlarge the frame.
12230
12231 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
12232
12233 * fontset.c (Fset_fontset_font): Fix typos in error messages.
12234
12235 2009-10-06 Glenn Morris <rgm@gnu.org>
12236
12237 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
12238 SOME_MACHINE_LISP (this enters indirectly via DOC).
12239
12240 2009-10-05 Eli Zaretskii <eliz@gnu.org>
12241
12242 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
12243
12244 2009-10-04 Eli Zaretskii <eliz@gnu.org>
12245
12246 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
12247 Doc fix.
12248
12249 2009-10-03 Martin Rudalics <rudalics@gmx.at>
12250
12251 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
12252
12253 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
12254
12255 * lisp.h (Qdelete_directory_internal): Remove, because it is not
12256 used anymore outside fileio.c.
12257
12258 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
12259
12260 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
12261
12262 * lisp.h (Qdelete_directory_internal):
12263 Declare, instead of Qdelete_directory.
12264
12265 * w32fns.c (Fsystem_move_file_to_trash): Use it.
12266
12267 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
12268
12269 * eval.c (Fcalled_interactively_p): Add `kind' argument.
12270
12271 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
12272
12273 * fileio.c (Fdelete_directory_internal): Rename from
12274 Fdelete_directory. It is not a command anymore. It has no file
12275 name handler.
12276
12277 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
12278
12279 * xdisp.c (get_next_display_element): Use an enum in last change.
12280
12281 2009-09-28 Kenichi Handa <handa@m17n.org>
12282
12283 * xdisp.c (get_next_display_element): Pay attention to
12284 unibyte_display_via_language_environment in handling
12285 Vnobreak_char_display.
12286
12287 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
12288
12289 * nsterm.h (ns_app_name): New extern variable.
12290
12291 * nsterm.m (ns_app_name): New variable.
12292 (ns_term_init): Set and use it.
12293 (ns_term_shutdown): Use it.
12294
12295 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
12296 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
12297
12298 * nsfns.m (ns_set_name_iconic, ns_set_name)
12299 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
12300 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
12301
12302 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
12303 Remove double-casting in client_data comparison.
12304
12305 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12306
12307 * keyboard.c (make_lispy_event): Remember last wheel direction.
12308 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
12309
12310 2009-09-26 Glenn Morris <rgm@gnu.org>
12311
12312 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
12313 internal.elc. Add term/pc-win.elc.
12314 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
12315 term/x-win.elc.
12316 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
12317 term/w32-win.elc.
12318 (NS_SUPPORT): New.
12319 (lisp): Add NS_SUPPORT.
12320 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
12321
12322 2009-09-25 David Reitter <david.reitter@gmail.com>
12323
12324 * nsmenu.m (EmacsMenu-clear): Recognize application menu
12325 on Mac OS X 10.6+ (bug#4513).
12326
12327 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12328
12329 * frame.c (xrdb_get_resource): Return nil for empty string resources;
12330 some parts of Emacs code (like font selection) don't grok them.
12331 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
12332
12333 2009-09-24 Andreas Schwab <schwab@redhat.com>
12334
12335 * coding.c (decode_coding_iso_2022): Fix operator precedence.
12336
12337 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12338
12339 * dired.c (Fdirectory_files): Fix typo in docstring.
12340
12341 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
12342
12343 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
12344 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
12345 (EmacsScroller-setPosition:portion:whole:): Remove -display call
12346 under GNUstep.
12347 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
12348
12349 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
12350 glyph advancement.
12351
12352 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
12353
12354 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
12355 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
12356
12357 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
12358 deleted (bug #4492).
12359
12360 * nsfont.m (Vns_reg_to_script): New lisp variable.
12361 (syms_of_nsfont): Declare it.
12362 (ns_registry_to_script): New function.
12363 (ns_get_req_script): Call it.
12364 (ns_findfonts): Don't give up on non-unicode registry.
12365
12366 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
12367
12368 2009-09-20 Tom Tromey <tromey@redhat.com>
12369
12370 * eval.c (find_handler_clause): Make stack-trace-on-error work in
12371 batch mode (bug#4228).
12372
12373 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
12374
12375 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
12376 carefully. (Bug #4339)
12377
12378 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
12379
12380 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
12381
12382 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
12383
12384 * emacs.c (inhibit_x_resources): Update doc string for NS.
12385 (main) [HAVE_NS]: Don't process --no-init-file option.
12386 Remove legacy code for -NXHost. Fix error printf in daemon case.
12387
12388 * nsterm.h (ns_no_defaults): Remove.
12389
12390 * nsterm.m (ns_no_defaults): Remove.
12391 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
12392 (ns_use_qd_smoothing): Remove legacy variable.
12393 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
12394 don't update the NSWindow itself.
12395 (EmacsView-windowWillUseStandardFrame:defaultFrame:):
12396 Improve state detection and store user rect ourselves. (Bug #3581)
12397
12398 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
12399 ns_use_qd_smoothing.
12400
12401 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
12402 platform versions. Drop support for emacs-20-style face specs.
12403 (x-close-connection): Drop PSFlush() under OS X.
12404 (x-focus-frame): Activate the app first. (Bug #4180)
12405
12406 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
12407
12408 * emacs.c (inhibit_x_resources): New variable.
12409 (main) [HAVE_NS]: Don't process --quick command line option.
12410 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
12411
12412 * lisp.h (inhibit_x_resources): Declare it extern.
12413
12414 * w32reg.c (x_get_string_resource):
12415 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
12416
12417 2009-09-17 Eli Zaretskii <eliz@gnu.org>
12418
12419 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
12420 Add lisp/term/internal.elc.
12421
12422 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
12423
12424 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
12425 (bug#4461).
12426
12427 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
12428
12429 * puresize.h (BASE_PURESIZE): Increase to 1290000.
12430
12431 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
12432 (OBJECTS_MACHINE): Remove, unused.
12433
12434 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
12435
12436 * frame.c (x_get_resource_string): Remove unused.
12437
12438 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
12439
12440 * xterm.c (x_new_font): Call change_frame_size before calling
12441 x_set_window_size, in case frame size won't change.
12442
12443 * frame.c (x_set_font): Remove dead code.
12444
12445 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
12446
12447 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
12448
12449 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12450
12451 * lread.c (Fload): Don't output a message after loading an obsolete
12452 package any more (done in Lisp now).
12453
12454 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
12455
12456 * fns.c (syms_of_fns): Doc fix (Bug#4227).
12457
12458 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12459
12460 * keymap.c (Fwhere_is_internal): Use nconc2.
12461
12462 2009-09-11 Alan Mackenzie <acm@muc.de>
12463
12464 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
12465 batch mode.
12466
12467 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
12468
12469 * xdisp.c (display_mode_element): Detect cycles.
12470
12471 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
12472
12473 * keymap.c (where_is_internal): Don't erroneously return nil right after
12474 filling the cache.
12475 (where_is_internal_1): Fix up typo.
12476
12477 2009-09-11 Glenn Morris <rgm@gnu.org>
12478
12479 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
12480 share a common doc-string.
12481
12482 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
12483
12484 * keymap.c (get_keymap): Return the actual keymap symbol rather than
12485 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
12486
12487 * keymap.c (QCadvertised_binding): New constant.
12488 (syms_of_keymap): Initialize it.
12489 (Fwhere_is_internal): Try and use bindings from :advertised-binding
12490 if applicable.
12491
12492 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
12493
12494 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
12495 (parse_menu_item): Streamline since bindings are recomputed all the
12496 time anyway. Don't bother checking Vdefine_key_rebound_commands any
12497 more and don't support lmenu's menu-alias any more either.
12498
12499 * keymap.c (where_is_internal_data): Make noindirect a boolean.
12500 (where_is_internal): Strip it down to only traverse the keymaps.
12501 Move the cache handling from Fwhere_is_internal to here.
12502 (Fwhere_is_internal): Move the handling of remapping and the choice of
12503 the best binding from where_is_internal to here.
12504 Unify the cached/noncached paths, so remapping is also handled
12505 correctly when the cache is used, and so the cache can be used to
12506 speed up remap-handling when applicable.
12507 Give preference to non-remapped bindings.
12508 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
12509 non-remapped bindings.
12510 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
12511 command remapping.
12512
12513 * xdisp.c (display_mode_element): Move list length limit from 50 to
12514 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
12515
12516 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
12517
12518 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
12519
12520 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
12521
12522 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
12523 (Bug#4334)
12524
12525 * keymap.c (where_is_internal): Filter out shadowed remappings.
12526 Assume that where_is_internal returns unshadowed bindings to simplify
12527 the code and get rid of the gotos. Use ASIZE.
12528
12529 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
12530
12531 * xterm.c (x_focus_changed): If we get a focusout and pointer
12532 is invisible, make it visible.
12533
12534 * xterm.h: Remove condition for declaration of
12535 x_*_window_to_frame.
12536
12537 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
12538
12539 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
12540 initial terminal as well.
12541
12542 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
12543
12544 * xterm.h: Rename x_non_menubar_window_to_frame to
12545 x_menubar_window_to_frame.
12546
12547 * xterm.c: Remove declarations also in xterm.h.
12548 (XTmouse_position): Do not return valid positions
12549 for clicks in the menubar and the toolbar for Gtk+.
12550
12551 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
12552 if the widget for the event has the same top level as a frame,
12553 return the frame.
12554 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
12555 internal windows, bug #4122.
12556 (x_non_menubar_window_to_frame): Remove.
12557
12558 2009-09-02 Glenn Morris <rgm@gnu.org>
12559
12560 * buffer.c (default-major-mode): Move most of the doc from here...
12561 (major-mode): ... to here.
12562
12563 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
12564
12565 * process.c (wait_reading_process_output): Keep the descriptor
12566 when pty is used by a non-child process, e.g., in I/O buffer of
12567 GDB this allows inferior to be restarted.
12568
12569 2009-08-29 Eli Zaretskii <eliz@gnu.org>
12570
12571 * xdisp.c (redisplay_internal): Remove redundant test and collapse
12572 both branches into one.
12573
12574 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
12575
12576 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
12577 (main): Use enable-multibyte-characters rather than
12578 default-enable-multibyte-characters. Output a warning message when
12579 running a unibyte session.
12580
12581 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12582
12583 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
12584 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
12585 (copy_data_segment): Also copy __program_vars section.
12586 (copy_dyld_info) [LC_DYLD_INFO]: New function.
12587 (dump_it) [LC_DYLD_INFO]: Use it.
12588
12589 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
12590
12591 2009-08-28 Eli Zaretskii <eliz@gnu.org>
12592
12593 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
12594 $(SRC)/buildobj.h.
12595 (buildobj.h): Rename from $(SRC)/buildobj.h.
12596 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
12597 $(SRC)/buildobj.h.
12598 (clean): Add buildobj.h.
12599
12600 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
12601
12602 * print.c (print_object): Set escapeflag to 1 when printing
12603 hashtable keys and values.
12604
12605 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
12606
12607 * lread.c (read_integer): Use doubles (and potentially return a float
12608 number) as we do in string-to-number.
12609 (read1): Use strtol to read integers, signal errors on strtol's
12610 overflow and use floats if strtol's output is too large for
12611 Elisp integers.
12612
12613 2009-08-27 Eli Zaretskii <eliz@gnu.org>
12614
12615 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
12616 (make-buildobj-SH): Fix last change.
12617 (SRC): Move to before where it's first used.
12618
12619 2009-08-27 Kenichi Handa <handa@m17n.org>
12620
12621 * process.c (send_process): Use encode_coding_object instead of
12622 encode_coding_string to perform eol-conversion even if the string
12623 is unibyte.
12624
12625 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
12626 character.
12627
12628 * cmds.c (Fself_insert_command): Avoid unnecessay
12629 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
12630
12631 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
12632
12633 * callproc.c (Fcall_process): Remove always true #if.
12634
12635 * lisp.h: Replace #if 0 code for checking with text pointing to
12636 the --enable-checking configure flag.
12637
12638 * emacs.c (main): Mention the --enable-profiling configure flag
12639 instead of using CFLAGS.
12640
12641 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
12642
12643 * Makefile.in (buildobj.h): New target.
12644 (doc.o): Depend on it.
12645 (temacs${EXEEXT}): Don't generate buildobj.lst.
12646 (mostlyclean): Delete buildobj.h, not buildobj.lst.
12647 * makefile.w32-in ($(SRC)/buildobj.h): New target.
12648 ($(BLD)/doc.$(O)): Depend on it.
12649 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
12650 provided by Eli Zaretskii.)
12651 ($(TEMACS)): Don't generate buildobj.lst.
12652 * doc.c: Include buildobj.h.
12653 (buildobj): New static variable.
12654 (Fsnarf_documentation): Use it, instead of opening and reading
12655 buildobj.lst.
12656
12657 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
12658
12659 * dbusbind.c (Fdbus_call_method)
12660 (Fdbus_call_method_asynchronously): Use English numeric format for
12661 timeout values in doc string.
12662
12663 2009-08-25 Kenichi Handa <handa@m17n.org>
12664
12665 * alloc.c (mark_char_table): New function.
12666 (mark_object): Use mark_char_table for a char-table.
12667
12668 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
12669 (CHAR_TABLE_REF): Use it.
12670
12671 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
12672
12673 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
12674 before invoking the newly build emacs to check for load-path
12675 shadowing.
12676
12677 2009-08-22 Glenn Morris <rgm@gnu.org>
12678
12679 * Makefile.in (bootstrap_exe): New variable.
12680 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
12681 Use ${bootstrap_exe}.
12682
12683 2009-08-22 Eli Zaretskii <eliz@gnu.org>
12684
12685 * coding.h (encode_coding_string): Don't encode unibyte strings.
12686 (Bug#4047)
12687
12688 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
12689
12690 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
12691
12692 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
12693 intended as hotfix only.
12694 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
12695
12696 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
12697
12698 * nsterm.m (ns_get_color): Update documentation properly for last
12699 change, and clean up loose ends in the code left by it.
12700 Fix longstanding bug with 16-bit hex parsing, and add support for
12701 yet another X11 format (rgb:r/g/b) for compatibility.
12702 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
12703 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
12704
12705 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
12706
12707 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
12708
12709 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
12710
12711 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
12712 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
12713 (xd_initialize, xd_pending_messages): Check, whether
12714 $DBUS_SESSION_BUS_ADDRESS is set.
12715
12716 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12717
12718 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
12719
12720 * nsterm.m (ns_get_color): Remove incompatible color formats again.
12721
12722 2009-08-20 Glenn Morris <rgm@gnu.org>
12723
12724 * emacs.c (system-type): Doc fix.
12725
12726 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
12727
12728 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
12729 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
12730
12731 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
12732
12733 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
12734 New functions.
12735 (xd_initialize): Revert change from 2009-08-16.
12736
12737 2009-08-18 Kenichi Handa <handa@m17n.org>
12738
12739 * fontset.c (Ffontset_font): If a nil element is found in a
12740 font-group vector, return nil.
12741
12742 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
12743
12744 * process.c (status_notify): Don't perform redisplay.
12745 (Fdelete_process, list_processes_1, process_send_signal):
12746 Expliticly perform redisplay.
12747 (wait_reading_process_output): Always check process status, but
12748 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
12749
12750 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
12751
12752 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
12753 (XFLOAT_INIT): New macro for storing a float value.
12754 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
12755 * fns.c (sxhash): Copy out the value of a float in order to
12756 examine its bytes.
12757 * dbusbind.c (xd_append_arg): Likewise.
12758
12759 * emacs.c (main): Don't call syms_of_data twice.
12760
12761 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
12762
12763 * dbusbind.c (xd_initialize): Add connection file descriptor to
12764 input_wait_mask, in order to let select() detect, whether a new
12765 message has been arrived.
12766 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
12767
12768 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
12769
12770 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
12771 New functions.
12772
12773 * lisp.h (xd_pending_messages): Declare.
12774
12775 * keyboard.c (readable_events): Call xd_pending_messages.
12776
12777 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
12778
12779 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
12780
12781 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
12782
12783 * buffer.c (set_buffer_internal_1)
12784 (swap_out_buffer_local_variables): Check for unbound local
12785 variables (Bug#4138).
12786
12787 2009-08-14 Eli Zaretskii <eliz@gnu.org>
12788
12789 * process.c (create_pty): Fix last change.
12790
12791 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
12792
12793 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
12794 (xbm_load_image): Caller changed.
12795 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
12796
12797 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
12798
12799 * process.c (create_pty): New function.
12800 (Fstart_process): Use it to allow Emacs to just associate a pty
12801 with the buffer. See associated change in gdb-mi.el.
12802 (list_processes_1): Deal with no program name.
12803 (start_process_unwind): Use pid == -2 to mean no process.
12804
12805 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
12806
12807 * cmds.c (nonundocount): New global variable.
12808 (keys_of_cmds): Initialize it.
12809 (Fself_insert_command): Use it to combine upto 20 sequential chars
12810 into a single undo entry, just like the Qself_insert_command code in
12811 keyboard.c does.
12812 Call frame_make_pointer_invisible, also like the Qself_insert_command
12813 code in keyboard.c does.
12814 * keyboard.c (command_loop_1): Use the new global nonundocount rather
12815 than its own local replacement for it.
12816
12817 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
12818
12819 * fns.c (concat): Don't re-set string length to its current value.
12820
12821 * coding.h (decode_coding_string, encode_coding_string):
12822 Use SBYTES macro.
12823
12824 * doprnt.c (doprnt_lisp): Delete unused function.
12825 (doprnt): Merge with doprnt1, discarding lispstrings code.
12826 * lisp.h (doprnt_lisp): Don't declare.
12827
12828 2009-08-07 Juri Linkov <juri@jurta.org>
12829
12830 * puresize.h (BASE_PURESIZE): Increase to 1270000.
12831
12832 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
12833
12834 * print.c (syms_of_print): Undo previous change.
12835
12836 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
12837
12838 * lread.c (read1, syms_of_lread): Read hashtables back from the
12839 readable format.
12840
12841 * print.c (print_preprocess, print_object): Print hashtables fully
12842 and readably.
12843 (syms_of_print): Provide 'hashtable-print-readable.
12844
12845 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
12846
12847 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
12848 no family set.
12849 (nsfont_open): Handle case when entity has no family.
12850
12851 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
12852
12853 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
12854 element, not a list, for match case.
12855
12856 2009-07-28 Kenichi Handa <handa@m17n.org>
12857
12858 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
12859 rigidly.
12860
12861 * xfont.c (xfont_list_pattern): Don't ignore the return value of
12862 font_parse_xlfd. Check font properties more rigidly.
12863
12864 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
12865
12866 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
12867 bsd-common.h.
12868
12869 2009-07-27 Kenichi Handa <handa@m17n.org>
12870
12871 * xfaces.c (face_with_height): Call font_clear_prop.
12872
12873 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
12874
12875 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
12876
12877 * xterm.c (x_term_init): Use Qx.
12878
12879 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
12880
12881 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
12882 (ns_get_color): Revert 2009-07-16 change.
12883
12884 2009-07-25 Eli Zaretskii <eliz@gnu.org>
12885
12886 * lread.c (syms_of_lread) <force_load_messages>: New variable.
12887 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
12888
12889 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
12890
12891 * coding.h (decode_coding_string, encode_coding_string):
12892 Use SCHARS macro.
12893
12894 * lread.c: Rewrite 2009-07-21 changes.
12895 (load_depth): Delete.
12896 (Qload_in_progress): New variable.
12897 (load_unwind): Don't reference load_depth or load_in_progress.
12898 (Fload): Likewise; specbind Qload_in_progress instead.
12899 (init_lread): Don't initialize load_depth.
12900 (syms_of_lread): Initialize and protect Qload_in_progress.
12901
12902 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
12903
12904 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
12905
12906 2009-07-23 Yavor Doganov <yavor@gnu.org>
12907
12908 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
12909
12910 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
12911
12912 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
12913 Bugs 3792, 3720, 2402.
12914 (ns_lookup_indexed_color): Check for bad index.
12915 (ns_index_color): Init unused slot to 0.
12916 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
12917 Bug 3714, possibly 3082.
12918
12919 2009-07-22 Jason Rumney <jasonr@gnu.org>
12920
12921 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
12922 Position IME window at cursor (Bug#2570).
12923 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
12924 (globals_of_w32fns): Dynamically load functions required above.
12925
12926 * w32term.c (w32_draw_window_cursor): Send message to reposition
12927 any IME window.
12928
12929 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
12930
12931 * fileio.c: Revert 2009-07-16 changes.
12932 (Vauto_save_include_big_deletions): New variable.
12933 (Fdo_auto_save): Disable auto-save only if
12934 auto-save-include-big-deletions is nil.
12935
12936 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
12937
12938 * xdisp.c (move_it_to): For continued lines ending in a tab, take
12939 the overflowed pixels into account (Bug#3879).
12940
12941 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
12942
12943 * lread.c (load_depth): New variable.
12944 (Fload, load_unwind, init_lread): Set it to the load recursion
12945 depth; set load_in_progress as a simple boolean based on the
12946 current load_depth. (Bug#3892)
12947
12948 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
12949
12950 * nsfont.m (ns_has_attribute): Remove.
12951 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
12952
12953 2009-07-18 Juri Linkov <juri@jurta.org>
12954
12955 * process.c (Fset_process_query_on_exit_flag): Mention killing
12956 a buffer in docstring.
12957
12958 2009-07-17 Kenichi Handa <handa@m17n.org>
12959
12960 * casetab.c (shuffle): Fix the logic of setting up the cycle.
12961
12962 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12963
12964 * nsfns.m (Fns_set_alpha): Remove function.
12965 (syms_of_nsfns): Don't defsubr it.
12966
12967 * nsterm.m (ns_get_color): Remove incompatible color formats.
12968 (ns_color_to_lisp): Generate #rrggbb color format string.
12969
12970 2009-07-16 Richard Stallman <rms@gnu.org>
12971
12972 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
12973 (Fset_buffer_auto_saved): Handle save_length = -2.
12974
12975 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
12976
12977 * xterm.c (Qx_gtk_map_stock): New var.
12978
12979 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
12980 of calling intern each time.
12981
12982 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12983
12984 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
12985 does tiling.
12986
12987 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
12988
12989 2009-07-14 Kenichi Handa <handa@m17n.org>
12990
12991 * font.c (font_vconcat_entity_vectors): New function.
12992 (struct font_sort_data): New member font_driver_preference.
12993 (font_compare): Check font_driver_preference.
12994 (font_sort_entities): The format of the first argument changed.
12995 (font_delete_unmatched): Likewise.
12996 (font_list_entities): The return type changed.
12997 (font_select_entity): The format of the second argument changed.
12998 (font_find_for_lface): Adjuste for the above changes.
12999 Don't suppress the checking of C even if the repertory supports it.
13000 (Flist_fonts): Adjust for the above changes.
13001
13002 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
13003 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
13004 Reject a font who has adstyle property that is different from a
13005 langname derived from registry property.
13006 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
13007
13008 2009-07-13 Eli Zaretskii <eliz@gnu.org>
13009
13010 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
13011 local copy of dirfilename.
13012
13013 2009-07-13 Kenichi Handa <handa@m17n.org>
13014
13015 * chartab.c (sub_char_table_ref_and_range): Fix the range check
13016 against max_char.
13017
13018 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
13019 calling XSYMBOL (sym).
13020
13021 2009-07-11 Eli Zaretskii <eliz@gnu.org>
13022
13023 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
13024 New function.
13025 (directory_files_internal) [WINDOWSNT]:
13026 Bind w32-get-true-file-attributes to either t or nil, depending whether
13027 the filesystem of the directory is fast or slow.
13028
13029 * w32.c (logon_network_drive): Don't assume PATH is an absolute
13030 file name.
13031 (is_slow_fs): New function.
13032 (stat): Use it to determine whether to issue more system calls to
13033 get accurate file attributes, when w32-get-true-file-attributes is
13034 `local'.
13035
13036 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
13037
13038 * xfns.c (Fx_select_font): Remember last font selected in
13039 x_last_font_name and use that the next time. Also try the frame
13040 parameter font-parameter as default to the font dialog.
13041
13042 2009-07-10 Kenichi Handa <handa@m17n.org>
13043
13044 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
13045
13046 2009-07-09 Eli Zaretskii <eliz@gnu.org>
13047
13048 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
13049
13050 * w32.c (stat): Treat UNC file names as residing on remote
13051 drives. (Bug#3542)
13052
13053 2009-07-09 Kenichi Handa <handa@m17n.org>
13054
13055 * fontset.c (fontset_find_font): Fix previous change.
13056
13057 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
13058
13059 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
13060 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
13061 error flag.
13062
13063 2009-07-08 Kenichi Handa <handa@m17n.org>
13064
13065 * fontset.c (fontset_find_font): Fix the logic of handling
13066 charset_matched.
13067 (font_for_char): Delete unused var.
13068 (generate_ascii_font_name): Delete it.
13069
13070 * coding.h (JIS_TO_SJIS2): Fix the code range check.
13071
13072 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
13073 (encode_coding_sjis): Fix the code range check.
13074
13075 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
13076
13077 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
13078 (Fexpand_file_name): Copy string data properly (Bug#3772).
13079
13080 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
13081
13082 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
13083 first MapNotify.
13084
13085 2009-07-07 Kenichi Handa <handa@m17n.org>
13086
13087 * character.h (unibyte_has_multibyte_table): Delete extern.
13088 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
13089
13090 * charset.c (Fset_charset_priority): Update charset_unibyte.
13091 (syms_of_charset): Initialize charset_unibyte.
13092
13093 * character.c (unibyte_has_multibyte_table): Delete it.
13094 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
13095 charset_unibyte.
13096 (multibyte_char_to_unibyte_safe): Likewise.
13097 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
13098
13099 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
13100 (x_produce_glyphs): Likewise.
13101
13102 * .gdbinit (xcharset): Fix the treating $arg0.
13103
13104 2009-07-04 Eli Zaretskii <eliz@gnu.org>
13105
13106 Emulation of `getloadavg' on MS-Windows.
13107 * w32.c: Include float.h.
13108 (g_b_init_get_native_system_info, g_b_init_get_system_times)
13109 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
13110 (get_native_system_info, get_system_times): New functions.
13111 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
13112 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
13113 (globals_of_w32): Initialize g_b_init_get_native_system_info,
13114 g_b_init_get_system_times, and num_of_processors.
13115
13116 2009-07-03 Jason Rumney <jasonr@gnu.org>
13117
13118 * w32term.c (w32_initialize): Use standard types.
13119
13120 2009-07-03 Eli Zaretskii <eliz@gnu.org>
13121
13122 * dired.c (Ffile_attributes): Decode user and group names by the
13123 locale's encoding. (Bug#3443)
13124
13125 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
13126
13127 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
13128 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
13129
13130 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
13131
13132 * term.c (init_tty): Remove spurious #ifdef.
13133
13134 * m/mips.h: Mention this file is also used for netbsd.
13135 * m/pmax.h: Remove file.
13136
13137 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
13138
13139 * xterm.h (struct x_display_info): Add invisible_cursor.
13140 (struct x_output): Add current_cursor.
13141
13142 * xterm.c (XTtoggle_invisible_pointer): New function.
13143 (x_define_frame_cursor): Don't define cursor if invisible or the
13144 same as before. Set current_cursor.
13145 (x_create_terminal): Set toggle_invisible_pointer_hook.
13146
13147 * xfns.c (make_invisible_cursor): New function.
13148 (x_set_mouse_color): Call make_invisible_cursor.
13149 Set current_cursor.
13150 (x_window): Set current_cursor.
13151
13152 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
13153
13154 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
13155 inserting a character.
13156 (read_avail_input): Call frame_make_pointer_visible.
13157
13158 * frame.c (Vmake_pointer_invisible): New variable.
13159 (frame_make_pointer_invisible, frame_make_pointer_visible):
13160 New functions.
13161 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
13162
13163 * frame.h: Declare frame_make_pointer_invisible and
13164 frame_make_pointer_visible.
13165 (struct frame): Add pointer_invisible.
13166
13167 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
13168
13169 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
13170 frame isn't visible.
13171 (xg_frame_resized): If width/height is -1, get size of window
13172 from X server.
13173
13174 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
13175 for MapNotify.
13176
13177 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
13178 here or call change_frame_size. Just call flush_and_sync.
13179 (flush_and_sync): Reintroduce.
13180
13181 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
13182
13183 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
13184
13185 * xterm.c (x_handle_net_wm_state): Also look for sticky.
13186 (x_term_init): Initialize Xatom_net_wm_state_sticky.
13187
13188 * frame.h: Declare Qsticky.
13189
13190 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
13191
13192 * nsfns.m (ns_frame_parm_handlers): Ditto.
13193
13194 * frame.c: Declare Qsticky.
13195 (frame_parms): Add sticky.
13196
13197 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
13198
13199 * xterm.h: Declare x_set_sticky.
13200
13201 * xterm.c (x_set_sticky): New function.
13202
13203 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
13204 (xg_tool_bar_menu_proxy): Attach enter/leave events to
13205 xg_tool_bar_proxy_help_callback.
13206
13207 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
13208
13209 * frame.c: Qmaximized is new.
13210 (x_set_frame_parameters): Do not handle fullscreen specially.
13211 Only set width and height if explicitly set.
13212 (x_set_fullscreen): Handle Qmaximized.
13213 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
13214 (syms_of_frame): Initialize Qmaximized.
13215
13216 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
13217 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
13218
13219 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
13220 for Expose event. Add call to x_check_fullscreen for MapNotify event.
13221 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
13222 set gravity to NorthWestGravity when USE_GTK.
13223 (set_wm_state): New function.
13224 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
13225 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
13226 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
13227 or the case when no window manager is running. That means remove calls
13228 to x_real_positions and x_fullscreen_adjust.
13229
13230 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
13231 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
13232 flush_and_sync.
13233 (xg_height_changed): New function.
13234 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
13235 and gtk_window_set_policy. Set frame gravity after parsing the
13236 geometry string.
13237 (xg_update_frame_menubar, free_frame_menubar)
13238 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
13239 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
13240 Remove calls to xg_frame_set_char_size.
13241
13242 2009-07-01 Kenichi Handa <handa@m17n.org>
13243
13244 * keyboard.c (decode_keyboard_code): New function.
13245 (tty_read_avail_input): Decode the input bytes if necessary.
13246
13247 * coding.c (setup_coding_system):
13248 Initialize coding->carryover_bytes to 0.
13249 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
13250 use Qno_conversion.
13251
13252 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13253
13254 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
13255
13256 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
13257
13258 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
13259
13260 2009-06-30 Jason Rumney <jasonr@gnu.org>
13261
13262 * w32term.c (w32_initialize): Use GetModuleHandle for library that
13263 is already loaded.
13264 Set user model ID if supported (bug#1849).
13265
13266 2009-06-29 Jim Meyering <meyering@redhat.com>
13267
13268 Remove useless if-before-xfree test.
13269 * nsfont.m (nsfont_close): Remove useless test.
13270 * term.c (delete_tty): Likewise.
13271 * w32.c (system_process_attributes): Likewise.
13272 * w32font.c (w32font_close): Likewise.
13273 * xfaces.c (x_free_gc): Likewise.
13274 * xselect.c (buffer): Likewise.
13275
13276 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
13277
13278 * process.c (send_process): Keep decoded string in a local
13279 variable and protect it from GC. (Bug#3521)
13280
13281 2009-06-28 Eli Zaretskii <eliz@gnu.org>
13282
13283 * term.c (create_tty_output) [MSDOS]: #ifdef away.
13284 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
13285
13286 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
13287
13288 * xdisp.c (start_display, handle_face_prop)
13289 (move_it_vertically_backward, cursor_row_fully_visible_p)
13290 (redisplay_window, try_window_id, produce_image_glyph):
13291 Delete some #ifdef-ed out code chunks that are now obsolete.
13292
13293 * xterm.c (x_update_window_begin, x_new_focus_frame)
13294 (x_scroll_bar_handle_click, handle_one_xevent)
13295 (handle_one_xevent, XTread_socket, x_focus_on_frame)
13296 (x_make_frame_visible, x_make_frame_invisible)
13297 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
13298 code chunks that are now obsolete.
13299
13300 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
13301
13302 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
13303 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
13304 for hours, when optimzation is enabled.
13305 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
13306 (xd_read_message): Make them static.
13307
13308 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
13309
13310 * term.c (turn_on_face): Allow simultaneously bold and dim
13311 terminal faces (Bug#3530).
13312
13313 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
13314
13315 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
13316
13317 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
13318 truncation glyphs (Bug#3686).
13319
13320 2009-06-27 Glenn Morris <rgm@gnu.org>
13321
13322 * m/pmax.h: Restore file, with only netbsd portions.
13323
13324 2009-06-26 David Reitter <david.reitter@gmail.com>
13325
13326 * nsterm.m (keydown): Avoid infinite loop.
13327
13328 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
13329
13330 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
13331 the arg FORCE_SYMBOL.
13332
13333 2009-06-25 Kenichi Handa <handa@m17n.org>
13334
13335 * fontset.c (fontset_find_font): When a usable rfont_def is found
13336 in a fallback font-group, make it the first element of the group.
13337
13338 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
13339
13340 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
13341
13342 2009-06-24 Kenichi Handa <handa@m17n.org>
13343
13344 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
13345 set for C.
13346 (fontset_font): Record the availability of a font for C both in
13347 the realized fontsets of the current one and the default one.
13348
13349 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
13350
13351 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
13352 conditional, it is always defined on AIX.
13353
13354 2009-06-23 Miles Bader <miles@gnu.org>
13355
13356 * window.c (Vrecenter_redisplay): New variable.
13357 (syms_of_window): Initialize it.
13358 (Qtty): New extern declaration.
13359 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
13360
13361 2009-06-23 Jim Meyering <meyering@redhat.com>
13362
13363 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
13364 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
13365 pointer dereferences are guaranteed to be valid.
13366
13367 2009-06-23 Kenichi Handa <handa@m17n.org>
13368
13369 * emacs.c (main): Call init_font ().
13370
13371 * font.h (Vfont_log): Extern it.
13372 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
13373
13374 * font.c (font_sort_entities, font_list_entities)
13375 (font_matching_entity, font_open_entity)
13376 (font_close_object): Change font_add_log to FONT_ADD_LOG.
13377 (Vfont_log): Delete static.
13378 (font_log_env_checked): Delete this variable.
13379 (font_add_log): Don't check font_log_env_checked.
13380 (font_deferred_log): Check Vfont_log.
13381 (init_font): New function.
13382
13383 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
13384
13385 * w32font.c: Change font_add_log to FONT_ADD_LOG.
13386
13387 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
13388
13389 * xfont.c: Change font_add_log to FONT_ADD_LOG.
13390
13391 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
13392 (face_for_char): Don't call font_deferred_log here.
13393 (font_for_char): Likewise.
13394
13395 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
13396
13397 * w32term.c (x_draw_glyph_string): Use the glyph string's width
13398 rather than its background_width for drawing the overline and
13399 underline (Bug#489).
13400
13401 * xterm.c (x_draw_glyph_string): Use the glyph string's width
13402 rather than its background_width for drawing the overline and
13403 underline (Bug#489).
13404 (xg_default_icon_file): New variable.
13405 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
13406 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
13407
13408 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
13409 (load_overlay_strings): Remove externs.
13410 (fast_find_position): Function deleted.
13411 (mouse_face_from_buffer_pos): New function, based on
13412 fast_find_position. Correctly handle before-strings,
13413 display-strings, and after-strings (Bug#1220).
13414 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
13415
13416 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
13417
13418 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
13419 (move_it_in_display_line_to, move_it_in_display_line_to)
13420 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
13421
13422 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
13423
13424 * Branch for 23.1.
13425
13426 2009-06-21 Jason Rumney <jasonr@gnu.org>
13427
13428 * w32term.c (keyboard_codepage): New static variable.
13429 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
13430 (w32_read_socket) [WM_CHAR]: Use it to decode character
13431 input (bug#3237).
13432 (w32_initialize): Initialize it.
13433 (codepage_for_locale): New function.
13434
13435 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
13436
13437 * process.c (status_message): Pass Faset index argument as a lisp
13438 object, so as to work with USE_LISP_UNION_TYPE.
13439
13440 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13441
13442 * coding.c (Ffind_coding_systems_region_internal):
13443 Cache checked characters.
13444
13445 2009-06-18 Kenichi Handa <handa@m17n.org>
13446
13447 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
13448
13449 2009-06-18 Andreas Schwab <aschwab@redhat.com>
13450
13451 * xdisp.c (redisplay_internal): Check that the frame is still
13452 live after redisplay of its windows.
13453 (redisplay_windows): Check that the window is still live.
13454
13455 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
13456
13457 * coding.c (detect_coding_utf_16): Fix previous change.
13458
13459 2009-06-16 Kenichi Handa <handa@m17n.org>
13460
13461 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
13462 UTF-16 by checking the dispersion of Eth and Oth bytes.
13463
13464 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
13465
13466 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
13467
13468 2009-06-15 Kenichi Handa <handa@m17n.org>
13469
13470 * process.c (status_message): Fix previous change. Be sure to
13471 decode a localized string.
13472
13473 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13474
13475 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
13476 add comment explaining why.
13477
13478 2009-06-14 Sidney Markowitz <sidney@sidney.com>
13479
13480 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
13481
13482 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
13483
13484 * nsfont.m (ns_attribute_value): Remove.
13485 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
13486 (ns_has_attribute): Shrink the normal range.
13487 (ns_findfonts): Don't worry about requested spec in determining
13488 need for synthItal.
13489 (ns_get_covering_families): Retain scriptToFamilies.
13490
13491 2009-06-14 Seiji Zenitani <zenitani@mac.com>
13492
13493 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
13494
13495 2009-06-11 Kenichi Handa <handa@m17n.org>
13496
13497 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
13498 overhang for the static composition case.
13499
13500 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13501
13502 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
13503 overhang for the automatic composition case.
13504
13505 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
13506 composition case.
13507
13508 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
13509
13510 * xdisp.c (get_next_display_element): When handling wrap-prefix
13511 and line-prefix, treat \n as a control character (bug#3502).
13512
13513 2009-06-10 Kenichi Handa <handa@m17n.org>
13514
13515 * font.c (font_parse_family_registry): Fix for one-char foundry.
13516 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
13517
13518 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
13519
13520 * process.c (status_message): Fix handling of multibyte signal
13521 string (Bug#3499).
13522
13523 2009-06-09 Jim Meyering <meyering@redhat.com>
13524
13525 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
13526 color name is missing.
13527
13528 2009-06-09 Kenichi Handa <handa@m17n.org>
13529
13530 * charset.c (Fmap_charset_chars): In docstring, state clearly that
13531 FROM-CODE and TO-CODE are codepoints of CHARSET.
13532
13533 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
13534
13535 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
13536
13537 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
13538
13539 Changes to support :script/:lang/:otf in NS font driver.
13540 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
13541 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
13542 indicate not part of font driver interface, and change callers.
13543 (ns_get_family): Remove pointless null check.
13544 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
13545 ns_spec_to_descriptor, ns_descriptor_to_entity.
13546 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
13547 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
13548 (ns_spec_to_descriptor, ns_descriptor_to_entity)
13549 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
13550 (ns_get_req_script, ns_accumulate_script_ranges)
13551 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
13552 New functions.
13553 (nsfont_list, nsfont_match): Use ns_findfonts.
13554 (nsfont_open): Use font descriptor instead of traits.
13555 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
13556 (dump_glyphstring): Rename to ns_dump_glyphstring.
13557
13558 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
13559
13560 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
13561
13562 * fontset.c (fontset_from_font): Remove NS-specific code.
13563
13564 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
13565
13566 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
13567 nonactive windows.
13568
13569 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
13570
13571 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
13572
13573 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
13574
13575 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
13576
13577 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
13578
13579 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
13580 account for the overflowing of newlines into the last glyph on the
13581 display line (Bug#3482).
13582
13583 2009-06-05 David Reitter <david.reitter@gmail.com>
13584
13585 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
13586 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
13587 Fns_selection_exists_p, Fns_selection_owner_p.
13588
13589 2009-06-03 Jason Rumney <jasonr@gnu.org>
13590
13591 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
13592 available. (Bug#3379)
13593
13594 2009-05-29 Kenichi Handa <handa@m17n.org>
13595
13596 * coding.c (get_translation_table):
13597 Check Venable_character_translation.
13598
13599 2009-05-26 David Reitter <david.reitter@gmail.com>
13600
13601 * nsterm.m (ns_raise_frame): Only raise frame if visible.
13602 (x_make_frame_visible): Move frame to front rather than calling
13603 ns_raise_frame().
13604 (keyDown:): Do not swallow events that aren't re-sent if frame
13605 isn't key window.
13606 (drawRect:): Do not set visibility/iconified flags because
13607 drawRect may be called by NSView even if the frame is hidden.
13608
13609 * nsfns.m (Fx_create_frame): Follow other ports in
13610 determining visibility; default to t. Ensure async_visible is set.
13611
13612 2009-05-23 Eli Zaretskii <eliz@gnu.org>
13613
13614 * dired.c (Ffile_attributes): Doc fix.
13615
13616 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
13617
13618 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
13619
13620 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13621
13622 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
13623 and xfont_scratch_props.
13624 (syms_of_xfont): Do it here instead.
13625 (xfont_find_ccl_program): Delete, unused.
13626 (xfont_open): Delete unused var `i'.
13627
13628 2009-05-21 Kenichi Handa <handa@m17n.org>
13629
13630 * fontset.c (Qlatin): Don't make it static.
13631
13632 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
13633 New functions.
13634 (xfont_scripts_cache, xfont_scratch_props): New variables.
13635 (Qlatin, Vscalable_fonts_allowed): Extern it.
13636 (xfont_list_pattern): Argument changed. Callers changed.
13637 Check Vscalable_fonts_allowed. Check the support of a script.
13638 (xfont_list): Don't reject a font spec with :script property.
13639 (xfont_has_char): Fix setting of encoding.
13640 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
13641 xfont_scratch_props.
13642
13643 2009-05-19 Kenichi Handa <handa@m17n.org>
13644
13645 * font.c (font_sort_entities): Rename from font_sort_entites.
13646 Callers changed.
13647
13648 2009-05-18 Kenichi Handa <handa@m17n.org>
13649
13650 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
13651
13652 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
13653
13654 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
13655 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
13656
13657 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13658
13659 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
13660 (x_delete_terminal): Dissociate resource database from display and
13661 then call XrmDestroyDatabase before closing display.
13662
13663 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
13664
13665 * nsterm.m (ns_read_socket): Remove unused variable.
13666 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
13667 whether selected frame is viable before raising it (based on patch
13668 by David Reitter), and improve commentary.
13669 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
13670
13671 2009-05-15 Kenichi Handa <handa@m17n.org>
13672
13673 * font.c (Ffont_spec): Check arguments.
13674
13675 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
13676
13677 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
13678 weight when testing attributes (Bug#3282).
13679
13680 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13681
13682 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
13683 what we expect to get in the next ConfigureNotify event.
13684
13685 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
13686 before Xft one (Bug#1696).
13687
13688 2009-05-07 David Reitter <david.reitter@gmail.com>
13689
13690 * nsfns.m (Fx_display_planes): Compute bitplanes using
13691 NSBitsPerPixelFromDepth (Bug#3207).
13692
13693 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
13694
13695 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
13696
13697 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
13698
13699 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
13700
13701 2009-05-07 David Reitter <david.reitter@gmail.com>
13702
13703 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
13704 Respect mouse face background.
13705
13706 2009-05-07 David Reitter <david.reitter@gmail.com>
13707
13708 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
13709 Mouse movement/highlight: bracket drawing operations
13710 in ns_update_begin and ns_update_end.
13711
13712 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13713
13714 * nsfns.m (ns_get_screen): Rewrite.
13715 Don't presume selected-frame is of type `ns'.
13716
13717 * font.c (font_update_drivers): Sanity fallback to avoid disabling
13718 all drivers.
13719
13720 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
13721
13722 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13723
13724 * keyboard.h (add_user_signal): Fix typo in extern.
13725
13726 * lisp.h (add_user_signal): Remove extern.
13727
13728 * unexelf.c (unexec): Consider a section to precede the .bss section
13729 if its addresses overlap that of .bss.
13730 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
13731 instead of dumping process.
13732
13733 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13734
13735 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
13736
13737 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
13738
13739 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
13740
13741 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
13742
13743 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
13744 any statements.
13745
13746 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
13747
13748 * process.c (read_process_output): Make sure the current buffer is
13749 always restored.
13750
13751 * coding.c (record_conversion_result): Don't modify
13752 Vlast_code_conversion_error for successful result.
13753 (alloc_destination): Don't clobber conversion result. (Bug#1650)
13754
13755 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
13756
13757 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
13758 (load_charset_map): Remove unnecessary code.
13759
13760 2009-04-30 David Reitter <david.reitter@gmail.com>
13761
13762 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
13763 through f24.
13764
13765 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
13766
13767 * xfaces.c (face_at_buffer_position): New arg base_face_id.
13768
13769 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
13770 face_at_buffer_position.
13771 (face_before_or_after_it_pos, get_next_display_element)
13772 (note_mouse_highlight): Update face_at_buffer_position call.
13773
13774 * term.c (term_mouse_highlight):
13775 * msdos.c (IT_note_mouse_highlight):
13776 * fontset.c (Finternal_char_font):
13777 * font.c (font_at, font_range): Update face_at_buffer_position call.
13778
13779 * dispextern.h (face_at_buffer_position): Update prototype.
13780
13781 2009-04-30 Kenichi Handa <handa@m17n.org>
13782
13783 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
13784
13785 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
13786
13787 * callproc.c (Fcall_process): Fix GC protection. Make sure
13788 current buffer is always restored.
13789
13790 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13791
13792 * atimer.c (init_atimer): Also clear stopped_atimers.
13793
13794 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
13795
13796 * process.c (create_process): Clean up merger residues of
13797 2008-07-17 change.
13798
13799 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
13800
13801 * lread.c (Vread_circle): New variable.
13802 (read1): Disable recursive read if Vread_circle is nil.
13803
13804 2009-04-29 Kenichi Handa <handa@m17n.org>
13805
13806 * fontset.h (set_default_ascii_font): Delete extern.
13807
13808 * fontset.c (set_default_ascii_font): Delete this unused function.
13809
13810 * frame.c (x_set_font): When ARG is a font-object, check if the
13811 font-object matches with the ASCII font-spec of the frame's
13812 fontset. If not, create a new fontset for the frame. (Bug #3075)
13813
13814 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
13815
13816 * fns.c (Flocale_info): Protect vector from GC during decoding.
13817
13818 * process.c (Fstart_process): Protect argv strings from GC during
13819 encoding.
13820
13821 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
13822
13823 * sysdep.c: Include <ctype.h>.
13824
13825 2009-04-27 David Reitter <david.reitter@gmail.com>
13826
13827 * nsfont.m (nsfont_open): Remove unused variable shrink.
13828 Remove commented-out code.
13829
13830 2009-04-26 Johan Bockgård <bojohan@gnu.org>
13831
13832 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
13833
13834 2009-04-25 Jason Rumney <jasonr@gnu.org>
13835
13836 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
13837
13838 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13839
13840 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
13841 Swap bytes in short integer if fringe bitmap width > 8.
13842
13843 2009-04-23 Kenichi Handa <handa@m17n.org>
13844
13845 * xfaces.c (Fx_list_fonts): If a font size is specified in
13846 PATTERN, set it in returned scalable fonts.
13847
13848 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
13849
13850 * keyboard.c (Fset_input_meta_mode): Doc fix.
13851
13852 * dispnew.c (Fsend_string_to_terminal): Doc fix.
13853
13854 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
13855
13856 * coding.c (Fterminal_coding_system): Doc fix.
13857
13858 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
13859 (Fx_display_pixel_height, Fx_display_planes)
13860 (Fx_display_color_cells, Fx_server_max_request_size)
13861 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
13862 (Fx_display_mm_height, Fx_display_mm_width)
13863 (Fx_display_backing_store, Fx_display_visual_class)
13864 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
13865 Doc fixes, replacing "terminal id" with "terminal object".
13866 (check_x_display_info): Handle terminal objects instead of
13867 terminal ids.
13868
13869 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
13870 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
13871 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
13872 Doc fixes, replacing "terminal id" with "terminal object".
13873
13874 2009-04-21 Kenichi Handa <handa@m17n.org>
13875
13876 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
13877 (font_score): Check AVGWIDTH too.
13878
13879 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
13880 worst case.
13881 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
13882 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
13883
13884 2009-04-19 Jason Rumney <jasonr@gnu.org>
13885
13886 The following changes fix Bug#3005 for wide glyphs on each platform,
13887 without reintroducing Bug#1258 for stretch glyphs.
13888
13889 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
13890 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
13891 get_phys_cursor_geometry.
13892
13893 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
13894 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
13895 using get_phys_cursor_geometry.
13896
13897 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
13898 correctly calculated.
13899
13900 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
13901
13902 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
13903 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
13904 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
13905 is deprecated.
13906
13907 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
13908
13909 * font.c (font_put_frame_data): Use xfree instead of free.
13910
13911 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
13912
13913 * w32font.c (Qja, Qko): Remove declarations.
13914 (syms_of_w32font): Don't DEFSYM them.
13915
13916 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
13917
13918 * font.c (Qja, Qko): Move definitions here from ftfont.c.
13919
13920 * font.h (Qja, Qko): Extern them.
13921
13922 * ftfont.c (Qja, Qko): Remove declarations.
13923
13924 * xfont.c (Qja, Qko): Remove declarations.
13925
13926 2009-04-17 Kenichi Handa <handa@m17n.org>
13927
13928 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
13929 string from a vector to handle Latin-1 characters correctly.
13930
13931 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
13932 entity even if the cache hits.
13933
13934 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
13935
13936 * search.c (boyer_moore): Use zero as marker value for a possible
13937 match instead of depending on overflow behavior. (Bug#2844)
13938
13939 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
13940 * lisp.h: Adjust prototypes.
13941
13942 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
13943
13944 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
13945 change (Bug#3003).
13946
13947 2009-04-16 Kenichi Handa <handa@m17n.org>
13948
13949 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
13950
13951 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
13952 adstyle.
13953
13954 * ftfont.c (Qja, Qko): Don't make them static.
13955 (enum ftfont_cache_for): New enum.
13956 (fc_charset_table): Undo the previous change.
13957 (ftfont_get_latin1_charset): Delete it.
13958 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
13959 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
13960 non-scarable font, try to get AVERAGE_WIDTH.
13961 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
13962 Change ft_face_cache from a list of a hash-table. Don't check
13963 `ja' and `ko' adstyle here.
13964 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
13965 FTFONT_CACHE_FOR_CHARET.
13966 (ftfont_get_charset): Undo the previous change.
13967 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
13968 (ftfont_close): Likewise.
13969 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
13970
13971 * font.c (font_sort_entites): Change the meaning of the arg
13972 BEST-ONLY. Don't optimize for VEC of lenght 1.
13973 (font_select_entity): Just return the value of font_sort_entites.
13974
13975 * xfaces.c (merge_face_vectors): Reflect font properties in
13976 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
13977 font_clear_prop if a face attribute doesn't change.
13978
13979 * charset.h (charset_ksc5601): Extern it.
13980
13981 * charset.c (charset_ksc5601): New variable.
13982 (Fdefine_charset_internal): Set charset_ksc5601.
13983 (init_charset_once): Initialize charset_ksc5601 to -1.
13984
13985 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
13986
13987 * fileio.c (history_delete_duplicates): Remove unused declaration.
13988
13989 * callint.c (history_delete_duplicates): New declaration.
13990 (Fcall_interactively): Remove command history duplicates when
13991 history_delete_duplicates is true.
13992
13993 2009-04-14 Eli Zaretskii <eliz@gnu.org>
13994
13995 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
13996
13997 2009-04-14 Kenichi Handa <handa@m17n.org>
13998
13999 * font.c (Ffont_info): Fix docstring. Fix the second element of
14000 the returned value (bug#2949).
14001
14002 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
14003
14004 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
14005
14006 2009-04-14 Kenichi Handa <handa@m17n.org>
14007
14008 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
14009 encoding charset is ascii_compatible.
14010
14011 * charset.c (Fdefine_charset_internal): Make charset
14012 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
14013 code_offset is 0, and covers all ASCII characters.
14014
14015 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
14016
14017 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
14018 (ns_string_to_pasteboard_internal):
14019 * nsmenu.m (process_dialog):
14020 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
14021 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
14022 * lisp.h (Fx_load_color_file): Declare.
14023
14024 2009-04-13 Kenichi Handa <handa@m17n.org>
14025
14026 * font.c (font_delete_unmatched): Preserve the order of list elements.
14027 (font_select_entity): Suppress the code to optimize for the same
14028 kind of fonts.
14029 (font_load_for_lface): Get a font that supports at least ASCII
14030 characters.
14031
14032 * ftfont.c (Qja, Qko): New variables.
14033 (fc_charset_table): Delete uniquifier data for iso8859-1.
14034 (ftfont_get_latin1_charset): New function.
14035 (get_adstyle_property): New function.
14036 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
14037 bitmap fonts.
14038 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
14039 Delete iso-8859-1 range from the charset of fonts whose adstyle is
14040 `ko' or `ja'.
14041 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
14042 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
14043 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
14044 property.
14045 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
14046 (syms_of_ftfont): DEFSYM Qja and Qko.
14047
14048 2009-04-09 Kenichi Handa <handa@m17n.org>
14049
14050 * charset.c (map_charset_chars): For a charset of `superset'
14051 method, fix calculation of code range.
14052
14053 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
14054 from the list of extra properties.
14055 (font_clear_prop): Be sure to delete `:name' font property.
14056
14057 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14058
14059 * dispnew.c (redraw_overlapping_rows): Fix detection of
14060 overlapping for topmost and bottommost rows.
14061
14062 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
14063
14064 2009-04-06 Jason Rumney <jasonr@gnu.org>
14065
14066 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
14067
14068 2009-04-06 Kenichi Handa <handa@m17n.org>
14069
14070 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
14071
14072 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
14073
14074 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14075
14076 * ftfont.c (ftfont_open): Fix checking of the return value of
14077 FT_Load_Char. Fix setting font->underline_thickness.
14078
14079 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
14080
14081 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
14082 (Fterminal_parameters, Fterminal_parameter)
14083 (Fset_terminal_parameter): In doc string, refer to terminal
14084 objects rather than terminal ids.
14085
14086 2009-04-04 Eli Zaretskii <eliz@gnu.org>
14087
14088 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
14089 ret_lim_data. (Bug#2867)
14090
14091 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
14092
14093 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
14094 so they don't get wider than the window, matching 2006-01-23
14095 change to the partner function in xdisp.c (Bug#2800).
14096
14097 2009-04-03 Kenichi Handa <handa@m17n.org>
14098
14099 * print.c (print_object): Make each lowest sub_char_table start a
14100 new line (Bug#2866).
14101
14102 2009-04-02 Kenichi Handa <handa@m17n.org>
14103
14104 * fontset.c (fontset_font): Record no-font when a fontset
14105 explicitly tells not to try another font-specs.
14106
14107 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
14108
14109 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
14110
14111 2009-03-30 Kenichi Handa <handa@m17n.org>
14112
14113 * fontset.c (fontset_from_font): Specify only registry in a
14114 font-spec for all characters supported by that registry.
14115
14116 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
14117 even if HAVE_M17N_FLT is not defined.
14118
14119 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
14120
14121 * ftfont.c: Conditionalize prototyping and use of
14122 ftfont_variation_glyphs.
14123
14124 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
14125
14126 * frame.c (delete_frame): Work around compiler bug.
14127
14128 * editfns.c (general_insert_function): Adjust to insdel.c changes.
14129 * insdel.c (prepare_to_modify_buffer, signal_before_change):
14130 Some more EMACS_INT.
14131 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
14132
14133 * xdisp.c (dump_glyph): Fix typo.
14134
14135 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
14136 (adjust_markers_gap_motion, adjust_markers_for_delete)
14137 (adjust_markers_for_insert, adjust_point)
14138 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
14139 (make_gap, copy_text, count_size_as_multibyte, insert)
14140 (insert_and_inherit, insert_before_markers)
14141 (insert_before_markers_and_inherit, insert_1)
14142 (count_combining_before, count_combining_after, insert_1_both)
14143 (insert_from_string, insert_from_string_before_markers)
14144 (insert_from_string_1, insert_from_gap, insert_from_buffer)
14145 (insert_from_buffer_1, adjust_after_replace)
14146 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
14147 (replace_range_2, del_range, del_range_1, del_range_byte)
14148 (del_range_both, del_range_2, modify_region)
14149 (prepare_to_modify_buffer, signal_before_change)
14150 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
14151 for buffer positions and sizes.
14152 * lisp.h: Adjust prototypes accordingly.
14153
14154 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
14155 (non_regular_inserted, non_regular_nbytes, read_non_regular)
14156 (Finsert_file_contents): Use EMACS_INT for buffer positions.
14157
14158 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
14159
14160 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
14161
14162 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
14163 lines and columns so we keep the same pixel height and width.
14164
14165 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
14166 the property _NET_WM_STATE has changed.
14167 (x_handle_net_wm_state): New function to update frame parameter
14168 fullscreen.
14169 (x_term_init): Initialize atoms for _NET_WM_STATE.
14170
14171 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
14172
14173 2009-03-27 Kevin Ryde <user42@zip.com.au>
14174
14175 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
14176 Gpm_GetEvent as an error that justifies closing the filedescriptor.
14177 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
14178 (Fgpm_mouse_stop): Pass that new parameter.
14179 * termhooks.h (close_gpm): Adjust prototype.
14180
14181 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
14182
14183 * lisp.h (Fx_focus_frame): Declare.
14184
14185 * callint.c (Fcall_interactively): For '^' just delegate the work to
14186 handle-shift-selection.
14187 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
14188
14189 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
14190
14191 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
14192
14193 * data.c (Qinteractive_form): New variable.
14194 (Finteractive_form): Use it.
14195
14196 * eval.c (Fcommandp): Use Qinteractive_form.
14197
14198 2009-03-24 Jason Rumney <jasonr@gnu.org>
14199
14200 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
14201 Calculate total size precisely. Decode environment variables
14202 before substituting. (Bug#38)
14203
14204 2009-03-24 Kenichi Handa <handa@m17n.org>
14205
14206 * font.c (find_font_encoding): Return Qnil for unsupported
14207 encoding (Bug#2722).
14208
14209 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
14210
14211 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
14212 that gdpy is set.
14213
14214 2009-03-22 Alan Mackenzie <acm@muc.de>
14215
14216 * callint.c (Finteractive): Clarify the doc string - even
14217 promptless elements need \n separators.
14218
14219 2009-03-22 Jason Rumney <jasonr@gnu.org>
14220
14221 * w32term.c (syms_of_w32term): Doc fix for
14222 x-use-underline-position-properties.
14223
14224 2009-03-21 Eli Zaretskii <eliz@gnu.org>
14225
14226 * w32.c (getpwuid): Change argument type to unsigned.
14227 (struct w32_id): Change type of `rid' member to unsigned.
14228 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
14229 argument ID to unsigned. All callers changed.
14230 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
14231
14232 2009-03-20 Eli Zaretskii <eliz@gnu.org>
14233
14234 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
14235 negative, produce a float value.
14236
14237 * dired.c (make_uid, make_gid): New functions.
14238 (Ffile_attributes): Use them to avoid negative UID and GID.
14239
14240 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
14241
14242 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
14243 (syms_of_keyboard) <command-hook-internal, input-method-function>:
14244 Fix typos in docstrings.
14245
14246 2009-03-19 Kenichi Handa <handa@m17n.org>
14247
14248 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
14249 changed, use font_load_for_lface to get a new font object.
14250 Call free_realized_fontset after handling ASCII font change.
14251
14252 * frame.c (x_set_font): Handle the case that ARG is a cons.
14253
14254 2009-03-19 Glenn Morris <rgm@gnu.org>
14255
14256 * fileio.c (Fsubstitute_in_file_name): Doc fix.
14257
14258 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
14259
14260 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
14261
14262 2009-03-19 Kenichi Handa <handa@m17n.org>
14263
14264 * charset.c (load_charset_map_from_file): When a mapfile can't be
14265 loaded, signal an error.
14266
14267 2009-03-18 Eli Zaretskii <eliz@gnu.org>
14268
14269 * dired.c (Ffile_attributes): Make sure UID and GID are always
14270 positive, even if the value is too large for a positive EMACS_INT.
14271 Doc fix.
14272
14273 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
14274
14275 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14276
14277 * xmenu.c (xdialog_show): Move Fredisplay call ...
14278 (Fx_popup_dialog): ... here.
14279
14280 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
14281
14282 * dired.c (file_name_completion): Disable the first optimization just
14283 installed, since it is not implemented correctly.
14284
14285 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
14286
14287 * dired.c (file_name_completion): Check completion-ignored-extensions
14288 only if the entry can affect bestmatch.
14289 Stop the search early, as Ftry_completion already does.
14290
14291 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
14292
14293 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
14294
14295 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
14296
14297 * keyboard.c (parse_menu_item): Don't display remappings as menu
14298 equivalent bindings (Bug#788).
14299
14300 2009-03-15 Jason Rumney <jasonr@gnu.org>
14301
14302 * w32term.h (WM_EMACS_PAINT): New message.
14303 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
14304 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
14305 before passing to lisp thread. (Bug#950)
14306
14307 2009-03-14 David Reitter <david.reitter@gmail.com>
14308
14309 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
14310 variable as it was never reset.
14311 (ns_term_init): Remove initialization of Lisp-settable defaults
14312 and ns_expand_space.
14313 (-setPanelFromDefaultValues): Remove ns_expand_space.
14314 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
14315 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
14316 i.e. no additional spacing, similar to Carbon port.
14317
14318 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
14319 * nsfns.m (ns-popup-prefs-panel): Remove.
14320
14321 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
14322
14323 * sound.c (alsa_configure): Remove call to deprecated
14324 snd_pcm_sw_params_set_xfer_align.
14325
14326 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
14327
14328 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
14329 after clicking in a detached tool bar.
14330 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
14331
14332 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
14333
14334 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
14335 int/Lisp_Object mixup).
14336
14337 2009-03-13 Kenichi Handa <handa@m17n.org>
14338
14339 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
14340 Handle NAME nil and t correctly. Callers changed.
14341 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
14342 (set_fontset_font): Change ARG to a vector. Handle range_list in
14343 ARG correctly.
14344 (Fset_fontset_font): Fix the case that TARGET is both a script
14345 name and charset name. Adjust the arg to set_fontset_font for
14346 the above change.
14347 (fontset_from_font): Fix previous change.
14348 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
14349 entry. If FONTSET is the default fontset, don't set the extra
14350 slot of the returning char-table.
14351
14352 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
14353
14354 * nsfns.m (Fx_close_connection): Doc fix.
14355 (Fns_do_applescript): Reflow docstring.
14356 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
14357 (Fx_display_pixel_width, Fx_display_pixel_height)
14358 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
14359 Fix typos in docstrings.
14360 (Fns_set_alpha): Fix typos in error messages.
14361
14362 2009-03-12 David Reitter <david.reitter@gmail.com>
14363
14364 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
14365 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
14366 were used for such events.
14367
14368 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
14369 (toggleToolbar, performDragOperation, runHelp): Use it.
14370
14371 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
14372 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
14373
14374 2009-03-11 Kenichi Handa <handa@m17n.org>
14375
14376 * font.h (font_open_by_spec): Extern it.
14377
14378 * font.c (font_open_by_spec): New function.
14379 (font_open_by_name): Use font_open_by_spec.
14380
14381 * frame.c (x_set_font): When ARG is a font-object, don't alter the
14382 fontset of the frame.
14383
14384 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
14385 modify the default font of frames that use this fontset.
14386 (num_auto_fontsets): New variable.
14387 (fontset_from_font): Use num_auto_fontsets to decide a fontset
14388 name. Be sure to set FONTSET_ASCII to the correct font name.
14389 (update_auto_fontset_alist): New function.
14390
14391 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
14392
14393 * makefile.w32-in: Update dependencies.
14394
14395 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
14396
14397 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
14398
14399 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
14400
14401 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
14402
14403 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
14404
14405 * lread.c (Feval_buffer): Doc fix.
14406
14407 2009-03-09 Kenichi Handa <handa@m17n.org>
14408
14409 * charset.c (Qfile_name_handler_alist): Extern it.
14410 (load_charset_map_from_file): Temporarily bind
14411 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
14412
14413 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
14414
14415 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
14416 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
14417
14418 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
14419
14420 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
14421 (x_set_window_size): Change back to calculated method of setting
14422 toolbar height under Cocoa. (Bug#2546)
14423 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
14424 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
14425
14426 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
14427
14428 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
14429 accelerator in parens under GNUstep.
14430
14431 2009-03-06 Kenichi Handa <handa@m17n.org>
14432
14433 These changes are to detect incorrect composition sequence without
14434 looking ahead the source. (Bug#2370)
14435
14436 * coding.h: Include "composite.h".
14437 (enum compisition_state): New enum.
14438 (struct compisition_status): New struct.
14439 (struct iso_2022_spec): New member cmp_status.
14440 (struct emacs_mule_spec): New struct.
14441 (struct coding_system): New members ctext_extended_segment_len and
14442 embedded_utf_8. Change the union member
14443 spec.emacs_mule_full_support to spec.emacs_mule.
14444
14445 * coding.c (CODING_ISO_CMP_STATUS): New macro.
14446 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
14447 (MAX_ANNOTATION_LENGTH): Define to 5.
14448 (ADD_COMPOSITION_DATA): New arg nbytes.
14449 (emacs_mule_char): New arg cmp_status.
14450 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
14451 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
14452 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
14453 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
14454 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
14455 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
14456 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
14457 (EMACS_MULE_COMPOSITION_END): New macro.
14458 (emacs_mule_finish_composition): New function.
14459 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
14460 (decode_coding_emacs_mule): Avoid long looking ahead while
14461 handling composition.
14462 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
14463 (ENCODE_COMPOSITION_RULE): New macro.
14464 (finish_composition): New function.
14465 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
14466 (DECODE_COMPOSITION_START): New implementation.
14467 (DECODE_COMPOSITION_END): Likewise.
14468 (STORE_COMPOSITION_RULE): New macro.
14469 (decode_coding_iso_2022): Avoid long looking ahead while handling
14470 composition, CTEXT extended segment, and embedded UTF-8.
14471 (setup_coding_system): For a coding of type iso-2022, reset
14472 CODING_ISO_EXTSEGMENT_LEN (coding) and
14473 CODING_ISO_EMBEDDED_UTF_8 (coding).
14474 (get_translation): Delete arguments last_block, from_nchars,
14475 to_nchars. Callers changed.
14476 (produce_chars): Don't modify charbuf. Adjusted for the change of
14477 get_translation.
14478 (produce_composition): Adjust for the new annotation sequence.
14479 (handle_composition_annotation): Likewise.
14480 (consume_chars): Adjust for the change of get_translation.
14481
14482 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
14483
14484 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
14485
14486 2009-03-05 Kenichi Handa <handa@m17n.org>
14487
14488 * font.c (font_select_entity): New function.
14489 (font_find_for_lface): Use font_select_entity to select a font.
14490
14491 * fontset.c (fontset_find_font): If a font found without
14492 restricting to the characters C doesn't support C, try to find a
14493 font with C restriction.
14494
14495 2009-03-04 Nikolaj Schumacher <me@nschum.de>
14496
14497 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
14498
14499 2009-03-04 Jason Rumney <jasonr@gnu.org>
14500
14501 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
14502 characters that have already been read. (Bug#2569)
14503
14504 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
14505 Log an error message if check_image_size failed.
14506 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
14507 (gs_load): Mention max-image-size in size error message. (Bug#2560)
14508
14509 2009-03-02 Eli Zaretskii <eliz@gnu.org>
14510
14511 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
14512 when decoding process output.
14513
14514 2009-03-01 Richard M Stallman <rms@gnu.org>
14515
14516 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
14517
14518 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
14519
14520 2009-02-28 Eli Zaretskii <eliz@gnu.org>
14521
14522 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
14523 (decode_coding_emacs_mule, decode_coding_iso_2022)
14524 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14525 (decode_coding_raw_text, decode_coding_charset)
14526 (setup_coding_system, decode_eol, decode_coding, consume_chars):
14527 Honor inhibit-eol-conversion. (Bug #2186)
14528
14529 2009-02-28 Jason Rumney <jasonr@gnu.org>
14530
14531 * coding.c (detect_coding_charset): If not checking latin extra,
14532 fail on characters between 0x80 and 0xA0. (Bug#2354)
14533
14534 2009-02-28 Eli Zaretskii <eliz@gnu.org>
14535
14536 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
14537 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
14538
14539 2009-02-27 Glenn Morris <rgm@gnu.org>
14540
14541 * callint.c (Finteractive): Doc fix.
14542
14543 2009-02-27 Kenichi Handa <handa@m17n.org>
14544
14545 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
14546
14547 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
14548
14549 * font.c (font_style_to_value): Set value for unknown symbols to
14550 100 instead of 255.
14551 (weight_table, slant_table, width_table): Treat "unspecified" as
14552 the default value.
14553
14554 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
14555
14556 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
14557
14558 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
14559
14560 * lread.c (Fload): Stop checking Vloads_in_progress and signal
14561 error as soon as a recursive load is detected.
14562
14563 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
14564
14565 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
14566 before caching.
14567
14568 2009-02-24 Kenichi Handa <handa@m17n.org>
14569
14570 * fontset.c (fontset_find_font): Fix the condition for checking
14571 unavailable font.
14572
14573 2009-02-24 Glenn Morris <rgm@gnu.org>
14574
14575 * xfaces.c (Finternal_set_font_selection_order): Remove leading
14576 whitespace that confuses documentation.
14577
14578 2009-02-23 Miles Bader <miles@gnu.org>
14579
14580 * process.c (Flist_system_processes, Fprocess_attributes)
14581 (syms_of_process): Rename `system-process-attributes' to
14582 `process-attributes'.
14583
14584 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
14585
14586 * coding.h (struct coding_system): Make safe_charsets a pointer to
14587 unsigned char.
14588 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
14589 being 255.
14590 (SAFE_CHARSET_P): Likewise.
14591 (setup_iso_safe_charsets): Properly setup safe_charsets.
14592 (Fdefine_coding_system_internal): Likewise.
14593 (setup_coding_system): Likewise. Remove unneeded casts.
14594 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
14595 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS.
14596 Remove unneeded casts.
14597
14598 * insdel.c (del_range_2): Don't modify gap contents when called
14599 from decode_coding_object. (Bug#1809)
14600
14601 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
14602
14603 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
14604 Qfont_object.
14605 (Ftype_of): Recognize font objects.
14606
14607 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
14608
14609 * font.c (Qfont_spec, Qfont_entity, Qfont_object):
14610 Definitions moved to data.c.
14611
14612 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
14613
14614 * nsterm.m (x_make_frame_invisible): Unset async_visible,
14615 async_iconified. Based on a patch by Christian Lynbech
14616 <christian.lynbech@tieto.com>.
14617 (EmacsView-windowDidMiniaturize:): Unset async_visible.
14618
14619 2009-02-20 Glenn Morris <rgm@gnu.org>
14620
14621 * syntax.c (Fskip_chars_forward): Fix doc typo.
14622
14623 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
14624
14625 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
14626
14627 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
14628
14629 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
14630
14631 2009-02-19 Kenichi Handa <handa@m17n.org>
14632
14633 * coding.c (detect_coding): Preserve coding->mode.
14634 Don't overflow coding->carryover. (Bug#2370)
14635
14636 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
14637
14638 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
14639
14640 2009-02-18 Kenichi Handa <handa@m17n.org>
14641
14642 * font.c (font_check_otf_features): Fix handling of `nil' element.
14643 (Ffont_spec): Describe :lang and :otf in the docstring.
14644
14645 2009-02-16 Andreas Schwab <schwab@suse.de>
14646
14647 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
14648 string.
14649
14650 2009-02-16 Kenichi Handa <handa@m17n.org>
14651
14652 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
14653 (Bug#1723)
14654
14655 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
14656
14657 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
14658
14659 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
14660 (handle_line_prefix): Suppress wrapping of wrap prefixes.
14661
14662 2009-02-14 Eli Zaretskii <eliz@gnu.org>
14663
14664 * msdos.c (MAX_SCREEN_BUF): New macro.
14665 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
14666 Encode the entire run of glyphs sharing the same face, instead of
14667 doing that one glyph at a time (fixes a bug with displaying
14668 double-size characters).
14669
14670 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
14671
14672 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
14673
14674 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
14675 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
14676 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
14677
14678 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
14679 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
14680
14681 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
14682
14683 * keyboard.c (adjust_point_for_property): Allow stopping between two
14684 invisible areas.
14685
14686 2009-02-12 Jason Rumney <jasonr@gnu.org>
14687
14688 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
14689 (add_font_entity_to_list): Call check_face_name even when family
14690 is unspecified.
14691
14692 * w32term.c (x_display_pixel_height, x_display_pixel_width):
14693 Release DC when finished. Use NULL window to refer to desktop.
14694 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
14695
14696 * w32font.c (add_font_entity_to_list): Fix check for substituted
14697 raster fonts. (Bug#2219)
14698
14699 2009-02-12 Kenichi Handa <handa@m17n.org>
14700
14701 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
14702 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
14703 (autocmp_chars): Use fast_looking_at. Don't compose more
14704 characters than MAX_COMPOSITION_COMPONENTS.
14705 (find_automatic_composition): While looking forward and backward,
14706 check static composition. Fix where to stop looking forward.
14707 (composition_adjust_point): Fix checking of static composition.
14708 (Fcomposition_get_gstring): Pay attention to
14709 MAX_COMPOSITION_COMPONENTS.
14710
14711 * lisp.h (fast_looking_at): Extern it.
14712
14713 * search.c (fast_looking_at): New function.
14714
14715 * term.c (encode_terminal_code): Adjust for the change of
14716 <struct glyph>.u.cmp.to.
14717 (append_composite_glyph): Likewise.
14718
14719 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
14720 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
14721 composition.
14722 (append_composite_glyph): Adjust for the change of
14723 <strcut glyph>.u.cmp.to.
14724
14725 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
14726
14727 * casetab.c (init_casetab_once):
14728 * coding.c (ALLOC_CONVERSION_WORK_AREA):
14729 * font.c (font_update_lface):
14730 * fontset.c (Fnew_fontset):
14731 * ftfont.c (ftfont_drive_otf):
14732 * xfont.c (xfont_open):
14733 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
14734
14735 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
14736
14737 * fileio.c (Fwrite_region): !NILP -> CONSP.
14738
14739 2009-02-10 Andreas Schwab <schwab@suse.de>
14740
14741 * process.c (send_process): Properly relocate pointer into data
14742 when using encoded data. (Bug#2272)
14743
14744 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
14745
14746 * coding.c (detect_coding_charset): Fix previous change.
14747
14748 2009-02-08 Jason Rumney <jasonr@gnu.org>
14749
14750 * w32fns.c (w32_hide_hourglass): Handle case where frame
14751 disappeared while hourglass was displayed. (Bug #2193)
14752
14753 2009-02-07 Andreas Schwab <schwab@suse.de>
14754
14755 * unexelf.c (unexec): Fix error message.
14756
14757 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
14758
14759 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
14760 when modal window is active. (Bug #2152)
14761 (applicationShouldTerminate:): Remove now-unneeded while loop
14762 around NSRunAlertPanel.
14763
14764 * nsmenu.m (popupSession): New file-global variable.
14765 (pop_down_menu): End the popupSession before closing dialog.
14766 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
14767 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
14768 don't query NSApp for events (just sleep instead).
14769
14770 2009-02-07 Eli Zaretskii <eliz@gnu.org>
14771
14772 * coding.c (syms_of_coding) <translation-table-for-input>:
14773 Modify doc string to discourage use for character code unification.
14774
14775 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14776
14777 * atimer.c (run_timers): Update pending_atimers.
14778
14779 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
14780
14781 * image.c (svg_load_image): Fix last change.
14782
14783 * xfns.c (Fx_create_frame): Signal an error if no font is
14784 found (Bug#2147).
14785
14786 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
14787
14788 * character.c (syms_of_character) <script-representative-chars>:
14789 Fix typo in docstring.
14790
14791 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
14792
14793 * nsmenu.m (pop_down_menu): New function.
14794 (ns_popup_dialog): Call it on unwind.
14795 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
14796 call timer_check() (Bug#2154).
14797 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
14798 handling_signal is set.
14799 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
14800
14801 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
14802
14803 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
14804
14805 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
14806
14807 * keyboard.c (poll_for_input_1, handle_async_input):
14808 Set handling_signal under HAVE_NS.
14809
14810 2009-02-04 Glenn Morris <rgm@gnu.org>
14811
14812 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
14813
14814 2009-02-04 Kenichi Handa <handa@m17n.org>
14815
14816 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
14817
14818 * charset.c (Fchar_charset): New optional arg restriction.
14819
14820 * coding.h (coding_system_charset_list): Extern it.
14821
14822 * coding.c (coding_system_charset_list): New function.
14823
14824 * composite.c: Include coding.h and termhooks.h.
14825 (composition_gstring_p): Fix for the terminal case.
14826 (composition_gstring_width): Likewise.
14827 (fill_gstring_body): Likewise.
14828 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
14829 the frame.
14830 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
14831 is within a composition.
14832 (Fcomposition_get_gstring): Fix the terminal case.
14833
14834 * term.c (encode_terminal_code): Fix handling of composition.
14835 (produce_composite_glyph): For static composition, get pixel_width
14836 from struct composition.
14837
14838 2009-02-02 Andreas Schwab <schwab@suse.de>
14839
14840 * unexelf.c (unexec): Handle unaligned bss offset.
14841
14842 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
14843
14844 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
14845 XT,w32read_socket changes to ns_read_socket.
14846
14847 * keyboard.c (handle_interrupt): Don't call
14848 quit_throw_to_read_char() under NS.
14849
14850 * blockinput.h: Remove NS-specific code.
14851
14852 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
14853
14854 * dispnew.c (window_change_signal): Don't try to get the size of a
14855 suspended tty frame.
14856 * term.c (Fresume_tty): Resize if the size has changed while the
14857 tty was suspended.
14858
14859 * alloc.c (mark_stack): Properly conditionalize previous change.
14860
14861 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
14862
14863 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
14864 * w32term.c (w32_read_socket) [SYNC_INPUT]:
14865 Remove; this code is not used on Windows.
14866
14867 2009-01-30 Eli Zaretskii <eliz@gnu.org>
14868
14869 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
14870 EOLs that also has stray ^M characters.
14871
14872 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
14873
14874 * atimer.c (run_timers, alarm_signal_handler):
14875 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
14876 * w32inevt.c (w32_console_read_socket):
14877 * w32term.c (w32_read_socket):
14878 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
14879
14880 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
14881
14882 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
14883 Initialize it as a relative filename pattern.
14884 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
14885 (Fcall_process_region): Simplify temp file creation using
14886 temporary-file-directory.
14887
14888 2009-01-29 Eli Zaretskii <eliz@gnu.org>
14889
14890 * msdos.c: Rename pending_signals to msdos_pending_signals.
14891 (sig_suspender, sigprocmask): Adjust.
14892
14893 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
14894
14895 * keyboard.c (pending_signals): New var.
14896 (poll_for_input, input_available_signal, init_keyboard): Set it.
14897 (process_pending_signals): New function.
14898
14899 * lisp.h (QUIT): Check pending_signals instead of
14900 interrupt_input_pending. Use process_pending_signals.
14901
14902 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
14903
14904 * process.c (wait_reading_process_output): Use process_pending_signals.
14905
14906 * sysdep.c (emacs_write): Use process_pending_signals.
14907
14908 * xterm.c (XTread_socket): Update pending_signals.
14909
14910 * w32term.c (w32_read_socket): Update pending_signals.
14911
14912 * w32inevt.c (w32_console_read_socket): Update pending_signals.
14913
14914 2009-01-29 Kenichi Handa <handa@m17n.org>
14915
14916 * xftfont.c (xftfont_has_char): New function.
14917 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
14918
14919 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
14920
14921 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
14922 under GNUstep.
14923 (ns_query_color): New declaration.
14924
14925 * nsterm.m (ns_confirm_quit): New variable.
14926 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
14927 (EmacsApp-applicationShouldTerminate:): Use it.
14928 (EmacsPrefsController): Let user set it.
14929 (ns_query_color): New function.
14930 (ns_defined_color): Use it.
14931 (ns_initialize): Drop.
14932 (ns_term_init): Add two lines from ns_initialize(), and set
14933 input_interrupt_mode to nil.
14934
14935 * image.c (svg_load_image): Don't right-shift background RGB when
14936 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
14937
14938 2009-01-28 Kenichi Handa <handa@m17n.org>
14939
14940 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
14941 (fontset_get_font_group): Remember that no font-group is specified
14942 for C.
14943
14944 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
14945
14946 * fns.c (concat): Check for string overflow (bug#1787).
14947
14948 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
14949 Quadruple undo limits (bug#1501).
14950
14951 2009-01-27 Kenichi Handa <handa@m17n.org>
14952
14953 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
14954 directly use GT_Get_Char_index.
14955
14956 * xftfont.c (struct xftfont_info): New member `index'.
14957
14958 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
14959 (Ffontset_font): Adjust for the change of fontset entry.
14960
14961 2009-01-26 Kenichi Handa <handa@m17n.org>
14962
14963 * fontset.c (fontset_find_font): Fix handling of non-cons return
14964 value of fontset_get_font_group.
14965 (fontset_font): Revert last change.
14966
14967 2009-01-26 Jason Rumney <jasonr@gnu.org>
14968
14969 * w32font.c (w32font_list_internal): Return quickly if registry is
14970 unknown. Simplify final return.
14971 (add_font_entity_to_list): Break complex logic down into more
14972 manageable chunks. Move unknown registry check to
14973 w32font_list_internal.
14974
14975 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
14976
14977 Changes to remove Feval calls from GUI under NS.
14978
14979 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
14980 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
14981 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
14982
14983 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
14984 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
14985 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
14986 instead of NON_ASCII_KEYSTROKE_EVENT.
14987 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
14988 (EmacsApp-applicationShouldTerminate:): Query user.
14989 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
14990 instead of Feval.
14991
14992 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
14993
14994 * keyboard.c (kbd_buffer_get_event): Check for it.
14995 (keys_of_keyboard): Define lispy keys for
14996 ns-put/unput-working-text.
14997
14998 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
14999 versions.
15000 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
15001
15002 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
15003
15004 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
15005 setting current_buffer directly. (Bug#2044)
15006
15007 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
15008
15009 * fontset.c (fontset_font): If we know there is no font, don't do
15010 any work. (Bug#1952, bug#1990).
15011
15012 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
15013
15014 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
15015
15016 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
15017 (ns_no_defaults): New declaration.
15018 (main): Use it.
15019
15020 * nsterm.h (ns_no_defaults): New declaration.
15021
15022 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
15023
15024 * nsterm.m (ns_no_defaults): New variable.
15025 (ns_initialize): Don't read defaults when ns_no_defaults.
15026 (EmacsView-readSelectionFromPasteboard:)
15027 (writeSelectionToPasteboard:types:): New stubbed-out methods for
15028 NSServicesRequests protocol. (Bug#1435)
15029 (ns_dumpglyphs_stretch): New function.
15030 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
15031 of 2008-11-15 to other terms. (Bug#615)
15032
15033 * nsimage.m (setPixmapData:): Set to ignore image DPI.
15034
15035 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
15036
15037 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
15038 call for Sparc64.
15039
15040 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
15041
15042 * nsfns.m:
15043 * nsgui.h:
15044 * nsmenu.m:
15045 * nsselect.m:
15046 * nsterm.h:
15047 * nsterm.m: Remove '23' comments that indicated code added during
15048 update from emacs-20 -> emacs-23.
15049
15050 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
15051
15052 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
15053 ns_alternate_modifier. (Bug#1217)
15054
15055 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
15056 Display all shortcuts, including those w/o super modifier.
15057
15058 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
15059
15060 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
15061
15062 * fileio.c (Vwrite_region_post_annotation_function)
15063 (Vwrite_region_annotation_buffers): New vars.
15064 (build_annotations_unwind): Just reset
15065 Vwrite_region_annotation_buffers.
15066 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
15067 Call write-region-post-annotation-function.
15068 (build_annotations): Add to Vwrite_region_annotation_buffers if
15069 buffer changes.
15070
15071 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
15072
15073 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
15074 Tiger.
15075 * nsfns.m (ns_do_applescript):
15076 Conditionalize typeUTF16ExternalRepresentation on Tiger.
15077
15078 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
15079
15080 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
15081
15082 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
15083
15084 * nsmenu.m (NSMENUPROFILE): Change #if style.
15085
15086 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
15087
15088 * nsterm.m (x_set_frame_alpha): Add prototype.
15089 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
15090 handle Ctrl-tab. (Bug#1841)
15091 (ns_get_color): Use unsigned long long for scanned hex string value.
15092 (ns_term_shutdown): Abort on non SIGTERM signals.
15093 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
15094 (EmacsPrefsController-setPanelFromDefaultValues): New function.
15095 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
15096 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
15097 (ns_defined_color): Fix settings of the XColor variable fields:
15098 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
15099
15100 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
15101 DPI. (Bug#1316)
15102 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
15103 values in onTiger section.
15104
15105 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
15106
15107 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
15108 Check return value of font_spec_from_name.
15109 (Fx_list_fonts): Doc fix. (Bug#1951)
15110
15111 * font.c (font_spec_from_name): Return Qnil if font name could not
15112 be parsed.
15113 (font_parse_name): Treat a `?' character as part of an XLFD.
15114
15115 * fns.c (Fsubstring): Doc fix.
15116
15117 2009-01-19 Kenichi Handa <handa@m17n.org>
15118
15119 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
15120 (ftfont_list): Likewise.
15121
15122 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
15123
15124 * dbusbind.c (Fdbus_register_signal):
15125 * process.c (conv_sockaddr_to_lisp):
15126 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
15127
15128 * callproc.c (Fgetenv_internal): Doc fix.
15129
15130 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
15131
15132 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
15133 it is not even used.
15134
15135 2009-01-16 Glenn Morris <rgm@gnu.org>
15136
15137 * font.c (Ffont_variation_glyphs): Silence compiler.
15138
15139 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
15140
15141 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
15142 Reported by David Robinow <drobinow@gmail.com>.
15143
15144 2009-01-15 Kenichi Handa <handa@m17n.org>
15145
15146 * coding.c (detect_coding_system): Fix handling of null_byte_found.
15147
15148 2009-01-14 Jason Rumney <jasonr@gnu.org>
15149
15150 * frame.c (x_set_font): Always store a font to the font parameter,
15151 never a fontset. (Bug#1562)
15152
15153 2009-01-14 Kenichi Handa <handa@m17n.org>
15154
15155 * coding.c (TWO_MORE_BYTES): New macro.
15156 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
15157
15158 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
15159
15160 * font.c (font_clear_prop): If clearing the family, clear the font
15161 width index too.
15162
15163 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
15164
15165 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
15166
15167 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
15168 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
15169 functions, use sizeof.
15170
15171 2009-01-12 Martin Rudalics <rudalics@gmx.at>
15172
15173 * keyboard.c (read_char): Fix case where last_nonmenu_event
15174 returned a bad value with submenus. (Bug#447)
15175
15176 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
15177
15178 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
15179 family, clear the font width index too.
15180
15181 2009-01-11 Jason Rumney <jasonr@gnu.org>
15182
15183 * keyboard.c (cmd_error_internal): Exit when errors occur before
15184 frame creation and not in daemon mode. (Bug#1836)
15185
15186 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
15187
15188 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
15189 of a display vector, backtrack.
15190 (try_window_reusing_current_matrix): Check glyph type before
15191 referencing charpos member.
15192
15193 2009-01-10 Eli Zaretskii <eliz@gnu.org>
15194
15195 Fix Bug #876:
15196
15197 * coding.c (inhibit_null_byte_detection): New variable.
15198 (detect_coding, detect_coding_system): Don't pay attention to null
15199 bytes if inhibit_null_byte_detection is non-zero.
15200 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
15201 <inhibit-iso-escape-detection>: Doc fix.
15202
15203 2009-01-09 Jason Rumney <jasonr@gnu.org>
15204
15205 * w32font.c (add_font_entity_to_list): Don't report unknown
15206 Windows charset as any unrecognized registry. (Bug#1548)
15207 Only report Unicode Plane 2 fonts as unicode-sip.
15208
15209 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
15210
15211 * xfaces.c (Fx_font_family_list): Delete function.
15212 Move compatibility version to faces.el.
15213
15214 * font.c (Ffont_family_list): Return a list of strings, not symbols.
15215
15216 2009-01-09 Martin Rudalics <rudalics@gmx.at>
15217
15218 * frame.c (x_set_frame_parameters): Remember requested value for
15219 fullscreen before it's reset by the parameter handler.
15220
15221 2009-01-09 Glenn Morris <rgm@gnu.org>
15222
15223 * keyboard.c (last_command_char): For clarity, rename to...
15224 (last_command_event): ... and update all users.
15225 (last_input_char): For clarity, rename to...
15226 (last_input_event): ... and update all users.
15227 (last-command-char, last-input-char): Move to subr.el as aliases.
15228 * cmds.c, commands.h: Update for last_command_char rename.
15229
15230 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
15231
15232 * font.c (font_open_for_lface): Handle unspecified height attribute.
15233
15234 2009-01-08 Jason Rumney <jasonr@gnu.org>
15235
15236 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
15237 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
15238 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
15239 Don't declare.
15240 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
15241 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
15242
15243 2009-01-07 Kenichi Handa <handa@m17n.org>
15244
15245 * fileio.c (Finsert_file_contents): In the case of replace,
15246 remember the coding system used for decoding in
15247 coding_system (Bug#1039).
15248
15249 * coding.c (decode_coding_utf_8): Check byte_after_cr before
15250 breaking the loop. (Bug#870)
15251 (decode_coding_utf_16, decode_coding_emacs_mule)
15252 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
15253 (decode_coding_charset): Likewise.
15254
15255 2009-01-05 Martin Rudalics <rudalics@gmx.at>
15256
15257 * frame.c (x_set_frame_parameters): Make sure height (width) get
15258 applied when fullwidth (fullheight) is set. (Bug#1522)
15259
15260 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
15261
15262 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
15263 (utc_base): Declare as ULONGLONG, not long double.
15264 (convert_time_raw): Delete.
15265 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
15266 (initialize_utc_base): New function.
15267 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
15268 (convert_from_time_t): Use initialize_utc_base; compute result with
15269 64-bit arithmetic.
15270 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
15271
15272 2009-01-03 Eli Zaretskii <eliz@gnu.org>
15273
15274 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
15275 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
15276 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
15277 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
15278 [!subprocesses]: Define.
15279 (syms_of_process) [!subprocesses]: Intern and staticpro them.
15280 (Flist_system_processes, Fsystem_process_attributes)
15281 [!subprocesses]: Call list_system_processes and
15282 system_process_attributes instead of returning Qnil.
15283
15284 * dosfns.c (system_process_attributes, list_system_processes):
15285 New functions.
15286
15287 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
15288
15289 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
15290 Don't use the default (no-op) implementation.
15291
15292 2009-01-03 Jason Rumney <jasonr@gnu.org>
15293
15294 * keyboard.c (parse_modifiers_uncached): Wheel events are
15295 clicks (bug#687).
15296
15297 * w32term.c (x_query_colors, x_query_color): New functions.
15298
15299 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
15300 (svg_load_image): Cast returned pointers from dynamically loaded
15301 functions. Eliminate W32 specific code.
15302
15303 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
15304
15305 * nsfns.m (x_set_foreground_color, x_set_background_color)
15306 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
15307 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
15308 x_ prefix instead of ns_. Update references.
15309 (syms_of_nsfns): Add a FIXME comment.
15310
15311 * nsterm.m (x_set_cursor_type): New prototype.
15312 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
15313
15314 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
15315 for Solaris instead of incorrectly providing Qutime and Qcutime.
15316
15317 2009-01-02 Eli Zaretskii <eliz@gnu.org>
15318
15319 * w32.c (process_times): Compute sum of utime and stime.
15320 (system_process_attributes): Add Qtime to the alist.
15321
15322 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
15323 and add them to the alist.
15324
15325 * process.c (top level) <Qtime, Qctime>: New variables.
15326 (syms_of_process): staticpro them.
15327 (Fsystem_process_attributes): Add their documentation to the doc
15328 string.
15329
15330 * process.h: Declare Qtime and Qctime.
15331
15332 2009-01-02 Jason Rumney <jasonr@gnu.org>
15333
15334 * image.c (Qgobject): New symbol.
15335 (syms_of_image): Initialize it.
15336 (init_svg_functions): Load some functions from gobject library.
15337
15338 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
15339
15340 * frame.c (make_terminal_frame): Remove redundant code and useless
15341 block.
15342
15343 2009-01-01 Andreas Schwab <schwab@suse.de>
15344
15345 * process.c (conv_sockaddr_to_lisp): Add workaround for
15346 getsockname bug on BSD.
15347
15348 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
15349
15350 * xfns.c (x_create_tip_frame): Set border width of the X window.
15351
15352 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
15353
15354 2009-01-01 Jason Rumney <jasonr@gnu.org>
15355
15356 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
15357 Don't block input, as per earlier xterm.c changes.
15358
15359 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
15360
15361 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
15362 (ns_appkit_version_int): New function.
15363 (x-server-version): Use ns_appkit_version_int and follow 21+
15364 convention of returning 3 integers.
15365
15366 2008-12-30 Kenichi Handa <handa@m17n.org>
15367
15368 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
15369 (CHAR_SURROGATE_PAIR_P): New macro.
15370
15371 * font.h (struct font_driver): New member get_variation_glyphs.
15372
15373 * font.c (font_range): Don't require a font for a variation selector.
15374 (Ffont_variation_glyphs): New function.
15375 (syms_of_font): Defsubr it.
15376
15377 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
15378 ftfont_variation_glyphs.
15379 (setup_otf_gstring): New function.
15380 (ftfont_drive_otf): Use it.
15381 (ftfont_shape_by_flt): Handle variation selector.
15382 (ftfont_variation_glyphs): New function.
15383
15384 2008-12-30 Martin Rudalics <rudalics@gmx.at>
15385
15386 * frame.c (Vemacs_iconified): Remove.
15387
15388 2008-12-30 Jason Rumney <jasonr@gnu.org>
15389
15390 * frame.c (store_frame_param, x_get_arg): Enable newer code on
15391 WINDOWSNT too, as related changes have already been synced. (Bug#117)
15392
15393 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
15394
15395 * indent.c (Fvertical_motion): Don't advance iterator if we have
15396 reseated to the desired position.
15397
15398 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
15399 checking for pos match.
15400
15401 2008-12-30 Kenichi Handa <handa@m17n.org>
15402
15403 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
15404 just get the low 8-bit of the code.
15405
15406 * font.c (font_intern_prop): Validate str as multibyte.
15407
15408 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
15409
15410 * dispextern.h (struct face): Move lface and hash from the middle
15411 of bitfields.
15412
15413 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
15414
15415 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
15416
15417 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
15418 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
15419 instead of intervals.h.
15420
15421 2008-12-26 Andreas Schwab <schwab@suse.de>
15422
15423 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
15424 cons.
15425
15426 2008-12-26 Martin Rudalics <rudalics@gmx.at>
15427
15428 * textprop.c (Qminibuffer_prompt): New variable.
15429 (syms_of_textprop): Initialize it.
15430 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
15431 in minibuffer-prompt face. (Bug#1662)
15432
15433 2008-12-25 Jason Rumney <jasonr@gnu.org>
15434
15435 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
15436
15437 2008-12-24 Jason Rumney <jasonr@gnu.org>
15438
15439 * ralloc.c (r_alloc_reset_variable): New function.
15440
15441 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
15442 record of what points where. (Bug#716)
15443
15444 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
15445
15446 * minibuf.c (read_minibuf): Follow the non-interactive case when
15447 running as a daemon, before detaching.
15448
15449 2008-12-22 Andreas Schwab <schwab@suse.de>
15450
15451 * buffer.c (init_buffer): Use realloc instead of xrealloc.
15452 * gtkutil.c (free_widget_value): Use xfree instead of free.
15453
15454 2008-12-22 Martin Rudalics <rudalics@gmx.at>
15455
15456 * frame.c (delete_frame): New function derived from
15457 Fdelete_frame to handle Qnoelisp value for FORCE argument.
15458 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
15459 (Fdelete_frame): Call delete_frame. Remove line from doc-string
15460 saying that FORCE non-nil doesn't run `delete-frame-functions'.
15461 * frame.h: Extern delete_frame.
15462 * window.c (window_loop):
15463 * terminal.c (delete_terminal):
15464 * xterm.c (x_connection_closed):
15465 * xfns.c (Fx_hide_tip):
15466 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
15467
15468 2008-12-21 Jason Rumney <jasonr@gnu.org>
15469
15470 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
15471 when character maps to .notdef character.
15472
15473 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
15474
15475 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
15476
15477 2008-12-20 Jason Rumney <jasonr@gnu.org>
15478
15479 * frame.c (Fmake_terminal_frame): Raise an error when called from
15480 a graphical frame on Windows. (Bug#1325)
15481
15482 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
15483
15484 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
15485
15486 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
15487
15488 * minibuf.c (Fread_buffer): Doc fix.
15489
15490 2008-12-20 Jason Rumney <jasonr@gnu.org>
15491
15492 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
15493 server name in UNC paths. (Bug#719)
15494
15495 * coding.c (decode_coding): Clear chars_at_source flag when using
15496 charbuf. (Bug#1035)
15497
15498 2008-12-19 Daniel Engeler <engeler@gmail.com>
15499
15500 * sysdep.c (serial_configure): Fix typo.
15501
15502 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
15503
15504 * sysdep.c: Include alloca.h.
15505 (system_process_attributes): Add implementation for Solaris.
15506
15507 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
15508
15509 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
15510
15511 Reorganize implementation of Flist_system_processes and
15512 Fsystem_process_attributes. No functional changes.
15513 * process.c: Don't #include pwd.h, grp.h and limits.h.
15514 (Flist_system_processes): Just call list_system_processes.
15515 (Fsystem_process_attributes): Just call system_process_attributes.
15516 (procfs_list_system_processes, time_from_jiffies)
15517 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
15518 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
15519
15520 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
15521 (list_system_processes): Rename from
15522 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
15523 Provide a do nothing implementation.
15524 (system_process_attributes): Rename from
15525 procfs_list_system_processes.
15526 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
15527 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
15528
15529 * w32.c (list_system_processes): Rename from
15530 w32_list_system_processes.
15531 (system_process_attributes): Rename from
15532 w32_system_process_attributes.
15533
15534 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
15535
15536 * process.h (w32_list_system_processes)
15537 (w32_system_process_attributes): Remove.
15538 (list_system_processes, system_process_attributes):
15539 New prototypes.
15540
15541 2008-12-19 Kenichi Handa <handa@m17n.org>
15542
15543 * xfont.c (xfont_decode_coding_xlfd): New function.
15544 (xfont_encode_coding_xlfd): New function.
15545 (xfont_list_pattern): Decode XLFD by iso-8859-1.
15546 (xfont_list): Decode and encode XLFD by iso-8859-1.
15547 (xfont_match): Likewise.
15548 (xfont_list_family): Likewise.
15549 (xfont_open): Likewise.
15550
15551 * ftfont.c (ftfont_open): Generate a multibyte string if given
15552 names are utf-8.
15553
15554 * xftfont.c (xftfont_open): Generate a multibyte string if given
15555 names are utf-8.
15556
15557 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
15558
15559 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
15560 changed.
15561 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
15562 clicked on a detached tool bar button.
15563
15564 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
15565
15566 * emacs.c (main): Print and error and exit when no data is read
15567 from the pipe.
15568
15569 2008-12-17 Jason Rumney <jasonr@gnu.org>
15570
15571 * w32font.c (w32font_has_char): Always return -1.
15572
15573 2008-12-16 Kenichi Handa <handa@m17n.org>
15574
15575 * font.c (font_open_entity): Fix previous change.
15576
15577 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
15578
15579 * process.c: Include <limits.h>.
15580
15581 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
15582
15583 * font.c (font_update_drivers): Fix mistake in reconstructing the
15584 driver list.
15585
15586 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
15587
15588 * font.c (font_clear_cache): Fix format of font cache data.
15589
15590 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
15591
15592 * xftfont.c (xftfont_open): Free Xft font pattern if
15593 XftFontOpenPattern fails.
15594
15595 * xterm.c (x_free_frame_resources): Remove extraneous call to
15596 free_frame_faces.
15597
15598 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15599
15600 * xterm.c (x_delete_display): Move xim_close_dpy call to
15601 x_delete_terminal.
15602 (x_delete_terminal): Call xim_close_dpy.
15603
15604 2008-12-13 Jason Rumney <jasonr@gnu.org>
15605
15606 * w32font.c (intern_font_name): New function.
15607 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
15608 (w32font_open_internal, Fx_select_font): Decode font name.
15609 (fill_in_logfont, list_all_matching_fonts): Encode font name.
15610
15611 * w32font.h (intern_font_name): Declare new function.
15612
15613 * w32uniscribe.c (add_opentype_font_name_to_list):
15614 Use intern_font_name.
15615
15616 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15617
15618 * frame.c (Fdelete_frame): Call free_font_driver_list.
15619
15620 * font.c (free_font_driver_list): Implement missing function.
15621
15622 * w32term.c (w32_term_init): Don't initialize the image cache
15623 here; it will be done in init_frame_faces.
15624
15625 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
15626 (struct x_display_info): Remove unused member null_pixel.
15627 New member xim_callback_data.
15628
15629 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
15630 (xim_initialize): Save pointer to callback function data.
15631 (xim_close_dpy): Free callback function data. Call XCloseIM,
15632 reverting 2008-11-04 change by David Smith.
15633 (x_term_init): Don't initialize the image cache here; it will be
15634 done in init_frame_faces. Remove ancient "null_pixel" cruft.
15635 (x_delete_display): Free x_dnd_atoms member.
15636
15637 2008-12-13 Kenichi Handa <handa@m17n.org>
15638
15639 * font.c (font_rescale_ratio): Move from xfaces.c.
15640 Argument type changed. Handle a font-spec too.
15641 (font_score): Check Vface_font_rescale_alist.
15642 (font_open_entity): Likewise. (Bug#1547)
15643
15644 * xfaces.c (font_rescale_ratio): Move to font.c.
15645
15646 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15647
15648 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
15649
15650 2008-12-12 Jason Rumney <jasonr@gnu.org>
15651
15652 * w32fns.c (x_display_info_for_name, Fx_open_connection):
15653 Set Vwindow_system_version to the real w32 major version.
15654
15655 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
15656
15657 * term.c (init_tty): Move setting the terminal name before the
15658 potential user: maybe_fatal.
15659
15660 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
15661
15662 * term.c (tty_free_frame_resources): Rename from delete_tty_output;
15663 all callers changed. Call free_frame_faces to free the face cache.
15664
15665 2008-12-11 Jason Rumney <jasonr@gnu.org>
15666
15667 * w32font.c (fill_in_logfont): Don't assume symbol script means
15668 SYMBOL_CHARSET. (Bug#547)
15669
15670 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
15671 size for surrogates. (Bug#1096, bug#872)
15672
15673 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
15674
15675 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
15676
15677 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
15678
15679 * process.c (Fsystem_process_attributes, syms_of_process):
15680 Fix typo in name of Ssystem_process_attributes.
15681 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
15682
15683 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
15684
15685 * syntax.c (Fmodify_syntax_entry): Doc fix.
15686
15687 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
15688
15689 * font.c (Ffont_spec): Move usage to end of docstring.
15690
15691 2008-12-10 Jason Rumney <jasonr@gnu.org>
15692
15693 * w32font.c (Qcham): New symbol.
15694 (font_supported_scripts): Add cham, and comments for other new
15695 scripts in bitfield from OpenType spec.
15696 (add_font_entity_to_list): Limit unicode-sip fonts to those that
15697 contain characters beyond the bmp.
15698
15699 2008-12-10 Kenichi Handa <handa@m17n.org>
15700
15701 * ftfont.c (fc_charset_table): Add "unicode-sip".
15702 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
15703 Qunicode_sip.
15704
15705 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
15706
15707 * coding.c (QCdefault_char): Rename from QCdefalut_char.
15708 (Fcoding_system_put): Use QCdefault_char.
15709 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
15710
15711 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
15712
15713 * xftfont.c (syms_of_xftfont): Fix typo.
15714
15715 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
15716
15717 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
15718
15719 * emacs.c (main): Close daemon_pipe on exec.
15720
15721 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
15722
15723 * termchar.h (struct tty): New members termcap_term_buffer and
15724 termcap_strings_buffer.
15725
15726 * term.c (encode_terminal_code): Free any previous memory blocks
15727 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
15728 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
15729 All callers changed.
15730 (init_tty): Store termcap data and string buffers in new struct
15731 tty members termcap_term_buffer and termcap_strings_buffer.
15732 (delete_tty): Free them.
15733 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
15734
15735 2008-12-07 Seiji Zenitani <zenitani@mac.com>
15736
15737 * nsfns.m (ns_set_background_color): Remove code duplication.
15738 It was a substitute for face-transparency on OS X 10.3.
15739
15740 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
15741
15742 * coding.c (make_conversion_work_buffer): Disable buffer
15743 modification hooks in the work buffer.
15744
15745 2008-12-05 Eli Zaretskii <eliz@gnu.org>
15746
15747 * process.c (procfs_system_process_attributes): If `nread' has a
15748 negative value, assign zero to it.
15749
15750 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
15751
15752 * eval.c (Vdebug_on_error): Doc fix.
15753
15754 2008-12-05 Kenichi Handa <handa@m17n.org>
15755
15756 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
15757 second character is a combining character.
15758
15759 2008-12-05 Eli Zaretskii <eliz@gnu.org>
15760
15761 * process.c (procfs_system_process_attributes): Don't use cmd,
15762 cmdsize, and q without initializing them first.
15763
15764 2008-12-04 Jason Rumney <jasonr@gnu.org>
15765
15766 * w32font.c (w32font_draw): Initialize orig_clip before getting
15767 it, and delete it when finished.
15768
15769 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
15770
15771 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
15772 case when running as a daemon before detaching.
15773
15774 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
15775
15776 * w32.c (init_environment): Don't unload library shell32.dll.
15777
15778 2008-12-03 Kenichi Handa <handa@m17n.org>
15779
15780 * font.c (font_at): Set `multibyte' at first.
15781
15782 * coding.c (decode_coding_charset): Check type of an element of
15783 vector VALIDS.
15784 (encode_coding_emacs_mule): Be sure to set `code'.
15785
15786 * fontset.c (face_for_char): Handle invalid charset property correctly.
15787 (font_for_char): Likewise.
15788
15789 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
15790
15791 * font.c (Fopen_font): Compute pixel size correctly.
15792 (font_update_lface): Handle fonts with corrupted size specs,
15793 i.e. non-int and non-float.
15794
15795 * ftfont.c (ftfont_match): Initialize entity variable.
15796 (ftfont_resolve_generic_family): Avoid using uninitialized var.
15797 (ftfont_list_family): Initialize list var earlier.
15798
15799 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
15800
15801 * xterm.c (x_draw_glyph_string): Fall back on
15802 underline_minimum_offset for underline position.
15803
15804 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15805
15806 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
15807
15808 * character.c (c_string_width): Specify the type for LEN.
15809
15810 2008-12-03 Kenichi Handa <handa@m17n.org>
15811
15812 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
15813 (decode_coding_utf_8): Likewise.
15814 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
15815 (produce_chars): Initialize consumed_chars to 0.
15816
15817 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
15818
15819 * keyboard.c (make_lispy_position): Only use PT if the selected
15820 window is current.
15821
15822 2008-12-02 Andreas Schwab <schwab@suse.de>
15823
15824 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
15825
15826 * doprnt.c (doprnt1): Fix size of charbuf.
15827
15828 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
15829
15830 * keyboard.c (timer_check): Revert last change.
15831
15832 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
15833
15834 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
15835
15836 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
15837
15838 * makefile.w32-in: Update dependencies.
15839 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
15840
15841 2008-12-01 Andreas Schwab <schwab@suse.de>
15842
15843 * font.c (register_font_driver): Use xmalloc.
15844 (font_put_frame_data): Likewise.
15845
15846 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
15847
15848 * xfaces.c (realize_x_face): Make abort condition clearer.
15849
15850 * gtkutil.c (update_frame_tool_bar): Initialize variable.
15851
15852 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
15853
15854 * keyboard.c (timer_check): After a timer runs, ensure that the
15855 selected window's buffer is current.
15856
15857 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
15858
15859 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
15860 It was accidentally restored by the Unicode merge.
15861
15862 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
15863
15864 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
15865
15866 * w32proc.c: Include "coding.h".
15867 (Fw32_short_file_name): Encode filename passed to Windows API.
15868 (Fw32_long_file_name): Encode filename passed to Windows API and
15869 decode back the result. (Bug#1433)
15870
15871 2008-11-29 Kenichi Handa <handa@m17n.org>
15872
15873 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
15874 not before accessing it.
15875
15876 * charset.c (Fdefine_charset_internal): After calculating
15877 min_char, max_char, and fastmap, copy the charset structure again.
15878 (encode_char): Fix the previous change.
15879
15880 2008-11-28 Seiji Zenitani <zenitani@mac.com>
15881
15882 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
15883
15884 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
15885
15886 * nsterm.m (x_set_frame_alpha): New function.
15887
15888 2008-11-27 Eli Zaretskii <eliz@gnu.org>
15889
15890 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
15891
15892 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
15893
15894 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
15895 pointer to check_face_name.
15896
15897 2008-11-27 Kenichi Handa <handa@m17n.org>
15898
15899 * category.h (SET_CATEGORY_SET): Call set_category_set.
15900 (set_category_set): Extern it.
15901
15902 * category.c (hash_get_category_set): New function.
15903 (Fmodify_category_entry): Adjust for the change of
15904 char_table_ref_and_range. Call hash_get_category_set to get a
15905 category set to store in the table.
15906
15907 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
15908 Funify_charset.
15909
15910 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
15911 (DECODE_CHAR): Check if the decoder vector is ready.
15912 (ENCODE_CHAR): Check if the encoder char-table is ready.
15913 (maybe_unify_char): Extern it.
15914
15915 * charset.c (Vchar_unified_charset_table): Delete it.
15916 (inhibit_load_charset_map): New variable.
15917 (temp_charset_work): New variable.
15918 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
15919 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
15920 New macros.
15921 (load_charset_map): Meaning of control_flag changed.
15922 If inhibit_load_charset_map is nonzero, setup a table in
15923 temp_charset_work.
15924 (load_charset): New argument control_flag.
15925 (map_charset_for_dump): New function.
15926 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
15927 map_charset_for_dump.
15928 (Fdefine_charset_internal): If the charset method is MAP, load
15929 mapping tables by calling load_charset.
15930 (Funify_charset): Don't load a mapping table but directly set
15931 Vchar_unify_table.
15932 (maybe_unify_char): New function.
15933 (decode_char): Don't handle the deleted method MAP_DEFERRED.
15934 Handle the case of inhibit_load_charset_map being nonzero.
15935 (encode_char): Don't handle the deleted method MAP_DEFERRED.
15936 Handle the case of inhibit_load_charset_map being nonzero.
15937 (Fclear_charset_maps): Just free temp_charset_work.
15938 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
15939 variable.
15940
15941 * chartab.c (sub_char_table_ref_and_range): Adjust for the
15942 change of char_table_ref_and_range.
15943 (char_table_ref_and_range): Change the meaning of argument FROM
15944 and TO. Now the caller must provide initial values for *FROM
15945 and *TO.
15946
15947 * fontset.c (fontset_add): Adjust for the change of
15948 char_table_ref_and_range.
15949 (fontset_get_font_group): Likewise.
15950 (Ffontset_info): Likewise.
15951
15952 * keymap.c (describe_vector): Adjust for the change of
15953 char_table_ref_and_range. For char-table, put boundary between
15954 non-ASCII and 8-bit characters.
15955
15956 * print.c (print_object): For bool-vector, delete unnecessary
15957 check of ASCII_BYTE_P.
15958
15959 2008-11-26 Jason Rumney <jasonr@gnu.org>
15960
15961 * w32font.c (w32font_open_internal): Don't include external
15962 leading in font height. (Bug#879)
15963
15964 2008-11-26 Glenn Morris <rgm@gnu.org>
15965
15966 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
15967 redefinition with ifdef. (Bug#1383)
15968
15969 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
15970
15971 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
15972
15973 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
15974
15975 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
15976 New EmacsView methods.
15977 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
15978 Fixes bug #1048,1357,1414.
15979
15980 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
15981
15982 Fix bug #1362.
15983 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
15984 is not an indexed color.
15985 * nsterm.m (free_indexed_color): Add argument checking.
15986 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
15987
15988 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
15989
15990 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
15991 Document confirm-after-completion value for
15992 minibuffer-completion-confirm.
15993
15994 2008-11-24 Jason Rumney <jasonr@gnu.org>
15995
15996 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
15997 warning.
15998
15999 2008-11-23 Jason Rumney <jasonr@gnu.org>
16000
16001 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
16002 restored before returning.
16003
16004 * w32font.c (check_face_name): New function.
16005 (add_font_entity_to_list): Use it to filter out common substituted
16006 fonts. (Bug#642)
16007
16008 2008-11-22 Martin Rudalics <rudalics@gmx.at>
16009
16010 * buffer.c (Fswitch_to_buffer): Reword and mention new option
16011 confirm-nonexistent-file-or-buffer in doc-string.
16012
16013 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
16014
16015 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
16016 Fix copy/paste typo. Add checks.
16017
16018 2008-11-21 Kenichi Handa <handa@m17n.org>
16019
16020 * coding.c (detect_coding_iso_2022): Reject invalid composition
16021 sequence.
16022 (DECODE_COMPOSITION_START): If the current source is the last
16023 block, and the current composition doesn't end, regard this
16024 sequence as invalid.
16025 (decode_coding_iso_2022): Handle invalid composition sequence.
16026
16027 2008-11-20 Martin Rudalics <rudalics@gmx.at>
16028
16029 * window.c (coordinates_in_window): Don't return
16030 ON_VERTICAL_BORDER for the rightmost position of a mode/header
16031 line when the window is not the rightmost one. (Bug#1372)
16032
16033 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
16034
16035 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
16036
16037 2008-11-15 Eli Zaretskii <eliz@gnu.org>
16038
16039 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
16040 and bright_bg if noninteractive is non-zero.
16041
16042 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16043
16044 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
16045 x_draw_glyph_string_background.
16046
16047 * w32term.c (x_draw_glyph_string): Likewise.
16048
16049 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
16050
16051 * xterm.c (x_draw_glyph_string): Stop drawing the background of
16052 the next glyph string once past the overhang width.
16053
16054 * nsterm.m (ns_draw_glyph_string): Likewise.
16055
16056 * w32term.c (x_draw_glyph_string): Likewise.
16057
16058 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
16059
16060 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
16061 double file close.
16062
16063 2008-11-14 Martin Rudalics <rudalics@gmx.at>
16064
16065 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
16066 dedicated status of window before attempting to display another
16067 buffer in it.
16068
16069 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
16070
16071 * msdos.c (Fmsdos_long_file_names):
16072 (syms_of_msdos) <dos-unsupported-char-glyph>:
16073 * dosfns.c (Fint86): Fix typos in docstrings.
16074
16075 2008-11-14 Eli Zaretskii <eliz@gnu.org>
16076
16077 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
16078
16079 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
16080
16081 * puresize.h (BASE_PURESIZE): Increase to 1260000.
16082
16083 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
16084
16085 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
16086
16087 * frame.h: Negative alpha means "don't touch".
16088
16089 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
16090
16091 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
16092
16093 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
16094
16095 * hftctl.c:
16096 * chpdef.h:
16097 * acldef.h: Remove files used only for systems no longer supported.
16098
16099 * Makefile.in: Fix .o alphabetical ordering.
16100 (hftctl.o): Remove dependency, file removed.
16101 (keymap.o, print.o): Depend on charset.h.
16102
16103 2008-11-10 Kenichi Handa <handa@m17n.org>
16104
16105 * character.c (Fget_byte): Fix and make it faster for unibyte target.
16106
16107 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
16108
16109 * dired.c (file_name_completion): If completion_ignore_case is
16110 enabled, ignore case when checking completion-regexp-list.
16111
16112 2008-11-08 Eli Zaretskii <eliz@gnu.org>
16113
16114 * vm-limit.c (get_lim_data): Fix last change.
16115
16116 2008-11-08 Kenichi Handa <handa@m17n.org>
16117
16118 * character.c (Fget_byte): New function.
16119 (syms_of_character): Defsubr Fget_byte.
16120
16121 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
16122
16123 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
16124 cursor position is valid after scrolling.
16125
16126 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
16127
16128 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
16129
16130 2008-11-06 Glenn Morris <rgm@gnu.org>
16131
16132 * xterm.c (handle_one_xevent): Don't let popup menus cause
16133 mouse-autoselect-window related window switching. (Bug#1261)
16134
16135 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
16136
16137 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
16138
16139 2008-11-04 Andreas Schwab <schwab@suse.de>
16140
16141 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
16142
16143 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
16144
16145 * xfns.c (Fx_wm_set_size_hint): New function.
16146
16147 2008-11-03 Martin Rudalics <rudalics@gmx.at>
16148
16149 * textprop.c (Fprevious_single_char_property_change): Return 0
16150 when there's no change in a string. (Bug#1301)
16151
16152 2008-11-02 Martin Rudalics <rudalics@gmx.at>
16153
16154 * frame.c (do_switch_frame): New argument NORECORD passed to
16155 Fselect_window.
16156 (Fselect_frame): New argument NORECORD passed to
16157 do_switch_frame.
16158 (Fset_frame_selected_window): New argument NORECORD passed to
16159 Fselect_frame.
16160 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
16161 in call of do_switch_frame.
16162 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
16163 Handle NORECORD argument in call of Fselect_frame.
16164 * lisp.h (do_switch_frame, Fselect_frame)
16165 (Fset_frame_selected_window): Adjust declarations.
16166 * window.c (select_frame_norecord): New function.
16167 (run_window_configuration_change_hook): Use it and call
16168 Fselect_frame with NORECORD set.
16169 (Fselect_window): Pass NORECORD to Fselect_frame.
16170 (Fset_window_configuration): Handle NORECORD argument in call of
16171 do_switch_frame.
16172 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
16173 Fset_frame_selected_window.
16174 * keyboard.c (command_loop_1): Handle NORECORD in call of
16175 Fselect_frame (currently ifdefd).
16176
16177 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
16178
16179 * emacs.c (USAGE2): Untabify.
16180
16181 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
16182
16183 * composite.c (fill_gstring_header): Fix copy/paste typo.
16184
16185 2008-10-31 Martin Rudalics <rudalics@gmx.at>
16186
16187 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
16188 (Fother_window): Rename argument and rewrite doc-string.
16189 (select_window_norecord): Fix return value. (Bug#1276)
16190
16191 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
16192
16193 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
16194 new frames overriding foreground for tooltips. Based on similar patch
16195 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
16196
16197 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
16198
16199 * emacs.c (Fdaemon_initialized): Initialize nfd.
16200
16201 2008-10-29 Martin Rudalics <rudalics@gmx.at>
16202
16203 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
16204 (Fwindow_text_height): Clarify doc-strings.
16205 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
16206 doc-string of window-scroll-functions.
16207
16208 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
16209
16210 * category.c (syms_of_category): Fix typo in docstring.
16211
16212 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
16213
16214 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
16215 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
16216 Fix typos in docstrings.
16217
16218 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
16219
16220 * emacs.c (daemon_pipe): Make non-static.
16221 (IS_DAEMON): Move definition ...
16222 * lisp.h (IS_DAEMON): ... here.
16223 (daemon_pipe): Declare.
16224 (is_daemon): Remove.
16225 * dispnew.c (init_display): Use IS_DAEMON.
16226
16227 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16228
16229 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
16230 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
16231
16232 * emacs.c (is_daemon): Remove.
16233 (main): Don't set is_daemon.
16234 (IS_DAEMON): New macro.
16235 (Fdaemonp, Fdaemon_initialized): Use it.
16236 (Fdaemon_initialized): Write a char into the pipe to make sure the
16237 parent exits.
16238 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
16239
16240 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
16241
16242 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
16243 over-sized glyph, draw it with the default glyph width.
16244
16245 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
16246 glyph, draw it with the default glyph width.
16247
16248 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
16249 glyph, draw it with the default glyph width.
16250
16251 * xdisp.c (try_scrolling): When computing the distance from the
16252 scroll margin to PT, try moving some distance past the window
16253 bottom before giving up.
16254
16255 2008-10-27 Martin Rudalics <rudalics@gmx.at>
16256
16257 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
16258 (Fset_window_buffer): Explain in doc-string that a window can be
16259 "strongly" dedicated to its buffer.
16260
16261 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
16262
16263 * emacs.c (daemon_name): New variable.
16264 (main): Deal with --daemon=SERVER_NAME.
16265 (Fdaemonp): Return a name if one was passed to --daemon.
16266
16267 2008-10-26 Romain Francoise <romain@orebokech.com>
16268
16269 * emacs.c (daemon_pipe): New variable.
16270 (main): Create a pipe before forking, make the parent exit only after
16271 the child has closed its end of the pipe. Move closing the
16272 descriptors ...
16273 (Fdaemon_initialized): ... here. New function.
16274
16275 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
16276
16277 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
16278 the previous unoptimized table.
16279
16280 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
16281 the distinction between non-nil and non-t value of `dedicated'.
16282
16283 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
16284
16285 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
16286 read_char_minibuf_menu_text is large enough to hold the menu string.
16287
16288 2008-10-25 Martin Rudalics <rudalics@gmx.at>
16289
16290 * window.c (Fget_buffer_window, Fdelete_windows_on)
16291 (Freplace_buffer_in_windows): Make buffer argument optional and
16292 rename to buffer_or_name.
16293
16294 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
16295
16296 * xdisp.c (handle_single_display_spec, handle_display_prop):
16297 Undo 2005-05-16 change.
16298 (handle_stop): Pop iterator if it's loaded with an empty string.
16299 (get_overlay_strings_1): Don't save iterator if it's loaded with
16300 an empty string (bug#1201).
16301
16302 2008-10-24 Kenichi Handa <handa@m17n.org>
16303
16304 * ftfont.c (ftfont_otf_features): Fix previous change.
16305 (ftfont_otf_capability): Check FeatureList.FeatureCount before
16306 calling ftfont_otf_features.
16307
16308 2008-10-24 Kenichi Handa <handa@m17n.org>
16309
16310 * font.c (font_match_p): Fix for the case that a vector of
16311 characters is in script-representative-chars.
16312
16313 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
16314
16315 * dbusbind.c (xd_in_read_queued_messages): New variable.
16316 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
16317 (xd_read_queued_messages): Catch Qdbus_error from the macros.
16318 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
16319 macro. (Bug#1186)
16320
16321 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
16322
16323 * s/sol2-10.h: New file.
16324
16325 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
16326
16327 * xdisp.c (fill_glyph_string): Fix typo in source (though the
16328 poor beast has survived 9+ years and the jump from xterm.c!).
16329
16330 2008-10-23 Martin Rudalics <rudalics@gmx.at>
16331
16332 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
16333 Reword doc-string.
16334 (Fbury_buffer): In doc-string say what happens to the buffer's window.
16335
16336 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
16337
16338 * character.c (syms_of_character) <script-representative-chars>:
16339 <unicode-category-table>: Doc fixes.
16340
16341 2008-10-23 Noah Friedman <friedman@splode.com>
16342
16343 * coding.c (make_conversion_work_buffer): Check that
16344 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
16345 Fget_buffer_create.
16346
16347 2008-10-23 Kenichi Handa <handa@m17n.org>
16348
16349 * font.c (font_add_log): Check the values of extra properties.
16350
16351 2008-10-22 Martin Rudalics <rudalics@gmx.at>
16352
16353 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
16354 Reword doc-string.
16355 (Fset_window_parameter): Use NILP.
16356 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
16357 (Frecenter): Use "selected" instead of "current" window in doc-strings.
16358
16359 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
16360
16361 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
16362
16363 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
16364
16365 * nsfns.m (ns_appkit_version): New function.
16366 (x-server-version): Use it.
16367 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
16368 (x-server-vendor): Don't check_ns().
16369
16370 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
16371
16372 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
16373
16374 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
16375 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
16376
16377 2008-10-22 Kenichi Handa <handa@m17n.org>
16378
16379 * syntax.c (scan_words): Call word_boundary_p instead of comparing
16380 scripts.
16381
16382 * category.c (word_boundary_p): Check scripts instead of charset.
16383 Handle nil value in word-separating-categories and
16384 word-combining-categories.
16385 (syms_of_category): Fix docstrings of word-separating-categories
16386 and word-combining-categories.
16387
16388 2008-10-21 Eli Zaretskii <eliz@gnu.org>
16389
16390 * coding.c (Fencode_coding_region, Fdecode_coding_region)
16391 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
16392
16393 2008-10-21 Martin Rudalics <rudalics@gmx.at>
16394
16395 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
16396 Rename arg "buffer" to "buffer_or_name".
16397 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
16398 it optional.
16399 (no_switch_window): Remove since the return value is not used.
16400 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
16401 Consider window as dedicated when Fwindow_dedicated_p returns a
16402 non-nil value.
16403 * lisp.h: Remove prototype for no_switch_window.
16404
16405 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
16406
16407 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
16408 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
16409
16410 2008-10-21 Kenichi Handa <handa@m17n.org>
16411
16412 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
16413 check Vlatin_extra_code_table.
16414
16415 2008-10-20 Eli Zaretskii <eliz@gnu.org>
16416
16417 * fileio.c (Fset_file_modes): Doc fix.
16418
16419 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
16420
16421 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
16422 in arrays.
16423
16424 2008-10-19 Martin Rudalics <rudalics@gmx.at>
16425
16426 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
16427 Mention kill-buffer in doc-string.
16428 (Fset_window_buffer): Reinsert tem check removed in last commit.
16429 (Fenlarge_window, Fshrink_window): Have argument names and
16430 doc-string follow Elisp manual more closely.
16431
16432 2008-10-18 Eli Zaretskii <eliz@gnu.org>
16433
16434 * fileio.c (Fset_file_modes): Doc fix.
16435
16436 2008-10-18 Martin Rudalics <rudalics@gmx.at>
16437
16438 * window.c (Fwindow_width, Fset_window_start)
16439 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
16440 (Fdelete_windows_on, Freplace_buffer_in_windows):
16441 Make doc-strings follow code and Elisp manual more closely.
16442 (Fwindow_dedicated_p): Make window argument optional.
16443 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
16444 (Fset_window_buffer): Respect any non-nil dedicated value for
16445 window. Rename "buffer" argument to "buffer_or_name".
16446
16447 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
16448
16449 * m/sh3.h: New file, machine description for SuperH.
16450
16451 2008-10-17 Martin Rudalics <rudalics@gmx.at>
16452
16453 * window.c (Fsplit_window): Rename arg horflag to horizontal.
16454
16455 2008-10-17 Kenichi Handa <handa@m17n.org>
16456
16457 * ftfont.c (ftfont_otf_features): Fix indexing
16458 gsub_gpos->FeatureList.Feature. Check the validity of indices.
16459
16460 2008-10-16 Magnus Henoch <mange@freemail.hu>
16461
16462 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
16463 (Fdbus_call_method_asynchronously): Ditto.
16464 This change makes C-h f display the argument list.
16465
16466 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
16467
16468 * fileio.c (Fexpand_file_name): Doc fix.
16469
16470 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
16471 of :foreground and :background equivalent to unspecified (20.x
16472 compatibility).
16473
16474 2008-10-15 Eli Zaretskii <eliz@gnu.org>
16475
16476 * buffer.c (syms_of_buffer): Doc fix.
16477
16478 2008-10-14 Kenichi Handa <handa@m17n.org>
16479
16480 * font.c (font_clear_prop): When clearing font width, clear the
16481 average width field too.
16482
16483 2008-10-12 Andreas Schwab <schwab@suse.de>
16484
16485 * ftfont.c (ftfont_shape_by_flt): Make static.
16486 * ftfont.h (ftfont_shape_by_flt): Don't declare.
16487
16488 * font.c: Don't include <m17n-flt.h>.
16489
16490 2008-10-10 Eli Zaretskii <eliz@gnu.org>
16491
16492 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
16493
16494 2008-10-09 Eli Zaretskii <eliz@gnu.org>
16495
16496 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
16497 away code.
16498
16499 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
16500
16501 * dispnew.c (update_text_area): Avoid looping due to large glyph
16502 overhangs (bug#1070).
16503
16504 2008-10-09 Kenichi Handa <handa@m17n.org>
16505
16506 * fontset.c (face_for_char): If face->fontset is negative, just
16507 return ascii_face.
16508
16509 * font.c (font_delete_unmatched): Fix previous change.
16510 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
16511
16512 2008-10-09 Martin Rudalics <rudalics@gmx.at>
16513
16514 * frame.c (Fraise_frame): On text-only terminals select frame in
16515 order to make it visible. (Bug#1061)
16516
16517 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
16518
16519 * fontset.c (fontset_find_font): Check frame validity.
16520
16521 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
16522
16523 * gtkutil.c (xg_display_open): Reset default display if none exists.
16524 (xg_display_close): Allow Emacs to close all displays (bug#985).
16525
16526 2008-10-06 Andreas Schwab <schwab@suse.de>
16527
16528 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
16529
16530 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
16531
16532 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
16533
16534 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
16535
16536 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
16537 during initialization.
16538
16539 2008-10-04 Eli Zaretskii <eliz@gnu.org>
16540
16541 * xdisp.c (redisplay_internal): If frame switched, redisplay the
16542 whole thing on MSDOS frames as well as on a TTY.
16543
16544 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
16545 well as for TTY.
16546 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
16547 well as on a TTY.
16548
16549 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
16550 as well as for TTY.
16551
16552 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
16553
16554 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
16555 MSDOS frames as well.
16556
16557 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
16558
16559 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
16560 correct arguments.
16561 * menu.c (find_and_return_menu_selection): Add cast.
16562
16563 2008-10-03 Glenn Morris <rgm@gnu.org>
16564
16565 * emacs.c (USAGE1): Add --daemon.
16566
16567 2008-10-02 Eli Zaretskii <eliz@gnu.org>
16568
16569 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
16570 100, so it's in percents as advertised.
16571
16572 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
16573
16574 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
16575 (ns_output.current_cursor, ns_output.desired_cursor)
16576 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
16577 (FRAME_NEW_CURSOR_COLOR): Remove.
16578
16579 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
16580 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
16581 enumeration (HOLLOW_BOX_CURSOR, etc.).
16582
16583 * nsterm.m (ns_frame_rehighlight): Remove commented code.
16584 (draw_window_cursor): Simplify code.
16585 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
16586 Don't change cursor type. In latter, call rehighlight instead of doing
16587 updates manually.
16588 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
16589 Use core Emacs cursor types.
16590
16591 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
16592
16593 2008-10-02 Martin Rudalics <rudalics@gmx.at>
16594
16595 * process.c (Faccept_process_output): Fix doc-string.
16596
16597 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
16598
16599 * gmalloc.c (__sbrk): Also define for uClibc.
16600
16601 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
16602 for uClibc.
16603
16604 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16605
16606 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
16607 styles.
16608 (nsfont_open): Reenable the cache.
16609
16610 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16611
16612 * font.c (font_matching_entity): Reflect ATTRS in font selection.
16613 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
16614
16615 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
16616
16617 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
16618 a suspended terminal.
16619
16620 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
16621
16622 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
16623
16624 2008-09-30 Eli Zaretskii <eliz@gnu.org>
16625
16626 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
16627
16628 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
16629
16630 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
16631 in a continued line coincides with a line beginning.
16632
16633 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
16634
16635 * nsfont.m (nsfont_trait_distance): Fix bug.
16636 (nsfont_list): Return a list rather than a vector (syncs with Handa
16637 changes of 2008-05-14).
16638 (nsfont_open): Improve logging.
16639
16640 2008-09-29 Andreas Schwab <schwab@suse.de>
16641
16642 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
16643
16644 2008-09-28 Martin Rudalics <rudalics@gmx.at>
16645
16646 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
16647 name as char-resolve-modifiers.
16648 Reported by: Markus Triska <markus.triska@gmx.at>
16649
16650 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
16651
16652 * dispnew.c (init_display): Return earlier when running as a daemon.
16653
16654 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
16655
16656 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
16657
16658 2008-09-27 Eli Zaretskii <eliz@gnu.org>
16659
16660 * composite.c (Fcomposition_get_gstring)
16661 (Fcompose_region_internal, Fcompose_string_internal)
16662 (Ffind_composition_internal): Doc fix.
16663 (syms_of_composite) <compose-chars-after-function>: Doc fix.
16664 (syms_of_composite) <auto-composition-function>: Doc fix.
16665 (syms_of_composite) <composition-function-table>: Doc fix.
16666
16667 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
16668
16669 * search.c (wordify): New argument for lax word-ends.
16670 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
16671
16672 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
16673
16674 * lisp.h (is_daemon): Declare.
16675 * dispnew.c (init_display): Do not try to initialize the terminal
16676 when running as a daemon.
16677
16678 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
16679
16680 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
16681 x_display_pixel_height.
16682
16683 2008-09-22 Martin Rudalics <rudalics@gmx.at>
16684
16685 * undo.c (record_point): Don't call Fundo_boundary for first
16686 change. (Bug#731)
16687
16688 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
16689
16690 * emacs.c (Fdaemonp): Doc fix.
16691
16692 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
16693
16694 * emacs.c (main): Place #ifdef in the proper place.
16695
16696 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
16697
16698 * emacs.c (standard_args): Add --daemon.
16699 (main): Disconnect from the terminal when --daemon is passed.
16700 (is_daemon): New variable.
16701 (Fdaemonp): New function.
16702 (syms_of_emacs): Defsubr it.
16703
16704 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
16705
16706 * xdisp.c (get_next_display_element): Handle string display
16707 correctly when checking for the end of a box run.
16708
16709 2008-09-20 Glenn Morris <rgm@gnu.org>
16710
16711 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
16712 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
16713 (Frename_file): Avoid copying to trash if a rename involves
16714 a delete. (Bug#964).
16715
16716 2008-09-20 Eli Zaretskii <eliz@gnu.org>
16717
16718 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
16719 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
16720 frames as well as termcap frames.
16721 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
16722 get_named_tty.
16723
16724 2008-09-19 Eli Zaretskii <eliz@gnu.org>
16725
16726 * process.c (procfs_system_process_attributes): Fix cmdline in
16727 case /proc/PID/cmdline is empty.
16728
16729 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
16730 x_display_pixel_height.
16731
16732 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
16733
16734 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
16735
16736 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
16737 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
16738
16739 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
16740
16741 * dispextern.h (struct it): Move line_wrap away from the middle of
16742 bitfields. Move voffset in struct iterator_stack_entry after the
16743 bitfields. Move tab_width near after another short.
16744
16745 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
16746
16747 * frame.h (struct frame): Move alpha from the middle of bitfields.
16748
16749 * window.h (struct window): Move frozen_window_start_p after the
16750 rest of the bitfields to reduce padding.
16751
16752 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
16753
16754 * xterm.h (x_display_info): Remove `height' and `width' members.
16755
16756 * nsterm.h (ns_display_info): Remove `height' and `width' members.
16757
16758 * w32term.h (w32_display_info): Remove `height', `width',
16759 `height_in', and `width_in' members.
16760
16761 * xterm.c (x_display_pixel_height, x_display_pixel_width):
16762 New functions.
16763 (x_calc_absolute_position): Use them.
16764 (x_term_init): Omit removed `height' and `width' members.
16765
16766 * w32term.c (x_display_pixel_height, x_display_pixel_width):
16767 New functions.
16768 (w32_read_socket, x_calc_absolute_position): Use them.
16769 (w32_initialize_display_info, w32_term_init): Omit removed members
16770 of w32_display_info.
16771
16772 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
16773 New functions.
16774 (ns_initialize_display_info): Omit removed members of ns_display_info.
16775
16776 * xterm.c (x_display_pixel_height, x_display_pixel_width):
16777 New functions.
16778 (x_calc_absolute_position): Use them.
16779 (x_term_init): Omit removed `height' and `width' members.
16780
16781 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
16782 (compute_tip_xy):
16783 * frame.c (x_fullscreen_adjust):
16784 * xmenu.c (menu_position_func): Use x_display_pixel_height and
16785 x_display_pixel_width.
16786
16787 2008-09-18 Kenichi Handa <handa@m17n.org>
16788
16789 * composite.c (fill_gstring_header): Don't check FROM and TO here.
16790 (composition_compute_stop_pos): Fix handling of static composition.
16791 (Fcomposition_get_gstring): Check FROM and TO at first.
16792
16793 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
16794
16795 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
16796 mixup (YAILOM).
16797
16798 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
16799
16800 * indent.c (Fvertical_motion): Use position reported by iterator
16801 instead of PT for determining screen motion (bug#943).
16802
16803 2008-09-17 Romain Francoise <romain@orebokech.com>
16804
16805 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
16806
16807 2008-09-17 Kenichi Handa <handa@m17n.org>
16808
16809 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
16810
16811 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
16812 if necessary.
16813
16814 2008-09-16 Kenichi Handa <handa@m17n.org>
16815
16816 * coding.c (make_conversion_work_buffer): Avoid calling
16817 Fget_buffer_create if it is not necessary.
16818
16819 2008-09-15 Martin Rudalics <rudalics@gmx.at>
16820
16821 * window.c (Fselect_window): Don't update window_select_count and
16822 use_time when norecord is not nil.
16823
16824 2008-09-14 Kenichi Handa <handa@m17n.org>
16825
16826 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
16827 specpdl_ptr.
16828
16829 2008-09-12 Kenichi Handa <handa@m17n.org>
16830
16831 * indent.c (scan_for_column): Don't handle automatic composition
16832 if the current buffer is not associated with a window.
16833
16834 * composite.c (composition_reseat_it): If the current buffer is
16835 not associated with a window, ignore the automatic composition.
16836 (find_automatic_composition): Likewise.
16837
16838 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
16839
16840 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
16841 (Fgpm_mouse_stop): Use it.
16842 * termhooks.h (close_gpm): Declare.
16843 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
16844 connection if Gpm_GetEvent fails.
16845
16846 * window.c (set_window_buffer): Always preserve current-buffer.
16847
16848 2008-09-12 Glenn Morris <rgm@gnu.org>
16849
16850 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
16851
16852 2008-09-11 Glenn Morris <rgm@gnu.org>
16853
16854 * charset.c (charset-map-path): Doc fix.
16855
16856 2008-09-10 Kenichi Handa <handa@m17n.org>
16857
16858 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
16859
16860 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
16861 compose a grapheme cluster with the preceding base glyph.
16862
16863 * composite.c (composition_compute_stop_pos): Fix previous change.
16864 Reset cmp_it->id to -1 at first.
16865
16866 2008-09-10 Glenn Morris <rgm@gnu.org>
16867
16868 * Makefile.in (character.o, chartab.o): Fix config.h typo.
16869
16870 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
16871
16872 * keyboard.c (read_key_sequence): Reapply translation maps when
16873 switching keyboards.
16874
16875 2008-09-09 Kenichi Handa <handa@m17n.org>
16876
16877 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
16878 characters.
16879
16880 * composite.c (FORWARD_CHAR): Fix calculation
16881 of (POSITION).pos_byte.
16882 (composition_compute_stop_pos): Limit the search of composition to
16883 at most 500 characters ahead. If we reach the limit or find a
16884 newline, set cmp_it->ch to -2 and return 0.
16885 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
16886
16887 2008-09-08 Kenichi Handa <handa@m17n.org>
16888
16889 * indent.c (Fvertical_motion): Be sure to set
16890 it_overshoot_expected if it.cmp_it.id is non-negative.
16891
16892 2008-09-07 Andreas Schwab <schwab@suse.de>
16893
16894 * callproc.c (Fcall_process): Don't hold references to string data
16895 across garbage collection. Move initialisation of new_argv down
16896 to avoid compiler bug.
16897
16898 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16899
16900 * process.c (Fsystem_process_attributes): Doc fix.
16901
16902 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
16903
16904 * callproc.c (Fcall_process): Canonicalize current directory name.
16905
16906 * xdisp.c (move_it_to): When moving by vpos, ensure that the
16907 iterator advances to the next line if the current line ends in a
16908 continued tab.
16909
16910 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
16911
16912 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
16913 member to point to cmp_from.
16914
16915 * xdisp.c: Doc fix for references to gidx data member.
16916
16917 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
16918
16919 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
16920
16921 2008-09-07 Kenichi Handa <handa@m17n.org>
16922
16923 * composite.c (FORWARD_CHAR): Check STOP after
16924 incrementing (POSITION).pos.
16925
16926 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16927
16928 * process.c (Fsystem_process_attributes): Doc fix.
16929
16930 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
16931
16932 * keyboard.c (Ftop_level): Doc fix.
16933
16934 2008-09-06 Eli Zaretskii <eliz@gnu.org>
16935
16936 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
16937 minibuffer, don't let lower part of menu invade the echo area.
16938
16939 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
16940 "char *q" to access menu text and advance through it. Revert the
16941 change that displayed ">" instead of ASCII character 0x10.
16942
16943 2008-09-05 Eli Zaretskii <eliz@gnu.org>
16944
16945 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
16946 toggle boxes and radio buttons on MS-DOS as well.
16947
16948 2008-09-05 Kenichi Handa <handa@m17n.org>
16949
16950 * composite.c (autocmp_chars): Check lookback count.
16951 (composition_compute_stop_pos): Set cmp_it->lookback.
16952 (composition_reseat_it): Check lookback count.
16953 (struct position_record): New struct.
16954 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
16955 (find_automatic_composition): New function.
16956 (composition_adjust_point): Use find_automatic_composition.
16957
16958 * dispextern.h (struct composition_it): New member lookback.
16959
16960 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
16961
16962 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
16963 if moving by a single line.
16964
16965 2008-09-02 Andreas Schwab <schwab@suse.de>
16966
16967 * xterm.c (x_delete_display): Fix merge error.
16968
16969 * fileio.c (Fexpand_file_name): Remove unused variables.
16970
16971 2008-09-02 Eli Zaretskii <eliz@gnu.org>
16972
16973 * fileio.c (Fexpand_file_name): Copy argument `name' into local
16974 storage on all platforms, not just on DOS_NT.
16975
16976 2008-09-02 Jason Rumney <jasonr@gnu.org>
16977
16978 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
16979 Ensure mouse is not grabbed after menu is finished.
16980
16981 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
16982
16983 * xfaces.c (Finternal_set_alternative_font_family_alist)
16984 (Finternal_set_alternative_font_registry_alist): Properly copy
16985 entire alist structure.
16986
16987 2008-09-01 Kenichi Handa <handa@m17n.org>
16988
16989 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
16990 representative chars of the script is a vector.
16991 (ftfont_list): Handle the case where the representative chars of
16992 the script is a vector.
16993
16994 * character.c (syms_of_character): Docstring of
16995 script-representative-chars fixed.
16996
16997 2008-08-31 Eli Zaretskii <eliz@gnu.org>
16998
16999 * msdos.c (BUILD_CHAR_GLYPH): New macro.
17000 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
17001 the menu. Allocate larger buffer for `text', to account for
17002 possible ^C characters.
17003
17004 2008-08-31 Martin Rudalics <rudalics@gmx.at>
17005
17006 * xdisp.c (prepare_menu_bars): Don't call
17007 Vwindow_size_change_functions with arg Qt.
17008
17009 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
17010
17011 * font.h (font_range):
17012 * fileio.c (report_file_error):
17013 * composite.c (composition_update_it): Yet another int/Lisp_Object
17014 mixup (YAILOM).
17015
17016 2008-08-30 Glenn Morris <rgm@gnu.org>
17017
17018 * data.c (Fmake_variable_frame_local): Doc fix.
17019
17020 * frame.c (Fmodify_frame_parameters): Doc fix.
17021
17022 2008-08-30 Eli Zaretskii <eliz@gnu.org>
17023
17024 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
17025 needed by GetTokenInformation.
17026 (w32_system_process_attributes): Check return values of all system
17027 APIs.
17028
17029 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
17030 only when the state changes.
17031 (IT_update_begin, IT_update_end): Add termscript trace.
17032
17033 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
17034 clipboard is unavailable. Set dst to NULL if it doesn't point to
17035 malloc'ed data.
17036 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
17037 passing random values to xfree.
17038
17039 * dispnew.c (init_display): Set `tty's association in frame's
17040 parameters alist to the name of the terminal device, if that is known.
17041
17042 2008-08-29 Jason Rumney <jasonr@gnu.org>
17043
17044 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
17045
17046 2008-08-29 Eli Zaretskii <eliz@gnu.org>
17047
17048 * composite.c (fill_gstring_body): Avoid compiler warnings.
17049
17050 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
17051 LGLYPH_SET_CODE to avoid compiler warnings.
17052
17053 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
17054
17055 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
17056
17057 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
17058 LGLYPH_SET_CODE.
17059
17060 2008-08-29 Kenichi Handa <handa@m17n.org>
17061
17062 * fileio.c (report_file_error): Don't downcase the first character
17063 of errstring if it is still unibyte.
17064
17065 2008-08-29 Kenichi Handa <handa@m17n.org>
17066
17067 These changes are to re-implement the automatic composition so
17068 that it doesn't use text properties.
17069
17070 * Makefile.in (ftfont.o): Depend on composite.h.
17071 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
17072
17073 * character.h (Vunicode_category_table): Extern it.
17074
17075 * character.c (Vunicode_category_table): New variable.
17076 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
17077
17078 * chartab.c (optimize_sub_char_table): Perform more greedy
17079 optimization.
17080
17081 * composite.h (enum composition_method):
17082 Delete COMPOSITION_WITH_GLYPH_STRING.
17083 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
17084 (Vcomposition_function_table): Extern it.
17085 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
17086 (composition_gstring_put_cache, composition_gstring_from_id)
17087 (composition_gstring_p, composition_gstring_width)
17088 (composition_compute_stop_pos, composition_reseat_it)
17089 (composition_update_it, composition_adjust_point): Extern them.
17090 (Fcomposition_get_gstring): EXFUN it.
17091
17092 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
17093 (Vcomposition_function_table)
17094 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
17095 (gstring_hash_table, gstring_work, gstring_work_headers):
17096 New variables.
17097 (gstring_lookup_cache, composition_gstring_put_cache)
17098 (composition_gstring_from_id, composition_gstring_p)
17099 (composition_gstring_width, fill_gstring_header)
17100 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
17101 (composition_reseat_it, composition_update_it)
17102 (composition_adjust_point, Fcomposition_get_gstring): New functions.
17103 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
17104 and gstring_work_headers. DEFVAR_LISP composition-function-table.
17105 Defsubr composition_get_gstring.
17106
17107 * dispextern.h (struct glyph): New union u.cmp. Delete the member
17108 cmp_id.
17109 (struct glyph_string): Delete the member gidx. New members
17110 cmp_id, cmp_from, and cmp_to.
17111 (enum it_method): Delete GET_FROM_COMPOSITION.
17112 (struct composition_it): New struct.
17113 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
17114 Delete c, len, cmp_id, cmp_len in u.comp.
17115
17116 * font.h (enum lgstring_indices): Delete it.
17117 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
17118 (enum lglyph_indices): Likewise.
17119 (font_range): Adjust extern.
17120 (font_fill_lglyph_metrics): Extern it.
17121
17122 * font.c (QCf): New variable.
17123 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
17124 (font_prepare_composition): Delete this function.
17125 (font_range): Type and arguments changed.
17126 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
17127 (font_fill_lglyph_metrics): New function.
17128 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
17129 (syms_of_font): DEFSYM QCf. Delete defsubr for
17130 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
17131 Defsubr Sfont_shape_gstring.
17132
17133 * fontset.h (font_for_char): Extern it.
17134
17135 * fontset.c (font_for_char): New function.
17136
17137 * ftfont.c: Include composite.h.
17138 (ftfont_resolve_generic_family): Add langset "en" to pattern.
17139 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
17140
17141 * indent.c: Include composite.h and dispextern.h.
17142 (check_composition): Delete this function.
17143 (scan_for_column): Handle composition by
17144 composition_compute_stop_pos, composition_reseat_it, and
17145 composition_update_it.
17146 (compute_motion): Likewise.
17147 (Fvertical_motion): Fix checking of composition.
17148
17149 * keyboard.c (adjust_point_for_property): Check composition by
17150 composition_adjust_point.
17151
17152 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
17153 struct glyph_string.
17154
17155 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
17156 (append_composite_glyph): Adjust for the change of struct it and
17157 struct glyph.
17158 (produce_composite_glyph): Likewise.
17159
17160 * w32term.c (x_draw_composite_glyph_string_foreground):
17161 Adjust for the change of struct glyph_string.
17162 (x_draw_glyph_string): Likewise.
17163
17164 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
17165 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
17166
17167 * xdisp.c: Include font.h.
17168 (it_props): Delete the entry for Qauto_composed.
17169 (init_iterator): Initialize it->cmp_it.id to -1.
17170 (compute_stop_pos): Call composition_compute_stop_pos.
17171 (face_before_or_after_it_pos): Adjust for the change of struct it.
17172 (handle_auto_composed_prop): Delete it.
17173 (handle_composition_prop): Handle only static composition.
17174 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
17175 from xassert. Initialize it->cmp_it.stop_pos.
17176 (push_it): Adjust for the change of struct it.
17177 (pop_it): Likewise.
17178 (get_next_element): Delete next_element_from_composition.
17179 (CHAR_COMPOSED_P): New macro.
17180 (get_next_display_element): For automatic composition, get a face
17181 from the font in the glyph-string.
17182 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
17183 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
17184 (next_element_from_string): Check if the character at the current
17185 position is composed by CHAR_COMPOSED_P.
17186 (next_element_from_buffer): Likewise.
17187 (next_element_from_composition): Adjust for the change of struct it.
17188 Update it->cmp_it.
17189 (dump_glyph): Adjust for the change of struct glyph.
17190 (fill_composite_glyph_string): Adjust for the change of struct
17191 it and struct glyph. Don't handle automatic composition here.
17192 (fill_gstring_glyph_string): New function.
17193 (x_get_glyph_overhangs): Handle automatic composition.
17194 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
17195 (BUILD_GSTRING_GLYPH_STRING): New macro.
17196 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
17197 automatic composition.
17198 (append_composite_glyph): Adjust for the change of struct it and
17199 struct glyph.
17200 (x_produce_glyphs): Adjust for the change of struct it.
17201
17202 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
17203 the change of struct glyph_string.
17204 (x_draw_glyph_string): Likewise.
17205
17206 2008-08-29 Glenn Morris <rgm@gnu.org>
17207
17208 * buffer.c (word-wrap): Doc fix.
17209 * xdisp.c (truncate-partial-width-windows): Doc fix.
17210 Increase default to 50.
17211
17212 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
17213
17214 * xdisp.c (update_tool_bar_unwind): New function.
17215 (update_tool_bar): Temporarily set selected frame before building
17216 tool-bar items.
17217
17218 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
17219
17220 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
17221 snprintf, respectively.
17222 (xd_append_arg): Convert strings with Fstring_make_unibyte.
17223
17224 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
17225
17226 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
17227 LDFLAGS to GNUstep CC invocation.
17228
17229 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
17230
17231 * indent.c (Fvertical_motion): Revert last change. Handle the
17232 general case where we are moving forward, and PT spans multiple
17233 screen lines.
17234
17235 * eval.c (find_handler_clause): Temporarily increase
17236 max-lisp-eval-depth while printing the backtrace buffer, to
17237 guarantee that help-mode code can run.
17238
17239 2008-08-27 Eli Zaretskii <eliz@gnu.org>
17240
17241 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
17242 colors under -rv.
17243 (IT_set_frame_parameters): Don't swap foreground and background
17244 colors if `(reverse . t)' is present in the frame properties.
17245 (internal_terminal_init): Call init_frame_faces only for the
17246 initial frame.
17247
17248 2008-08-27 Andreas Schwab <schwab@suse.de>
17249
17250 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
17251
17252 2008-08-27 Andreas Schwab <schwab@suse.de>
17253
17254 * search.c (search_buffer): Set char_base to zero only at the end.
17255
17256 2008-08-27 Kenichi Handa <handa@m17n.org>
17257
17258 * fileio.c (report_file_error): Fix handling of multibyte error string.
17259
17260 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
17261
17262 * xterm.c (x_term_init): Temporarily hide the partially
17263 initialized terminal while calling vendor-specific-keysyms.
17264
17265 2008-08-26 Eli Zaretskii <eliz@gnu.org>
17266
17267 * msdos.c (internal_terminal_init): Most initializations done only
17268 once, especially initial_screen_colors[] and termscript open.
17269
17270 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
17271
17272 * eval.c (Fcondition_case): Doc fix.
17273
17274 * widgetprv.h (EmacsFramePart): Change font member to the new font
17275 struct.
17276
17277 * widget.c: Include character.h and font.h for XSETFONT.
17278 (setup_frame_gcs): Compute X font id from font struct, just once.
17279
17280 2008-08-26 Eli Zaretskii <eliz@gnu.org>
17281
17282 * term.c (get_named_tty): Fix last change.
17283
17284 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
17285
17286 * indent.c (Fvertical_motion): If moving forward starting from a
17287 multi-line string, move the iterator to the last line of that string.
17288
17289 2008-08-25 Eli Zaretskii <eliz@gnu.org>
17290
17291 * frame.c (do_switch_frame): Mark previously displayed frame as
17292 obscured for FRAME_MSDOS_P frames as well.
17293
17294 2008-08-24 Eli Zaretskii <eliz@gnu.org>
17295
17296 * frame.c (make_terminal_frame): Initialize f->terminal,
17297 f->terminal->reference_count, and scroll bars on MS-DOS as well.
17298 Set the top frame to newly created frame.
17299 (Fmake_terminal_frame): Reuse the_only_display_info.
17300
17301 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
17302 estimating available memory.
17303
17304 2008-08-23 David Reitter <david.reitter@gmail.com>
17305
17306 * nsterm.m (ns_draw_window_cursor): Don't call
17307 NSDisableScreenUpdates and NSEnableScreenUpdates on
17308 non-NS_IMPL_COCOA systems.
17309
17310 2008-08-23 Andreas Schwab <schwab@suse.de>
17311
17312 * process.c (procfs_system_process_attributes): Fix use of
17313 uninitialized variables.
17314
17315 2008-08-23 Eli Zaretskii <eliz@gnu.org>
17316
17317 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
17318
17319 * dispnew.c (init_display): Remove MS-DOS specific conditions for
17320 calling tty-set-up-initial-frame-faces.
17321
17322 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
17323 Allow MSDOS frames along with X frames.
17324
17325 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
17326 addition to output_termcap.
17327
17328 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
17329
17330 * termchar.h (FRAME_TTY): Support output_msdos_raw.
17331 (struct tty_display_info) [MSDOS]: Add fields related to mouse
17332 highlight.
17333
17334 * process.c [!subprocesses]: Define QCname.
17335 (syms_of_process): Intern and staticpro it.
17336
17337 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
17338 Adjust for changes in encoding/decoding routines.
17339 Use encode_coding_object and decode_coding_object instead of
17340 encode_coding and decode_coding.
17341
17342 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
17343
17344 * dosfns.c: Include frame.h before termhooks.h.
17345 (dos_cleanup): Use CURTTY ()->termscript instead of a global
17346 variable termscript.
17347
17348 * s/msdos.h (USER_FULL_NAME): Define.
17349 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
17350
17351 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
17352 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
17353 pw->pw_gecos.
17354
17355 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
17356 SELECTED_FRAME as additional (1st) argument.
17357 (tty_read_avail_input): Handle output_msdos_raw in
17358 addition to output_termcap.
17359
17360 * msdos.c: Include frame.h before termhooks.h.
17361 (mouse_on, mouse_off, mouse_moveto, mouse_init)
17362 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
17363 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
17364 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
17365 (IT_set_terminal_modes, IT_reset_terminal_modes)
17366 (IT_set_frame_parameters): Use tty->termscript instead of a global
17367 variable termscript.
17368 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
17369 global variable terminal_coding. Don't refer to
17370 Vnonascii_translation_table.
17371 (internal_terminal_init): Set Vwindow_system in current_kboard.
17372 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
17373 Announce date and time of session start, if termscript is open.
17374 Don't zero out the_only_display_info (it is done in
17375 term.c:init_tty). Open termscript only of not already open.
17376 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
17377 here instead of dos_ttraw. Don't initialize display if this is an
17378 initial tty. Don't set FRAME_FONT.
17379 (Vwindow_system_version): Bump to 23.
17380 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
17381 is available, set up mouse_position_hook.
17382 (dos_ttraw, IT_set_terminal_modes): If called with initial
17383 terminal, do nothing.
17384 (IT_set_frame_parameters): Handle the Qtty_type frame
17385 parameter by calling internal_terminal_init.
17386 (dos_set_window_size, show_mouse_face)
17387 (clear_mouse_face, IT_note_mode_line_highlight)
17388 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
17389 (dos_rawgetc): Use tty_display_info instead of x_display_info.
17390 (initialize_msdos_display): New function.
17391 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
17392 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
17393 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
17394 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
17395 Accept additional argument: a pointer to a frame. Update all callers.
17396 (request_sigio, unrequest_sigio): Don't define, now defined on
17397 sysdep.c.
17398 (IT_write_glyphs): Rewrite to use encode_terminal_code.
17399
17400 * term.c [MSDOS]: Include msdos.h.
17401 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
17402 conditional to DOS_NT. Allow only one call to this function in a
17403 session. Don't allocate a new struct tty_display_info; instead,
17404 reuse the_only_display_info. Call get_tty_size to get screen
17405 dimensions. Call init_baud_rate to set bad_rate.
17406 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
17407 (Fsuspend_tty) [MSDOS]: Don't close input and output.
17408 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
17409 (get_tty_terminal, get_named_tty, Ftty_type)
17410 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
17411 output_termcap.
17412 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
17413 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
17414 only when subprocesses are supported.
17415
17416 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
17417 f->output_data.x.
17418 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
17419 terminal devices.
17420
17421 * msdos.h: Remove definition of struct x_display_info and struct
17422 x_output.
17423 (FRAME_FONT): Use output_data.tty.
17424 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
17425 (struct x_display_info): Rename from display_info. Update all users in
17426 msdos.c.
17427 (struct x_output): Remove background_pixel and foreground_pixel.
17428 (the_only_display_info): Rename from the_only_x_display.
17429 (dos_ttraw): Update prototype.
17430
17431 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
17432 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
17433
17434 2008-08-23 Jason Rumney <jasonr@gnu.org>
17435
17436 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
17437 (fn_TIFFSetDirectory): New library function used.
17438 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
17439 (tiff_load): Use :index to select among multiple images. Set count
17440 property when multiple images exist.
17441 (gif_format): Use :index, not :image.
17442
17443 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
17444
17445 * xdisp.c (try_scrolling): Check INT_MAX instead of
17446 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
17447 to obtain INT_MAX.
17448
17449 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
17450
17451 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
17452
17453 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
17454
17455 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
17456 GNUstep library location.
17457
17458 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
17459
17460 * xfaces.c (x_update_menu_appearance): Check validity of menu font
17461 before using it.
17462
17463 * puresize.h (BASE_PURESIZE): Increase to 1250000.
17464
17465 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
17466
17467 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
17468 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
17469 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
17470 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
17471 (EmacsApp-cursor_blink_handler): Remove declaration.
17472 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
17473 match 01 Feb 2008 changes in xterm.c.
17474 (ns_read_socket): Add cast to avoid warning.
17475 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
17476 GNUstep.
17477
17478 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
17479
17480 * xselect.c (x_get_foreign_selection): Return nil if desired
17481 selection could not be obtained, instead of signalling an error.
17482
17483 2008-08-20 David Reitter <david.reitter@gmail.com>
17484
17485 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
17486 * nsterm.m: Remove ns-specific code for cursor blinking.
17487 (ns_draw_window_cursor): Clear cursor properly rather than
17488 redrawing the area. Respect width of bar cursors.
17489 These changes enable the use of generic blink-cursor-mode and
17490 generic cursor types in NS and support smooth cursor movements (do
17491 not blink off after command).
17492 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
17493 Nextstep, too.
17494
17495 2008-08-19 Kenichi Handa <handa@m17n.org>
17496
17497 * font.c (Vfont_log_deferred): New variable.
17498 (font_add_log): Check Vfont_log_deferred.
17499 (font_deferred_log): New function.
17500
17501 * font.h (font_deferred_log): Extern it.
17502
17503 * fontset.c (reorder_font_vector): Use encoding charset of fonts
17504 for sorting.
17505 (face_for_char): Use deferred log.
17506
17507 2008-08-18 Kenichi Handa <handa@m17n.org>
17508
17509 * fontset.c (face_for_char): Add font log.
17510
17511 * font.c (font_add_log): Add the font properties :script, :lang,
17512 and :otf in the log.
17513
17514 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
17515
17516 * xdisp.c: Remove dead code.
17517 (handle_invisible_prop, next_overlay_string): Defer call to
17518 setup_for_ellipsis.
17519 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
17520
17521 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
17522
17523 * xfaces.c (lookup_derived_face): Properly handle possible zero
17524 return value of get_lface_attributes.
17525 (merge_faces): Don't tell lookup_derived_face to signal an error
17526 if face is not found.
17527
17528 * dired.c (Fdirectory_files): Doc fix.
17529
17530 * process.c (make_process): Initialize kill_without_query struct
17531 member.
17532
17533 2008-08-15 Eli Zaretskii <eliz@gnu.org>
17534
17535 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
17536 Alternative calculation of totphys for Visual Studio 6.
17537
17538 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
17539
17540 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
17541 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
17542 All users changed.
17543 (stat): Only root directory passed to GetDriveType. Allow RAM
17544 disk as well as local fixed disk when w32-get-true-file-attributes
17545 is set to `local'.
17546 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
17547 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
17548 (w32_cached_id, w32_add_to_cache): New functions.
17549 (get_name_and_id): Look account names in the cache before calling
17550 lookup_account_sid.
17551 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
17552 New initialization flags.
17553 (globals_of_w32): Initialize them to zero.
17554 (w32_system_process_attributes): Use w32_cached_id and
17555 w32_add_to_cache.
17556
17557 2008-08-14 Lawrence Mitchell <wence@gmx.li>
17558
17559 * lread.c (Fread_char, Fread_char_exclusive): If no character
17560 event is read before timeout is reached, return nil, rather than
17561 converting to a number.
17562
17563 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
17564
17565 * fns.c (use_dialog_box): Doc fix.
17566
17567 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
17568 on OS X.
17569
17570 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
17571
17572 * frame.c (Qns_parse_geometry): New var.
17573 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
17574
17575 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
17576
17577 * xdisp.c (x_produce_glyphs): Handle the case when font has no
17578 space character in calculating tabs.
17579
17580 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
17581
17582 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
17583
17584 2008-08-10 Glenn Morris <rgm@gnu.org>
17585
17586 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
17587 silence gcc "limited range of data type" warnings in some
17588 make_fixnum_or_float calls.
17589
17590 2008-08-09 Eli Zaretskii <eliz@gnu.org>
17591
17592 * w32.c (w32_system_process_attributes): If the process does not
17593 exist, return nil.
17594
17595 * w32.c: Include thelp32.h, psapi.h and coding.h.
17596 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
17597 declarations.
17598 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
17599 (Process32Next_Proc): New typedefs.
17600 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
17601 (g_b_init_process32_next, g_b_init_open_thread_token)
17602 (g_b_init_impersonate_self, g_b_init_revert_to_self)
17603 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
17604 (g_b_init_get_process_working_set_size)
17605 (g_b_init_global_memory_status_ex): New static variables.
17606 (globals_of_w32): Initialize them.
17607 (create_toolhelp32_snapshot, process32_first, process32_next)
17608 (open_thread_token, impersonate_self, revert_to_self)
17609 (get_process_memory_info, get_process_working_set_size)
17610 (global_memory_status, global_memory_status_ex): New wrapper
17611 functions.
17612 (w32_list_system_processes, w32_system_process_attributes)
17613 (enable_privilege, restore_privilege, ltime, process_times):
17614 New functions.
17615 (convert_time_raw): New function.
17616 (convert_time): Remove conversion of FILETIME into time in 100
17617 nsec units, call convert_time_raw instead.
17618
17619 * process.h (w32_list_system_processes, w32_system_process_attributes):
17620 Add prototypes.
17621 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
17622 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
17623 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
17624 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
17625
17626 * process.c (Fsystem_process_attributes): Doc fix.
17627
17628 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
17629
17630 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
17631 a continued multi-char glyph; if so, advance to the actual glyph.
17632
17633 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
17634
17635 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
17636
17637 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
17638 (.m.o): Use it.
17639 * config.in: Regenerate.
17640
17641 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
17642
17643 * xdisp.c (redisplay_window): Revert last change.
17644 (try_window): Check bottom scroll margin too.
17645
17646 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
17647
17648 * config.in: Regenerate.
17649
17650 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
17651 -list-load-path-shadows'.
17652 (nsgui.h): Reduce number of things depending on it.
17653
17654 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
17655
17656 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
17657 instead of window-end which does the wrong thing at eob.
17658 (try_cursor_movement): Minor optimization.
17659 (redisplay_window): If scroll margin is defined, don't assume
17660 window doesn't need scrolling.
17661
17662 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
17663
17664 * config.in: Regenerate.
17665
17666 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
17667 (mostlyclean): Don't delete *.d under NS.
17668
17669 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
17670
17671 2008-08-06 Kenichi Handa <handa@m17n.org>
17672
17673 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
17674
17675 2008-08-06 Andreas Schwab <schwab@suse.de>
17676
17677 * config.in: Regenerate.
17678
17679 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
17680
17681 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
17682 forcing a window start.
17683
17684 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
17685 (auto_save_1): Update modtime when auto-save-list-file-name is on.
17686
17687 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17688
17689 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
17690 argument.
17691
17692 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
17693
17694 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
17695 <scroll-down-aggressively, before-change-functions>:
17696 <after-change-functions>: Reflow docstrings.
17697
17698 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17699 Ken Raeburn <raeburn@gnu.org>
17700
17701 Dock menu customization, based on a patch by Ken Raeburn, plus some
17702 other fixes.
17703 * nsmenu.m (dockMenu): New variable.
17704 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
17705
17706 * nsterm.h (dockMenu): Declare.
17707
17708 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
17709 (ns_term_init): Initialize dockMenu.
17710 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
17711 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
17712 left.
17713
17714 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
17715
17716 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
17717
17718 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
17719
17720 * config.in: Regenerate.
17721
17722 2008-08-04 Seiji Zenitani <zenitani@mac.com>
17723
17724 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
17725
17726 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
17727
17728 * nsterm.h (find_and_call_menu_selection): Fix prototype.
17729
17730 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17731
17732 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
17733
17734 * keyboard.h: Comment an #endif.
17735
17736 * lisp.h (have_menus_p): Adjust comment.
17737
17738 * menu.c (find_and_return_menu_selection): Fix comparison with
17739 client_data.
17740
17741 * nsmenu.m (popup_activated_flag): New variable.
17742 (popup_activated): New function.
17743 (menu-or-popup-active-p): New exported lisp definition.
17744 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
17745 when popup done.
17746 (ns_popup_dialog): Set popup_activated_flag.
17747
17748 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
17749 version for GNUstep (handled by conditional typedef in nsterm.m).
17750 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
17751 in rgb.txt).
17752
17753 * process.c (init_process): Use DARWIN_OS, not DARWIN.
17754
17755 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
17756
17757 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
17758
17759 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
17760 shortcircuit if popup_activated like GTK and X toolkit.
17761
17762 * m/inter386.h: Change DARWIN to DARWIN_OS.
17763
17764 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
17765 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
17766 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood.
17767 Expand comment on NO_SOCK_SIGIO.
17768
17769 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
17770
17771 * nsterm.m (windowDidResize): Remove stopModal call.
17772
17773 2008-08-03 Andreas Schwab <schwab@suse.de>
17774
17775 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
17776 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
17777
17778 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
17779
17780 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
17781 Don't use uninitialized pointer variable when using getrlimit.
17782
17783 2008-08-02 Jason Rumney <jasonr@gnu.org>
17784
17785 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
17786
17787 2008-08-02 Eli Zaretskii <eliz@gnu.org>
17788
17789 * alloc.c (NSTATICS): Bump to 0x640.
17790
17791 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
17792
17793 * lisp.h: Add prototype for directory_files_internal.
17794
17795 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
17796 New functions.
17797 (syms_of_process): Defsubr them. Add initializations for various
17798 Q* symbols used in procfs_system_process_attributes.
17799 (procfs_list_system_processes, procfs_system_process_attributes)
17800 [HAVE_PROCFS]: New functions.
17801 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
17802 (procfs_get_total_memory): New functions.
17803
17804 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
17805
17806 * xfaces.c (Fx_load_color_file): Fix previous change;
17807 it is #ifdef WINDOWSNT, not WINDOWS_NT.
17808
17809 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
17810
17811 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
17812
17813 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17814
17815 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
17816
17817 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
17818
17819 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
17820
17821 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
17822 define NSApplicationDelegateReplySuccess.
17823 (EmacsView -converstationIdentifier): Use long instead of
17824 NSInteger for GNUstep, since it doesn't have NSInteger.
17825
17826 * xmenu.c: Revert last change.
17827
17828 * keyboard.h: Fix last change.
17829
17830 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
17831
17832 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
17833 on Windows.
17834
17835 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17836
17837 Warning clearing and clean-up in NS port.
17838 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
17839 Add prototypes.
17840 * nsgui.h (FACE_DEFAULT): Remove, unused.
17841 (XGCValues): Change colors to unsigned long.
17842 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
17843 nsterm.m.
17844 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
17845 (ns_list_fonts): Remove, unused.
17846 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
17847 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
17848 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
17849 (nsfont_draw): Compare face colors to 0, not nil.
17850 * nsmenu.m (struct widget_value): Drop unneeded declaration.
17851 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
17852 (-addSubmenuWithTitle:): Use NSMenuItem class.
17853 (ns_popup_menu): Use NO, not NULL, for enabled setting.
17854 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
17855 (ns_clip_to_row): Make gc arg a BOOL.
17856 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
17857 ns_clip_to_row() call.
17858 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
17859 used). Cast FRAME_FONT assignments.
17860 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
17861 (ns_string_to_lispmod): Change arg to const char.
17862 (ns_term_init): Use NSMenuItem class.
17863 (EmacsApp -openFile:): Move to different section of file.
17864 (EmacsApp -application:openFiles:): Don't return a value, call
17865 -replyToOpenOrPrint:.
17866 (EmacsView -keyDown:): Fix up cast.
17867 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
17868 (EmacsView -menuDown:): Cast tag in call to
17869 find_and_call_menu_selection().
17870 (ns_list_fonts): Remove, unused.
17871 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
17872 (ns_fontname_to_xlfd): Make static.
17873 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
17874 Remove prototypes (now in keyboard.h).
17875 (next_menubar_widget_id): Remove, unused.
17876 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
17877 Remove prototypes (now in keyboard.h).
17878 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
17879
17880 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
17881
17882 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
17883 (floatfns.o): Depend on syssignal.h.
17884 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
17885
17886 * systty.h: Fix previous change that removed BSD_TERMIOS.
17887 Add comments to #ifdefs.
17888
17889 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17890
17891 * w32fns.c (w32-load-color-file): Remove.
17892 (x-open-connection): Use renamed Fx_load_color_file.
17893 * xfaces.c (x-load-color-file): Add.
17894 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
17895 Emacs.clr.
17896 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
17897
17898 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
17899
17900 * dbusbind.c (Fdbus_call_method_asynchronously)
17901 (Fdbus_method_error_internal): New defuns.
17902 (xd_read_message): Handle also reply messages.
17903 (Vdbus_registered_functions_table): Extend docstring.
17904
17905 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
17906
17907 * keyboard.c (gobble_input): Fix previous change.
17908
17909 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
17910
17911 * bitmaps/README:
17912 * xfns.c:
17913 * termcap.c:
17914 * term.c:
17915 * syswait.h:
17916 * systty.h:
17917 * systime.h:
17918 * syssignal.h:
17919 * sysdep.c:
17920 * process.h:
17921 * process.c:
17922 * print.c:
17923 * ndir.h:
17924 * lread.c:
17925 * keyboard.c:
17926 * getpagesize.h:
17927 * floatfns.c:
17928 * fileio.c:
17929 * emacs.c:
17930 * doc.c:
17931 * dispnew.c:
17932 * dired.c:
17933 * data.c:
17934 * callproc.c:
17935 * buffer.c:
17936 * README:
17937 * Makefile.in:
17938 * s/template.h:
17939 * s/msdos.h:
17940 * m/vax.h: Remove VMS support.
17941 * s/vms.h:
17942 * vlimit.h:
17943 * uaf.h:
17944 * temacs.opt:
17945 * param.h:
17946 * ioctl.h: Remove file.
17947
17948 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
17949
17950 * s/ms-w32.h (MULTI_KBOARD): Remove.
17951 * xterm.c:
17952 * xselect.c:
17953 * xfns.c:
17954 * window.c:
17955 * w32term.c:
17956 * w32fns.c:
17957 * terminal.c:
17958 * termhooks.h:
17959 * term.c:
17960 * sysdep.c:
17961 * keyboard.h:
17962 * keyboard.c:
17963 * frame.h:
17964 * frame.c:
17965 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
17966 * config.in: Regenerate.
17967
17968 2008-07-30 Jason Rumney <jasonr@gnu.org>
17969
17970 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
17971
17972 * w32font.c (w32font_encode_char): Leave as unicode if in range.
17973 (w32font_open_internal): Get unicode version of textmetrics.
17974 Don't enable or disable glyph indices here.
17975 (w32font_open): Disable use of glyph indices.
17976
17977 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
17978
17979 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
17980
17981 * minibuf.c (Vread_buffer_function): Doc fix.
17982
17983 2008-07-30 John Paul Wallington <jpw@pobox.com>
17984
17985 * minibuf.c (read_buffer_completion_ignore_case): New var.
17986 (Fread_buffer): Use it.
17987
17988 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
17989
17990 * systty.h (sensemode): Remove empty #if. Remove reference to
17991 BSD_TERMIOS, unused.
17992
17993 * sysdep.c: Remove reference to DGUX.
17994 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
17995
17996 * config.in: Regenerate.
17997
17998 2008-07-30 Jason Rumney <jasonr@gnu.org>
17999
18000 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
18001
18002 2008-07-29 Jason Rumney <jasonr@gnu.org>
18003
18004 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
18005 is populated.
18006 (uniscribe_encode_char): Always use uniscribe.
18007 Avoid using context if cache is populated.
18008
18009 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
18010
18011 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
18012 open menu.
18013
18014 * gtkutil.c (menu_nav_ended): Remove.
18015 (create_menus): Remove signal connect for menu_nav_ended.
18016
18017 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
18018
18019 * xdisp.c (redisplay_window): Check return value of
18020 compute_window_start_on_continuation_line before forcing a window
18021 start.
18022
18023 2008-07-28 Jason Rumney <jasonr@gnu.org>
18024
18025 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
18026
18027 * w32term.c (w32_enable_unicode_output, cleartype_active):
18028 Remove obsolete display options.
18029 (x_draw_glyph_string_background): Don't use old cleartype_active
18030 workaround.
18031 (w32_initialize): Remove cleartype_active initialization.
18032 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
18033
18034 2008-07-28 Andreas Schwab <schwab@suse.de>
18035
18036 * lisp.h (init_weak_hash_tables, syms_of_font)
18037 (xd_read_queued_messages, syms_of_dbusbind): Declare.
18038 (remove_hash_entry): Don't declare.
18039 * eval.c (maybe_call_debugger): Make static and move before use.
18040 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
18041 * xdisp.c: Include "gtkutil.h" if USE_GTK.
18042 * xterm.h (x_set_frame_alpha): Declare.
18043
18044 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
18045
18046 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
18047 (create_menus): Connect selection-done to menu_nav_ended.
18048
18049 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
18050
18051 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
18052 Set Vx_resource_name to a fallback. Replace read of 'buffered'
18053 parameter with read of 'alpha' one.
18054 (Qns_frame_parameter): Remove.
18055 * nsselect.m (selection-coding-system)
18056 (next-selection-coding-system, Vselection_coding_system)
18057 (Vnext_selection_coding_system): Drop.
18058
18059 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
18060
18061 * nsfns.m (do-applescript, do_applescript): Rename to
18062 ns-do-applescript, ns_do_applescript, and move within file.
18063
18064 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
18065
18066 Remove support for Mac Carbon.
18067 * mactoolbox.c:
18068 * macterm.h:
18069 * macterm.c:
18070 * macselect.c:
18071 * macmenu.c:
18072 * macgui.h:
18073 * macfns.c:
18074 * mac.c: Remove file.
18075 * s/darwin.h:
18076 * m/intel386.h:
18077 * xfaces.c:
18078 * xdisp.c:
18079 * window.c:
18080 * tparam.c:
18081 * termhooks.h:
18082 * termcap.c:
18083 * term.c:
18084 * syssignal.h:
18085 * sysselect.h:
18086 * sysdep.c:
18087 * process.c:
18088 * lread.c:
18089 * lisp.h:
18090 * keyboard.c:
18091 * image.c:
18092 * fringe.c:
18093 * frame.h:
18094 * frame.c:
18095 * fontset.c:
18096 * font.h:
18097 * font.c:
18098 * fns.c:
18099 * fileio.c:
18100 * emacs.c:
18101 * dispnew.c:
18102 * dispextern.h:
18103 * config.in:
18104 * atimer.c:
18105 * Makefile.in: Remove code for Carbon.
18106
18107 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18108
18109 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
18110
18111 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18112
18113 * macterm.h (kCGBitmapByteOrder32Host): New define for
18114 non-universal SDKs.
18115
18116 * image.c (mac_create_cg_image_from_image, image_load_image_io)
18117 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
18118
18119 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
18120 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
18121
18122 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
18123
18124 * w32inevt.c: Include dispextern.h.
18125
18126 2008-07-26 Andreas Schwab <schwab@suse.de>
18127
18128 * print.c (print_object): Fix off-by-one in last change.
18129
18130 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
18131
18132 * term.c (syms_of_term): Don't initialize default_orig_pair,
18133 default_set_foreground and default_set_background on Windows.
18134
18135 2008-07-25 Jason Rumney <jasonr@gnu.org>
18136
18137 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
18138 ScriptItemize. Clean up return value checking. Remove unused
18139 variables.
18140 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
18141 shaping engine.
18142
18143 * w32font.c (w32font_has_char): Handle the case where we can't
18144 determine the script for a character.
18145
18146 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
18147
18148 * term.c (syms_of_term): Initialize default_orig_pair,
18149 default_set_foreground, and default_set_background.
18150
18151 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
18152 clash (bug#86).
18153 (getloadavg): Callers changed.
18154
18155 * image.c (svg_load_image): Fix last change.
18156 (svg_load_image): Use rsvg_handle_get_dimensions to check that
18157 image size is valid. Use g_object_unref instead of deprecated
18158 rsvg_handle_free to free rsvg handle.
18159 (x_from_xcolors): Don't initialize pixmap (silence compiler).
18160
18161 2008-07-25 Jason Rumney <jasonr@gnu.org>
18162
18163 * w32font.c (w32font_encode_char): Encode characters outside BMP as
18164 surrogates before looking up glyph index.
18165 (w32font_text_extents): Encode as surrogates if falling back to
18166 functions that need UTF-16 wide chars.
18167
18168 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
18169 BMP as surrogates before looking up glyph index.
18170
18171 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
18172
18173 * image.c (svg_load_image): Check for failure in return value of
18174 rsvg_handle_get_pixbuf. Free rsvg handle when done.
18175
18176 2008-07-25 Jason Rumney <jasonr@gnu.org>
18177
18178 * w32font.c (Fx_select_font): Reverse sense of second arg.
18179
18180 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
18181
18182 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
18183 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
18184
18185 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
18186 (PURESIZE): Use it.
18187
18188 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
18189
18190 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
18191 * m/alpha.h (TEXT_END):
18192 * m/ibmrs6000.h (TEXT_END):
18193 * m/macppc.h (TEXT_END):
18194 * s/darwin.h (TEXT_END):
18195 * s/msdos.h (TEXT_END): Remove, unused.
18196 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
18197 * s/cygwin.h: Remove comment.
18198
18199 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
18200 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
18201 * m/intel386.h (DOT_GLOBAL_START):
18202 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
18203 (USG): Remove, file not used on USG platforms.
18204
18205 * Makefile.in (HAVE_X11): Remove empty #else.
18206
18207 2008-07-24 Andreas Schwab <schwab@suse.de>
18208
18209 * fileio.c (Finsert_file_contents): Properly adjust undo list
18210 after format conversion.
18211
18212 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
18213
18214 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
18215 (menu_nav_ended): Remove.
18216 (create_menus): Remove signal connect for menu_nav_ended.
18217 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
18218 create_menus.
18219 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
18220
18221 2008-07-23 Jason Rumney <jasonr@gnu.org>
18222
18223 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
18224 with opened font.
18225 (w32font_open): Set font type to gdi.
18226
18227 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
18228
18229 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
18230
18231 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
18232 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
18233 defines it.
18234 * unexec.c (ADDR_CORRECT): Define unconditionally.
18235
18236 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
18237
18238 * unexec.c: Remove code depending on !COFF and USG, the file is
18239 not used for such systems.
18240
18241 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
18242 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
18243 (LD_SWITCH_SYSTEM_1): Remove, update users.
18244
18245 * s/darwin.h (DATA_END):
18246 * m/intel386.h (DATA_END):
18247 * m/ibmrs6000.h (DATA_END):
18248 * m/alpha.h (DATA_END): Remove, unused.
18249
18250 * config.in: Regenerate.
18251 * s/ms-w32.h (subprocesses): Define unconditionally.
18252 * s/template.h (subprocesses): Update comment.
18253 * s/vms.h (subprocesses):
18254 * s/usg5-4.h (subprocesses):
18255 * s/hpux10-20.h (subprocesses):
18256 * s/gnu-linux.h (subprocesses):
18257 * s/cygwin.h (subprocesses):
18258 * s/bsd-common.h (subprocesses):
18259 * s/aix4-2.h (subprocesses):
18260 * s/darwin.h (subprocesses): Do not define, defined by default now.
18261
18262 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
18263 Remove all references.
18264 (temacs): Add GNUstep specific ld flags.
18265
18266 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
18267 similarly to what X does.
18268
18269 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
18270
18271 * nsfns.m (x-list-fonts): Remove.
18272 (syms_of_nsfns): Drop the x-list-fonts declaration.
18273 * nsterm.m: Get rid of remaining "//" comments.
18274
18275 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
18276
18277 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
18278
18279 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
18280 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
18281 (Fns_own_selection_internal, Fx_disown_selection_internal)
18282 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
18283
18284 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
18285 ... */' style of docstrings. Doc fixes.
18286
18287 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
18288
18289 * terminfo.c (UP, BC, PC): Undo previous change.
18290
18291 * nsfns.m: Rename ns prefixed functions/variables to the
18292 corresponding x versions. Update references.
18293
18294 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
18295
18296 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
18297
18298 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
18299
18300 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
18301 Remove forwarding functions.
18302 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
18303 non-static.
18304 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
18305 non-static.
18306 (ns_frame_parm_handlers): Use the new names.
18307 (syms_of_nsfns): Move to the end of file.
18308
18309 * nsterm.m (syms_of_nsterm): Move to the end of file.
18310
18311 * dispnew.c (init_display): Remove code for X10.
18312
18313 2008-07-22 Jason Rumney <jasonr@gnu.org>
18314
18315 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
18316 bare drive.
18317
18318 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
18319
18320 * nsterm.m (syms_of_nsterm): Remove debugging println.
18321
18322 2008-07-22 David Reitter <david.reitter@gmail.com>
18323
18324 * nsfns.m (do_applescript, F_do_applescript): NS version of the
18325 Carbon implementation of the same functionality: execute arbitrary
18326 AppleScript code.
18327
18328 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
18329
18330 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
18331 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
18332 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
18333 (Fx_display_mm_height, Fx_display_mm_width)
18334 (Fx_display_backing_store, Fx_display_visual_class)
18335 (Fx_display_save_under, Fx_open_connection)
18336 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
18337 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
18338 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
18339 (Fx_display_pixel_width, Fx_display_pixel_height)
18340 (Fx_display_usable_bounds, Fx_display_planes)
18341 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
18342 ... */' style of docstrings.
18343
18344 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
18345
18346 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
18347 on this platform.
18348 (mips):
18349 * m/iris4d.h (mips): Do not define.
18350 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
18351
18352 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
18353
18354 * image.c:
18355 * nsfns.m:
18356 * nsselect.m:
18357 * nsterm.h:
18358 * nsterm.m: Rename ns prefixed functions/variables to the
18359 corresponding x versions. Update references.
18360
18361 * m/ibms390x.h (NO_REMAP): Do not undefine.
18362
18363 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
18364
18365 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
18366
18367 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
18368 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
18369 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
18370 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
18371 (Fns_display_mm_height, Fns_display_mm_width)
18372 (Fns_display_backing_store, Fns_display_visual_class)
18373 (Fns_display_save_under, Fns_open_connection)
18374 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
18375 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
18376 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
18377 (Fns_display_pixel_width, Fns_display_pixel_height)
18378 (Fns_display_usable_bounds, Fx_display_planes)
18379 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
18380
18381 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
18382
18383 * print.c (print_object): Check print_depth before searching for
18384 circularities.
18385
18386 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
18387
18388 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
18389 only sprintf.
18390
18391 2008-07-21 Kenichi Handa <handa@m17n.org>
18392
18393 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
18394
18395 2008-07-20 Andreas Schwab <schwab@suse.de>
18396
18397 * syntax.c (find_start_pos, find_start_value)
18398 (find_start_value_byte, find_start_begv, find_defun_start)
18399 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
18400
18401 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
18402
18403 * s/sol2-3.h: Insert contents of s/sol2.h.
18404 (LD_SWITCH_SYSTEM): Remove redundant definition.
18405 * s/sol2.h: Remove, unused.
18406
18407 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
18408
18409 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
18410
18411 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
18412
18413 * Makefile.in (ns_appdir): Fix typo in find command.
18414
18415 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
18416
18417 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
18418
18419 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
18420 added not supported anymore.
18421
18422 * s/usg5-4-2.h (LIBS_SYSTEM):
18423 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
18424
18425 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
18426 * s/lynxos.h (GETPGRP_NO_ARG):
18427 * s/hpux10-20.h (NO_SIOCTL_H):
18428 * s/gnu.h (GETPGRP_NO_ARG):
18429 * s/gnu-linux.h (NO_SIOCTL_H):
18430 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
18431 * s/cygwin.h (GETPGRP_NO_ARG):
18432 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
18433 (C_DEBUG_SWITCH): Remove duplicate definition.
18434
18435 * m/ibms390.h: Remove boilerplate comments.
18436
18437 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
18438
18439 * process.c (HAVE_SERIAL): Consolidate ifdefs.
18440 (wait_reading_process_output): Remove code for SunOS, platform not
18441 supported anymore. Use SOLARIS2 instead of sun.
18442
18443 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18444
18445 * font.c (font_open_by_name): Under NS, default lface height to zero.
18446 (font_open_for_lface): Under NS, set size based on frame fontsize.
18447 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
18448 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
18449
18450 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18451
18452 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
18453 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
18454 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
18455 YES/NO.
18456 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
18457 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
18458 * Makefile.in (clean): Clear out build destination dir.
18459
18460 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18461
18462 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
18463 xterm, xselect.
18464 * lisp.h: Remove declaration of hash_remove.
18465 * nsgui.h: Remove redefinitions of hash_remove.
18466 * fns.c (hash_remove): Rename to hash_remove_from_table.
18467
18468 2008-07-19 Seiji Zenitani <zenitani@mac.com>
18469
18470 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
18471 strdup() the family UTF8String before modifying it.
18472
18473 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18474
18475 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
18476 NS_FACE_BACKGROUND with 0 instead of nil.
18477 * nsfont.m (nsfont_draw): Same.
18478
18479 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
18480
18481 * nsfns.m (ns_set_background_color): Fix crash.
18482
18483 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
18484
18485 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
18486
18487 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
18488
18489 * puresize.h (BASE_PURESIZE): Increase to 1240000.
18490
18491 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18492
18493 * gtkutil.c: Include <config.h> instead of "config.h".
18494
18495 * lisp.h (Foverlay_buffer): Add EXFUN.
18496
18497 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
18498 child process to complete child_setup. Undo 2005-09-21 change.
18499
18500 * s/darwin.h: Mention setsid after vfork.
18501
18502 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18503
18504 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
18505 Depend on macgui.h.
18506
18507 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
18508 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
18509
18510 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
18511 and f19.
18512 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
18513
18514 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
18515 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
18516 Remove enumerators.
18517
18518 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
18519 Check if FACE_FROM_ID returns NULL.
18520
18521 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
18522
18523 * w32inevt.c (change_frame_size): Remove extern declaration.
18524 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
18525 change_frame_size.
18526
18527 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
18528
18529 * getloadavg.c: Revert last change (2008-07-15).
18530
18531 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
18532
18533 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
18534 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
18535 from configure.
18536
18537 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
18538
18539 * s/sol2.h:
18540 * s/sol2-4.h: Reorganize conditionals.
18541
18542 * ecrt0.c: Remove code depending on m68000, not used anymore.
18543
18544 * fns.c (hash_remove): Make static.
18545 * lisp.h (hash_remove): Don't prototype.
18546
18547 * m/ibmrs6000.h:
18548 * m/ibms390x.h:
18549 * m/macppc.h: Remove boilerplate comments.
18550
18551 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
18552 Solaris, which does not need them.
18553
18554 * m/vax.h: Remove comments about unsupported systems.
18555
18556 * s/darwin.h: Reorganize ifdefs.
18557
18558 2008-07-17 Andreas Schwab <schwab@suse.de>
18559
18560 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
18561
18562 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
18563
18564 Use SDATA. Follow coding convention of placing operators at
18565 beginning of next line rather than end of previous line, and placing
18566 spaces around infix operators.
18567
18568 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
18569 in case it was defined already.
18570 USE @GNUSTEP_MAKEFILES@ rather than envvars.
18571 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
18572 ns_default.
18573 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
18574 Lisp_Objects.
18575 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
18576 (ns_defined_color, ns_color_to_lisp): Declare.
18577 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
18578 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
18579 it's accepted even with USE_LISP_UNION_TYPE.
18580 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
18581 (update_frame_tool_bar): Remove apparently obsolete tests for
18582 non-integerness of f->tool_bar_lines.
18583 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
18584 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
18585 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
18586 (nsfont_open): Don't confuse NULL for Qnil.
18587 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
18588 * menu.h (find_and_call_menu_selection):
18589 * menu.c (find_and_call_menu_selection): Use just int for vector size.
18590 (find_and_return_menu_selection): Always return something.
18591 * frame.h: Include dispextern.h for Display_Info.
18592 (display_x_get_resource): Declare.
18593
18594 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
18595
18596 * syntax.c: Remove stdio.h include accidentally introduced in
18597 Emacs.app commit.
18598 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
18599 NS_IMPL_COCOA.
18600 * keyboard.c (handle_async_input, input_available_signal): Remove
18601 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
18602
18603 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
18604
18605 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
18606 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
18607 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
18608 Use SDATA.
18609
18610 * keymap.c: Remove all NS-specific code.
18611 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
18612 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
18613 where_is_preferred_modifier, return a different value depending on how
18614 preferred is the binding.
18615 (where_is_internal): Adjust accordingly.
18616 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
18617 Adjust to new preferred_sequence_p.
18618 (syms_of_keymap): Declare `where-is-preferred-modifier'.
18619 * keyboard.c (parse_solitary_modifier): Not static any more.
18620 * keyboard.h (parse_solitary_modifier): Declare.
18621
18622 2008-07-16 Andreas Schwab <schwab@suse.de>
18623
18624 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
18625 of easymenu.
18626
18627 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
18628
18629 * xdisp.c (move_it_in_display_line): Account for word wrap, so
18630 that we don't move off the line.
18631
18632 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
18633
18634 * keyboard.c (Qsuper): Remove.
18635 (parse_menu_item): Don't call where_is_internal specially for NS.
18636
18637 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
18638
18639 * s/gnu-linux.h: Remove boilerplate comments.
18640
18641 * m/alpha.h (__ELF__): Consolidate conditions.
18642
18643 * m/m68k.h (linux): Use GNU_LINUX instead.
18644 Remove boilerplate comments.
18645
18646 * m/intel386.h: Undo refactoring from previous change.
18647 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
18648 too, remove dead code.
18649 (linux): Use GNU_LINUX instead.
18650
18651 2008-07-16 Jason Rumney <jasonr@gnu.org>
18652
18653 * w32gui.h: Repeat 26 June changes lost by last change.
18654
18655 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
18656
18657 * systty.h: Remove code for Aix on 386, unsupported platform.
18658
18659 * s/ms-w32.h: Remove boilerplate comments.
18660 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
18661
18662 * s/gnu-linux.h (TERM): Remove support.
18663 (HAVE_SYSVIPC): Remove, unused.
18664 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
18665 for this system.
18666
18667 * process.c: Remove support for IRIS, unused.
18668 Remove support for TERM, not relevant anymore.
18669
18670 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
18671 used with the definition.
18672
18673 * s/aix4-2.h (static): Do not undef.
18674
18675 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
18676 only used on Aix.
18677 (HAVE_SYSVIPC): Remove, unused.
18678
18679 * m/hp800.h (CANNOT_DUMP): Do not undef.
18680
18681 * m/alpha.h: Fix comment.
18682
18683 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
18684 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
18685 used by this configuration.
18686 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
18687 * unexec.c: Remove code depending on HPUX and
18688 USG_SHARED_LIBRARIES, not used with this file. Remove code
18689 depending on IRIS, unused. Remove if 0-ed code.
18690
18691 * s/template.h: Remove comments about static.
18692
18693 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
18694 Remove if 0-ed code.
18695 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
18696 were the same as the default.
18697 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
18698 Remove boilerplate comments.
18699 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
18700 (HAVE_SYSVIPC): Remove, unused.
18701 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
18702
18703 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18704 Remove boilerplate comments.
18705 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18706 Remove boilerplate comments.
18707 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18708 Remove boilerplate comments.
18709 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
18710
18711 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
18712 USG systems which do not use DATA_SEG_BITS.
18713 Refactor code. Remove boilerplate comments.
18714
18715 * m/ibms390.h:
18716 * m/m68k.h:
18717 * s/bsd-common.h:
18718 * s/cygwin.h:
18719 * s/darwin.h:
18720 * s/freebsd.h:
18721 * s/gnu.h:
18722 * s/msdos.h: Remove boilerplate comments.
18723
18724 * m/iris4d.h: Remove boilerplate comments and code for systems that
18725 do not use this file.
18726 (IRIS_4D): Remove, unused.
18727
18728 * m/mips.h: Remove boilerplate comments and code for systems that
18729 do not use this file.
18730 (SIGN_EXTEND_CHAR):
18731 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
18732 * unexmips.c: Remove file, unused.
18733
18734 * editfns.c (Fuser_full_name): Replace the only use of
18735 USER_FULL_NAME with its value.
18736 * config.in: Regenerate.
18737
18738 2008-07-16 David Reitter <david.reitter@gmail.com>
18739
18740 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
18741 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
18742
18743 2008-07-16 Glenn Morris <rgm@gnu.org>
18744
18745 * emacs.c (system-type): Doc fix.
18746
18747 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
18748
18749 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
18750 If the cache doesn't work, let's fix it, rather than work around it.
18751
18752 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18753
18754 * Makefile.in: Correct additions for nsfont.o in last commit.
18755 * nsfont.m: New file (forgot last commit).
18756
18757 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
18758
18759 * callproc.c (set_initial_environment):
18760 Initialize Vprocess_environment under CANNOT_DUMP (fixes crash when
18761 batch-compiling for bootstrap).
18762
18763 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
18764 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18765
18766 * frame.c (make_initial_frame): Call init_frame_faces(f) in
18767 CANNOT_DUMP case -- fix crash due to different init order.
18768
18769 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18770
18771 Changes and additions for NeXTstep windowing system (Cocoa and
18772 GNUstep) support.
18773
18774 * Makefile.in:
18775 * config.in: Support defines and build commands for NS port.
18776 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
18777 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
18778 * dispextern.h: Include nsgui.h and add needed typedefs under NS
18779 windowing.
18780 (struct face): Add synth_ital field.
18781 * dispnew.c: Include nsterm.h when compiling under NS windowing.
18782 (init_display): Initialize Vinitial_window_system to "ns" when so
18783 compiled.
18784 * emacs.c: Include GSConfig.h when compiling under GNUstep.
18785 (display_arg): Use under NS.
18786 (main): Under NS, allocate autorelease pool and handle command line
18787 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
18788 (standard_args): Add NS-specific args.
18789 (shut_down_emacs): Shut down NS terminal if compiled under NS.
18790 * font.c (DEFAULT_ENCODING): New variable.
18791 (font_find_for_lface): Use it.
18792 (syms_of_font): Load syms_of_nsfont under NS.
18793 * font.h: Declare nsfont_driver when compiled under NS.
18794 * fontset.c: When compiling under NS, include nsterm.h.
18795 (fontset_from_font): Autoconstruct fontset under NS.
18796 * frame.c (various): Under NS, include nsterm.h, add Qns window system
18797 symbol, document and use it.
18798 (do_switch_frame): When for_deletion under Cocoa, add
18799 Fraise_frame(Qnil).
18800 (x_set_frame_parameters): Ensure font attribute changes are picked up.
18801 (x_get_arg): Allow "yes" and "no" as boolean values.
18802 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
18803 Qright under Cocoa.
18804 (focus-follows-mouse): Default to 0 under NS.
18805 * frame.h (enum output_method): Add output_ns.
18806 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
18807 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
18808 (FRAME_WINDOW_P): NS-specific definition.
18809 * fringe.c (max_used_fringe_bitmap): Make public.
18810 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
18811 (getloadavg): Use NeXT code under descendant OS's.
18812 * image.c (includes and header section, x_create_bitmap_from_data)
18813 (x_create_bitmap_from_file, free_bitmap_record, image_background)
18814 (image_background_transparent, x_clear_image_1)
18815 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
18816 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
18817 (x_to_xcolors, x_from_xcolors, x_disable_image)
18818 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
18819 other GUIs, including XPM support using code originally written for
18820 Carbon GUI.
18821 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
18822 using NS API.
18823 (image_ascent): Use font metrics macros instead of direct struct field
18824 access.
18825 * keyboard.c (includes): Add nsterm.h when compiling under NS.
18826 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
18827 Also, handle NS as GTK for menu bar purposes.
18828 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
18829 toolkit where they differ.
18830 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
18831 use cachelist, still needed under NS.
18832 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
18833 (struct widget_value): Define it here for menu.c.
18834 * keymap.c (includes): Include modifier internals.
18835 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
18836 NS.
18837 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
18838 support for preferring sequences using certain modifiers, specified by
18839 the FIRSTONLY argument.
18840 * lisp.h (hash_remove): Rename to avoid name clash when compiling
18841 under NS GNUstep implementation.
18842 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
18843 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
18844 * menu.c: Include nsterm.h under NS.
18845 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
18846 (free_menubar_widget_tree_value, update_submenu_strings)
18847 (find_and_call_menu_selection): Treat NS as X and NT.
18848 (find_and_return_menu_selection): New function, used for popup menus.
18849 * nsgui.h:
18850 * nsterm.h:
18851 * nsfns.m:
18852 * nsimage.m:
18853 * nsmenu.m:
18854 * nsselect.m:
18855 * nsterm.m: New files.
18856 * process.c (wait_reading_process_output): Under NS, call ns_select()
18857 instead of plain select().
18858 * syntax.c (char_quoted): Under NS, avoid a crash when called near
18859 beginning of buffer.
18860 * sysselect.h (init_process): Rename when compiling under Cocoa to
18861 avoid name conflict.
18862 * termhooks.h (display_info): Add ns_display_info to union.
18863 * terminal.c (Fterminal_live_p): Add ns to terminal types.
18864 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
18865 COCOA environment.
18866 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
18867 unexec() signature. (Note, this will dump, but the resulting file
18868 crashes; unexosx is used instead; keeping around for reference and
18869 possible aid in getting dump working under GNUstep.)
18870 * w32gui.h (button_type, widget_value): Remove definitions (now in
18871 keyboard.h).
18872 * window.c: Include nsterm.h when compiling under NS.
18873 * xdisp.c (includes): Include nsterm.h when compiling under NS.
18874 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
18875 other GUI windowing systems.
18876 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
18877 GTK.
18878 (x_consider_frame_title): Under NS, set icon type and frame
18879 modified-state indicator; use ns_set_name_as_filename() when using
18880 formatted title.
18881 (update_window_cursor): Make public when compiling under NS.
18882 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
18883 (hourglass_atimer, Vhourglass_delay
18884 * xfaces.c (header section, init_frame_faces, clear_font_table)
18885 (defined_color, unload_color, x_face_list_fonts)
18886 (prepare_face_for_display): Add NS support parallel to other GUIs.
18887 Emulate GCs like other non-X GUIs.
18888 (split_font_name): Don't lowercase font name under NS.
18889 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
18890 under NS.
18891 * s/darwin.h: Add support for compilation under NS.
18892
18893 2008-07-15 Jason Rumney <jasonr@gnu.org>
18894
18895 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
18896 (w32_show_hourglass): Rename from show_hourglass.
18897 (w32_hide_hourglass): Rename from hide_hourglass.
18898 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
18899 (Vhourglass_delay): Declare extern.
18900 (hourglass_started): Remove.
18901
18902 * xdisp.c (Vhourglass_delay): Remove static.
18903 (hourglass_started, start_hourglass, cancel_hourglass):
18904 Don't include these versions on WINDOWSNT.
18905
18906 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18907
18908 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
18909 variables (formerly in xfns.c).
18910 (show_hourglass, hide_hourglass): New prototypes (same).
18911 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
18912 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
18913 in xfns.c).
18914 (syms_of_xdisp): Declare/initialize display-hourglass,
18915 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
18916 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
18917 formerly in xfns.c.
18918 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
18919 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
18920 (start_hourglass, cancel_hourglass): Remove.
18921 (show_hourglass, hide_hourglass): Remove prototypes and static
18922 modifiers.
18923 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
18924 hourglass_atimer, hourglass_shown_p declaration/initialization.
18925 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
18926 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
18927 (start_hourglass, cancel_hourglass): Remove.
18928 (show_hourglass, hide_hourglass): Remove prototypes and static
18929 modifiers.
18930 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
18931 hourglass_atimer, hourglass_shown_p declaration/initialization.
18932 * w32fns.c (display_hourglass_p, Vhourglass_delay)
18933 (DEFAULT_HOURGLASS_DELAY): Remove.
18934 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
18935 hourglass_shown_p declaration/initialization.
18936
18937 2008-07-14 Jason Rumney <jasonr@gnu.org>
18938
18939 * w32fns.c (w32_get_arg): Remove wrapper function.
18940 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
18941 directly.
18942 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
18943
18944 2008-07-14 Kenichi Handa <handa@m17n.org>
18945
18946 * xfont.c (xfont_open): Add workaround for X's bug.
18947
18948 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
18949
18950 * fontset.c: Include <stdio.h> unconditionally.
18951
18952 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
18953
18954 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
18955 for filtering.
18956
18957 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
18958
18959 * s/vms.h: Use __GNUC__ instead of _GNUC_.
18960
18961 * m/macppc.h:
18962 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
18963
18964 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default.
18965 (SPECIAL_EMACS_INT):
18966 * m/ia64.h (SPECIAL_EMACS_INT):
18967 * m/amdx86-64.h (SPECIAL_EMACS_INT):
18968 * s/gnu.h (NLIST_STRUCT):
18969 * s/aix4-2.h (X11R5_INHIBIT_I18N):
18970 * s/gnu-linux.h (LINUX):
18971 * s/msdos.h (HAVE_FACES):
18972 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
18973
18974 * systty.h:
18975 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
18976 anymore.
18977
18978 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
18979
18980 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
18981 always defined as int.
18982
18983 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
18984 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
18985 * s/gnu-linux.h (HAVE_WAIT_HEADER):
18986 * s/freebsd.h (HAVE_WAIT_HEADER):
18987 * s/bsd-common.h (HAVE_UNION_WAIT):
18988 * s/aix4-2.h (HAVE_WAIT_HEADER):
18989 * m/mips.h (HAVE_UNION_WAIT):
18990 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
18991 (COFF, static): Do not define, they are undefined later in the file.
18992
18993 * process.c (update_status): Don't use a union.
18994 (status_convert):
18995 (sigchld_handler): Use int instead of WAITTYPE.
18996
18997 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
18998
18999 * indent.c (Fvertical_motion): Restore hscroll before moving to
19000 goal column.
19001
19002 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
19003
19004 * lisp.h: Remove left over code.
19005
19006 2008-07-11 Andreas Schwab <schwab@suse.de>
19007
19008 * lisp.h: Fix logic in last change.
19009
19010 * menu.h: New file.
19011 * menu.c: Include it.
19012 * xmenu.c: Likewise.
19013 * Makefile.in: Update dependencies.
19014
19015 2008-07-11 Kenichi Handa <handa@m17n.org>
19016
19017 * fontset.c (fontset_from_font): Cancel the previous change.
19018
19019 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
19020
19021 * lisp.h:
19022 * w32heap.c:
19023 * emacs.c:
19024 * alloc.c: Replace all references of NO_UNION_TYPE with
19025 USE_LISP_UNION_TYPE.
19026
19027 * m/xtensa.h (NO_UNION_TYPE):
19028 * m/vax.h (NO_UNION_TYPE):
19029 * m/template.h (NO_UNION_TYPE):
19030 * m/sparc.h (NO_UNION_TYPE):
19031 * m/mips.h (NO_UNION_TYPE):
19032 * m/macppc.h (NO_UNION_TYPE):
19033 * m/m68k.h (NO_UNION_TYPE):
19034 * m/iris4d.h (NO_UNION_TYPE):
19035 * m/intel386.h (NO_UNION_TYPE):
19036 * m/ibms390x.h (NO_UNION_TYPE):
19037 * m/ibms390.h (NO_UNION_TYPE):
19038 * m/ibmrs6000.h (NO_UNION_TYPE):
19039 * m/ia64.h (NO_UNION_TYPE):
19040 * m/hp800.h (NO_UNION_TYPE):
19041 * m/arm.h (NO_UNION_TYPE):
19042 * m/amdx86-64.h (NO_UNION_TYPE):
19043 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
19044 defining it the same.
19045
19046 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
19047
19048 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
19049
19050 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
19051
19052 * fileio.c:
19053 * sysdep.c:
19054 * systty.h:
19055 * m/ibmrs6000.h:
19056 * m/iris4d.h:
19057 * s/aix4-2.h:
19058 * s/freebsd.h:
19059 * s/gnu-linux.h:
19060 * s/hpux10-20.h:
19061 * s/hpux11.h:
19062 * s/netbsd.h:
19063 * s/sol2-3.h:
19064 * s/sol2-4.h:
19065 * s/sol2.h:
19066 * s/usg5-4.h:
19067 * s/vms.h: Remove references to unused variables.
19068
19069 2008-07-10 Andreas Schwab <schwab@suse.de>
19070
19071 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
19072 pattern before matching the generic family.
19073
19074 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
19075
19076 * unexec.c:
19077 * s/vms.h:
19078 * s/usg5-4-2.h:
19079 * s/sol2-5.h:
19080 * s/freebsd.h:
19081 * s/darwin.h: Remove dead code.
19082
19083 * m/template.h:
19084 * m/sparc.h:
19085 * m/mips.h:
19086 * m/m68k.h:
19087 * m/iris4d.h:
19088 * m/intel386.h:
19089 * m/ibms390x.h:
19090 * m/ibms390.h:
19091 * m/ia64.h:
19092 * m/hp800.h:
19093 * m/arm.h:
19094 * m/amdx86-64.h: Remove dead code and references to unused
19095 and compiler defined symbols.
19096
19097 * unexmips.c:
19098 * unexelf.c: Remove references to desupported systems.
19099
19100 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
19101
19102 * m/powermac.h: Remove boilerplate comments.
19103 (NO_REMAP): Remove unused definition.
19104
19105 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
19106 define them.
19107
19108 2008-07-10 Kenichi Handa <handa@m17n.org>
19109
19110 * xfont.c (xfont_open): Log the reason of failure.
19111
19112 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
19113
19114 * fontset.c (fontset_get_font_group):
19115 * font.c (font_check_otf): Specify argument types.
19116
19117 2008-07-09 Kenichi Handa <handa@m17n.org>
19118
19119 * coding.c (detect_coding_utf_8): Set detect_info->found only when
19120 non-ASCII char is found.
19121
19122 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
19123 (reorder_font_vector): Change the arg preferred_family to font.
19124 Prefer the spec matching with font.
19125 (fontset_get_font_group): New function.
19126 (fontset_find_font): Change the format of an element of a realized
19127 fontset. Use fontset_get_font_group.
19128 (fontset_font): Try the current fontset, the default fontset, the
19129 fallbacks of the current fontset, and the fallbacks of the default
19130 fontset in this order.
19131 (face_for_char): Delete the shortcut to use the current font.
19132 (fontset_from_font): Don't set fonts for Latin in the fontset.
19133
19134 * font.h (font_make_object, font_match_p): Adjust prototypes.
19135
19136 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
19137
19138 * font.c (font_make_object): New arg entity and pixelsize.
19139 (font_check_otf_features, font_check_otf): New functions.
19140 (font_match_p): Check :lang, :script, and :otf properties.
19141
19142 * xfont.c (xfont_open): Adjust it for the change of
19143 font_make_object.
19144 (xfont_text_extents): Fix initial setting of metrics.
19145
19146 * ftfont.c (struct ftfont_info): New member index, delete member
19147 fc_charset_idx. Make the member order compatible with struct
19148 xftfont_info.
19149 (fc_charset_table): Change charset names to registry names.
19150 (ftfont_pattern_entity): Delete the args registry and
19151 fc_charset_idx. Change the value of :font-entity property
19152 to (FONTNAME . INDEX). Always set :registry property to
19153 `iso10646-1'.
19154 (struct ftfont_cache_data): New struct.
19155 (ftfont_lookup_cache): New arg for_face.
19156 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
19157 (ftfont_driver): Set the member otf_capability.
19158 (ftfont_get_charset): Adjust it for the change of
19159 fc_charset_table.
19160 (OTF_TAG_SYM): New macro.
19161 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
19162 for the change of fc_charset_table.
19163 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
19164 ftfont_pattern_entity. Add FC_INDEX to objset.
19165 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
19166 and ftfont_pattern_entity.
19167 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
19168 font_make_object, struct ftfont_info.
19169 (ftfont_has_char): Use ftfont_get_fc_charset.
19170 (ftfont_otf_features, ftfont_otf_capability): New functions.
19171 (ftfont_shape): Use ftfont_get_otf.
19172 (ftfont_text_extents): Fix initial setting of metrics.
19173
19174 * xftfont.c (struct xftfont_info): New member ft_size. Make the
19175 member order compatible with struct ftfont_info.
19176 (xftfont_open): Add FC_CHARSET to the pattern.
19177 Set xftfont_info->ft_size. Don't unlock the face. Check BDF
19178 properties if appropriate.
19179 (xftfont_close): Unlock the face.
19180 (xftfont_anchor_point, xftfont_shape): Deleted.
19181 (syms_of_xftfont): Don't set members anchor_point and shape of
19182 xftfont_driver.
19183
19184 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
19185 font_make_object.
19186
19187 * w32font.c (w32font_open): Adjust it for the change of
19188 font_make_object.
19189 (w32font_open_internal): Don't set properties of font_object here.
19190
19191 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
19192
19193 * macfns.c (x_create_tip_frame):
19194 * w32fns.c (x_create_tip_frame):
19195 * xfns.c (x_create_tip_frame): Pass parameter argument to
19196 face-set-after-frame-default.
19197
19198 * xfaces.c (Finternal_merge_in_global_face): Save merged
19199 attributes for the default face back into the face vector.
19200
19201 2008-07-08 Andreas Schwab <schwab@suse.de>
19202
19203 * fontset.h: Declare fontset_from_font. Don't declare
19204 new_fontset_from_font and fontset_from_font_name.
19205 * xterm.c: Include "fontset.h".
19206 * Makefile.in (xterm.o): Update dependencies.
19207
19208 2008-07-08 Glenn Morris <rgm@gnu.org>
19209
19210 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
19211 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
19212
19213 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
19214
19215 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
19216 (x_set_frame_parameters): Don't bind it.
19217
19218 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
19219
19220 * w32fns.c (map_w32_filename): Declare extern.
19221
19222 2008-07-07 Jason Rumney <jasonr@gnu.org>
19223
19224 * w32term.c (WS_EX_LAYERED): Define if not already.
19225
19226 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
19227
19228 * xfaces.c (set_font_frame_param): Don't try to set the font
19229 parameter if it is still unspecified in the lface.
19230
19231 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
19232
19233 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
19234 face if it didn't already exist.
19235
19236 * xdisp.c (try_window_id): Give up if word-wrapping is on.
19237
19238 2008-07-05 Andreas Schwab <schwab@suse.de>
19239
19240 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
19241
19242 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
19243
19244 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
19245 word-wrapping.
19246 (IT_DISPLAYING_WHITESPACE): New macro.
19247 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
19248 when word-wrapping. Simplify word-wrapping logic. Use correct
19249 pixel positions when saving copies of the iterator.
19250 (display_line): Use proper wrap point if the last character on a
19251 line was preceded by whitespace.
19252
19253 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19254
19255 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
19256
19257 2008-07-04 Kenichi Handa <handa@m17n.org>
19258
19259 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
19260
19261 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
19262
19263 2008-07-02 Jason Rumney <jasonr@gnu.org>
19264
19265 * xfns.c (syms_of_xfns): Only define x-select-font when both
19266 HAVE_FREETYPE and USE_GTK.
19267
19268 * xdisp.c (next_element_from_display_vector): Move assignment out
19269 of if statement.
19270
19271 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
19272
19273 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
19274
19275 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
19276 (syms_of_fileio): Initialize and export them.
19277 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
19278
19279 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
19280 (Fsystem_move_file_to_trash): New function.
19281 (syms_of_w32fns): Export it to lisp.
19282
19283 2008-07-01 Jason Rumney <jasonr@gnu.org>
19284
19285 * w32font.c (w32font_text_extents): Don't count overhang as part
19286 of width.
19287
19288 2008-06-30 Miles Bader <miles@gnu.org>
19289
19290 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
19291 Add `avoid_cursor_p' field.
19292
19293 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
19294 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
19295 (append_glyph, append_composite_glyph, produce_image_glyph)
19296 (append_stretch_glyph): Initialize avoid_cursor_p.
19297 (get_it_property): Rename from `get_line_height_property'.
19298 (x_produce_glyphs): Use get_it_property.
19299 (handle_line_prefix, push_display_prop): New functions.
19300 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
19301 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
19302 New variables.
19303 (syms_of_xdisp): Initialize them.
19304
19305 2008-06-30 Kenichi Handa <handa@m17n.org>
19306
19307 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
19308 XftDefaultSubstitute (they are called in XftFontMatch).
19309 (xftfont_open): Fix args to ftfont_font_format.
19310
19311 * ftfont.c (fc_charset_table): New member lang.
19312 (ftfont_resolve_generic_family): New arg pattern.
19313 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
19314 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
19315 (ftfont_open): Fix args to ftfont_font_format.
19316 (ftfont_font_format): New arg filename.
19317
19318 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
19319
19320 * xfaces.c (Finternal_merge_in_global_face): If default face was
19321 modified, realize it again. Update the font face attribute.
19322
19323 2008-06-29 Jason Rumney <jasonr@gnu.org>
19324
19325 * w32term.c (x_set_frame_alpha): Fix logic.
19326
19327 2008-06-29 Kenichi Handa <handa@m17n.org>
19328
19329 * fontset.c (Finternal_char_font): Return font-object instead of
19330 font-name.
19331
19332 * composite.c (get_composition_id): Fix the width calculation for TAB.
19333
19334 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
19335
19336 * indent.c (Fvertical_motion): Properly handle float column arg.
19337
19338 2008-06-28 Jason Rumney <jasonr@gnu.org>
19339
19340 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
19341 (pfnSetLayeredWindowAttributes): New function pointer.
19342 (w32_initialize): Initialize it when supported.
19343 (x_set_frame_alpha): New function.
19344
19345 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
19346 (w32_frame_parm_handlers): Set alpha handler.
19347
19348 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
19349
19350 2008-06-27 Jason Rumney <jasonr@gnu.org>
19351
19352 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
19353 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
19354 (w32_to_x_charset, x_to_w32_charset)
19355 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
19356 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
19357 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
19358 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
19359 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
19360 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
19361 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
19362 (Qw32_charset_unicode): Remove.
19363 (syms_of_w32fns): Update for above changes.
19364
19365 * w32font.c (w32_to_x_charset, x_to_w32_charset)
19366 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
19367 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
19368 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
19369 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
19370 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
19371 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
19372 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
19373 (syms_of_w32font): Update for above changes.
19374
19375 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
19376
19377 * s/usg5-4.h: Fix previous change: keep the correct branch of a
19378 removed #if.
19379 (USG_SHARED_LIBRARIES): Remove duplicate definition.
19380
19381 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
19382 Eli Zaretskii <eliz@gnu.org>
19383
19384 * makefile.w32-in (LOCAL_FLAGS):
19385 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
19386
19387 * sysdep.c (_spawnlp, _getpid):
19388 Declare with explicit _cdecl instead of _CRTAPI1.
19389
19390 * editfns.c (Fget_internal_run_time):
19391 Check for WINDOWSNT with #ifdef, not #if.
19392
19393 2008-06-26 Jason Rumney <jasonr@gnu.org>
19394
19395 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
19396
19397 * w32term.c (x_draw_glyph_string_foreground)
19398 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
19399 Use FONT_HANDLE macro.
19400 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
19401
19402 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
19403 (uniscribe_encode_char): Use FONT_HANDLE macro.
19404
19405 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
19406 (w32font_text_extents): Use precast w32_font.
19407 (w32font_close): Free cached metrics.
19408 (w32font_open_internal): Allocate space for name on stack.
19409
19410 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
19411
19412 * xdisp.c (extend_face_to_end_of_line): Fix last change.
19413
19414 2008-06-26 Jason Rumney <jasonr@gnu.org>
19415
19416 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
19417 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
19418
19419 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
19420
19421 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
19422
19423 2008-06-26 Jason Rumney <jasonr@gnu.org>
19424
19425 * w32bdf.c, w32bdf.h: Remove obsolete files.
19426
19427 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
19428
19429 * w32gui.h: Don't include w32bdf.h.
19430 (XCharStruct, enum w32_char_font_type, W32FontStruct):
19431 Remove obsolete font support.
19432
19433 * w32font.h (struct w32font_info): Remove compat_w32_font.
19434 Add hfont member.
19435 (FONT_COMPAT): Remove obsolete macro.
19436
19437 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
19438 (w32font_encode_char, w32font_text_extents): Use new hfont member.
19439 (w32font_open_internal): Remove compat code. Set new hfont member.
19440 (Fx_select_font): Use new hfont member.
19441
19442 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
19443 (uniscribe_encode_char): Use new hfont member.
19444
19445 * w32term.c (x_draw_glyph_string_foreground)
19446 (x_draw_composite_glyph_string_foreground): Use new hfont member.
19447 (x_draw_glyph_string): Use metrics in w32font_info.
19448
19449 2008-06-26 Kenichi Handa <handa@m17n.org>
19450
19451 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
19452
19453 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
19454
19455 * unexnext.c:
19456 * m/ews4800.h:
19457 * m/hp9000s300.h:
19458 * m/ibm370aix.h:
19459 * m/mips-siemens.h:
19460 * m/ncr386.h:
19461 * m/next.h:
19462 * m/pmax.h:
19463 * m/powerpcle.h:
19464 * m/tandem-s2.h:
19465 * s/386bsd.h:
19466 * s/bsd386.h:
19467 * s/bsd4-1.h:
19468 * s/bsd4-2.h:
19469 * s/bsdos2-1.h:
19470 * s/bsdos2.h:
19471 * s/bsdos3.h:
19472 * s/bsdos4.h:
19473 * s/nextstep.h:
19474 * s/ultrix4-3.h:
19475 * s/usg5-0.h:
19476 * s/usg5-2-2.h:
19477 * s/usg5-2.h:
19478 * s/usg5-4-3.h:
19479 * s/ux4800.h:
19480 * s/uxpds.h:
19481 * s/uxpv.h: Remove support for obsolete systems.
19482 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
19483 Remove, insert contents in s/hpux10-20.h.
19484 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
19485 Remove, insert contents in s/aix4-2.h.
19486 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
19487 * s/bsd4-3.h: Rename to ...
19488 * s/bsd-common.h: ... this.
19489 * data.c:
19490 * doc.c:
19491 * ecrt0.c:
19492 * emacs.c:
19493 * fileio.c:
19494 * floatfns.c:
19495 * keyboard.c:
19496 * mem-limits.h:
19497 * print.c:
19498 * process.c:
19499 * sysdep.c:
19500 * syssignal.h:
19501 * systty.h:
19502 * syswait.h:
19503 * term.c:
19504 * unexec.c:
19505 * unexelf.c:
19506 * unexhp9k800.c:
19507 * m/hp800.h:
19508 * m/ibmrs6000.h:
19509 * m/mips.h:
19510 * m/vax.h:
19511 * s/darwin.h:
19512 * s/freebsd.h:
19513 * s/gnu.h:
19514 * s/ms-w32.h:
19515 * s/msdos.h:
19516 * s/netbsd.h:
19517 * s/template.h: Remove references to obsolete variables.
19518
19519 * Makefile.in: Add dependencies for all unexec files.
19520 (admindir): Remove unused variable.
19521 (UNEXEC_SRC): Remove references.
19522
19523 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
19524
19525 * xfns.c (x_default_font_parameter): If Xft is available, first
19526 try Monospace-12 for the default font.
19527
19528 2008-06-25 Jason Rumney <jasonr@gnu.org>
19529
19530 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
19531
19532 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
19533
19534 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
19535
19536 * buffer.c (syms_of_buffer): Remove default-word-wrap.
19537
19538 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
19539
19540 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
19541 <scroll-conservatively>: Fix typo in docstring.
19542
19543 * xselect.c (Fx_send_client_event): Doc fix.
19544
19545 2008-06-25 Kenichi Handa <handa@m17n.org>
19546
19547 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
19548
19549 * font.c (font_parse_fcname): Remove unused variables.
19550 (font_sort_entites): Delete the arg SPEC. Caller changed.
19551 Fix for the case of ! best_only.
19552 (font_delete_unmatched): Check DPI and AVGWIDTH too.
19553
19554 * lisp.h (Fstring_to_unibyte): EXFUN it.
19555
19556 * character.h (str_to_unibyte): Extern it.
19557
19558 * character.c (str_to_unibyte): New function.
19559
19560 * fns.c (Fstring_to_unibyte): New function.
19561 (syms_of_fns): Defsubr it.
19562
19563 2008-06-24 Kenichi Handa <handa@m17n.org>
19564
19565 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
19566 DPI too.
19567 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
19568
19569 2008-06-24 Andreas Schwab <schwab@suse.de>
19570
19571 * Makefile.in (${lispsource}loaddefs.el): Rename from
19572 ../lisp/loaddefs.el.
19573 (bootstrap-clean): Do what distclean does but don't remove
19574 Makefile.
19575 (distclean): Depend on bootstrap-clean and remove Makefile.
19576
19577 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
19578
19579 * buffer.h (struct buffer): New member word_wrap.
19580
19581 * buffer.c (syms_of_buffer): New variables default-word-wrap and
19582 word-wrap.
19583 (init_buffer_once): Initialize them.
19584
19585 * dispextern.h (struct it): Replace bool truncate_lines_p with a
19586 line_wrap enum possessing three possible values.
19587
19588 * termopts.h: Replace truncate_partial_width_windows with
19589 Vtruncate_partial_width_windows.
19590
19591 * dispnew.c (direct_output_for_insert): Avoid direct output when
19592 inserting a space with word wrap on.
19593
19594 * indent.c (compute_motion): Obey integer values of
19595 truncate-partial-width-windows.
19596
19597 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
19598 replacing truncate_partial_width_windows.
19599 (init_iterator): If Vtruncate_partial_width_windows is an integer,
19600 truncate only if the window width is below that integer.
19601 (start_display, resize_mini_window, produce_stretch_glyph)
19602 (display_string, move_it_in_display_line_to): Use line_wrap.
19603 (back_to_previous_visible_line_start, reseat_1):
19604 Reset string_from_display_prop_p.
19605 (display_line): Extend default face to end of line when wrapping.
19606
19607 2008-06-24 Kim F. Storm <storm@cua.dk>
19608
19609 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
19610 to wrap continued lines at word boundaries.
19611
19612 2008-06-24 Jason Rumney <jasonr@gnu.org>
19613
19614 * font.c (Ffont_face_attributes): Multiply pixel size before point
19615 conversion to avoid multiplying rounding error.
19616
19617 2008-06-23 Jason Rumney <jasonr@gnu.org>
19618
19619 * w32term.c (x_draw_glyph_string_background)
19620 (x_draw_glyph_string): Remove old bdf font code.
19621
19622 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
19623
19624 2008-06-22 Kenichi Handa <handa@m17n.org>
19625
19626 * font.c (font_find_for_lface): Try the adstyle specified in
19627 the property of LFACE_FONT of LFACE (if any).
19628
19629 2008-06-21 Seiji Zenitani <zenitani@mac.com>
19630 Ryo Yoshitake <ryo@shiftmode.net>
19631
19632 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
19633
19634 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
19635
19636 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
19637 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
19638 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
19639 (witness-emacs): Remove.
19640 (lisp, shortlisp): Move loaddefs.el earlier.
19641 (mostlyclean): Forget about witness-emacs.
19642
19643 2008-06-22 Glenn Morris <rgm@gnu.org>
19644
19645 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
19646 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
19647
19648 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
19649
19650 * Makefile.in (PRECOMP): Remove.
19651 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
19652 (witness-emacs): Run `compile-first'.
19653 (.el.elc): Use the new compile-onefile target.
19654
19655 2008-06-21 Kenichi Handa <handa@m17n.org>
19656
19657 * xftfont.c (xftfont_open): Handle QCembolden only when
19658 FC_EMBOLDEN is defined.
19659
19660 2008-06-21 Andreas Schwab <schwab@suse.de>
19661
19662 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
19663 (.el.elc): Likewise.
19664
19665 2008-06-21 Miles Bader <miles@gnu.org>
19666
19667 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
19668 build dir, not the lisp source dir.
19669
19670 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
19671
19672 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
19673 (bootstrapclean): Remove.
19674 (.el.elc): New rule.
19675 (PRECOMP): New var.
19676 (../lisp/subdirs.el): Remove.
19677 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
19678 (witness-emacs): New target.
19679 (mostlyclean): Remove witness-emacs as well.
19680 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
19681 Add witness-emacs dependency.
19682
19683 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
19684
19685 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
19686 defined by the font.
19687
19688 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19689
19690 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
19691 (bootstrap-clean): New target that keeps TAGS around.
19692 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
19693 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
19694
19695 2008-06-20 Jason Rumney <jasonr@gnu.org>
19696
19697 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
19698 Remove obsolete font code.
19699
19700 * w32font.c (font_matches_spec): Use csb bitfield from font signature
19701 to determine language support.
19702
19703 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19704
19705 * sysdep.c (cfsetspeed): New fun extracted from the code.
19706 (cfmakeraw): Move before first use.
19707
19708 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
19709
19710 * sysdep.c (cfmakeraw): Provide fallback implementation.
19711 (serial_configure): Provide fallback implementation of cfsetspeed.
19712
19713 2008-06-20 Kenichi Handa <handa@m17n.org>
19714
19715 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
19716 the pattern.
19717
19718 * fontset.c (fontset_from_font): Copy font_spec before changing
19719 the elements.
19720
19721 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
19722
19723 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19724
19725 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
19726 for explicit `font' parameters.
19727
19728 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
19729
19730 2008-06-19 Kenichi Handa <handa@m17n.org>
19731
19732 * frame.c: Include <ctype.h>.
19733 (x_set_font_backend): Allow spacing characters in the X resource
19734 for FontBackend.
19735
19736 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
19737
19738 * w32fns.c, xfns.c (Qfont_param): New var.
19739 (syms_of_w32fns): Initialize it.
19740 (x_default_font_parameter): Record explicit `font' into
19741 `font-parameter'.
19742
19743 2008-06-18 Kenichi Handa <handa@m17n.org>
19744
19745 * font.c (font_parse_xlfd): Fix previous change.
19746 (font_parse_fcname): Don't use :fc-unknown-spec.
19747 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
19748 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
19749 (font_add_log): Prepend the driver name to the resulting fonts.
19750
19751 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
19752 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
19753 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
19754
19755 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
19756 (QCembolden): New variables.
19757 (syms_of_xftfont): DEFSYM them.
19758 (xftfont_open): Call XftFontMatch. Don't trust the result of
19759 XftTextExtents8 if the pixel_size is less than 5.
19760
19761 2008-06-18 Andreas Schwab <schwab@suse.de>
19762
19763 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
19764 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
19765
19766 2008-06-18 Jason Rumney <jasonr@gnu.org>
19767
19768 * w32font.c (w32font_list, w32font_match): Add logging.
19769
19770 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
19771
19772 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
19773
19774 * font.c (font_parse_fcname): Store divider characters for
19775 unknown-spec list. For known key symbols, intern using correct
19776 symbol name.
19777
19778 2008-06-17 Kenichi Handa <handa@m17n.org>
19779
19780 * xfaces.c (realize_default_face): If the frame is not on window
19781 system, set the fontset of face to nil.
19782
19783 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
19784
19785 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
19786
19787 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
19788
19789 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
19790 (build_font_name_from_vector): Delete externs.
19791
19792 * xfaces.c (struct font_name): Don't declare.
19793
19794 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
19795
19796 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
19797
19798 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
19799
19800 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
19801
19802 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
19803
19804 * font.c (Ffont_spec): Fix usage in docstring.
19805 (Ffont_face_attributes): Doc fix.
19806
19807 2008-06-16 Andreas Schwab <schwab@suse.de>
19808
19809 * font.c (Ffont_face_attributes): Fix definition.
19810
19811 2008-06-16 Jason Rumney <jasonr@gnu.org>
19812
19813 * font.h (font_style_symbolic_from_value): Remove.
19814
19815 * font.c (font_style_symbolic_from_value): Remove.
19816 (font_style_symbolic): Revert to pre 2008-06-13 version.
19817
19818 * w32font.c (w32_to_fc_weight): New function.
19819 (w32font_full_name, logfont_to_fcname): Use it.
19820
19821 2008-06-16 Kenichi Handa <handa@m17n.org>
19822
19823 * font.c (font_check_object): Delete it.
19824 (font_clear_cache): Check if a font-object is alive.
19825 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
19826 font-object to nil.
19827 (font_close_object): Don't check FONT_CLOSE_OBJECT.
19828 (font_at): Don't call font_check_object.
19829 (Ffont_get): Return a symbol for :weight, :slant, and :width.
19830
19831 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
19832
19833 * puresize.h (BASE_PURESIZE): Increase to 1230000.
19834
19835 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
19836
19837 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
19838
19839 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
19840
19841 * font.c (font_parse_fcname): Only one decimal point.
19842 (font_unparse_fcname): Handle data in family and foundry indices
19843 as symbols, not strings.
19844 (font_unparse_gtkname, Ffont_face_attributes): New functions.
19845
19846 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
19847
19848 * font.h (font_unparse_gtkname): Add prototype.
19849
19850 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
19851
19852 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
19853
19854 2008-06-15 Andreas Schwab <schwab@suse.de>
19855
19856 * font.c (font_update_drivers): Fix crash when no drivers match.
19857
19858 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19859
19860 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
19861 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
19862
19863 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
19864
19865 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
19866
19867 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
19868
19869 * process.c (Fserial_process_configure, Fprocess_send_eof):
19870 Use EQ to compare Lisp_Objects.
19871
19872 2008-06-13 Jason Rumney <jasonr@gnu.org>
19873
19874 * w32fns.c (Fw32_select_font): Remove old font API function.
19875
19876 * w32font.c (logfont_to_fcname): New function.
19877 (Fx_select_font): New font dialog function compatible with
19878 GTK/fontconfig version.
19879
19880 * font.c (font_style_symbolic_from_value): New function.
19881 (font_style_symbolic): Use it.
19882
19883 * font.h (font_style_symbolic_from_value): Declare new function.
19884
19885 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
19886
19887 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
19888 <font-width-table>: Fix typos in docstrings.
19889
19890 2008-06-13 Daniel Engeler <engeler@gmail.com>
19891
19892 These changes add serial port access.
19893 * process.c: Add HAVE_SERIAL.
19894 (Fdelete_process, Fprocess_status, Fset_process_buffer)
19895 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
19896 (list_processes_1, select_wrapper, Fstop_process)
19897 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
19898 (status_notify): Modify to handle serial processes.
19899 [HAVE_SERIAL] (Fserial_process_configure)
19900 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
19901 New functions.
19902 * process.h (struct Lisp_Process): Add `type'.
19903 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
19904 New functions.
19905 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
19906 serial ports.
19907 (serial_open, serial_configure): New functions.
19908 * w32.h: Add FILE_SERIAL.
19909 (struct _child_process): Add ovl_read, ovl_write.
19910
19911 2008-06-13 Kenichi Handa <handa@m17n.org>
19912
19913 * dispextern.h (enum lface_attribute_index): New member
19914 LFACE_FOUNDRY_INDEX.
19915
19916 * font.c (font_score): Delete arg alternate_families. Check only
19917 weight, slant, width, and size. Ignore the difference of alias
19918 style symbols.
19919 (font_sort_entites): Adjust for the above change. Reflect the
19920 order of font-driver to scores.
19921 (font_list_entities): Don't check alternate_familes here.
19922 (font_clear_prop): Handle foundry.
19923 (font_update_lface): Don't parse "foundry-family" form here.
19924 Handle FONT_FOUNDRY_INDEX.
19925 (font_find_for_lface): Likewise. Handle alternate families here.
19926 If registry is nil, try iso8859-1 and ascii-0.
19927 (font_open_for_lface): Pay attention to size in ENTITY.
19928 (font_open_by_name): Simplify by calling font_load_for_lface.
19929 (free_font_driver_list): Delete it.
19930 (font_update_drivers): Preserve the order of backends.
19931 (syms_of_font): Setting of sort_shift_bits adjusted for the change
19932 of font_score and font_sort_entites.
19933 (font_update_sort_order): Likewise.
19934
19935 * xfaces.c (LFACE_FOUNDRY): New macro.
19936 (check_lface_attrs): Check foundry.
19937 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
19938 (merge_face_vectors): Check foundry.
19939 (merge_face_ref): Likewise.
19940 (Finternal_set_lisp_face_attribute): Likewise.
19941 (x_update_menu_appearance): Likewise.
19942 (Finternal_get_lisp_face_attribute): Likewise.
19943 (lface_hash): Likewise.
19944 (lface_same_font_attributes_p): Likewise.
19945 (x_supports_face_attributes_p): Likewise.
19946 (tty_supports_face_attributes_p): Likewise.
19947 (Finternal_set_alternative_font_family_alist): Intern strings.
19948 (Finternal_set_alternative_font_registry_alist): Downcase strings.
19949 (realize_default_face): Set LFACE_FOUNDRY (lface).
19950
19951 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
19952 font-driver at first.
19953
19954 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
19955
19956 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
19957
19958 * lread.c (Fload): Use xfree, not free on saved_doc_string.
19959
19960 2008-06-12 Jim Meyering <meyering@redhat.com>
19961
19962 Make unexec_free handle NULL the same way free does.
19963 * unexmacosx.c (unexec_free): Ignore a NULL argument.
19964
19965 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
19966
19967 * character.h (CHAR_TO_BYTE_SAFE): New macro.
19968 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
19969 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
19970 (WEAK_ALIAS): Simplify.
19971 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
19972 when searching a unibyte buffer.
19973
19974 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
19975
19976 * xfns.c (Fx_select_font): Rename from x-font-dialog.
19977
19978 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
19979
19980 * w32font.c: Include ctype.h.
19981
19982 2008-06-11 Jason Rumney <jasonr@gnu.org>
19983
19984 * w32font.c (w32font_encode_char): Detect missing glyphs that are
19985 misreported as space.
19986 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
19987 as aliases for registry iso10646-1.
19988
19989 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
19990
19991 * buffer.c (clone_per_buffer_values): Skip `name'.
19992
19993 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
19994
19995 * font.c (font_parse_fcname): Fix last change; accept decimal
19996 points in font size.
19997
19998 2008-06-10 Jason Rumney <jasonr@gnu.org>
19999
20000 * w32uniscribe.c (add_opentype_font_name_to_list):
20001 Skip non unicode fonts.
20002
20003 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
20004
20005 * xfns.c (Fx_font_dialog): New function.
20006
20007 * gtkutil.c (xg_dialog_response_cb): Rename from
20008 xg_file_response_callback.
20009 (pop_down_dialog): Rename from pop_down_file_dialog.
20010 (xg_get_file_name): Callers changed.
20011 (xg_get_font_name): New function.
20012
20013 * gtkutil.h (xg_get_font_name): Insert prototype.
20014
20015 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
20016
20017 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
20018 x_underline_minimum_display_offset.
20019 (syms_of_xdisp): Declare it here rather than in xterm.c.
20020 * dispextern.h (underline_minimum_offset): Declare it.
20021 * w32term.c (x_draw_glyph_string): Use it.
20022 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
20023 (syms_of_xterm): Don't declare it any more.
20024 (x_draw_glyph_string): Adjust to the new name.
20025
20026 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
20027
20028 * xterm.c (x_underline_minimum_display_offset): New var.
20029 (x_draw_glyph_string): Use it.
20030 (syms_of_xterm): Declare it.
20031
20032 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
20033
20034 * font.c (font_parse_fcname): Accept GTK-style font names too.
20035
20036 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
20037
20038 * dired.c (file_name_completion): Don't return t if the match is exact
20039 but with different capitalization.
20040 * minibuf.c (Ftry_completion): Simplify.
20041
20042 * window.c (Vwindow_point_insertion_type): New var.
20043 (set_window_buffer): Use it.
20044 (syms_of_window): Init and export it to Lisp.
20045
20046 2008-06-10 Kenichi Handa <handa@m17n.org>
20047
20048 * font.h (font_intern_prop): Prototype adjusted.
20049
20050 * font.c (font_intern_prop): New arg force_symbol.
20051 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
20052 Adjust for the change of font_intern_prop.
20053
20054 * ftfont.c (ftfont_pattern_entity):
20055 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
20056 (w32_registry):
20057 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
20058 the change of font_intern_prop.
20059
20060 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
20061
20062 * w32menu.c (digest_single_submenu): Declare extern.
20063
20064 2008-06-09 Jason Rumney <jasonr@gnu.org>
20065
20066 * w32term.c (x_make_frame_visible): Use alternate restore flags.
20067
20068 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
20069 (parse_single_submenu): Remove.
20070 (digest_single_submenu): Remove.
20071 (syms_of_w32menu): Don't initialise variables that have moved
20072 to menu.c.
20073 (set_frame_menubar): Sync with version in xmenu.c.
20074 (w32_menu_show): Sync with xmenu_show in xmenu.c.
20075
20076 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
20077 Make static again.
20078
20079 2008-06-09 Jason Rumney <jasonr@gnu.org>
20080
20081 Changes to w32 files related to the move of common menu code
20082 to menu.c on 2008-06-08 by Chong Yidong.
20083
20084 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
20085 defs to w32gui.h.
20086 (single_keymap_panes, push_menu_item, push_menu_pane):
20087 Make globally visible.
20088
20089 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
20090 (local_free, malloc_widget_value, free_widget_value)
20091 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
20092 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
20093 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
20094 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
20095 (menu_items, menu_items_allocated, menu_items_used)
20096 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
20097 (init_menu_items, finish_menu_items, discard_menu_items)
20098 (grow_menu_items, push_submenu_start, push_submenu_end)
20099 (push_left_right_boundary, push_menu_pane, push_menu_item)
20100 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
20101 (free_menubar_widget_tree_value, parse_single_submenu)
20102 (update_submenu_strings): Remove functions.
20103 (xmalloc_widget_value): Remove and declare extern.
20104
20105 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
20106 (OBJ1): Build it.
20107
20108 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
20109 (local_heap, local_alloc, local_free, malloc_widget_value)
20110 (free_widget_value): Define here.
20111
20112 2008-06-09 Kenichi Handa <handa@m17n.org>
20113
20114 * font.h (Qascii_0): Extern it.
20115
20116 * font.c (Qascii_0): New variable.
20117 (syms_of_font): DEFSYM it.
20118 (font_open_by_name): If the registry "iso8859-1" fails, try also
20119 "ascii-0".
20120
20121 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
20122
20123 2008-06-08 Kenichi Handa <handa@m17n.org>
20124
20125 * .gdbinit (xfont): New command.
20126
20127 2008-06-08 Andreas Schwab <schwab@suse.de>
20128
20129 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
20130 * Makefile.in (menu.o): Update dependencies.
20131
20132 * Makefile.in (obj): Always add menu.o.
20133 * emacs.c (main): Always call syms_of_menu.
20134 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
20135
20136 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
20137
20138 * Makefile.in: Compile menu.c.
20139
20140 * lisp.h: Declare syms_of_menu.
20141
20142 * emacs.c (main): Call syms_of_menu.
20143
20144 * keyboard.h: Relocate platform-independent menu definitions from
20145 xmenu.c.
20146
20147 * menu.c: New file. Relocate platform-independent menu
20148 definitions from xmenu.c. Suggested by Adrian Robert.
20149
20150 * xmenu.c: Remove platform-independent menu definitions.
20151 (menu_items, menu_items_inuse, menu_items_allocated)
20152 (menu_items_used, menu_items_n_panes)
20153 (menu_items_submenu_depth): Move to keyboard.h.
20154 (init_menu_items, finish_menu_items, unuse_menu_items)
20155 (discard_menu_items, restore_menu_items, save_menu_items)
20156 (grow_menu_items, push_submenu_start, push_submenu_end)
20157 (push_left_right_boundary, push_menu_pane, push_menu_item)
20158 (keymap_panes, single_keymap_panes, single_menu_item)
20159 (list_of_panes, list_of_items, find_and_call_menu_selection)
20160 (xmalloc_widget_value, free_menubar_widget_value_tree)
20161 (parse_single_submenu, digest_single_submenu)
20162 (update_submenu_strings): Move to menu.c.
20163
20164 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
20165
20166 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
20167
20168 2008-06-06 Miles Bader <miles@gnu.org>
20169
20170 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
20171 face, not frame default.
20172
20173 2008-06-05 Martin Rudalics <rudalics@gmx.at>
20174
20175 * window.c (pop_up_windows, pop_up_frames)
20176 (display_buffer_reuse_frames, Vpop_up_frame_function)
20177 (Vdisplay_buffer_function, Veven_window_heights)
20178 (Vspecial_display_buffer_names, Vspecial_display_regexps)
20179 (Vspecial_display_function, Vsame_window_buffer_names)
20180 (Vsame_window_regexps, split_height_threshold)
20181 (Vsplit_window_preferred_function): Move those vars to window.el.
20182 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
20183 (Fdisplay_buffer): Move those functions to window.el.
20184 (syms_of_window): Remove corresponding declarations.
20185 (display_buffer): New function.
20186 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
20187 * dispnew.c (Flast_nonminibuf_frame): New function.
20188 * buffer.c (Fpop_to_buffer): Move to window.el.
20189
20190 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20191
20192 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
20193
20194 2008-06-05 Kenichi Handa <handa@m17n.org>
20195
20196 * coding.c (detect_coding): Fix previous change.
20197 (detect_coding_system): Likewise.
20198
20199 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20200
20201 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
20202
20203 * keymap.c (Vminibuffer_local_filename_must_match_map):
20204 Rename from Vminibuffer_local_must_match_filename_map.
20205 (syms_of_keymap):
20206 * minibuf.c (Fcompleting_read): Adjust accordingly.
20207 * commands.h: Rename declaration as well.
20208
20209 2008-06-05 Kenichi Handa <handa@m17n.org>
20210
20211 * font.c (Ffont_spec): Don't use font_parse_family_registry for
20212 family name.
20213 (Ffont_put): Likewise.
20214
20215 * fontset.c (fontset_find_font): Call font_open_for_lface with the
20216 current font-spec.
20217
20218 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
20219 is unspecified.
20220
20221 * xfaces.c (realize_x_face): If the font-related face attributes
20222 are the same as those of default face, realize a new fontset from
20223 default->fontset.
20224 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
20225
20226 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20227
20228 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
20229 (move_it_in_display_line): New wrapper.
20230
20231 * window.c (window_scroll_pixel_based_preserve_x)
20232 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
20233 (window_scroll_pixel_based, window_scroll_line_based):
20234 Use them to preserve column positions.
20235 (syms_of_window): Initialize them.
20236
20237 * indent.c (Fvertical_motion): Extend first arg to allow passing an
20238 (HPOS . VPOS) pair.
20239
20240 * dispextern.h (move_it_in_display_line): Declare.
20241
20242 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
20243
20244 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
20245 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
20246 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
20247
20248 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
20249
20250 * window.c (Fset_window_parameter): Doc fix.
20251 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
20252
20253 2008-06-04 Joakim Verona <joakim@verona.se>
20254
20255 * window.h (struct window): Add new member window_parameters.
20256
20257 * window.c (Fwindow_parameters, Fwindow_parameter)
20258 (Fset_window_parameter): New defuns.
20259 (syms_of_window): Defsubr the new defuns.
20260 (make_window): Initialize window_parameters to nil.
20261
20262 2008-06-04 John Paul Wallington <jpw@pobox.com>
20263
20264 * eval.c (Fdefmacro): Doc fix.
20265
20266 2008-06-04 Kenichi Handa <handa@m17n.org>
20267
20268 * coding.c (detect_coding): Fix handling of coding->head_ascii.
20269 Be sure to call setup_coding_system when we find a proper coding system.
20270 (detect_coding_system): Fix handling of coding->head_ascii.
20271
20272 2008-06-03 Andreas Schwab <schwab@suse.de>
20273
20274 * font.c (font_prop_validate_spacing): Fix last change.
20275
20276 2008-06-03 Kenichi Handa <handa@m17n.org>
20277
20278 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
20279 (font_parse_fcname): Fix handling of unknown key.
20280
20281 * xfont.c (xfont_list): Try an alias.
20282
20283 * charset.c (char_charset): Return NULL if the arg charset_list is
20284 specified and C doesn't belong to any of them.
20285
20286 2008-06-02 Chip Coldwell <coldwell@redhat.com>
20287
20288 * font.c (font_pixel_size): Don't take cdr of an integer.
20289
20290 2008-06-02 Jim Meyering <meyering@redhat.com>
20291
20292 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
20293 * alloc.c (xfree): Return right away for a NULL arg.
20294 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
20295 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
20296 * mac.c (create_apple_event_from_event_ref): Likewise.
20297 (create_apple_event_from_drag_ref, cfstring_create_normalized):
20298 Likewise.
20299 * doprnt.c (doprnt1): Likewise.
20300 * frame.c (frame): Likewise.
20301 * keyboard.c (wipe_kboard): Likewise.
20302 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
20303 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
20304 * term.c (tty_default_color_capabilities, maybe_fatal)
20305 (delete_tty): Likewise.
20306 * w16select.c (string): Likewise.
20307 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
20308 * w32bdf.c (w32_free_bdf_font): Likewise.
20309 * w32fns.c (w32_unload_font): Likewise.
20310 * w32font.c (w32font_close): Likewise.
20311 * window.c (size_window): Likewise.
20312 * xselect.c (receive_incremental_selection): Likewise.
20313 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
20314 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
20315 * w32.c (stat): Likewise.
20316
20317 Remove useless if-before-free tests.
20318 * editfns.c (Fset_time_zone_rule): Likewise.
20319 * lread.c (nosuffix): Likewise.
20320 * ralloc.c (get_bloc): Likewise.
20321 * regex.c (reg_free): Likewise.
20322 * xftfont.c (xftfont_open, xftfont_close): Likewise.
20323 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
20324 * xsmfns.c (smc_save_yourself_CB): Likewise.
20325
20326 2008-06-02 Kenichi Handa <handa@m17n.org>
20327
20328 * font.c (font_find_for_lface): Handle float font size.
20329 (font_open_for_lface): Likewise.
20330
20331 * xfaces.c (x_supports_face_attributes_p): Check face->font before
20332 comparing the properties.
20333
20334 2008-06-01 Jason Rumney <jasonr@gnu.org>
20335
20336 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
20337 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
20338 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
20339 Don't add empty script list.
20340 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
20341
20342 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
20343
20344 * Makefile.in (dot, dotdot): Remove, update users.
20345 ".." has been used elsewhere in the file for a long time.
20346 (LIBXT_STATIC): Remove conditional based on unused variable.
20347
20348 2008-06-01 Miles Bader <miles@gnu.org>
20349
20350 * xfaces.c (Vface_remapping_alist): New variable.
20351 (syms_of_xfaces): Initialize it.
20352 (enum named_merge_point_kind): New type.
20353 (struct named_merge_point): Add `named_merge_point_kind' field.
20354 (push_named_merge_point): Make cycle detection respect different
20355 named-merge-point kinds.
20356 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
20357 Remove face-name alias resolution.
20358 (lface_from_face_name): New definition using
20359 `lface_from_face_name_no_resolve'.
20360 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
20361 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
20362 (get_lface_attributes): New definition that layers face-remapping on
20363 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
20364 (lookup_basic_face): New function.
20365 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
20366 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
20367 `get_lface_attributes'.
20368 (face_at_buffer_position): Use `lookup_basic_face' to lookup
20369 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
20370 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
20371
20372 * xdisp.c (init_iterator): Pass base_face_id through
20373 `lookup_basic_face' when we actually use it as a face-id.
20374 (handle_single_display_prop): Use `lookup_basic_face' to lookup
20375 DEFAULT_FACE_ID.
20376
20377 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
20378 lookup the initial face-id.
20379
20380 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
20381
20382 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
20383
20384 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
20385 (Fremove_text_properties): Fix typos in docstrings.
20386
20387 2008-05-31 Kenichi Handa <handa@m17n.org>
20388
20389 * font.c (font_list_entities): Fix the car part of data to be
20390 stored in the cache.
20391
20392 * ftfont.c (ftfont_font_format): Don't use strcasestr.
20393
20394 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20395
20396 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
20397 Add a `test' argument so another predicate than `equal' can be used.
20398 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
20399 (map_char_table): Remove unused vars `c' and `i'.
20400 * lisp.h (Foptimize_char_table): Adjust declaration.
20401 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
20402
20403 2008-05-30 Kenichi Handa <handa@m17n.org>
20404
20405 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
20406 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
20407 defined.
20408
20409 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20410
20411 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
20412 (Fmake_variable_frame_local): Disallow mixing buffer-local and
20413 frame-local settings for the same variable.
20414
20415 2008-05-30 Kenichi Handa <handa@m17n.org>
20416
20417 * fontset.c (Ffont_info): Move to font.c.
20418 (syms_of_fontset): Delete defsubr of Sfont_info.
20419
20420 * font.c (font_style_to_value, font_score): Delete casting of the
20421 args to xstcasecmp.
20422 (register_font_driver): Increment num_font_drivers only when
20423 registering the driver globally.
20424 (Ffont_info): Move from fontset.c. Handle a font object too.
20425 (syms_of_font): Defsubr Sfont_info.
20426
20427 2008-05-29 Kenichi Handa <handa@m17n.org>
20428
20429 * coding.h (enum define_coding_utf8_arg_index): New enum.
20430 (enum coding_attr_index): Change coding_attr_utf_16_bom to
20431 coding_attr_utf_bom.
20432 (enum utf_bom_type): Rename from utf_16_bom_type.
20433 (struct utf_16_spec): Adjust for the above change.
20434 (struct coding_system): Add utf_8_bom in `spec' union.
20435
20436 * coding.c (CODING_UTF_8_BOM): New macro.
20437 (enum coding_category): Delete coding_category_utf_8, add
20438 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
20439 coding_category_utf_8_sig.
20440 (CATEGORY_MASK_UTF_8): Delete it.
20441 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
20442 (CATEGORY_MASK_UTF_8_SIG): New macros.
20443 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
20444 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
20445 CATEGORY_MASK_UTF_8_SIG.
20446 (CATEGORY_MASK_UTF_8): New macro.
20447 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
20448 (detect_coding_utf_8): Check BOM.
20449 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
20450 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
20451 (encode_coding_utf_16): Likewise.
20452 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
20453 (detect_coding, detect_coding_system): Handle utf-8-auto.
20454 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
20455 (syms_of_coding): Fix setting up of Vcoding_category_table.
20456
20457 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
20458
20459 * process.c (Faccept_process_output): If `millisec' is non-nil,
20460 `seconds' default to 0.
20461 (wait_reading_process_output): Also return non-nil if we read output
20462 from a non-running process.
20463
20464 2008-05-29 Jason Rumney <jasonr@gnu.org>
20465
20466 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
20467 `raster' specified.
20468 (add_font_entity_to_list): Allow non-opentype truetype fonts back
20469 in the uniscribe backend, but disallow any font that has no
20470 unicode subrange support.
20471
20472 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
20473
20474 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
20475 Fix typos in docstrings.
20476
20477 2008-05-29 Kenichi Handa <handa@m17n.org>
20478
20479 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
20480 (Fx_family_fonts): Set frame correctly.
20481
20482 2008-05-28 Jason Rumney <jasonr@gnu.org>
20483
20484 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
20485
20486 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
20487
20488 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
20489 calling build_annotations.
20490
20491 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
20492
20493 * coding.c (Fdecode_coding_region, Fencode_coding_region)
20494 (Fencode_coding_string):
20495 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
20496 <latin-extra-code-table>: Fix typos in docstrings.
20497 (syms_of_coding) <coding-system-alist>: Doc fix.
20498 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
20499
20500 2008-05-28 Kenichi Handa <handa@m17n.org>
20501
20502 * fontset.c (Ffont_info): Don't call font_close_object.
20503
20504 * font.c (font_parse_family_registry): Use Ffont_put to validate
20505 foundry and family.
20506 (font_delete_unmatched): Don't check spacing.
20507 (font_list_entities): Add spacing to the spec to list fonts.
20508
20509 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
20510 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
20511
20512 * coding.c (encode_coding_raw_text): Fix previous change.
20513 (encode_coding_object): When the dst_object is a buffer and is
20514 different from src_object, move gap to PT.
20515
20516 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
20517
20518 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
20519
20520 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20521
20522 * coding.c (encode_coding_raw_text): Set coding->produced_char for
20523 all branches. Compute it differently.
20524
20525 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
20526
20527 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
20528
20529 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
20530 into "else if () ... else ...".
20531
20532 2008-05-27 Jason Rumney <jasonr@gnu.org>
20533
20534 * w32font.c (w32font_open_internal): Determine if glyph indices
20535 are likely to work here.
20536
20537 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
20538
20539 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
20540 draw overlap glyphs with appropriate highlighting.
20541
20542 2008-05-27 Kenichi Handa <handa@m17n.org>
20543
20544 * xfont.c (xfont_open): Fix calculation of font->average_width.
20545
20546 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20547
20548 * casefiddle.c (casify_object): Try to guess better whether the
20549 argument is a byte or a char.
20550
20551 2008-05-26 Andreas Schwab <schwab@suse.de>
20552
20553 * xselect.c (x_reply_selection_request): Properly handle format == 32.
20554 Always send multiples of format size.
20555
20556 * xterm.c (x_set_frame_alpha): Fix type mismatch.
20557
20558 2008-05-26 Jason Rumney <jasonr@gnu.org>
20559
20560 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
20561 (compute_metrics): Don't set failure if we just cleared the cache.
20562 (w32_weight_table): Remove unused variable.
20563 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
20564 backwards compatibility.
20565
20566 2008-05-25 Kenichi Handa <handa@m17n.org>
20567
20568 * w32term.c (x_draw_glyph_string):
20569 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
20570
20571 * xfaces.c: Delete unused function prototypes.
20572 (xstrlwr, font_frame): Delete them.
20573 (clear_face_cache): Delete unused variable.
20574
20575 * xftfont.c (xftfont_open): Delete unused variable.
20576 If underline_thickness is not 1, adjust underline_position.
20577
20578 * ftxfont.c (ftxfont_open): Delete unused variable.
20579
20580 * fontset.c (face_for_char): Optimize for the case of no charset
20581 property.
20582
20583 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
20584 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
20585 (otf_open, font_otf_capability, generate_otf_features)
20586 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
20587 Comment out by surrounding "#if 0" and "#endif" for the moment.
20588 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
20589 (syms_of_font): Codes for accessing above commented out.
20590
20591 2008-05-24 Eli Zaretskii <eliz@gnu.org>
20592
20593 * w32proc.c: Include dispextern.h.
20594
20595 * w32.c: Include dispextern.h.
20596
20597 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
20598
20599 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
20600 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
20601 Fix typos in docstrings.
20602
20603 2008-05-23 Jason Rumney <jasonr@gnu.org>
20604
20605 * xsmfns.c: Remove includes that are already included by config.h.
20606
20607 2008-05-23 Kenichi Handa <handa@m17n.org>
20608
20609 * charset.c (Qemacs, charset_emacs): New variables.
20610 (char_charset): Fix for non-Unicode characters.
20611 (syms_of_charset): Define charset_emacs.
20612
20613 * w32term.c (x_draw_glyph_string): Be sure to update
20614 s->underline_thickness and s->underline_position. Be sure to draw
20615 underline within the current line area.
20616
20617 * xterm.c (x_draw_glyph_string): Be sure to update
20618 s->underline_thickness and s->underline_position. Be sure to draw
20619 underline within the current line area.
20620
20621 * fontset.c: Delete unused variables and add casting for char *
20622 throughout the file.
20623 (fontset_font): Try the fallback fonts of the current fontset
20624 before consulting the default fontset.
20625
20626 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
20627
20628 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
20629
20630 2008-05-22 Jason Rumney <jasonr@gnu.org>
20631
20632 * font.c: Don't include strings.h.
20633
20634 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
20635
20636 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
20637 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
20638 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
20639 to call xstrcasecmp.
20640
20641 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
20642
20643 * fontset.c (fs_query_fontset): Use xstrcasecmp.
20644
20645 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
20646
20647 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
20648
20649 2008-05-22 Kenichi Handa <handa@m17n.org>
20650
20651 * puresize.h (BASE_PURESIZE): Increase to 1220000.
20652
20653 * font.c (font_prop_validate_style): Adjust for the format
20654 change of font_style_table.
20655
20656 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
20657 two args.
20658
20659 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
20660 two args.
20661
20662 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
20663
20664 * minibuf.c (keys_of_minibuf): Delete.
20665 * lisp.h (keys_of_minibuf): Delete.
20666 * emacs.c (main): Don't call keys_of_minibuf.
20667
20668 2008-05-22 Kenichi Handa <handa@m17n.org>
20669
20670 * ftfont.c (ftfont_resolve_generic_family): Rename from
20671 ftfont_list_generic_family. Return a single family for each
20672 generic family.
20673 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
20674 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
20675 Call font_add_log.
20676 (ftfont_match): Call font_add_log.
20677
20678 * font.h (Ffont_xlfd_name): EXFUN adjusted.
20679 (FONT_DEBUG): Define it.
20680 (font_add_log): Extern it.
20681 (font_assert): Rename from xassert.
20682
20683 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
20684 (xfont_list_family): Call font_add_log.
20685 (xfont_match): Likewise.
20686 (memq_no_quit): Delete.
20687
20688 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
20689 call of Ffont_xlfd_name.
20690
20691 * xfaces.c (struct table_entry, slant_table, weight_table)
20692 (swidth_table): Move to font.c.
20693
20694 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
20695 xassert are changed to font_assert. Delete many unused variables.
20696 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
20697 New variables.
20698 (struct table_entry): Move from xfaces.c and modified.
20699 (weight_table, slant_table, width_table): Move from xfaces.c and
20700 contents adjusted for the change of struct table_entry.
20701 (font_style_to_value, font_style_symbolic): Adjust for the
20702 format change of font_style_table.
20703 (font_parse_family_registry): Don't overwrite existing foundry and
20704 family of font_spec.
20705 (font_score): Fix calculation of diff for sizes.
20706 (font_sort_entites): Call font_add_log.
20707 (font_delete_unmatched): Return a newly created list.
20708 (font_list_entities): Fix previous change. Call font_add_log.
20709 (font_matching_entity, font_open_entity, font_close_entity):
20710 Call font_add_log.
20711 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
20712 (Finternal_set_font_style_table): Delete.
20713 (BUILD_STYLE_TABLE): New macro.
20714 (build_style_table): New function.
20715 (Vfont_log, font_log_env_checked): New variables.
20716 (font_add_log): New function.
20717 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
20718 Declare Lisp variables "font-weight-table", "font-slant-table",
20719 "font-width-table", and "font-log". Initialize font_style_table.
20720
20721 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
20722
20723 * xterm.c (x_set_frame_alpha): Move declarations before statements.
20724
20725 2008-05-21 Seiji Zenitani <zenitani@mac.com>
20726 Ryo Yoshitake <ryo@shiftmode.net>
20727
20728 * frame.c (Qalpha): Add a new frame parameter `alpha'.
20729 (Vframe_alpha_lower_limit): New variable.
20730 (x_set_alpha): New function.
20731
20732 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
20733
20734 * xfns.c (x-create-frame, Qalpha):
20735 Initialize the frame parameter `alpha'.
20736 * xterm.c (OPAQUE, OPACITY): New.
20737 (x_set_frame_alpha): New function.
20738 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
20739
20740 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
20741 * w32fns.c (w32_frame_parm_handlers): Likewise.
20742
20743 2008-05-20 Jason Rumney <jasonr@gnu.org>
20744
20745 * w32font.c (add_font_entity_to_list): Don't add non-opentype
20746 truetype fonts to opentype list.
20747
20748 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
20749
20750 * fontset.c (Ffontset_info): Doc fix.
20751 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
20752 <ignore-relative-composition>: Fix typos in docstrings.
20753
20754 * font.c (syms-of-font) <font-encoding-alist>:
20755 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
20756 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
20757 (Ffont_otf_alternates): Doc fixes.
20758
20759 2008-05-20 Kenichi Handa <handa@m17n.org>
20760
20761 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
20762 font.h through out the file.
20763 (FONT_DRIVERS): Rename from FONTOBJ.
20764 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
20765 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
20766
20767 * emacs.c (main): Call syms_of_font unconditionally.
20768
20769 * font.h (find_font_encoding): Extern it.
20770
20771 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
20772 fontset.c.
20773 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
20774 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
20775 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
20776 only when HAVE_WINDOW_SYSTEM is defined.
20777 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
20778 when HAVE_WINDOW_SYSTEM is defined.
20779
20780 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
20781 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
20782
20783 * xfaces.c: Include font.h unconditionally.
20784 (merge_face_ref, merge_face_vectors)
20785 (Finternal_set_lisp_face_attribute): Cancel the previous change.
20786
20787 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
20788
20789 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
20790 indirect_variable.
20791 * eval.c (lisp_indirect_variable): New fun.
20792 (Fuser_variable_p): Use it.
20793
20794 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
20795
20796 * lisp.h (indirect_variable):
20797 * data.c (indirect_variable, let_shadows_buffer_binding_p):
20798 Use Lisp_Symbol pointers rather than Lisp_Object.
20799 Adjust callers.
20800 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
20801 To this end, change calling-convention.
20802
20803 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
20804 if some non-hidden buffers are selected by string&pred.
20805
20806 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
20807
20808 * process.c (wait_reading_process_output): Always check status
20809 when in batch mode.
20810
20811 2008-05-19 Kenichi Handa <handa@m17n.org>
20812
20813 * font.c (font_list_entities): Fix handling of cache.
20814 (font_matching_entity): Likewise.
20815
20816 * ftfont.c (cs_iso8859_1): Delete.
20817 (ft_face_cache): New variable.
20818 (struct ftfont_info): New member fc_charset_idx.
20819 (ftfont_build_basic_charsets): Delete.
20820 (fc_charset_table): New variable.
20821 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
20822 . FC_CHARSET_IDX) as :font-entity property in the font entity.
20823 Callers changed.
20824 (ftfont_lookup_cache, ftfont_get_charset): New functions.
20825 (ftfont_spec_pattern): New argument fc_charset_idx.
20826 Check registry more rigidly. Change callers.
20827 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
20828 change of :font-entity property of the font.
20829
20830 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
20831 property of the font.
20832
20833 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
20834
20835 * coding.c (Fcoding_system_p): Rename argument to match docstring.
20836 (Funencodable_char_position, Fcheck_coding_systems_region)
20837 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
20838 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
20839 (Ffind_operation_coding_system, Fset_coding_system_priority)
20840 (Fcoding_system_eol_type): Doc fixes.
20841
20842 2008-05-17 Glenn Morris <rgm@gnu.org>
20843
20844 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
20845
20846 2008-05-16 Eli Zaretskii <eliz@gnu.org>
20847
20848 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
20849 and st_gid.
20850
20851 * frame.c (Fdelete_frame): Don't call font_update_drivers if
20852 HAVE_WINDOW_SYSTEM is not defined.
20853
20854 * xfaces.c (merge_face_ref, merge_face_vectors)
20855 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
20856 HAVE_WINDOW_SYSTEM is defined.
20857 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
20858
20859 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
20860
20861 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
20862
20863 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20864
20865 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
20866
20867 2008-05-15 Kenichi Handa <handa@m17n.org>
20868
20869 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
20870 preference.
20871
20872 2008-05-15 Glenn Morris <rgm@gnu.org>
20873
20874 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
20875
20876 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
20877
20878 * fns.c (init_fns): Don't initialize weak_hash_tables here.
20879 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
20880
20881 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
20882
20883 2008-05-15 Kenichi Handa <handa@m17n.org>
20884
20885 * ftfont.c (ftfont_list): Downcase family name to check generic
20886 families.
20887
20888 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
20889 font-spec for QCfont value.
20890
20891 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
20892 buffer. Check the return value of it.
20893
20894 2008-05-14 Jason Rumney <jasonr@gnu.org>
20895
20896 * w32term.c (w32_get_glyph_overhangs): Remove.
20897 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
20898
20899 2008-05-14 Kenichi Handa <handa@m17n.org>
20900
20901 * font.c (font_prop_validate): Make nil a valid value.
20902 (font_clear_cache): Check if the cached vector of entities is nil
20903 or not.
20904
20905 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20906
20907 * emacs.c (main_thread): Conditionalize on
20908 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
20909 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
20910
20911 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
20912 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
20913 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
20914
20915 2008-05-14 Kenichi Handa <handa@m17n.org>
20916
20917 * coding.c (detect_coding_iso_2022): Ignore a coding category that
20918 has no corresponding coding system.
20919
20920 2008-05-14 Jason Rumney <jasonr@gnu.org>
20921
20922 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
20923
20924 * w32font.h (w32font_open_internal): Update declaration.
20925
20926 * w32font.c (w32font_open_internal): Change last argument from
20927 w32font_info struct to font object. Fill in font object from
20928 font_entity. Get Outline metrics if possible. Use them to
20929 calculate underline position and thickness. Use xlfd name as name
20930 property. Don't set codepage.
20931 (w32font_open): Pass font_object to w32font_open_internal. Don't
20932 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
20933 (w32font_draw): Use s->font.
20934 (clear_cached_metrics): Don't clear non-existent blocks.
20935
20936 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
20937 font was not found.
20938 (x_draw_glyph_string): Use underline position and thickness from font.
20939
20940 * w32uniscribe.c (uniscribe_open): Pass font_object to
20941 w32font_open_internal.
20942
20943 2008-05-14 Kenichi Handa <handa@m17n.org>
20944
20945 These changes are to delete all legacy font-handling codes, and
20946 make Emacs use only font-backends.
20947
20948 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
20949 (frame.o, image.o, print.o): Depend on $(FONTSRC).
20950
20951 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
20952
20953 * charset.h (Vcharset_non_preferred_head)
20954 (Vcurrent_iso639_language): Extern them.
20955
20956 * charset.c (Vcharset_non_preferred_head): New variable.
20957 (Vcurrent_iso639_language): New variable.
20958 (syms_of_charset): Declare it as a Lisp variable.
20959 (char_charset): Don't check non preferred charsets. As a last
20960 resort, return charset_unicode.
20961 (Fset_charset_priority): Update Vcharset_non_preferred_head.
20962
20963 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
20964 conditionals. Don't check enable_font_backend. Delete all codes
20965 used only when USE_FONT_BACKEND is not defined.
20966
20967 * dispextern.h (struct glyph_string): Change type of `font' to
20968 `struct font *'.
20969 (struct glyph_string): New member underline_position and
20970 underline_thickness.
20971 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
20972 (struct face): Change type of `font' to `struct font *'.
20973 Remove members `font_name', `font_info_id'.
20974 (per_char_metric, encode_char): Delete externs.
20975 (calc_pixel_width_or_height): Adjust the prototype.
20976
20977 * emacs.c (enable_font_backend): Delete extern.
20978 (main): Don't set enable_font_backend. Don't check the command
20979 line argument "-disable-font-backend".
20980
20981 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
20982 (enum font_property_index): New members FONT_DPI_INDEX,
20983 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
20984 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
20985 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
20986 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
20987 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
20988 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
20989 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
20990 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
20991 (struct font_spec, struct font_entity): New structs.
20992 (FONT_ENCODING_NOT_DECIDED): Move from fontset.h.
20993 (struct font): Many members from old "struct font_info" moved to
20994 here. Members font and entity deleted.
20995 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
20996 the new font-related objects.
20997 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
20998 (CHECK_FONT_GET_OBJECT): Likewise.
20999 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
21000 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move from font.h.
21001 (struct font_driver): New members case_sensitive anc check.
21002 Type of the member list and open changed.
21003 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
21004 (font_symbolic_width, font_find_object, font_get_spec)
21005 (font_set_lface_from_name): Delete extern.
21006 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
21007
21008 * font.c: Include <strings.h>.
21009 (enable_font_backend): Delete it.
21010 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
21011 (CHECK_VALIDATE_FONT_SPEC): Delete it.
21012 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move to font.h.
21013 (null_string): Delete it.
21014 (null_vector): Make it static.
21015 (font_family_alist): Delete it.
21016 (Qnormal): Extern it.
21017 (QCextra, QClanguage): Delete it.
21018 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
21019 (font_make_spec, font_make_entity, font_make_object)
21020 (font_intern_prop): Rename from intern_downcase. Don't downcase
21021 the string. Callers changed.
21022 (font_pixel_size): Adjust for the format change of font-related
21023 objects.
21024 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
21025 (font_style_to_value, font_style_symbolic): New function.
21026 (build_font_family_alist): Delete it.
21027 (font_registry_charsets): Use Fassoc_string instead of
21028 assq_no_quit.
21029 (font_prop_validate_symbol): Don't return null_string.
21030 (font_prop_validate_style): Adjust for the change of
21031 style-related values in a font vector.
21032 (font_property_table): Delete entries for QClanguage and
21033 QCantialias, add entries for QCavgwidth.
21034 (get_font_prop_index): Delete the 2nd argument FROM.
21035 (font_prop_validate): Arguments changed.
21036 (font_put_extra): Adjust for the change of font-related objects.
21037 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
21038 (font_parse_fcname, font_unparse_fcname)
21039 (font_prepare_composition): Likewise.
21040 (font_parse_family_registry): Rename from font_merge_old_spec.
21041 (otf_open): Delete the 1st arg entity.
21042 (font_otf_capability): Adjust for the above change.
21043 (font_score): New arg alternate_families. Adjusted for the change
21044 of font-related objects.
21045 (font_sort_entites): New arg best_only.
21046 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
21047 Delete them.
21048 (font_match_p): Check alternate families.
21049 (font_find_object): Delete it.
21050 (font_check_object): New function.
21051 (font_clear_cache): Adjust for the change of font-related objects.
21052 (font_delete_unmatched): New arg.
21053 (font_list_entities): Call font_driver->list with a spec that
21054 doesn't specify style-related properties.
21055 (font_matching_entity): Arguments changed. Caller changed.
21056 (font_open_entity): Adjust for the change of font-related objects.
21057 (font_close_object, font_has_char, font_encode_char)
21058 (font_get_name, font_get_spec): Likewise.
21059 (font_spec_from_name, font_clear_prop, font_update_lface):
21060 New functions.
21061 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
21062 (font_prepare_for_face, font_done_for_face, font_open_by_name)
21063 (font_at): Adjust for the change of font-related objects.
21064 (font_range): New function.
21065 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
21066 (Ffont_xlfd_name): Adjust for the change of font-related objects.
21067 (Fcopy_font_spec, Fmerge_font_spec): New function.
21068 (Ffont_family_list): Rename from list-families.
21069 (Finternal_set_font_style_table): Arguments changed.
21070 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
21071 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjust for the
21072 change of font-related objects.
21073 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
21074
21075 * fontset.h (struct font_info): Delete it. Most members go to
21076 struct font.
21077 (FONT_ENCODING_NOT_DECIDED): Move to font.h.
21078 (enum FONT_SPEC_INDEX): Delete it.
21079 (font_info, list_fonts_func, load_font_func, query_font_func)
21080 (set_frame_fontset_func, find_ccl_program_func)
21081 (get_font_repertory_func, new_fontset_from_font_name):
21082 Delete externs.
21083 (fontset_from_font_name): Extern it.
21084 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
21085 (FONT_INFO_FROM_FACE): Deleted.
21086 (face_for_font): Adjust prototype.
21087
21088 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
21089 conditionals. Don't check enable_font_backend. Delete all codes
21090 used only when USE_FONT_BACKEND is not defined.
21091 (get_font_info_func, list_font_func, load_font_func)
21092 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
21093 (get_font_repertory_func): Delete them.
21094 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
21095 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
21096 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
21097 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
21098 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
21099 (fontset_compare_rfontdef): New function.
21100 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
21101 rfont-defs by qsort. Adjusted for the change of font-group vector.
21102 (load_font_get_repertory): Deleted.
21103 (fontset_find_font): Use new macros to ref/set elements of
21104 font-def and rfont-def.
21105 (fontset_font): Fix the timing of remembering that no font for C.
21106 (free_face_fontset): Do nothing if the face has no fontset.
21107 (face_suitable_for_char_p): Use new macros to ref/set elements of
21108 rfont-def.
21109 (face_for_char): Likewise. Call face_for_char with font_object.
21110 (fs_load_font): Delete. Delete #pragma surrounding it.
21111 (fs_query_fontset): Use strcasecmp instead of strcmp.
21112 (generate_ascii_font_name): Adjust for the format change of
21113 font-spec.
21114 (Fset_fontset_font): Likewise. Use new macros to set elements of
21115 font-def.
21116 (Fnew_fontset): Use font_unparse_xlfd to generate
21117 FONTSET_ASCII (fontset).
21118 (new_fontset_from_font_name): Deleted.
21119 (fontset_from_font): Rename from new_fontset_from_font. Check if
21120 a fontset is already created for the font. FIx updating of
21121 Vfontset_alias_alist.
21122 (fontset_ascii_font): Deleted.
21123 (Ffont_info): Adjust for the format change of font-spec.
21124 (Finternal_char_font): Likewise.
21125 (Ffontset_info): Likewise.
21126 (syms_of_fontset): Don't check load_font_func.
21127
21128 * fns.c (internal_equal): Handle PREV_FONT.
21129
21130 * frame.h: Delete USE_FONT_BACKEND conditional.
21131
21132 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
21133 conditionals. Don't check enable_font_backend. Delete all codes
21134 used only when USE_FONT_BACKEND is not defined.
21135 (x_set_font): Call x_new_font, not x_new_fontset2.
21136 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
21137 already set for the frame.
21138
21139 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed.
21140 Make a font-entity by font_make_entity. Use font_intern_prop instead
21141 of intern_downcase. Use FONT_SET_STYLE to set a style-related
21142 font property. If a font is scalable, set avgwidth property to 0.
21143 Set font-entity property by font_put_extra.
21144 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
21145 (ffont_driver): Adjust for the change of struct font_driver.
21146 (ftfont_spec_pattern): New function.
21147 (ftfont_list): Return a list, not vector.
21148 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
21149 (ftfont_list_family): Don't downcase names.
21150 (ftfont_free_entity): Deleted.
21151 (ftfont_open): Return a font-object. Adjusted for the change of
21152 struct font. Get underline_thickness and underline_position from
21153 font property. Don't update dpyinfo->smallest_font_height and
21154 dpyinfo->smallest_char_width.
21155 (ftfont_close): Don't free `struct font'.
21156 (ftfont_has_char): Adjust for the format change of font-entity.
21157 (ftfont_encode_char, ftfont_text_extents): Likewise.
21158
21159 * ftxfont.c (ftxfont_list): Return a list, not vector.
21160 (ftxfont_open): Return a font-object. Adjusted for the change of
21161 struct font. Get underline_thickness and underline_position from
21162 font property. Don't update dpyinfo->smallest_font_height and
21163 dpyinfo->smallest_char_width.
21164 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
21165 (ftxfont_draw): Adjust for the change of struct font.
21166
21167 * image.c (image_ascent): Don't include "charset.h".
21168 Include "character.h" and "font.h".
21169
21170 * lisp.h (enum pvec_type): New member PREV_FONT.
21171 (Fassoc_string): EXFUN it.
21172
21173 * print.c: Include font.h.
21174 (print_object): Handle font-related objects.
21175
21176 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
21177 conditionals. Don't check enable_font_backend. Delete all codes
21178 used only when USE_FONT_BACKEND is not defined.
21179 (handle_auto_composed_prop): Do nothing if it->f is not on a
21180 window system. Check how many following characters can be
21181 displayed by the same font.
21182 (calc_pixel_width_or_height): Type of the 4th arg is changed to
21183 'struct font *'.
21184 (get_char_face_and_encoding): Assign the whole encoding task to
21185 the `encode-char' method of a font driver.
21186 (fill_composite_glyph_string): Adjust for the change of `struct
21187 face' and `struct glyph_string'.
21188 (fill_glyph_string): Likewise.
21189 (get_per_char_metric): Arguments changed.
21190 (x_get_glyph_overhangs): Adjust for the change of `struct face'
21191 and `struct glyph_string'.
21192 (produce_stretch_glyph, calc_line_height_property)
21193 (x_produce_glyphs): Likewise.
21194
21195 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
21196 conditionals. Don't check enable_font_backend. Delete all codes
21197 used only when USE_FONT_BACKEND is not defined.
21198 Use FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
21199 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
21200 (Qp): Extern them.
21201 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
21202 Deleted.
21203 (struct font_name): Deleted.
21204 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
21205 (compare_fonts_by_sort_order): New function.
21206 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
21207 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
21208 Deleted.
21209 (Fx_family_fonts): Use font_list_entities, and sort fonts by
21210 compare_fonts_by_sort_order.
21211 (Fx_font_family_list): Call Ffont_family_list.
21212 (face_numeric_value, face_numeric_weight, face_numeric_slant)
21213 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
21214 (face_symbolic_slant, face_symbolic_swidth)
21215 (split_font_name_into_vector, build_font_name_from_vector)
21216 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
21217 (font_rescale_ratio, split_font_name, build_font_name)
21218 (free_font_names, sort_fonts, x_face_list_fonts)
21219 (face_font_available_p, sorted_font_list, cmp_font_names)
21220 (font_list_1, concat_font_list, font_list, remove_duplicates):
21221 Deleted.
21222 (Fx_list_fonts): Use Ffont_list.
21223 (LFACE_AVGWIDTH): Deleted.
21224 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
21225 by FONTP.
21226 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
21227 (set_lface_from_font_name): Delete it.
21228 (set_lface_from_font): Rename from
21229 set_lface_from_font_and_fontset. Caller changed. Don't set
21230 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
21231 for face.
21232 (merge_face_vectors): Copy font-spec if necessary.
21233 Clear properties of the font-spec if necessary.
21234 (merge_face_ref): Clear properties of the font-spec if necessary.
21235 (Finternal_set_lisp_face_attribute): Likewise.
21236 (set_font_frame_param): Use font_load_for_lface to load a
21237 font-object, and call Fmodify_frame_parameters with it.
21238 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
21239 font name by Ffont_xlfd_name.
21240 (Finternal_lisp_face_attribute_values): Don't check QCweight,
21241 QCslant, and QCwidth.
21242 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
21243 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
21244 Compare fonts by EQ.
21245 (lookup_non_ascii_face): Deleted.
21246 (face_for_font): The 2nd argument changed.
21247 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
21248 Check atomic font properties by case insensitive.
21249 (realize_non_ascii_face): Set face->overstrike correctly.
21250 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
21251 (dump_realized_face): Get font name from
21252 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
21253
21254 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
21255 conditionals. Don't check enable_font_backend. Delete all codes
21256 used only when USE_FONT_BACKEND is not defined.
21257 (xic_create_xfontset): Original code deleted and renamed from
21258 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
21259 (x_make_gc): Don't set GCFont in GCs.
21260 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
21261 opened by "fixed".
21262 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
21263 find_ccl_program_func, query_font_func, set_frame_fontset_func,
21264 get_font_repertory_func.
21265
21266 * xfont.c: Include <stdlib.h> and "ccl.h".
21267 (struct xfont_info): New structure.
21268 (xfont_query_font): Deleted.
21269 (xfont_find_ccl_program): Rename from x_find_ccl_program and
21270 moved from xterm.c.
21271 (xfont_driver): Adjust for the change of struct font_driver.
21272 (compare_font_names): New function.
21273 (xfont_list_pattern): Sort font names case insensitively.
21274 Make font_entity by calling font_make_entity. Avoid auto-scaled fonts.
21275 (xfont_list): Return a list, not vector.
21276 (xfont_match): If the font doesn't have QCname property, generate
21277 a name from the other font properties.
21278 (xfont_open): Return a font-object. Adjusted for the change of
21279 struct font. Get underline_thickness and underline_position from
21280 font property. Don't update dpyinfo->smallest_font_height and
21281 dpyinfo->smallest_char_width.
21282 (xfont_close): Don't free struct font.
21283 (xfont_prepare_face): Adjust for the change of struct font.
21284 (xfont_done_face): Deleted.
21285 (xfont_has_char): Adjust for the change of struct font.
21286 (xfont_encode_char, xfont_draw): Likewise.
21287 (xfont_check): New function.
21288
21289 * xftfont.c (xftfont_list): Adjust for the change of `list'
21290 callback function.
21291 (xftfont_match): Adjust for the format change of font-entity.
21292 (xftfont_open): Adjust for the format change of font-entity and
21293 font-object. Adjusted for the change of struct font. Return a
21294 font-object. Don't update dpyinfo->smallest_font_height and
21295 dpyinfo->smallest_char_width.
21296 (xftfont_close): Block input while calling XftFontClose.
21297 (xftfont_prepare_face): Don't block input while calling
21298 xftfont_get_colors. Adjusted for the change of struct font.
21299 (xftfont_shape): Return value of error case fixed.
21300
21301 * xrdb.c (x_load_resources): Don't setup a fontset resource.
21302
21303 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
21304 conditionals.
21305 (FONT_WIDTH): Return (f)->max_width.
21306 (struct x_display_info): Delete member `font'.
21307 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
21308 (x_find_ccl_program, x_get_font_repertory): Delete externs.
21309 (struct x_output): Change type of `font' to `struct font *'.
21310
21311 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
21312 conditionals. Don't check enable_font_backend. Delete all codes
21313 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
21314 (x_per_char_metric, x_encode_char): Deleted.
21315 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
21316 (x_compute_glyph_string_overhangs): Adjust for the change of
21317 `struct face'.
21318 (x_draw_glyph_string_foreground)
21319 (x_draw_composite_glyph_string_foreground): Likewise.
21320 (x_draw_glyph_string): Likewise. Use font->underline_position and
21321 font->underline_thickness.
21322 (x_new_font): Rename from x_new_fontset2.
21323 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
21324 (x_check_font): Call `check' method of a font driver.
21325 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
21326 (x_query_font, x_get_font_repertory): Deleted.
21327 (x_find_ccl_program): Rename and moved to xfont.c.
21328 (x_redisplay_interface): Adjust for the change of `struct
21329 redisplay_interface'.
21330
21331 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
21332 conditionals. Don't check enable_font_backend. Delete all codes
21333 used only when USE_FONT_BACKEND is not defined. Surround non-used
21334 code by "#ifdef OLD_FONT" and "endif".
21335 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
21336
21337 * w32font.h (struct w32font_info): New member.
21338 (FONT_COMPAT): New macro.
21339 (w32font_open_internal): Prototype adjusted.
21340
21341 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
21342 OLD_FONT" and "endif".
21343
21344 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
21345 conditionals. Don't check enable_font_backend. Delete all codes
21346 used only when USE_FONT_BACKEND is not defined.
21347 (w32font_open): Return a font-object. Make a font-object by
21348 font_make_object. Adjusted for the change of struct w32font_info.
21349 (w32font_close): Don't free struct font. Adjusted for the change
21350 of struct w32font_info.
21351 (w32font_encode_char, w32font_text_extents, w32font_draw):
21352 Adjust for the change of struct w32font_info.
21353 (w32font_draw): Likewise.
21354 (w32font_list_internal): Return a list, not vector.
21355 (w32font_open_internal): Change the 4th arg to font-object.
21356 Adjusted for the change of struct w32font_info and font-object format.
21357 (add_font_name_to_list): Don't downcase names.
21358 (w32_enumfont_pattern_entity): Make a font-entity by
21359 font_make_entity. Adjusted for the format change of font-entity.
21360 Use FONT_SET_STYLE to set a style-related font property. If a
21361 font is scalable, set avgwidth property to 0. Set font-entity
21362 property by font_put_extra.
21363 (font_matches_spec): Adjust for the format change of font-entity.
21364 (w32_weight_table, w32_decode_weight): New variables.
21365 (w32_encode_weight): New function.
21366 (fill_in_logfont): Adjust for the format change of font-spec.
21367 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
21368 weight value.
21369 (w32font_driver): Adjust for the change of struct font_driver.
21370
21371 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
21372 conditionals. Don't check enable_font_backend. Surround non-used
21373 code by "#ifdef OLD_FONT" and "endif".
21374 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
21375 (FONT_AVG_WIDTH): Adjust for the change of struct font.
21376
21377 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
21378 conditionals. Don't check enable_font_backend. Delete all codes
21379 used only when USE_FONT_BACKEND is not defined. Surround non-used
21380 code by "#ifdef OLD_FONT" and "endif".
21381
21382 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
21383 (uniscribe_open): Return value changed to font-object.
21384 Adjusted for the format change of font-object.
21385 (uniscribe_otf_capability): Adjust for the change of struct font.
21386 (add_opentype_font_name_to_list): Don't downcase names.
21387 (uniscribe_font_driver): Adjust for the change of struct
21388 font_driver.
21389
21390 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
21391
21392 * dispnew.c (update_frame_1): Check if tty output is still valid
21393 before flushing it.
21394
21395 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
21396
21397 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
21398 to Gtk+ menus.
21399
21400 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
21401
21402 * dired.c (file_name_completion): Tweak the code so as to always do it
21403 in a single pass. Tighten the scope of some variables.
21404
21405 * dired.c (Qdefault_directory): New var.
21406 (file_name_completion): Use it instead of Fexpand_file_name.
21407 (syms_of_dired): Initialize it.
21408
21409 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
21410
21411 * fileio.c (double_dollars): Remove dead code.
21412
21413 2008-05-10 Eli Zaretskii <eliz@gnu.org>
21414
21415 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
21416 Mention w32-get-true-file-attributes in doc string.
21417
21418 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
21419
21420 2008-05-09 Glenn Morris <rgm@gnu.org>
21421
21422 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
21423 2008-04-23.
21424
21425 2008-05-09 Eli Zaretskii <eliz@gnu.org>
21426
21427 Support for reporting owner and group of each file on MS-Windows:
21428 * dired.c (stat_uname, stat_gname): New functions, with special
21429 implementation for w32.
21430 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
21431
21432 * w32.c: Rename the_passwd_* to dflt_passwd_*.
21433 (dflt_group_name): New static variable.
21434 (dflt_group): Rename from the_group.
21435 (init_user_info): Init dflt_group fields. Get user's group name
21436 from LookupAccountSid.
21437 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
21438 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
21439 New initialization states.
21440 (globals_of_w32): Initialize them to zero. Initialize the default
21441 group name to "None".
21442 (GetFileSecurity_Name): New global var, the name of the function
21443 to call for GetFileSecurity.
21444 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
21445 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
21446 (get_file_security, get_security_descriptor_owner)
21447 (get_security_descriptor_group, is_valid_sid)
21448 (get_file_security_desc, get_rid, get_name_and_id)
21449 (get_file_owner_and_group): New functions.
21450 (stat): Use get_file_security_desc and get_file_owner_and_group to
21451 report the owner and primary group of each file. Don't ignore the
21452 high 32 bits of file's size, now that st_size is 64-bit wide.
21453 Fix test when to get true file attributes.
21454 (init_user_info): Use get_rid instead of equivalent inline code.
21455 (fstat): Don't ignore the high 32 bits of file's size.
21456
21457 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
21458
21459 * image.c (png_load): Use correct bit-depth for setting background
21460 color.
21461
21462 2008-05-08 Eli Zaretskii <eliz@gnu.org>
21463
21464 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
21465 epa-hook.elc.
21466
21467 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
21468
21469 * font.c (Ffont_match_p): Don't use `iff' in docstring.
21470
21471 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
21472
21473 * macfns.c (Fx_create_frame): Make a copy of frame parameters
21474 because the original parameters are in pure storage now.
21475 (mac_window): Remove unused params. Update callers.
21476
21477 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
21478
21479 * lread.c (substitute_object_recurse): Use lower-level primitives.
21480 Don't signal errors when traversing sub-char-tables.
21481 Don't loop over all the possible characters when traversing char-tables.
21482
21483 * print.c (print_preprocess): Add sub-char-tables to the print-table,
21484 just like we do in print.c.
21485
21486 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
21487
21488 * minibuf.c (Ftry_completion): Remove code left over from when we used
21489 scmp instead of Fcompare_strings.
21490
21491 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
21492
21493 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
21494
21495 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21496
21497 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
21498 Create bitmap context in native byte order.
21499
21500 * macterm.c (XDrawLine)
21501 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
21502 context in native byte order.
21503
21504 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21505
21506 * config.in: Regenerate.
21507
21508 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
21509 New definitions for Image I/O support.
21510 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
21511 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
21512 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
21513 (mac_data_provider_release_data, image_load_image_io)
21514 [USE_MAC_IMAGE_IO]: New functions.
21515 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
21516 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
21517 (init_image_func_pointer) [MAC_OSX]: Remove function.
21518 (image_load_quartz2d) [MAC_OSX]: Check availability of
21519 CGImageCreateWithPNGDataProvider at compile time.
21520 Use lowercase `false' for boolean constant.
21521 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
21522 Use image_load_image_io.
21523 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
21524 Don't check MyCGImageCreateWithPNGDataProvider.
21525 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
21526 Don't call init_image_func_pointer.
21527
21528 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
21529
21530 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
21531 Make variable non-static.
21532 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
21533 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
21534
21535 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
21536 (RED_FROM_ULONG): Mask off higher bits.
21537 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
21538
21539 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
21540 Include AvailabilityMacros.h.
21541 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
21542 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
21543
21544 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
21545
21546 * chartab.c (Fset_char_table_range): If range is t, really set all
21547 chars to that value.
21548
21549 2008-05-03 Eli Zaretskii <eliz@gnu.org>
21550
21551 * dired.c (Ffile_attributes): Don't allow the device number become
21552 negative.
21553
21554 2008-05-02 Daiki Ueno <ueno@unixuser.org>
21555
21556 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
21557
21558 2008-05-02 Juri Linkov <juri@jurta.org>
21559
21560 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
21561 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
21562 DEFAULT argument as a list of default values in docstrings.
21563
21564 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
21565
21566 * puresize.h (BASE_PURESIZE): Increase to 1210000.
21567
21568 2008-05-01 Martin Rudalics <rudalics@gmx.at>
21569
21570 * dispnew.c (change_frame_size_1): Preserve small windows when
21571 shrinking frames by calling set_window_height|width with third
21572 arg 2.
21573
21574 * window.h (struct window): Replace field too_small_ok by field
21575 resize_proportionally.
21576
21577 * window.c (make_window): Initialize resize_proportionally.
21578 (enlarge_window): Temporarily set resize_proportionally to make
21579 sure that shrink_windows does scale the window proportionally.
21580 (shrink_windows): When window has resize_proportionally set try
21581 to shrink it proportionally by stealing from other windows.
21582 (struct saved_window, Fset_window_configuration)
21583 (compare_window_configurations): Handle resize_proportionally.
21584 (WINDOW_TOTAL_SIZE): New macro.
21585 (window_min_size, shrink_windows, size_window): Use it.
21586 (check_min_window_sizes): Remove. Invalid values of
21587 window-min-height|width are handled by window_min_size_2 now.
21588 (size_window, Fsplit_window, enlarge_window)
21589 (adjust_window_trailing_edge, grow_mini_window): Don't call
21590 check_min_window_sizes.
21591 (window_min_size_2, window_min_size_1, window_min_size):
21592 New argument safe_p for retrieving "safe" minimum sizes.
21593 (Fdisplay_buffer, Fsplit_window, enlarge_window)
21594 (adjust_window_trailing_edge, grow_mini_window):
21595 Adjust arguments of window_min_size... functions.
21596 (shrink_windows): Argument min_size removed. New argument
21597 safe_p allows shrinking windows to their safe minimum sizes.
21598 Calculate minimum size and decide whether a window shall be
21599 deleted for each window individually.
21600 (size_window): When nodelete_p equals 2, tell shrink_windows to
21601 delete windows only if their new minimum size is no more safe.
21602 (shrink_window_lowest_first): Call window_min_size_1 to make
21603 sure to preserve modeline of bottom-most window when resizing
21604 the minibuffer.
21605 (Fset_window_configuration, Fcurrent_window_configuration)
21606 (compare_window_configurations): Do not handle
21607 window-min-height|width any more.
21608 (syms_of_window): Clarify window-min-height|width doc-strings.
21609
21610 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
21611
21612 * dired.c (file_name_completion): Fix up the encoding/decoding issue
21613 some more. Copy some of the code from Ftry_completions.
21614 Remove special case code that dates back to initial revision when the
21615 slash was only added when necessary and that can't trigger nowadays.
21616
21617 2008-04-27 Kenichi Handa <handa@m17n.org>
21618
21619 * font.c (font_prop_validate): Signal `error' instead of `font'.
21620
21621 2008-04-29 Jason Rumney <jasonr@gnu.org>
21622
21623 * w32fns.c (Fw32_battery_status): New defun.
21624 (syms_of_w32fns): Defsubr it.
21625
21626 2008-04-28 Andreas Schwab <schwab@suse.de>
21627
21628 * dired.c (file_name_completion): Fix another mixing of encoded
21629 and decoded names.
21630
21631 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
21632
21633 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
21634
21635 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
21636
21637 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
21638
21639 2008-04-27 Andreas Schwab <schwab@suse.de>
21640
21641 * dired.c (file_name_completion): Fix inappropriate mixing of
21642 encoded and decoded names.
21643
21644 * xterm.c (XTread_socket): Fix use of uninitialized variable.
21645
21646 * puresize.h (BASE_PURESIZE): Increase to 1200000.
21647
21648 2008-04-26 Eli Zaretskii <eliz@gnu.org>
21649
21650 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
21651 2008-03-31, it's not needed anymore with `struct stat' definition
21652 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
21653 for the same reasons.
21654
21655 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
21656
21657 * m/sparc.h: Additional redefinitions for GNU/Linux.
21658
21659 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21660
21661 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
21662 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
21663 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
21664 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
21665 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
21666 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
21667 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21668 Likewise.
21669
21670 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
21671 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
21672 (mac_ax_number_of_characters): Add externs.
21673 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
21674 [USE_MAC_TSM]: Likewise.
21675 (mac_handle_text_input_event) [MAC_OSX]:
21676 Handle kEventTextInputOffsetToPos for no active input area case.
21677 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
21678 (mac_handle_document_access_event)
21679 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
21680 (install_application_handler) [MAC_OSX]: Register handlers for
21681 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
21682 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21683 Register mac_handle_document_access_event.
21684
21685 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
21686 Make functions non-static.
21687
21688 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
21689
21690 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
21691 (read_file_name_completion_ignore_case, insert_default_directory)
21692 (Qdefault_directory): Move to minibuffer.el.
21693 (Fread_file_name): Call the new `read-file-name' instead.
21694
21695 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21696
21697 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
21698 Make function non-static.
21699 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
21700 Remove function.
21701 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
21702 Move to mactoolbox.c.
21703 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
21704
21705 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
21706 (mac_rect_make): New macro.
21707
21708 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
21709 instead of float.
21710 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
21711 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
21712 (XSetBackground) [USE_CG_DRAWING]: Likewise.
21713 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
21714 CGRectMake.
21715 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
21716 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
21717 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
21718 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
21719 instead of WindowRef in argument type.
21720 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
21721 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
21722 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
21723 instead of DISPLAY. All uses changed.
21724 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
21725 (x_calc_absolute_position): Simplify so as not to use
21726 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
21727
21728 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
21729 instead of WindowRef in argument type.
21730 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
21731 [TARGET_API_MAC_CARBON]: Remove externs.
21732 (create_apple_event, mac_event_parameters_to_lisp)
21733 [TARGET_API_MAC_CARBON]: Add externs.
21734
21735 * mactoolbox.c (Vmac_ts_script_language_on_focus)
21736 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
21737 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
21738 is clicked.
21739 (x_activate_menubar): Remove extern for saved_menu_event_location.
21740 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
21741 Move from mac.c.
21742
21743 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21744
21745 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
21746 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
21747
21748 2008-04-23 Jason Rumney <jasonr@gnu.org>
21749
21750 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
21751 attributes only for local files.
21752
21753 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
21754 default to Qlocal.
21755
21756 2008-04-22 Juri Linkov <juri@jurta.org>
21757
21758 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
21759 read-buffer-to-switch instead of using the letter "B".
21760
21761 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
21762
21763 * fileio.c (Qdefault_directory): New variable.
21764 (Fread_file_name): Use it to pass `dir' to the completion functions.
21765
21766 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
21767
21768 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
21769
21770 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
21771
21772 * keyboard.c (Vpre_help_message): Remove.
21773 (show_help_echo): Remove default C code.
21774
21775 * dired.c (directory_files_internal, file_name_completion):
21776 Only call ENCODE_FILE if the string is indeed decoded.
21777
21778 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
21779
21780 * Makefile.in (TOOLKIT_DEFINES): Remove.
21781 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
21782
21783 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21784
21785 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
21786 (mactoolbox.o): New target.
21787
21788 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
21789 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
21790
21791 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
21792 Use mac_set_frame_window_background instead of XSetWindowBackground.
21793 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
21794 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
21795 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
21796 instead of SetWindowTitleWithCFString.
21797 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
21798 Move function to mactoolbox.c.
21799 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
21800 Use mac_set_window_modified instead of SetWindowModified.
21801 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
21802 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
21803 (Fx_focus_frame): Use mac_front_non_floating_window instead of
21804 FrontNonFloatingWindow. Use mac_activate_window instead of
21805 ActivateWindow. Use mac_active_non_floating_window instead of
21806 ActiveNonFloatingWindow.
21807 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
21808 Use mac_show_hourglass and mac_hide_hourglass.
21809 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
21810 instead of GetGlobalMouse.
21811 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
21812 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
21813 Use mac_bring_window_to_front instead of BringToFront.
21814 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
21815 mactoolbox.c.
21816 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
21817 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
21818 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
21819 mactoolbox.c.
21820
21821 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
21822 (XtPointer): Move typedef from macmenu.c.
21823 (enum button_type): Move enum from macmenu.c.
21824 (widget_value): Move typedef from macmenu.c.
21825 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
21826 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
21827 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
21828 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
21829 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
21830 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
21831 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
21832 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
21833 (Selection): Move typedef from macselect.c.
21834 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
21835 macterm.c.
21836 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
21837 (mac_is_window_collapsed, mac_bring_window_to_front)
21838 (mac_send_window_behind, mac_hide_window, mac_show_window)
21839 (mac_collapse_window, mac_front_non_floating_window)
21840 (mac_active_non_floating_window, mac_activate_window)
21841 (mac_move_window_structure, mac_move_window, mac_size_window)
21842 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
21843
21844 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
21845 (enum mac_menu_kind): Move enum to mactoolbox.c.
21846 (min_menu_id): Move variable to mactoolbox.c.
21847 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
21848 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
21849 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
21850 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
21851 [TARGET_API_MAC_CARBON]: Likewise.
21852 (XtPointer): Move typedef to macgui.h.
21853 (enum button_type): Move enum to macgui.h.
21854 (widget_value): Move typedef to macgui.h.
21855 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
21856 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
21857 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
21858 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
21859 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
21860 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
21861 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
21862 (popup_activated_flag): Make variable non-static.
21863 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
21864 (add_menu_item, fill_menu, dispose_menus):
21865 Move functions to mactoolbox.c.
21866 (restore_show_help_function, menu_target_item_handler)
21867 (install_menu_target_item_handler, mac_handle_dialog_event)
21868 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
21869 [TARGET_API_MAC_CARBON]: Likewise.
21870 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
21871 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
21872 (find_and_call_menu_selection, name_is_separator): Make function
21873 non-static.
21874 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
21875 to mactoolbox.c.
21876 (set_frame_menubar): Don't call install_menu_quit_handler.
21877 (menu_item_selection): New variable.
21878 (mac_menu_show): Use create_and_show_popup_menu.
21879 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
21880 selection but set variable menu_item_selection. All uses changed.
21881 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
21882 Call install_menu_quit_handler. Move to mactoolbox.c.
21883
21884 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
21885 (Selection): Move typedef to macgui.h.
21886 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
21887 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
21888 Make variables non-static.
21889 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
21890 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
21891 Make functions non-static.
21892 (Vmac_service_selection) [MAC_OSX]: Likewise.
21893 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
21894 (mac_valid_selection_target_p, mac_clear_selection)
21895 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
21896 (mac_put_selection_value, mac_selection_has_target_p)
21897 (mac_get_selection_value, mac_get_selection_target_list)
21898 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
21899 Move functions to mactoolbox.c.
21900 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
21901 Likewise.
21902 (copy_scrap_flavor_data, mac_handle_service_event)
21903 (install_service_handler) [MAC_OSX]: Likewise.
21904 (syms_of_macselect) <Vmac_dnd_known_types>:
21905 Use mac_dnd_default_known_types.
21906
21907 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
21908 Move to mactoolbox.c.
21909 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
21910 (Fx_selection_owner_p): Add EXFUN.
21911 (install_window_handler, remove_window_handler, XSetWindowBackground):
21912 Remove externs.
21913 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
21914 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
21915 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
21916 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
21917 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
21918 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
21919 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
21920 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
21921 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
21922 (create_and_show_popup_menu, mac_get_selection_from_symbol)
21923 (mac_valid_selection_target_p, mac_clear_selection)
21924 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
21925 (mac_put_selection_value, mac_selection_has_target_p)
21926 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
21927 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
21928 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
21929 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
21930 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
21931 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
21932 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
21933 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
21934 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
21935
21936 * mactoolbox.c: New file.
21937
21938 2008-04-18 Jason Rumney <jasonr@gnu.org>
21939
21940 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
21941
21942 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
21943
21944 * character.c (Fmultibyte_char_to_unibyte):
21945 Return latin1 chars unchanged.
21946
21947 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
21948 relocated if it points to `name'.
21949
21950 2008-04-17 Kenichi Handa <handa@m17n.org>
21951
21952 * data.c (Faset): Allow setting a multibyte character in an
21953 ASCII-only unibyte string.
21954
21955 * lisp.h (STRING_SET_MULTIBYTE): New macro.
21956
21957 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
21958
21959 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
21960 done in config.h.
21961
21962 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
21963
21964 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
21965 (Fchar_direction): Add usage in the docstring.
21966
21967 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
21968
21969 * keyboard.c (read_key_sequence): Remove always-true checks.
21970
21971 2008-04-14 Jason Rumney <jasonr@gnu.org>
21972
21973 * w32font.c (w32font_open_internal): Set max_bounds.descent in
21974 compatibility struct, for better underline positioning.
21975
21976 2008-04-13 David Hansen <david.hansen@gmx.net>
21977
21978 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
21979 string.
21980
21981 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
21982
21983 * m/hp800.h (XUINT, XSET): Remove.
21984
21985 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
21986
21987 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
21988 previous change.
21989
21990 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
21991
21992 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
21993 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
21994
21995 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
21996
21997 * keymap.h (map_keymap_canonical): Declare.
21998 * xmenu.c (single_keymap_panes): Use it.
21999
22000 2008-04-11 Glenn Morris <rgm@gnu.org>
22001
22002 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
22003 set the target's value to that of the alias.
22004
22005 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
22006
22007 * term.c (set_tty_color_mode): Left over typo.
22008
22009 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
22010
22011 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
22012 only after check for file name handler functions. Signal, when
22013 native functionality is not supported.
22014 (syms_of_fileio): Declare it unconditionally.
22015
22016 2008-04-10 Jason Rumney <jasonr@gnu.org>
22017
22018 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
22019 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
22020
22021 * w32.c (logon_network_drive): Also logon to remote drives that
22022 are mapped to drive letters.
22023
22024 2008-04-10 Glenn Morris <rgm@gnu.org>
22025
22026 * xdisp.c (truncate-partial-width-windows): Doc fix.
22027
22028 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
22029
22030 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
22031 Move functions to minibuffer.el.
22032 (syms_of_fileio): Don't declare them.
22033
22034 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
22035
22036 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
22037 (syms_of_minibuf): Remove its initialization.
22038
22039 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
22040
22041 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
22042
22043 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
22044
22045 2008-04-09 Jason Rumney <jasonr@gnu.org>
22046
22047 * makefile.w32-in (distclean): Delete makefile too.
22048 (maintainer-clean): New target.
22049
22050 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
22051
22052 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
22053 for new font backend and composite cases.
22054
22055 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
22056
22057 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
22058 Most of the code moved to run_timers.
22059 (do_pending_atimers): Call run_timers.
22060 (run_timers): New function.
22061
22062 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
22063 run atimers.
22064
22065 * process.c (wait_reading_process_output): The same as above.
22066
22067 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
22068
22069 * minibuf.c (last_exact_completion): Remove variable.
22070 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
22071 (complete_and_exit_1, complete_and_exit_2)
22072 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
22073 (Fdisplay_completion_list, display_completion_list_1)
22074 (Fminibuffer_completion_help, Fself_insert_and_exit)
22075 (Fexit_minibuffer, Fminibuffer_message): Move functions to
22076 minibuffer.el.
22077 (syms_of_minibuf): Remove corresponding initializations.
22078
22079 * keyboard.c (Qdeactivate_mark): New var.
22080 (command_loop_1): Use it to call `deactivate-mark'.
22081 (syms_of_keyboard): Initialize it.
22082
22083 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
22084 to another frame.
22085 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
22086 Don't call set_tty_color_mode.
22087 (store_frame_param): Reset previous_frame rather than call
22088 set_tty_color_mode.
22089 * term.c (set_tty_color_mode): Rewrite.
22090 * dispextern.h (set_tty_color_mode): New type.
22091 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
22092
22093 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
22094
22095 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
22096 for generic chars, which do not exist any more in emacs-unicode.
22097
22098 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
22099
22100 * coding.c (detect_coding_emacs_mule)
22101 (Ffind_operation_coding_system): Fix typo.
22102
22103 2008-04-08 Jason Rumney <jasonr@gnu.org>
22104
22105 * w32uniscribe.c (SNAME): Extract only symbol name.
22106
22107 * w32font.h (struct w32_metric_cache): New struct.
22108 (w32font_info): Use it.
22109 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
22110 (CACHE_BLOCKSIZE): New constants.
22111
22112 * w32font.c (Qja, Qko, Qzh): New symbols.
22113 (syms_of_w32font): Initialise them.
22114 (font_matches_spec): Use them to filter by language.
22115 (recompute_cached_metrics): Remove function.
22116 (compute_metrics, clear_cached_metrics): New functions.
22117 (w32font_encode_char): Use them to manage metric cache.
22118 (w32font_text_extents): Cache metrics for all glyphs on demand.
22119 Delay converting glyph indices to WORD until needed.
22120 (w32font_open_internal): Initialize metric cache to empty.
22121 (registry_to_w32_charset): Charset should always be a symbol.
22122 (fill_in_logfont, list_all_matching_fonts): Family should
22123 always be a symbol.
22124
22125 2008-04-06 Jason Rumney <jasonr@gnu.org>
22126
22127 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
22128 Give up if glyph indices not supported. Use uniscribe obtained
22129 ABC widths for individual metrics. Map glyph clusters back to
22130 characters using fClusterStart flag. Return number of glyphs
22131 produced, not chars processed.
22132 (uniscribe_shape): Map char at FROM to current glyph.
22133
22134 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22135
22136 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
22137 Use SetMenuItemHierarchicalMenu.
22138
22139 2008-04-05 Jason Rumney <jasonr@gnu.org>
22140
22141 * image.c (pbm_load): Allow color values up to 65535.
22142 Throw an error if max_color_idx is outside the supported range.
22143 Report an error when image size is invalid.
22144 Read two bytes at a time when raw images have max_color_idx above 255.
22145
22146 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
22147
22148 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
22149 append "CCL: Quitted" when the CCL program is quitted.
22150 (setup_ccl_program): Initialize ccl->quit_silently to zero.
22151
22152 * ccl.h (struct ccl_program): New member quit_silently.
22153
22154 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
22155
22156 * search.c (compile_pattern_1): Treat non-nil and non-string of
22157 search-spaces-regexp as nil.
22158
22159 * minibuf.c (Fassoc_string): Tweak docstring.
22160
22161 2008-04-05 Eli Zaretskii <eliz@gnu.org>
22162
22163 * dired.c (Ffile_attributes): Support inode numbers wider than 32
22164 bits. Remove ugly WINDOWSNT-specific kludge introduced on
22165 2008-03-14 to force inode be positive.
22166
22167 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
22168 _S_* ones, since we now use our own sys/stat.h.
22169 (stat, fstat): Don't mangle the inode number.
22170 (init_user_info): Don't restrict UID and GID to 0-60000 range.
22171
22172 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
22173
22174 * frame.h (struct frame): Give one more bit to `visible' since we use
22175 values larger than 1 to indicate obscured frames on ttys.
22176
22177 * keymap.c (Qkeymap_canonicalize): New var.
22178 (Fmap_keymap_internal): New fun.
22179 (describe_map): Use keymap-canonicalize.
22180
22181 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
22182 (Fundo_boundary): Set them.
22183 (syms_of_undo): Initialize them.
22184 (record_point): Use them instead of last_point_position*.
22185 (last_undo_buffer): Change type.
22186
22187 2008-04-04 Jason Rumney <jasonr@gnu.org>
22188
22189 * w32font.c (w32font_text_extents): Use font's ascent and descent.
22190 (recompute_cached_metrics): Don't set ascent and descent per char.
22191
22192 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
22193 (uniscribe_check_otf): Add GC protection before consing.
22194 Rearrange loop for counting features.
22195
22196 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
22197
22198 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
22199 buffer with byte-size of source buffer.
22200
22201 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
22202
22203 * callint.c (Fcall_interactively): Handle temporary region even
22204 when shift-select-mode is off.
22205
22206 2008-04-03 Jason Rumney <jasonr@gnu.org>
22207
22208 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
22209
22210 2008-04-03 Kenichi Handa <handa@m17n.org>
22211
22212 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
22213 (CATEGORY_MASK_UTF_16): Likewise.
22214 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
22215 binary file.
22216 (detect_coding): Add null-byte detection for a binary file.
22217 (detect_coding_system): Likewise.
22218
22219 2008-04-03 Jason Rumney <jasonr@gnu.org>
22220
22221 * w32uniscribe.c: New file.
22222
22223 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
22224
22225 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
22226
22227 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
22228 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
22229 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
22230 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
22231 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
22232 (Qphonetic): New symbols.
22233 (syms_of_w32font): Initialize them.
22234 (font_supported_scripts): Use them.
22235 (w32font_list_family): List all charsets.
22236 (w32font_text_extents, recompute_cached_metrics): Fix metric
22237 calculations.
22238 (w32_enumfont_pattern_entity): Make full_type a DWORD.
22239 Give opentype fonts their own format.
22240 (font_matches_spec): New arguments backend and logfont.
22241 Handle :otf spec for uniscribe backend.
22242 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
22243 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
22244
22245 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
22246 font backend.
22247 (globals_of_w32fns): Initialize uniscribe font backend.
22248
22249 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
22250 dependencies.
22251 (w32uniscribe.$(O)): New file to build.
22252 (FONT_OBJ): Include w32uniscribe.$(O).
22253 (LIBS): Add uniscribe libraries.
22254
22255 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
22256
22257 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
22258
22259 * callint.c (Vshift_select_mode): New var.
22260 (Finteractive): Document new ^ spec.
22261 (Fcall_interactively): Call handle-shift-selection if the ^ spec
22262 is present.
22263
22264 * keyboard.c (Vthis_command_keys_shift_translated): New var.
22265 (command_loop_1): Avoid running the direct display versions of
22266 forward-char and backward-char if shift-selection may occur.
22267 (read_key_sequence): Set Vthis_command_keys_shift_translated if
22268 shift-translation takes place.
22269
22270 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
22271 avoid clobbering by define-minor-mode.
22272
22273 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
22274 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
22275
22276 * syntax.c (Fforward_word): Add ^ interactive spec.
22277
22278 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
22279 (Fscroll_right): Add ^ interactive spec.
22280
22281 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
22282
22283 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
22284
22285 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
22286
22287 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
22288
22289 2008-03-31 Juri Linkov <juri@jurta.org>
22290
22291 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
22292
22293 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
22294
22295 * gtkutil.c (xg_set_geometry): Fix indentation.
22296 (xg_resize_outer_widget): Remove.
22297 (x_wm_size_hint_off): Fix indentation.
22298 (xg_frame_set_char_size): Call flush_and_sync after
22299 gtk_window_resize.
22300 (x_wm_set_size_hint): Pass NULL as geometry window to
22301 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
22302 Add menu bar and tool bar height to base height.
22303 (xg_update_frame_menubar, free_frame_menubar)
22304 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
22305 (update_frame_tool_bar, free_frame_tool_bar):
22306 Change xg_resize_outer_widget to xg_frame_set_char_size.
22307
22308 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
22309
22310 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
22311 (Fdbus_call_method): New parameter TIMEOUT.
22312 (dbus-send-signal): Optimize UNGCPRO call.
22313
22314 2008-03-29 Juri Linkov <juri@jurta.org>
22315
22316 * window.c (Fdisplay_buffer): Move call to
22317 Vsplit_window_preferred_function out of conditions that check
22318 if window is eligible for vertical splitting.
22319 When Vsplit_window_preferred_function is non-nil, call it and use
22320 its non-nil return value as window. Otherwise, continue doing
22321 vertical splitting using Fsplit_window with arg horflag=nil.
22322 (syms_of_window) <Vsplit_window_preferred_function>: Change the
22323 default value from `split-window' to nil.
22324
22325 2008-03-29 Juri Linkov <juri@jurta.org>
22326
22327 * callint.c (Fcall_interactively): Revert 2008-03-16 change
22328 for interactive code letters 'b' and 'B'.
22329
22330 2008-03-29 Eli Zaretskii <eliz@gnu.org>
22331
22332 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
22333 multibyte string.
22334
22335 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
22336
22337 * keyboard.c (pending_funcalls): New var.
22338 (timer_check): Run it.
22339 (syms_of_keyboard): Initialize it.
22340 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
22341 (Vdelete_terminal_functions): New vars.
22342 (syms_of_terminal): Initialize them.
22343 (Fdelete_terminal): Run delete-terminal-functions.
22344 * xdisp.c (safe_eval): Rewrite.
22345 (safe_call2): New fun.
22346 * frame.c (Qdelete_frame_functions): New var.
22347 (syms_of_frame): Initialize it.
22348 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
22349 * lisp.h (safe_call2, pending_funcalls): Declare.
22350
22351 2008-03-28 Andreas Schwab <schwab@suse.de>
22352
22353 * indent.c (Fmove_to_column): Move declaration before statements.
22354
22355 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
22356
22357 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
22358 (struct frame): Use bit fields for boolean vars.
22359
22360 * process.c (server_accept_connection): Simplify naming.
22361 (emacs_get_tty_pgrp): Use SDATA.
22362
22363 * coding.c (decode_coding_object): Fix last change.
22364
22365 2008-03-27 Jason Rumney <jasonr@gnu.org>
22366
22367 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
22368
22369 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
22370
22371 * charset.c (Fdefine_charset_internal): Change the way of
22372 registering charsets in Vcharset_order_list.
22373 (syms_of_charset): Make the charset `eight-bit' supplementary.
22374
22375 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
22376
22377 * regex.c (EXTEND_BUFFER): Change order of pointer addition
22378 operations, to avoid having the difference between pointers
22379 overflow.
22380
22381 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
22382
22383 * indent.c (check_display_width): New fun.
22384 (scan_for_column): Use it.
22385
22386 * data.c (syms_of_data): Mark most-positive-fixnum and
22387 most-negative-fixnum as constants.
22388
22389 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
22390
22391 * indent.c (scan_for_column): Extract from current_column_1.
22392 Merge with the same code from Fmove_to_column.
22393 (current_column_1, Fmove_to_column): Use it.
22394
22395 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
22396
22397 * keymap.c (map_keymap_internal): New fun.
22398 (map_keymap): Use it.
22399 (Fmap_keymap_internal): New fun.
22400 (Fmap_keymap): Remove left-out test from before make_save_value.
22401
22402 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
22403
22404 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
22405 Use XCAR/XCDR.
22406
22407 * process.h (struct Lisp_Process): Remove filter_multibyte.
22408 * process.c (QCfilter_multibyte): Remove.
22409 (setup_process_coding_systems): Don't use filter_multibyte.
22410 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
22411 (read_process_output): Don't adjust multibyteness to filter_multibyte.
22412 (Fset_process_filter_multibyte): Change the coding-system to
22413 approximate the previous behavior.
22414 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
22415 coding-system.
22416
22417 * coding.c (decode_coding_object): When not decoding into a buffer,
22418 obey the coding system's preference of (uni|multi)byte.
22419
22420 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
22421
22422 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
22423 every char is changed and has a different byte-length.
22424 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
22425 Fix int -> EMACS_INT.
22426
22427 2008-03-23 David Hansen <david.hansen@gmx.net>
22428
22429 * dbusbind.c (xd_read_message): Remove extra copying of message
22430 strings. Check for NULL `interface' or `member'.
22431
22432 2008-03-22 Eli Zaretskii <eliz@gnu.org>
22433
22434 * w32.c (readdir): If FindFirstFile/FindNextFile return in
22435 cFileName a file name that includes `?' characters, use the 8+3
22436 alias in cAlternateFileName instead.
22437
22438 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
22439
22440 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
22441
22442 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22443
22444 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
22445 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
22446 work on current_buffer only instead (that was already the case
22447 for some of the code anyway).
22448 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
22449 (temp_set_point, temp_set_point_both): Use EMACS_INT.
22450 (SET_PT, SET_PT_BOTH): Adjust.
22451 * intervals.h (set_point, temp_set_point, set_point_both)
22452 (temp_set_point_both): Remove redundant declarations.
22453
22454 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22455
22456 * fileio.c (Finsert_file_contents):
22457 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
22458 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
22459 when buffer != current_buffer anyway.
22460
22461 2008-03-20 Andreas Schwab <schwab@suse.de>
22462
22463 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
22464 as default.
22465
22466 2008-03-19 Jason Rumney <jasonr@gnu.org>
22467
22468 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
22469 (syms_of_w32fns): Initialize them.
22470 (HOURGLASS_ID): New constant.
22471 (x_window_to_frame): Don't check hourglass_window.
22472 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
22473 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
22474 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
22475 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
22476 Only change the cursor if hourglass is not active.
22477 (Fx_create_frame): Initialize frame's current_cursor.
22478 (hourglass_atimer): Remove.
22479 (hourglass_started): New function.
22480 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
22481 (show_hourglass): Adapt to w32, changing argument to frame.
22482
22483 * w32term.h (struct w32_output): Remove hourglass_window.
22484 Add current_cursor.
22485
22486 * eval.c (call_debugger, Fsignal):
22487 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
22488 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
22489 (Fexecute_extended_command, cancel_hourglass_unwind):
22490 * minibuf.c (read_minibuf):
22491 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
22492
22493 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
22494
22495 * window.c (run_funs): New fun.
22496 (run_window_configuration_change_hook): Use it to run the buffer-local
22497 and the global part of the hook.
22498
22499 * xdisp.c (format_mode_line_unwind_data): Add window argument.
22500 (unwind_format_mode_line): Restore selected window.
22501 (x_consider_frame_title, Fformat_mode_line): Set selected window.
22502
22503 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
22504
22505 * editfns.c (Fchar_equal): Check they are valid characters.
22506
22507 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
22508
22509 2008-03-17 Andreas Schwab <schwab@suse.de>
22510
22511 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
22512 against a charset.
22513
22514 * lisp.h (Fbuffer_list): Declare.
22515
22516 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
22517
22518 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
22519 handlebox_widget is != 0.
22520
22521 2008-03-16 Juri Linkov <juri@jurta.org>
22522
22523 * callint.c (Fcall_interactively): For interactive code letters
22524 'b' and 'B' put the buffer list into the list of default "future"
22525 values of the minibuffer.
22526
22527 2008-03-16 Andreas Schwab <schwab@suse.de>
22528
22529 * keyboard.c (read_key_sequence): Fix downcasing of letters with
22530 modifiers.
22531
22532 * regex.c (re_match_2_internal): Correct matching of a charset
22533 against latin-1 characters.
22534
22535 2008-03-16 Kenichi Handa <handa@m17n.org>
22536
22537 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
22538 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
22539 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
22540 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
22541 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
22542 CHAR_STRING_ADVANCE.
22543 (produce_chars): Fix for the case that the source and the
22544 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
22545 instead of CHAR_STRING_ADVANCE.
22546 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
22547 STRING_CHAR_ADVANCE.
22548
22549 2008-03-15 Andreas Schwab <schwab@suse.de>
22550
22551 * regex.c (re_match_2_internal): Correct matching of eight bit
22552 characters in unibyte strings.
22553
22554 2008-03-15 Martin Rudalics <rudalics@gmx.at>
22555
22556 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
22557 at end of range when it coincides with the end of the buffer.
22558
22559 2008-03-14 Eli Zaretskii <eliz@gnu.org>
22560
22561 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
22562
22563 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
22564
22565 2008-03-14 Jason Rumney <jasonr@gnu.org>
22566
22567 * editfns.c (initial_tz): New variable.
22568 (syms_of_editfns): Initialize it.
22569 (Fset_time_zone_rule): Set it when first called.
22570 Use it when TZSTRING is nil.
22571
22572 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
22573 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
22574 (monitor_from_point_fn, get_monitor_info_fn): New globals.
22575 (globals_of_w32fns): Initialize them.
22576 (compute_tip_xy): Use them to position tooltips.
22577
22578 2008-03-14 Glenn Morris <rgm@gnu.org>
22579
22580 * emacs.c (main): Revert previous change.
22581 (standard_args): Revert -internal-script back to -scriptload,
22582 and remove the long-option form.
22583
22584 2008-03-13 Glenn Morris <rgm@gnu.org>
22585
22586 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
22587 Remove option -enable-font-backend.
22588
22589 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
22590
22591 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
22592
22593 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
22594
22595 * xterm.c (x_connection_closed): For GTK: If this is the last
22596 terminal just exit without closing the display.
22597
22598 2008-03-11 Jason Rumney <jasonr@gnu.org>
22599
22600 * w32font.c (w32font_full_name): Use floor to round.
22601
22602 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
22603
22604 * sound.c (alsa_configure): Declare vol at beginning of block.
22605
22606 * fontset.c (Ffontset_info): Remove extra semicolon.
22607
22608 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
22609
22610 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
22611 size of resulting string.
22612
22613 2008-03-10 Jason Rumney <jasonr@gnu.org>
22614
22615 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
22616
22617 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22618
22619 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
22620 Don't pretend as if characters with display property haven't been
22621 consumed for string-replacing-string case.
22622
22623 2008-03-08 Kim F. Storm <storm@cua.dk>
22624
22625 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
22626 (get_next_display_element, next_element_from_string)
22627 (next_element_from_ellipsis, next_element_from_buffer): Use it.
22628
22629 2008-03-08 Andreas Schwab <schwab@suse.de>
22630
22631 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
22632
22633 2008-03-06 Jason Rumney <jasonr@gnu.org>
22634
22635 * w32font.c (w32_registry): Take font_type argument. Use ANSI
22636 when charset not specified. Only translate ANSI to unicode when
22637 font_type is truetype.
22638 (w32font_coverage_ok): New function.
22639 (add_font_entity_to_list): Use it to filter unsuitable fonts.
22640
22641 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
22642
22643 * lread.c (Fread_char): Resolve modifiers.
22644 (Fread_char_exclusive): Likewise.
22645
22646 * character.c (char_resolve_modifier_mask): New function.
22647 (char_string): Use char_resolve_modifier_mask.
22648 (Fchar_resolve_modifiers): New function.
22649 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
22650 function.
22651
22652 2008-03-04 Jason Rumney <jasonr@gnu.org>
22653
22654 * makefile.w32-in: Always include w32font.c in the build.
22655 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
22656
22657 2008-03-04 Andreas Schwab <schwab@suse.de>
22658
22659 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
22660 (versionclean): Likewise.
22661
22662 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
22663
22664 * .cvsignore: Add oo.
22665
22666 2008-03-03 Andreas Schwab <schwab@suse.de>
22667
22668 * coding.c (decode_coding_object): Inhibit gap shrinking while
22669 decoding in place.
22670
22671 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
22672
22673 * w32term.c: Remove unused include "gnu.h".
22674 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
22675
22676 * gnu.h: Rename to ...
22677 * emacs-icon.h: ... this.
22678 * xterm.c: Use emacs-icon.h instead of gnu.h.
22679 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
22680
22681 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
22682
22683 * w32font.c: Include math.h.
22684
22685 2008-03-03 Jason Rumney <jasonr@gnu.org>
22686
22687 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
22688 Compute options separately.
22689 (w32font_open_internal): Set glyph_idx before caching metrics.
22690
22691 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
22692 Define if system headers don't.
22693 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
22694 (w32font_encode_char): Don't declare here.
22695
22696 * w32font.c (Quniscribe, QCformat): New symbols.
22697 (syms_of_w32font): Define them.
22698 (w32font_has_char): Indicate uncertainty.
22699 (w32font_encode_char): Encode as glyph point. Make static.
22700 (recompute_cached_metrics): New function.
22701 (w32font_open_internal): Use it. Set font to use glyph points
22702 initially. Set format based on type of font.
22703 (w32font_text_extents, w32font_draw): Optionally use glyph points.
22704 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
22705 on it. Set format based on information available here.
22706 (add_font_entity_to_list): Identify backend based on opentype_only.
22707
22708 2008-03-02 Andreas Schwab <schwab@suse.de>
22709
22710 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
22711
22712 * coding.c (decode_coding_big5, produce_chars):
22713 Fix typos in last change.
22714
22715 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
22716
22717 * gnu.h: New icon.
22718
22719 2008-03-02 Kenichi Handa <handa@m17n.org>
22720
22721 * coding.c (decode_coding_utf_8): When eol-type of CODING is
22722 `dos', don't decode '\r' if that is the last in the source.
22723 (decode_coding_utf_16, decode_coding_emacs_mule)
22724 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
22725 (decode_coding_raw_text, decode_coding_charset): Likewise.
22726 (produce_chars): Don't decode EOL here. Use EMACS_INT.
22727
22728 2008-03-01 Jason Rumney <jasonr@gnu.org>
22729
22730 * w32font.c (w32font_full_name): Report point size for scalable fonts.
22731
22732 2008-03-01 Kim F. Storm <storm@cua.dk>
22733
22734 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
22735
22736 2008-03-01 Jason Rumney <jasonr@gnu.org>
22737
22738 * w32font.c (w32font_full_name): New function.
22739 (w32font_open_internal): Use it.
22740
22741 2008-03-01 Kim F. Storm <storm@cua.dk>
22742
22743 * dispnew.c (line_draw_cost): Fix invalid glyph check.
22744
22745 2008-03-01 Jason Rumney <jasonr@gnu.org>
22746
22747 * font.c (font_unparse_fcname): Increase len when style is a symbol.
22748
22749 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
22750
22751 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
22752 xg_frame_resized when the event is for the edit widget.
22753
22754 * gtkutil.h (xg_frame_resized): Rename from xg_resize_widgets.
22755
22756 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
22757 set_char_size.
22758 (xg_frame_resized): Rename from xg_resize_widgets. Remove all
22759 operations on widgets here. Just set frame size if needed.
22760 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
22761 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
22762 (x_wm_set_size_hint): Set size hints on the edit widget only, not
22763 the whole frame.
22764 (xg_create_tool_bar): Move attachment of the tool bar to
22765 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
22766 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
22767
22768 2008-03-01 Jason Rumney <jasonr@gnu.org>
22769
22770 * w32fns.c (w32_msg_pump): Disable debug code.
22771
22772 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22773
22774 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
22775
22776 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
22777
22778 * xdisp.c (next_overlay_string): Don't set
22779 overlay_strings_at_end_processed_p if we're currently reading from
22780 a display string.
22781
22782 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
22783
22784 * xdisp.c (get_overlay_strings_1): Fix typo.
22785
22786 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
22787
22788 * xdisp.c (get_overlay_strings_1): Add missing argument type.
22789
22790 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
22791
22792 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
22793
22794 * xdisp.c (display_mode_element): Cancel the previous change.
22795 (decode_mode_spec): Likewise.
22796 (handle_auto_composed_prop): Don't make composition if it->string
22797 is a string.
22798
22799 2008-02-27 Kim F. Storm <storm@cua.dk>
22800
22801 * lisp.h (GLYPH): Change type from int to struct with separate char
22802 and face_id members.
22803 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
22804 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
22805 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
22806 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
22807 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
22808 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
22809 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
22810 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
22811 handle new Lisp glyph code encoding, either an integer or a cons.
22812
22813 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
22814 (GLYPH_ALIAS): Delete.
22815 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
22816 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
22817 (GLYPH_FROM_CHAR): Replace macro by ...
22818 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
22819
22820 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
22821 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
22822 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
22823 (GLYPH_INVALID_P): New macro.
22824 (spec_glyph_lookup_face): Update prototype.
22825
22826 * dispnew.c (line_draw_cost): Adapt to new glyph type.
22827 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
22828 new glyph code encoding.
22829 (spec_glyph_lookup_face): No return value; update passed glyph instead.
22830 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
22831
22832 * xdisp.c (get_next_display_element, next_element_from_display_vector):
22833 Adapt to new glyph type and new glyph code encoding.
22834
22835 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
22836
22837 * indent.c (current_column, current_column_1, Fmove_to_column)
22838 (compute_motion): Adapt to new glyph code encoding.
22839
22840 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
22841
22842 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
22843
22844 * process.c (wait_reading_process_output): Check for window
22845 changes caused by timers.
22846 Suggested by Johan Bockgård.
22847
22848 2008-02-27 Glenn Morris <rgm@gnu.org>
22849
22850 * emacs.c (USAGE1): Add `--disable-font-backend'.
22851
22852 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
22853
22854 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
22855 is made to the buffer.
22856
22857 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
22858
22859 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
22860 (face_at_string_position):
22861 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
22862 (face_at_string_position):
22863 * xdisp.c (display_string, next_overlay_change):
22864 * buffer.h (overlays_at):
22865 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
22866 Update callers.
22867
22868 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
22869
22870 * editfns.c (Fformat): Doc fix.
22871
22872 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
22873
22874 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
22875 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
22876 (Ffont_otf_alternates, Fquery_font): Doc fixes.
22877
22878 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
22879
22880 * buffer.c (Fbuffer_swap_text): New function.
22881 (syms_of_buffer): Defsubr it.
22882
22883 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
22884
22885 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
22886
22887 2008-02-25 Jason Rumney <jasonr@gnu.org>
22888
22889 * w32font.c (w32font_draw): Draw one character at a time when padding.
22890
22891 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
22892
22893 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
22894 Handle a nil arg. Use run_window_configuration_change_hook.
22895 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
22896 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
22897 Use run_window_configuration_change_hook.
22898
22899 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
22900
22901 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
22902 1-pixel width.
22903
22904 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
22905
22906 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
22907 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
22908 if the glyph in the font is zero pixel with.
22909
22910 * dispextern.h (struct glyph_string): New member padding_p.
22911
22912 * w32font.c (w32font_draw): Pay attention to s->padding_p.
22913
22914 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
22915
22916 * xfont.c (xfont_draw): Pay attention to s->padding_p.
22917
22918 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
22919
22920 * font.c: If the font driver doesn't have `shape' function, return Qnil.
22921
22922 2008-02-25 Jason Rumney <jasonr@gnu.org>
22923
22924 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
22925
22926 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
22927
22928 Allow fine-grained image-cache flushing.
22929 * dispextern.h (struct image): Add `dependencies' field.
22930 (clear_image_caches): Change arg to Lisp_Object.
22931 * image.c (make_image): Initialize `dependencies' field.
22932 (clear_image_cache): Change arg to allow fine-grained flushing.
22933 Perform the flush even if image-cache-eviction-delay is nil.
22934 (clear_image_caches): Change arg to Lisp_Object.
22935 (Fclear_image_cache): Expand meaning of the argument.
22936 (mark_image): Mark `dependencies' field.
22937 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
22938 (lface_hash): Use XHASH rather than XFASTINT.
22939 (face_at_buffer_position): Fix int -> EMACS_INT position.
22940 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
22941 (select_frame_for_redisplay): Remove code duplication.
22942 (redisplay_internal): Adapt arg to call to clear_image_caches.
22943
22944 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
22945
22946 * s/vms4-0.h:
22947 * s/vms4-2.h:
22948 * s/vms4-4.h:
22949 * s/vms5-5.h: Remove, unused.
22950
22951 * s/irix5-2.h:
22952 * s/irix6-0.h:
22953 * s/riscos5.h:
22954 * s/mach-bsd4-3.h:
22955 * m/mips4.h: Remove files for obsolete systems.
22956
22957 * Makefile.in:
22958 * filelock.c:
22959 * unexmips.c:
22960 * m/hp9000s300.h:
22961 * m/iris4d.h:
22962 * s/aix3-1.h:
22963 * s/hpux.h:
22964 * s/msdos.h:
22965 * s/usg5-0.h:
22966 * s/usg5-2-2.h:
22967 * s/usg5-2.h:
22968 * s/usg5-3.h: Remove references to obsolete variables.
22969
22970 * s/irix5-0.h: Remove, move all the contents ...
22971 * s/irix6-5.h: ... here. Simplify.
22972 * config.in: Regenerate.
22973
22974 2008-02-24 Jason Rumney <jasonr@gnu.org>
22975
22976 * w32term.c (x_draw_glyph_string_background): Clear the background
22977 manually when cleartype is in use.
22978 (x_draw_glyph_string_foreground): Draw text transparently when
22979 cleartype is in use.
22980
22981 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
22982 a font into it unless we have to.
22983
22984 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
22985
22986 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
22987 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
22988
22989 2008-02-18 Jason Rumney <jasonr@gnu.org>
22990
22991 * w32fns.c (Fw32_shell_execute): Encode parameters.
22992
22993 2008-02-09 Eli Zaretskii <eliz@gnu.org>
22994
22995 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
22996
22997 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
22998
22999 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
23000
23001 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
23002
23003 * xterm.c (x_set_offset): Don't change the gravity if
23004 CHANGE_GRAVITY is -1.
23005
23006 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
23007
23008 * fileio.c (auto_save_error_occurred): New var.
23009 (auto_save_error): Set it.
23010 (Fdo_auto_save): Don't overwrite the error message if an auto-save
23011 error occurred.
23012
23013 2008-02-23 Eli Zaretskii <eliz@gnu.org>
23014
23015 * w32.c (globals_of_w32): Add initializations for
23016 g_b_init_get_sid_sub_authority and
23017 g_b_init_get_sid_sub_authority_count.
23018
23019 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
23020
23021 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
23022 (font_parse_xlfd): Use them for sanity check.
23023 (Finternal_set_font_style_table): Make sure the table is bijective.
23024
23025 Consolidate the image_cache to the terminal struct.
23026 * termhooks.h (P_): Remove redundant def.
23027 (struct terminal): New field `image_cache'.
23028 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
23029 of FRAME_X_IMAGE_CACHE.
23030 * xterm.h (struct x_display_info): Remove image_cache field.
23031 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
23032 * w32term.h (struct w32_display_info): Remove image_cache field.
23033 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
23034 * macterm.h (struct mac_display_info): Remove image_cache field.
23035 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
23036 * xterm.c (x_term_init):
23037 * w32term.c (w32_term_init):
23038 * macterm.c (mac_term_init): Set the image_cache in the terminal.
23039 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
23040 Remove declarations.
23041 (clear_image_caches, mark_image_cache): New declarations.
23042 * xfaces.c (clear_face_cache):
23043 * xdisp.c (redisplay_internal): Use clear_image_caches.
23044 * image.c (clear_image_cache): Don't check that a frame is on
23045 a window-system before checking if it shares the same cache.
23046 (clear_image_caches): New function.
23047 (Fclear_image_cache): Use it.
23048 (mark_image): Move from allo.c.
23049 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
23050 * alloc.c (mark_image, mark_image_cache): Move to image.c.
23051 (mark_object): Don't call mark_image_cache for frames.
23052 (mark_terminals): Call mark_image_cache.
23053
23054 * lisp.h (Fdelete_terminal): Declare.
23055
23056 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
23057 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
23058 wrong_type_argument.
23059
23060 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
23061
23062 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
23063 malayalam.el, and tamil.el. Add sinhala.el.
23064
23065 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
23066
23067 * xterm.c (x_connection_closed): Consolidate identical tests.
23068 (x_delete_terminal): Don't crash if called via x_connection_closed.
23069
23070 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
23071
23072 * xdisp.c (decode_mode_spec): New arg string.
23073 (display_mode_element): Adjust for the above change.
23074
23075 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
23076
23077 * callint.c (Fcall_interactively): Use AREF.
23078
23079 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
23080
23081 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
23082
23083 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
23084
23085 * xfns.c (Fx_show_tip): Set string to " " if empty.
23086
23087 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
23088
23089 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
23090 with Qt.
23091
23092 2008-02-17 Kenichi Handa <handa@m17n.org>
23093
23094 * ftfont.c (ftfont_shape): Return Lispy number.
23095
23096 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
23097 for GCs.
23098 (Finternal_set_font_selection_order): Call font_update_sort_order
23099 only when enable_font_backend is set.
23100 (realize_x_face): Set face->font_info to that of default face only
23101 when enable_font_backend is set.
23102
23103 * xdisp.c (handle_composition_prop): Set it->c to the fist
23104 character of the composed region.
23105 (fill_composite_glyph_string): Set base_face->font_info to
23106 s->font_info. Get a face for ascii from base_face->ascii_face.
23107 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
23108 with a face already decided.
23109 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
23110 non-negative.
23111 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
23112 call font_prepare_composition unconditionally.
23113
23114 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
23115
23116 * xterm.h (struct x_display_info): New member font.
23117
23118 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
23119 (x_set_mouse_face_gc, x_new_font): Likewise.
23120 (x_term_init): Setup display_info->font.
23121 (x_delete_terminal): Free display_info->font.
23122
23123 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
23124
23125 * ftxfont.c (ftxfont_default_fid): Delete it.
23126 (ftxfont_open): Set xfont->fid to 0.
23127 (ftxfont_end_for_frame): Clear data specific to the frame and the
23128 font-driver.
23129
23130 * xftfont.c (xftfont_default_fid): Delete it.
23131 (xftfont_open): Set xfont->fid to 0.
23132
23133 * fontset.c (FONTSET_OBJLIST): New macro.
23134 (fontset_find_font): Update font-object list of the fontset.
23135 (free_realized_fontset): New function.
23136 (free_face_fontset): Call free_realized_fontset.
23137 (Ffont_info): Call font_close_object only when enable_font_backend
23138 is set.
23139
23140 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
23141 [HAVE_NTGUI]: Include w32term.h.
23142 [MAC_OS]: Include macterm.ch.
23143 (font_otf_ValueRecord): Use make_number.
23144 (font_finish_cache): Fix handling of reference count.
23145 (font_clear_cache): Update num_fonts.
23146 (font_open_entity): Update smallest_char_width and
23147 smallest_font_height of the frame.
23148 (font_close_object): Update num_fonts.
23149 (Fclear_font_cache): Fix finding the target cache data.
23150
23151 2008-02-16 Glenn Morris <rgm@gnu.org>
23152
23153 * fontset.c (Finternal_char_font): Fix compilation warning.
23154
23155 2008-02-16 Eli Zaretskii <eliz@gnu.org>
23156
23157 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
23158 instead of char arrays. Enlarge the size of array passed to
23159 get_token_information.
23160
23161 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
23162 warnings.
23163
23164 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
23165
23166 * .gdbinit: Don't set `args', it breaks gdb --args.
23167
23168 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
23169
23170 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
23171 within a narrowed buffer.
23172
23173 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
23174
23175 * coding.c (decode_coding_object, encode_coding_object):
23176 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
23177
23178 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
23179
23180 * coding.c (coding_set_destination): Use BEG_BYTE rather than
23181 hardcoding 1.
23182 (detect_coding_system):
23183 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
23184 (string_char_to_byte, string_byte_to_char, insert_from_gap):
23185 * insdel.c (insert_from_gap):
23186 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
23187 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
23188 (string_to_multibyte):
23189 * character.c (chars_in_text, multibyte_chars_in_text):
23190 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
23191
23192 * character.h (FETCH_STRING_CHAR_ADVANCE)
23193 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
23194 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
23195 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
23196
23197 * casefiddle.c (casify_region): Only call after-change and composition
23198 functions on the part of the region that was changed.
23199
23200 * keyboard.c (read_avail_input):
23201 * frame.c (Fdelete_frame): Call Fdelete_terminal.
23202
23203 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
23204
23205 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
23206 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
23207
23208 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
23209
23210 * w32menu.c (push_submenu_start, push_submenu_end)
23211 (push_left_right_boundary, push_menu_pane, push_menu_item):
23212 * keyboard.c (read_key_sequence): Don't pass args with side effects
23213 to AREF, it fails when compiling with -DENABLE_CHECKING.
23214
23215 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
23216
23217 * Makefile.in (${lispsource}international/charprop.el):
23218 Delete this target.
23219
23220 * search.c (boyer_moore): Fix incorrect synching of the trunk and
23221 emacs-unicode-2.
23222
23223 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
23224
23225 * terminal.c (Fdelete_terminal): Clean up the `force' path.
23226
23227 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
23228
23229 * frame.c (Qnoelisp): New symbol.
23230 (syms_of_frame): Initialize it.
23231 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
23232 harmless Elisp code, from a strong `force' from x_connection_closed.
23233 * frame.h (Qnoelisp): Declare.
23234 * xterm.c (x_connection_closed): Pass `noelisp'.
23235
23236 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
23237 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
23238 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
23239 rather than `int' for the type of `type'.
23240
23241 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
23242
23243 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
23244
23245 * Makefile.in (GNUC): Remove support for gcc-1.x.
23246
23247 2008-02-10 Richard Stallman <rms@gnu.org>
23248
23249 * lisp.h (ASET): Use AREF, not ASLOT.
23250
23251 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
23252
23253 * lisp.h (ASET): Check bounds.
23254
23255 2008-02-10 Glenn Morris <rgm@gnu.org>
23256
23257 * buffer.c (mode-name): Doc fix.
23258
23259 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
23260
23261 * Makefile.in:
23262 * emacs.c:
23263 * gmalloc.c:
23264 * keyboard.c:
23265 * lisp.h:
23266 * m/ibm370aix.h:
23267 * process.c:
23268 * regex.c:
23269 * s/hpux.h:
23270 * sysdep.c:
23271 * sysselect.h:
23272 * systty.h:
23273 * unexec.c:
23274 * w32term.c:
23275 * xsmfns.c:
23276 * xterm.c: Remove code that deals with obsolete variables.
23277
23278 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
23279
23280 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
23281 nothing else needs it anymore.
23282
23283 2008-02-09 Eli Zaretskii <eliz@gnu.org>
23284
23285 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
23286 instead of unibyte_char_to_multibyte.
23287
23288 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
23289
23290 * s/gnu-linux.h: Remove commented out code.
23291
23292 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
23293
23294 * Makefile.in: Update what RMS says about using autoconf.
23295 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
23296 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
23297 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
23298 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
23299
23300 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
23301
23302 * keymap.c (Fkey_description): Move side effect outside of macro call.
23303
23304 * xfaces.c (Finternal_make_lisp_face):
23305 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
23306
23307 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
23308 (syms_of_fontset): Use ASET.
23309
23310 * fns.c (concat): Move side effect outside of macro call.
23311 (hash_clear): Use ASET.
23312
23313 2008-02-08 Richard Stallman <rms@gnu.org>
23314
23315 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
23316 If FORCE, and frame has a surrogate minibuffer for another frame,
23317 delete the other frame first.
23318
23319 2008-02-07 Timo Savola <timo.savola@iki.fi>
23320
23321 * xterm.c (x_detect_focus_change): Handle embed client message.
23322 (handle_one_xevent): Ditto.
23323 (handle_one_xevent): If embedded and we get a button press/release,
23324 request focus.
23325 (xembed_set_info, xembed_send_message): New functions.
23326 (x_make_frame_visible): Call xembed_set_info if embedded.
23327 (x_make_frame_invisible): Call xembed_set_info if embedded.
23328 (x_term_init): Initialize Xatom_XEMBED.
23329 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
23330 (x_iconify_frame): Ditto.
23331
23332 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
23333 (enum xembed_info, enum xembed_message, enum xembed_focus)
23334 (enum xembed_modifier, enum xembed_accelerator): New.
23335 (xembed_set_info, xembed_send_message): Declare.
23336 (FRAME_X_EMBEDDED_P): New.
23337
23338 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
23339 gtk_plug_new.
23340
23341 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
23342 window ID of a frame.
23343 (x_window): Reparent frame if embedded.
23344 (Fx_create_frame): Don't set border width if embedded.
23345
23346 * emacs.c (USAGE3): Add --parent-id.
23347 (standard_args): Ditto.
23348
23349 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
23350
23351 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
23352
23353 2008-02-07 Jim Meyering <meyering@redhat.com>
23354
23355 Use "do...while (0)", not "if (1)...else" in macro definitions.
23356 The latter provokes a warning from gcc about the empty else, when
23357 followed by ";". Also, without that trailing semicolon, it would
23358 silently swallow up any following statement.
23359 * syntax.h (SETUP_SYNTAX_TABLE)
23360 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
23361 * buffer.h (DECODE_POSITION): Likewise.
23362 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
23363 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
23364 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
23365 (FETCH_CHAR_ADVANCE): Likewise.
23366 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
23367
23368 2008-02-07 Jim Meyering <meyering@redhat.com>
23369
23370 * lread.c [lint]: Don't include <sys/inode.h>.
23371
23372 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
23373
23374 * xselect.c (x_handle_dnd_message):
23375 * xmenu.c (digest_single_submenu, xmenu_show):
23376 * xdisp.c (with_echo_area_buffer_unwind_data)
23377 (format_mode_line_unwind_data, unwind_format_mode_line)
23378 (display_menu_bar):
23379 * eval.c (Ffetch_bytecode):
23380 * doc.c (store_function_docstring):
23381 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
23382 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
23383 * buffer.c (add_overlay_mod_hooklist): Use ASET.
23384
23385 2008-02-07 Kenichi Handa <handa@m17n.org>
23386
23387 * ftxfont.c (ftxfont_open): Don't set
23388 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
23389
23390 * ftfont.c (ftfont_open): Fix previous change.
23391
23392 2008-02-06 Jason Rumney <jasonr@gnu.org>
23393
23394 * w32font.c (w32font_text_extents): Fill in lbearing metric.
23395 Use cached metrics for ASCII characters.
23396 (w32font_open_internal): Don't set font's owning_frame.
23397 Cache metrics for ASCII characters.
23398
23399 * w32font.h (struct w32font_info): Add ascii_metrics.
23400 Remove owning_frame.
23401
23402 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
23403
23404 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
23405 to negative value.
23406
23407 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
23408
23409 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
23410
23411 * charset.c (syms_of_charset): Set QCtest and Qeq.
23412
23413 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
23414
23415 * process.c (Fstart_process):
23416 * callproc.c (Fcall_process): Handle the case where
23417 Funhandled_file_name_directory returns nil.
23418
23419 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
23420 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
23421 * font.c (check_gstring): Use them and AREF to access the vector before
23422 we know it's really a gstring.
23423 (Ffont_shape_text): Fix typo.
23424 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
23425
23426 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
23427 Declare.
23428
23429 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
23430
23431 2008-02-05 Jason Rumney <jasonr@gnu.org>
23432
23433 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
23434 Set smallest_font_height and smallest_char_width in display info.
23435
23436 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
23437
23438 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
23439
23440 2008-02-05 Miles Bader <miles@gnu.org>
23441
23442 * xfaces.c (get_lface_attributes, merge_named_face)
23443 (lookup_named_face, lookup_derived_face, realize_named_face):
23444 Revert 2008-02-01 change by cyd@stupidchicken.com.
23445
23446 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
23447
23448 * fontset.c (Ffontset_info): Handle the case of inhibitting the
23449 fallback fonts.
23450 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
23451
23452 2008-02-04 Jason Rumney <jasonr@gnu.org>
23453
23454 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
23455 set full_name.
23456 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
23457
23458 2008-02-03 Jason Rumney <jasonr@gnu.org>
23459
23460 * makefile.w32-in (OBJ1): Include font.o here.
23461 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
23462
23463 2008-02-02 Jason Rumney <jasonr@gnu.org>
23464
23465 * makefile.w32-in (temacs): Bump EMHEAP to 21.
23466
23467 2008-02-01 Jason Rumney <jasonr@gnu.org>
23468
23469 * s/cygwin.h: Define VIRT_ADDR_VARIES.
23470
23471 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
23472
23473 2008-02-01 Andreas Schwab <schwab@suse.de>
23474
23475 * Makefile.in (shortlisp, lisp): Update for rename of
23476 ../lisp/language/myanmar.el.
23477
23478 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
23479
23480 * xfaces.c (get_lface_attributes): Delete function.
23481 (merge_named_face, lookup_named_face, lookup_derived_face)
23482 (realize_named_face): Call lface_from_face_name directly, and use
23483 the fact that merge_face_vectors does not alter its FROM argument.
23484
23485 2008-02-01 Jason Rumney <jasonr@gnu.org>
23486
23487 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
23488 input in the default locale. Handle non-Unicode multibyte input.
23489
23490 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23491
23492 * fontset.c (reorder_font_vector): Exclude nil elements from the
23493 font group. Don't try multiple fonts.
23494 (fontset_font): Adjust for the above change.
23495 (Finternal_char_font): Return nil if the found font doesn't
23496 contain the character ch.
23497
23498 * Makefile.in (lisp, shortlisp): Add cham.el.
23499
23500 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23501
23502 * font.h (FONTP): Make it return 1 also for a font-object.
23503
23504 * .gdbinit (xfontset): New function.
23505
23506 * font.c (font_find_for_lface): Check if the character C is
23507 supported or not only for the first font.
23508
23509 * fontset.c (reorder_font_vector): Fix typo.
23510 (fontset_find_font): Don't add a font-spec specifying a script.
23511 Use 0 (not Qt) for the indication of empty font-group. Change the
23512 format of RFONT-DEF. Return Qt if no font in the font-group
23513 support the character.
23514 (fontset_font): Adjust for the above change. If no font was
23515 found the character, remember that.
23516 (face_for_char): Adjust for the change of RFONT-DEF.
23517 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
23518 no font for the target.
23519 (Finternal_char_font): Adjust for the change of RFONT-DEF.
23520
23521 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23522
23523 * font.c (font_load_for_face): Handle the case that the font in
23524 face->lface is a string.
23525
23526 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23527
23528 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
23529
23530 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23531
23532 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
23533 Fix previous change. If the frame is not on a window system,
23534 signal an error.
23535
23536 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23537
23538 * coding.c (decode_coding_object, encode_coding_object):
23539 Adjust marker positions after conversion.
23540
23541 * lisp.h (struct Lisp_Marker): New member need_adjustment.
23542
23543 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23544
23545 * font.c (font_find_for_lface): Fix the handling of the return
23546 value of font_has_char.
23547 (Ffont_shape_text): Fix previous change.
23548
23549 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
23550 (fontset_ref_and_range): Delete it.
23551 (fontset_find_font): Call char_table_ref_and_range instead of
23552 FONTSET_REF_AND_RANGE.
23553 (make_fontset): Don't setup font groups of Latin here.
23554 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
23555 (new_fontset_from_font): Make the specified font the default for
23556 all Latin characters.
23557
23558 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23559
23560 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
23561 is on a window system before accessing the fontset of the frame.
23562
23563 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23564
23565 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
23566
23567 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
23568 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
23569
23570 * font.c (Ffont_shape_text): If the font driver doesn't have a
23571 shaper function, make zero-width glyphs to have at least one-pixel
23572 width. Fix setting of `to' field of glyphs.
23573
23574 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23575
23576 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
23577 glyphs.
23578
23579 * font.h (struct font_driver): Improve docstring of member `shape'.
23580
23581 2008-02-01 Kenichi Handa <handa@m17n.org>
23582
23583 * composite.c (syms_of_composite): Fix docstring of
23584 auto-composition-function.
23585
23586 * font.h (LGLYPH_SIZE): New macro.
23587
23588 * font.c (Ffont_fill_gstring): Stop filling when a character not
23589 supported by the font is found.
23590 (Ffont_shape_text): When a shape callback function returns nil,
23591 try at most two more times with larger gstring.
23592 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
23593
23594 * xdisp.c (handle_auto_composed_prop): Change the argument to
23595 auto-composition-function.
23596
23597 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
23598 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
23599 Lispy glyph and store it in the lgstring.
23600
23601 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
23602
23603 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
23604
23605 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23606
23607 * font.c (Ffont_shape_text): Avoid unnecessary composition.
23608
23609 * fontset.c (Vfont_encoding_charset_alist): New variable.
23610 (syms_of_fontset): DEFVAR it.
23611 (reorder_font_vector, fontset_find_font): Optimize for the case of
23612 no need of reordering.
23613 (face_for_char): Map the charset property by
23614 Vfont_encoding_charset_alist.
23615
23616 2008-02-01 Jason Rumney <jasonr@gnu.org>
23617
23618 * w32font.c (logfonts_match): Don't check adstyle here.
23619 (font_matches_spec): Check here against physical font instead.
23620 (add_font_entity_to_list): Avoid some substitutions.
23621
23622 * font.c (font_parse_fcname): Default weight and slant to normal.
23623 (font_score): Prefer normal fonts if weight or slant unspecified.
23624 (font_score) [WINDOWSNT]: Scale weight difference down to closer
23625 match freetype scores.
23626
23627 2008-02-01 Jason Rumney <jasonr@gnu.org>
23628
23629 * w32font.c (w32font_text_extents): Don't use the frame stored in the
23630 font, as it may have been deleted.
23631 (w32_enumfont_pattern_entity): Map generic family to adstyle using
23632 most common hyphenless variation.
23633 (logfonts_match): Check generic family.
23634 (font_matches_spec): Don't check generic family here.
23635 (fill_in_logfont): Set generic family based on adstyle.
23636
23637 * w32font.h (w32font_get_cache): Update declaration.
23638
23639 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23640
23641 * ftfont.c (ftfont_get_cache): Adjust the argument type.
23642
23643 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
23644 If none of the new drivers are available, call font_update_drivers
23645 with the old drivers.
23646
23647 * w32font.c (w32font_get_cache): Adjust the argument type.
23648
23649 * xfont.c (xfont_get_cache): Adjust the argument type.
23650
23651 * font.h (struct font_driver): Change argument type of get_cache.
23652
23653 * xftfont.c (xftfont_start_for_frame): Delete prototype.
23654
23655 * font.c (Ffont_get): Fix arguments to Fassoc.
23656 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
23657 (font_clear_cache): New function.
23658 (font_list_entities, font_matching_entity): Use font_get_cache.
23659 (font_update_drivers): Call font_clear_cache when finishing a driver.
23660
23661 * fontset.c (fontset_find_font): Fix previous change.
23662
23663 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23664
23665 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
23666 dpyinfo->font_table.
23667 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
23668 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
23669
23670 * font.c (font_at): Handle the case that the arg C is negative.
23671 Handle the unibyte case.
23672 (Ffont_at): Call font_at with the arg C -1.
23673
23674 * xdisp.c (handle_auto_composed_prop): Don't get a character at
23675 the position here, and call font_at with the arg C -1.
23676 Don't check the range of the existing composition at the point.
23677
23678 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23679
23680 * fontset.c (fontset_add): New args charset_id and family.
23681 Change caller.
23682 (load_font_get_repertory, fontset_find_font): Assume that
23683 font_spec is always a font-spec object.
23684 (Fset_fontset_font): Always store a font-spec object in a fontset.
23685
23686 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
23687 instead of get_property_and_range.
23688
23689 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23690
23691 * xftfont.c (struct xftfont_info): Delete the member ft_face.
23692 (xftfont_open): Don't keep locking face.
23693 (xftfont_close): Don't unlock face.
23694 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
23695
23696 * fontset.c (fontset_find_font): Don't prefer a font of
23697 supplementary charset.
23698
23699 2008-02-01 Kenichi Handa <handa@m17n.org>
23700
23701 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
23702 script, langsys_tag to langsys, new member script.
23703 (OTF_TAG_STR): Terminate by '\0'.
23704 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
23705 listing to the script specified in that property. Fix arg to
23706 OTF_check_features.
23707
23708 2008-02-01 Jason Rumney <jasonr@gnu.org>
23709
23710 * w32font.h: New file.
23711
23712 * w32font.c: Include it.
23713 (struct w32font_info): Add owning_frame field. Move to w32font.h.
23714 (w32font_open): Set owning_frame.
23715 (w32font_text_extents): Use owning_frame.
23716 (struct font_callback_data): Add opentype_only field.
23717 (add_font_entity_to_list): Use it to filter fonts.
23718 Don't check against full name.
23719 (w32font_list_internal): New function.
23720 (w32font_list): Use it.
23721 (w32font_match_internal): New function.
23722 (w32font_match): Use it.
23723 (w32font_open_internal): New function.
23724 (w32font_open): Use it.
23725 (w32font_get_cache, w32font_close, w32font_has_char)
23726 (w32font_encode_char, w32font_text_extents, w32font_draw):
23727 Make non-static.
23728
23729 * makefile.w32-in (w32font.o): Depend on w32font.h.
23730
23731 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23732
23733 * charset.c (Fdefine_charset_internal): Record a supplementary
23734 charset at the tail of Vcharset_order_list.
23735
23736 * font.c (Ffont_shape_text): Fix the return value.
23737
23738 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
23739
23740 * xdisp.c (handle_auto_composed_prop): Fix previous change.
23741
23742 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23743
23744 * ftfont.c (struct OpenTypeSpec): New struct.
23745 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
23746 (ftfont_get_open_type_spec): New function.
23747 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
23748
23749 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
23750
23751 2008-02-01 Jason Rumney <jasonr@gnu.org>
23752
23753 * w32font.c (add_font_entity_to_list): Compare only the beginning
23754 of full name.
23755
23756 2008-02-01 Kenichi Handa <handa@m17n.org>
23757
23758 * xdisp.c (handle_auto_composed_prop): Simplify the code.
23759 Never return HANDLED_RECOMPUTE_PROPS.
23760
23761 2008-02-01 Kenichi Handa <handa@m17n.org>
23762
23763 * font.c (font_gstring_produce): Delete it.
23764
23765 * composite.h (COMPOSITION_METHOD):
23766 Handle COMPOSITION_WITH_GLYPH_STRING.
23767
23768 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23769
23770 * xfont.c (Qx): Delete.
23771 (syms_of_xfont): Don't initialize Qx.
23772
23773 * composite.h (enum composition_method):
23774 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
23775
23776 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23777
23778 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
23779 (choose_face_font): Accept new form of font-spec.
23780
23781 * frame.h (font_driver_list): Declare it unconditionally.
23782 (struct frame): Define members font_driver_list and font_data_list
23783 unconditionally.
23784
23785 * fontset.c: Include "font.h" unconditionally.
23786 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
23787 (Fset_fontset_font): Accept a font-spec object.
23788
23789 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
23790 PIXEL_SIZE part a wild card.
23791
23792 * dispextern.h (struct glyph_string): Define members clip and
23793 num_clips unconditionally.
23794 (struct face): Define members font_info and extra unconditionally.
23795
23796 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
23797 ftfont_info only when HAVE_LIBOTF is defined.
23798
23799 2008-02-01 Andreas Schwab <schwab@suse.de>
23800
23801 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
23802 and end.
23803
23804 2008-02-01 Jason Rumney <jasonr@gnu.org>
23805
23806 * w32font.c (w32font_driver): Add new fields.
23807
23808 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23809
23810 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
23811 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
23812 (LIBES): Add @M17N_FLT_CFLAGS@.
23813
23814 * composite.c (compose_text): Don't treat the new style
23815 composition specially.
23816
23817 * emacs.c (main): Call syms_of_font unconditionally.
23818
23819 * font.h (FONT_ENTITY_NOT_LOADABLE)
23820 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
23821 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
23822 (struct font_driver): New member shape.
23823 (font_registry_charsets): Extern it.
23824 (font_find_for_lface, font_prepare_composition): Adjust prototype.
23825 (font_otf_capability, font_drive_otf): Delete their externs.
23826
23827 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
23828 (font_charset_alist, font_registry_charsets): Move from xfont.c
23829 and rename.
23830 (font_prop_validate_otf): New function.
23831 (font_property_table): Register it for QCotf.
23832 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
23833 (font_drive_otf): Delete.
23834 (font_prepare_composition): New arg F. Adjust for the change of
23835 lispy gstring.
23836 (font_find_for_lface): New arg C.
23837 (font_load_for_face): Adjust for the change of font_find_for_lface.
23838 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
23839 lispy gstring.
23840 (Ffont_shape_text): New function.
23841 (Fopen_font): If the font size is not given, use 12-pixel.
23842 (Ffont_at): New arg STRING.
23843 (syms_of_font): Initialize font_charset_alist.
23844 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
23845 conditionally.
23846
23847 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
23848 fonts of the same font-spec. Change the format of RFONT-DEF.
23849 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
23850 Adjust for the change of RFONT-DEF.
23851 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
23852
23853 * ftfont.h: New file.
23854
23855 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
23856 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
23857 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
23858 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
23859 font_otf_capability and font_drive_otf, set ftfont_shape.
23860 (ftfont_list): Adjust for the change of :otf property value.
23861 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
23862 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
23863 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
23864 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
23865 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
23866 (otf_gstring, gstring, m17n_flt_initialized): New variables.
23867
23868 * w32term.c (x_draw_composite_glyph_string_foreground):
23869 Adjust for the change of lispy gstring.
23870
23871 * xdisp.c (handle_composition_prop): Adjust for the change of
23872 lispy gstring. Call a function for auto-composition with the
23873 third arg it->window.
23874 (fill_composite_glyph_string): Adjust for the change of lispy string.
23875 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
23876
23877 * xfaces.c (set_font_frame_param): Adjust for the change of
23878 font_find_for_lface.
23879
23880 * xfont.c (x_font_charset_alist): Move to font.c and rename.
23881 (xfont_registry_charsets): Likewise. Change caller.
23882 (syms_of_xfont): Don't handle x_font_charset_alist.
23883
23884 * xftfont.c: Include "ftfont.h".
23885 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
23886 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
23887 (xftfont_close) [HAVE_LIBOTF]: Close otf.
23888 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
23889 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
23890 Set xftfont_driver.shape to xftfont_shape.
23891
23892 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
23893 the change of lispy gstring.
23894
23895 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23896
23897 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
23898
23899 2008-02-01 Jason Rumney <jasonr@gnu.org>
23900
23901 * w32font.c (w32font_draw): Fill background manually.
23902
23903 2008-02-01 Jason Rumney <jasonr@gnu.org>
23904
23905 * font.c (Qfontp): Remove unused symbol.
23906 (QCantialias): New symbol.
23907 (syms_of_font): Define it.
23908 (font_property_table): Set a validator for QCantialias.
23909
23910 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
23911 Define if not already.
23912 (QCfamily): Share with xfaces.c.
23913 (Qstandard, Qsubpixel, Qnatural): New symbols.
23914 (syms_of_w32font): Define them. Don't define QCfamily here.
23915 (w32_antialias_type, lispy_antialias_type): New functions.
23916 (w32_enumfont_pattern_entity): New arg requested_font.
23917 Set antialias parameter if non-default was requested.
23918 (fill_in_logfont): Fill in lfQuality if :antialias specified.
23919
23920 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23921
23922 * lread.c (read1): Undo the previous change.
23923
23924 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
23925
23926 * frame.c (Fdelete_frame): Call font_update_drivers only when
23927 USE_FONT_BACKEND is defined.
23928
23929 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23930
23931 * font.h (struct font_bitmap): New member bits_per_pixel.
23932 (struct font_driver): New members start_for_frame and end_for_frame.
23933 (struct font_data_list): New struct.
23934 (font_put_frame_data, font_get_frame_data): Extern them.
23935
23936 * frame.h (struct frame): New member font_data_list.
23937
23938 * font.c (font_update_drivers): Call driver->start_for_frame and
23939 driver->end_for_frame at proper timings.
23940 (font_put_frame_data, font_get_frame_data): New functions.
23941 (Ffont_spec): Add usage in the docstring.
23942
23943 * frame.c (make_frame): Initialize f->font_data_list to NULL.
23944 (Fdelete_frame): Call font_update_drivers.
23945
23946 * xftfont.c (struct xftface_info): Delete the member xft_draw.
23947 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
23948 (xftfont_get_xft_draw): New function.
23949 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
23950 (xftfont_end_for_frame): New function.
23951 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
23952
23953 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
23954 Change argument. Cache GCs in the per-frame data.
23955 (struct ftxfont_frame_data): New struct.
23956 (ftxfont_draw_bitmap): New arg gc_fore and flush.
23957 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
23958 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
23959 (ftxfont_end_for_frame): New function.
23960 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
23961
23962 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
23963
23964 2008-02-01 Kenichi Handa <handa@m17n.org>
23965
23966 * xselect.c (Vselection_coding_system)
23967 (Vnext_selection_coding_system): Delete them.
23968 (syms_of_xselect): Don't declare selection-coding-system and
23969 next-selection-coding-system. They are declared in select.el.
23970
23971 2008-02-01 Jason Rumney <jasonr@gnu.org>
23972
23973 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
23974
23975 * w32fns.c: Include imm.h.
23976 (get_composition_string_fn, get_ime_context_fn): New optional
23977 system functions.
23978 (globals_of_w32fns): Load them from imm32.dll.
23979 (ignore_ime_char): New flag.
23980 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
23981 WM_IME_ENDCOMPOSITION messages.
23982
23983 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
23984 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
23985
23986 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23987
23988 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
23989 (READCHAR_REPORT_MULTIBYTE): New macro.
23990 (readchar): New 2nd arg MULTIBYTE.
23991 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
23992 Make symbol's name multibyte according to the multibyteness of the
23993 source.
23994
23995 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23996
23997 * xfaces.c (face_for_overlay_string): Call lookup_face with
23998 correct arguments (fix of synching with the trunk).
23999
24000 2008-02-01 Kenichi Handa <handa@m17n.org>
24001
24002 * font.c (font_prop_validate_symbol, font_prop_validate_style)
24003 (font_prop_validate_non_neg, font_prop_validate_spacing):
24004 Delete argument prop_index.
24005 (font_property_table): Change arguments to validater. Change Callers.
24006 (font_lispy_object): Delete.
24007 (font_at): Use font_find_object instead fo font_lispy_object.
24008
24009 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24010
24011 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
24012 and file names.
24013
24014 2008-02-01 Jason Rumney <jasonr@gnu.org>
24015
24016 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
24017 (font_matches_spec): Remove debug output.
24018 (add_font_entity_to_list): Avoid using substituted fonts.
24019
24020 2008-02-01 Jason Rumney <jasonr@gnu.org>
24021
24022 * doc.c (Fsnarf_documentation):
24023 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
24024
24025 2008-02-01 Miles Bader <miles@gnu.org>
24026
24027 * dispextern.h (struct glyph_row): Only define "clip" field if
24028 HAVE_WINDOW_SYSTEM is defined.
24029
24030 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
24031
24032 Fix up multi-tty merge.
24033
24034 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
24035 and indentation.
24036
24037 * xfaces.c (free_realized_face, clear_face_gcs):
24038 Include font_done_for_face in the input_blocked section, just in case.
24039
24040 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
24041 (get_char_face_and_encoding): Undo last change and remove the *other*
24042 duplicate definition (i.e. keep the one that's better scoped and that
24043 includes code for the font-backend).
24044
24045 * terminal.c (create_terminal): Default keyboard_coding to
24046 `no-conversion' and terminal_coding to `undecided'.
24047
24048 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
24049
24050 * fontset.c (free_realized_fontsets): Check that the table entry does
24051 contain a fontset before trying to compare it to `base'.
24052
24053 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
24054 syms_of_charset, and syms_of_coding earlier because init_window_once
24055 now needs Vcoding_system_hash_table to be setup.
24056
24057 * coding.h (default_buffer_file_coding): Remove.
24058
24059 * coding.c (default_buffer_file_coding): Remove.
24060 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
24061 than ->symbol, and use the terminal-local coding system.
24062 (syms_of_coding): Don't setup the coding-systems that are not
24063 terminal-local.
24064 (Fdefine_coding_system_internal): Use XCAR/XCDR.
24065
24066 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
24067 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
24068
24069 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
24070 in chartab.c and were re-added here by mistake.
24071 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
24072
24073 * doc.c (Fsnarf_documentation):
24074 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
24075 src to etc.
24076
24077 * ChangeLog.10: Add mistakenly removed entry.
24078
24079 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
24080
24081 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
24082
24083 2008-02-01 Miles Bader <miles@gnu.org>
24084
24085 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
24086 Add extra args to FACE_FOR_CHAR.
24087
24088 2008-02-01 Kenichi Handa <handa@m17n.org>
24089
24090 * keymap.c (where_is_internal_1): If key is a cons, store the copy
24091 in sequence.
24092
24093 * chartab.c (map_sub_char_table, map_char_table): If the range
24094 contains just one character, call the function with that character
24095 even if the depth is not 3.
24096
24097 2008-02-01 Jason Rumney <jasonr@gnu.org>
24098
24099 * w32font.c (w32font_text_extents): Calculate metrics for the
24100 whole string.
24101
24102 2008-02-01 Jason Rumney <jasonr@gnu.org>
24103
24104 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
24105
24106 2008-02-01 Jason Rumney <jasonr@gnu.org>
24107
24108 * w32term.c (x_set_glyph_string_clipping):
24109 Use get_glyph_string_clip_rects.
24110 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
24111 Adjust for the change of struct glyph_string.
24112
24113 * w32font.c (w32font_draw): Do clipping here.
24114
24115 2008-02-01 Kenichi Handa <handa@m17n.org>
24116
24117 * xftfont.c (xftfont_draw): Adjust for the change of struct
24118 glyph_string.
24119
24120 * xterm.c (x_set_glyph_string_clipping):
24121 Use get_glyph_string_clip_rects.
24122 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
24123 Adjust for the change of struct glyph_string.
24124
24125 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
24126 the resulting clip(s}.
24127 (expose_overlaps): Add arg r. Change callers. Set it to
24128 row->clip temporarily.
24129 (expose_window): Redraw rows overlapping the exposed area.
24130
24131 * dispextern.h (struct glyph_row): New member clip.
24132 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
24133 clip_height, new member clip, and num_clips.
24134
24135 2008-02-01 Kenichi Handa <handa@m17n.org>
24136
24137 * data.c (Fchar_or_string_p): Fix docstring.
24138
24139 2008-02-01 Kenichi Handa <handa@m17n.org>
24140
24141 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
24142 create a temporary XftDraw object.
24143
24144 2008-02-01 Kenichi Handa <handa@m17n.org>
24145
24146 * font.c (Ffontp): Fix docstring.
24147
24148 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
24149 strong evidence of ISO-2022.
24150
24151 2008-02-01 Kenichi Handa <handa@m17n.org>
24152
24153 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
24154 SYNTAX_ENTRY_FOLLOW_PARENT.
24155
24156 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
24157
24158 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
24159 its type.
24160 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
24161 Update to the new type of weak_hash_tables and next_weak.
24162
24163 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
24164 a plain C pointer to Lisp_Hash_Table.
24165
24166 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
24167 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
24168 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
24169 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
24170 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
24171 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
24172 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
24173 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
24174 (GC_EQ): Remove since they've been identical to their non-GC_
24175 alter-egos ever since the markbit was eradicated.
24176
24177 * alloc.c:
24178 * buffer.c:
24179 * buffer.h:
24180 * data.c:
24181 * fileio.c:
24182 * filelock.c:
24183 * fns.c:
24184 * frame.h:
24185 * lisp.h:
24186 * macterm.c:
24187 * print.c:
24188 * process.c:
24189 * w32fns.c:
24190 * w32menu.c:
24191 * w32term.c:
24192 * xfns.c:
24193 * xmenu.c:
24194 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
24195
24196 2008-02-01 Kenichi Handa <handa@m17n.org>
24197
24198 * chartab.c (map_sub_char_table): Make it work for the top-level
24199 char-table. Fix handling of parent char-table.
24200 (map_char_table): Adjust for the above change.
24201
24202 2008-02-01 Jason Rumney <jasonr@gnu.org>
24203
24204 * w32font.c (Qgdi): Rename from Qw32.
24205
24206 2008-02-01 Jason Rumney <jasonr@gnu.org>
24207
24208 * w32bdf.c (get_quoted_string): Make function static.
24209
24210 2008-02-01 Kenichi Handa <handa@m17n.org>
24211
24212 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
24213 bigger ascent and descent than those of the font, use them as
24214 font's ascent and descent.
24215
24216 2008-02-01 Kenichi Handa <handa@m17n.org>
24217
24218 * Makefile.in (${lispsource}international/charprop.el): Move this
24219 target within "#ifdef HAVE_UNIDATA" and "#endif".
24220
24221 2008-02-01 Kenichi Handa <handa@m17n.org>
24222
24223 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
24224 (shortlisp): Add ../lisp/language/tai-viet.el.
24225
24226 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
24227
24228 * Makefile.in (${lispsource}international/charprop.el): Depend on
24229 temacs${EXEEXT}.
24230
24231 2008-02-01 Jason Rumney <jasonr@gnu.org>
24232
24233 * w32font.c (w32font_close): Delete the GDI font object.
24234
24235 * w32menu.c: Include character.h.
24236
24237 * w32proc.c: Likewise.
24238
24239 * w32select.c: Likewise.
24240
24241 * makefile.w32-in (w32proc.o): Depend on character.h.
24242
24243 2008-02-01 Jason Rumney <jasonr@gnu.org>
24244
24245 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
24246
24247 * w32menu.c (syms_of_w32menu): Likewise.
24248
24249 * w32proc.c (syms_of_ntproc): Likewise.
24250
24251 * w32select.c (syms_of_w32select): Likewise.
24252
24253 * w32term.c (syms_of_w32term): Likewise.
24254
24255 2008-02-01 Jason Rumney <jasonr@gnu.org>
24256
24257 * w32font.c (w32font_draw): Delete brush after using it.
24258
24259 2008-02-01 Jason Rumney <jasonr@gnu.org>
24260
24261 * w32font.c (w32font_open): Don't set font_idx.
24262 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
24263 to font settings.
24264 (w32font_draw): Fill background explicitly.
24265
24266 2008-02-01 Jason Rumney <jasonr@gnu.org>
24267
24268 * w32term.c (w32_initialize): Don't call w32font_initialize.
24269
24270 * w32font.c (w32font_info): Remove subranges.
24271 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
24272 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
24273 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
24274 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
24275 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
24276 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
24277 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
24278 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
24279 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
24280 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
24281 New symbols.
24282 (font_callback_data): New struct.
24283 (w32font_list, w32font_match): Use it.
24284 (w32font_open): Don't populate subranges.
24285 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
24286 (w32font_encode_char): Always return unicode code-point as-is.
24287 (w32font_text_extents): Supply a transformation matrix to
24288 GetGlyphOutline. Never look up by glyph index. Avoid looping
24289 twice. Use unicode version of GetTexExtentPoint32 instead of
24290 glyph index version.
24291 (set_fonts_frame): Remove.
24292 (w32_enumfont_pattern_entity): Add frame parameter, use it to
24293 set frame parameter. Use backward compatible fake foundries.
24294 Save generic family in extra slot under QCfamily. Make width slot
24295 constant. Save QCspacing value. Save list of scripts instead of
24296 binary subranges.
24297 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
24298 (add_font_entity_to_list): Use font_callback_data struct.
24299 Filter unwanted fonts.
24300 (add_one_font_entity_to_list): Use font_callback_data struct.
24301 (w32_registry): Default to iso10646_1.
24302 (fill_in_logfont): Use dpi from extra slot. Don't bother with
24303 string font registries. Don't fill in font name if it is a generic
24304 family name, fill family instead. Use spacing, family and script
24305 extra info to fill pitch, family and charset fields.
24306 (list_all_matching_fonts): Use font_callback_data struct.
24307 (unicode_range_for_char): Remove.
24308 (font_supported_scripts): New function.
24309 (w32font_initialize): Remove.
24310 (syms_of_w32font): Update which symbols are defined.
24311
24312 2008-02-01 Jason Rumney <jasonr@gnu.org>
24313
24314 * font.c (font_pixel_size): Reverse assq_no_quit args.
24315
24316 * w32term.h (FONT_WIDTH): Report max width, not average.
24317 (FONT_MAX_WIDTH): Remove.
24318 (FONT_AVG_WIDTH): New macro.
24319
24320 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
24321 redefinition of FONT_WIDTH.
24322
24323 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
24324 (w32_cache_char_metrics): Use FONT_WIDTH.
24325
24326 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
24327
24328 2008-02-01 Jason Rumney <jasonr@gnu.org>
24329
24330 * w32font.c (w32font_open): Make lfHeight negative.
24331
24332 * w32fns.c (x_default_font_parameter): Use new style font name.
24333 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
24334
24335 2008-02-01 Jason Rumney <jasonr@gnu.org>
24336
24337 * w32font.c (QCsubranges): New symbol.
24338 (w32font_open, w32font_has_char): Get subranges from subproperty
24339 of extra.
24340 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
24341 (syms_of_w32font): Define :subranges symbol.
24342
24343 * font.c (font_put_extra): Expose externally.
24344
24345 * font.h (font_put_extra): Move declaration from font.c.
24346
24347 * font.c (Ffont_get): Use font driver to determine otf capability.
24348 (adjust_anchor): Check if driver defines anchor_point before using.
24349
24350 * w32font.c (w32font_open): Handle size, height and pixel_size better.
24351 (w32font_draw): Use options.
24352 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
24353 Fix detection of truetype fonts.
24354 (registry_to_w32_charset): Handle charsets other than iso8859-1
24355 expressed as lisp symbols.
24356 (w32_registry): Express charset as lisp symbol.
24357 (fill_in_logfont): Reverse pixel and point height logic.
24358 Don't set width here. Set quality to default.
24359
24360 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
24361 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
24362
24363 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
24364 Remove redundant loop and allocation.
24365
24366 * makefile.w32-in (font.o, w32font.o): New objects.
24367 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
24368 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
24369
24370 * xdisp.c (fill_composite_glyph_string): Make the first arg to
24371 STORE_XCHARB a valid l-value.
24372
24373 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
24374 calculations for non-Truetype fonts.
24375 (x_draw_glyph_string): Sync with xterm.c.
24376 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
24377 Remove redundant code.
24378 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
24379
24380 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
24381 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
24382
24383 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
24384 (x_to_w32_charset, w32_to_x_charset): Expose externally.
24385
24386 * w32font.c: New file for w32 font backend.
24387
24388 2008-02-01 Kenichi Handa <handa@m17n.org>
24389
24390 * term.c: Don't include "buffer.h" twice.
24391
24392 2008-02-01 Kenichi Handa <handa@m17n.org>
24393
24394 * character.c (Funibyte_string): New function.
24395 (syms_of_character): Defsubr it.
24396
24397 2008-02-01 Jason Rumney <jasonr@gnu.org>
24398
24399 * w32term.c [USE_FONT_BACKEND]:
24400 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
24401 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
24402 (x_draw_glyph_string, x_draw_glyph_string_foreground)
24403 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
24404 (x_free_frame_resources): Sync with xterm.c.
24405
24406 2008-02-01 Andreas Schwab <schwab@suse.de>
24407
24408 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
24409 char-table size.
24410
24411 2008-02-01 Kenichi Handa <handa@m17n.org>
24412
24413 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
24414
24415 2008-02-01 Kenichi Handa <handa@m17n.org>
24416
24417 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
24418 font_otf_gpos, add font_drive_otf.
24419
24420 * fontset.c (fontset_find_font): Pay attention to font size
24421 specified for a font.
24422 (reorder_font_vector): Check contents of font_def.
24423
24424 * font.c (struct otf_list): Delete it.
24425 (otf_list): Make it a lisp variable.
24426 (otf_open): Use lispy otf_list.
24427 (generate_otf_features): Rename from parse_gsub_gpos_spec.
24428 (check_otf_features): New function.
24429 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
24430 New functions.
24431 (font_drive_otf): New function merging font_otf_gsub and
24432 font_otf_gpos.
24433 (font_open_for_lface): New arg spec. Change argument order.
24434 (font_load_for_face): Adjust for the change of font_open_for_lface.
24435 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
24436 Ffont_otf_gpos.
24437 (syms_of_font): Staticpro otf_list. Delete defsubr of
24438 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
24439
24440 * xfaces.c (set_font_frame_param): Adjust for the change of
24441 font_open_for_lface.
24442
24443 * font.h (font_open_for_lface): Adjust prototype.
24444 (struct font_driver): Delete members otf_gsub and otf_gpos, add
24445 member otf_drive.
24446 (font_otf_gsub, font_otf_gpos): Delete externs.
24447 (font_drive_otf): Extern it.
24448
24449 2008-02-01 Kenichi Handa <handa@m17n.org>
24450
24451 * font.c (font_at): If the window W is not on a window system,
24452 return Qnil.
24453
24454 * coding.c (produce_chars, encode_coding): Don't call
24455 insert_from_gap if no characters to produce.
24456
24457 2008-02-01 Kenichi Handa <handa@m17n.org>
24458
24459 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
24460 Fclear_face_cache.
24461
24462 * xfaces.c (face_for_font): Check also face->font==font->font.font.
24463
24464 2008-02-01 Miles Bader <miles@gnu.org>
24465
24466 * emacs.c (main): Change default value of `enable_font_backend' to 1.
24467 Parse "--disable-font-backend" option.
24468 (standard_args): Add "--disable-font-backend" option.
24469
24470 2008-02-01 Kenichi Handa <handa@m17n.org>
24471
24472 * fontset.c (fontset_find_font): New function.
24473 (fontset_font): Use fontset_find_font.
24474 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
24475 Register the specified font for all Latin characters.
24476 (new_fontset_from_font): Register the specified font for all Latin
24477 characters.
24478 (dump_fontset): For a realized fontset, include the base fontset
24479 name in the returned vector.
24480
24481 2008-02-01 Kenichi Handa <handa@m17n.org>
24482
24483 * character.h (CHAR_STRING): Cast C to unsigned on calling
24484 char_string.
24485
24486 * character.c (char_string): Type of arg C changed to unsigned.
24487 Signal an error if C is an invalid character code.
24488
24489 * editfns.c (general_insert_function, Fchar_to_string):
24490 Use CHARACTERP, not INTEGERP.
24491
24492 2008-02-01 Kenichi Handa <handa@m17n.org>
24493
24494 * character.h (MIN_MULTIBYTE_LEADING_CODE)
24495 (MAX_MULTIBYTE_LEADING_CODE): New macros.
24496
24497 * regex.c (analyse_first): Fix for multibyte characters in "case
24498 charset:" and "case categoryspec:".
24499
24500 2008-02-01 Andreas Schwab <schwab@suse.de>
24501
24502 * Makefile.in (LIBES): Move standard libraries to the end.
24503
24504 2008-02-01 Kenichi Handa <handa@m17n.org>
24505
24506 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
24507 nonzero, don't shrink the buffer nextb.
24508
24509 * buffer.h (struct buffer_text): New member inhibit_shrinking.
24510
24511 * coding.c (coding_alloc_by_making_gap): New arg offset.
24512 (alloc_destination): Call coding_alloc_by_making_gap with the arg
24513 offset.
24514 (decode_coding_iso_2022): Update coding->safe_charsets.
24515 (decode_coding_gap): Temporarily set
24516 current_buffer->text->inhibit_shrinking to 1.
24517
24518 2008-02-01 Kenichi Handa <handa@m17n.org>
24519
24520 * xterm.c (x_draw_composite_glyph_string_foreground):
24521 Fix indexing into elements of s->cmp and s->char2b.
24522
24523 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
24524
24525 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
24526
24527 2008-02-01 Kenichi Handa <handa@m17n.org>
24528
24529 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
24530 target_multibyte instead of multibyte.
24531 (re_match_2_internal): Call bcmp_translate with target_multibyte.
24532 (bcmp_translate): Change the argument name from multibyte to
24533 target_multibyte.
24534
24535 2008-02-01 Kenichi Handa <handa@m17n.org>
24536
24537 These changes are to compile a regexp into a pattern that can be
24538 used both for multibyte and unibyte targets.
24539
24540 * Makefile.in (search.o): Depend on charset.h.
24541
24542 * character.c (multibyte_char_to_unibyte_safe): New function.
24543
24544 * search.c: Include "charset.h".
24545 (compile_pattern_1): Delete argument multibyte. Don't set
24546 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
24547 (compile_pattern): Don't compare cp->buf.target_multibyte.
24548 Compare cp->buf.charset_unibyte.
24549 (compile_pattern): Set cp->buf.target_multibyte.
24550
24551 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
24552
24553 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
24554
24555 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
24556 multibyte. Change callers.
24557 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
24558 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
24559 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
24560 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
24561 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
24562 (regex_compile): Make the compiled pattern usable both for
24563 multibyte and unibyte targets.
24564 (analyse_first): Make the fastmap usable both for multibyte and
24565 unibyte targets.
24566 (TRANSLATE_VIA_MULTIBYTE): Delete.
24567 (re_match_2_internal): Pay attention to the case that the
24568 multibyteness of bufp and target may be different.
24569
24570 2008-02-01 Kenichi Handa <handa@m17n.org>
24571
24572 * xdisp.c (x_produce_glyphs): When a font is not found, make the
24573 empty box occupy at least one column width.
24574
24575 2008-02-01 Miles Bader <miles@gnu.org>
24576
24577 * Makefile.in: Remove redundant HAVE_XFT clause.
24578
24579 2008-02-01 Kenichi Handa <handa@m17n.org>
24580
24581 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
24582
24583 2008-02-01 Kenichi Handa <handa@m17n.org>
24584
24585 * fontset.c (Finternal_char_font): Fix for the case of POSITION
24586 being nil.
24587
24588 2008-02-01 Kenichi Handa <handa@m17n.org>
24589
24590 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
24591
24592 2008-02-01 Kenichi Handa <handa@m17n.org>
24593
24594 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
24595
24596 2008-02-01 Kenichi Handa <handa@m17n.org>
24597
24598 * search.c (simple_search): Fix previous change.
24599
24600 2008-02-01 Kenichi Handa <handa@m17n.org>
24601
24602 * xftfont.c (ftfont_font_format): Extern declaration.
24603
24604 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
24605
24606 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
24607 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
24608
24609 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
24610 (ftfont_font_format): Fix previous change.
24611
24612 * font.h (Ffont_xlfd_name): EXFUN it.
24613
24614 * font.c (font_parse_xlfd): Fix the array size of `f'.
24615 (register_font_driver): Use EQ to compare driver->type.
24616
24617 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
24618 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
24619 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
24620
24621 2008-02-01 Kenichi Handa <handa@m17n.org>
24622
24623 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
24624 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
24625
24626 2008-02-01 Kenichi Handa <handa@m17n.org>
24627
24628 * xfont.c (xfont_open): Set font->format.
24629
24630 * xftfont.c (xftfont_open): Set font->format.
24631
24632 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
24633 (ftfont_list): Include FC_FONTFORMAT in FcObject.
24634 (ftfont_open): Set font->format.
24635 (ftfont_font_format): New function.
24636
24637 * font.h (struct font): New member format.
24638
24639 * font.c (Qopentype): New variable.
24640 (syms_of_font): Defsym it.
24641 (Fquery_font): Change the format of the last element of the return
24642 value.
24643
24644 2008-02-01 Kenichi Handa <handa@m17n.org>
24645
24646 * xfns.c (xic_create_xfontset): Try the default fontset name as a
24647 last resort.
24648
24649 2008-02-01 Kenichi Handa <handa@m17n.org>
24650
24651 * coding.c (detect_coding_charset): Fix detection of multi-byte
24652 charset.
24653
24654 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
24655
24656 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
24657
24658 2008-02-01 Kenichi Handa <handa@m17n.org>
24659
24660 * xdisp.c (get_next_display_element): Set it->face_id for the
24661 first component of a composition.
24662 (x_produce_glyphs): Check if the font is changed or not for composition.
24663
24664 2008-02-01 Kenichi Handa <handa@m17n.org>
24665
24666 * fontset.c (Qlatin): New variable.
24667 (syms_of_fontset): Define it as a lisp symbol.
24668 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
24669
24670 2008-02-01 Kenichi Handa <handa@m17n.org>
24671
24672 * font.c (font_unparse_fcname): Pay attention to the case that
24673 some of font property is a null string.
24674
24675 2008-02-01 Kenichi Handa <handa@m17n.org>
24676
24677 * term.c: Include "composite.h".
24678 (encode_terminal_code): Output all components of composition.
24679 Check the size of encode_terminal_src.
24680 (produce_glyphs): For composition, call produce_composite_glyph.
24681 (append_composite_glyph, produce_composite_glyph): New functions.
24682
24683 * xdisp.c (x_produce_glyphs): In handling composition, if a font
24684 is not found, get font_info from the current ascii face.
24685
24686 2008-02-01 Kenichi Handa <handa@m17n.org>
24687
24688 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
24689 buffer-file-name to Qnil before calling insert_from_buffer.
24690
24691 * font.c (font_unparse_fcname): Pay attention to the case that
24692 foundry is a null string.
24693
24694 2008-02-01 Kenichi Handa <handa@m17n.org>
24695
24696 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
24697
24698 * font.c (Qunicode_sip): New variable.
24699 (syms_of_font): Declare it as a Lisp symbol.
24700
24701 * font.h (Qunicode_sip): Extern it.
24702
24703 2008-02-01 Kenichi Handa <handa@m17n.org>
24704
24705 * composite.c (get_composition_id): Pay attention to TAB component.
24706
24707 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
24708 TAB. Adjust for the change of s->char2b which always points to
24709 the first element of allocated memory.
24710
24711 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
24712
24713 * xdisp.c (handle_composition_prop): Set it->c to the first
24714 non-TAB component.
24715 (fill_composite_glyph_string): Change argument.
24716 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
24717 (x_produce_glyphs): Fix handling of left/right padding.
24718
24719 2008-02-01 Kenichi Handa <handa@m17n.org>
24720
24721 * coding.c (detect_coding_system): Fix for handling off
24722 inhibit_iso_escape_detection. Fix for the case that no coding
24723 system is defined for a specific coding category.
24724
24725 2008-02-01 Kenichi Handa <handa@m17n.org>
24726
24727 * font.c (font_matching_entity): Delete unused local var.
24728
24729 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
24730 opening a font.
24731
24732 * fileio.c (Finsert_file_contents): On recovering a file, assume
24733 Unix-like eol.
24734 (choose_write_coding_system): On auto-saving a file, force
24735 Unix-like eol.
24736
24737 * coding.c (setup_coding_system): Fix setting of
24738 coding->common_flags based on eol_type.
24739 (coding_inherit_eol_type): If PARENT is not nil, be sure to
24740 inherit from it.
24741
24742 2008-02-01 Kenichi Handa <handa@m17n.org>
24743
24744 * alloc.c (NSTATICS): Increas to 0x600.
24745
24746 2008-02-01 Kenichi Handa <handa@m17n.org>
24747
24748 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
24749 (ftfont_list): Don't check :name property.
24750 (ftfont_match): New function.
24751 (ftfont_pattern_entity): If the pattern doesn't contain
24752 FC_SPACING, don't assume FC_MONO.
24753
24754 * font.h (struct font_driver): New member `match'.
24755 (font_update_drivers): Adjust prototype.
24756
24757 * font.c (font_parse_fcname, font_parse_name): Don't change :name
24758 property of FONT.
24759 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring):
24760 Define them unconditionally.
24761 (font_matching_entity): New function.
24762 (font_open_by_name): Try font_matching_entity if exact match is
24763 not found.
24764 (font_update_drivers): Delete the arg FONT. Return a list of
24765 actually used backends. Don't free faces, font caches here.
24766 Don't store data in frame parameters. Don't call x_set_font.
24767 (Ffont_spec): Store :name property as is.
24768 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
24769 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
24770 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
24771 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
24772 Call font->driver->otf_gsub instead of font_otf_gsub.
24773
24774 * frame.c (x_set_font_backend): Do more works that were done in
24775 font_update_drivers before.
24776
24777 * xfont.c (xfont_match): New function.
24778 (xfont_driver): Set xfont_driver.match to xfont_match.
24779 (xfont_draw): Set font in GC if necessary.
24780
24781 * ftxfont.c (ftxfont_match): New function.
24782 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
24783
24784 * xftfont.c (xftfont_match): New function.
24785 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
24786
24787 2008-02-01 Kenichi Handa <handa@m17n.org>
24788
24789 * font.h (struct font): New member scalable.
24790 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
24791 (font_otf_gsub): Adjust prototype.
24792
24793 * font.c (font_otf_capability): Fix handling of the default langsys.
24794 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
24795 Check the contents of SPEC.
24796 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
24797 (check_gstring): New function.
24798 (REPLACEMENT_CHARACTER): New macro.
24799 (font_otf_gsub): New arg alternate_subst. Be sure to set all
24800 glyph codes of GSTRING.
24801 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
24802 (font_prepare_composition): Set cmp->glyph_len.
24803 (font_open_entity): Set font->scalable.
24804 (Ffont_get): Handle :otf property.
24805 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates):
24806 New functions.
24807 (Fquery_font): Use font->font.full_name.
24808 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
24809 Sfont_otf_alternates.
24810
24811 * ftfont.c (ftfont_open): Set font->font.full_name and
24812 font->font.name properly. Fix calculation of font->font.height
24813 and font->min_width.
24814
24815 * ftxfont.c (ftxfont_create_gcs): New function.
24816 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
24817 (ftxfont_draw_backgrond): Fix filling region.
24818 (ftxfont_default_fid): New function.
24819 (ftxfont_open): Set xfont->fid to the return value of
24820 ftxfont_default_fid.
24821 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
24822 (ftxfont_done_face): Free only GCs that are created by
24823 ftxfont_create_gcs.
24824 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
24825
24826 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
24827 Clip to src->width, etc (not src->clip_XXX).
24828
24829 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
24830 FontBackend frame parameter.
24831
24832 2008-02-01 Kenichi Handa <handa@m17n.org>
24833
24834 * font.h (struct font_driver_list): New member `on'.
24835 (Fclear_font_cache): EXFUN it.
24836 (font_update_drivers): Extern it.
24837
24838 * font.c (font_unparse_fcname): Fix typo (swidth->width).
24839 (font_list_entities): Check driver_list->on.
24840 (register_font_driver): Initialize `on' member to 0.
24841 (font_update_drivers): New function.
24842 (Fclear_font_cache): Check driver_list->on.
24843
24844 * frame.h (Qfont_backend): Extern it.
24845 (x_set_font_backend): Extern it.
24846
24847 * frame.c (Qfont_backend): New variable.
24848 (frame_parms): New element for font-backend.
24849 (x_set_font_backend): New function.
24850
24851 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
24852 FontBackend frame parameter.
24853 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
24854 x_set_font_backend.
24855
24856 * xfont.c (xfont_list): Don't try listing by :name property if the
24857 name is not for XLFD.
24858
24859 2008-02-01 Kenichi Handa <handa@m17n.org>
24860
24861 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
24862 (LGLYPH_SET_TO): New macros.
24863 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
24864 element of G is vector or not.
24865 (font_at): Extern it.
24866
24867 * font.c: Include window.h.
24868 (font_lispy_object): New function.
24869 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
24870 end of valid glyph.
24871 (font_close_object): Fix getting (struct font *).
24872 (font_at): New function.
24873 (Ffont_get): If FONT is a font-object, get entity from it.
24874 (Ffont_make_gstring): Initialize elements of glyphs with nil.
24875 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX.
24876 Fix range check.
24877 (Ffont_at): New function.
24878 (syms_of_font): Defsubr Sfont_at.
24879
24880 * xdisp.c (it_props): Move the entry for Qauto_composed to just
24881 before the entry for Qcomposition.
24882 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
24883 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
24884 the font in gstring.
24885 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
24886 LGLYPH_FORM (g) to detect the end of valid glyph.
24887 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
24888 we are composing with gstring.
24889
24890 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
24891 Check if adjustment is vector or not.
24892
24893 * Makefile.in (font.o): Make it depends on window.h.
24894
24895 2008-02-01 Kenichi Handa <handa@m17n.org>
24896
24897 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
24898 adjustment is vector or not.
24899
24900 2008-02-01 Miles Bader <miles@gnu.org>
24901
24902 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
24903
24904 2008-02-01 Kenichi Handa <handa@m17n.org>
24905
24906 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
24907 (LGLYPH_SET_WIDTH): Adjust for the change of LGLYPH format.
24908 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
24909
24910 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
24911 (DEVICE_DELTA): Fix typo.
24912 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
24913 LGLYPH format.
24914
24915 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
24916 the change of LGLYPH format.
24917
24918 2008-02-01 Kenichi Handa <handa@m17n.org>
24919
24920 * ftfont.c (ftfont_list): Fix typo.
24921 (ftfont_build_basic_charsets): Don't include letters with diacritics.
24922
24923 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
24924
24925 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
24926
24927 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
24928 xftface_info is non-NULL.
24929
24930 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
24931
24932 * ftfont.c (ftfont_list): Move misplaced #endif.
24933
24934 2008-02-01 Kenichi Handa <handa@m17n.org>
24935
24936 * ftfont.c (ftfont_list): Pay attention to the case that
24937 FC_CAPABILITY is not defined.
24938
24939 2008-02-01 Kenichi Handa <handa@m17n.org>
24940
24941 * xftfont.c (xftfont_open): Set charset related members to -1.
24942
24943 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
24944 QCname.
24945 (ftfont_open): Set charset related members to -1.
24946
24947 * fontset.c (Votf_script_alist): New variable.
24948 (syms_of_fontset): Initialize it.
24949 (fontset_font): Delete unused variable.
24950
24951 * fontset.h (Votf_script_alist): Extern it.
24952
24953 * font.c (font_find_for_lface): Optimize code.
24954
24955 * font.h (font_close_object, font_merge_old_spec): Extern them.
24956
24957 2008-02-01 Kenichi Handa <handa@m17n.org>
24958
24959 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
24960 (syms_of_font): Initialize them.
24961 (font_pixel_size): Allow float value in dpi.
24962 (font_prop_validate_type): Delete.
24963 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
24964 Change caller.
24965 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
24966 (font_prop_validate_extra): Delete.
24967 (font_prop_validate_spacing): New function.
24968 (font_property_table): Add elements for all known properties.
24969 (get_font_prop_index): Rename from check_font_prop_name.
24970 New argument FROM. Change caller.
24971 (font_prop_validate): Validate all known properties.
24972 (font_put_extra): Delete argument force. Change caller.
24973 (font_expand_wildcards): Make it static. Fix the way of shrinking
24974 the possible range.
24975 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
24976 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
24977 Change caller.
24978 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
24979 (font_parse_fcname): Delete argument merge. Fix parsing of point
24980 size. Don't validate properties values here. Change caller.
24981 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
24982 (font_open_by_name): Delete unused variable.
24983 (Ffont_spec): Likewise. Validate property values.
24984 (Ffont_match_p): New function.
24985
24986 * font.h (QCscalable): Extern it.
24987 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
24988
24989 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
24990
24991 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
24992 (xfont_list_pattern): New function.
24993 (xfont_list): Use xfont_list_pattern.
24994
24995 2008-02-01 Kenichi Handa <handa@m17n.org>
24996
24997 * font.h (Flist_fonts): EXFUN it.
24998
24999 2008-02-01 Jason Rumney <jasonr@gnu.org>
25000
25001 * w32term.c (w32_initialize): Add back smoothing_type and
25002 smoothing_enabled definitions.
25003
25004 2008-02-01 Kenichi Handa <handa@m17n.org>
25005
25006 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
25007 s->face->font on determining underline position.
25008
25009 2008-02-01 Kenichi Handa <handa@m17n.org>
25010
25011 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
25012 (font_has_char): Accept font-object too.
25013 (font_find_for_lface): Try at first with a size specified in face.
25014
25015 2008-02-01 Kenichi Handa <handa@m17n.org>
25016
25017 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
25018 font_open_by_name.
25019
25020 2008-02-01 Kenichi Handa <handa@m17n.org>
25021
25022 * font.h (QCspacing, QCdpi): Extern them.
25023 (enum font_spacing): New enum.
25024 (FONT_PIXEL_SIZE_QUANTUM): New macro.
25025
25026 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
25027 (QCspacing, QCdpi): New variables.
25028 (syms_of_font): Initialize them.
25029 (font_pixel_size): New function.
25030 (font_put_extra): New function.
25031 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
25032 in FONT_EXTRA.
25033 (font_parse_fcname): Handle enumerated values (e.g. bold).
25034 Fix handling font size. Add QCname property that contains only
25035 unknown properties.
25036 (font_score): Change argument. Change caller. Pay attention to
25037 FONT_PIXEL_SIZE_QUANTUM.
25038 (font_sort_entites, font_list_entities, font_find_for_lface)
25039 (font_open_for_lface, font_open_by_name): Fix handling of font size.
25040 (Ffont_spec): Add QCname property that contains only unknown properties.
25041
25042 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq.
25043 Don't include weight in listing pattern, instead check weight of each
25044 listed font. Don't include scalable in pattern. Pay attention to
25045 FONT_PIXEL_SIZE_QUANTUM.
25046
25047 2008-02-01 Kenichi Handa <handa@m17n.org>
25048
25049 * font.c (font_parse_fcname): Fix parsing of point-size.
25050 (font_unparse_fcname): Produce symbolic names for style properties.
25051 (font_list_entities): Handle float size correctly.
25052 (font_open_by_name): Prefer `normal' property values if the name
25053 doesn't specify them.
25054
25055 * fontset.c (Finternal_char_font): Use font_get_name, not
25056 Ffont_xlfd_name.
25057
25058 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
25059 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
25060 pattern. Don't force scalable.
25061
25062 * xftfont.c (xftfont_open): For generating a name, start from
25063 96-byte buffer.
25064
25065 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
25066
25067 * frame.h (x_new_fontset2): Fix prototype.
25068
25069 2008-02-01 Kenichi Handa <handa@m17n.org>
25070
25071 * font.h (struct font_driver): Delete member parse_name.
25072 (font_match_p, font_get_spec, font_parse_fcname)
25073 (font_unparse_fcname): Extern them.
25074 (font_get_name): Adjust prototype.
25075
25076 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
25077 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
25078 (font_expand_wildcards): Fix handling ENCODING field.
25079 Avoid unnecessary checks for weight, slant, and swidth.
25080 (font_parse_fcname): New function.
25081 (font_unparse_fcname): New function.
25082 (font_parse_name): New function.
25083 (font_match_p): New function.
25084 (font_get_name): Change return value to Lisp string.
25085 (font_get_spec): New function.
25086 (Qunspecified, Qignore_defface): Don't extern them.
25087 (font_find_for_lface): Assume that LFACE is fully specified.
25088 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
25089 object, use it for FACE.
25090 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
25091 driver->parse_name.
25092 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
25093
25094 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
25095 prototype.
25096
25097 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
25098 argument F. Don't call Fnew_fontset. Instead, directly call
25099 make_fontset.
25100
25101 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
25102
25103 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
25104 of x_new_fontset2.
25105
25106 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
25107 (Qsans__serif): New variables.
25108 (ftfont_generic_family_list): New variable.
25109 (syms_of_ftfont): Initialize the above variables.
25110 (ftfont_pattern_entity): Delete argument NAME.
25111 (ftfont_list_generic_family): New function.
25112 (ftfont_parse_name): Delete this function.
25113 (ftfont_list): Try generic family only when FcFontList found no font.
25114 (ftfont_list_family): Fix args to FcObjectSetBuild.
25115
25116 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
25117 object in attrs[LFACE_FONT_INDEX].
25118 (set_lface_from_font_name): Cancel all changes for font-backend.
25119 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
25120 function.
25121 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
25122 font object in QCfont attribute.
25123 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
25124 (realize_default_face) [USE_FONT_BACKEND]: Call
25125 set_lface_from_font_and_fontset.
25126
25127 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
25128 "fixed", and signal error here if no suitable font was found.
25129
25130 * xfont.c (xfont_parse_name): Delete this function.
25131
25132 * xftfont.c (xftfont_open): Change coding style of error
25133 handling. Generate fontconfig's fontname pattern.
25134
25135 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
25136 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
25137
25138 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
25139 Both args FONTSET and FONT_OBJECT must be existing ones.
25140
25141 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25142
25143 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
25144
25145 2008-02-01 Kenichi Handa <handa@m17n.org>
25146
25147 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
25148
25149 * font.h (struct font): Fix typo.
25150
25151 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
25152 XLFD_XXX_INDEX.
25153 (enum xlfd_field_mask): New enum.
25154 (intern_font_field): Change argument. Change caller. If digits
25155 are followed by non-digits, return a symbol.
25156 (font_expand_wildcards): New function.
25157 (font_parse_xlfd): Fix wildcard handling.
25158 (Ffont_spec): If :name is specified, reflect the info in the other
25159 properties.
25160
25161 * ftfont.c (ftfont_pattern_entity): Fix typo.
25162 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
25163 locale.
25164
25165 2008-02-01 Kenichi Handa <handa@m17n.org>
25166
25167 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
25168
25169 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
25170 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
25171 registry doesn't specify encoding part.
25172 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
25173 (font_open_by_name): At first try parsing the name.
25174 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
25175 as Lisp symbols.
25176
25177 * fontset.c (reorder_font_vector): Pay attention to the case that
25178 the 3rd element of font_def is nil.
25179 (fontset_font): For the default fontset, append one more fontset
25180 elements for a script-based font specification. Don't add script
25181 attribute on finding a font.
25182 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
25183 font name.
25184 (fontset_ascii_font): If a font can't be opened, return nil.
25185
25186 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
25187 (ftfont_pattern_entity): New function.
25188 (ftfont_get_cache): Assume that freetype_font_cache is already
25189 initialized.
25190 (ftfont_list): Handle the case that a file is specified in font
25191 name. Use ftfont_pattern_entity to generate entities.
25192 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
25193 (syms_of_ftfont): Initialize freetype_font_cache.
25194
25195 * xftfont.c (xftfont_open): Make the font name fontconfig's
25196 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
25197 (xftfont_close): Free font->font.name if not NULL.
25198
25199 * xfont.c (xfont_list): If script is specified for a font, return
25200 null_vector.
25201 (xfont_list_family): Declare argument type.
25202
25203 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
25204 name, set LFACE_FONT (lface) to nil.
25205
25206 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
25207 return Qnil.
25208
25209 2008-02-01 Kenichi Handa <handa@m17n.org>
25210
25211 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
25212 (standard_args): Add "-enable-font-backend".
25213
25214 2008-02-01 Kenichi Handa <handa@m17n.org>
25215
25216 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
25217 (struct xftdraw_list, xftdraw_list): Delete them.
25218 (register_xftdraw, check_xftdraw): Delete them.
25219 (xftfont_prepare_face): Don't call register_xftdraw.
25220 (xftfont_done_face): Don't call check_xftdraw.
25221 (xftfont_draw): Get background color only when with_background is
25222 nonzero.
25223
25224 * xfont.c (xfont_encode_char): Fix calculation of char2b.
25225
25226 2008-02-01 Kenichi Handa <handa@m17n.org>
25227
25228 These changes are for the new font handling codes.
25229
25230 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
25231 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
25232 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
25233 (FONTSRC, FONTOBJ): New variables.
25234 (obj): Add $(FONTOBJ).
25235 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
25236 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
25237 @LIBOTF_LIBS@.
25238 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
25239 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
25240
25241 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
25242
25243 * character.h (Vscript_representative_chars): Extern it.
25244
25245 * character.c (Vscript_representative_chars): New variable.
25246 (syms_of_character): Declare it as a Lisp variable.
25247
25248 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
25249 enable_font_backend is nonzero, accept the composition method
25250 COMPOSITION_WITH_GLYPH_STRING.
25251
25252 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
25253 enumeration COMPOSITION_WITH_GLYPH_STRING.
25254
25255 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
25256 members clip_x, clip_y, clip_width, and clip_height.
25257 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
25258
25259 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
25260 --enable-font-backend. Call syms_of_font.
25261
25262 * fns.c (assoc_no_quit): New function.
25263
25264 * fontset.h (FONT_INFO_FROM_FACE): New macro.
25265 (face_for_font, new_fontset_from_font)
25266 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
25267
25268 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
25269 (fontset_font, fontset_ascii, face_for_char)
25270 (make_fontset_for_ascii_face, Ffont_info)
25271 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
25272 is nonzero, use font-backend mechanism.
25273 (find_font_encoding): Make it non-static.
25274 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
25275 New functions.
25276
25277 * frame.h (struct frame): New members resx and resy.
25278 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
25279 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
25280
25281 * frame.c [USE_FONT_BACKEND]: Include "font.h".
25282 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
25283
25284 * lisp.h (assoc_no_quit): Extern it.
25285
25286 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
25287 Through out the file, use FONT_INFO_FROM_FACE instead of
25288 FONT_INFO_FROM_ID, use get_per_char_metric instead of
25289 rif->per_char_metric.
25290 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
25291 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
25292 (get_glyph_face_and_encoding, fill_composite_glyph_string)
25293 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
25294 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
25295 nonzero, use font-backend mechanism.
25296 (get_per_char_metric): New function.
25297
25298 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
25299 (set_lface_from_font_name)
25300 (set_font_frame_param, free_realized_face)
25301 (prepare_face_for_display, clear_face_gcs)
25302 (Finternal_set_font_selection_order, realize_x_face)
25303 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
25304 font-backend mechanism.
25305 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
25306 (load_face_font) [USE_FONT_BACKEND]: Abort.
25307 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
25308 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
25309
25310 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
25311 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
25312 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
25313 nonzero, register all available font drivers.
25314 Call x_default_font_parameter for deciding a font.
25315 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
25316
25317 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
25318 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
25319 (x_set_glyph_string_clipping_exactly)
25320 (x_compute_glyph_string_overhangs)
25321 (x_draw_glyph_string_foreground)
25322 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
25323 (x_free_frame_resources) [USE_FONT_BACKEND]: If
25324 enable_font_backend is nonzero, use font-backend mechanism.
25325 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
25326
25327 2008-02-01 Kenichi Handa <handa@m17n.org>
25328
25329 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
25330 system_eol_type.
25331 (syms_of_coding): Initialize system_eol_type.
25332
25333 * process.c (Fset_process_coding_system): Inherit system's eol
25334 format if necessary.
25335
25336 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25337
25338 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
25339
25340 2008-02-01 Kenichi Handa <handa@m17n.org>
25341
25342 * coding.c (decode_eol): Pay attention to buffer relocation in
25343 del_range_2.
25344 (decode_coding): Call decode_eol before restoring undo_list.
25345
25346 2008-02-01 Kenichi Handa <handa@m17n.org>
25347
25348 * charset.c (Fdefine_charset_internal): Fix setting of
25349 emacs_mule_bytes.
25350
25351 2008-02-01 Kenichi Handa <handa@m17n.org>
25352
25353 * keyboard.c (read_char): Check if C is a character or not before
25354 looking up Vkeyboard_translate_table.
25355
25356 2008-02-01 Kenichi Handa <handa@m17n.org>
25357
25358 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION):
25359 Fix condition to terminate the loop.
25360
25361 2008-02-01 Kenichi Handa <handa@m17n.org>
25362
25363 * coding.c (produce_composition): Compare charbuf[i] instead of
25364 args[i] against 0.
25365 (Fterminal_coding_system): Use EQ to compare Lisp objects.
25366
25367 2008-02-01 Kenichi Handa <handa@m17n.org>
25368
25369 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
25370 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
25371 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
25372 detect_coding.
25373 (emacs_mule_char): Handle old style (Emacs 20) component character
25374 of a composition.
25375 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
25376 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
25377 composition rule.
25378 (decode_coding_emacs_mule): Handle invalid bytes correctly.
25379
25380 2008-02-01 Kenichi Handa <handa@m17n.org>
25381
25382 * coding.c (encode_coding_ccl): Allocate destination dynamically
25383 when necessary.
25384
25385 2008-02-01 Kenichi Handa <handa@m17n.org>
25386
25387 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
25388 the loop. When quitted, show a proper error message.
25389
25390 2008-02-01 Kenichi Handa <handa@m17n.org>
25391
25392 * xterm.c (x_set_glyph_string_clipping_exactly):
25393 Set src->clip_head and src->clip_tail temporarily instead of src->hl.
25394
25395 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
25396 character sequence.
25397 (Fccl_execute_on_string): Use ASET, not XSET.
25398
25399 2008-02-01 Kenichi Handa <handa@m17n.org>
25400
25401 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
25402
25403 2008-02-01 Kenichi Handa <handa@m17n.org>
25404
25405 * coding.c (decode_coding): Fix the condition of terminating the
25406 decoding loop.
25407
25408 2008-02-01 Kenichi Handa <handa@m17n.org>
25409
25410 * data.c (Faset): On setting a character bigger than 255 in a
25411 unibyte string, signal an error instead of make the string multibyte.
25412
25413 2008-02-01 Kenichi Handa <handa@m17n.org>
25414
25415 * charset.c (map_charset_chars): Fix for ascii-compatible charset
25416 made by a mapping table.
25417
25418 2008-02-01 Kenichi Handa <handa@m17n.org>
25419
25420 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
25421 not.
25422 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
25423 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
25424
25425 * xterm.c (x_draw_composite_glyph_string_foreground):
25426 Check s->face is NULL or not.
25427
25428 2008-02-01 Kenichi Handa <handa@m17n.org>
25429
25430 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
25431 (x_draw_glyph_string): Fix drawing of right_overhang and
25432 left_overhang around/on cursor.
25433
25434 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
25435
25436 2008-02-01 Kenichi Handa <handa@m17n.org>
25437
25438 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
25439
25440 2008-02-01 Kenichi Handa <handa@m17n.org>
25441
25442 * coding.c (Fdefine_coding_system_internal)
25443 (Fdefine_coding_system_alias): Avoid a duplicated element in
25444 Vcoding_system_alist.
25445
25446 2008-02-01 Kenichi Handa <handa@m17n.org>
25447
25448 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
25449
25450 * coding.c (Qcoding_system_define_form): New variable.
25451 (syms_of_coding): Intern and staticpro it.
25452 (Fcoding_system_p): Check Qcoding_system_define_form.
25453 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
25454
25455 * coding.h (CODING_SYSTEM_P): If ID is not available, call
25456 Fcoding_system_p.
25457 (CHECK_CODING_SYSTEM): If ID is not available, call
25458 Fcheck_coding_system.
25459 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
25460 Try also Fcheck_coding_system.
25461
25462 2008-02-01 Kenichi Handa <handa@m17n.org>
25463
25464 * coding.c (code_conversion_restore): GCPRO arg.
25465
25466 2008-02-01 Kenichi Handa <handa@m17n.org>
25467
25468 * character.c (lisp_string_width): Check multibyteness of STRING.
25469
25470 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25471
25472 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
25473 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
25474 (decode_mac_font_name): Use decode_coding_c_string instead of
25475 decode_coding.
25476 (x_load_font): Initialize fontp->fontset to -1.
25477 Set fontp->encoding_type.
25478
25479 2008-02-01 Kenichi Handa <handa@m17n.org>
25480
25481 * search.c (search_buffer): Give up BM search on case-fold-search
25482 if one of a target character has a case-equivalence of different
25483 byte length even if that target character is an ASCII.
25484 (simple_search): Fix calculation of byte length of matched text.
25485 (boyer_moore): Fix handling of case-equivalent multibyte characters.
25486
25487 2008-02-01 Kenichi Handa <handa@m17n.org>
25488
25489 * coding.c (decode_coding): Fix handling of invalid bytes.
25490
25491 2008-02-01 Kenichi Handa <handa@m17n.org>
25492
25493 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
25494 Unicode characters.
25495
25496 2008-02-01 Kenichi Handa <handa@m17n.org>
25497
25498 * coding.c (encode_coding_object): If a pre-write-conversion
25499 function makes a new buffer, kill it.
25500
25501 2008-02-01 Kenichi Handa <handa@m17n.org>
25502
25503 * coding.c (QCascii_compatible_p): New variable.
25504 (syms_of_coding): Initialize it.
25505 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
25506 calling string_char.
25507 (record_conversion_result): Add `default:' case.
25508 (coding_charset_list): Delete unused variable `coding_type'.
25509 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
25510 property in the plist of the coding system.
25511 (Fcoding_system_put): Check QCascii_compatible_p.
25512
25513 2008-02-01 Miles Bader <miles@gnu.org>
25514
25515 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
25516 removed calculation of frame `f', as it's now used.
25517
25518 2008-02-01 Kenichi Handa <handa@m17n.org>
25519
25520 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
25521 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
25522 (UNIDATA): New variable.
25523 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
25524 (bootstrap-emacs${EXEEXT}): Depends on charprop.el.
25525 Run $(RUN_TEMACS) unconditionally.
25526
25527 2008-02-01 Kenichi Handa <handa@m17n.org>
25528
25529 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
25530 (admindir): New variable.
25531 ($(lispsource)international/charprop.el): New target.
25532
25533 2008-02-01 Miles Bader <miles@gnu.org>
25534
25535 * character.c (chars-in-region): Remove obsolete function.
25536 (syms_of_character): Remove its initialization.
25537
25538 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
25539
25540 * w32select.c (validate_coding_system)
25541 (setup_windows_coding_system): New functions.
25542 (convert_to_handle_as_coded, Fw32_get_clipboard_data):
25543 Use setup_windows_coding_system.
25544 (setup_config, Fw32_get_clipboard_data):
25545 Use validate_coding_system.
25546 (Fx_selection_exists): Move call to setup_config to a place
25547 where signals are allowed.
25548
25549 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
25550 (Fcheck_coding_system): Add declarations.
25551
25552 2008-02-01 Kenichi Handa <handa@m17n.org>
25553
25554 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
25555
25556 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25557
25558 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
25559 string as the second argument for x_new_fontset.
25560
25561 2008-02-01 Kenichi Handa <handa@m17n.org>
25562
25563 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
25564 (encode_coding_object): Use safe_call instead of call2.
25565
25566 2008-02-01 Kenichi Handa <handa@m17n.org>
25567
25568 * fontset.c (Fset_fontset_font): Check family element of a given vector.
25569
25570 * Makefile.in (lisp): Include charprop.el.
25571
25572 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25573
25574 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
25575 Not sure if it's unnecessary.
25576
25577 2008-02-01 Steven Tamm <steventamm@mac.com>
25578
25579 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
25580 some possibly unnecessary fontset checking code that crashed
25581 when creating a new frame.
25582
25583 2008-02-01 Kenichi Handa <handa@m17n.org>
25584
25585 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
25586 lookup_face.
25587
25588 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
25589
25590 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
25591
25592 2008-02-01 Kenichi Handa <handa@m17n.org>
25593
25594 * coding.c: Cancel the change done in HEAD on 2008-02-01.
25595 (coding_charset_list): New function.
25596
25597 * coding.h (coding_charset_list): Extern it.
25598
25599 2008-02-01 Kenichi Handa <handa@m17n.org>
25600
25601 * fontset.c (Fset_fontset_font): Call find_font_encoding with
25602 concatenation of family and registry.
25603
25604 2008-02-01 Kenichi Handa <handa@m17n.org>
25605
25606 * character.h (BYTE8_STRING): Fix typo.
25607
25608 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
25609 string to multibyte (sync to HEAD).
25610
25611 * casefiddle.c (casify_region): Handle changes in byte-length
25612 using replace_range_2 (sync to HEAD).
25613
25614 2008-02-01 Andreas Schwab <schwab@suse.de>
25615
25616 * chartab.c (map_char_table): GCPRO table and arg.
25617
25618 2008-02-01 Kenichi Handa <handa@m17n.org>
25619
25620 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
25621 already at limit.
25622
25623 2008-02-01 Kenichi Handa <handa@m17n.org>
25624
25625 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
25626 instead of fast_c_string_match_ignore_case.
25627 (find_font_encoding): Change argument to Lisp_Object.
25628 Use fast_string_match_ignore_case instead of
25629 fast_c_string_match_ignore_case. Change caller.
25630
25631 2008-02-01 Kenichi Handa <handa@m17n.org>
25632
25633 * xdisp.c (get_next_display_element): In unibyte case, decide to
25634 display in octal form by checking a character by
25635 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
25636
25637 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
25638
25639 * character.c (unibyte_has_multibyte_table): New variable.
25640
25641 * character.h (unibyte_has_multibyte_table): Extern it.
25642 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
25643
25644 2008-02-01 Kenichi Handa <handa@m17n.org>
25645
25646 * coding.c (encode_coding_iso_2022): Fix handling of charset
25647 annotation.
25648
25649 2008-02-01 Kenichi Handa <handa@m17n.org>
25650
25651 * coding.c (setup_coding_system): If coding_system is nil, use
25652 Qundecided.
25653 (Fterminal_coding_system): Return nil if terminal coding system is
25654 `undecided'.
25655 (syms_of_coding): Define coding-system `undecided' here.
25656 Setup terminal_coding as `undecided'.
25657
25658 2008-02-01 Kenichi Handa <handa@m17n.org>
25659
25660 * xdisp.c (message_dolog, set_message_1):
25661 Call unibyte_char_to_multibyte with arg type int.
25662
25663 * lread.c (read1): Fix reading of a char-table.
25664
25665 * print.c (print_object): Include sub char-table in circularities
25666 detection.
25667
25668 2008-02-01 Kenichi Handa <handa@m17n.org>
25669
25670 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
25671 Append the found sequences in car of ARGS instead of prepending.
25672
25673 2008-02-01 Kenichi Handa <handa@m17n.org>
25674
25675 * fileio.c (report_file_error): Make a unibyte string from
25676 strerror (errorno).
25677 (Fsubstitute_in_file_name): Fix the arg to
25678 unibyte_char_to_multibyte. It is evaluated twice.
25679
25680 2008-02-01 Kenichi Handa <handa@m17n.org>
25681
25682 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
25683
25684 2008-02-01 Kenichi Handa <handa@m17n.org>
25685
25686 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
25687 BOM is not found.
25688 (detect_coding, detect_coding_system): Optimization for ISO-2022
25689 when no 8-bit data is found.
25690
25691 2008-02-01 Jason Rumney <jasonr@gnu.org>
25692
25693 * w32fns.c (x_to_w32_font): Update to use new coding struct.
25694
25695 2008-02-01 Kenichi Handa <handa@m17n.org>
25696
25697 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
25698 CHARS.
25699
25700 2008-02-01 Steven Tamm <steventamm@mac.com>
25701
25702 * macterm.c (mac_encode_char): Add charset argument and update
25703 to use encoding_type.
25704 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
25705 switch to pure fontset.
25706 (decode_mac_font_name): Temporarily remove decoding.
25707 (x_font_name_to_mac_font_name): Temporarily remove encoding.
25708 (x_load_font): Temporarily remove encoding.
25709
25710 2008-02-01 Kenichi Handa <handa@m17n.org>
25711
25712 * xfaces.c (Fface_font): If frame is not on a window system,
25713 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
25714 refer to face->font.
25715 (split_font_name_into_vector, build_font_name_from_vector)
25716 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
25717 when HAVE_WINDOW_SYSTEM is defined.
25718
25719 2008-02-01 Kenichi Handa <handa@m17n.org>
25720
25721 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
25722 (x_produce_glyphs): Fix setting of members of cmp in case
25723 cmp->glyph_len is zero.
25724
25725 * fontset.c (Fset_fontset_font): Fix docstring.
25726 (Ffontset_info): Make it backward compatible. New arg ALL.
25727
25728 2008-02-01 Kim F. Storm <storm@cua.dk>
25729
25730 * process.c (read_process_output): Grow decoding_buf when needed;
25731 this could cause a crash in allocate_string and compact_small_strings.
25732
25733 2008-02-01 Kenichi Handa <handa@m17n.org>
25734
25735 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
25736
25737 2008-02-01 Kenichi Handa <handa@m17n.org>
25738
25739 * coding.c (setup_coding_system): Set coding->common_flags
25740 correctly for raw-text.
25741 (consume_chars): On encoding unibyte text by raw-text, don't check
25742 multibyte form.
25743 (encode_coding): On encoding by raw-text, never use translation tables.
25744
25745 * fileio.c (e_write): Short cut for the case of no encoding.
25746
25747 2008-02-01 Kenichi Handa <handa@m17n.org>
25748
25749 * coding.c (detect_coding, detect_coding_system): Delete unused
25750 variables.
25751
25752 2008-02-01 Kenichi Handa <handa@m17n.org>
25753
25754 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
25755 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
25756
25757 2008-02-01 Kenichi Handa <handa@m17n.org>
25758
25759 * coding.c (Ffind_coding_systems_region_internal):
25760 Include raw-text and no-conversion in the result.
25761
25762 2008-02-01 Kenichi Handa <handa@m17n.org>
25763
25764 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
25765 (load_font_get_repertory): Delete unnecessary check of ENCODING of
25766 FONT_DEF.
25767 (font_def_arg, add_arg, from_arg, to_arg): New args.
25768 (set_fontset_font): Change argument.
25769 (Fset_fontset_font): Fix for the case that TARGET is a script
25770 name and charset name.
25771 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
25772
25773 2008-02-01 Kenichi Handa <handa@m17n.org>
25774
25775 * fontset.c (fontset_font): Rename from fontset_face. Change return
25776 value.
25777 (face_suitable_for_char_p, face_for_char): Adjust for the change
25778 of fontset_font.
25779 (make_fontset_for_ascii_face): Fix setting of the fontset element
25780 for ASCII.
25781 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
25782 to get a font name.
25783 (Ffontset_info): Adjust for the change of fontset_font.
25784
25785 * coding.c (emacs_mule_char): Check invalid code more rigidly.
25786
25787 * character.h (LEADING_CODE_LATIN_1_MIN)
25788 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
25789
25790 2008-02-01 Kenichi Handa <handa@m17n.org>
25791
25792 * editfns.c (check_translation): New function.
25793 (Ftranslate_region_internal): Handle M:N mapping.
25794
25795 2008-02-01 Kenichi Handa <handa@m17n.org>
25796
25797 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
25798
25799 2008-02-01 Kenichi Handa <handa@m17n.org>
25800
25801 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
25802 goto invalid_code.
25803 (decode_coding_iso_2022): Fix handling of invalid designation.
25804
25805 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
25806 after calling code_conversion_save.
25807
25808 2008-02-01 Kenichi Handa <handa@m17n.org>
25809
25810 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
25811
25812 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
25813
25814 * fontset.c: Include "intervals.h".
25815 (fontset_face): Fix comparing of Lisp_Objects.
25816 (free_face_fontset, new_fontset_from_font_name):
25817 Fix Lisp_Object/int mixup.
25818
25819 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
25820
25821 * coding.c: Add many prototypes for static functions.
25822 (get_translation_table): Allow max_lookup to be NULL.
25823 (decode_coding, Ffind_coding_systems_region_internal)
25824 (Funencodable_char_position, Fcheck_coding_systems_region):
25825 Call get_translation_table with max_lookup NULL.
25826
25827 2008-02-01 Kenichi Handa <handa@m17n.org>
25828
25829 * coding.c (get_translation_table): Declare it as Lisp_Object.
25830 (LOOKUP_TRANSLATION_TABLE): New macro.
25831 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
25832 instead of CHAR_TABLE_REF.
25833
25834 2008-02-01 Kenichi Handa <handa@m17n.org>
25835
25836 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
25837 annotation data format.
25838 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
25839 Change arguments FROM and TO to single argument NCHARS. Change caller.
25840 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
25841 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
25842 (decode_coding_ccl, decode_coding_charset): Pay attention to
25843 coding->charbuf_used.
25844 (get_translation): New function.
25845 (produce_chars): New arguments translation_table and last_block.
25846 Translate characters here. Return number of carryover chars.
25847 Change caller.
25848 (produce_composition): New argument pos. Change caller.
25849 Adjust for the change of annotation data format.
25850 (produce_charset, produce_annotation): Likewise.
25851 (decode_coding, encode_coding): Don't call translate_chars.
25852 (consume_chars): New arg translation_table. Change caller.
25853 (translate_chars): Delete.
25854 (syms_of_coding): Make translation-table's number of extra slots 2.
25855
25856 2008-02-01 Kenichi Handa <handa@m17n.org>
25857
25858 * search.c (simple_search): Fix setting this_pos_byte in backward
25859 search.
25860
25861 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
25862 byte sequence.
25863 (detect_coding_ccl): Fix setting of the variable valids.
25864
25865 2008-02-01 Kenichi Handa <handa@m17n.org>
25866
25867 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
25868
25869 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
25870
25871 * editfns.c (Ftranslate_region_internal): Rename from
25872 Ftranslate_region. Accept a char-table in TABLE.
25873 (syms_of_editfns): Defsubr Stranslate_region_internal.
25874
25875 * xfaces.c (set_lface_from_font_name): If a font is specified for
25876 a frame, generate a fontset from the font.
25877 (build_scalable_font_name): If the scalable font is requested for
25878 a specific size, don't change that size.
25879 (try_font_list): Try a scalable font also in the case that a
25880 pattern string is specified.
25881
25882 2008-02-01 Kenichi Handa <handa@m17n.org>
25883
25884 * xfaces.c (Fface_font): New optional arg CHARACTER.
25885
25886 2008-02-01 Kenichi Handa <handa@m17n.org>
25887
25888 * charset.h (CHARSET_OFFSET): New macro.
25889
25890 2008-02-01 Kenichi Handa <handa@m17n.org>
25891
25892 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
25893
25894 * fontset.c (fontset_face): Handle the case that repertory is a
25895 char-table.
25896 (find_font_encoding): Return nil for unknown encoding.
25897 (Fset_fontset_font): Ignore a font of unknown encoding.
25898
25899 2008-02-01 Kenichi Handa <handa@m17n.org>
25900
25901 * keymap.c (describe_vector): Handle default value of a char table.
25902
25903 * fontset.c (fontset_face): Handle fallback fonts correctly.
25904 (Ffontset_info): Return infomation about fallback fonts.
25905
25906 2008-02-01 Kenichi Handa <handa@m17n.org>
25907
25908 * fontset.c (FONTSET_DEFAULT): New macro.
25909 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
25910 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
25911 the case that it is nil.
25912 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
25913 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
25914
25915 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
25916 subset or superset.
25917
25918 2008-02-01 Kenichi Handa <handa@m17n.org>
25919
25920 * emacs.c (main): Call init_charset after syms_of_XXX.
25921
25922 * charset.c (Vcharset_map_directory): Delete.
25923 (Vcharset_map_path): New variable.
25924 (load_charset_map_from_file): Use Vcharset_map_path instead.
25925 (init_charset): Initialize Vcharset_map_path.
25926 (syms_of_charset): Delete declaration of "charset-map-directory",
25927 add declaration of "charset-map-path".
25928
25929 2008-02-01 Kenichi Handa <handa@m17n.org>
25930
25931 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
25932 ASCII only string.
25933
25934 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
25935
25936 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
25937 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
25938
25939 2008-02-01 Kenichi Handa <handa@m17n.org>
25940
25941 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
25942
25943 * coding.c (QCmnemonic, QCdefalut_char)
25944 (QCdecode_translation_table, QCencode_translation_table)
25945 (QCpost_read_conversion, QCpre_write_conversion): New variables.
25946 (get_translation_table): Return a list of translation tables if
25947 necessary.
25948 (decode_coding): Call get_translation_table with ENCODEP 0.
25949 (char_encodable_p): If translation_table is non-nil, always call
25950 translate_char.
25951 (Fdefine_coding_system_internal): Accept list of translation
25952 tables as :encode-translation-table and :decode-translation-table.
25953 (Fcoding_system_put): New function.
25954 (syms_of_coding): Declare new symbols.
25955 Defsubr Scoding_system_put.
25956 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
25957 typically JISX0212.
25958
25959 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
25960 when the charset is superset type.
25961
25962 * character.c (translate_char): Accept list of translation tables.
25963
25964 2008-02-01 Kenichi Handa <handa@m17n.org>
25965
25966 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
25967 (CODING_ATTR_TRANS_TBL): New macro.
25968
25969 * coding.c (get_translation_table): New function.
25970 (translate_chars): Fix the bug of skipping annotation data.
25971 (decode_coding, encode_coding): Utilize get_translation_table.
25972 (char_encodable_p, Funencodable_char_position): Translate char if
25973 necessary.
25974 (Ffind_coding_systems_region_internal)
25975 (Fcheck_coding_systems_region): Setup translation table for encode
25976 in a coding system attribute vector in advance.
25977 (Fdefine_coding_system_internal): Allow a symbol as translation
25978 table. For shift-jis type coding system, allow 4th charset.
25979
25980 2008-02-01 Kenichi Handa <handa@m17n.org>
25981
25982 * coding.c (decode_coding_sjis): Check the first byte rigidly.
25983
25984 * xdisp.c (get_next_display_element): Pass -1 as POS to
25985 FACE_FOR_CHAR if displaying a C-string.
25986
25987 2008-02-01 Kenichi Handa <handa@m17n.org>
25988
25989 * composite.c (get_composition_id): Handle xoff and yoff in a
25990 composition rule.
25991
25992 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
25993 (struct composition): New member lbearing and rbearing.
25994
25995 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
25996 (x_get_glyph_overhangs): Handle a composition glyph.
25997 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
25998
25999 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
26000 composition glyph.
26001
26002 2008-02-01 Kenichi Handa <handa@m17n.org>
26003
26004 * print.c: Include charset.h.
26005 (Vprint_charset_text_property): New variable.
26006 (Qdefault): Extern it.
26007 (PRINT_STRING_NON_CHARSET_FOUND)
26008 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
26009 (print_check_string_result): New variable.
26010 (print_check_string_charset_prop): New function.
26011 (print_prune_charset_plist): New variable.
26012 (print_prune_string_charset): New function.
26013 (print_object): Call print_prune_string_charset if
26014 Vprint_charset_text_property is not t.
26015 (print_interval): Print nothing if interval->plist is nil.
26016 (syms_of_print): Declare Vprint_charset_text_property as a lisp
26017 variable. Init and staticpro print_prune_charset_plist.
26018
26019 2008-02-01 Kenichi Handa <handa@m17n.org>
26020
26021 * fontset.c (new_fontset_from_font_name): Use the specified font
26022 for all characters in the new fontset.
26023
26024 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
26025 OBJECT args.
26026
26027 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
26028 OBJECT args for composition too.
26029
26030 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
26031 OBJECT args.
26032
26033 2008-02-01 Kenichi Handa <handa@m17n.org>
26034
26035 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
26036
26037 * fontset.c (reorder_font_vector): Adjust for the change of
26038 FONT_DEF format.
26039 (fontset_face): New arg id. Change caller.
26040 (face_for_char): New args pos and object.
26041 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
26042 (fs_query_fontset): Check NAME by Fassoc too.
26043 (Fset_fontset_font): Allow non-XLFD font name.
26044 (Ffontset_info): Adjust for the change of FONT_DEF format.
26045
26046 * fontset.h (face_for_char): Adjust prototype.
26047
26048 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
26049 (append_space, extend_face_to_end_of_line)
26050 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
26051 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
26052
26053 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
26054 POS and OBJECT args.
26055
26056 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
26057 POS and OBJECT args.
26058
26059 2008-02-01 Jason Rumney <jasonr@gnu.org>
26060
26061 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
26062 of GlobalAlloc'ed memory.
26063
26064 2008-02-01 Kenichi Handa <handa@m17n.org>
26065
26066 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
26067
26068 * charset.h (charset_table_used): Delete extern.
26069
26070 * charset.c (charset_table_used): Make it static.
26071 (map_charset_chars): Fix args to c_function with.
26072
26073 * chartab.c (map_sub_char_table_for_charset): Fix args to
26074 c_function with.
26075
26076 * coding.h (enum coding_result_code):
26077 Delete CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
26078
26079 * coding.c (Qinsufficient_source, Qinconsistent_eol)
26080 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
26081 (Vlast_code_conversion_error): New variables.
26082 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
26083 (ONE_MORE_BYTE): Record error if any instead of signaling an
26084 error. If non-ASCII multibyte char is found, return the negative
26085 value of the code. All callers changed to check it.
26086 (ONE_MORE_BYTE_NO_CHECK): Likewise.
26087 (record_conversion_result): New function. Change all codes setting
26088 coding->result to call this function.
26089 (detect_coding_utf_8, decode_coding_utf_8)
26090 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
26091 Don't use the local variable incomplete.
26092 (emacs_mule_char): Change the second arg to `const'.
26093 (decode_coding): Fix of flushing out unprocessed data.
26094 (make_conversion_work_buffer): Fix making of a work buffer.
26095 (decode_coding_object): Return coding->dst_object.
26096
26097 * fontset.c (set_fontset_font): Fix args.
26098
26099 * lisp.h (CHARACTERBITS): Define as 22.
26100
26101 * process.c (send_process): Be sure to set coding->src_multibyte.
26102
26103 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
26104
26105 2008-02-01 Kenichi Handa <handa@m17n.org>
26106
26107 * xdisp.c (handle_auto_composed_prop): Give limit to
26108 Fnext_single_char_property_change.
26109
26110 2008-02-01 Kenichi Handa <handa@m17n.org>
26111
26112 * composite.c (syms_of_composite): Don't make the composition hash
26113 table weak.
26114
26115 * fontset.c (Fset_fontset_font): Fix docstring.
26116
26117 * lisp.h (detect_coding_system): Adjust prototype.
26118
26119 * fileio.c (kill_workbuf_unwind): Delete this function.
26120 (Finsert_file_contents): Adjust the call of detect_coding_system.
26121 Get conversion_buffer by code_conversion_save. Use the macro
26122 CODING_MAY_REQUIRE_DECODING. After decoding, update
26123 coding_system.
26124
26125 * coding.h (make_conversion_work_buffer): Delete extern.
26126 (code_conversion_save): Extern it.
26127
26128 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
26129 (CODING_GET_INFO): Delete argument eol_type. Change callers.
26130 (decode_coding_utf_8): Don't do eol converion.
26131 (detect_coding_utf_16): Check coding->src_chars, not
26132 coding->src_bytes. Add heuristics for those that have no signature.
26133 (decode_coding_emacs_mule, decode_coding_iso_2022)
26134 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
26135 Don't do eol converion.
26136 (adjust_coding_eol_type): Return a new coding system.
26137 (detect_coding): Don't detect eol. Fix for utf-16 detection.
26138 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
26139 each change.
26140 (decode_coding): Pay attention to undo_list. Do eol conversion for
26141 all types of coding-systems (if necessary).
26142 (Vcode_conversion_work_buf_list): Delete it.
26143 (Vcode_conversion_reused_workbuf): Rename from
26144 Vcode_conversion_reused_work_buf.
26145 (Vcode_conversion_workbuf_name): New variable.
26146 (reused_workbuf_in_use): New variable.
26147 (make_conversion_work_buffer): Delete the arg DEPTH.
26148 (code_conversion_restore): Change argument to cons.
26149 (code_conversion_save): Delete the argument BUFFER. Change callers.
26150 (detect_coding_system): New argument src_chars. Change callers.
26151 Fix for utf-16 detection.
26152 (init_coding_once): Don't use ISO_carriage_return.
26153 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
26154 reused_workbuf_in_use.
26155
26156 2008-02-01 Kenichi Handa <handa@m17n.org>
26157
26158 * keymap.c (store_in_keymap): Pay attention to the case that idx
26159 is a cons specifying a character range.
26160
26161 2008-02-01 Kenichi Handa <handa@m17n.org>
26162
26163 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
26164 HANDLED_RECOMPUTE_PROPS.
26165
26166 * coding.c (Fdefine_coding_system_internal): Fix checking of
26167 ascii compatibility.
26168
26169 2008-02-01 Kenichi Handa <handa@m17n.org>
26170
26171 * charset.c (find_charsets_in_text): Delete unused locale variable.
26172 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
26173
26174 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
26175 Resync charset_list to Vemacs_mule_charset_list.
26176
26177 * keymap.c (store_in_keymap): Pay attention to the case that idx
26178 is a cons specifying a character range.
26179
26180 2008-02-01 Kenichi Handa <handa@m17n.org>
26181
26182 * composite.c (update_compositions): Bind inhibit-read-only, etc
26183 to t before calling remove-list-of-text-properties.
26184
26185 * print.c (print_object): Always print ASCII chars as is.
26186
26187 2008-02-01 Kenichi Handa <handa@m17n.org>
26188
26189 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
26190
26191 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
26192 is a char table.
26193
26194 2008-02-01 Kenichi Handa <handa@m17n.org>
26195
26196 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
26197
26198 2008-02-01 Kenichi Handa <handa@m17n.org>
26199
26200 * xfaces.c (set_lface_from_font_name): Fix for the case that
26201 FONTNAME is not fontset name.
26202
26203 2008-02-01 Kenichi Handa <handa@m17n.org>
26204
26205 * fns.c (base64_encode_1): Fix previous change.
26206
26207 2008-02-01 Kenichi Handa <handa@m17n.org>
26208
26209 * fontset.c (set_fontset_font): New function.
26210 (Fset_fontset_font): If a font is specified for a charset, use
26211 map_charset_chars to store the font spec in a fontset.
26212
26213 2008-02-01 Kenichi Handa <handa@m17n.org>
26214
26215 * fontset.c (fontset_face): Create a fallback fontset on demand.
26216 (make_fontset): Don't create a fallback fontset here.
26217 (free_face_fontset): Free a fallback fontset (if any) too.
26218 (n_auto_fontsets): Delete this variable.
26219 (auto_fontset_alist): New variable.
26220 (new_fontset_from_font_name): Check auto_fontset_alist.
26221 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
26222 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
26223 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
26224 Defsubr Sfontset_list_all.
26225
26226 2008-02-01 Kenichi Handa <handa@m17n.org>
26227
26228 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
26229
26230 2008-02-01 Kenichi Handa <handa@m17n.org>
26231
26232 * fontset.c (Fnew_fontset): Check NAME more rigidly.
26233
26234 2008-02-01 Kenichi Handa <handa@m17n.org>
26235
26236 * editfns.c (Fgoto_char): Fix docstring.
26237
26238 2008-02-01 Kenichi Handa <handa@m17n.org>
26239
26240 * insdel.c (insert_from_gap): Adjust intervals correctly.
26241
26242 2008-02-01 Jason Rumney <jasonr@gnu.org>
26243
26244 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
26245 (pfnGetFontUnicodeRanges): New dynamically loaded function.
26246 (w32_initialize): Try to load it.
26247 (x_get_font_repertory): Use it if available.
26248 (w32_encode_char): Add shortcut for unicode output.
26249
26250 * w32fns.c (w32_load_system_font): Default charset to -1.
26251 (x_to_w32_charset): Match all fonts for unicode.
26252 (w32_to_x_charset): New parameter matching. Don't return partial
26253 or wildcard charsets.
26254 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
26255 (w32_codepage_for_font): Return CP_UNICODE for unicode.
26256 (w32_to_x_font): Match charset to real charset.
26257 (enum_font_cb2): Always list unicode versions.
26258
26259 * makefile.w32-in (temacs): Increase EMHEAP.
26260
26261 2008-02-01 Jason Rumney <jasonr@gnu.org>
26262
26263 * w32term.c (w32_encode_char): New charset parameter.
26264 font_info.encoding becomes encoding_type.
26265 (x_get_font_repertory): New function. Warning: stub only!
26266 (x_new_font): Return quickly if font already set.
26267 (x_new_fontset): fontsetname parameter is Lisp_Object.
26268 Use new fs_query_fontset. Try new_fontset_from_font_name.
26269 Use fontset_name for return value.
26270
26271 * w32term.h: Declare x_get_font_repertory.
26272
26273 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
26274 place of find_charset_in_text. Use encode_coding_object in place
26275 of encode_coding.
26276 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
26277 decode_coding.
26278
26279 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
26280 of x_new_fontset.
26281 (w32_load_system_font): Initialize charset as unicode.
26282 font_info.encoding becomes encoding_type.
26283 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
26284 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
26285 (syms_of_w32fns): Set get_font_repertory_func.
26286
26287 * w32console.c: Include character.h. Use terminal_encode_buffer
26288 from term.c.
26289 (write_glyphs): Use new version of encode_terminal_code.
26290 Use encode_coding_object in place of encode_coding.
26291
26292 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
26293 encoding becomes encoding_type.
26294
26295 * term.c (terminal_encode_buffer): Make externally visible.
26296
26297 * makefile.w32-in: Add character.h dependancies.
26298 (character.o, chartab.o): New targets.
26299
26300 2008-02-01 Kenichi Handa <handa@m17n.org>
26301
26302 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
26303 CODING_ID_EOL_TYPE.
26304
26305 2008-02-01 Andreas Schwab <schwab@suse.de>
26306
26307 * coding.c (produce_chars): Revert last change.
26308
26309 2008-02-01 Kenichi Handa <handa@m17n.org>
26310
26311 * charset.h (charset_unicode): Extern it.
26312
26313 * charset.c (string_xstring_p): Check by (C >= 0x100).
26314 (find_charsets_in_text): Change format of the arc CHARSETS.
26315 New arg MULTIBYTE.
26316 (Ffind_charset_region, Ffind_charset_string): Adjust for the
26317 change of find_charsets_in_text.
26318 (Fsplit_char): Fix doc. Never return unknown.
26319
26320 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
26321
26322 * coding.c (Fdefine_coding_system_alias):
26323 Update Vcoding_system_list.
26324
26325 * fontset.c (load_font_get_repertory): Pay attention to the case
26326 that ENCODING of a font is specified by a char-table.
26327
26328 * xterm.c (x_get_font_repertory): Handle the case that the
26329 encoding of font is other than Unicode.
26330
26331 2008-02-01 Kenichi Handa <handa@m17n.org>
26332
26333 * term.c (encode_terminal_code): Don't handle glyph-table.
26334 Check if a character is encodable by the terminal coding system.
26335 If not, produces proper number of `?'s. Update
26336 terminal_encode_buffer and terminal_encode_buf_size if necessary.
26337 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
26338
26339 2008-02-01 Kenichi Handa <handa@m17n.org>
26340
26341 * term.c (terminal_encode_buffer, terminal_encode_buf_size):
26342 New variables.
26343 (encode_terminal_code): Change argument. Encode multiple
26344 characters at once. Store the result of encoding in
26345 terminal_encode_buffer.
26346 (write_glyphs, insert_glyphs): Adjust for the change of
26347 encode_terminal_code.
26348 (term_init): Initialize terminal_encode_buffer and
26349 terminal_encode_buf_size.
26350
26351 * coding.c (consume_chars): If coding->src_object is nil, don't
26352 check annotation.
26353
26354 2008-02-01 Kenichi Handa <handa@m17n.org>
26355
26356 * character.c (char_string): Use ASCII_CHAR_P instead of
26357 SINGLE_BYTE_CHAR_P.
26358
26359 2008-02-01 Kenichi Handa <handa@m17n.org>
26360
26361 * xdisp.c (handle_auto_composed_prop): Check if the last
26362 characters of auto-composed region is newly composed with the
26363 following characters.
26364 (handle_composition_prop): Fix checking of point being inside
26365 composition.
26366
26367 2008-02-01 Kenichi Handa <handa@m17n.org>
26368
26369 * fns.c (concat): Don't change multibyteness of the result by
26370 concatenating an 8-bit character.
26371
26372 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
26373 multibyteness of the result when newelt is an 8-bit character.
26374
26375 2008-02-01 Dave Love <fx@gnu.org>
26376
26377 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
26378 EMACS_INT.
26379
26380 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
26381
26382 * xfaces.c (face_numeric_value): Declare dim size_t.
26383 (Finternal_lisp_face_equal_p): Remove unused f.
26384
26385 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
26386 (MATRIX_ROW): Remove unused vars.
26387 (draw_glyphs, x_insert_glyphs, fast_find_position)
26388 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
26389 byte/char counts.
26390
26391 * regex.c (regex_compile): Remove unused var.
26392
26393 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
26394
26395 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
26396 (Faccessible_keymaps, where_is_internal): Remove unused vars.
26397
26398 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
26399
26400 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
26401
26402 * fileio.c (Fwrite_region): Remove unused var.
26403
26404 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
26405 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
26406
26407 * composite.c (Fremove_list_of_text_properties): Declare.
26408
26409 * coding.c (inhibit_pre_post_conversion): Remove (unused).
26410 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
26411 (coding_inherit_eol_type): Remove unused attrs.
26412 (detect_coding): Cast arg of detect_eol.
26413
26414 * charset.c (syms_of_charset): Remove unused var p.
26415 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
26416 byte/char counts.
26417
26418 * casetab.c (set_case_table): Remove unused var.
26419
26420 * window.c (Fdisplay_buffer, Fframe_selected_window):
26421 Remove unused vars.
26422
26423 2008-02-01 Dave Love <fx@gnu.org>
26424
26425 * xterm.c (x_bitmap_mask): Declare.
26426
26427 2008-02-01 Dave Love <fx@gnu.org>
26428
26429 * xterm.c (x_term_init): Fix type error.
26430
26431 * lisp.h: Add Funibyte_char_to_multibyte.
26432
26433 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
26434 (Fset_coding_system_priority): Doc fix.
26435
26436 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
26437
26438 * indent.c (check_composition): Make start and end EMACS_INT.
26439
26440 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
26441
26442 * xdisp.c (handle_composition_prop, check_point_in_composition):
26443 Make buffer positions EMACS_INT.
26444
26445 * composite.c (find_composition, run_composition_function)
26446 (update_compositions, Ffind_composition_internal): Make buffer
26447 positions EMACS_INT.
26448
26449 * composite.h (find_composition, update_compositions):
26450 Make position args EMACS_INT.
26451
26452 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
26453
26454 * intervals.c (get_property_and_range):
26455 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
26456
26457 * unexalpha.c: Don't include varargs.h.
26458
26459 2008-02-01 Dave Love <fx@gnu.org>
26460
26461 * coding.h (ENCODE_UTF_8): New.
26462
26463 * Makefile.in (gtkutil.o): Depend on coding.h.
26464
26465 * coding.c (Fset_coding_system_priority): Doc fix.
26466
26467 2008-02-01 Kenichi Handa <handa@m17n.org>
26468
26469 * fileio.c (Finsert_file_contents): Call setup_coding_system in
26470 the case of auto saving.
26471
26472 2008-02-01 Andreas Schwab <schwab@suse.de>
26473
26474 * chartab.c (map_char_table, map_char_table_for_charset):
26475 Protect `range' from GC.
26476
26477 2008-02-01 Kenichi Handa <handa@m17n.org>
26478
26479 * coding.c (decode_coding_sjis): Check bytes more rigidly.
26480
26481 2008-02-01 Kenichi Handa <handa@m17n.org>
26482
26483 * fileio.c (choose_write_coding_system): Return a decided coding system.
26484 (Fwrite_region): Set Vlast_coding_system_used to the return value
26485 of choose_write_coding_system.
26486
26487 2008-02-01 Kenichi Handa <handa@m17n.org>
26488
26489 * charset.c (Fset_charset_priority): Pay attention to duplicated
26490 arguments.
26491
26492 * coding.c (QCcategory): New variable.
26493 (syms_of_coding): Defsym it. Set all elements of
26494 Vcoding_category_table and their symbol values.
26495 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
26496 coding-category-XXX, and coding-category-list.
26497 (Fdefine_coding_system_internal): Add category in the plist.
26498
26499 2008-02-01 Kenichi Handa <handa@m17n.org>
26500
26501 * callproc.c (Fcall_process): Handle carryover correctly.
26502
26503 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
26504 (raw_text_coding_system): Check NILP (coding_system).
26505 (coding_inherit_eol_type): Check NILP (coding_system) and
26506 NILP (parent).
26507 (consume_chars): Fix for the case of raw-text.
26508
26509 * process.c (read_process_output): Handle carryover correctly.
26510
26511 2008-02-01 Dave Love <fx@gnu.org>
26512
26513 * regex.c (re_search_2): Fix last change.
26514
26515 2008-02-01 Kenichi Handa <handa@m17n.org>
26516
26517 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
26518 target_multibyte. Even in a unibyte case, return a converted
26519 multibyte char.
26520 (GET_CHAR_AFTER): New macro.
26521 (PATFETCH): Translate via multibyte char.
26522 (HANDLE_UNIBYTE_RANGE): Delete this macro.
26523 (SETUP_MULTIBYTE_RANGE): New macro.
26524 (regex_compile): Setup compiled code so that its multibyteness
26525 matches that of a target. Fix the handling of "[X-YZ]" using
26526 SETUP_MULTIBYTE_RANGE.
26527 (analyse_first) <charset>: For filling fastmap for all multibyte
26528 characters, don't check by BASE_LEADING_CODE_P.
26529 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
26530 the same as RE_MULTIBYTE_P (bufp) now.
26531 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
26532 (TARGET_CHAR_AND_LENGTH): Delete this macro.
26533 (TRANSLATE_VIA_MULTIBYTE): New macro.
26534 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
26535 It is the same as RE_MULTIBYTE_P (bufp) now.
26536 <exactn>: Translate via multibyte.
26537 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH.
26538 Don't translate it.
26539 <charset, charset_not>: Fetch a character by
26540 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
26541 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
26542 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
26543 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
26544 by GET_CHAR_AFTER.
26545 (bcmp_translate): Likewise.
26546
26547 * search.c (compile_pattern): Check the member target_multibyte,
26548 not the member multibyte of buf.
26549
26550 * lread.c (read1): While reading a string, set force_singlebyte
26551 and force_multibyte correctly.
26552
26553 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
26554 up of unibyte_to_multibyte_table.
26555
26556 2008-02-01 Kenichi Handa <handa@m17n.org>
26557
26558 * coding.c (setup_coding_system): If coding has
26559 post-read-conversion or pre-write-conversion, set
26560 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
26561 respectively.
26562 (decode_coding_gap): Run post-read-conversion if any.
26563
26564 * fileio.c (Finsert_file_contents): Even if we read into a
26565 unibyte buffer, check if we must decode the result or not.
26566
26567 2008-02-01 Kenichi Handa <handa@m17n.org>
26568
26569 * coding.c (make_conversion_work_buffer): Change the work buffer
26570 name to the same one as that of Emacs 21.
26571
26572 2008-02-01 Kenichi Handa <handa@m17n.org>
26573
26574 * coding.h (make_conversion_work_buffer): Adjust prototype.
26575 (code_conversion_restore): Don't extern it.
26576
26577 * coding.c (detected_mask): Delete unused variable.
26578 (decode_coding_iso_2022): Pay attention to the byte sequence of
26579 CTEXT extended segment, and retain those bytes as is.
26580 (decode_coding_ccl): Delete unused variable `valids'.
26581 (setup_coding_system): Delete unused variable `category'.
26582 (consume_chars): Delete unused variable `category'. Make it work
26583 for non-multibyte case.
26584 (make_conversion_work_buffer): Change argument.
26585 (saved_coding): Delete unused variable.
26586 (code_conversion_restore): Don't check saved_coding->destination.
26587 (code_conversion_save): New function.
26588 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
26589 instead of record_unwind_protect.
26590 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
26591 (detect_coding_system): Delete unused variable `mask'.
26592 (Fdefine_coding_system_internal): Delete unused variable id.
26593
26594 * fileio.c (kill_workbuf_unwind): New function.
26595 (Finsert_file_contents): On replacing, call
26596 make_conversion_work_buffer with correct args, and call
26597 record_unwind_protect with the first arg kill_workbuf_unwind.
26598
26599 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
26600
26601 2008-02-01 Kenichi Handa <handa@m17n.org>
26602
26603 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
26604 (fontset_add): Fix for the case that TO is less than TO1.
26605 (Ffontset_info): Don't use fallback fontset on checking the
26606 default fontset.
26607 (dump_fontset): New function for debugging.
26608
26609 * coding.c (Fdefine_coding_system_internal): Fix for the case that
26610 coding_type is Qcharset.
26611
26612 2008-02-01 Kenichi Handa <handa@m17n.org>
26613
26614 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
26615 (map_char_table): Don't inherit the value from the parent on
26616 initializing VAL. Adjust for the above change.
26617
26618 2008-02-01 Kenichi Handa <handa@m17n.org>
26619
26620 * coding.c (Qsignature, Qendian): Delete these variables.
26621 (syms_of_coding): Don't initialize them.
26622 (CATEGORY_MASK_UTF_16_AUTO): New macro.
26623 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
26624 detect_info->found.
26625 (decode_coding_utf_16): Don't detect BOM here.
26626 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
26627 is NOT utf_16_without_bom.
26628 (setup_coding_system): For a coding system of type utf-16, check
26629 if the attribute :endian is Qbig or not (not nil or not), and set
26630 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
26631 (detect_coding): If coding type is utf-16 and BOM detection is
26632 required, detect it.
26633 (Fdefine_coding_system_internal): For a coding system of type
26634 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
26635
26636 2008-02-01 Kenichi Handa <handa@m17n.org>
26637
26638 * coding.c (coding_set_source): Fix for the case that the current
26639 buffer is different from coding->src_object.
26640 (decode_coding_object): Don't use the conversion work buffer if
26641 DST_OBJECT is a buffer.
26642
26643 2008-02-01 Dave Love <fx@gnu.org>
26644
26645 * lread.c (read_emacs_mule_char) [len==2]: Index
26646 emacs_mule_charset correctly.
26647
26648 2008-02-01 Dave Love <fx@gnu.org>
26649
26650 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
26651 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
26652 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
26653 treated specially.)
26654 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
26655 (detected_mask): Remove Big5 bits.
26656
26657 2008-02-01 Kenichi Handa <handa@m17n.org>
26658
26659 The following changes are to make the font rescaling facility
26660 compatible with Emacs 21.
26661
26662 * xfaces.c (Vface_font_rescale_alist): Rename from
26663 Vface_resizing_fonts.
26664 (struct font_name): Rename member resizing_ratio to rescale_ratio.
26665 (font_rescale_ratio): Rename from font_resizing_ratio.
26666 (split_font_name): Set font->rescale_ratio.
26667 (better_font_p): Pay attention to font->rescale_ratio.
26668 (build_scalable_font_name): Likewise. Change RESX, and RESY
26669 fields.
26670 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
26671
26672 2008-02-01 Kenichi Handa <handa@m17n.org>
26673
26674 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
26675 (Qutf_16_le): Remove these variables.
26676 (syms_of_coding): Don't DEFSYM them.
26677 (decode_coding_utf_16): Fix handling of BOM.
26678 (encode_coding_utf_16): Fix handling of BOM.
26679
26680 2008-02-01 Kenichi Handa <handa@m17n.org>
26681
26682 * fileio.c (Finsert_file_contents): On replacing, before decoding
26683 the file into the work buffer, set point of the work buffer to the end.
26684
26685 2008-02-01 Dave Love <fx@gnu.org>
26686
26687 * coding.c (Fcheck_coding_systems_region): Fix type errors.
26688
26689 2008-02-01 Dave Love <fx@gnu.org>
26690
26691 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
26692 and fix C types.
26693
26694 2008-02-01 Kenichi Handa <handa@m17n.org>
26695
26696 * xdisp.c (SKIP_GLYPHS): New macro.
26697 (set_cursor_from_row): Pay attention to string display properties.
26698
26699 * category.c (copy_category_entry): Fix for the case that RANGE
26700 is an integer.
26701
26702 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
26703
26704 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
26705
26706 2008-02-01 Kenichi Handa <handa@m17n.org>
26707
26708 * charset.c (Fcharset_id_internal): New function.
26709 (syms_of_charset): Defsubr it.
26710
26711 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
26712 with the last arg charset_list acquired from coding.
26713 (Fdefine_coding_system_internal): For ccl-based coding system, fix
26714 the attribute coding_attr_ccl_valids.
26715
26716 * coding.h (enum define_coding_ccl_arg_index): Set the first
26717 member coding_arg_ccl_decoder to coding_arg_max.
26718
26719 * ccl.h (ccl_driver): Adjust prototype.
26720
26721 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
26722 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
26723 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
26724 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
26725 last arg Qnil.
26726
26727 2008-02-01 Kenichi Handa <handa@m17n.org>
26728
26729 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
26730 call encode_char.
26731
26732 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
26733
26734 2008-02-01 Dave Love <fx@gnu.org>
26735
26736 * composite.c (syms_of_composite): Make composition_hash_table weak.
26737
26738 2008-02-01 Kenichi Handa <handa@m17n.org>
26739
26740 * dispextern.h (check_face_attributes, generate_ascii_font_name)
26741 (font_name_registry): Don't extern them.
26742 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
26743
26744 * fontset.h (Qfontset): Don't extern it.
26745 (new_fontset_from_font_name): Extern it.
26746
26747 * fontset.c: Give 8 extra slots to fontset objects.
26748 (Qfontset_info): New variable.
26749 (syms_of_fontset): Defsym it.
26750 (FONTSET_FALLBACK): New macro.
26751 (fontset_face): Try also the default fontset.
26752 (make_fontset): Realize a fallback fontset from the default fontset.
26753 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
26754 using split_font_name_into_vector and build_font_name_from_vector.
26755 (Fset_fontset_font): Access the elements of font_spec by enum
26756 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
26757 name by using split_font_name_into_vector.
26758 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
26759 generate a proper font name from the fontset name.
26760 Update Vfontset_alias_alist.
26761 (n_auto_fontsets): New variable.
26762 (new_fontset_from_font_name): New function.
26763 (Ffont_info): Store the information about fonts generated from the
26764 default fontset in the first extra slot of the returned char-table.
26765
26766 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
26767 (font_name_registry): Delete function.
26768 (split_font_name_into_vector): New function.
26769 (build_font_name_from_vector): New function.
26770 (font_list): The argument REGISTRY is now a list of registry names.
26771 (choose_face_font): If we are choosing an ASCII font, and ATTRS
26772 specifies an explicit font name, return the name as is. Make a
26773 list of registy names.
26774
26775 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
26776 of x_new_fontset.
26777 (Fx_create_frame): Don't call x_new_fontset here. Just use
26778 x_list_fonts to check the existence of fonts.
26779
26780 * xterm.h (x_new_fontset): Adjust prototype.
26781
26782 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
26783 string. Use new_fontset_from_font_name to create a fontset from a
26784 font name.
26785
26786 2008-02-01 Kenichi Handa <handa@m17n.org>
26787
26788 * syntax.c (Vfind_word_boundary_function_table): New name for
26789 Vnext_word_boundary_function_table.
26790 (find-word-boundary-function-table): New name for
26791 next-word-boundary-function-table.
26792
26793 2008-02-01 Dave Love <fx@gnu.org>
26794
26795 * Makefile.in: Fix some dependencies.
26796
26797 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
26798 set it to nil before returning.
26799
26800 * composite.c (update_compositions): Fix type error.
26801
26802 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
26803
26804 2008-02-01 Kenichi Handa <handa@m17n.org>
26805
26806 * xterm.c (x_new_font): Optimize for the case that the font is
26807 already set for the frame.
26808
26809 2008-02-01 Kenichi Handa <handa@m17n.org>
26810
26811 * chartab.c (char_table_ascii): Check if the char table contents
26812 is sub-char-table or not.
26813 (char_table_set, char_table_set_range): Fix argument to
26814 char_table_ascii.
26815
26816 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
26817 (detect_coding_utf_8, detect_coding_utf_16)
26818 (detect_coding_emacs_mule, detect_coding_iso_2022)
26819 (detect_coding_sjis, detect_coding_big5)
26820 (detect_coding_ccl, detect_coding_charset): Change argument MASK
26821 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
26822 sequence is valid in this coding system. Change callers.
26823 (MAX_ANNOTATION_LENGTH): New macro.
26824 (ADD_ANNOTATION_DATA): New macro.
26825 (ADD_COMPOSITION_DATA): Change argument. Change callers.
26826 Call ADD_ANNOTATION_DATA. Change the format of annotation data.
26827 (ADD_CHARSET_DATA): New macro.
26828 (emacs_mule_char): New argument ID. Change callers.
26829 (decode_coding_emacs_mule, decode_coding_iso_2022)
26830 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
26831 Produce charset annotation data in coding->charbuf.
26832 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
26833 to charset annotation data in coding->charbuf.
26834 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
26835 coding->common_flags if the coding system is iso-2022 based and
26836 uses designation.
26837 (produce_composition): Adjust for the new annotation data format.
26838 (produce_charset): New function.
26839 (produce_annotation): Handle charset annotation.
26840 (handle_composition_annotation, handle_charset_annotation):
26841 New functions.
26842 (consume_chars): Handle charset annotation. Utilize the above two
26843 functions.
26844 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
26845 buffer, get the deleted text as a string and set
26846 coding->src_object to that string.
26847 (detect_coding, detect_coding_system): Use the new struct
26848 coding_detection_info.
26849
26850 * coding.h (struct coding_detection_info): New structure.
26851 (struct coding_system): Adjust prototype of the member `detector'.
26852 (CODING_ANNOTATE_CHARSET_MASK): New macro.
26853
26854 2008-02-01 Kenichi Handa <handa@m17n.org>
26855
26856 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
26857
26858 2008-02-01 Dave Love <fx@gnu.org>
26859
26860 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
26861 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
26862 to new local and nullify apropos_accumulate before returning.
26863 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
26864
26865 2008-02-01 Kenichi Handa <handa@m17n.org>
26866
26867 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
26868 correctly.
26869
26870 2008-02-01 Dave Love <fx@gnu.org>
26871
26872 * fns.c (Flanginfo): Call synchronize_system_time_locale.
26873
26874 2008-02-01 Kenichi Handa <handa@m17n.org>
26875
26876 The following changes are to make character composition happen
26877 automatically on displaying.
26878
26879 * Makefile.in (lisp, shortlisp): Add composite.elc.
26880
26881 * composite.h (Qauto_composed, Vauto_composition_function)
26882 (Qauto_composition_function): Extern them.
26883
26884 * composite.c (Vcomposition_function_table)
26885 (Qcomposition_function_table): Delete variables.
26886 (Qauto_composed, Vauto_composition_function)
26887 (Qauto_composition_function): New variables.
26888 (run_composition_function): Don't call
26889 compose-chars-after-function.
26890 (update_compositions): Clear `auto-composed' text property.
26891 (compose_chars_in_text): Delete this function.
26892 (syms_of_composite): Staticpro Qauto_composed and
26893 Qauto_composition_function. Declare Vauto_composition_function as
26894 a Lisp variable.
26895
26896 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
26897
26898 * xdisp.c (it_props): Add an entry for Qauto_composed.
26899 (handle_auto_composed_prop): New function.
26900
26901 * xselect.c (selection_data_to_lisp_data): Don't call
26902 compose_chars_in_text.
26903
26904 2008-02-01 Dave Love <fx@gnu.org>
26905
26906 * keyboard.c (read_char): Modify checking around use of
26907 Vkeyboard_translate_table.
26908
26909 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
26910 and fix C types.
26911
26912 2008-02-01 Kenichi Handa <handa@m17n.org>
26913
26914 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
26915 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
26916 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
26917 the case that the last byte is '\r' correctly.
26918 (decode_coding): Flush out the unprocessed data correctly.
26919 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
26920
26921 2008-02-01 Dave Love <fx@gnu.org>
26922
26923 * xterm.c (XTread_socket): Fix changes for defined keysyms.
26924 Add XK_ISO... case.
26925 (xaw_scroll_callback): Revert last change.
26926
26927 2008-02-01 Kenichi Handa <handa@m17n.org>
26928
26929 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
26930
26931 2008-02-01 Kenichi Handa <handa@m17n.org>
26932
26933 * xfaces.c (Vface_resizing_fonts): New variable.
26934 (struct font_name): New member `resizing_ratio'.
26935 (font_resizing_ratio): New function.
26936 (split_font_name): Set font->resizing_ratio.
26937 (better_font_p): Pay attention to font->resizing_ratio.
26938 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
26939 RESX, and RESY fields.
26940 (try_alternative_families): Try scalable fonts if
26941 Vscalable_fonts_allowed is not Qt.
26942 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
26943
26944 2008-02-01 Dave Love <fx@gnu.org>
26945
26946 * xterm.c (xaw_scroll_callback): Cast correctly.
26947
26948 2008-02-01 Dave Love <fx@gnu.org>
26949
26950 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
26951 (lispy_kana_keys): Comment out.
26952 (make_lispy_event) [XK_kana_A]: Comment out.
26953
26954 * xterm.c (xaw_scroll_callback): Cast call_data.
26955 (XTread_socket): Deal with ASCII keysyms.
26956 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
26957
26958 2008-02-01 Dave Love <fx@gnu.org>
26959
26960 * xterm.c (Vx_keysym_table): New.
26961 (syms_of_xterm): Initialize it.
26962 (XTread_socket): Use it.
26963 From head: Eliminate incorrect optimization that tried to avoid
26964 decoding the output of X*LookupString.
26965 (x_get_font_repertory): Delete charset declaration.
26966
26967 2008-02-01 Kenichi Handa <handa@m17n.org>
26968
26969 * coding.c (detect_coding_charset): If only ASCII bytes are found,
26970 return 0.
26971 (Fdefine_coding_system_internal):
26972 Setup CODING_ATTR_ASCII_COMPAT (attrs) correctly.
26973
26974 2008-02-01 Dave Love <fx@gnu.org>
26975
26976 * coding.c (Fcheck_coding_system): Doc fix.
26977
26978 * editfns.c (Finsert_byte): Return a proper value.
26979
26980 2008-02-01 Kenichi Handa <handa@m17n.org>
26981
26982 * coding.c (decode_coding): Fix args to translate_chars.
26983 Pay attention to Vstandard_translation_table_for_decode.
26984 (encode_coding): Fix args to translate_chars. Pay attention to
26985 Vstandard_translation_table_for_encode.
26986
26987 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
26988 SINGLE_BYTE_CHAR_P.
26989
26990 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
26991 not by SINGLE_BYTE_CHAR_P.
26992
26993 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
26994 SINGLE_BYTE_CHAR_P.
26995
26996 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
26997 SINGLE_BYTE_CHAR_P.
26998
26999 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
27000 by SINGLE_BYTE_CHAR_P.
27001
27002 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
27003 SINGLE_BYTE_CHAR_P.
27004
27005 2008-02-01 Dave Love <fx@gnu.org>
27006
27007 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
27008
27009 2008-02-01 Dave Love <fx@gnu.org>
27010
27011 * fns.c (Flanginfo): Fix typo.
27012
27013 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
27014
27015 2008-02-01 Kenichi Handa <handa@m17n.org>
27016
27017 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
27018 (detect_coding_emacs_mule, detect_coding_iso_2022)
27019 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
27020 incomplete byte sequence. Don't update *mask when correctly detected.
27021 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
27022 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
27023 (detect_coding, detect_coding_system): Adjust for the changes above.
27024
27025 2008-02-01 Kenichi Handa <handa@m17n.org>
27026
27027 * character.c (char_string): Rename from
27028 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
27029 (string_char): Rename from string_char.
27030
27031 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
27032 if C is greater than MAX_3_BYTE_CHAR.
27033 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE):
27034 Call string_char instead of string_char_with_unification.
27035
27036 2008-02-01 Dave Love <fx@gnu.org>
27037
27038 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
27039
27040 2008-02-01 Kenichi Handa <handa@m17n.org>
27041
27042 * keymap.c (push_key_description): Pay attention to force_multibyte.
27043
27044 * regex.c (re_search_2): Fix for the case of unibyte buffer.
27045
27046 2008-02-01 Dave Love <fx@gnu.org>
27047
27048 * charset.c (define_charset_internal): Rename `supprementary'.
27049
27050 * Makefile.in (lisp, shortlisp): Remove latin-N.
27051
27052 2008-02-01 Dave Love <fx@gnu.org>
27053
27054 * xfns.c (x_window, x_window): Use use_xim.
27055
27056 * xterm.c (use_xim): Initialize.
27057 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
27058 (x_term_init): Maybe set use_xim.
27059
27060 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
27061
27062 2008-02-01 Kenichi Handa <handa@m17n.org>
27063
27064 * search.c (search_buffer): Fix case-fold-search of multibyte
27065 characters.
27066 (boyer_moore): Rename the last argument to char_high_bits.
27067
27068 2008-02-01 Kenichi Handa <handa@m17n.org>
27069
27070 * xdisp.c (display_string): Fix for the case of zero width glyph.
27071
27072 * xfns.c (x_set_font): Change the error message of the case that
27073 x_new_fontset returns Qt.
27074
27075 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
27076 (Finternal_set_lisp_face_attribute): Use signal_error for the
27077 error of invalid fontset.
27078
27079 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
27080 fontset, return Qt.
27081
27082 2008-02-01 Dave Love <fx@gnu.org>
27083
27084 * unexelf.c (unexec): Make .got handling not SGI-specific.
27085
27086 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
27087
27088 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
27089
27090 * keyboard.c (read_key_sequence): Fix type error.
27091
27092 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte):
27093 Fix type error.
27094
27095 * fontset.c (fontset_add): Return Lisp_Object.
27096
27097 2008-02-01 Dave Love <fx@gnu.org>
27098
27099 * charset.h (charset_ordered_list_tick): Declare extern.
27100
27101 2008-02-01 Kenichi Handa <handa@m17n.org>
27102
27103 The following changes (and some of 2008-02-01 changes of mine) are
27104 for handling syntax, category, and case conversion for unibyte
27105 characters by converting them to multibyte on the fly. With these
27106 changes, we don't have to setup syntax and case tables for unibyte
27107 characters in each language environment.
27108
27109 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
27110 multibyte if necessary.
27111
27112 * bytecode.c (Fbyte_code): Likewise.
27113
27114 * character.h (LEADING_CODE_LATIN_1_MIN)
27115 (LEADING_CODE_LATIN_1_MAX): New macros.
27116 (unibyte_to_multibyte_table): Extern it.
27117 (unibyte_char_to_multibyte): New macro.
27118 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
27119 (CHAR_LEADING_CODE): New macro.
27120 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
27121
27122 * character.c (unibyte_to_multibyte_table): New variable.
27123 (unibyte_char_to_multibyte): Move to character.h and define as macro.
27124 (multibyte_char_to_unibyte): If C is an eight-bit character,
27125 convert it to the corresponding byte value.
27126
27127 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
27128 not 1, signals an error. Update the elements of
27129 unibyte_to_multibyte_table.
27130 (init_charset_once): Initialize unibyte_to_multibyte_table.
27131 (syms_of_charset): Define the charset `iso-8859-1'.
27132
27133 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
27134 as is without converting it to unibyte. In a unibyte buffer,
27135 convert C to multibyte before checking the syntax.
27136
27137 * lisp.h (unibyte_char_to_multibyte): Delete extern.
27138
27139 * minibuf.c (Fminibuffer_complete_word): Use the macro
27140 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
27141
27142 * regex.h (struct re_pattern_buffer): New member target_multibyte.
27143
27144 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
27145 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte.
27146 If that is zero, convert an eight-bit char to multibyte.
27147 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
27148 non-emacs case.
27149 (PATFETCH): Convert an eight-bit char to multibyte.
27150 (HANDLE_UNIBYTE_RANGE): New macro.
27151 (regex_compile): Setup the compiled pattern for multibyte chars
27152 even if the given regex string is unibyte. Use PATFETCH_RAW
27153 instead of PATFETCH in many places. To handle `charset'
27154 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
27155 only for ASCII chars.
27156 (analyse_first) <exactn>: Simplify because the compiled pattern
27157 is multibyte.
27158 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
27159 <charset>: Use CHAR_LEADING_CODE to get leading codes.
27160 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
27161 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
27162 multibyte always 1.
27163 (re_search_2): In emacs, set the locale variable multibyte to 1,
27164 otherwise to 0. New local variable target_multibyte. Check it
27165 to decide the multibyteness of STR1 and STR2.
27166 If target_multibyte is zero, convert unibyte chars to multibyte
27167 before translating and checking fastmap.
27168 (TARGET_CHAR_AND_LENGTH): New macro.
27169 (re_match_2_internal): In emacs, set the locale variable multibyte
27170 to 1, otherwise to 0. New local variable target_multibyte.
27171 Check it to decide the multibyteness of STR1 and STR2.
27172 Use TARGET_CHAR_AND_LENGTH to fetch a character from D.
27173 <charset, charset_not>: If multibyte is nonzero, check fastmap
27174 only for ASCII chars. Call bcmp_translate with
27175 target_multibyte, not with multibyte.
27176 <begline>: Declare the local variable C as `unsigned'.
27177 (bcmp_translate): Change the last arg name to target_multibyte.
27178
27179 * search.c (compile_pattern_1): Don't adjust the multibyteness of
27180 the regexp pattern and the matching target. Set cp->buf.multibyte
27181 to the multibyteness of the regexp pattern. Set
27182 cp->but.target_multibyte to the multibyteness of the matching target.
27183 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
27184 FETCH_STRING_CHAR_ADVANCE.
27185 (Freplace_match): Convert unibyte chars to multibyte.
27186
27187 * syntax.c (char_quoted, back_comment, scan_words)
27188 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
27189 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
27190 unibyte chars to multibyte.
27191 (skip_chars): Delete the arg syntaxp, and move the code for
27192 handling syntaxes to skip_syntaxes. Change callers.
27193 Fix the case that the multibyteness of STRING and the current
27194 buffer doesn't match.
27195 (skip_syntaxes): New function.
27196 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
27197 SINGLE_BYTE_CHAR_P.
27198
27199 2008-02-01 Kenichi Handa <handa@m17n.org>
27200
27201 * xfaces.c (QCfontset): New variable.
27202 (LFACE_FONTSET): New macro.
27203 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
27204 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
27205 (Finternal_set_lisp_face_attribute)
27206 (Finternal_get_lisp_face_attribute): Handle QCfontset.
27207 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
27208 check also LFACE_FONTSET_INDEX.
27209 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
27210 attrs[LFACE_FONT_INDEX].
27211 (syms_of_xfaces): Intern and staticpro QCfontset.
27212
27213 * dispextern.h (enum lface_attribute_index): New member
27214 LFACE_FONTSET_INDEX.
27215
27216 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
27217
27218 2008-02-01 Kenichi Handa <handa@m17n.org>
27219
27220 * coding.c (coding_set_destination): Fix coding->destination for
27221 the case converting a region.
27222 (encode_coding_utf_8): Encode eight-bit chars as single byte.
27223 (encode_coding_object): Fix coding->dst_pos and
27224 coding->dst_pos_byte for the case converting a region.
27225
27226 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
27227
27228 * character.h (BYTE8_STRING): New macro.
27229
27230 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
27231
27232 2008-02-01 Kenichi Handa <handa@m17n.org>
27233
27234 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
27235 characters by octal form.
27236
27237 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
27238
27239 * buffer.h (_fetch_multibyte_char_len): Delete extern.
27240 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
27241 _fetch_multibyte_char_len.
27242 (FETCH_CHAR_AS_MULTIBYTE): New macro.
27243
27244 * casetab.c (set_canon, set_identity, shuffle): Simplify.
27245
27246 * casefiddle.c (casify_object): Simplify. Handle the case that
27247 the case conversion change the byte length.
27248 (casify_region): Likewise.
27249
27250 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
27251
27252 * character.c (_fetch_multibyte_char_len): Delete this variable.
27253 (syms_of_character): Setup Vprintable_chars.
27254
27255 * editfns.c (Fchar_equal): Fix for the unibyte case.
27256 (Finsert_byte): New function.
27257 (syms_of_editfns): Defsubr it.
27258
27259 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
27260 of direct code 0x3ffff.
27261
27262 * search.c (Freplace_match): Fix for the unibyte case.
27263
27264 2008-02-01 Kenichi Handa <handa@m17n.org>
27265
27266 * lread.c (safe_to_load_p): Fix the logic.
27267
27268 * syntax.c (scan_words): Don't treat characters belonging to
27269 different scripts as constituting a word.
27270
27271 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27272
27273 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
27274
27275 * emacs.c (main): In the case of --unibyte, instead of aborting on
27276 finding non-empty buffer, make it unibyte.
27277
27278 2008-02-01 Kenichi Handa <handa@m17n.org>
27279
27280 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
27281 to create a fontset.
27282
27283 2008-02-01 Dave Love <fx@gnu.org>
27284
27285 * character.c (Funibyte_char_to_multibyte): Doc fix.
27286
27287 * xfns.c [HAVE_STDLIB_H]: Fix last change.
27288
27289 2008-02-01 Kenichi Handa <handa@m17n.org>
27290
27291 * fontset.c (fontset_add): Make the type `int'.
27292 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
27293
27294 * character.c (unibyte_char_to_multibyte)
27295 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
27296 charset_unibyte, not charset_primary.
27297
27298 * charset.h (charset_unibyte): Extern it instead of charset_primary.
27299
27300 * charset.c (charset_unibyte): Rename from charset_primary.
27301 (Funibyte_charset): Rename from Fprimary_charset.
27302 (Fset_unibyte_charset): Rename from Fset_primary_charset.
27303 (syms_of_charset): Adjust for the above changes.
27304
27305 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
27306 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
27307 it->multibyte_p is zero.
27308
27309 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
27310 Delete extern.
27311
27312 2008-02-01 Kenichi Handa <handa@m17n.org>
27313
27314 * coding.c (Fdefine_coding_system_internal): Fix category setting
27315 for a coding system of type iso-2022.
27316
27317 2008-02-01 Kenichi Handa <handa@m17n.org>
27318
27319 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
27320
27321 2008-02-01 Kenichi Handa <handa@m17n.org>
27322
27323 * syntax.c (Vnext_word_boundary_function_table): New variable.
27324 (next-word-boundary-function-table): Declare it as a Lisp variable
27325 in syms_of_syntax.
27326 (scan_words): Call functions in Vnext_word_boundary_function_table
27327 if any.
27328
27329 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
27330
27331 * fontset.c (fs_load_font): If fontp->charset is not negative,
27332 return fontp without setting its members.
27333
27334 2008-02-01 Dave Love <fx@gnu.org>
27335
27336 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
27337
27338 * m/sparc.h (HAVE_ALLOCA): Delete.
27339
27340 * s/irix6-5.h: Don't include strings.h.
27341 (bcopy, bzero, bcmp): Don't undef.
27342
27343 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
27344
27345 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
27346 (TIOCSIGSEND): Don't test IRIX6.
27347 (bcopy, bzero, bcmp): Define conditionally.
27348
27349 2008-02-01 Kenichi Handa <handa@m17n.org>
27350
27351 * buffer.c (Qas, Qmake, Qto): New variables.
27352 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
27353 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
27354
27355 * callproc.c (Fcall_process): Don't call insert_1_both directly if
27356 we are inserting a process output into a multibyte buffer.
27357
27358 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
27359 multibyte_char_to_unibyte.
27360
27361 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
27362 by the primary charset, make it eight-bit char.
27363 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
27364
27365 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
27366 (charset_8_bit__control, charset_8_bit_graphic)
27367 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
27368 (define_charset_internal): New function.
27369 (syms_of_charset): Call define_charset_internal for pre-defined
27370 charsets.
27371
27372 * charset.h (charset_8_bit): Extern it.
27373
27374 * coding.c (make_conversion_work_buffer): Adjust for the change
27375 of Fset_buffer_multibyte.
27376 (encode_coding_raw_text): Increment p0 in the loop.
27377
27378 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
27379
27380 * xdisp.c (setup_echo_area_for_printing, set_message_1):
27381 Adjust for the change of Fset_buffer_multibyte.
27382
27383 * fns.c (Fstring_to_multibyte): New function.
27384 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
27385
27386 2008-02-01 Dave Love <fx@gnu.org>
27387
27388 * xfns.c (x_put_x_image): Declare args.
27389
27390 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
27391 (try_font_list): Declare an arg.
27392
27393 * xdisp.c (message2_nolog, set_message): Declare an arg.
27394
27395 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
27396
27397 * syntax.c (scan_sexps_forward): Declare an arg.
27398
27399 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
27400 Declare an arg.
27401
27402 * lisp.h (Fnew_fontset): Declare.
27403
27404 * keymap.c (push_key_description): Call CHARACTERP correctly.
27405
27406 * fontset.c (fontset_add): Declare args. Call make_number correctly.
27407 (face_for_char): Delete unused vars.
27408 (Fset_fontset_font): Doc fix. Delete unused vars.
27409
27410 * doc.c (Fsubstitute_command_keys): Delete unused vars.
27411
27412 * composite.c (update_compositions): Declare arg.
27413
27414 * cm.c (calccost, cmgoto): Declare args.
27415
27416 * charset.c: Remove `emacs' conditional. Doc fixes.
27417 (map_char_table_for_charset): Declare.
27418
27419 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
27420
27421 * ccl.c: Remove `emacs' conditional.
27422
27423 2008-02-01 Kenichi Handa <handa@m17n.org>
27424
27425 The following changes are to allow specifying multiple font
27426 patterns for a character range (specified by script or charset).
27427
27428 * Makefile.in (abbrev.o): Depend on syntax.h.
27429 (xfaces.o): Depend on charset.h.
27430
27431 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
27432 SINGLE_BYTE_CHAR_P.
27433
27434 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
27435
27436 * character.h (Vchar_script_table): Extern it.
27437
27438 * character.c (Vscript_alist): Delete.
27439 (Vchar_script_table, Qchar_script_table): New variable.
27440 (syms_of_character): Declare Vchar_script_table as a lisp variable
27441 and initialize it.
27442
27443 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
27444 have property char-table-extra-slots, make no extra slot.
27445
27446 * dispextern.h (struct face): Delete member `charset'.
27447 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
27448 SINGLE_BYTE_CHAR_P.
27449 (choose_face_font, lookup_non_ascii_face, font_name_registry):
27450 Add prototypes.
27451 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
27452 (generate_ascii_font_name): Rename from generate_ascii_font.
27453
27454 * fontset.h (get_font_repertory_func): New prototype.
27455 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
27456 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
27457
27458 * fontset.c (Qprepend, Qappend): New variables.
27459 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
27460 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
27461 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
27462 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
27463 (fontset_ref_and_range, fontset_add, reorder_font_vector)
27464 (load_font_get_repertory): New functions.
27465 (fontset_set): Delete.
27466 (fontset_face): New arg FACE. Return face ID, not face.
27467 Complete re-write to handle new fontset structure. Change caller.
27468 (free_face_fontset): Use ASET istead of AREF (X) = Y.
27469 (face_for_char): Don't call lookup_face.
27470 (make_fontset_for_ascii_face): New arg FACE.
27471 (fs_load_font): New arg CHARSET_ID. Don't check
27472 Vfont_encoding_alist here.
27473 (find_font_encoding): New function.
27474 (list_fontsets): Use STRINGP, not ! NILP.
27475 (accumulate_script_ranges): New function.
27476 (Fset_fontset_font, Fnew_fontset, Ffontset_info):
27477 Completely re-written to handle new fontset structure.
27478 (Ffontset_font): Return a copy of element.
27479 (syms_of_fontset): Define symbols Qprepend and Qappend.
27480 Fix docstring of font-encoding-alist.
27481
27482 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
27483 (Fset_fotset_font): Fix arguments to 5.
27484
27485 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
27486
27487 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
27488 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27489 (highlight_trailing_whitespace): Adjust for the change of
27490 lookup_named_face.
27491
27492 * xfaces.c: Include charset.h.
27493 (load_face_font): Delete argument C. Change caller.
27494 (generate_ascii_font_name): Rename from generate_ascii_font.
27495 (font_name_registry): New function.
27496 (cache_face): Store ascii faces before non-ascii faces in buckets.
27497 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
27498 Lookup only ascii faces.
27499 (lookup_non_ascii_face): New function.
27500 (lookup_named_face): Delete argument C. Change caller.
27501 (lookup_derived_face): Delete argument C. Change caller.
27502 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
27503 a string, just call font_list with it.
27504 (choose_face_font): Delete arguments FACE and C. New arg
27505 FONT_SPEC. Change caller.
27506 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
27507 Change caller.
27508 (realize_non_ascii_face): New function.
27509 (realize_x_face): Call load_face_font here.
27510 (realize_tty_face): Delete argument C. Change caller.
27511 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
27512 get a face ID.
27513 (dump_realized_face): Don't print charset of FACE.
27514
27515 * xfns.c (x_set_font): Always call x_new_fontset and
27516 store_frame_parameter.
27517 (Fx_create_frame): Call x_new_fontset, not x_new_font.
27518 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
27519
27520 * xterm.h (x_get_font_repertory): Extern it.
27521
27522 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
27523 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
27524 it->multibyte_p is zero.
27525 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27526 (x_new_fontset): If FONTSETNAME doesn't match any existing
27527 fontsets, create a new one.
27528 (x_get_font_repertory): New function.
27529
27530 2008-02-01 Kenichi Handa <handa@m17n.org>
27531
27532 * coding.c (Ffind_coding_systems_region_internal): Detect an
27533 ASCII only string correctly.
27534
27535 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
27536 version is 0.
27537
27538 2008-02-01 Kenichi Handa <handa@m17n.org>
27539
27540 * lread.c: Include "coding.h".
27541 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
27542 (load_each_byte, unread_char): New variables.
27543 (readchar_backlog): Delete.
27544 (readchar): Return a character unless load_each_byte is nonzero.
27545 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
27546 cons. If unread_char is not -1, simply return it.
27547 (unreadchar): Handle the case that readcharfun is
27548 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
27549 (read_multibyte): Delete.
27550 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
27551 (read_emacs_mule_char): New functions.
27552 (Fload): Even if the file doesn't have the extension ".elc", if
27553 safe_to_load_p returns a positive version number, assume that the
27554 file contains bytecompiled code. If the version is less than 22,
27555 load the file while decoding multibyte sequences by emacs-mule.
27556 (readevalloop): Don't use readchar_backlog.
27557 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
27558 (Fread_from_string): Pay attention to the case that STREAM is a cons.
27559 (read_escape): Delete the arg BYTEREP.
27560 (read1): Set load_each_byte to 1 temporarily while handling
27561 #@NUMBER. Don't call read_multibyte.
27562 (read_vector): Call Fread with a cons. If readcharfun is
27563 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
27564 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
27565 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
27566 and Qload_force_doc_strings.
27567
27568 2008-02-01 Kenichi Handa <handa@m17n.org>
27569
27570 * xdisp.c (face_before_or_after_it_pos):
27571 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
27572
27573 2008-02-01 Kenichi Handa <handa@m17n.org>
27574
27575 * character.h (TRAILING_CODE_P): New macro.
27576 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
27577 (string_char_with_unification): Fix prototype.
27578 (Vscript_alist): Extern it.
27579
27580 * character.c (Vscript_alist): New variable.
27581 (string_char_with_unification, str_as_unibyte)
27582 (string_escape_byte8): Add `const' to local variables.
27583 (syms_of_character): Declare script-alist as a Lisp variable.
27584
27585 * charset.h (Vcharset_ordered_list): Extern it.
27586 (charset_ordered_list_tick): Extern it.
27587 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
27588 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
27589 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
27590 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
27591 (Funify_charset): Adjust for the change of Funify_charset.
27592
27593 * charset.c (charset_ordered_list_tick): New variable.
27594 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
27595 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
27596 deunify instead of unify a charset.
27597 (string_xstring_p): Add `const' to local variables.
27598 (find_charsets_in_text): Add `const' to arguments and local variables.
27599 (encode_char): Adjust for the change of Funify_charset.
27600 Fix detecting of invalid code.
27601 (Fset_charset_priority): Increment charset_ordered_list_tick.
27602 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
27603 and TO_CODE.
27604
27605 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
27606 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
27607 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
27608 (decode_coding_ccl, consume_chars)
27609 (Ffind_coding_systems_region_internal)
27610 (Fcheck_coding_systems_region): Add `const' to local variables.
27611
27612 * print.c (print_object): Use octal form for printing the
27613 contents of a bool vector.
27614
27615 2008-02-01 Dave Love <fx@gnu.org>
27616
27617 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
27618 <version == 20>: Refuse to load.
27619
27620 2008-02-01 Dave Love <fx@gnu.org>
27621
27622 * fns.c: Move coding.h.
27623 (Qcodeset, Qdays, Qmonths): New.
27624 (concat): Use CHARACTERP instead of INTEGERP.
27625 (Flocale_codeset): Delete.
27626 (Flanginfo): New function.
27627 (syms_of_fns): Change accordingly.
27628
27629 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
27630
27631 2008-02-01 Dave Love <fx@gnu.org>
27632
27633 * casetab.c (init_casetab_once, init_casetab_once):
27634 Fix CHAR_TABLE_SET call.
27635
27636 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
27637
27638 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
27639
27640 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
27641 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
27642 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
27643
27644 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
27645
27646 * coding.c (ENCODE_DESIGNATION, decode_eol)
27647 (make_conversion_work_buffer, code_conversion_restore)
27648 (Fdefine_coding_system_internal): Convert Lisp types.
27649 (code_conversion_restore): Use EQ, not ==.
27650 (Fencode_coding_string): Fix code_convert_string call.
27651
27652 * coding.h (code_convert_region): Fix prototype.
27653
27654 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
27655
27656 * fontset.c (fontset_ref, fontset_set, fs_load_font)
27657 (Ffontset_info): Convert Lisp types.
27658
27659 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
27660
27661 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
27662
27663 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
27664
27665 * chartab.c: Include "...h", not <...h> in some cases.
27666
27667 * callproc.c (Fcall_process): Remove unused variables.
27668
27669 2008-02-01 Dave Love <fx@gnu.org>
27670
27671 * coding.c (Fset_coding_system_priority): Allow null arg list.
27672
27673 2008-02-01 Dave Love <fx@gnu.org>
27674
27675 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
27676 (Fself_insert_and_exit): Use CHARACTERP.
27677
27678 * callproc.c (Fcall_process): Remove unused vars.
27679
27680 * xterm.c (XTread_socket): Add extra dead keysyms.
27681
27682 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
27683
27684 * dispextern.h: Remove prototypes for redraw_frame,
27685 redraw_garbaged_frames.
27686
27687 * cmds.c (Fself_insert_command): Use CHARACTERP.
27688
27689 * chartab.c (make_sub_char_table): Remove unused var.
27690 (Fset_char_table_default, Fmap_char_table): Doc fix.
27691
27692 * keymap.c (access_keymap): Remove generic char code.
27693 (push_key_description): Use CHARACTERP.
27694
27695 2008-02-01 Dave Love <fx@gnu.org>
27696
27697 * charset.c: Doc fixes.
27698 (Funify_charset): Extra checking.
27699
27700 2008-02-01 Dave Love <fx@gnu.org>
27701
27702 * lread.c: Remove some unused variables.
27703 (safe_to_load_p): If safe, return the magic number version byte.
27704 (Fload): Maybe use load-with-code-conversion.
27705
27706 2008-02-01 Kenichi Handa <handa@m17n.org>
27707
27708 * category.c (Fmodify_category_entry): Don't modify the contents
27709 of category_set for characters out of the range.
27710 Avoid unnecessary modification.
27711
27712 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
27713 Vchar_unify_table. The default value of the table is now nil.
27714
27715 * character.c (syms_of_character): Setup Vchar_width_table for
27716 eight-bit-control and raw-byte chars.
27717
27718 * charset.h (enum define_charset_arg_index):
27719 Delete charset_arg_parents and add charset_arg_subset and
27720 charset_arg_superset.
27721 (enum charset_attr_index): Delete charset_parents and add
27722 charset_subset and charset_superset.
27723 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
27724 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
27725 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
27726 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
27727 (CHARSET_SUPERSET): New macros.
27728 (charset_work): Extern it.
27729 (ENCODE_CHAR): Use charset_work.
27730 (CHAR_CHARSET_P): Adjust for the change of encoder format.
27731 (map_charset_chars): Extern it.
27732
27733 * charset.c (load_charset_map): Set the default value of encoder
27734 and deunifier char-tables to nil.
27735 (map_charset_chars): Change argument. Change callers.
27736 Use map_char_table_for_charset instead of map_char_table.
27737 (Fmap_charset_chars): New optional args from_code and to_code.
27738 (Fdefine_charset_internal): Adjust for the change of
27739 `define-charset' (:parents -> :subset or :superset).
27740 (charset_work): New variable.
27741 (encode_char, syms_of_charset): Adjust for the change of
27742 Fdefine_charset_internal.
27743 (Ffind_charset_string): Setup the vector `charsets' correctly.
27744
27745 * chartab.c (sub_char_table_ref_and_range): New arg default.
27746 Fix the previous change.
27747 (char_table_ref_and_range): Adjust for the above change.
27748 (map_sub_char_table_for_charset): New function.
27749 (map_char_table_for_charset): New function.
27750
27751 * keymap.c (describe_vector): Handle a char-table directly here.
27752 (describe_char_table): Delete.
27753
27754 * lisp.h (map_charset_chars): Delete.
27755
27756 2008-02-01 Dave Love <fx@gnu.org>
27757
27758 * fns.c (count_combining): Comment out (unused).
27759 (Flocale_codeset): New.
27760 (syms_of_fns): Defsubr it.
27761
27762 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
27763 (size_t): Remove.
27764
27765 2008-02-01 Dave Love <fx@gnu.org>
27766
27767 * Makefile.in (chartab.o): Depend on charset.h.
27768
27769 2008-02-01 Kenichi Handa <handa@m17n.org>
27770
27771 * character.c (syms_of_character): Set the default value of
27772 Vprintable_chars to Qnil.
27773
27774 2008-02-01 Dave Love <fx@gnu.org>
27775
27776 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
27777
27778 2008-02-01 Kenichi Handa <handa@m17n.org>
27779
27780 * charset.c (load_charset_map): Handle the case that from < to
27781 correctly.
27782
27783 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
27784 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
27785 Pay attention to raw-8-bit chars.
27786
27787 2008-02-01 Kenichi Handa <handa@m17n.org>
27788
27789 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
27790 It is not bytecompiled now.
27791
27792 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
27793 (charset_jisx0208): New variables.
27794 (Fdefine_charset_internal): Setup them if appropriate.
27795 (init_charset_once): Initialize them to -1.
27796
27797 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
27798 (charset_jisx0208): Extern them.
27799
27800 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
27801 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
27802 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
27803 (setup_iso_safe_charsets): Fix arguments to Fassq.
27804 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
27805 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
27806 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
27807 (encode_coding_iso_2022): Change the 1st arg to
27808 ENCODE_ISO_CHARACTER to a variable.
27809
27810 2008-02-01 Kenichi Handa <handa@m17n.org>
27811
27812 * charset.h (enum define_charset_arg_index): New enums
27813 charset_arg_min_code and charset_arg_max_code.
27814 (struct charset): New member char_index_offset.
27815
27816 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
27817 Take charset->char_index_offset into account.
27818 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
27819 args[charset_arg_max_code]. Setup charset.char_index_offset.
27820 (syms_of_charset): Fix args to Fdefine_charset_internal.
27821
27822 2008-02-01 Dave Love <fx@gnu.org>
27823
27824 * coding.c (decode_coding_utf_8): Reject overlong sequences.
27825
27826 2008-02-01 Dave Love <fx@gnu.org>
27827
27828 * coding.c: Doc fixes.
27829 (Fcoding_system_aliases): Fix return value.
27830 (Qmac): Remove (duplicated) definition.
27831
27832 2008-02-01 Dave Love <fx@gnu.org>
27833
27834 * charset.c (Fcharset_priority_list, Fset_charset_priority):
27835 New functions.
27836
27837 * character.c (Fstring): Doc fix.
27838
27839 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
27840
27841 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
27842 (font-encoding-alist): Doc fix.
27843
27844 2008-02-01 Dave Love <fx@gnu.org>
27845
27846 * term.c (costs_set): Declare static, non-initialized for pcc.
27847 (encode_terminal_code): Remove unused var.
27848
27849 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
27850 for K&R.
27851
27852 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
27853
27854 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
27855 (suffixes): Move out of make_subsidiaries for K&R.
27856
27857 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
27858
27859 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
27860
27861 2008-02-01 Dave Love <fx@gnu.org>
27862
27863 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
27864
27865 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
27866
27867 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
27868
27869 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
27870
27871 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
27872
27873 2008-02-01 Kenichi Handa <handa@m17n.org>
27874
27875 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
27876 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
27877
27878 2008-02-01 Kenichi Handa <handa@m17n.org>
27879
27880 * coding.c (decode_coding_charset): Adjust for the change of
27881 Fdefine_coding_system_internal.
27882 (Fdefine_coding_system_internal): For a coding system of
27883 `charset' type, store a list of charset IDs in
27884 `charset_attr_charset_valids' element of coding attributes.
27885
27886 2008-02-01 Kenichi Handa <handa@m17n.org>
27887
27888 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
27889 (emacs_mule_char): New arg src. Delete arg `composition'.
27890 Change caller. Handle 2-byte and 3-byte charsets correctly.
27891 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
27892 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
27893 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
27894 (DECODE_EMACS_MULE_21_COMPOSITION):
27895 Call DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
27896 sequence.
27897 (decode_coding_emacs_mule): Handle composition correctly. Rewind
27898 `src' and `consumed_chars' correctly before calling emacs_mule_char.
27899 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
27900 and alt&rule composition.
27901 (decode_coding_iso_2022): Handle composition correctly.
27902 (init_coding_once): Setup emacs_mule_bytes for private charsets.
27903
27904 * charset.c (Fdefine_charset_internal): Fix bug for the case of
27905 re-defining a charset. If the charset has :emacs-mule-id, setup
27906 emacs_mule_bytes.
27907 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
27908
27909 2008-02-01 Kenichi Handa <handa@m17n.org>
27910
27911 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
27912 (encode_coding_big5, encode_coding_charset): If coding requires safe
27913 encoding, produce a character specified by
27914 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
27915
27916 2008-02-01 Dave Love <fx@gnu.org>
27917
27918 * xterm.c (XSetIMValues): Declare.
27919
27920 * process.c: Conditionally include sys/wait.h, pty.h.
27921
27922 * print.c (print_object): Fix print format for 64-bit systems.
27923
27924 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
27925
27926 * buffer.c (emacs_strerror): Declare.
27927
27928 * fontset.c (Fclear_face_cache): Declare.
27929 (accumulate_font_info): Comment-out (unused).
27930 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
27931 variables.
27932
27933 * character.h (string_escape_byte8): Declare.
27934
27935 * charset.c (load_charset_map, load_charset_map_from_file):
27936 Remove unused vars.
27937 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
27938 (Fmap_charset_chars): Doc fix.
27939
27940 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
27941 (Fset_coding_system_priority, Fset_coding_system_priority)
27942 (Fdefine_coding_system_internal): Doc fix.
27943
27944 2008-02-01 Dave Love <fx@gnu.org>
27945
27946 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
27947
27948 2008-02-01 Kenichi Handa <handa@m17n.org>
27949
27950 * character.c (string_escape_byte8): Make multibyte string with
27951 correct size.
27952
27953 * charset.c (Fmake_char): Delete unnecessary code.
27954
27955 2008-02-01 Kenichi Handa <handa@m17n.org>
27956
27957 * xfns.c (x_encode_text): Allocate coding.destination here, and
27958 call encode_coding_object with dst_object Qnil.
27959
27960 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
27961 multibyte form correctly.
27962
27963 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
27964 against Vfont_encoding_alist.
27965
27966 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
27967 handling of charset list.
27968 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
27969 (decode_coding_object): Move point to coding->dst_pos before
27970 calling post-read-conversion function.
27971 (encode_coding_object): Give correct arguments to
27972 pre-write-conversion. Ignore the return value of
27973 pre-write-conversion function. Pay attention to the case that
27974 pre-write-conversion changes the current buffer. If dst_object is
27975 Qt, even if coding->src_bytes is zero, allocate at least one byte
27976 to coding->destination.
27977
27978 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
27979
27980 * charset.c (Fmake_char): Make it more backward compatible.
27981 (Fmap_charset_chars): Fix docstring.
27982
27983 2008-02-01 Dave Love <fx@gnu.org>
27984
27985 * coding.c: Doc fixes.
27986 (Fdefine_coding_system_alias): Use names, not symbols, in
27987 coding-system-alist.
27988
27989 2008-02-01 Kenichi Handa <handa@m17n.org>
27990
27991 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
27992 of calling free_realized_face.
27993
27994 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
27995
27996 * charset.c (read_hex): Don't treat SPC as a comment starter.
27997 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
27998 (Fdecode_char): Fix typo.
27999
28000 2008-02-01 Kenichi Handa <handa@m17n.org>
28001
28002 * charset.h (struct charset): New member `code_space_mask'.
28003
28004 * coding.c (coding_set_source): Delete the local variable beg_byte.
28005 (encode_coding_charset, Fdefine_coding_system_internal):
28006 Delete the local variable charset.
28007 (Fdefine_coding_system_internal):
28008 Setup attrs[coding_attr_charset_valids] correctly.
28009
28010 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
28011 member to check if CODE is valid or not.
28012 (Fdefine_charset_internal): Initialize `code_space_mask' member.
28013 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
28014 is within the range of charset->min_code and carset->max_code.
28015
28016 2008-02-01 Dave Love <fx@gnu.org>
28017
28018 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
28019
28020 * dispextern.h (generate_ascii_font): Fix return type.
28021
28022 * xfaces.c (generate_ascii_font): Fix arg declaration.
28023
28024 * coding.c (coding_inherit_eol_type)
28025 (Fset_terminal_coding_system_internal)
28026 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
28027
28028 2008-02-01 Kenichi Handa <handa@m17n.org>
28029
28030 * coding.c (decode_coding_charset, encode_coding_charset):
28031 Handle multiple charsets correctly.
28032
28033 2008-02-01 Kenichi Handa <handa@m17n.org>
28034
28035 * search.c (boyer_moore): Fix handling of multibyte character
28036 translation.
28037
28038 * xdisp.c (display_mode_element): When the variable `elt' is
28039 changed, update `this' and `lisp_string'.
28040
28041 2008-02-01 Kenichi Handa <handa@m17n.org>
28042
28043 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
28044
28045 * callproc.c (Fcall_process): Be sure to give the current buffer
28046 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
28047
28048 * charset.c (struct charset_map_entries): New struct.
28049 (load_charset_map): Rename from parse_charset_map. New args
28050 entries and n_entries. Change caller.
28051 (load_charset_map_from_file): Rename from load_charset_map.
28052 Change caller. New arg control_flag. Call load_charset_map at
28053 the tail.
28054 (load_charset_map_from_vector): New function.
28055 (Fdefine_charset_internal): Setup charset.compact_codes_p.
28056 (encode_char): If the charset is compact, change a character index
28057 to a code point.
28058
28059 * coding.c (coding_alloc_by_making_gap): Check the case that the
28060 source and destination are the same correctly.
28061 (decode_coding_raw_text): Set coding->consumed_char and
28062 coding->consumed to 0.
28063 (produce_chars): If coding->chars_at_source is nonzero, update
28064 coding->consumed_char and coding->consumed before calling
28065 alloc_destination.
28066 (Fdefine_coding_system_alias): Register ALIAS in
28067 Vcoding_system_alist.
28068 (syms_of_coding): Define `no-conversion' coding system at the tail.
28069
28070 * fileio.c (Finsert_file_contents): Set coding_system instead of
28071 val. If the current buffer is multibyte, always call
28072 decode_coding_gap.
28073
28074 * xfaces.c (try_font_list): Give higher priority to fontset's
28075 family than face's family.
28076
28077 2008-02-01 Kenichi Handa <handa@m17n.org>
28078
28079 * callproc.c (Fcall_process): Be sure to give the current buffer
28080 to decode_coding_c_string.
28081
28082 * xfaces.c (try_font_list): Give a family specified in a fontset
28083 higher priority than a family specified in a face.
28084
28085 2008-02-01 Kenichi Handa <handa@m17n.org>
28086
28087 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
28088 Fix arguments to insert_from_buffer.
28089
28090 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
28091
28092 2008-02-01 Kenichi Handa <handa@m17n.org>
28093
28094 * coding.c (produce_chars): Set the variable `multibytep' correctly.
28095 (decode_coding_gap): Set coding->dst_multibyte correctly.
28096
28097 2008-02-01 Kenichi Handa <handa@m17n.org>
28098
28099 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
28100 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
28101 (encode_coding_utf_16): Substitute coding->default_char for
28102 non-Unicode characters.
28103 (decode_coding): Don't call record_insert here.
28104 (setup_coding_system): Initialize `surrogate' of
28105 coding->spec.utf_16 to 0.
28106 (EMIT_ONE_BYTE): Fix for multibyte case.
28107
28108 * insdel.c (insert_from_gap): Call record_insert.
28109
28110 2008-02-01 Kenichi Handa <handa@m17n.org>
28111
28112 * casefiddle.c (casify_region): Fix multibyte case.
28113
28114 * character.c (c_string_width): Add return type `int'.
28115 (char_string_with_unification): Delete arg ADVANCED.
28116
28117 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
28118 (CHAR_STRING): Adjust for the change of char_string_with_unification.
28119 (CHAR_STRING_ADVANCE): Make it do-while statement.
28120
28121 * chartab.c (sub_char_table_set_range): Optimize for the case
28122 DEPTH == 3. Add workaround code for a GCC optimization bug.
28123
28124 * charset.c (parse_charset_map): Remove an unused variable.
28125
28126 * coding.c: Delete unused variables.
28127
28128 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
28129 earlier. If inserted is zero and the coding system doesn't
28130 require flushing, don't call decode_coding_gap.
28131
28132 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
28133
28134 2008-02-01 Kenichi Handa <handa@m17n.org>
28135
28136 The following changes are for using Unicode as an internal
28137 character model, and use UTF-8 format for buffer/string
28138 representation.
28139
28140 * .gdbinit (xchartable): Adjust for the change of char table structure.
28141 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
28142
28143 * Makefile.in (obj): Add character.o and chartab.o.
28144 (lisp, shortlisp): Remove utf-8.elc.
28145 (*.o): For many files, change dependency on charset.h to
28146 character.h, and add dependency on character.h.
28147 (character.o, chartab.o): New targets.
28148
28149 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
28150 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
28151 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
28152 of "charset.h".
28153
28154 * dired.c, filelock.c: Include "character.h".
28155
28156 * alloc.c: Include "character.h" instead of "charset.h".
28157 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
28158 (syms_of_alloc): Remove defsubr for Smake_char_table.
28159
28160 * buffer.c: Include "character.h" instead of "charset.h", don't
28161 include "coding.h".
28162 (Fset_buffer_multibyte): Adjust for UTF-8.
28163
28164 * buffer.h: EXFUN Fbuffer_live_p.
28165
28166 * callproc.c: Include "character.h" instead of "charset.h".
28167 (Fcall_process): Big change for the new code-conversion APIs.
28168
28169 * casetab.c: Include "character.h" instead of "charset.h".
28170 (set_canon, set_identity, shuffle): Adjust for the new
28171 map_char_table spec.
28172 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
28173 accessing the char table structure.
28174
28175 * chartab.c: New file that implements char table.
28176
28177 * category.c: Include "character.h".
28178 (copy_category_entry): New function.
28179 (copy_category_table): Call map_char_table and copy_category_entry.
28180 (Fmake_category_table): Initialize all top-level slots.
28181 (char_category_set): New function.
28182 (modify_lower_category_set): Delete.
28183 (Fmodify_category_entry): Call char_table_ref_and_range.
28184
28185 * category.h (CATEGORY_SET): Just call char_category_set.
28186
28187 * ccl.c: Include "character.h".
28188 (Qccl, Qcclp): New variables.
28189 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
28190 it's less than 256.
28191 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
28192 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
28193 and DST type.
28194 (ccl_driver): Change types of argument, adjust code accordingly.
28195 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
28196 ccl_driver.
28197 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
28198
28199 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
28200 New members src_multibyte, dst_multibyte, consumed, and produced.
28201 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
28202 (CODING_SPEC_CCL_PROGRAM): New macro.
28203 (ccl_driver): Update prototype.
28204 (Qccl, Qcclp, Fccl_program_p): Extern them.
28205 (CHECK_CCL_PROGRAM): New macro.
28206
28207 * character.c, character.h, chartab.c: New files.
28208
28209 * charset.c: Mostly re-written. Move character and multibyte sequence
28210 handling codes to character.c.
28211
28212 * charset.h: Mostly re-written. Move character and multibyte sequence
28213 handling codes to character.h.
28214
28215 * coding.c, coding.h: Mostly re-written.
28216
28217 * composite.c: Include "character.h" instead of "charset.h".
28218 (CHAR_WIDTH): Move to character.h.
28219 (HASH_KEY, HASH_VALUE): Delete.
28220
28221 * composite.h (enum composition_method): Change order of enumeration
28222 symbols.
28223
28224 * data.c: Include "character.h" instead of "charset.h".
28225 (Faref): Call CHAR_TABLE_REF for a char table.
28226 (Faset): Call CHAR_TABLE_SET for a char table.
28227
28228 * dispextern.h (free_realized_face, check_face_attribytes)
28229 (generate_ascii_font): Extern them.
28230 (free_realized_multibyte_face): Delete extern.
28231
28232 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
28233 table structure.
28234
28235 * editfns.c: Include "character.h" instead of "charset.h".
28236 (Fchar_to_string): Always call CHAR_STRING.
28237
28238 * emacs.c (main): Call init_charset_once, init_charset,
28239 syms_of_chartab, and syms_of_character.
28240
28241 * fileio.c: Include "character.h" instead of "charset.h".
28242 (Finsert_file_contents): Big change for the new code-conversion API.
28243 (choose_write_coding_system, Fwrite_region): Likewise.
28244 (build_annotations_2): Delete.
28245 (e_write): Big change for the new code-conversion API.
28246
28247 * fns.c: Include "character.h" instead of "charset.h".
28248 (copy_sub_char_table): Move to chartab.c.
28249 (Fcopy_sequence): Call copy_char_table for a char table.
28250 (concat): Delete codes calling count_multibyte.
28251 (string_char_to_byte, string_byte_to_char): Adjust for the new
28252 multibyte form.
28253 (internal_equal): Adjust for the change of char table structure.
28254 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
28255 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
28256 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
28257 (char_table_translate, optimize_sub_char_table)
28258 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
28259 chartab.c.
28260 (char_table_ref_and_index): Delete.
28261 (HASH_KEY, HASH_VALUE): Move to lisp.h.
28262 (Fmd5): Call preferred_coding_system instead of accessing
28263 Vcoding_category_list. Adjust for the new code-conversion API.
28264 (syms_of_fns): Move defsubr for char table related functions to
28265 chartab.c.
28266
28267 * fontset.c: Mostly re-written.
28268
28269 * fontset.h (struct font_info): Change type of the member encoding_type.
28270 (enum FONT_SPEC_INDEX): New enum.
28271 (fontset_font_pattern, fs_load_font): Update prototype.
28272 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
28273
28274 * indent.c: Include "character.h" instead of "charset.h".
28275 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
28276
28277 * insdel.c: Include "character.h" instead of "charset.h".
28278 (copy_text): Don't refer to Vnonascii_translation_table.
28279 (insert_from_gap): New function.
28280
28281 * keyboard.c: Include "character.h" instead of "charset.h".
28282 (command_loop_1): Never call direct_output_forward_char before
28283 a non-ASCII character.
28284 (read_char): If Vkeyboard_translate_table is a char table, always
28285 translate a character.
28286
28287 * keymap.c: Include "character.h".
28288 (store_in_keymap): Handle the case that IDX is a cons.
28289 (Fdefine_key): Handle the case that KEY is a cons and the car part
28290 is also a cons (range).
28291 (push_key_description): Adjust for the new character code.
28292 (describe_vector): Call describe_char_table for a char table.
28293 (describe_char_table): New function.
28294
28295 * keymap.h (describe_char_table): Extern it.
28296
28297 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
28298 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
28299 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
28300 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
28301 Delete.
28302 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
28303 structure.
28304 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
28305 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
28306 (CHARTAB_SIZE_BITS_3): New macros.
28307 (chartab_size): Extern it.
28308 (struct Lisp_Char_Table): Re-design.
28309 (struct Lisp_Sub_Char_Table): New structure.
28310 (HASH_KEY, HASH_VALUE): Move from fns.c.
28311 (CHARACTERBITS): Define as 22.
28312 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
28313 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
28314 (GC_SUB_CHAR_TABLE_P): New macro.
28315 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
28316 (code_convert_string_norecord): Delete extern.
28317 (init_character_once, syms_of_character, init_charset)
28318 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
28319
28320 * lread.c: Include "character.h".
28321 (read_multibyte): New arg NBYTES.
28322 (read_escape): Change the meaning of returned *BYTEREP.
28323 (to_multibyte): Delete.
28324 (read1): Adjust the handling of char table and string.
28325
28326 * print.c: Include "character.h" instead of "charset.h".
28327 (print_string): Convert 8-bit raw bytes to octal form by
28328 string_escape_byte8.
28329 (print_object): Adjust for the new multibyte form. Print 8-bit
28330 raw bytes always in octal form. Handle sub char table correctly.
28331
28332 * process.c: Include "character.h" instead of "charset.h".
28333 (read_process_output, send_process): Adjust for the new
28334 code-conversion API.
28335
28336 * puresize.h (BASE_PURESIZE): Increase.
28337
28338 * regex.c: Include "character.h" instead of "charset.h".
28339 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
28340 (regex_compile): Accept a range whose starting and ending
28341 character have different leading bytes.
28342 (analyse_first): Adjust for the above change.
28343
28344 * search.c: Include "character.h" instead of "charset.h".
28345 (search_buffer, boyer_moore): Adjust for the new multibyte form.
28346 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
28347
28348 * syntax.c: Include "character.h" instead of "charset.h".
28349 (syntax_parent_lookup): Delete.
28350 (Fmodify_syntax_entry): Accept a cons as CHAR.
28351 (skip_chars): Adjust for the new multibyte form.
28352 (init_syntax_once): Call char_table_set_range instead of directly
28353 accessing the structure of a char table.
28354
28355 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
28356 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
28357 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
28358 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
28359
28360 * term.c: Include "buffer.h" and "character.h".
28361 (encode_terminal_code, write_glyphs): Adjust for the new
28362 code-conversion API.
28363 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
28364
28365 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
28366
28367 * xdisp.c: Include "character.h".
28368 (get_next_display_element): Adjust for the new multibyte form.
28369 (disp_char_vector): Adjust for the new char table structure.
28370 (decode_mode_spec_coding): Adjust for the new structure of
28371 coding system.
28372 (decode_mode_spec): Adjust for the new code-conversion API.
28373
28374 * xfaces.c: Include "character.h" instead of "charset.h".
28375 (load_face_font): Adjust for the change of choose_face_font and
28376 FS_LOAD_FONT.
28377 (generate_ascii_font): New function.
28378 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
28379 (set_font_frame_param): Adjust for the change of choose_face_font.
28380 (free_realized_face): Make it public.
28381 (free_realized_faces_for_fontset): Rename from
28382 free_realized_multibyte_face. Free also faces realized for ASCII.
28383 (choose_face_font): Change arguments. Adjust for the change of
28384 fontset_font_pattern and FS_LOAD_FONT.
28385
28386 * xfns.c: Include "character.h".
28387 (x_encode_text): Adjust for the new code-conversion API.
28388
28389 * xselect.c: Don't include "charset.h".
28390 (selection_data_to_lisp_data): Adjust for the new code conversion API.
28391
28392 * xterm.c: Include "character.h".
28393 (x_encode_char): New argument CHARSET. Change caller.
28394 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
28395 Call ENCODE_CHAR instead of SPLIT_CHAR.
28396 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
28397 CHAR_WIDTH instead of CHARSET_WIDTH.
28398 (XTread_socket): Adjust for the new code-conversion API.
28399 (x_new_font): Adjust for the change of FS_LOAD_FONT.
28400 (x_load_font): Adjust for the change of struct font.
28401
28402 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
28403
28404 * xfaces.c (face_at_buffer_position): Remove unused vars.
28405
28406 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
28407
28408 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
28409 Fix overflow checking.
28410
28411 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
28412
28413 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
28414 Cancel previous change.
28415
28416 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
28417
28418 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
28419 ccl->eight_bit_control. Fix check for buffer overflow.
28420 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
28421 (ccl_driver): Initialize extra_bytes to 0.
28422
28423 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
28424
28425 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
28426 return it ORed with ctrl_modifier.
28427
28428 2008-01-29 Miles Bader <miles@gnu.org>
28429
28430 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
28431
28432 2008-01-28 Jason Rumney <jasonr@gnu.org>
28433
28434 * w32.c (stat): Don't double check for networked drive.
28435
28436 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
28437
28438 * window.c (run_window_configuration_change_hook): New function.
28439 Code extracted from set_window_buffer. Set the selected frame.
28440 (set_window_buffer): Use it.
28441 * window.h (run_window_configuration_change_hook): Declare.
28442 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
28443
28444 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
28445
28446 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
28447
28448 * Makefile.in: Remove references to unused macros.
28449
28450 2008-01-26 Eli Zaretskii <eliz@gnu.org>
28451
28452 * w32.c (g_b_init_get_sid_sub_authority)
28453 (g_b_init_get_sid_sub_authority_count): New static variables.
28454 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
28455 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
28456 (init_user_info): Use them to retrieve uid and gid.
28457 Use 500/513, the Windows defaults, as Administrator's uid/gid.
28458 (fstat): Use pw_uid and pw_gid from the_passwd structure for
28459 st_uid and st_gid of the file.
28460
28461 2008-01-26 Jason Rumney <jasonr@gnu.org>
28462
28463 * w32.c (logon_network_drive): New function.
28464 (stat): Use it.
28465
28466 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
28467
28468 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
28469 invisible text covered with an ellipsis.
28470
28471 2008-01-25 Richard Stallman <rms@gnu.org>
28472
28473 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
28474 jump back to beginning. Move some other initializations after that.
28475 (Qwindow_text_change_functions, Vwindow_text_change_functions):
28476 New variables.
28477 (syms_of_xdisp): Init them.
28478
28479 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
28480
28481 * buffer.c (reset_buffer_local_variables):
28482 Implement `permanent-local-hook'.
28483 (Qpermanent_local_hook): New variable.
28484 (syms_of_buffer): Init and staticpro it.
28485
28486 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
28487
28488 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
28489
28490 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
28491
28492 * fns.c (Fclrhash): Return TABLE.
28493
28494 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28495
28496 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
28497 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
28498 is set even without positional changes.
28499 (x_scroll_bar_clear): Set bar->redraw_needed_p.
28500
28501 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
28502
28503 2008-01-23 Jason Rumney <jasonr@gnu.org>
28504
28505 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
28506
28507 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
28508 the unicode range available in MULE by locale-coding-system.
28509 Improve dbcs lead byte detection. Set event timestamp and modifiers
28510 earlier.
28511
28512 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28513
28514 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
28515 [MAC_OSX] (init_mac_osx_environment): Initialize it.
28516 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
28517 when used on child processes.
28518
28519 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
28520
28521 * dbusbind.c (Fdbus_method_return_internal): Rename from
28522 Fdbus_method_return.
28523 (Fdbus_unregister_object): Move to dbus.el.
28524 (Fdbus_call_method, Fdbus_method_return_internal)
28525 (Fdbus_send_signal): Improve debug messages.
28526
28527 2008-01-20 Martin Rudalics <rudalics@gmx.at>
28528
28529 * undo.c (undo_inhibit_record_point): New variable.
28530 (syms_of_undo): Initialize it.
28531 (record_point): Don't record point when undo_inhibit_record_point
28532 is set.
28533
28534 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
28535
28536 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
28537
28538 * xdisp.c (Qauto_hscroll_mode): New var.
28539 (syms_of_xdisp): Initialize it.
28540 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
28541 window's buffer.
28542 (hscroll_windows): Don't check automatic_hscrolling_p here.
28543
28544 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
28545 vscroll if we're setting window-buffer to the value it already has.
28546
28547 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
28548
28549 * m/intel386.h: Remove references to XENIX.
28550
28551 2008-01-17 Andreas Schwab <schwab@suse.de>
28552
28553 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
28554 instead of HAVE_X86_64_LIB64_DIR.
28555 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
28556
28557 2008-01-17 Glenn Morris <rgm@gnu.org>
28558
28559 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
28560 to HAVE_X86_64_LIB64_DIR.
28561
28562 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
28563
28564 * s/irix3-3.h:
28565 * s/irix4-0.h:
28566 * s/386-ix.h:
28567 * s/domain.h:
28568 * s/hpux9-x11r4.h:
28569 * s/hpux9shxr4.h: Remove files for systems no longer supported.
28570
28571 * sysdep.c: Remove code containing references to symbols defined
28572 by unsupported systems.
28573
28574 2008-01-16 Glenn Morris <rgm@gnu.org>
28575
28576 * coding.c (select-safe-coding-system-function): Doc fix.
28577
28578 2008-01-15 Glenn Morris <rgm@gnu.org>
28579
28580 * config.in: Revert 2008-01-13 change: this is a generated file.
28581
28582 2008-01-13 Tom Tromey <tromey@redhat.com>
28583
28584 * lisp.h: Fix typo.
28585
28586 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
28587
28588 * m/sequent-ptx.h:
28589 * m/sequent.h:
28590 * s/ptx.h:
28591 * s/ptx4-2.h:
28592 * s/ptx4.h: Remove files for systems no longer supported.
28593
28594 * callproc.c (Fcall_process): Fix previous change.
28595
28596 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
28597
28598 * unexsunos4.c: Remove file, system not supported anymore.
28599
28600 * m/mips.h:
28601 * m/intel386.h:
28602 * callproc.c:
28603 * config.in:
28604 * ecrt0.c:
28605 * emacs.c:
28606 * fileio.c:
28607 * frame.c:
28608 * getpagesize.h:
28609 * keyboard.c:
28610 * lread.c:
28611 * process.c:
28612 * puresize.h:
28613 * sysdep.c:
28614 * systty.h:
28615 * syswait.h:
28616 * unexec.c:
28617 * xdisp.c:
28618 * alloc.c: Remove code containing references to symbols defined by
28619 unsupported systems.
28620
28621 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
28622
28623 * coding.c (detect_coding_mask): Fix previous change.
28624
28625 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
28626
28627 * coding.c (detect_coding_iso2022): New arg
28628 latin_extra_code_state. Allow Latin extra codes only
28629 when *latin_extra_code_state is nonzero.
28630 (detect_coding_mask): If there is a NULL byte, detect the encoding
28631 as UTF-16 or binary. If Latin extra codes exist, detect the
28632 encoding as ISO-2022 only when there's no other proper encoding is
28633 found.
28634
28635 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28636
28637 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
28638 #ifdef MAC_OS.
28639
28640 2008-01-08 Richard Stallman <rms@gnu.org>
28641
28642 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
28643
28644 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
28645
28646 * keyboard.c (parse_menu_item): Don't enclose key bindings on
28647 menu bar in parentheses.
28648
28649 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
28650
28651 * m/7300.h:
28652 * m/acorn.h:
28653 * m/alliant-2800.h:
28654 * m/alliant.h:
28655 * m/alliant1.h:
28656 * m/alliant4.h:
28657 * m/altos.h:
28658 * m/amdahl.h:
28659 * m/apollo.h:
28660 * m/att3b.h:
28661 * m/aviion-intel.h:
28662 * m/aviion.h:
28663 * m/celerity.h:
28664 * m/clipper.h:
28665 * m/cnvrgnt.h:
28666 * m/convex.h:
28667 * m/cydra5.h:
28668 * m/delta88k.h:
28669 * m/dpx2.h:
28670 * m/dual.h:
28671 * m/elxsi.h:
28672 * m/f301.h:
28673 * m/gould-np1.h:
28674 * m/gould.h:
28675 * m/i860.h:
28676 * m/ibmps2-aix.h:
28677 * m/ibmrt-aix.h:
28678 * m/ibmrt.h:
28679 * m/irist.h:
28680 * m/is386.h:
28681 * m/isi-ov.h:
28682 * m/mega68.h:
28683 * m/mg1.h:
28684 * m/news-r6.h:
28685 * m/news-risc.h:
28686 * m/news.h:
28687 * m/nh3000.h:
28688 * m/nh4000.h:
28689 * m/ns16000.h:
28690 * m/ns32000.h:
28691 * m/nu.h:
28692 * m/orion.h:
28693 * m/orion105.h:
28694 * m/paragon.h:
28695 * m/pfa50.h:
28696 * m/plexus.h:
28697 * m/pyramid.h:
28698 * m/pyrmips.h:
28699 * m/sh3el.h:
28700 * m/sps7.h:
28701 * m/sr2k.h:
28702 * m/stride.h:
28703 * m/sun1.h:
28704 * m/sun2.h:
28705 * m/sun3-68881.h:
28706 * m/sun3-fpa.h:
28707 * m/sun3-soft.h:
28708 * m/sun3.h:
28709 * m/sun386.h:
28710 * m/symmetry.h:
28711 * m/tad68k.h:
28712 * m/tahoe.h:
28713 * m/targon31.h:
28714 * m/tek4300.h:
28715 * m/tekxd88.h:
28716 * m/tower32.h:
28717 * m/tower32v3.h:
28718 * m/ustation.h:
28719 * m/wicat.h:
28720 * m/xps100.h:
28721 * s/cxux.h:
28722 * s/cxux7.h:
28723 * s/dgux.h:
28724 * s/dgux4.h:
28725 * s/dgux5-4-3.h:
28726 * s/dgux5-4r2.h:
28727 * s/esix.h:
28728 * s/esix5r4.h:
28729 * s/hiuxmpp.h:
28730 * s/hiuxwe2.h:
28731 * s/iris3-5.h:
28732 * s/iris3-6.h:
28733 * s/isc2-2.h:
28734 * s/isc3-0.h:
28735 * s/isc4-0.h:
28736 * s/isc4-1.h:
28737 * s/newsos5.h:
28738 * s/newsos6.h:
28739 * s/osf1.h:
28740 * s/osf5-0.h:
28741 * s/riscix1-1.h:
28742 * s/riscix12.h:
28743 * s/sco4.h:
28744 * s/sco5.h:
28745 * s/sunos4-0.h:
28746 * s/sunos4-1.h:
28747 * s/sunos413.h:
28748 * s/sunos4shr.h:
28749 * s/umax.h:
28750 * s/unipl5-2.h:
28751 * s/xenix.h:
28752 * cxux-crt0.s:
28753 * unexapollo.c:
28754 * unexconvex.c:
28755 * unexenix.c:
28756 * unexsni.c: Remove files for systems no longer supported.
28757
28758 * m/intel386.h: Remove references to unsupported systems.
28759
28760 * w32.c (get_emacs_configuration): Remove reference to i860.
28761
28762 * sysdep.c: Remove dead code.
28763
28764 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
28765
28766 * s/rtu.h:
28767 * m/masscomp.h: Remove files. Platform is obsolete.
28768
28769 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
28770
28771 * dbusbind.c (Fdbus_method_return): New function.
28772 (xd_read_message): Add the serial number to the event.
28773 (Fdbus_register_method): Activate the function.
28774
28775 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
28776
28777 * keyboard.c (read_key_sequence): Fix typo.
28778
28779 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
28780
28781 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
28782 (xd_signature, xd_append_arg): Handle element type detection for
28783 empty arrays.
28784 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
28785 SDATA () calls; this must be solved more general.
28786 (Fdbus_register_signal): Use SBYTES instead of strlen.
28787
28788 2008-01-03 Magnus Henoch <magnus@zemdatav>
28789
28790 * dbusbind.c (xd_append_arg): Use unsigned char instead of
28791 unsigned int for byte values (necessary for big-endian platform).
28792 (Fdbus_call_method): Handle the case of no returned arguments.
28793
28794 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
28795
28796 * dbusbind.c (xd_read_message): Use non-static input_event struct.
28797
28798 2007-12-31 Magnus Henoch <mange@freemail.hu>
28799
28800 * dbusbind.c (xd_signature): Signature of variant is just "v".
28801
28802 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
28803
28804 * dbusbind.c: Fix several errors and compiler warnings.
28805 Reported by Tom Tromey <tromey@redhat.com>.
28806 (XD_ERROR, XD_DEBUG_MESSAGE)
28807 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
28808 (xd_append_arg): Part for basic D-Bus types rewritten.
28809 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
28810 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
28811 appropriate.
28812 (xd_read_message): Return Qnil. Don't signal an error; it is not
28813 useful during event reading.
28814 (Fdbus_register_signal): Signal an error if the check for
28815 FUNCTIONP fails.
28816 (Fdbus_register_method): New function. The implementation is not
28817 complete, the call of the function signals an error therefore.
28818 (Fdbus_unregister_object): New function, renamed from
28819 Fdbus_unregister_signal. The initial check signals an error, if
28820 the object is not well formed.
28821
28822 2007-12-30 Richard Stallman <rms@gnu.org>
28823
28824 * textprop.c (get_char_property_and_overlay):
28825 Signal error if POSITION is out of range in a buffer.
28826
28827 2007-12-29 Martin Rudalics <rudalics@gmx.at>
28828
28829 * w32fns.c (Fx_create_frame): Make copy of frame parameters
28830 because the original parameters are in pure storage now.
28831
28832 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28833
28834 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
28835
28836 2007-12-22 Eli Zaretskii <eliz@gnu.org>
28837
28838 * callint.c (syms_of_callint) <command-history>: Add reference to
28839 history-length in the doc string.
28840
28841 2007-12-17 Jason Rumney <jasonr@gnu.org>
28842
28843 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
28844 before passing as wParam.
28845
28846 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
28847
28848 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
28849 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
28850 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
28851 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
28852 as number.
28853 (Fdbus_call_method): Fix docstring.
28854
28855 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
28856
28857 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
28858 New macros.
28859 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
28860 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
28861 Simplify.
28862 (xd_signature): New function.
28863 (xd_append_arg): Compute also signatures. Major rewrite.
28864 (xd_retrieve_arg): Make debug messages friendly.
28865 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
28866 Check for signatures of arguments.
28867
28868 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
28869
28870 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
28871 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
28872 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
28873 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
28874 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
28875 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
28876 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
28877 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
28878 (xd_retrieve_value): Remove. Functionality included in ...
28879 (xd_append_arg): New function.
28880 (Fdbus_call_method, Fdbus_send_signal): Apply it.
28881
28882 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
28883
28884 * dbusbind.c (top): Include <stdio.h>.
28885 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
28886 dbus_message_new_method_call and dbus_message_new_signal.
28887 (Fdbus_register_signal): Rename unique_name to uname.
28888 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
28889 non-existing unique name. Fix typos in matching rule. Return an
28890 object which is useful in Fdbus_unregister_signal.
28891 (Fdbus_unregister_signal): Reimplementation, in order to remove
28892 only the corresponding entry.
28893 (Vdbus_registered_functions_table): Change the order of entries.
28894 Apply these changes in xd_read_message and Fdbus_register_signal.
28895
28896 2007-12-16 Andreas Schwab <schwab@suse.de>
28897
28898 * fileio.c (Finsert_file_contents): Fix overflow check to not
28899 depend on undefined integer overflow.
28900
28901 2007-12-14 Jason Rumney <jasonr@gnu.org>
28902
28903 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
28904 for characters above 127.
28905
28906 2007-12-13 Jason Rumney <jasonr@gnu.org>
28907
28908 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
28909 before dereferencing array.
28910 (lookup_vk_code): Remove zero comparison.
28911
28912 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
28913
28914 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
28915 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
28916 Use `unsigned int' instead of `uint'.
28917 (xd_read_message, Fdbus_register_signal): Split expressions into
28918 multiple lines before operators "&&" and "||", according to the
28919 GNU Coding Standards.
28920
28921 2007-12-14 Eli Zaretskii <eliz@gnu.org>
28922
28923 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
28924
28925 2007-12-12 Juri Linkov <juri@jurta.org>
28926
28927 * buffer.c (Frename_buffer): In interactive spec replace
28928 `read-buffer' with `read-string' that uses `buffer-name-history'
28929 as history, and the current buffer's name as default.
28930
28931 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
28932
28933 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
28934 manipulating the backtrace manually.
28935 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
28936 (struct backtrace, backtrace_list): Remove.
28937 (command_loop_1): Remove dead var `no_direct'.
28938
28939 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
28940 preserve non-built-in buffer-local variables.
28941 (Fkill_all_local_variables): Don't re-create&re-set permanent
28942 buffer-local variables.
28943
28944 2007-12-09 Juri Linkov <juri@jurta.org>
28945
28946 * buffer.c (Frename_buffer): Change interactive spec from "s" to
28947 Lisp code that uses `read-buffer' with current buffer as default.
28948
28949 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
28950
28951 * dbusbind.c (xd_read_message): Generate an event for every
28952 registered handler. There might be several handlers registered
28953 for the same signal.
28954 (Fdbus_register_signal): Don't overwrite a registration for the
28955 same signal. Add a new registration if handlers are different.
28956 (Vdbus_registered_functions_table): Rework doc string.
28957
28958 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
28959
28960 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
28961 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
28962 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
28963 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
28964 Unify argument lists.
28965 (xd_read_message, Fdbus_register_signal): Reorder and extend event
28966 arguments and hash table keys. Use unique name for service.
28967 (Fdbus_unregister_signal): Remove checks.
28968 (Vdbus_registered_functions_table): Fix doc string.
28969
28970 2007-12-05 Magnus Henoch <mange@freemail.hu>
28971
28972 * process.c (make_process): Initialize pty_flag to 0.
28973
28974 2007-12-05 Jason Rumney <jasonr@gnu.org>
28975
28976 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
28977 specified XBMs.
28978
28979 2007-12-05 Richard Stallman <rms@gnu.org>
28980
28981 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
28982
28983 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28984
28985 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
28986 New variable.
28987 (mac_try_close_socket) [MAC_OSX]: New function.
28988 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
28989 Update cfsockets_for_select. Replace invalid CFRunLoop source.
28990
28991 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
28992 Use mac_try_close_socket.
28993
28994 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28995
28996 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
28997 reloc_base.
28998 (copy_dysymtab): Compute relocation base here.
28999 (rebase_reloc_address) [__ppc64__]: New function.
29000 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
29001 changed.
29002
29003 2007-12-05 Jason Rumney <jasonr@gnu.org>
29004
29005 * w32proc.c (sys_spawnve): Quote args with wildcards.
29006
29007 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29008
29009 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
29010 __objc_* sections.
29011 (unrelocate) [_LP64]: Set relocation base to address of data segment.
29012
29013 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
29014
29015 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
29016 Move check for Vdbus_registered_functions_table to
29017 xd_read_queued_messages.
29018 (xd_read_queued_messages): Protect xd_read_message calls by
29019 internal_condition_case_1.
29020
29021 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
29022
29023 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
29024 Qdbus_system_bus and Qdbus_session_bus, respectively.
29025 (Vdbus_intern_symbols): Remove.
29026 (Vdbus_registered_functions_table): New hash table.
29027 (XD_SYMBOL_INTERN_SYMBOL): Remove.
29028 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
29029 Rewrite in order to manage registered functions by hash table
29030 Vdbus_registered_functions_table.
29031
29032 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
29033
29034 * xterm.c: Update URL to Window Manager Specification in comment.
29035
29036 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
29037
29038 * config.in (HAVE_DBUS): Add.
29039
29040 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
29041 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
29042 (obj): Add $(DBUS_OBJ).
29043 (LIBES): Add $(DBUS_LIBS).
29044 (dbusbind.o): New target.
29045
29046 * dbusbind.c: New file.
29047
29048 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
29049
29050 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
29051 (Qdbus_event): New Lisp symbol.
29052 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
29053 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
29054 (keys_of_keyboard): Define dbus-event.
29055
29056 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
29057
29058 2007-12-01 Richard Stallman <rms@gnu.org>
29059
29060 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
29061
29062 2007-11-30 Jason Rumney <jasonr@gnu.org>
29063
29064 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
29065 (w32con_reset_terminal_modes): Clear screen buffer.
29066 (w32_face_attributes): Don't use color indexes that are out of range.
29067 Only reverse the default colors.
29068
29069 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
29070 WINDOWSNT.
29071
29072 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
29073
29074 2007-11-29 Jason Rumney <jasonr@gnu.org>
29075
29076 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
29077 (w32_face_attributes): Use Vtty_defined_color_alist to determine
29078 if the terminal colors are initialized.
29079 (unspecified_fg, unspecified_bg): Remove unused declarations.
29080
29081 2007-11-29 Andreas Schwab <schwab@suse.de>
29082
29083 * keyboard.c (apply_modifiers): Fix typo.
29084
29085 2007-11-29 Richard Stallman <rms@gnu.org>
29086
29087 * keymap.c (Fcurrent_local_map): Doc fix.
29088
29089 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
29090
29091 * s/gnu-kfreebsd.h: New file.
29092
29093 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
29094
29095 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
29096 Don't cast redundantly.
29097
29098 * keyboard.c (KEY_TO_CHAR): New macro.
29099 (parse_modifiers, apply_modifiers): Accept integer arguments.
29100 (read_key_sequence): Use them to unify the "shift->unshift" mapping
29101 for chars and symbol keys.
29102 After doing such remapping, apply function-key-map again.
29103
29104 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
29105
29106 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
29107 compiled anymore.
29108
29109 2007-11-26 Andreas Schwab <schwab@suse.de>
29110
29111 * process.c (list_processes_1): Fix indentation level of the
29112 command column.
29113
29114 2007-11-23 Andreas Schwab <schwab@suse.de>
29115
29116 * editfns.c (Fformat): Handle %c specially since it requires the
29117 argument to be of type int.
29118
29119 2007-11-23 Markus Triska <markus.triska@gmx.at>
29120
29121 * emacs.c (main): Call init_editfns before init_process, since
29122 init_process sets Vprocess_connection_type depending on OS release.
29123
29124 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
29125
29126 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
29127 (find_symbol_value): Use do_symval_forwarding.
29128
29129 * data.c (set_internal): Set the value in the `cons-cell' (for
29130 Buffer_Local_values) not only for frame-local variables.
29131
29132 2007-11-22 Andreas Schwab <schwab@suse.de>
29133
29134 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
29135 values to sprintf.
29136 * keymap.c (Fsingle_key_description): Likewise.
29137 * print.c (print_object): Likewise.
29138
29139 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
29140
29141 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
29142 file for image is nil.
29143
29144 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
29145
29146 * term.c: Include stdarg.h.
29147 (fatal): Implement using varargs.
29148 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
29149
29150 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
29151
29152 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
29153 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
29154 Update call to buffer_slot_type_mismatch.
29155 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
29156 (buffer_slot_type_mismatch): Update.
29157 * buffer.c (buffer_local_types): Remove.
29158 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
29159 (defvar_per_buffer): Set the type in the buffer_objfwd.
29160
29161 2007-11-21 Jason Rumney <jasonr@gnu.org>
29162
29163 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
29164 CreateFileMapping returns NULL on failure.
29165
29166 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
29167
29168 * search.c (Fset_match_data): Remove the `evaporate' feature.
29169 (unwind_set_match_data): Don't use the `evaporate' feature.
29170
29171 2007-11-21 Jason Rumney <jasonr@gnu.org>
29172
29173 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
29174
29175 * w32console.c (w32con_write_glyphs): Remove unused variables.
29176
29177 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
29178
29179 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
29180
29181 * s/darwin.h (MULTI_KBOARD): Remove.
29182
29183 * macfns.c (x_create_tip_frame, Fx_create_frame)
29184 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
29185
29186 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
29187
29188 * buffer.c (Fbuffer_local_value): Remove redundant test.
29189 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
29190 than in `current-buffer' to match the comment.
29191 Do the swap using swap_in_global_binding.
29192
29193 * data.c (store_symval_forwarding, set_internal):
29194 * eval.c (specbind): Remove dead code.
29195
29196 * coding.c (detect_coding, Fupdate_coding_systems_internal):
29197 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
29198 Since we do not want to see internal Lisp_*fwd objects here.
29199
29200 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
29201
29202 * sysdep.c (init_system_name): Use getaddrinfo if available.
29203
29204 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
29205 (x_scroll_bar_note_movement): start, end, with, height in struct
29206 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
29207
29208 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
29209
29210 * puresize.h (BASE_PURESIZE): Increase to 1190000.
29211
29212 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
29213
29214 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
29215 This undoes Richard's change of 14-Oct-2002.
29216
29217 * alloc.c (allocate_other_vector):
29218 * lisp.h (allocate_other_vector): Remove.
29219
29220 * window.c (struct save_window_data): Move non-lisp data to the end
29221 and make it `int' rather than Lisp_Object.
29222 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
29223 Done wrap/unwrap integer values.
29224 (Fset_window_configuration, compare_window_configurations):
29225 Update use of fields to their new types.
29226
29227 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
29228 Turn integer fields into `int'. Merge x_window_low and x_window_high.
29229 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
29230 (SET_SCROLL_BAR_X_WINDOW): Remove.
29231 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
29232 Access the new x_window field directly.
29233 * xterm.c (x_scroll_bar_create): Use a pseudovector.
29234 Don't wrap/unwrap integers into Lisp_Objects.
29235 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
29236 (x_scroll_bar_report_motion):
29237 Don't wrap/unwrap integers into Lisp_Objects.
29238 (x_term_init): Use SDATA.
29239 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
29240 (x_scroll_bar_set_handle, x_scroll_bar_remove)
29241 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
29242 (x_scroll_bar_report_motion, x_scroll_bar_clear):
29243 * xfns.c (x_set_background_color):
29244 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
29245 Access the new x_window field directly.
29246
29247 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
29248 (allocate_pseudovector): Make non-static.
29249
29250 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
29251 (allocate_pseudovector): Declare.
29252 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
29253
29254 2007-11-15 Andreas Schwab <schwab@suse.de>
29255
29256 * editfns.c (Fformat): Correctly format EMACS_INT values.
29257 Also take precision into account when formatting an integer.
29258
29259 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
29260
29261 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
29262
29263 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
29264 (syms_of_keyboard): Defsubr it.
29265
29266 * data.c (swap_in_global_binding): Fix longstanding bug where
29267 store_symval_forwarding was not called with the right second argument,
29268 thus causing objfwd-ing from being dropped.
29269
29270 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
29271
29272 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
29273 (Fx_display_pixel_height, Fx_display_planes)
29274 (Fx_display_color_cells, Fx_server_max_request_size)
29275 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
29276 (Fx_display_visual_class, Fx_display_save_under):
29277 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
29278 (Fx_display_pixel_height, Fx_display_planes)
29279 (Fx_display_color_cells, Fx_server_max_request_size)
29280 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
29281 (Fx_display_mm_height, Fx_display_mm_width)
29282 (Fx_display_backing_store, Fx_display_visual_class)
29283 (Fw32_select_font, Fx_display_save_under):
29284 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
29285 (Fx_display_pixel_height, Fx_display_planes)
29286 (Fx_display_color_cells, Fx_server_max_request_size)
29287 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
29288 (Fx_display_save_under): Fix typos in docstrings.
29289
29290 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
29291
29292 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
29293 corresponding to deleted entries; they are an implementation detail.
29294 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
29295 Remove variables.
29296 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
29297 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
29298 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
29299 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
29300 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
29301 (Fw32_define_rgb_color, Fw32_load_color_file)
29302 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
29303 Fix typos in docstrings.
29304 (Fx_server_version): Reflow docstring.
29305 (Fw32_shell_execute): Doc fixes.
29306
29307 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
29308
29309 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
29310 if w32_parse_hot_key returned nil.
29311
29312 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
29313
29314 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
29315
29316 2007-11-09 Jason Rumney <jasonr@gnu.org>
29317
29318 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
29319
29320 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
29321
29322 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
29323 Remove W32_SCROLL_BAR_CLICK_EVENT.
29324
29325 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
29326 Add MULTIMEDIA_KEY_EVENT.
29327
29328 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
29329 (lispy_multimedia_keys) [WINDOWSNT]: New array.
29330 (make_lispy_event) [WINDOWSNT]: Use it to translate
29331 MULTIMEDIA_KEY_EVENT.
29332
29333 * w32term.h (WM_APPCOMMAND): Define if not already.
29334 (GET_APPCOMMAND_LPARAM): Likewise.
29335
29336 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
29337 WM_APPCOMMAND.
29338
29339 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
29340 (syms_of_w32fns): Export and initialize it.
29341 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
29342
29343 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
29344
29345 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
29346 twice.
29347
29348 * xdisp.c (handle_face_prop): Fix last change.
29349
29350 2007-11-09 Richard Stallman <rms@gnu.org>
29351
29352 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
29353 not just for after-strings and before-strings.
29354 Call face_for_overlay_string and pass the overlay to it.
29355 (handle_display_prop): Determine whether property came from an overlay.
29356 Pass OVERLAY arg to handle_single_display_spec.
29357 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
29358 (load_overlay_strings): Fill in it->string_overlays.
29359 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
29360
29361 * xfaces.c (face_for_overlay_string): Function renamed from
29362 face_at_buffer_position_no_overlays, and add arg OVERLAY.
29363
29364 * dispextern.h (struct it): New elt string_overlays.
29365 New elt from_overlay, also in stack.
29366 Rearrange a few elements.
29367 (face_for_overlay_string): Decl renamed from
29368 face_at_buffer_position_no_overlays, and add argument.
29369
29370 2007-11-09 Richard Stallman <rms@gnu.org>
29371
29372 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
29373 to get the base face for an overlay string.
29374
29375 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
29376
29377 * xfaces.c (face_at_buffer_position_no_overlays): New function.
29378
29379 * xdisp.c (handle_stop): Move some code out of loop.
29380
29381 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29382
29383 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
29384 Fix conversion from Lisp object to ATSUFontID.
29385
29386 2007-11-09 Jason Rumney <jasonr@gnu.org>
29387
29388 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
29389
29390 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29391
29392 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
29393 Don't assume regions are aligned to page boundary.
29394 (print_load_command_name): Add LC_UUID if defined.
29395
29396 2007-11-09 Richard Stallman <rms@gnu.org>
29397
29398 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
29399
29400 2007-11-07 Jason Rumney <jasonr@gnu.org>
29401
29402 * s/windows95.h: Remove.
29403
29404 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
29405
29406 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
29407 abort with a message on unhandled store_type values.
29408
29409 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
29410
29411 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
29412 Remove HAVE_X11R5 and HAVE_X11R4.
29413
29414 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
29415
29416 * Makefile.in: Remove references to sunfns.c and sunfns.o.
29417
29418 2007-11-01 Johan Bockgård <bojohan@gnu.org>
29419
29420 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
29421 Don't set s->stippled_p here, since it has already been set by
29422 x_set_glyph_string_gc from x_draw_glyph_string.
29423
29424 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
29425
29426 * sunfns.c: Remove file.
29427
29428 * m/sun386.h:
29429 * m/sun2.h:
29430 * m/sparc.h: Remove Sun windows code.
29431
29432 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
29433
29434 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
29435 (init_keyboard): Set current_kboard's window-system to nil.
29436 (tty_read_avail_input): Typo.
29437 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
29438
29439 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
29440
29441 * s/usg5-4.h:
29442 * s/usg5-3.h:
29443 * s/ptx.h:
29444 * m/is386.h:
29445 * m/ibmps2-aix.h:
29446 * Makefile.in: Remove all mentions of X10.
29447
29448 * dispnew.c (syms_of_display): Don't mention version 10.
29449
29450 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
29451
29452 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
29453 ($(BLD)/abbrev.$(O)): Remove.
29454
29455 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
29456
29457 Rewrite abbrev.c in Elisp.
29458 * image.c (Qcount): Don't declare as extern.
29459 (syms_of_image): Initialize and staticpro `Qcount'.
29460 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
29461 * emacs.c (main): Don't call syms_of_abbrev.
29462 * Makefile.in (obj): Remove abbrev.o.
29463 (abbrev.o): Remove.
29464 * abbrev.c: Remove.
29465
29466 2007-10-26 Martin Rudalics <rudalics@gmx.at>
29467
29468 * window.c (window_min_size_2): Don't count header-line.
29469
29470 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
29471
29472 * frame.h (struct frame): Move all bit fields after the first bit
29473 field to take advantage of the available space. Group all the
29474 chars together to reduce wasted space due to padding.
29475
29476 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
29477
29478 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
29479
29480 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
29481 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
29482 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
29483 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
29484 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
29485 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
29486 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
29487 (last_marked, mark_object_loop_halt): Make static.
29488
29489 * frame.c (syms_of_frame) <delete-frame-functions>:
29490 Fix typo in docstring.
29491
29492 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
29493
29494 * w32.c (init_environment): Fix tiny memory leak.
29495 (w32_get_resource): Remove unused variable `ok'.
29496
29497 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
29498
29499 Make `window-system' into a keyboard-local variable (rather than
29500 frame-local as done originally by multi-tty).
29501
29502 * keyboard.h (struct kboard): Add Vwindow_system.
29503 * keyboard.c (init_kboard): Set a default for Vwindow_system.
29504 (mark_kboards): Mark Vwindow_system.
29505
29506 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
29507 (init_display): Don't set the obsolete `window-system' frame-param.
29508
29509 * xterm.c (x_term_init):
29510 * w32term.c (w32_create_terminal):
29511 * term.c (init_tty): Set Vwindow_system.
29512 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
29513 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
29514
29515 * xfns.c (Fx_create_frame, x_create_tip_frame):
29516 * w32fns.c (Fx_create_frame, x_create_tip_frame):
29517 * macfns.c (Fx_create_frame):
29518 Don't set the obsolete `window-system' frame-param.
29519
29520 * frame.h (Qwindow_system): Remove.
29521 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
29522 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
29523
29524 2007-10-24 Richard Stallman <rms@gnu.org>
29525
29526 * frame.c (x_figure_window_size): For fullscreen case,
29527 set USPosition | PPosition without clobbering rest of window_prompting.
29528
29529 * keyboard.c (Fcurrent_idle_time): Doc fix.
29530
29531 * print.c (Fwith_output_to_temp_buffer): Doc fix.
29532
29533 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
29534
29535 * process.c (unwind_request_sigio): Only define if __ultrix__.
29536
29537 * callproc.c (child_setup): Remove spurious *.
29538
29539 * lisp.h (Fget_text_property): Declare.
29540 (have_menus_p): Declare it here rather than in sys-dep header files.
29541 * macterm.h (have_menus_p):
29542 * msdos.h (have_menus_p):
29543 * xterm.h (have_menus_p): Remove.
29544
29545 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
29546 (Fmake_variable_frame_local): Just check the variable's const-ness
29547 rather than checking nil or t.
29548
29549 2007-10-22 Jason Rumney <jasonr@gnu.org>
29550
29551 * w32fns.c: Include math.h.
29552 (w32_abort): Declaration moved to nt/config.nt.
29553
29554 * s/ms-w32.h (HAVE_STDLIB_H): Define.
29555 (abort): Redefinition moved to nt/config.nt.
29556
29557 * m/windowsnt.h: Remove.
29558
29559 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
29560
29561 * emacs.c (Fdump_emacs): Fix typo in message.
29562 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
29563 <installation-directory>: Reflow docstring.
29564
29565 2007-10-22 Juri Linkov <juri@jurta.org>
29566
29567 * minibuf.c: Allow minibuffer default to be a list of default values.
29568 With empty input use the first element of this list as returned default.
29569 (string_to_object)
29570 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
29571 (read_minibuf): If defalt is cons, set histstring to its car.
29572 (Fread_string): If default_value is cons, set val to its car.
29573 (Fread_buffer): If def is cons, use its car.
29574 (Fcompleting_read): If defalt is cons, set val to its car.
29575
29576 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
29577
29578 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
29579
29580 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
29581
29582 * doc.c (Fdocumentation): Check for advice in all cases.
29583
29584 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
29585
29586 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
29587
29588 2007-10-19 Richard Stallman <rms@gnu.org>
29589
29590 * doc.c (Fdocumentation): Check for and handle an advised function.
29591
29592 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
29593
29594 * process.c (Fset_process_filter): Doc fix.
29595
29596 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
29597
29598 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
29599 which caused key-translation-map to applied repeatedly (thus breaking
29600 double-mode).
29601
29602 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
29603
29604 * xselect.c (x_own_selection, x_handle_selection_clear)
29605 (x_clear_frame_selections):
29606 * w32menu.c (list_of_panes, list_of_items):
29607 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
29608 * textprop.c (validate_plist, interval_has_all_properties)
29609 (interval_has_some_properties, interval_has_some_properties_list)
29610 (add_properties, text_property_list):
29611 * process.c (Fget_buffer_process, list_processes_1, status_notify):
29612 * minibuf.c (Fassoc_string):
29613 * macselect.c (x_own_selection, x_clear_frame_selections)
29614 (Fx_disown_selection_internal):
29615 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
29616 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
29617
29618 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
29619
29620 * process.c: Link to libs for calling res_init() if available.
29621 (Fmake_network_process): Call res_init() before getaddrinfo or
29622 gethostbyname, if possible.
29623
29624 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
29625
29626 * lread.c (read1): Set pvectype for char_tables.
29627
29628 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
29629 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
29630 Add type checks.
29631 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
29632
29633 * alloc.c (free_misc): Use XMISCTYPE.
29634 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
29635
29636 2007-10-17 Glenn Morris <rgm@gnu.org>
29637
29638 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
29639 (syms_of_minibuf): Add Qcompletion_ignore_case.
29640 * dired.c (Qcompletion_ignore_case): Change to external.
29641 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
29642 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
29643 (Fread_file_name): Use it rather than intern'ing.
29644
29645 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
29646 (Fread_coding_system): Ignore case of user input.
29647
29648 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29649
29650 * xdisp.c (handle_display_prop): Ignore display specs after
29651 replacing one when string text is being replaced.
29652 (handle_single_display_spec): Pretend as if characters with display
29653 property haven't been consumed only when buffer text is being replaced.
29654
29655 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
29656
29657 * xfns.c (Fx_create_frame, Fx_display_list):
29658 * window.c (window_fixed_size_p, enlarge_window)
29659 (shrink_window_lowest_first):
29660 * macterm.c (init_font_name_table):
29661 * macfns.c (Fx_create_frame, Fx_display_list):
29662 * lread.c (close_load_descs):
29663 * keyboard.c (read_char_x_menu_prompt):
29664 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
29665 * coding.c (code_convert_region_unwind): Test the type of an object
29666 rather than just !NILP before extracting data from it.
29667
29668 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
29669
29670 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
29671 (XMISCANY): New macro.
29672 (XMISCTYPE): Use it.
29673 (struct Lisp_Misc_Any): New type.
29674 (union Lisp_Misc): Use it.
29675 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
29676 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
29677 (find_symbol_value, set_internal, default_value, Fset_default)
29678 (Fmake_variable_buffer_local, Fmake_local_variable)
29679 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
29680 (Flocal_variable_if_set_p, Fvariable_binding_locus):
29681 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
29682 * alloc.c (allocate_buffer): Set the size and tag.
29683 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
29684 Use XMISCANY.
29685 (die): Follow the GNU convention for error messages.
29686 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
29687 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
29688 tag any more.
29689 (set_buffer_internal_1):
29690 * frame.c (store_frame_param):
29691 * eval.c (specbind):
29692 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
29693
29694 * doc.c (Fsnarf_documentation): Simplify.
29695
29696 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
29697
29698 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
29699 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
29700
29701 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
29702
29703 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
29704
29705 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
29706
29707 * eval.c (do_autoload): Don't save autoloads.
29708
29709 * data.c (Ffset): Save autoload of the function being set.
29710
29711 2007-10-07 John Paul Wallington <jpw@pobox.com>
29712
29713 * xfns.c (x_create_tip_frame): Set the `display-type' frame
29714 parameter before setting up faces.
29715
29716 2007-10-13 Eli Zaretskii <eliz@gnu.org>
29717
29718 * ccl.c (Fregister_code_conversion_map):
29719 * keyboard.c (append_tool_bar_item): Reformat last change.
29720
29721 * lisp.h (eabs): Rename from `abs'. All callers changed.
29722
29723 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
29724
29725 * buffer.c (add_overlay_mod_hooklist):
29726 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
29727 * fontset.c (make_fontset):
29728 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
29729 (append_tool_bar_item):
29730 * macmenu.c (grow_menu_items):
29731 * w32menu.c (grow_menu_items):
29732 * xmenu.c (grow_menu_items): Use larger_vector.
29733
29734 2007-10-13 Eli Zaretskii <eliz@gnu.org>
29735
29736 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
29737 selected frame'' on MSDOS).
29738
29739 2007-10-12 Martin Rudalics <rudalics@gmx.at>
29740
29741 * frame.c (Qexplicit_name): New variable.
29742 (x_report_frame_params): Report it in parameter alist.
29743 (syms_of_frame): Intern and staticpro it.
29744
29745 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
29746
29747 * macfns.c (x_create_tip_frame): Set terminal for frame.
29748
29749 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
29750
29751 * frame.c (Qenvironment): Remove.
29752 (syms_of_frame) <Qenvironment>: Don't initialize.
29753 (Fdelete_frame): Don't treat the `environment' param specially.
29754 * frame.h (Qenvironment): Don't declare.
29755 * callproc.c (set_initial_environment): Don't set unused frame param.
29756
29757 * frame.c (Fframe_with_environment): Remove.
29758 (syms_of_frame) <Sframe_with_environment>: Don't declare.
29759
29760 * lisp.h (Fframe_with_environment): Don't declare.
29761
29762 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
29763
29764 * indent.c (indent_tabs_mode, last_known_column)
29765 (last_known_column_modified): Make static.
29766 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
29767
29768 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
29769
29770 * puresize.h (BASE_PURESIZE): Increase to 1170000.
29771
29772 2007-10-09 Jason Rumney <jasonr@gnu.org>
29773
29774 * w32term.c (x_set_window_size): Disable code that attempts to tell
29775 Lisp code about a size change before it actually happens.
29776
29777 2007-10-09 Richard Stallman <rms@gnu.org>
29778
29779 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
29780 return HANDLED_RETURN.
29781
29782 2007-10-08 Martin Rudalics <rudalics@gmx.at>
29783
29784 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
29785 when there's an unread command event.
29786
29787 * frame.c (focus_follows_mouse): Move here from frame.el to allow
29788 window autoselection act appropriately when leaving selected frame.
29789 (syms_of_frame): Initialize focus_follows_mouse.
29790 * frame.h (focus_follows_mouse): Extern it.
29791 * macterm.c (XTread_socket): When focus_follows_mouse is nil
29792 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
29793 * msdos.c (dos_rawgetc): Likewise.
29794 * w32term.c (w32_read_socket): Likewise.
29795 * xterm.c (handle_one_xevent): Likewise.
29796 * xdisp.c (syms_of_xdisp): In doc-string of
29797 mouse-autoselect-window mention focus-follows-mouse.
29798
29799 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29800
29801 * macterm.c (mac_load_query_font): Fix missing return value.
29802 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
29803 Add BLOCK_INPUT.
29804
29805 2007-10-08 Richard Stallman <rms@gnu.org>
29806
29807 * xdisp.c (get_window_cursor_type): Implement documented behavior
29808 for cursor-in-non-selected-windows = t.
29809
29810 2007-10-08 Jason Rumney <jasonr@gnu.org>
29811
29812 * w32.c (w32_get_resource): Always close registry keys.
29813
29814 2007-10-08 Jason Rumney <jasonr@gnu.org>
29815
29816 * makefile.w32-in (LIBS): Add COMCTL32.
29817
29818 * w32fns.c (globals_of_w32fns): Init common controls.
29819
29820 2007-10-08 Richard Stallman <rms@gnu.org>
29821
29822 * image.c (our_memory_buffer): Rename from omfib_buffer.
29823
29824 2007-10-08 Richard Stallman <rms@gnu.org>
29825
29826 * buffer.c (Foverlays_at): Doc fix.
29827
29828 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
29829
29830 * fns.c (Fplist_put): Preserve uneven tail data.
29831
29832 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
29833
29834 * termhooks.h (enum event_kind): Remove trailing comma.
29835
29836 * frame.h (enum): Remove trailing comma.
29837
29838 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
29839
29840 * w32proc.c (delete_child): Don't terminate threads of zombies.
29841
29842 2007-10-08 Martin Rudalics <rudalics@gmx.at>
29843
29844 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
29845
29846 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
29847 last-repeatable-command.
29848 (init_kboard): Initialize Vlast_repeatable_command.
29849 (command_loop_1): Set it to real_this_command unless that was
29850 bound to an input event.
29851 (mark_kboards): Mark it.
29852
29853 2007-10-08 Richard Stallman <rms@gnu.org>
29854
29855 * eval.c (condition-case): Doc fix.
29856
29857 2007-10-08 Masatake YAMATO <jet@gyve.org>
29858
29859 * xfaces.c (tty_supports_face_attributes_p): Fix code
29860 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
29861 was copied and not edited.
29862
29863 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
29864
29865 Add new `input-decode-map' keymap and use it for terminal
29866 escape sequences.
29867 * keyboard.h (struct kboard): Add Vinput_decode_map.
29868 Remove Vlocal_key_translation_map.
29869 * keyboard.c (read_key_sequence): Add support for input-decode-map.
29870 (init_kboard): Init input-decode-map.
29871 Replace local-key-translation-map back with key-translation-map.
29872 (syms_of_keyboard): Declare input-decode-map.
29873 Remove local-key-translation-map. Update docstrings.
29874 (mark_kboards): Mark Vinput_decode_map.
29875 Don't mark Vlocal_key_translation_map.
29876 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
29877 Replace local-key-translation-map back with key-translation-map.
29878 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
29879 Bind in input-decode-map rather than function-key-map.
29880
29881 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
29882 This was made redundant by the previous introduction of XSETPVECTYPE.
29883
29884 2007-10-09 Richard Stallman <rms@gnu.org>
29885
29886 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
29887
29888 2007-09-29 Richard Stallman <rms@gnu.org>
29889
29890 * eval.c (internal_condition_case_2, internal_condition_case_1)
29891 (internal_condition_case): Reenable abort if x_catching_errors ()
29892 to see if that really happens and why.
29893
29894 2007-10-06 Andreas Schwab <schwab@suse.de>
29895
29896 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
29897
29898 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
29899
29900 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
29901
29902 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
29903
29904 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
29905
29906 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
29907
29908 * window.h (struct window):
29909 * window.c (struct save_window_data, struct saved_window):
29910 * termhooks.h (struct terminal):
29911 * process.h (struct Lisp_Process):
29912 * frame.h (struct frame):
29913 * buffer.h (struct buffer):
29914 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
29915 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
29916 The size field of (pseudo)vectors is now unsigned.
29917 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
29918
29919 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
29920 Turn `count' into an integer.
29921
29922 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
29923 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
29924 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
29925 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
29926 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
29927
29928 * alloc.c (allocate_pseudovector): New fun.
29929 (ALLOCATE_PSEUDOVECTOR): New macro.
29930 (allocate_window, allocate_terminal, allocate_frame)
29931 (allocate_process): Use it.
29932 (mark_vectorlike): New function.
29933 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
29934 (mark_terminals): Use it.
29935 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
29936 (Fmake_byte_code): Use XSETPVECTYPE.
29937
29938 * frame.c (Fframe_parameters): Minor simplification.
29939
29940 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
29941
29942 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
29943
29944 * buffer.c (Fget_buffer_create, init_buffer_once):
29945 * lread.c (defsubr):
29946 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
29947
29948 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
29949 defined differently in the m/*.h files.
29950 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
29951 (XSETPVECTYPE): New macro.
29952 (XSETPSEUDOVECTOR): Use it.
29953
29954 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
29955 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
29956
29957 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
29958 * lread.c (defvar_per_buffer):
29959 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
29960
29961 * window.c (candidate_window_p): Only consider as visible frames that
29962 are on the same terminal.
29963
29964 * m/ibms390x.h (MARKBIT): Remove unused macro.
29965
29966 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
29967
29968 * lread.c (Fload): Fix typo in docstring.
29969
29970 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
29971
29972 * floatfns.c (Fexpt): Manually check for overflows, so that a power
29973 of a non-zero value can't yield zero.
29974
29975 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
29976
29977 * term.c (term_clear_mouse_face, term_mouse_highlight)
29978 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
29979
29980 * print.c (safe_debug_print): Use XHASH.
29981
29982 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
29983 Lisp elements such as tags.
29984 (XHASH): New macro.
29985 (EQ): Use it.
29986 (SREF, SSET, STRING_COPYIN): Use SDATA.
29987 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
29988
29989 * alloc.c (mark_terminal): Remove left-over declaration.
29990 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
29991 (allocate_vectorlike): Remove type argument. Adjust callers.
29992 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
29993 Only handle the one remaining MEM_TYPE_VECTORLIKE.
29994
29995 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
29996 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
29997 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
29998 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
29999 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
30000 Use them.
30001
30002 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
30003 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
30004 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
30005
30006 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
30007
30008 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
30009 loaded by default.
30010
30011 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
30012
30013 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
30014 on this tty.
30015 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
30016
30017 * term.c (mouse_face_window): Rename from Qmouse_face_window.
30018 Update all users.
30019 (handle_one_term_event): Use Gpm_DrawPointer.
30020 (Fgpm_mouse_start): Rename from Fterm_open_connection.
30021 Signal errors instead of returning nil. Always return nil.
30022 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
30023 Make it a noop if gpm-mouse was not activated.
30024 (syms_of_term): Update names.
30025
30026 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
30027
30028 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
30029 (init_sys_modes): Check that gpm_tty is the current tty.
30030
30031 * alloc.c (allocate_terminal): Set the vector size to only count the
30032 lisp fields. Initialize those to nil.
30033 (mark_object): Don't treat terminals specially.
30034 (mark_terminal): Remove.
30035 (mark_terminals): Use mark_object instead.
30036
30037 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
30038 the GC to the beginning.
30039
30040 * indent.h:
30041 * indent.c: Use EMACS_INT for ints coming from Elisp data.
30042
30043 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
30044
30045 2007-09-25 Jason Rumney <jasonr@gnu.org>
30046
30047 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
30048
30049 * w32console.c (create_w32cons_output): Remove.
30050
30051 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
30052
30053 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
30054 (reset_sys_modes): Use reset_terminal_modes_hook.
30055
30056 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
30057
30058 * eval.c (do_autoload): Don't output any message.
30059
30060 2007-09-24 Juri Linkov <juri@jurta.org>
30061
30062 * emacs.c (standard_args): Change priority of "--no-splash"
30063 from 40 to 3. Add "--no-desktop" with the same priority.
30064
30065 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
30066
30067 * alloc.c (gc_sweep): Check cons cell mark bits word by word
30068 and optimize the case where they are all 1.
30069
30070 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
30071
30072 * lisp.h (abs): Define if not defined.
30073 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
30074 Don't define `abs', since it's defined in lisp.h.
30075
30076 2007-09-22 Eli Zaretskii <eliz@gnu.org>
30077
30078 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
30079 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
30080 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
30081 (init_tty): Use DEV_TTY instead of "/dev/tty".
30082 [WINDOWSNT]: No need to protect from NAME arg being null.
30083
30084 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
30085
30086 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
30087 up the tty state.
30088
30089 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
30090
30091 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
30092 (gpm_tty): Change its type.
30093 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
30094 (gpm_tty): Change its type and initialize it.
30095 (Fterm_open_connection): Check the frame is indeed a tty.
30096 Use the new gpm_tty.
30097 (Fterm_close_connection): Use the new gpm_tty.
30098 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
30099 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
30100
30101 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
30102
30103 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
30104 underline_color, to draw strike-through.
30105
30106 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
30107
30108 * lisp.h (allocate_terminal): Declare.
30109
30110 * window.c (candidate_window_p): Consider frames that are being placed
30111 by the user as somewhere between visible and iconified.
30112 (window_loop): Prefer windows on the current frame.
30113 (Fselect_window): Move the use of select-frame to the beginning so we
30114 can just delegate all the work (it'll call us back anyway).
30115
30116 * frame.c (Qdisplay_environment_variable):
30117 * frame.h (Qdisplay_environment_variable): Delete.
30118
30119 * .gdbinit (xbacktrace): Print the arg's address rather than the value
30120 of the first arg, since that value may be a union.
30121
30122 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
30123 parameter rather than Qdisplay_environment_variable. If all else
30124 fails, look for DISPLAY in initial-environment.
30125
30126 2007-09-21 Glenn Morris <rgm@gnu.org>
30127
30128 * Makefile.in (emacstool): Remove target.
30129 (lisp, shortlisp): Remove termdev.elc.
30130
30131 2007-09-21 Markus Triska <markus.triska@gmx.at>
30132
30133 * xterm.c (x_delete_display): Compile session management conditionally.
30134
30135 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
30136
30137 * callproc.c (getenv_internal_1): New function.
30138 (getenv_internal): Use it.
30139 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
30140
30141 * terminal.c (get_terminal): Don't accept ints to represent terminals.
30142 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
30143 (Fset_terminal_parameter): Work with dead terminals as well.
30144 (Fmodify_terminal_parameters): Remove.
30145
30146 * terminal.c (get_terminal): Handle terminals.
30147 Make sure the terminal returned is live.
30148 (create_terminal): Use allocate_terminal.
30149 (mark_terminals): Move to alloc.c.
30150 (delete_terminal): Use terminal->name as liveness status.
30151 NULL out fields after freeing their contents.
30152 Don't deallocate the object.
30153 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
30154 rather than an int.
30155 (Fterminal_live_p): Accept non-integer arguments.
30156 (Fterminal_list): Return terminal objects rather than an ints.
30157
30158 * alloc.c (enum mem_type): New member for `terminal' objects.
30159 (allocate_terminal): New function.
30160 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
30161 Handle terminals.
30162 (mark_terminal): New fun.
30163 (mark_terminals): Move from terminal.c.
30164
30165 * term.c (get_tty_terminal): Don't treat output_initial specially.
30166 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
30167 (delete_tty): Use terminal->name as liveness status.
30168
30169 * termhooks.h (struct terminal): Make it into a pseudovector.
30170 Remove `deleted' replaced by checking `name's nullness.
30171
30172 * print.c (print_object): Handle terminals.
30173
30174 * lisp.h (enum pvec_type): New `terminal' pseudovector.
30175 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
30176
30177 * frame.c (make_terminal_frame):
30178 * keyboard.c (tty_read_avail_input):
30179 * w32term.c (x_delete_terminal):
30180 * xfns.c (Fx_create_frame, x_create_tip_frame):
30181 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
30182
30183 2007-09-20 Glenn Morris <rgm@gnu.org>
30184
30185 * process.c (Fmake_network_process): Doc fix.
30186
30187 2007-09-19 Jason Rumney <jasonr@gnu.org>
30188
30189 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
30190
30191 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
30192
30193 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
30194 Fix a C warning regarding variable constness.
30195
30196 * xterm.c (handle_one_xevent): Fix a C warning.
30197
30198 2007-09-18 Jason Rumney <jasonr@gnu.org>
30199
30200 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
30201
30202 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
30203
30204 * gtkutil.c (gdpy_def): New variable.
30205 (xg_initialize): Initialize gdpy_def.
30206 (xg_display_close): If no other display exists, set gdpy_def to a
30207 new connection.
30208
30209 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
30210
30211 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
30212 when we have no file name for the icon.
30213 (xg_tool_bar_expose_callback): Remove.
30214 (xg_create_tool_bar): Don't connect expose signal to
30215 xg_tool_bar_expose_callback.
30216 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
30217
30218 2007-09-16 Andreas Schwab <schwab@suse.de>
30219
30220 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
30221 values instead of zapping them.
30222
30223 2007-09-14 Glenn Morris <rgm@gnu.org>
30224
30225 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
30226 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
30227 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
30228 scope and rename to omfib_buffer for clarity.
30229 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
30230
30231 2007-09-14 Kenichi Handa <handa@m17n.org>
30232
30233 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
30234
30235 2007-09-13 Jason Rumney <jasonr@gnu.org>
30236
30237 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
30238
30239 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
30240
30241 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
30242 (mac_term_init): Call here instead, passing rif.
30243
30244 2007-09-13 Glenn Morris <rgm@gnu.org>
30245
30246 * s/hpux.h: No longer define `static' as nothing.
30247
30248 2007-09-13 Johan Bockgård <bojohan@gnu.org>
30249
30250 * callint.c (Fcall_interactively): Remove unused var `fun'.
30251
30252 2007-09-12 Romain Francoise <romain@orebokech.com>
30253
30254 * window.c (prefer_window_split_horizontally, display_buffer):
30255 Revert 2007-09-08 change.
30256
30257 2007-09-12 Glenn Morris <rgm@gnu.org>
30258
30259 * alloca.c: Remove file.
30260 * Makefile.in (alloca): Do not undef.
30261 (allocaobj, alloca.o): Remove.
30262 (otherobj): Remove allocaobj.
30263 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
30264 * regex.c (C_ALLOCA): Remove all references and code that was only
30265 used when this was defined.
30266 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
30267 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
30268 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
30269
30270 * Makefile.in (SOURCES, unlock, relock): Delete.
30271
30272 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
30273 (menu_grab_callback): All uses changed.
30274
30275 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
30276 (x_reply_selection_request): All uses changed.
30277
30278 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
30279
30280 * lread.c (load_warn_old_style_backquotes): Change message to look
30281 better when it appears in the middle of byte-compiler messages.
30282
30283 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
30284
30285 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
30286
30287 * xterm.c (x_create_terminal): Add comment.
30288
30289 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
30290
30291 2007-09-10 Richard Stallman <rms@gnu.org>
30292
30293 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
30294
30295 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
30296
30297 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
30298 (DEFUN): Document `intspec', use it instead of `prompt'.
30299
30300 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
30301
30302 * data.c (Finteractive_form): If the interactive specification starts
30303 with a `(', use it as a Lisp form.
30304
30305 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
30306 name and file modes.
30307
30308 * callint.c (Fcall_interactively): Comment fixes.
30309
30310 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
30311
30312 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
30313 and compiled functions.
30314
30315 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
30316
30317 * window.c (prefer_window_split_horizontally): New variable.
30318 (display_buffer): Consider splitting window horizontally depending
30319 on prefer_window_split_horizontally.
30320
30321 2007-09-08 Eli Zaretskii <eliz@gnu.org>
30322
30323 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
30324
30325 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
30326
30327 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
30328
30329 * frame.c (x_set_frame_parameters): Check number is positive before
30330 using XFASTINT.
30331
30332 * window.c (freeze_window_start): Don't presume selected_window holds
30333 a window object.
30334 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
30335
30336 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
30337
30338 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
30339
30340 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
30341
30342 * window.c (Vsplit_window_preferred_function): New var.
30343 (Fdisplay_buffer): Use it.
30344 (syms_of_window): Export, and initialize it.
30345
30346 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
30347
30348 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
30349
30350 2007-09-06 Glenn Morris <rgm@gnu.org>
30351
30352 * gtkutil.c (menu_grab_callback) <cnt>:
30353 * xselect.c (x_reply_selection_request) <cnt>: Move static
30354 variable to file scope.
30355
30356 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
30357
30358 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
30359 consistent values of selected_frame and selected_window.
30360
30361 2007-09-04 Jason Rumney <jasonr@gnu.org>
30362
30363 * w32console.c (initialize_w32_display): Zero unused hooks.
30364
30365 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
30366
30367 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
30368 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
30369
30370 2007-09-04 Jason Rumney <jasonr@gnu.org>
30371
30372 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
30373 in w32console.c. Set up input. Remove XXX comments that have been
30374 confirmed as correct.
30375
30376 * s/ms-w32.h (MULTI_KBOARD): Define.
30377
30378 * w32console.c (one_and_only_w32cons): Remove.
30379 (initialize_w32_display): Take terminal argument.
30380
30381 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
30382 initialize_w32_display.
30383 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
30384
30385 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
30386
30387 * keyboard.c (discard_mouse_events): Discard it.
30388 (make_lispy_event): Translate it to a lisp event.
30389 (lispy_wheel_names): Add wheel-left and right events.
30390 (syms_of_keyboard): Enlarge wheel_syms.
30391
30392 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
30393 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
30394
30395 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
30396
30397 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
30398 from WM_MOUSEHWHEEL.
30399 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
30400
30401 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
30402 terminal.
30403
30404 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
30405 keyboard for the terminal.
30406
30407 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
30408
30409 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
30410 (Vresume_tty_hook): Rename from Vresume_tty_functions.
30411 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
30412 and resume-tty-function to resume-tty-hook.
30413 (Fsuspend_tty, Fresume_tty): Use new names.
30414
30415 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
30416
30417 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
30418 if it starts with "n:".
30419
30420 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
30421
30422 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
30423
30424 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
30425
30426 * frame.h:
30427 * frame.c (Qterm_environment_variable): Remove.
30428 (syms_of_frame): Don't init and staticpro it.
30429
30430 * callproc.c (getenv_internal): Remove special case for $TERM.
30431
30432 * callproc.c (Vinitial_environment): New variable.
30433 (set_initial_environment): Initialize it.
30434 (syms_of_callproc): Declare it.
30435 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
30436 TERM under which a process runs is never related to the TERM in which
30437 Emacs is running.
30438
30439 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
30440
30441 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
30442 * s/darwin.h: ... do it here.
30443
30444 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
30445
30446 * lisp.h (set_initial_environment): Rename from set_global_environment.
30447
30448 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
30449 removed by mistake on the multi-tty branch.
30450
30451 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
30452 (Fmodify_frame_parameters): Return a value.
30453
30454 * image.c (png_load): Comment-out var only used in commented-out code.
30455
30456 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
30457 before passing it to mark_object.
30458
30459 * xfaces.c (internal_resolve_face_name): Return a value.
30460 (internal_resolve_face_name, resolve_face_name_error): Comment out.
30461
30462 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
30463 (x_icon): Comment-out var only used in commented-out code.
30464
30465 2007-08-29 Romain Francoise <romain@orebokech.com>
30466
30467 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
30468 QUIT hasn't been provided.
30469
30470 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
30471
30472 * callproc.c (child_setup, getenv_internal): Use the
30473 display-environment-variable and term-environment-variable frame params.
30474 (set_initial_environment): Initialise Vprocess_environment.
30475
30476 * config.in: Disable multi-keyboard support on a mac.
30477
30478 * frame.c (Qterm_environment_variable)
30479 (Qdisplay_environment_variable): New variables.
30480 (syms_of_frame): Intern and staticpro them.
30481 (Fmake_terminal_frame): Disable output method test.
30482
30483 * frame.h: Declare them here.
30484
30485 * macfns.c (x_set_mouse_color): Get rif from the frame.
30486 (x_set_tool_bar_lines): Don't use updating_frame.
30487 (mac_window): Add 2 new parameters for consistency with other systems.
30488 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
30489 frame parameters following what is done in X11 and w32. Don't use
30490 FRAME_MAC_DISPLAY_INFO.
30491 (Fx_open_connection, start_hourglass): Remove window-system check.
30492 (x_create_tip_frame): Get the keyboard from the terminal.
30493
30494 * macmenu.c: Reorder includes.
30495 (Fx_popup_menu): Use terminal specific mouse_position_hook.
30496
30497 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
30498 terminal parameter.
30499 (x_clear_frame): Add a frame parameter.
30500 (note_mouse_movement): Get rif from the frame.
30501 (mac_term_init): Initialize the terminal.
30502 (mac_initialize): Make static and move terminal initialization ...
30503 (mac_create_terminal): ... to this new function.
30504
30505 * macterm.h (struct mac_display_info): Add terminal.
30506 (mac_initialize): Delete declaration.
30507
30508 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
30509
30510 * sysdep.c: Comment out text after #endif.
30511
30512 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
30513 is defined. Better initialize ttys in windows. Use terminal
30514 specific mouse_position_hook.
30515
30516 * termhooks.h (union display_info): Add mac_display_info.
30517
30518 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
30519 Set the default minibuffer frame, window_system and the rest of the
30520 frame parameters following what is done in X11.
30521
30522 * w32term.c (w32_initialize): Make static.
30523
30524 * xselect.c (x_handle_selection_clear): Only access
30525 terminal->kboard when MULTI_KBOARD is defined.
30526
30527 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
30528 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
30529
30530 2007-08-29 Jason Rumney <jasonr@gnu.org>
30531
30532 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
30533 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
30534
30535 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
30536 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
30537
30538 * keyboard.c (restore_kboard_configuration): Only define when
30539 MULTI_KBOARD defined.
30540
30541 * makefile.w32-in: Update dependancies from Makefile.in.
30542 (OBJ1): Add terminal.$(O)
30543
30544 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
30545 Don't define function body.
30546 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
30547
30548 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
30549
30550 * w32.c (request_sigio, unrequest_sigio): Remove.
30551
30552 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
30553 (w32con_clear_frame, w32con_clear_end_of_line)
30554 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
30555 (w32con_delete_glyphs, w32con_set_terminal_window)
30556 (scroll_line, w32_sys_ring_bell): Add frame arg.
30557 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
30558 Add terminal arg.
30559 (PICK_FRAME): Remove.
30560 (w32con_write_glyphs): Use frame specific terminal coding.
30561 (one_and_only_w32cons): New global variable.
30562 (initialize_w32_display): Use it for storing hooks.
30563 (create_w32cons_output): New function.
30564
30565 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
30566 arg a frame.
30567
30568 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
30569 Set window_system.
30570 (x_set_tool_bar_lines): Don't use updating_frame.
30571 (Fx_create_frame): Set terminal and ref count.
30572 (Fx_open_connection): Remove window-system check.
30573
30574 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
30575
30576 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
30577 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
30578 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
30579 Add frame arg.
30580 (x_delete_terminal, w32_create_terminal): New functions.
30581 (w32_term_init): Create a terminal.
30582 (w32_initialize): Move terminal specific initialization to
30583 w32_create_terminal.
30584
30585 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
30586 (w32_clear_rect, w32_clear_area): Use background from frame.
30587 (w32_display_info): Add terminal.
30588 (w32_sys_ring_bell, x_delete_display): Declare here.
30589
30590 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
30591
30592 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
30593
30594 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
30595
30596 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
30597 Fix get_named_tty calls for the controlling tty.
30598
30599 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
30600
30601 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
30602
30603 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
30604
30605 * term.c (tty_insert_glyphs): Add missing first parameter.
30606
30607 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
30608
30609 * buffer.c (Fbuffer_list, Fbury_buffer):
30610 Take frame->buried_buffer_list into account.
30611
30612 * cm.c (current_tty): New variable, for cmputc().
30613 (cmputc): Use it.
30614 (cmcheckmagic): Add tty parameter, look up terminal streams there.
30615 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
30616 (cmgoto): Add tty parameter. Pass it on to calccost().
30617 Use emacs_tputs() instead of tputs().
30618
30619 * cm.h (emacs_tputs): New macro to set current_tty, and then call
30620 tputs().
30621 (current_tty): New variable, for cmputc().
30622 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
30623
30624 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
30625 (internal_condition_case, internal_condition_case_1)
30626 (internal_condition_case_2): Don't abort when x_catching_errors.
30627
30628 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
30629 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
30630 prevent crashes caused by bogus longjmps in read_char.
30631
30632 * keymap.h (Fset_keymap_parent): Add EXFUN.
30633
30634 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
30635 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
30636 Remove redundant definition.
30637
30638 * macfns.c (x_set_mouse_color, x_make_gc):
30639 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30640
30641 * w32term.c (x_free_frame_resources):
30642 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30643 (w32_initialize): Use the accessor macros for terminal characteristics.
30644
30645 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
30646 Use the accessor macros for terminal characteristics.
30647 * msdos.c (internal_terminal_init): Use the accessor macros for
30648 terminal characteristics.
30649 (ScreenVisualBell, internal_terminal_init):
30650 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30651
30652 * termopts.h (no_redraw_on_reenter): Declare.
30653
30654 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
30655 (mark_terminals, mark_ttys): Declare.
30656 (Fgarbage_collect): Call them.
30657 (mark_object): Mark buried_buffer_list.
30658
30659 * prefix-args.c: Include stdlib.h for exit.
30660
30661 * syssignal.h: Add comment.
30662
30663 * indent.c: Include stdio.h.
30664
30665 * window.h (Vinitial_window_system): Declare.
30666 (Vwindow_system): Delete declaration.
30667
30668 * fontset.c (Finternal_char_font): Use FRAME_RIF.
30669
30670 * image.c (lookup_image): Don't initialize `c' until the xasserts
30671 have been run.
30672
30673 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
30674 FRAME_FOREGROUND_PIXEL.
30675
30676 * print.c (print_preprocess): Don't lose print_depth levels while
30677 iterating.
30678
30679 * widget.c (update_from_various_frame_slots):
30680 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30681
30682 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
30683 frames.
30684 (window_internal_height): Remove bogus make_number call.
30685 (init_window_once): Call make_terminal_frame with two zero parameters.
30686
30687 * fileio.c (Fread_file_name): Update comment.
30688
30689 * callint.c (Fcall_interactively):
30690 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
30691 Make sure it is correctly unwound.
30692
30693 * xsmfns.c (x_session_close): New function.
30694
30695 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
30696 Delete declarations.
30697
30698 * xterm.h: Remove declaration for x_fully_uncatch_errors.
30699 (x_output): Remove background_pixel and foreground_pixel fields.
30700 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
30701 (x_delete_device, x_session_close): Declare.
30702
30703 * lread.c: Include setjmp.h. Update declaration of `read_char'.
30704 (read_filtered_event): Call `read_char' with a local
30705 `wrong_kboard_jmpbuf'.
30706
30707 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
30708 Don't call single_kboard_state. Use FRAME_RIF.
30709
30710 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
30711 systems.
30712
30713 * lisp.h (set_process_environment): Rename to `set_global_environment'.
30714 (Fframe_with_environment, Fset_input_meta_mode)
30715 (Fset_quit_char): EXFUN.
30716 (x_create_device, tty_output, terminal, tty_display_info): Declare.
30717 (init_sys_modes, reset_sys_modes): Update prototypes.
30718 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
30719
30720 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
30721 Vlocal_key_translation_map, and Vkeyboard_translate_table.
30722 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
30723 Delete declarations.
30724 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
30725 (temporarily_switch_to_single_kboard, tty_read_avail_input):
30726 New declarations.
30727
30728 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
30729 already does that during init_display(). Call syms_of_keymap
30730 before syms_of_keyboard. Call `syms_of_terminal'.
30731 Call set_initial_environment, not set_process_environment.
30732 (shut_down_emacs): Call reset_all_sys_modes() instead of
30733 reset_sys_modes().
30734
30735 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
30736 (internal_resolve_face_name, resolve_face_name_error): New functions.
30737 (resolve_face_name): Protect against loops and errors thrown by Fget.
30738 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
30739 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
30740
30741 * scroll.c: Replace CURTTY() with local variables throughout the
30742 file (where applicable).
30743 (calculate_scrolling, calculate_direct_scrolling)
30744 (scrolling_1, scroll_cost): Use the accessor macros for terminal
30745 characteristics.
30746
30747 * keymap.c (Vfunction_key_map): Remove.
30748 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
30749 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
30750 (Vkey_translation_map): Remove.
30751 (syms_of_keymap): Remove DEFVAR for key-translation-map.
30752 (Fdescribe_buffer_bindings)
30753 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
30754 Update for terminal-local key-translation-map.
30755
30756 * Makefile.in (callproc.o): Update dependencies.
30757 (lisp, shortlisp): Add termdev.elc.
30758 (obj): Add terminal.o.
30759 (terminal.o): Add dependencies.
30760 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
30761 (data.o, fns.o): Add termhooks.h dependency.
30762 (SOME_MACHINE_LISP): Add dnd.elc.
30763 (minibuf.o): Fix typo.
30764 Update dependencies.
30765
30766 * data.c (do_symval_forwarding, store_symval_forwarding)
30767 (find_symbol_value): Use the selected frame's keyboard, not
30768 current_kboard.
30769
30770 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
30771 Vwindow_system.
30772
30773 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
30774 Fmenu_bar_open.
30775 (syms_of_xmenu): Update defsubr.
30776 (mouse_position_for_popup, Fx_popup_menu)
30777 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
30778 (set_frame_menubar, free_frame_menubar)
30779 (create_and_show_popup_menu, xmenu_show)
30780 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
30781 an X frame.
30782
30783 * xselect.c (x_own_selection): Abort if not an X frame.
30784 (some_frame_on_display): Check if it is an X frame.
30785 (x_handle_selection_clear): Deal with MULTI_KBOARD.
30786
30787 * coding.c: Include frame.h and termhooks.h.
30788 (terminal_coding, keyboard_coding): Delete.
30789 (Fset_terminal_coding_system_internal)
30790 (Fset_keyboard_coding_system_internal)
30791 (Fkeyboard_coding_system)
30792 (Fterminal_coding_system): Add a terminal parameter.
30793 Get terminal_coding from the terminal.
30794 (init_coding_once): Don't call setup_coding_system here.
30795
30796 * dispextern.h (set_scroll_region, turn_off_insert)
30797 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
30798 (tty_clear_end_of_line, tty_setup_colors)
30799 (delete_tty, updating_frame)
30800 (produce_special_glyphs, produce_glyphs, write_glyphs)
30801 (insert_glyphs): Remove.
30802 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
30803 (tty_turn_off_highlight, get_tty_size): Add declaration.
30804 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
30805
30806 * frame.h (enum output_method): Add output_initial.
30807 (struct x_output): Delete.
30808 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
30809 Access foreground_pixel and background_pixel directly from the frame.
30810 (tty_display): Delete.
30811 (struct frame): Add buried_buffer_list, foreground_pixel,
30812 background_pixel and terminal. Delete kboard.
30813 (union output_data): Add tty.
30814 (FRAME_KBOARD): Get the kboard from the terminal.
30815 (FRAME_INITIAL_P): New macro.
30816 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
30817 (Qterm_environment_variable, Qdisplay_environment_variable)
30818 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
30819 New declarations.
30820
30821 * termchar.h (tty_output, tty_display_info): New structures.
30822 (tty_list): Declare.
30823 (FRAME_TTY, CURTTY): New macros.
30824 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
30825 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
30826 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
30827 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
30828
30829 * callproc.c: Include frame.h and termhooks.h, for terminal
30830 parameters.
30831 (add_env): New function.
30832 (child_setup): Use it.
30833 (child_setup, getenv_internal): Handle the new Vprocess_environment.
30834 (getenv_internal): Fix get_terminal_param call.
30835 (Fgetenv_internal, egetenv): Update doc.
30836 (syms_of_callproc): Initialize Vprocess_environment to nil.
30837 Register and initialize them. Remove obsolete defvars. Update doc
30838 strings.
30839 (child_setup): Handle Vlocal_environment_variables.
30840 (getenv_internal): Add terminal parameter.
30841 Handle Vlocal_environment_variables.
30842 (Fgetenv_internal): Add terminal parameter.
30843 (child_setup, getenv_internal, Fgetenv_internal): Store the local
30844 environment in a frame (not terminal) parameter. Update doc strings.
30845 (set_initial_environment): Rename from set_global_environment.
30846 Store Emacs environment in initial frame parameter.
30847
30848 * xdisp.c (redisplay_internal): Update references to
30849 `previous_terminal_frame'.
30850 (display_mode_line, Fformat_mode_line): Replace calls to
30851 `push_frame_kboard' with `push_kboard'.
30852 (get_glyph_string_clip_rects): Add extra parentheses and
30853 braces to prevent compiler warnings.
30854 (calc_pixel_width_or_height): Add xassert to check that the
30855 frame is alive. Don't call `lookup_image' on a termcap frame.
30856 (message2_nolog, message3_nolog, redisplay_internal)
30857 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
30858 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
30859 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
30860 (Fx_display_pixel_width, Fx_display_pixel_height)
30861 (Fx_display_planes, Fx_display_color_cells)
30862 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
30863 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
30864 (Fx_display_backing_store, Fx_display_visual_class)
30865 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
30866 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
30867
30868 * xfns.c (x_set_foreground_color x_set_background_color)
30869 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
30870 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30871 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
30872 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
30873 terminal that is being deleted.
30874 (Fx_create_frame): Use `store_frame_param' to set `window-system'
30875 frame parameter, and make sure it overrides any user-supplied setting.
30876 (Fx_close_connection, Fx_synchronize): Unify argument names with
30877 the rest of the DEFUNs.
30878
30879 * dispnew.c (Fsend_string_to_terminal): Update call to
30880 `get_tty_terminal'.
30881 (Fredraw_frame, Fsend_string_to_terminal)
30882 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
30883 FRAME_TERMCAP_P and FRAME_TTY.
30884 (window_change_signal): Don't believe width/height values that are
30885 impossibly small.
30886 (Vinitial_window_system): Rename from Vwindow_system.
30887 (termscript, Wcm, rif): Delete.
30888
30889 * termhooks.h (struct terminal): New struct containing the
30890 previously global text display hooks and new members NAME,
30891 DELETED and PARAM_ALIST.
30892 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
30893 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
30894 (FRAME_RIF): New macros.
30895 (get_terminal_param, get_device): New declarations.
30896 (termscript): Delete declaration.
30897
30898 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
30899 (XTflash, x_free_frame_resources, x_scroll_bar_create)
30900 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
30901 FRAME_FOREGROUND_PIXEL.
30902 (x_fully_uncatch_errors): Disable definition.
30903 (x_scroll_bar_expose): Fix reference to foreground pixel.
30904 (XTread_socket): Disable loop on all X displays.
30905 (x_delete_terminal): Don't set terminal->deleted and let
30906 delete_terminal delete the frames on the terminal.
30907 (x_delete_display): Doc update to reflect changes in
30908 delete_terminal.
30909 (x_display_info) <terminal>: Move member earlier in the struct.
30910 (deleting_tty): Remove old variable.
30911 (Fsuspend_tty): Call clear_tty_hooks.
30912 (Fresume_tty, init_tty): Call set_tty_hooks.
30913 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
30914 errors on X frames.
30915 (x_catch_errors_unwind): Abort if x_error_message is NULL.
30916 (handle_one_xevent): Initialize `f' to NULL.
30917 (x_delete_terminal, x_create_terminal): New functions.
30918 (XTset_terminal_modes, XTreset_terminal_modes)
30919 (XTread_socket, x_connection_closed, x_term_init)
30920 (x_term_init, x_delete_display): Add terminal parameter.
30921 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
30922 X connections.
30923
30924 * frame.c: Include termchar.h.
30925 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
30926 (Qwindow_system, Qenvironment, Qterm_environment_variable)
30927 (Qdisplay_environment_variable): New vars.
30928 (Fframep): Deal with output_initial.
30929 (Fframe-live-p): Doc fix.
30930 (Fwindow-system): New function.
30931 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
30932 (make_terminal_frame): Don't create frames on a terminal that is
30933 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30934 (store_frame_param): Check for found_for_frame before calling XFRAME.
30935 (Fmake_terminal_frame): Handle NULL tty names correctly.
30936 (syms_of_frame): Enhance doc string of `default-frame-alist'.
30937 (Fdelete_frame): Remove unused variable `count'. Don't allow other
30938 frames to refer to a deleted frame in their 'environment parameter.
30939 (Fframe_with_environment): New function.
30940 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
30941 (get_future_frame_param): New function.
30942 (Fmake_terminal_frame): Use it.
30943 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
30944
30945 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
30946 * sysdep.c (reset_sys_modes): Update for renames.
30947
30948 * keyboard.c (tty_read_avail_input): New function.
30949 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
30950 (syms_of_keyboard): Defsubr them.
30951 (Fset_input_meta_mode, Fset_quit_char): New functions.
30952 (Fset_input_mode): Split to above functions.
30953 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
30954 parameter. Use it in call to `read_char'.
30955 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
30956 Set wrong_kboard_jmpbuf correctly in recursive calls.
30957 Use current_kboard to access Vkeyboard_translate_table.
30958 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
30959 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
30960 Update longjmp invocations. Remember the original current_kboard,
30961 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
30962 changes it. Comment out unnecessary calls to
30963 `record_single_kboard_state' and `any_kboard_state'.
30964 Update recursive calls.
30965 (wrong_kboard_jmpbuf): Remove global variable.
30966 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
30967 Handle deleted interrupted_kboards correctly; that is a legal
30968 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
30969 and read_char calls. Abort if interrupted_kboard died in read_char.
30970 (any_kboard_state, single_kboard_state)
30971 (push_frame_kboard): Remove function.
30972 (pop_kboard): Switch out of single_kboard mode if the kboard has
30973 been deleted. Remove unused variable. Help debugging by not
30974 changing current_kboard unnecessarily. Set current_kboard to the
30975 kboard of the selected frame when the stored kboard object has
30976 been deleted before pop_kboard.
30977 (temporarily_switch_to_single_kboard): Change first parameter to a
30978 frame pointer. Throw an error when caller wants to change kboards
30979 while in single_kboard mode. Don't push_kboard if we weren't in
30980 single kboard state. Don't pop_kboard if we popped into any
30981 kboard state.
30982 (restore_kboard_configuration): Abort if pop_kboard changed the
30983 kboard in single_kboard mode. Call pop_kboard only after setting
30984 up single_kboard mode.
30985 (Frecursive_edit): Switch to single_kboard mode only in nested
30986 command loops.
30987 (cmd_error, command_loop, command_loop_1, timer_check):
30988 Comment out unnecessary call to `any_kboard_state' and
30989 `record_single_kboard_state'.
30990 (delete_kboard): Exit single_kboard mode if we have just deleted
30991 that kboard. Use FRAME_KBOARD.
30992 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
30993 `fatal_error_signal'.
30994 (record_single_kboard_state): Don't push_kboard if we weren't in
30995 single kboard state. Don't pop_kboard if we popped into any
30996 kboard state.
30997 (push_frame_kboard): Rename to push_kboard.
30998 (kbd_buffer_get_event): Use FRAME_TERMINAL.
30999 (read_avail_input): Read input from all terminals.
31000 (mark_kboards): Also mark Vkeyboard_translate_table.
31001 (kbd_buffer_store_event_hold): Simplify condition.
31002 (read_key_sequence): Reinitialize fkey and keytran at each replay.
31003 (Vkeyboard_translate_table): Move to struct kboard.
31004 (init_kboard): Initialize Vkeyboard_translate_table.
31005 (syms_of_keyboard): Use DEFVAR_KBOARD to define
31006 Vkeyboard_translate_table. Update doc strings. Update docs of
31007 local-function-key-map and function-key-map.
31008
31009 * terminal.c: New file.
31010
31011 * term.c: Include errno.h.
31012 (Vring_bell_function, device_list, initial_device)
31013 (next_device_id, ring_bell, update_begin, update_end)
31014 (set_terminal_window, cursor_to, raw_cursor_to)
31015 (clear_to_end, clear_frame, clear_end_of_line)
31016 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
31017 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
31018 (syms_of_term): Move their initialization to terminal.c.
31019 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
31020 (Ftty_display_color_cells)
31021 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
31022 (clear_tty_hooks, set_tty_hooks)
31023 (init_tty, maybe_fatal): New functions.
31024 (Ftty_type): Return nil if terminal is not on a tty instead of
31025 throwing an error. Doc update.
31026 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
31027 Doc update. Initialize new subrs and variables.
31028 (delete_tty): Use terminal->deleted.
31029 (tty_set_terminal_modes): Rename from set_terminal_modes.
31030 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
31031 (set_scroll_region): Rename to `tty_set_scroll_region'.
31032 (turn_on_insert): Rename to `tty_turn_on_insert'.
31033 (turn_off_insert): Rename to `tty_turn_off_insert'.
31034 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
31035 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
31036 (toggle_highligh): Rename to `tty_toggle_highlight'.
31037 (background_highlight): Rename to `tty_background_highlight'.
31038 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
31039 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
31040 (tty_set_scroll_region, tty_background_highlight)
31041 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
31042 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
31043 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
31044 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
31045 Add static modifier.
31046 (tty_reset_terminal_modes, tty_set_terminal_window)
31047 (tty_set_scroll_region, tty_background_highlight)
31048 (tty_highlight_if_desired, tty_cursor_to)
31049 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
31050 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
31051 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
31052 renames.
31053
31054 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
31055
31056 * keyboard.c: Qrtl is new.
31057 (parse_tool_bar_item): Handle :rtl keyword.
31058 (syms_of_keyboard): Intern :rtl keyword.
31059
31060 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
31061
31062 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
31063 so no Lisp code is executed.
31064 (file_for_image, find_rtl_image): New functions.
31065 (xg_get_image_for_pixmap): Use file_for_image.
31066 (update_frame_tool_bar): If direction is RTL, use RTL image if
31067 defined. Use Gtk stock images if defined.
31068
31069 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31070
31071 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
31072 for nonexistent or zero-width glyph in composition glyph.
31073
31074 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
31075
31076 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
31077
31078 * xdisp.c (Finvisible_p): New function.
31079 (syms_of_xdisp): defsubr it.
31080
31081 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
31082
31083 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
31084 Doc fixes.
31085
31086 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31087
31088 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
31089
31090 2007-08-24 Martin Rudalics <rudalics@gmx.at>
31091
31092 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
31093 whether decoding has modified buffer contents.
31094
31095 2007-08-24 Jason Rumney <jasonr@gnu.org>
31096
31097 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
31098 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
31099 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
31100 (init_svg_functions) [HAVE_NTGUI]: New function.
31101 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
31102 (svg_load_image): Use them.
31103 (svg_load_image) [HAVE_NTGUI]: Implement background.
31104
31105 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31106
31107 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
31108 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
31109 (LIBX): Remove @RSVG_LIBS@.
31110 (LIBES): Add $(RSVG_LIBS).
31111
31112 * image.c (svg_load_image): Blend with specified background if exists.
31113 Use IMAGE_BACKGROUND. Add Mac OS Support.
31114
31115 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
31116 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
31117 Remove macros.
31118 [MAC_OSX] (socket_callback): Do nothing.
31119 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
31120 ReceiveNextEvent.
31121 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
31122 socket_callback.
31123 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
31124
31125 2007-08-22 Glenn Morris <rgm@gnu.org>
31126
31127 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
31128
31129 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
31130
31131 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
31132
31133 * image.c: Add support for SVG images. Some additional comments
31134 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
31135 (svg_image_p): New function to test for SVG image.
31136 (svg_load): New function to load SVG image.
31137 (svg_load_image): New function, helper for svg_load.
31138 (Qsvg): New Lisp_object.
31139 (svg_keyword_index): New enum.
31140 (svg_format): New static `image_keyword' struct.
31141 (svg_type): New static `image_type' struct.
31142 (librsvg/rsvg.h): Include it.
31143
31144 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
31145
31146 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
31147
31148 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
31149
31150 * lread.c (Qold_style_backquotes): New var.
31151 (syms_of_lread): Init and staticpro it.
31152 (load_warn_old_style_backquotes): New fun.
31153 (Fload): Use them to warn about old style backquotes.
31154 (end_of_file_error, Fload): Remove unused vars.
31155
31156 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
31157
31158 * lread.c (Vold_style_backquotes): New var.
31159 (syms_of_lread): Init and export it to Elisp.
31160 (read1): Set it when we find an old-style (back)quote.
31161
31162 2007-08-22 Jason Rumney <jasonr@gnu.org>
31163
31164 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
31165
31166 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
31167
31168 * puresize.h (BASE_PURESIZE): Increase to 1140000.
31169
31170 2007-08-19 Richard Stallman <rms@gnu.org>
31171
31172 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
31173
31174 2007-08-19 Andreas Schwab <schwab@suse.de>
31175
31176 * alloc.c (pure): Round PURESIZE up.
31177
31178 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
31179
31180 * xterm.c (handle_one_xevent): Remove check that mouse click is in
31181 active frame.
31182
31183 2007-08-16 Richard Stallman <rms@gnu.org>
31184
31185 * eval.c (Fcommandp): Add parens to clarify.
31186
31187 * minibuf.c (Fall_completions): Use enum for type of table.
31188
31189 * emacs.c (USAGE2): Improve text.
31190
31191 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
31192
31193 * term.c (tty_default_color_capabilities): Declare static
31194 variables in file scope, to avoid HPUX compiler problem.
31195
31196 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
31197
31198 * gtkutil.c (update_frame_tool_bar): Use -1 as index
31199 to gtk_toolbar_insert.
31200
31201 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
31202
31203 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
31204
31205 * insdel.c (reset_var_on_error): New fun.
31206 (signal_before_change, signal_after_change):
31207 Use it to reset (after|before)-change-functions to nil in case of error.
31208 Bind inhibit-modification-hooks to t.
31209 Don't bind (after|before)-change-functions to nil while they run.
31210
31211 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31212
31213 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
31214 filling pixmap with stippled background.
31215
31216 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31217
31218 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
31219 Don't use invisible frame as parent window for repositioning.
31220
31221 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
31222
31223 * print.c (new_backquote_output): Rename from old_backquote_output.
31224 (print): Inverse its logic (according to its name) so as to match the
31225 behavior of new_backquote_flag in lread.c.
31226
31227 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31228
31229 * gmalloc.c (posix_memalign): New function.
31230
31231 * macterm.c (frame_highlight, frame_unhighlight): Don't call
31232 ActivateControl/DeactivateControl here.
31233 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
31234 frame-notice-user-settings is non-nil.
31235 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
31236 for kEventParamFMFontStyle.
31237 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
31238 mac_pass_command_to_system and mac_pass_control_to_system here.
31239 (XTread_socket): Call ActivateControl/DeactivateControl here.
31240 (XTread_socket) [TARGET_API_MAC_CARBON]:
31241 Check mac_pass_command_to_system and mac_pass_control_to_system here.
31242 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
31243 for window repositioning.
31244
31245 2007-08-08 Glenn Morris <rgm@gnu.org>
31246
31247 * Replace `iff' in doc-strings and comments.
31248
31249 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
31250
31251 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
31252
31253 2007-08-07 Martin Rudalics <rudalics@gmx.at>
31254
31255 * fileio.c (Finsert_file_contents): Run format-decode and
31256 after_insert_file_functions on entire buffer when REPLACE is
31257 non-nil and inhibit modification_hooks and point_motion_hooks.
31258 For consistency, run after_insert_file_functions iff something
31259 got inserted. Move signal_after_change and update_compositions
31260 after code running after_insert_file_functions. Make sure that
31261 undo_list doesn't record intermediate steps of the decoding process.
31262
31263 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31264
31265 * emacs.c (main)
31266 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
31267 Call malloc_enable_thread on interactive startup.
31268
31269 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
31270 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
31271 [USE_PTHREAD]: Conditionalize with it.
31272 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
31273 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
31274 New functions.
31275
31276 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
31277
31278 * xdisp.c (redisplay_window): When restoring original buffer
31279 position, make sure it is still valid.
31280
31281 * image.c (png_load): Ignore png-supplied background color.
31282
31283 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31284
31285 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
31286 Use kCFAbsoluteTimeIntervalSince1970.
31287
31288 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
31289 New variable.
31290 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
31291 event loop should be quit.
31292 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
31293 Quit dialog event loop if quit_dialog_event_loop is set.
31294
31295 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
31296 (Selection): New typedef. Use instead of ScrapRef.
31297 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
31298 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
31299 (mac_clear_selection): Rename from clear_scrap.
31300 (get_flavor_type_from_symbol): New argument SEL and subsume function of
31301 scrap_has_target_type. All uses changed.
31302 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
31303 (mac_selection_has_target_p): New functions.
31304 (mac_put_selection_value): Rename from put_scrap_string.
31305 (mac_get_selection_value): Rename from get_scrap_string.
31306 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
31307 (put_scrap_private_timestamp, scrap_has_target_type)
31308 (get_scrap_private_timestamp): Remove functions.
31309 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
31310 (x_own_selection, x_get_local_selection):
31311 Use mac_valid_selection_value_p.
31312 (x_own_selection): Don't use put_scrap_private_timestamp.
31313 Record OWNERSHIP-INFO into Vselection_alist instead.
31314 (x_get_local_selection): Don't check type if request is local.
31315 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
31316 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
31317
31318 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
31319
31320 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
31321 add comment explaining why.
31322
31323 2007-08-03 Richard Stallman <rms@gnu.org>
31324
31325 * fileio.c (Fvisited_file_modtime): Use make_time.
31326
31327 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
31328
31329 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
31330 build.
31331
31332 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
31333
31334 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
31335
31336 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
31337
31338 * puresize.h (BASE_PURESIZE): Increase to 1130000.
31339
31340 2007-07-30 Richard Stallman <rms@gnu.org>
31341
31342 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
31343
31344 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
31345
31346 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
31347
31348 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
31349
31350 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
31351 remote default-directory.
31352
31353 * buffer.c (mode-line-format): Update doc string.
31354
31355 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31356
31357 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
31358 scroll bar gap.
31359 (x_scroll_bar_create): Set bar->fringe_extended_p.
31360 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
31361 on frame edge. Check fringe background extension. Don't clear
31362 extended fringe background area.
31363
31364 * w32term.h (struct scroll_bar): New member fringe_extended_p.
31365 (w32_fill_area): Enclose multiple statements with do ... while (0).
31366
31367 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
31368 Extend fringe background to scroll bar gap.
31369 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
31370 Set bar->fringe_extended_p.
31371 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
31372 Put leftmost/rightmost scroll bars on frame edge. Check fringe
31373 background extension. Don't clear extended fringe background area.
31374
31375 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
31376 New member fringe_extended_p.
31377
31378 2007-07-25 Glenn Morris <rgm@gnu.org>
31379
31380 * Relicense all FSF files to GPLv3 or later.
31381
31382 * COPYING: Switch to GPLv3.
31383
31384 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
31385
31386 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
31387
31388 * data.c (Finteractive_form): Check for the presence of an
31389 `interactive-form' symbol property more thoroughly.
31390
31391 * data.c (Finteractive_form): Use an `interactive-form' property if
31392 present, analogous to the function-documentation property.
31393
31394 2007-07-24 Jason Rumney <jasonr@gnu.org>
31395
31396 * w32fns.c (x_real_positions): Get real position from OS instead of
31397 calculating it.
31398
31399 2007-07-23 Jason Rumney <jasonr@gnu.org>
31400
31401 * filelock.c (current_lock_owner): Allow for @ sign in username.
31402
31403 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
31404
31405 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
31406 remote default-directory.
31407
31408 * buffer.c (mode-line-format): Describe above case in doc string.
31409
31410 2007-07-20 Eli Zaretskii <eliz@gnu.org>
31411
31412 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
31413 Define if not defined.
31414
31415 2007-07-18 Jason Rumney <jasonr@gnu.org>
31416
31417 * w32proc.c (w32_executable_type): Handle 64 bit executables.
31418
31419 2007-07-18 Richard Stallman <rms@gnu.org>
31420
31421 * data.c (Fsetq_default): Doc fix.
31422
31423 * eval.c (Fsetq): Doc fix.
31424
31425 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
31426
31427 * coding.c (Ffind_operation_coding_system):
31428 * eval.c (For, Fand): Doc fixes.
31429 Reported by Johan Bockgård.
31430
31431 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
31432
31433 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
31434
31435 * xterm.h: Declare x_ewmh_activate_frame.
31436
31437 * xterm.c (x_ewmh_activate_frame): New function.
31438 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
31439
31440 2007-07-17 Martin Rudalics <rudalics@gmx.at>
31441
31442 * window.c (Fdisplay_buffer): If largest or LRU window is the
31443 only window, split it even if it is not eligible for splitting.
31444 This restores the original behavior broken by the 2007-07-15
31445 change.
31446
31447 2007-07-17 Glenn Morris <rgm@gnu.org>
31448
31449 * abbrev.c (abbrev_check_chars): New function.
31450 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
31451 Call abbrev_check_chars to check abbrev characters are word
31452 constituents. Doc fix.
31453
31454 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
31455
31456 * process.c (Fstart_process, Fmake_network_process)
31457 (read_process_output): Fix up last changes.
31458
31459 2007-07-16 Eli Zaretskii <eliz@gnu.org>
31460
31461 * makefile.w32-in (clean): Don't delete *~.
31462
31463 2007-07-16 Andreas Schwab <schwab@suse.de>
31464
31465 * window.c (Fdisplay_buffer): Use NILP.
31466 (Fset_window_scroll_bars): Likewise.
31467
31468 2007-07-15 Martin Rudalics <rudalics@gmx.at>
31469
31470 * window.c (window_min_size_2): New function.
31471 (window_min_size_1, size_window, Fdisplay_buffer)
31472 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
31473 windows without mode- or header-lines when window-min-height is
31474 too small.
31475 (size_window): Reset nodelete_p after testing it, following an
31476 earlier note by Kim F. Storm.
31477 (display_buffer): Do not set split_height_threshold to twice the
31478 value of window_min_height to avoid changing the value of a
31479 customizable variable. Rather explicitly check whether the
31480 height of the window that shall be splitted is at least as large
31481 as split_height_threshold.
31482 (Fwindow_full_width_p): New defun.
31483 (syms_of_window): Defsubr it.
31484
31485 * window.h: Add EXFUN for Fwindow_full_width_p.
31486
31487 2007-07-14 Jason Rumney <jasonr@gnu.org>
31488
31489 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
31490
31491 2007-07-14 Richard Stallman <rms@gnu.org>
31492
31493 * eval.c (maybe_call_debugger): New function.
31494 (find_handler_clause): Use maybe_call_debugger.
31495 Call it when the handler says `debug'.
31496 Eliminate DEBUGGER_VALUE_PTR.
31497 (Fsignal): Eliminate debugger_value.
31498 (Qdebug): New variable.
31499 (syms_of_eval): Initialize it.
31500
31501 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
31502
31503 * eval.c (Fprogn):
31504 * keyboard.c (Ftrack_mouse):
31505 * print.c (Fwith_output_to_temp_buffer):
31506 * window.c (Fsave_window_excursion): Doc fix.
31507
31508 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
31509
31510 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
31511
31512 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
31513
31514 * process.h (struct Lisp_Process): Turn slots infd, outfd,
31515 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
31516 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
31517 read_output_delay, and read_output_skip from Lisp_Objects to ints.
31518 Remove unused encoding_carryover.
31519 * process.c: Adjust all functions accordingly.
31520
31521 2007-07-12 Richard Stallman <rms@gnu.org>
31522
31523 * term.c: Include unistd.h only if HAVE_UNISTD_H.
31524
31525 2007-07-11 Jason Rumney <jasonr@gnu.org>
31526
31527 * makefile.w32-in (LIBS): Include OLE32.
31528
31529 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
31530 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
31531
31532 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
31533
31534 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
31535 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
31536 from a Lisp_Object into a bare pointer.
31537 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
31538 Adjust the code correspondingly.
31539
31540 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
31541
31542 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
31543 (term_show_mouse_face): Remove unused var `j'.
31544 (handle_one_term_event): Remove unused vars `i' and `j'.
31545 Don't cast return value of ttyname since it's not necessary.
31546
31547 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
31548
31549 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
31550 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
31551
31552 * fns.c (map_char_table): Use an array of int for `indices' rather than
31553 an array of Lisp_Objects (which are only ever integers anyway).
31554 (Fmap_char_table): Update caller.
31555 * lisp.h: Update prototype.
31556 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
31557 * fontset.c (Ffontset_info):
31558 * casetab.c (set_case_table): Update callers.
31559
31560 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
31561
31562 * keymap.c (struct accessible_keymaps_data)
31563 (struct where_is_internal_data): New structures.
31564 (accessible_keymaps_1, where_is_internal_1): Use them to change
31565 interface to adhere to the one used by map_keymap.
31566 (Faccessible_keymaps, where_is_internal): Use map_keymap.
31567 (accessible_keymaps_char_table, where_is_internal_2): Remove.
31568
31569 * keymap.h (map_keymap_function_t): More informative prototype.
31570
31571 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
31572
31573 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
31574 (looking_at_1): Don't change search_regs and last_thing_searched
31575 if `inhibit-changing-match-data' is non-nil.
31576 (string_match_1, search_buffer, set_search_regs): Likewise.
31577 (syms_of_search): Add Lisp level definition for
31578 `inhibit-changing-match-data' and set it to nil.
31579 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
31580 start and end of the match, instead of using values in search_regs.
31581
31582 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
31583
31584 * minibuf.c (Fcompleting_read): New value `confirm-only'
31585 for `require-match'.
31586
31587 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
31588
31589 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
31590 part of the 2007-06-27 change to syms_of_fileio.
31591
31592 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31593
31594 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
31595 Check WINDOWP before using XWINDOW. Consolidate return statements.
31596
31597 2007-06-27 Richard Stallman <rms@gnu.org>
31598
31599 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
31600
31601 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
31602
31603 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
31604
31605 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31606
31607 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
31608 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
31609 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
31610 (_free_internal, memalign): Use them.
31611 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
31612 Initialize to PTHREAD_MUTEX_INITIALIZER.
31613 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
31614 (morecore_nolock): Rename from morecore. All uses changed.
31615 Use only nolock versions of internal allocation functions.
31616 (_malloc_internal_nolock, _realloc_internal_nolock)
31617 (_free_internal_nolock): New functions created from
31618 _malloc_internal, _realloc_internal, and _free_internal.
31619 (_malloc_internal, _realloc_internal, _free_internal): Use them.
31620 Copy hook value to automatic variable before its use.
31621 (memalign): Copy hook value to automatic variable before its use.
31622
31623 2007-06-26 Kenichi Handa <handa@m17n.org>
31624
31625 * coding.c (Ffind_operation_coding_system): Docstring improved.
31626 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
31627
31628 2007-06-25 David Kastrup <dak@gnu.org>
31629
31630 * keymap.c (Fcurrent_active_maps): Add `position' argument.
31631 (Fwhere_is_internal): Adjust call to `current-active-maps' to
31632 cater for additional parameter.
31633
31634 * keymap.h: Adjust number of parameters to `current-active-maps'.
31635
31636 * doc.c (Fsubstitute_command_keys): Adjust call of
31637 `current-active-maps'.
31638
31639 2007-06-25 David Kastrup <dak@gnu.org>
31640
31641 * callint.c (Fcall_interactively): Make the parsing of interactive
31642 specs somewhat more readable.
31643
31644 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31645
31646 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
31647 to scroll bar gap also when bitmap fills fringe. Draw only foreground
31648 if extended background has already been filled.
31649
31650 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31651
31652 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
31653 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
31654
31655 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
31656 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
31657 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
31658 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
31659 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
31660 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
31661 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
31662 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
31663 Run timers during dialog popup.
31664 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
31665
31666 2007-06-21 Jason Rumney <jasonr@gnu.org>
31667
31668 * image.c (convert_mono_to_color_image): Swap fore and background.
31669
31670 2007-06-20 Jason Rumney <jasonr@gnu.org>
31671
31672 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
31673 (w32_free_bdf_font): Unmap memory not handle.
31674
31675 2007-06-20 Sam Steingold <sds@gnu.org>
31676
31677 * gmalloc.c (__morecore): Fix the declaration to comply with the
31678 definition.
31679
31680 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
31681
31682 * w32term.c (w32_delete_display): Remove leftover declaration.
31683 (w32_define_cursor, w32_initialize): Make static.
31684
31685 * w32.c (_wsa_errlist): Fix typo in error message.
31686 (init_environment): Ignore any environment variable from the
31687 registry having a null value.
31688
31689 2007-06-20 Glenn Morris <rgm@gnu.org>
31690
31691 * Makefile.in (LIBGIF): Default to -lgif.
31692
31693 2007-06-17 Jason Rumney <jasonr@gnu.org>
31694
31695 * w32menu.c (add_menu_item): Don't use multibyte string functions on
31696 unicode strings.
31697
31698 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
31699
31700 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
31701 Fix typo in docstring.
31702
31703 2007-06-16 Eli Zaretskii <eliz@gnu.org>
31704
31705 * w32menu.c (add_menu_item): Escape `&' characters in menu items
31706 and their keybindings.
31707
31708 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
31709
31710 * composite.c (update_compositions): Fix last fix.
31711
31712 2007-06-14 Jason Rumney <jasonr@gnu.org>
31713
31714 * w32.c (get_process_times_fn): New function pointer.
31715 (globals_of_w32): Intialize it if present in kernel32.dll.
31716 (w32_get_internal_run_time): New function.
31717
31718 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
31719
31720 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
31721
31722 * composite.c (update_compositions): Check the validness of
31723 compositions.
31724
31725 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31726
31727 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
31728 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
31729
31730 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
31731 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
31732
31733 * macgui.h (USE_MAC_TOOLBAR): New define.
31734
31735 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
31736 Return immediately unless popup is activated.
31737
31738 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
31739 background to scroll bar gap.
31740 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
31741 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
31742 scroll bars on frame edge. Check fringe background extension.
31743 Don't clear extended fringe background area.
31744 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
31745 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
31746 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
31747 [USE_MAC_TOOLBAR]: New macros.
31748 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
31749 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
31750 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
31751 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
31752 [USE_MAC_TOOLBAR]: New functions.
31753 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
31754 manually if previous repositioning has failed.
31755 (mac_handle_keyboard_event): Use precomputed event kind.
31756 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
31757 as tool bar item click. Handle mouse movement over tool bar items.
31758
31759 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
31760 toolbar_win_gravity.
31761 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
31762 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
31763 Add externs.
31764
31765 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
31766 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
31767
31768 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
31769
31770 * image.c (search_image_cache): Remove unused variable.
31771
31772 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
31773
31774 * xfns.c, xmenu.c: Link to xaw3d if available.
31775
31776 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31777
31778 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
31779 frame_foreground and frame_background.
31780
31781 * image.c (lookup_image): Save frame foreground and background colors.
31782 (search_image_cache): Check if saved and current frame colors match.
31783
31784 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
31785
31786 * regex.c (regex_compile): Remove the `regnum' counter.
31787 Use bufp->re_nsub instead. Add support for \(?N:RE\).
31788
31789 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
31790
31791 * term.c: Include intervals.h to declare Fget_text_property.
31792
31793 2007-06-10 Jason Rumney <jasonr@gnu.org>
31794
31795 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
31796
31797 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
31798
31799 * callint.c (Fcall_interactively):
31800 * editfns.c (Fdelete_and_extract_region):
31801 * fileio.c (Fread_file_name):
31802 * fns.c (Fmapconcat):
31803 * keyboard.c (cmd_error_internal):
31804 * keymap.c (Fkey_description):
31805 * lread.c (openp):
31806 * minibuf.c (read_minibuf):
31807 * search.c (wordify):
31808 * sunfns.c (sel_read):
31809 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
31810 * xfns.c (x_default_scroll_bar_color_parameter):
31811 * xmenu.c (menu_help_callback):
31812 * xselect.c (Fx_get_atom_name):
31813 * xterm.c (x_term_init): Use empty_unibyte_string.
31814
31815 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
31816
31817 * alloc.c (init_strings): Initialize canonical empty strings.
31818 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
31819 canonical empty string when the requested size is 0.
31820
31821 * emacs.c (empty_unibyte_string): Rename from empty_string.
31822 (empty_multibyte_string): New canonical empty string.
31823 (syms_of_emacs): Don't initialize empty_string.
31824
31825 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
31826 string, if appropriate.
31827 (empty_unibyte_string, empty_multibyte_string): New externs.
31828 (empty_string): Remove extern.
31829
31830 * lread.c (syms_of_lread): Use empty_unibyte_string.
31831
31832 2007-06-07 Jason Rumney <jasonr@gnu.org>
31833
31834 * s/ms-w32.h: Don't define HAVE_TZNAME.
31835
31836 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
31837
31838 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31839
31840 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
31841
31842 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
31843 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
31844
31845 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
31846 Don't call next handler.
31847 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
31848 Remove argument. Install handler to application.
31849 (set_frame_menubar): Don't change deep_p.
31850 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
31851 FRAME_OUTER_TO_INNER_DIFF_Y.
31852 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
31853 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
31854 [HAVE_DIALOGS]: New macros.
31855 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
31856 Use them.
31857 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
31858
31859 * macselect.c [MAC_OSX] (install_service_handler): Rename from
31860 init_service_handler. All callers changed. Return OSStatus value.
31861
31862 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
31863 All callers changed so as not to call SetPortWindowPort.
31864 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
31865 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
31866 mac_draw_string_common.
31867 (mac_draw_image_string_qd): Likewise.
31868 (mac_draw_string_common): Use them. Add INLINE.
31869 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
31870 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
31871 GetGlobalMouse.
31872 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
31873 and FRAME_OUTER_TO_INNER_DIFF_Y.
31874 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
31875 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
31876 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
31877 repositioning window to mac_handle_window_event.
31878 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
31879 saving window location to mac_handle_window_event
31880 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
31881 (install_menu_target_item_handler): Remove argument in extern.
31882 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
31883 Also accept command events.
31884 (do_keystroke): New function created from XTread_socket.
31885 (init_command_handler): Remove functions.
31886 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
31887 and save window location by kEventWindowShowing and kEventWindowHiding
31888 handlers here. Don't call next handler for window state change and
31889 focus events.
31890 (mac_handle_application_event, mac_handle_keyboard_event)
31891 [TARGET_API_MAC_CARBON]: New functions.
31892 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
31893 kEventWindowShowing and kEventWindowHiding events. Move installation
31894 of mouse, font, text input and menu target item handlers to
31895 install_application_handler.
31896 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
31897 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
31898 New function.
31899 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
31900 Register it.
31901 (XTread_socket) [TARGET_API_MAC_CARBON]:
31902 Consolidate SendEventToEventTarget calls.
31903 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
31904 Move application activation handler to mac_handle_application_event.
31905 Move keyboard handler to mac_handle_keyboard_event.
31906 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
31907 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
31908 init_command_handler. Call install_application_handler.
31909
31910 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
31911 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
31912
31913 2007-06-07 Glenn Morris <rgm@gnu.org>
31914
31915 * emacs.c (main): Use `emacs-copyright' in --version output.
31916
31917 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
31918
31919 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
31920
31921 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31922
31923 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
31924
31925 * macgui.h: Replace WindowPtr with WindowRef.
31926
31927 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
31928 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
31929 Replace ControlHandle with ControlRef.
31930 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
31931
31932 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
31933 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
31934 Replace ControlHandle with ControlRef.
31935 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
31936 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
31937
31938 * macterm.h (struct scroll_bar): Rename member control_handle_low
31939 and control_handle_high to control_ref_low and control_ref_high.
31940 All uses changed.
31941 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
31942 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
31943 respectively. All uses changed.
31944 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
31945 (install_window_handler, remove_window_handler): Replace WindowPtr
31946 with WindowRef in externs.
31947
31948 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
31949
31950 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
31951
31952 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
31953
31954 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
31955
31956 * frame.c (Fmouse_position, Fmouse_pixel_position):
31957 Condition on HAVE_GPM too.
31958
31959 * term.c (term_mouse_highlight): Remove unused variables.
31960 (Fterm_open_connection): Set gpm_zerobased to 1.
31961 (term_mouse_movement, term_mouse_click, handle_one_term_event):
31962 Use zero based co-ordinates.
31963 (handle_one_term_event): Report a drag as mouse movement too.
31964
31965 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
31966
31967 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
31968
31969 * image.c (search_image_cache): New function. Require background
31970 color match if background color is unspecified in the image spec.
31971 (uncache_image, lookup_image): Use it.
31972
31973 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
31974
31975 * window.c (Fshrink_window): Reflow docstring.
31976
31977 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
31978
31979 * Version 22.1 released.
31980
31981 2007-06-01 Richard Stallman <rms@gnu.org>
31982
31983 * xfns.c (x_encode_text): Add GCPRO.
31984
31985 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31986
31987 * xfns.c (x_set_name_internal): Save encoded name before
31988 x_encode_text in case string data is relocated.
31989
31990 2007-05-31 Richard Stallman <rms@gnu.org>
31991
31992 * buffer.c (syms_of_buffer): Doc fix.
31993
31994 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
31995
31996 * sysdep.c (init_sys_modes): Add rather than replace with
31997 O_NONBLOCK.
31998
31999 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
32000 term_mouse_moveto.
32001
32002 * termhooks.h (term_mouse_moveto): New extern.
32003
32004 * term.c (mouse_face_window): Rename...
32005 (Qmouse_face_window): ...to this.
32006 (term_show_mouse_face, term_clear_mouse_face)
32007 (term_mouse_highlight): Use Qmouse_face_window.
32008 (term_mouse_moveto): New function.
32009 (term_mouse_position): Make it work.
32010 (syms_of_term): Uncomment assignment to mouse_position_hook.
32011 Staticpro Qmouse_face_window.
32012
32013 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32014
32015 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
32016 around current_column call.
32017
32018 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
32019
32020 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
32021 * xdisp.c (next_element_from_buffer):
32022 * window.c (delete_window):
32023 * term.c (term_mouse_highlight):
32024 * msdos.c (getdefdir):
32025 * macterm.c (mac_create_bitmap_from_bitmap_data)
32026 (init_font_name_table):
32027 * fns.c (Fsxhash):
32028 * data.c (Fmake_local_variable):
32029 * ccl.c (ccl_driver): Likewise.
32030
32031 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32032
32033 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
32034 Call mac_wakeup_from_rne on window size change.
32035
32036 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
32037
32038 * image.c (uncache_image): Fix typo.
32039
32040 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
32041
32042 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
32043
32044 2007-05-22 Richard Stallman <rms@gnu.org>
32045
32046 * xterm.c (x_connection_closed): Remove NO_RETURN.
32047
32048 2007-05-22 Martin Rudalics <rudalics@gmx.at>
32049
32050 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
32051
32052 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
32053
32054 * image.c (uncache_image): New function.
32055 (Fimage_refresh): New function.
32056
32057 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
32058
32059 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
32060
32061 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
32062
32063 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
32064 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
32065
32066 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
32067
32068 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
32069 conditional on [HAVE_GPM_H].
32070
32071 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
32072
32073 * syntax.c (skip_chars): Update syntax-table only after we checked that
32074 the new location is valid.
32075
32076 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32077
32078 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
32079 mac_get_window_bounds.
32080
32081 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
32082
32083 * Makefile.in (LIBGPM): Allow it to be set from configure.
32084 If set then link Emacs with it.
32085
32086 * config.in: Regenerate.
32087
32088 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
32089 New externs.
32090
32091 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
32092 Include gpm.h.
32093 (handle_one_term_event, term_gpm): New externs.
32094
32095 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
32096 and allow it to be interrupted by SIGIO.
32097
32098 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
32099 (wait_reading_process_output): Wait on gpm_fd too.
32100 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
32101 (add_gpm_wait_descriptor_called_flag): New variable.
32102 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
32103
32104 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
32105 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
32106 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
32107 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
32108 (make_lispy_event): Add case GPM_CLICK_EVENT.
32109 (read_avail_input): Handle mouse input.
32110
32111 * term.c (write_glyphs_with_face): New function.
32112 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
32113 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
32114 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
32115 (mouse_face_face_id, term_gpm, pos_x, pos_y)
32116 (last_mouse_x, last_mouse_y): New variables.
32117 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
32118 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
32119 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
32120 (Fterm_close_connection): New functions.
32121 (term_init): Initialise mouse_face_window.
32122
32123 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
32124
32125 * xdisp.c (redisplay_window): If first window line is a
32126 continuation line, recompute the new window start instead of
32127 recentering.
32128
32129 2007-05-18 Glenn Morris <rgm@gnu.org>
32130
32131 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
32132 Suggested by Alfred M. Szmidt <ams@gnu.org>.
32133
32134 2007-05-17 Glenn Morris <rgm@gnu.org>
32135
32136 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
32137
32138 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32139
32140 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
32141 dead key repeat and up events.
32142
32143 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
32144
32145 * image.c (pbm_load): Check image size for monochrome pbm.
32146
32147 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
32148
32149 * xterm.c (XTread_socket): Revert last change.
32150
32151 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
32152
32153 * image.c (pbm_load): Correctly check image size for greyscale pbm.
32154
32155 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
32156
32157 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
32158
32159 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
32160 mixup (YAILOM).
32161
32162 2007-05-07 Andreas Schwab <schwab@suse.de>
32163
32164 * keymap.c (Flookup_key): Fix typo in last change.
32165
32166 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
32167
32168 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
32169 mapping for unibyte strings.
32170
32171 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32172
32173 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
32174 (Fx_popup_dialog) [MAC_OSX]: Likewise.
32175
32176 2007-04-29 Richard Stallman <rms@gnu.org>
32177
32178 * insdel.c (replace_range): For undo, record insertion first.
32179
32180 2007-04-29 Andreas Schwab <schwab@suse.de>
32181
32182 * lisp.h (VECSIZE): Use OFFSETOF.
32183
32184 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32185
32186 * xdisp.c (try_window_reusing_current_matrix): Fix number of
32187 disabled lines.
32188
32189 2007-04-28 Richard Stallman <rms@gnu.org>
32190
32191 * lread.c (read_escape): In a string, \s is always space.
32192
32193 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
32194
32195 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
32196
32197 * gtkutil.c (xg_update_menubar, create_menus): Create empty
32198 submenu for menu bar items.
32199
32200 See ChangeLog.10 for earlier changes.
32201
32202 ;; Local Variables:
32203 ;; coding: utf-8
32204 ;; End:
32205
32206 Copyright (C) 2007-2011 Free Software Foundation, Inc.
32207
32208 This file is part of GNU Emacs.
32209
32210 GNU Emacs is free software: you can redistribute it and/or modify
32211 it under the terms of the GNU General Public License as published by
32212 the Free Software Foundation, either version 3 of the License, or
32213 (at your option) any later version.
32214
32215 GNU Emacs is distributed in the hope that it will be useful,
32216 but WITHOUT ANY WARRANTY; without even the implied warranty of
32217 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32218 GNU General Public License for more details.
32219
32220 You should have received a copy of the GNU General Public License
32221 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.