* process.c: Rename or move locals to avoid shadowing.
[bpt/emacs.git] / src / ChangeLog
1 2011-03-20 Paul Eggert <eggert@cs.ucla.edu>
2
3 * process.c: Rename or move locals to avoid shadowing.
4 (list_processes_1, Fmake_network_process):
5 (read_process_output_error_handler, exec_sentinel_error_handler):
6 Rename or move locals.
7
8 2011-03-19 Paul Eggert <eggert@cs.ucla.edu>
9
10 Make tparam.h and terminfo.c consistent.
11 * cm.c (tputs, tgoto, BC, UP): Remove extern decls. Include
12 tparam.h instead, since it declares them.
13 * cm.h (PC): Remove extern decl; tparam.h now does this.
14 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
15 * terminfo.c: Include tparam.h, to check interfaces.
16 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
17 (tparam): Adjust signature to match interface in tparam.h;
18 this removes some undefined behavior. Check that outstring and len
19 are zero, which they always are with Emacs.
20 * tparam.h (PC, BC, UP): New extern decls.
21
22 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
23 (xftfont_open): Rename locals to avoid shadowing.
24
25 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
26 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
27 (OTF_TAG_SYM): Omit macro if not needed.
28 (ftfont_list): Remove unused local.
29 (get_adstyle_property, ftfont_pattern_entity):
30 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
31 Rename locals to avoid shadowing.
32
33 * xfont.c (xfont_list_family): Mark var as initialized.
34
35 * xml.c (make_dom): Now static.
36
37 * composite.c (composition_compute_stop_pos): Rename local to
38 avoid shadowing.
39 (composition_reseat_it): Remove unused locals.
40 (find_automatic_composition, composition_adjust_point): Likewise.
41 (composition_update_it): Mark var as initialized.
42 (find_automatic_composition): Mark vars as initialized,
43 with a FIXME (Bug#8290).
44
45 2011-03-18 Paul Eggert <eggert@cs.ucla.edu>
46
47 character.h: Rename locals to avoid shadowing.
48 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
49 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
50 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
51 (BUF_DEC_POS): Be more systematic about renaming local temporaries
52 to avoid shadowing.
53
54 * textprop.c (property_change_between_p): Remove; unused.
55
56 * intervals.c (interval_start_pos): Now static.
57
58 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
59
60 * atimer.c (start_atimer, append_atimer_lists, set_alarm): Rename
61 locals to avoid shadowing.
62
63 * sound.c (wav_play, au_play, Fplay_sound_internal):
64 Fix pointer signedness.
65 (alsa_choose_format): Remove unused local var.
66 (wav_play): Initialize a variable to 0, to prevent undefined
67 behavior (Bug#8278).
68
69 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
70
71 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
72
73 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
74 * sysdep.c (sys_subshell): Likewise.
75 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
76
77 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
78 This should get cleaned up, so that child_setup has the
79 same signature on all platforms.
80
81 * callproc.c (call_process_cleanup): Now static.
82 (relocate_fd): Rename locals to avoid shadowing.
83
84 2011-03-17 Eli Zaretskii <eliz@gnu.org>
85
86 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
87
88 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
89
90 Fix more problems found by GCC 4.5.2's static checks.
91
92 * process.c (make_serial_process_unwind, send_process_trap):
93 (sigchld_handler): Now static.
94
95 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
96 That way, the code declares only the vars that it needs.
97 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
98 * s/cygwin.h (PTY_ITERATION): Likewise.
99 * s/darwin.h (PTY_ITERATION): Likewise.
100 * s/gnu-linux.h (PTY_ITERATION): Likewise.
101
102 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
103 * process.c (allocate_pty): Don't declare stb unless it's needed.
104
105 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
106 (CONSTANTLIM): Remove; unused.
107 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
108 Define only if needed.
109
110 * unexelf.c (unexec): Name an expression,
111 to avoid gcc -Wbad-function-cast warning.
112 Use a different way to cause a compilation error if anyone uses
113 n rather than nn, a way that does not involve shadowing.
114 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
115
116 * deps.mk (unexalpha.o): Remove; unused.
117
118 New file unexec.h, the (simple) interface for unexec (Bug#8267).
119 * unexec.h: New file.
120 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
121 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
122 Depend on unexec.h.
123 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
124 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
125 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
126 Change as necessary to match prototype in unexec.h.
127
128 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
129 shadowing.
130 (back_comment, skip_chars): Mark vars as initialized.
131
132 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
133 Rename locals to avoid shadowing.
134
135 * lread.c (read1): Rewrite so as not to use empty "else".
136 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
137
138 * print.c (Fredirect_debugging_output): Fix pointer signedess.
139
140 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
141 warning when compiling print.c.
142
143 * font.c (font_unparse_fcname): Abort in an "impossible" situation
144 instead of using an uninitialized var.
145 (font_sort_entities): Mark var as initialized.
146
147 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
148
149 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
150 pointers to constants.
151 (font_parse_fcname): Remove unused vars.
152 (font_delete_unmatched): Now static.
153 (font_get_spec): Remove; unused.
154 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
155 (font_update_drivers, Ffont_get_glyphs, font_add_log):
156 Rename or move locals to avoid shadowing.
157
158 * fns.c (require_nesting_list, require_unwind): Now static.
159 (Ffillarray): Rename locals to avoid shadowing.
160
161 * floatfns.c (domain_error2): Define only if needed.
162 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
163
164 * alloc.c (mark_backtrace): Move decl from here ...
165 * lisp.h: ... to here, so that it can be checked.
166
167 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
168 (Fdefvar): Rewrite so as not to use empty "else".
169 (lisp_indirect_variable): Name an expression,
170 to avoid gcc -Wbad-function-cast warning.
171 (Fdefvar): Rename locals to avoid shadowing.
172
173 * callint.c (quotify_arg, quotify_args): Now static.
174 (Fcall_interactively): Rename locals to avoid shadowing.
175 Use const pointer when appropriate.
176
177 * lisp.h (get_system_name, get_operating_system_release):
178 Move decls here, to check interfaces.
179 * process.c (get_operating_system_release): Move decl to lisp.h.
180 * xrdb.c (get_system_name): Likewise.
181 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
182 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
183 some of which prompt warnings from gcc -Wbad-function-cast.
184 (Fformat_time_string, Fencode_time, Finsert_char):
185 (Ftranslate_region_internal, Fformat):
186 Rename or remove local vars to avoid shadowing.
187 (Ftranslate_region_internal): Mark var as initialized.
188
189 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
190 avoid shadowing.
191
192 * lisp.h (eassert): Check that the argument compiles, even if
193 ENABLE_CHECKING is not defined.
194
195 * data.c (Findirect_variable): Name an expression, to avoid
196 gcc -Wbad-function-cast warning.
197 (default_value, arithcompare, arith_driver, arith_error): Now static.
198 (store_symval_forwarding): Rename local to avoid shadowing.
199 (Fmake_variable_buffer_local, Fmake_local_variable): Mark
200 variables as initialized.
201 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
202
203 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
204 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
205 Rename locals to avoid shadowing.
206 (mark_stack): Move local variables into the #ifdef region where
207 they're used.
208 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
209 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
210 needed otherwise.
211 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
212 (GC_STRING_CHARS): Remove; not used.
213 (Fmemory_limit): Cast sbrk's returned value to char *.
214
215 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
216 avoids undefined behavior in theory.
217
218 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
219
220 Use functions, not macros, for up- and down-casing (Bug#8254).
221 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
222 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
223 to use the following functions instead of these macros.
224 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
225 EMACS_INT, since callers assume the returned value fits in int.
226 (upcase1): Likewise, for UPCASE_TABLE.
227 (uppercasep, lowercasep, upcase): New static inline functions.
228 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
229 the race-condition problem in the old DOWNCASE.
230
231 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
232 Rename locals to avoid shadowing.
233 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
234 (regex_compile, re_search_2, re_match_2_internal):
235 Remove unused local vars.
236 (FREE_VAR): Rewrite so as not to use empty "else",
237 which gcc can warn about.
238 (regex_compile, re_match_2_internal): Mark locals as initialized.
239 (RETALLOC_IF): Define only if needed.
240 (WORDCHAR_P): Likewise. This one is never needed, but is used
241 only in a comment talking about a compiler bug, so put inside
242 the #if 0 of that comment.
243 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
244 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
245 Remove; unused.
246
247 * search.c (boyer_moore): Rename locals to avoid shadowing.
248 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
249 (PREV_CHAR_BOUNDARY): Likewise.
250
251 * search.c (simple_search): Remove unused var.
252
253 * dired.c (compile_pattern): Move decl from here ...
254 * lisp.h: ... to here, so that it can be checked.
255 (struct re_registers): New forward decl.
256
257 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
258
259 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
260 All uses changed.
261 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
262 Rename locals to avoid shadowing.
263 (Fvertical_motion): Mark locals as initialized.
264
265 * casefiddle.c (casify_object, casify_region): Now static.
266 (casify_region): Mark local as initialized.
267
268 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
269
270 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
271 New macros, so that the caller can use some names other than
272 gcpro1, gcpro2, etc.
273 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
274 of the new macros.
275 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
276 argument, for consistency with GCPRO2_VAR, etc: it is now the
277 prefix of the variable, not the variable itself. All uses
278 changed.
279 * dired.c (directory_files_internal, file_name_completion):
280 Rename locals to avoid shadowing.
281
282 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
283 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
284 dired.c's scmp function, had undefined behavior.
285 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
286 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
287 * buffer.h: ... to here, because these macros use current_buffer,
288 and the new implementation with inline functions needs to have
289 current_buffer in scope now, rather than later when the macros
290 are used.
291 (downcase, upcase1): New static inline functions.
292 (DOWNCASE, UPCASE1): Reimplement using these functions.
293 This avoids undefined behavior in expressions like
294 DOWNCASE (x) == DOWNCASE (y), which previously suffered
295 from race conditions in accessing the global variables
296 case_temp1 and case_temp2.
297 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
298 * lisp.h (case_temp1, case_temp2): Remove their decls.
299 * character.h (ASCII_CHAR_P): Move from here ...
300 * lisp.h: ... to here, so that the inline functions mentioned
301 above can use them.
302
303 * dired.c (directory_files_internal_unwind): Now static.
304
305 * fileio.c (file_name_as_directory, directory_file_name):
306 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
307 Now static.
308 (file_name_as_directory): Use const pointers when appropriate.
309 (Fexpand_file_name): Likewise. In particular, newdir might
310 point at constant storage, so make it a const pointer.
311 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
312 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
313 signedness issues.
314 (Fset_file_times, Finsert_file_contents, auto_save_error):
315 Rename locals to avoid shadowing.
316
317 * minibuf.c (choose_minibuf_frame_1): Now static.
318 (Ftry_completion, Fall_completions): Rename or remove locals
319 to avoid shadowing.
320
321 * marker.c (bytepos_to_charpos): Remove; unused.
322
323 * lisp.h (verify_bytepos, count_markers): New decls,
324 so that gcc does not warn that these functions aren't declared.
325
326 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
327 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
328 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
329 (copy_text): Remove unused local var.
330
331 * filelock.c (within_one_second): Now static.
332 (lock_file_1): Rename local to avoid shadowing.
333
334 * buffer.c (fix_overlays_before): Mark locals as initialized.
335 (fix_start_end_in_overlays): Likewise. This function should be
336 simplified by using pointers-to-pointers, but that's a different
337 matter.
338 (switch_to_buffer_1): Now static.
339 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
340 (report_overlay_modification): Rename locals to avoid shadowing.
341
342 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
343 Fix pointer signedness issue.
344 (sys_subshell): Mark local as volatile if checking for lint,
345 to suppress a gcc -Wclobbered warning that does not seem to be right.
346 (MAXPATHLEN): Define only if needed.
347
348 * process.c (serial_open, serial_configure): Move decls from here ...
349 * systty.h: ... to here, so that they can be checked.
350
351 * fns.c (get_random, seed_random): Move extern decls from here ...
352 * lisp.h: ... to here, so that they can be checked.
353
354 * sysdep.c (reset_io): Now static.
355 (wait_for_termination_signal): Remove; unused.
356
357 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
358 (copy_keymap_item, append_key, push_text_char_description):
359 Now static.
360 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
361 (DENSE_TABLE_SIZE): Remove; unused.
362 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
363 (describe_map_tree):
364 Rename locals to avoid shadowing.
365
366 * keyboard.c: Declare functions static if they are not used elsewhere.
367 (echo_char, echo_dash, cmd_error, top_level_2):
368 (poll_for_input, handle_async_input): Now static.
369 (read_char, kbd_buffer_get_event, make_lispy_position):
370 (make_lispy_event, make_lispy_movement, apply_modifiers):
371 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
372 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
373 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
374 (read_key_sequence, read_char): Mark locals as initialized.
375 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
376
377 * keyboard.h (make_ctrl_char): New decl.
378 (mark_kboards): Move decl here ...
379 * alloc.c (mark_kboards): ... from here.
380
381 * lisp.h (force_auto_save_soon): New decl.
382
383 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
384 (DEFINE_DUMMY_FUNCTION): New macro.
385 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
386 Use it.
387 (main): Add casts to avoid warnings
388 if GCC considers string literals to be constants.
389
390 * lisp.h (fatal_error_signal): Add decl, since it's exported.
391
392 * dbusbind.c: Pointer signedness fixes.
393 (xd_signature, xd_append_arg, xd_initialize):
394 (Fdbus_call_method, Fdbus_call_method_asynchronously):
395 (Fdbus_method_return_internal, Fdbus_method_error_internal):
396 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
397 (Fdbus_register_signal): Use SSDATA when the context wants char *.
398
399 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
400 if GCC considers string literals to be constants.
401 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
402
403 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
404
405 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
406 (print_preprocess, print_object): New macro to fix last change.
407
408 * print.c (print_preprocess): Don't forget font objects.
409
410 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
411
412 * emacs.c (USAGE3): Doc fixes.
413
414 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
415
416 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
417 structure.
418
419 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
420
421 * lisp.h (VWindow_system, Qfile_name_history):
422 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
423 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
424 (w32_system_caret_x, w32_system_caret_y): Declare extern.
425
426 * w32select.c: Don't #include "keyboard.h".
427 (run_protected): Add extern declaration for waiting_for_input.
428
429 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
430 * w32console.c (detect_input_pending, read_input_pending)
431 (encode_terminal_code):
432 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
433 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
434 (w32_system_caret_y, Qfile_name_history):
435 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
436 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
437 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
438 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
439 * w32proc.c (Qlocal, report_file_error):
440 * w32term.c (Vwindow_system, updating_frame):
441 * w32uniscribe.c (initialized, uniscribe_font_driver):
442 Remove unneeded extern declarations.
443
444 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
445
446 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
447
448 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
449
450 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
451 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
452 These macros can no longer be used for assignment.
453
454 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Assign
455 struct members directly, instead of using BUF_BEGV etc.
456 (record_buffer_markers, fetch_buffer_markers): New functions for
457 recording and fetching special buffer markers.
458 (set_buffer_internal_1, set_buffer_temp): Use them.
459
460 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
461
462 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
463
464 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
465 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
466
467 * xdisp.c (hscroll_window_tree):
468 (reconsider_clip_changes): Use PT instead of BUF_PT.
469
470 2011-03-13 Eli Zaretskii <eliz@gnu.org>
471
472 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
473 $(EMACS_ROOT)/lib/intprops.h.
474
475 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
476
477 Fix more problems found by GCC 4.5.2's static checks.
478
479 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
480 to unsigned char * to avoid compiler diagnostic.
481 (xg_free_frame_widgets): Make it clear that a local variable is
482 needed only if USE_GTK_TOOLTIP.
483 (gdk_window_get_screen): Make it clear that this macro is needed
484 only if USE_GTK_TOOLTIP.
485 (int_gtk_range_get_value): New function, which avoids a diagnostic
486 from gcc -Wbad-function-cast.
487 (xg_set_toolkit_scroll_bar_thumb): Use it.
488 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
489 diagnostic from gcc -Wbad-function-cast.
490 (get_utf8_string, xg_get_file_with_chooser):
491 Rename locals to avoid shadowing.
492 (create_dialog): Move locals to avoid shadowing.
493
494 * xgselect.c (xg_select): Remove unused var.
495
496 * image.c (four_corners_best): Mark locals as initialized.
497 (gif_load): Initialize transparent_p to zero (Bug#8238).
498 Mark another local as initialized.
499 (my_png_error, my_error_exit): Mark with NO_RETURN.
500
501 * image.c (clear_image_cache): Now static.
502 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
503 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
504 (x_edge_detection): Remove unnecessary cast that
505 gcc -Wbad-function-cast diagnoses.
506 (gif_load): Fix pointer signedness.
507 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
508 (jpeg_load, gif_load): Rename locals to avoid shadowing.
509
510 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
511
512 Improve quality of tests for time stamp overflow.
513 For example, without this patch (encode-time 0 0 0 1 1
514 1152921504606846976) returns the obviously-bogus value (-948597
515 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
516 reports time overflow. See
517 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
518 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
519 * editfns.c: Include limits.h and intprops.h.
520 (TIME_T_MIN, TIME_T_MAX): New macros.
521 (time_overflow): Move earlier, to before first use.
522 (hi_time, lo_time): New functions, for an accurate test for
523 out-of-range times.
524 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
525 (Fget_internal_run_time): Don't assume time_t fits in int.
526 (make_time): Use list2 instead of Fcons twice.
527 (Fdecode_time): More accurate test for out-of-range times.
528 (check_tm_member): New function.
529 (Fencode_time): Use it, to test for out-of-range times.
530 (lisp_time_argument): Don't rely on undefined left-shift and
531 right-shift behavior when checking for time stamp overflow.
532
533 * editfns.c (time_overflow): New function, refactoring common code.
534 (Fformat_time_string, Fdecode_time, Fencode_time):
535 (Fcurrent_time_string): Use it.
536
537 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
538 * dired.c (make_time): Move to ...
539 * editfns.c (make_time): ... here.
540 * systime.h: Note the move.
541
542 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
543
544 * fringe.c (update_window_fringes): Remove unused variables.
545
546 * unexmacosx.c (copy_data_segment): Also copy __got section.
547 (Bug#8223)
548
549 2011-03-12 Eli Zaretskii <eliz@gnu.org>
550
551 * termcap.c [MSDOS]: Include "msdos.h".
552 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
553 Constify `char *' arguments and their references according to
554 prototypes in tparam.h.
555
556 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
557
558 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
559 Adapt all references accordingly.
560
561 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
562
563 2011-03-11 Tom Tromey <tromey@redhat.com>
564
565 * buffer.c (syms_of_buffer): Remove obsolete comment.
566
567 2011-03-11 Eli Zaretskii <eliz@gnu.org>
568
569 * termhooks.h (encode_terminal_code): Declare prototype.
570
571 * msdos.c (encode_terminal_code): Don't declare prototype.
572
573 * term.c (encode_terminal_code): Now external again, used by
574 w32console.c and msdos.c.
575
576 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)): Depend
577 on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
578
579 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
580
581 Fix some minor problems found by GCC 4.5.2's static checks.
582
583 * fringe.c (update_window_fringes): Mark locals as initialized
584 (Bug#8227).
585 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
586
587 * alloc.c (mark_fringe_data): Move decl from here ...
588 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
589 to check its interface.
590 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
591
592 * fontset.c (free_realized_fontset): Now static.
593 (Fset_fontset_font): Rename local to avoid shadowing.
594 (fontset_font): Mark local as initialized.
595 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
596
597 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
598
599 * xselect.c (x_disown_buffer_selections): Remove; not used.
600 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
601 (x_own_selection, Fx_disown_selection_internal): Rename locals
602 to avoid shadowing.
603 (x_handle_dnd_message): Remove local to avoid shadowing.
604
605 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
606 so that the caller can use some name other than gcpro1.
607 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
608 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
609 (Fx_backspace_delete_keys_p):
610 Use them to avoid shadowing, and rename vars to avoid shadowing.
611 (x_decode_color, x_set_name, x_window): Now static.
612 (Fx_create_frame): Add braces to silence GCC warning.
613 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
614 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
615 Remove unused locals.
616 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
617 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
618 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
619 macros.
620
621 * xterm.h (x_mouse_leave): New decl.
622
623 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
624 Remove unused functions.
625 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
626 (x_calc_absolute_position): Now static.
627 (XTread_socket): Don't define label "out" unless it's used.
628 Don't declare local "event" unless it's used.
629 (x_iconify_frame, x_free_frame_resources): Don't declare locals
630 unless they are used.
631 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
632 (x_fatal_error_signal): Remove; not used.
633 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
634 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
635 (x_error_catcher, x_connection_closed, x_error_handler):
636 (x_error_quitter, xembed_send_message, x_iconify_frame):
637 (my_log_handler): Rename locals to avoid shadowing.
638 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
639 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
640
641 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font): Rename
642 or move locals to avoid shadowing.
643 (tty_defined_color, merge_face_heights): Now static.
644 (free_realized_faces_for_fontset): Remove; not used.
645 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
646 does not deduce is never used uninitialized.
647 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
648 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
649
650 * terminal.c (store_terminal_param): Now static.
651
652 * xmenu.c (menu_highlight_callback): Now static.
653 (set_frame_menubar): Remove unused local.
654 (xmenu_show): Rename parameter to avoid shadowing.
655 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
656 since they might point to immutable storage.
657 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
658 since it's unused otherwise.
659
660 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
661 Add a FIXME, since the code still doesn't look right. (Bug#8215)
662 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
663 avoids a gcc -Wuninitialized diagnostic.
664 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
665 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
666 does not deduce are never used uninitialized.
667
668 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
669
670 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
671 * window.c (window_loop, size_window):
672 (run_window_configuration_change_hook, enlarge_window): Likewise.
673
674 * window.c (display_buffer): Now static.
675 (size_window): Mark variables that gcc -Wuninitialized
676 does not deduce are never used uninitialized.
677 * window.h (check_all_windows): New decl, to forestall
678 gcc -Wmissing-prototypes diagnostic.
679 * dispextern.h (bidi_dump_cached_states): Likewise.
680
681 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
682 shadowing.
683 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
684 Include <limits.h>.
685 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
686 and to avoid gcc -Wuninitialized warning.
687 (load_charset_map): Mark variables that gcc -Wuninitialized
688 does not deduce are never used uninitialized.
689 (load_charset): Abort instead of using uninitialized var (Bug#8229).
690
691 * coding.c (coding_set_source, coding_set_destination):
692 Use "else { /* comment */ }" rather than "else /* comment */;"
693 for clarity, and to avoid gcc -Wempty-body warning.
694 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
695 a block, when the outer 'i' will do.
696 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
697 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
698 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
699 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
700 (Fdecode_sjis_char, Fdefine_coding_system_internal):
701 Rename locals to avoid shadowing.
702 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
703 * coding.c (emacs_mule_char, encode_invocation_designation):
704 Now static, since they're not used elsewhere.
705 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
706 (decode_coding_object, encode_coding_object, detect_coding_system):
707 (decode_coding_emacs_mule): Mark variables that gcc
708 -Wuninitialized does not deduce are never used uninitialized.
709 (detect_coding_iso_2022): Initialize a local variable that might
710 be used uninitialized. Leave a FIXME because it's not clear that
711 this initialization is needed. (Bug#8211)
712 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
713 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
714 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
715 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
716 Remove unused macros.
717
718 * category.c (hash_get_category_set): Remove unused local var.
719 (copy_category_table): Now static, since it's not used elsewhere.
720 * character.c (string_count_byte8): Likewise.
721
722 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
723 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
724
725 * chartab.c (copy_sub_char_table): Now static, since it's not used
726 elsewhere.
727 (sub_char_table_ref_and_range, char_table_ref_and_range):
728 Rename locals to avoid shadowing.
729 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
730
731 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
732 (BIDI_BOB): Remove unused macro.
733
734 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
735 deduce are never used uninitialized.
736 * term.c (encode_terminal_code): Likewise.
737
738 * term.c (encode_terminal_code): Now static. Remove unused local.
739
740 * tparam.h: New file.
741 * term.c, tparam.h: Include it.
742 * deps.mk (term.o, tparam.o): Depend on tparam.h.
743 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
744 Move these decls to tparam.h, and make them agree with what
745 is actually in tparam.c. The previous trick of using incompatible
746 decls in different modules does not conform to the C standard.
747 All callers of tparam changed to use tparam's actual API.
748 * tparam.c (tparam1, tparam, tgoto):
749 Use const pointers where appropriate.
750
751 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
752 * cm.h (struct cm): Likewise.
753 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
754 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
755 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
756 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
757 (turn_on_face, init_tty): Likewise.
758 * termchar.h (struct tty_display_info): Likewise.
759
760 * term.c (term_mouse_position): Rename local to avoid shadowing.
761
762 * alloc.c (mark_ttys): Move decl from here ...
763 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
764
765 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
766
767 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
768
769 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
770
771 * search.c (compile_pattern_1): Remove argument regp, unused since
772 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
773 (compile_pattern): Don't pass it.
774
775 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
776
777 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
778 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
779 for ! HAVE_GTK3.
780 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
781
782 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
783
784 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
785 gdk_window_get_screen, gdk_window_get_geometry,
786 gdk_x11_window_lookup_for_display and GDK_KEY_g.
787 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
788 (xg_get_pixbuf_from_pixmap): New function.
789 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
790 to Pixmap, take frame as parameter, remove GdkColormap parameter.
791 Call xg_get_pixbuf_from_pixmap instead of
792 gdk_pixbuf_get_from_drawable.
793 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
794 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
795 (xg_check_special_colors): Use GtkStyleContext and its functions
796 for HAVE_GTK3.
797 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
798 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
799 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
800 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes): Call
801 gtk_widget_get_preferred_size.
802 (xg_frame_resized): gdk_window_get_geometry only takes 5
803 parameters.
804 (xg_win_to_widget, xg_event_is_for_menubar): Call
805 gdk_x11_window_lookup_for_display.
806 (xg_set_widget_bg): New function.
807 (delete_cb): New function.
808 (xg_create_frame_widgets): connect delete-event to delete_cb.
809 Call xg_set_widget_bg. Only set backgrund pixmap for ! HAVE_GTK3
810 (xg_set_background_color): Call xg_set_widget_bg.
811 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
812 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
813 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
814 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
815 if ! HAVE_GTK3.
816 (update_frame_tool_bar): Call gtk_widget_hide.
817 (xg_initialize): Use GDK_KEY_g.
818
819 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
820 if ! HAVE_GTK3
821 (x_session_initialize): Call gdk_x11_set_sm_client_id.
822
823 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
824 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
825 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
826
827 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
828
829 * w32xfns.c (select_palette): Check success of RealizePalette against
830 GDI_ERROR, not zero.
831
832 2011-03-07 Ben Key <bkey76@gmail.com>
833
834 * w32fns.c (FILE_NAME_COMBO_BOX, FILE_NAME_LIST): Define.
835 (file_dialog_callback): Fix locating the window handle of the File Name
836 text field. After disabling it, set focus on the list control.
837 (Fx_file_dialog): If only_dir_p is non-nil, set the text of the File
838 Name text field to "Current Directory" if it does not already have
839 another value. (Bug#8181)
840
841 2011-03-07 Adrian Robert <Adrian.B.Robert@gmail.com>
842
843 * nsterm.m (ns_draw_window_cursor): Fix handling of "cursor_width"
844 parameter for hbar cursors. Based on a patch by Ben Key
845 <bkey76@gmail.com>.
846
847 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
848
849 * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06
850 change.
851
852 2011-03-06 Paul Eggert <eggert@cs.ucla.edu>
853
854 current_column: Now returns EMACS_INT, fixing some iftc
855 that was introduced in the 2002-06-02 change "temporarily"; see
856 <http://lists.gnu.org/archive/html/emacs-devel/2002-06/msg00039.html>.
857 * bytecode.c (Fbyte_code): Don't cast current_column () to int.
858 * cmds.c (internal_self_insert): Likewise.
859 * indent.c (Fcurrent_column): Likewise.
860 * keymap.c (describe_command): Likewise.
861 * minibuf.c (read_minibuf): Likewise.
862 * indent.c (Fcurrent_indentation): Don't cast position_indentation ()
863 to int.
864 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
865 Likewise.
866 * cmds.c (internal_self_insert): Declare locals to be EMACS_INT,
867 not int or double, if they might contain a column number.
868 * indent.c (current_column, Findent_to, indented_beyond_p):
869 (compute_motion, vmotion): Likewise.
870 * keymap.c (describe_command): Likewise.
871 * xdisp.c (pint2str): Likewise.
872 * indent.c (last_known_column): Now EMACS_INT, not int.
873 * minibuf.c (minibuf_prompt_width): Likewise.
874 * indent.c (current_column, current_column_1, position_indentation):
875 Return EMACS_INT, not double.
876 * lisp.h (current_column): Likewise.
877 * indent.c (indented_beyond_p): Last arg is now EMACS_INT, not double.
878 All callers changed.
879 * lisp.h (indented_beyond_p): Likewise.
880
881 * minibuf.c (minibuf_prompt, minibuf_prompt_width): Move here
882 from xdisp.c, and make static, since these are used only here.
883 * window.h, xdisp.c (minibuf_prompt, minibuf_prompt_width):
884 Remove decls.
885
886 * cmds.c (internal_self_insert): Reindent to match Emacs style.
887 * xdisp.c (redisplay_window): Likewise.
888
889 * xdisp.c: Rename or move local decls to avoid shadowing.
890 (init_iterator, handle_fontified_prop, handle_single_display_spec):
891 (message_dolog, message_with_string, redisplay_internal):
892 (redisplay_window, try_window_reusing_current_matrix, try_window_id):
893 (compute_line_metrics, highlight_trailing_whitespace, cursor_row_p):
894 (display_line, display_string, rows_from_pos_range):
895 (mouse_face_from_buffer_pos, note_mouse_highlight, expose_frame):
896 Rename or move local decls.
897 * xdisp.c (BUILD_GLYPHLESS_GLYPH_STRING): Omit unused local var.
898 (produce_glyphless_glyph): Make a pointer "const"
899 since it might point to immutable storage.
900 (update_window_cursor): Now static, since it's not used elsewhere.
901 (SKIP_GLYPHS): Removed unused macro.
902
903 2011-03-06 Michael Shields <shields@msrl.com> (tiny change)
904
905 * window.c (Fnext_window): Doc fix. (Bug#5567)
906
907 2011-03-05 Chong Yidong <cyd@stupidchicken.com>
908
909 * nsterm.m (ns_draw_window_cursor): Fix typo in 2011-02-23 commit.
910
911 2011-03-02 Ken Brown <kbrown@cornell.edu>
912
913 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
914
915 2011-03-02 Paul Eggert <eggert@cs.ucla.edu>
916
917 Work around some portability problems with symlinks.
918
919 * fileio.c (Fmake_symbolic_link): Treat ENOSYS specially, and
920 generate a special message for it. Suggested by Eli Zaretskii in
921 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00995.html>.
922 (Frename_file, Fmake_symbolic_link, Ffile_symlink_p):
923 Simplify the code by assuming that the readlink and symlink calls
924 exist, even if they always fail on this host.
925 (Ffile_readable_p): Likewise, for fifos.
926 * config.in: Regenerate.
927
928 2011-02-27 Chong Yidong <cyd@stupidchicken.com>
929
930 * frame.c (store_frame_param): Don't store value directly in
931 buffer_list and buried_buffer_list; copy the list and remove dead
932 buffers (Bug#7898).
933
934 2011-02-27 Eli Zaretskii <eliz@gnu.org>
935
936 * msdos.c (readlink) [DJGPP < 2.04]: New stub function.
937
938 * msdos.h (readlink) [DJGPP < 2.04]: Declare prototype.
939
940 * w32.c (symlink, readlink): New stub functions.
941
942 2011-02-27 Paul Eggert <eggert@cs.ucla.edu>
943
944 * scroll.c (CHECK_BOUNDS): #define only if GLYPH_DEBUG.
945 This avoids a gcc warning in some configurations.
946
947 * frame.c (x_set_screen_gamma): Rename local to avoid shadowing.
948
949 * frame.h: Avoid gcc -Wmissing-prototypes diagnostics.
950 (set_menu_bar_lines, x_get_resource_string): New decls.
951 * msdos.c (set_menu_bar_lines): Omit decl.
952
953 * dispextern.h (struct glyph): Make u.img_id int, not unsigned.
954 It's always given int values and used as an int. This suppresses
955 a gcc "comparison of unsigned expression >= 0" warning in some
956 configurations.
957
958 * dispnew.c: Rename locals to avoid shadowing.
959 (update_text_area, scrolling_window, update_frame_1): Rename locals.
960
961 2011-02-26 Paul Eggert <eggert@cs.ucla.edu>
962
963 * dispnew.c: Fix problems uncovered by gcc -Wstrict-prototypes.
964 (copy_glyph_row_contents): Remove; not used.
965 (frame_row_to_window, check_current_matrix_flags):
966 (window_change_signal): Now static, since they're not used elsewhere.
967 (check_current_matrix_flags): Surround with "#if 0", since its
968 only use is in a comment. Maybe both the comment and the "#if 0"
969 stuff should be removed?
970
971 * dispnew.c: Fix problem uncovered by gcc -Wunused-variable.
972 (adjust_frame_glyphs_for_window_redisplay): Make 'w' local to the
973 contexts that actually need it.
974
975 2011-02-26 Eli Zaretskii <eliz@gnu.org>
976
977 * s/msdos.h (HAVE_LSTAT): Define for DJGPP >= 2.04.
978 (lstat): Define for DJGPP < 2.04.
979
980 2011-02-25 Paul Eggert <eggert@cs.ucla.edu>
981
982 * dired.c (Ffile_attributes): Increase size of modes from 10 to 12
983 as per recent filemodestring API change. Reported by Jonas Öster in
984 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg01069.html>.
985
986 2011-02-23 Ben Key <bkey76@gmail.com>
987
988 * nsterm.m (ns_draw_window_cursor): Obey the cursor_width argument
989 directly, for bar cursors.
990
991 2011-02-23 Chong Yidong <cyd@stupidchicken.com>
992
993 * xdisp.c (set_frame_cursor_types): Don't write an undefined value
994 into the frame's cursor_width.
995
996 2011-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
997
998 * print.c (print_object): Never print old-style backquotes.
999 Obey escapeflag for hash tables as well.
1000
1001 2011-02-23 Kenichi Handa <handa@m17n.org>
1002
1003 * font.c (font_open_entity): Be sure to set scaled_pixel_size.
1004 (font_find_for_lface): Check if attrs[LFACE_HEIGHT_INDEX] is integer.
1005
1006 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
1007
1008 * dired.c (Ffile_attributes): Simplify and avoid #ifdef.
1009
1010 2011-02-22 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
1011
1012 * lread.c (openp): Correct Boolean typo in last commit.
1013
1014 2011-02-22 Adrian Robert <Adrian.B.Robert@gmail.com>
1015
1016 * nsterm.m (EmacsView-keyDown:): Don't pass shift-only-modified
1017 key to Emacs, treat as unmodified (go to input manager processing).
1018
1019 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
1020
1021 Assume S_ISLNK etc. work, since gnulib supports this.
1022 * config.in: Regenerate.
1023 * dired.c (lstat): Remove.
1024 (file_name_completion): Assume S_ISDIR works.
1025 (file_name_completion_stat): Assume S_ISLNK works.
1026 Do not bother calling stat unless lstat says it's a symlink.
1027 * fileio.c (S_ISLNK, S_ISFIFO, S_ISREG, lstat): Remove.
1028 (Fcopy_file): Assume S_ISREG and S_ISLNK work.
1029 (check_writable, Ffile_writable_p, Fset_file_times):
1030 Assume S_ISDIR works.
1031 (Ffile_readable_p): Use S_IFIFO, not S_ISFIFO, to guess whether
1032 fifos exist.
1033 (Ffile_regular_p, Finsert_file_contents): Assume S_ISREG works.
1034 * filelock.c (S_ISLNK): Remove.
1035 * lread.c (openp): Assume S_ISDIR works.
1036 * xrdb.c (S_ISDIR): Remove.
1037
1038 2011-02-21 Eli Zaretskii <eliz@gnu.org>
1039
1040 * makefile.w32-in ($(BLD)/filemode.$(O)): Move recipe to
1041 lib/makefile.w32-in.
1042 ($(BLD)/dired.$(O)): Depend on $(EMACS_ROOT)/lib/filemode.h.
1043 (GLOBAL_SOURCES): Remove filemode.c.
1044 (OBJ1): Remove $(BLD)/filemode.$(O).
1045
1046 2011-02-21 Paul Eggert <eggert@cs.ucla.edu>
1047
1048 Import filemode module from gnulib.
1049 * Makefile.in (base_obj): Remove filemode.o, as it's now in ../lib.
1050 * deps.mk (dired.o): Depend on ../lib/filemode.h, too.
1051 (filemode.o): Remove; this is now in ../lib.
1052 * dired.c: Include <filemode.h>.
1053 (filemodestring): Remove now-redundant decl.
1054 * config.in: Regenerate.
1055
1056 2011-02-20 Eli Zaretskii <eliz@gnu.org>
1057
1058 * makefile.w32-in ($(BLD)/fns.$(O)): Depend on
1059 $(EMACS_ROOT)/lib/md5.h and on stamp_BLD.
1060
1061 2011-02-20 Christoph Scholtes <cschol2112@gmail.com>
1062
1063 * makefile.w32-in: Remove md5.$(O).
1064 ($(BLD)/md5.$(O)): Remove prerequisites, moved to
1065 lib/makefile.w32-in.
1066
1067 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
1068
1069 Import crypto/md5 and stdint modules from gnulib.
1070 * Makefile.in (base_obj): Remove md5.o, since this file
1071 is in lib now.
1072 * config.in: Regenerate.
1073 * md5.h, md5.h: Move to ../lib.
1074 * deps.mk (md5.o): Remove.
1075 (fns.o): Depend on ../lib/md5.h, not md5.h.
1076
1077 2011-02-19 Eli Zaretskii <eliz@gnu.org>
1078
1079 * termcap.c (tputs): Don't declare baud_rate.
1080
1081 * s/msdos.h (strtold): Define to _strtold.
1082
1083 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1084
1085 * process.c (Fstart_process, Fmake_serial_process)
1086 (Fmake_network_process, server_accept_connection):
1087 Use empty_unibyte_string.
1088
1089 * alloc.c (make_unibyte_string): Don't SET_UNIBYTE redundantly.
1090
1091 * lread.c (Qdir_ok): New constant.
1092 (syms_of_lread): Initialize it.
1093 (openp): Don't ignore directories if the predicate returns dir-ok.
1094
1095 2011-02-18 Eli Zaretskii <eliz@gnu.org>
1096
1097 * xdisp.c (display_line): Fix the change made for bug#7939.
1098
1099 * terminal.c (create_terminal): Use default-keyboard-coding-system
1100 and default-terminal-coding-system to initialize coding systems of
1101 the new terminal. (Bug#7840)
1102
1103 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1104
1105 * lisp.h (BYTE_MARK_STACK): New macro.
1106 (mark_byte_stack): Only declare if BYTE_MARK_STACK is set.
1107
1108 * bytecode.c (BYTE_MAINTAIN_TOP): New macros.
1109 (struct byte_stack): Only define `top' and `bottom' if used.
1110 (mark_byte_stack): Only define if used.
1111 (BEFORE_POTENTIAL_GC, AFTER_POTENTIAL_GC): Nullify if BYTE_MAINTAIN_TOP
1112 is not set.
1113 (Fbyte_code): Don't set `bottom' unless BYTE_MAINTAIN_TOP is set.
1114
1115 * term.c (OUTPUT_IF): Use OUTPUT.
1116
1117 * alloc.c (Fgarbage_collect): When using stack scanning, don't
1118 redundantly scan byte-code stacks, catchlist, and handlerlist.
1119
1120 2011-02-17 Jan Djärv <jan.h.d@swipnet.se>
1121
1122 * nsfns.m (Fx_create_frame, ns_set_name_as_filename)
1123 (Fns_read_file_name): Replace B_ with BVAR.
1124
1125 * nsterm.m (ns_term_init): Use KVAR.
1126
1127 2011-02-16 Eli Zaretskii <eliz@gnu.org>
1128
1129 * msdos.c (internal_terminal_init): Use KVAR.
1130
1131 * w32fns.c (Fx_create_frame): Use KVAR.
1132
1133 * w32term.c (w32_create_terminal): Use KVAR.
1134
1135 * s/ms-w32.h (MODE_LINE_BINARY_TEXT): Remove.
1136 (getloadavg): Declare prototype which was removed from lisp.h.
1137
1138 * xdisp.c (decode_mode_spec): Don't use MODE_LINE_BINARY_TEXT.
1139
1140 * fileio.c (Finsert_file_contents, Fwrite_region):
1141 Remove references to buffer_file_type.
1142 (syms_of_fileio): Don't intern and staticpro
1143 find-buffer-file-type.
1144
1145 * callproc.c (syms_of_callproc): Remove references to
1146 buffer_file_type.
1147
1148 * buffer.c (reset_buffer_local_variables): Don't set
1149 buffer_file_type.
1150 (init_buffer_once): Likewise.
1151 (syms_of_buffer): Don't define buffer-file-type.
1152
1153 * buffer.h (struct buffer): Remove buffer_file_type.
1154
1155 2011-02-16 Tom Tromey <tromey@parfait>
1156
1157 * callint.c (Fcall_interactively): Update for change to field names.
1158 * doc.c (Fsubstitute_command_keys): Update for change to field names.
1159 * cmds.c (Fself_insert_command): Update for change to field names.
1160 * keymap.c (Fcurrent_active_maps, Fkey_binding)
1161 (Fdescribe_buffer_bindings): Update for change to field names.
1162 * macros.c (Fstart_kbd_macro, end_kbd_macro, Fend_kbd_macro)
1163 (store_kbd_macro_char, Fcall_last_kbd_macro, Fexecute_kbd_macro):
1164 Update for change to field names.
1165 * keyboard.c (echo_char, echo_dash, echo_now, cancel_echoing)
1166 (echo_length, echo_truncate, cmd_error, command_loop_1)
1167 (read_char, kbd_buffer_store_event_hold, make_lispy_event)
1168 (menu_bar_items, tool_bar_items, read_char_minibuf_menu_prompt)
1169 (read_key_sequence, Fcommand_execute, Fexecute_extended_command)
1170 (Fdiscard_input, init_kboard, init_keyboard, mark_kboards):
1171 Update for change to field names.
1172 * xfns.c (Fx_create_frame): Update for change to field names.
1173 * xterm.c (x_connection_closed, x_term_init): Update for change to
1174 field names.
1175 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN, init_tty):
1176 Update for change to field names.
1177 * window.c (window_scroll_pixel_based, window_scroll_line_based):
1178 Update for change to field names.
1179 * frame.c (make_frame_without_minibuffer, Fhandle_switch_frame)
1180 (delete_frame): Update for change to field names.
1181 * lisp.h (DEFVAR_KBOARD): Update for change to field names.
1182 * keyboard.h (struct kboard): Rename all Lisp_Object fields.
1183 (KBOARD_INTERNAL_FIELD, KVAR): New macros.
1184
1185 2011-02-16 Tom Tromey <tromey@redhat.com>
1186
1187 * lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR.
1188
1189 2011-02-16 Tom Tromey <tromey@parfait>
1190
1191 * xfns.c (x_create_tip_frame, Fx_show_tip): Replace B_ with BVAR.
1192 * xfaces.c (compute_char_face): Replace B_ with BVAR.
1193 * xdisp.c (pos_visible_p, init_iterator, reseat_1)
1194 (message_dolog, update_echo_area, ensure_echo_area_buffers)
1195 (with_echo_area_buffer, setup_echo_area_for_printing)
1196 (set_message_1, update_menu_bar, update_tool_bar)
1197 (text_outside_line_unchanged_p, redisplay_internal)
1198 (try_scrolling, try_cursor_movement, redisplay_window)
1199 (try_window_reusing_current_matrix, row_containing_pos)
1200 (try_window_id, get_overlay_arrow_glyph_row, display_line)
1201 (Fcurrent_bidi_paragraph_direction, display_mode_lines)
1202 (decode_mode_spec_coding, decode_mode_spec, display_count_lines)
1203 (get_window_cursor_type, note_mouse_highlight): Replace B_ with
1204 BVAR.
1205 * window.c (window_display_table, unshow_buffer, window_loop)
1206 (window_min_size_2, set_window_buffer, Fset_window_buffer)
1207 (select_window, Fforce_window_update, temp_output_buffer_show)
1208 (Fset_window_configuration, save_window_save): Replace B_ with
1209 BVAR.
1210 * w32fns.c (x_create_tip_frame, Fx_show_tip, Fw32_shell_execute):
1211 Replace B_ with BVAR.
1212 * undo.c (record_point, record_insert, record_delete)
1213 (record_marker_adjustment, record_first_change)
1214 (record_property_change, Fundo_boundary, truncate_undo_list)
1215 (Fprimitive_undo): Replace B_ with BVAR.
1216 * syntax.h (Vstandard_syntax_table, CURRENT_SYNTAX_TABLE)
1217 (SETUP_BUFFER_SYNTAX_TABLE): Replace B_ with BVAR.
1218 * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table)
1219 (Fset_syntax_table, Fmodify_syntax_entry, skip_chars)
1220 (skip_syntaxes, scan_lists): Replace B_ with BVAR.
1221 * search.c (compile_pattern_1, compile_pattern, looking_at_1)
1222 (string_match_1, fast_looking_at, newline_cache_on_off)
1223 (search_command, search_buffer, simple_search, boyer_moore)
1224 (Freplace_match): Replace B_ with BVAR.
1225 * process.c (get_process, list_processes_1, Fstart_process)
1226 (Fmake_serial_process, Fmake_network_process)
1227 (read_process_output, send_process, exec_sentinel)
1228 (status_notify, setup_process_coding_systems): Replace B_ with
1229 BVAR.
1230 * print.c (PRINTDECLARE, PRINTPREPARE, PRINTFINISH, printchar)
1231 (strout, print_string, temp_output_buffer_setup, print_object):
1232 Replace B_ with BVAR.
1233 * msdos.c (IT_frame_up_to_date): Replace B_ with BVAR.
1234 * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer):
1235 Replace B_ with BVAR.
1236 * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted)
1237 (set_marker_both, set_marker_restricted_both, unchain_marker):
1238 Replace B_ with BVAR.
1239 * lread.c (readchar, unreadchar, openp, readevalloop)
1240 (Feval_buffer, Feval_region): Replace B_ with BVAR.
1241 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE): Replace B_ with BVAR.
1242 * keymap.c (Flocal_key_binding, Fuse_local_map)
1243 (Fcurrent_local_map, push_key_description)
1244 (Fdescribe_buffer_bindings): Replace B_ with BVAR.
1245 * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt)
1246 (read_key_sequence): Replace B_ with BVAR.
1247 * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Replace B_ with BVAR.
1248 * intervals.c (set_point_both, get_local_map): Replace B_ with
1249 BVAR.
1250 * insdel.c (check_markers, insert_char, insert_1_both)
1251 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
1252 (adjust_after_replace, replace_range, del_range_2)
1253 (modify_region, prepare_to_modify_buffer)
1254 (Fcombine_after_change_execute): Replace B_ with BVAR.
1255 * indent.c (buffer_display_table, recompute_width_table)
1256 (width_run_cache_on_off, current_column, scan_for_column)
1257 (Findent_to, position_indentation, compute_motion, vmotion):
1258 Replace B_ with BVAR.
1259 * fringe.c (get_logical_cursor_bitmap)
1260 (get_logical_fringe_bitmap, update_window_fringes): Replace B_
1261 with BVAR.
1262 * frame.c (make_frame_visible_1): Replace B_ with BVAR.
1263 * font.c (font_at): Replace B_ with BVAR.
1264 * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5):
1265 Replace B_ with BVAR.
1266 * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer)
1267 (unlock_buffer): Replace B_ with BVAR.
1268 * fileio.c (Fexpand_file_name, Ffile_directory_p)
1269 (Ffile_regular_p, Ffile_selinux_context)
1270 (Fset_file_selinux_context, Ffile_modes, Fset_file_modes)
1271 (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind)
1272 (Finsert_file_contents, choose_write_coding_system)
1273 (Fwrite_region, build_annotations, Fverify_visited_file_modtime)
1274 (Fset_visited_file_modtime, auto_save_error, auto_save_1)
1275 (Fdo_auto_save, Fset_buffer_auto_saved): Replace B_ with BVAR.
1276 * editfns.c (region_limit, Fmark_marker, save_excursion_save)
1277 (save_excursion_restore, Fprevious_char, Fchar_before)
1278 (general_insert_function, Finsert_char, Finsert_byte)
1279 (make_buffer_string_both, Finsert_buffer_substring)
1280 (Fcompare_buffer_substrings, subst_char_in_region_unwind)
1281 (subst_char_in_region_unwind_1, Fsubst_char_in_region)
1282 (Ftranslate_region_internal, save_restriction_restore)
1283 (Fchar_equal): Replace B_ with BVAR.
1284 * dispnew.c (Fframe_or_buffer_changed_p): Replace B_ with BVAR.
1285 * dispextern.h (WINDOW_WANTS_MODELINE_P)
1286 (WINDOW_WANTS_HEADER_LINE_P): Replace B_ with BVAR.
1287 * dired.c (directory_files_internal): Replace B_ with BVAR.
1288 * data.c (swap_in_symval_forwarding, set_internal)
1289 (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p):
1290 Replace B_ with BVAR.
1291 * composite.c (fill_gstring_header)
1292 (composition_compute_stop_pos, composition_adjust_point)
1293 (Ffind_composition_internal): Replace B_ with BVAR.
1294 * coding.c (decode_coding, encode_coding)
1295 (make_conversion_work_buffer, decode_coding_gap)
1296 (decode_coding_object, encode_coding_object)
1297 (Fdetect_coding_region, Ffind_coding_systems_region_internal)
1298 (Funencodable_char_position, Fcheck_coding_systems_region):
1299 Replace B_ with BVAR.
1300 * cmds.c (Fself_insert_command, internal_self_insert): Replace B_
1301 with BVAR.
1302 * charset.c (Ffind_charset_region): Replace B_ with BVAR.
1303 * character.h (FETCH_CHAR_ADVANCE, INC_BOTH, DEC_BOTH)
1304 (ASCII_CHAR_WIDTH): Replace B_ with BVAR.
1305 * character.c (chars_in_text, Fget_byte): Replace B_ with BVAR.
1306 * category.h (Vstandard_category_table): Replace B_ with BVAR.
1307 * category.c (check_category_table, Fcategory_table)
1308 (Fset_category_table, char_category_set): Replace B_ with BVAR.
1309 * casetab.c (Fcurrent_case_table, set_case_table): Replace B_ with
1310 BVAR.
1311 * casefiddle.c (casify_object, casify_region): Replace B_ with
1312 BVAR.
1313 * callproc.c (Fcall_process, Fcall_process_region): Replace B_
1314 with BVAR.
1315 * callint.c (check_mark, Fcall_interactively): Replace B_ with
1316 BVAR.
1317 * bytecode.c (Fbyte_code): Replace B_ with BVAR.
1318 * buffer.h (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE, BVAR): Replace B_
1319 with BVAR.
1320 * buffer.c (Fbuffer_live_p, Fget_file_buffer)
1321 (get_truename_buffer, Fget_buffer_create)
1322 (clone_per_buffer_values, Fmake_indirect_buffer, reset_buffer)
1323 (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name)
1324 (Fbuffer_local_value, buffer_lisp_local_variables)
1325 (Fset_buffer_modified_p, Frestore_buffer_modified_p)
1326 (Frename_buffer, Fother_buffer, Fbuffer_enable_undo)
1327 (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1)
1328 (set_buffer_temp, Fset_buffer, set_buffer_if_live)
1329 (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer)
1330 (Fbuffer_swap_text, swapfield_, Fbuffer_swap_text)
1331 (Fset_buffer_multibyte, swap_out_buffer_local_variables)
1332 (record_overlay_string, overlay_strings, init_buffer_once)
1333 (init_buffer, syms_of_buffer): Replace B_ with BVAR.
1334
1335 2011-02-16 Eli Zaretskii <eliz@gnu.org>
1336
1337 * xdisp.c (redisplay_internal): Resynchronize `w' if the selected
1338 window is changed inside calls to do_pending_window_change.
1339 (Bug#8020)
1340
1341 2011-02-16 Paul Eggert <eggert@cs.ucla.edu>
1342
1343 Remove no-longer needed getloadavg symbols.
1344 * m/alpha.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1345 * m/amdx86-64.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1346 * m/ia64.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1347 * m/ibms390.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1348 * m/macppc.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1349 * m/sparc.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1350 * m/template.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1351 * m/vax.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1352 * s/aix4-2.h (KERNEL_FILE, LDAV_SYMBOL): Remove.
1353 * s/bsd-common.h (KERNEL_FILE, LDAV_SYMBOL): Remove #undef.
1354 * s/hpux10-20.h (KERNEL_FILE, LOAD_AVE_TYPE, LOAD_AVE_CVT):
1355 (LDAV_SYMBOL): Remove.
1356 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Remove.
1357 * s/usg5-4-common.h (KERNEL_FILE, LDAV_SYMBOL): Remove.
1358
1359 Import getloadavg module from gnulib.
1360 * deps.mk (getloadavg.o): Remove; gnulib now does this.
1361 * lisp.h (getloadavg) [!defined HAVE_GETLOADAVG]: Remove; gnulib
1362 now does this.
1363 * src/s/freebsd.h (HAVE_GETLOADAVG): Remove; gnulib now does this.
1364 * src/s/netbsd.h (HAVE_GETLOADAVG): Likewise.
1365 * config.in: Regenerate.
1366
1367 2011-02-15 Eli Zaretskii <eliz@gnu.org>
1368
1369 * nsfns.m (ns_set_name_as_filename, Fns_read_file_name): Use B_.
1370
1371 2011-02-14 Michael Welsh Duggan <md5i@md5i.com>
1372
1373 * print.c (float_to_string): Ensure that a decimal point is
1374 printed if using dtoastr (Bug#8033).
1375
1376 2011-02-14 Eli Zaretskii <eliz@gnu.org>
1377
1378 * msdos.c (IT_frame_up_to_date):
1379 * s/msdos.h (MODE_LINE_BINARY_TEXT): Use B_ for the MS-DOS build.
1380
1381 * dired.c (directory_files_internal):
1382 * fileio.c (Finsert_file_contents):
1383 * insdel.c (prepare_to_modify_buffer):
1384 * xdisp.c (pos_visible_p):
1385 * s/ms-w32.h (MODE_LINE_BINARY_TEXT):
1386 * w32fns.c (Fw32_shell_execute, Fx_show_tip, x_create_tip_frame):
1387 Use B_ for the MS-Windows build.
1388
1389 2011-02-14 Jan Djärv <jan.h.d@swipnet.se>
1390
1391 * xrdb.c (x_load_resources): For LUCID and XFT, don't put a
1392 resource that specifies helvetica for menus and dialogs.
1393
1394 * xmenu.c (apply_systemfont_to_dialog): Apply to *dialog.font.
1395 (apply_systemfont_to_menu): Set resources *menubar*font and
1396 *popup*font. Remove defflt.
1397 (set_frame_menubar, create_and_show_popup_menu):
1398 Call apply_systemfont_to_menu before lw_create_widget.
1399
1400 2011-02-14 Tom Tromey <tromey@redhat.com>
1401
1402 * buffer.c (init_buffer_once, syms_of_buffer): Use B_ in DOS_NT case.
1403
1404 * keyboard.h: Remove obsolete comment.
1405
1406 2011-02-14 Tom Tromey <tromey@parfait>
1407
1408 * composite.c (fill_gstring_header)
1409 (composition_compute_stop_pos, composition_adjust_point)
1410 (Ffind_composition_internal): Use B_.
1411 * intervals.c (set_point_both, get_local_map): Use B_.
1412 * callproc.c (Fcall_process, Fcall_process_region): Use B_.
1413 * process.c (get_process, list_processes_1, Fstart_process)
1414 (Fmake_serial_process, Fmake_network_process)
1415 (read_process_output, send_process, exec_sentinel)
1416 (status_notify, setup_process_coding_systems): Use B_.
1417 * bytecode.c (Fbyte_code): Use B_.
1418 * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table)
1419 (Fset_syntax_table, Fmodify_syntax_entry, skip_chars)
1420 (skip_syntaxes, scan_lists): Use B_.
1421 * lread.c (readchar, unreadchar, openp, readevalloop)
1422 (Feval_buffer, Feval_region): Use B_.
1423 * print.c (printchar, strout, print_string, PRINTDECLARE)
1424 (PRINTPREPARE, PRINTFINISH, temp_output_buffer_setup)
1425 (print_object): Use B_.
1426 * font.c (font_at): Use B_.
1427 * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5):
1428 Use B_.
1429 * callint.c (check_mark, Fcall_interactively): Use B_.
1430 * editfns.c (region_limit, Fmark_marker, save_excursion_save)
1431 (save_excursion_restore, Fprevious_char, Fchar_before)
1432 (general_insert_function, Finsert_char, Finsert_byte)
1433 (make_buffer_string_both, Finsert_buffer_substring)
1434 (Fcompare_buffer_substrings, subst_char_in_region_unwind)
1435 (subst_char_in_region_unwind_1, Fsubst_char_in_region)
1436 (Ftranslate_region_internal, save_restriction_restore)
1437 (Fchar_equal): Use B_.
1438 * data.c (swap_in_symval_forwarding, set_internal)
1439 (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p):
1440 Use B_.
1441 * undo.c (record_point, record_insert, record_delete)
1442 (record_marker_adjustment, record_first_change)
1443 (record_property_change, Fundo_boundary, truncate_undo_list)
1444 (Fprimitive_undo): Use B_.
1445 * search.c (compile_pattern_1, compile_pattern, looking_at_1)
1446 (string_match_1, fast_looking_at, newline_cache_on_off)
1447 (search_command, search_buffer, simple_search, boyer_moore)
1448 (Freplace_match): Use B_.
1449 * indent.c (buffer_display_table, recompute_width_table)
1450 (width_run_cache_on_off, current_column, scan_for_column)
1451 (Findent_to, position_indentation, compute_motion, vmotion):
1452 Use B_.
1453 * casefiddle.c (casify_object, casify_region): Use B_.
1454 * casetab.c (Fcurrent_case_table, set_case_table): Use B_.
1455 * cmds.c (Fself_insert_command, internal_self_insert): Use B_.
1456 * fileio.c (Fexpand_file_name, Ffile_directory_p)
1457 (Ffile_regular_p, Ffile_selinux_context)
1458 (Fset_file_selinux_context, Ffile_modes, Fset_file_modes)
1459 (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind)
1460 (Finsert_file_contents, choose_write_coding_system)
1461 (Fwrite_region, build_annotations, Fverify_visited_file_modtime)
1462 (Fset_visited_file_modtime, auto_save_error, auto_save_1)
1463 (Fdo_auto_save, Fset_buffer_auto_saved): Use B_.
1464 * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer): Use B_.
1465 * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted)
1466 (set_marker_both, set_marker_restricted_both, unchain_marker):
1467 Use B_.
1468 * insdel.c (check_markers, insert_char, insert_1_both)
1469 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
1470 (adjust_after_replace, replace_range, del_range_2)
1471 (modify_region, prepare_to_modify_buffer)
1472 (Fcombine_after_change_execute): Use B_.
1473 * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer)
1474 (unlock_buffer): Use B_.
1475 * keymap.c (Flocal_key_binding, Fuse_local_map)
1476 (Fcurrent_local_map, push_key_description)
1477 (Fdescribe_buffer_bindings): Use B_.
1478 * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt)
1479 (read_key_sequence): Use B_.
1480 * fringe.c (get_logical_cursor_bitmap)
1481 (get_logical_fringe_bitmap, update_window_fringes): Use B_.
1482 * xfns.c (x_create_tip_frame, Fx_show_tip): Use B_.
1483 * xfaces.c (compute_char_face): Use B_.
1484 * character.c (chars_in_text, Fget_byte): Use B_.
1485 * category.c (check_category_table, Fcategory_table)
1486 (Fset_category_table, char_category_set): Use B_.
1487 * coding.c (decode_coding, encode_coding)
1488 (make_conversion_work_buffer, decode_coding_gap)
1489 (decode_coding_object, encode_coding_object)
1490 (Fdetect_coding_region, Ffind_coding_systems_region_internal)
1491 (Funencodable_char_position, Fcheck_coding_systems_region):
1492 Use B_.
1493 * charset.c (Ffind_charset_region): Use B_.
1494 * window.c (window_display_table, unshow_buffer, window_loop)
1495 (window_min_size_2, set_window_buffer, Fset_window_buffer)
1496 (select_window, Fforce_window_update, temp_output_buffer_show)
1497 (Fset_window_configuration, save_window_save): Use B_.
1498 * xdisp.c (pos_visible_p, init_iterator, reseat_1)
1499 (message_dolog, update_echo_area, ensure_echo_area_buffers)
1500 (with_echo_area_buffer, setup_echo_area_for_printing)
1501 (set_message_1, update_menu_bar, update_tool_bar)
1502 (text_outside_line_unchanged_p, redisplay_internal)
1503 (try_scrolling, try_cursor_movement, redisplay_window)
1504 (try_window_reusing_current_matrix, row_containing_pos)
1505 (try_window_id, get_overlay_arrow_glyph_row, display_line)
1506 (Fcurrent_bidi_paragraph_direction, display_mode_lines)
1507 (decode_mode_spec_coding, decode_mode_spec, display_count_lines)
1508 (get_window_cursor_type, note_mouse_highlight): Use B_.
1509 * frame.c (make_frame_visible_1): Use B_.
1510 * dispnew.c (Fframe_or_buffer_changed_p): Use B_.
1511 * dispextern.h (WINDOW_WANTS_HEADER_LINE_P)
1512 (WINDOW_WANTS_MODELINE_P): Use B_.
1513 * syntax.h (Vstandard_syntax_table): Update.
1514 (CURRENT_SYNTAX_TABLE, SETUP_BUFFER_SYNTAX_TABLE): Use B_.
1515 * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Update.
1516 (TEXT_PROP_MEANS_INVISIBLE): Use B_.
1517 * character.h (FETCH_CHAR_ADVANCE): Update.
1518 (INC_BOTH, ASCII_CHAR_WIDTH, DEC_BOTH): Use B_.
1519 * category.h (Vstandard_category_table): Update.
1520 * lisp.h (DEFVAR_BUFFER_DEFAULTS): Update for change to field
1521 names.
1522 (DOWNCASE_TABLE, UPCASE_TABLE): Use B_.
1523 * buffer.c (swapfield_): New macro.
1524 (Fbuffer_swap_text): Use swapfield_ where appropriate.
1525 (Fbuffer_live_p, Fget_file_buffer, get_truename_buffer)
1526 (Fget_buffer_create, clone_per_buffer_values)
1527 (Fmake_indirect_buffer, reset_buffer)
1528 (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name)
1529 (Fbuffer_local_value, buffer_lisp_local_variables)
1530 (Fset_buffer_modified_p, Frestore_buffer_modified_p)
1531 (Frename_buffer, Fother_buffer, Fbuffer_enable_undo)
1532 (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1)
1533 (set_buffer_temp, Fset_buffer, set_buffer_if_live)
1534 (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer)
1535 (Fbuffer_swap_text, Fset_buffer_multibyte)
1536 (swap_out_buffer_local_variables, record_overlay_string)
1537 (overlay_strings, init_buffer_once, init_buffer, syms_of_buffer):
1538 Use B_.
1539 * buffer.h (struct buffer): Rename all Lisp_Object fields.
1540 (BUFFER_INTERNAL_FIELD, B_): New macro.
1541 (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE): Use B_.
1542
1543 2011-02-14 Jan Djärv <jan.h.d@swipnet.se>
1544
1545 * gtkutil.c (xg_tool_bar_menu_proxy): Handle case when tool bar label
1546 is null.
1547
1548 2011-02-13 Jan Djärv <jan.h.d@swipnet.se>
1549
1550 * callproc.c (Fcall_process):
1551 * process.c (create_process): Replace Gtk with GConf in SIGPIPE
1552 comment.
1553
1554 2011-02-12 Martin Rudalics <rudalics@gmx.at>
1555
1556 * window.c (select_window): Check inhibit_point_swap argument when
1557 deciding whether to return immediately.
1558
1559 2011-02-12 Jan Djärv <jan.h.d@swipnet.se>
1560
1561 * nsterm.m (setFrame, initFrame): Make sure pixel_height doesn't become
1562 zero (Bug#7348).
1563
1564 2011-02-12 Chong Yidong <cyd@stupidchicken.com>
1565
1566 * config.in (TERMINFO): New definition.
1567
1568 * s/netbsd.h: Use it to choose between terminfo and termcap
1569 (Bug#7642).
1570
1571 2011-02-12 Paul Eggert <eggert@cs.ucla.edu>
1572
1573 * md5.c (md5_process_bytes): Use sizeof, not __alignof__.
1574 The difference doesn't matter here, in practice, and sizeof is
1575 more portable to non-GCC compilers. Also, this makes the code
1576 match the already-existing comment.
1577
1578 2011-02-12 Andreas Schwab <schwab@linux-m68k.org>
1579
1580 * process.c (create_process): Reset SIGPIPE handler in the child.
1581 * callproc.c (Fcall_process): Likewise. (Bug#5238)
1582
1583 2011-02-12 Eli Zaretskii <eliz@gnu.org>
1584
1585 * xdisp.c <this_line_min_pos>: New variable.
1586 (move_it_in_display_line_to): Record in this_line_min_pos the
1587 smallest position iterated across.
1588 (display_line): Use this_line_min_pos to record the smallest
1589 position in the line even if it is not displayed due to
1590 hscrolling. (Bug#7939)
1591
1592 2011-02-12 Paul Eggert <eggert@cs.ucla.edu>
1593
1594 Port to Sun C 5.11, which has __attribute__ ((__aligned (N))).
1595 * md5.h (ATTRIBUTE_ALIGNED): New macro.
1596 (struct md5_ctx): Use it.
1597
1598 Port to Solaris 10, which doesn't support FC_HINT_STYLE.
1599 * xftfont.c (FC_HINT_STYLE): #define to "hintstyle" if not
1600 defined.
1601 * xsettings.c (parse_settings, apply_xft_settings): Don't assume
1602 FC_HINT_STYLE is supported.
1603
1604 2011-02-11 Jan Djärv <jan.h.d@swipnet.se>
1605
1606 * xterm.c (x_set_frame_alpha): Access data before it is free:d.
1607 Make sure we don't do x_catch_errors twice.
1608
1609 2011-02-10 Glenn Morris <rgm@gnu.org>
1610
1611 * Makefile.in (really-lwlib): Depend on globals.h, for parallel builds.
1612
1613 2011-02-09 Eli Zaretskii <eliz@gnu.org>
1614
1615 * makefile.w32-in (GLOBAL_SOURCES, SOME_MACHINE_OBJECTS, obj):
1616 New macros.
1617 (globals.h, gl-stamp): New targets.
1618 (clean): Clean gl-stamp and globals.h.
1619
1620 2011-02-09 Andreas Schwab <schwab@linux-m68k.org>
1621
1622 * Makefile.in (gl-stamp): Create globals.h here.
1623 (globals.h): Don't do it here.
1624 (mostlyclean): Clean globals.h and gl-stamp.
1625
1626 2011-02-09 Paul Eggert <eggert@cs.ucla.edu>
1627
1628 * Makefile.in ($(otherobj)): Depend on globals.h.
1629 Otherwise 'make -j10' failed on my host, because the build lacked
1630 necessary dependencies, e.g., vm-limit.o depends on globals.h.
1631
1632 2011-02-08 Tom Tromey <tromey@redhat.com>
1633
1634 * Makefile.in (NS_OBJC_OBJ): New variable.
1635 (base_obj): Rename from 'obj'.
1636 (obj): New variable.
1637 (globals.h, gl-stamp, $(obj)): New targets.
1638 (GLOBAL_SOURCES): New variable.
1639 * globals.h: Remove.
1640 * nsselect.m (Vselection_alist): Define. Reverts part of
1641 2011-01-19T22:11:33Z!jan.h.d@swipnet.se.
1642 * buffer.c: Don't use "no_cell" for name of kill-buffer-hook's
1643 variable.
1644 * xselect.c (Vselection_alist): Define. Reverts part of 2011-01-19T23:32:42Z!eggert@cs.ucla.edu.
1645
1646 2011-02-08 Kenichi Handa <handa@m17n.org>
1647
1648 * font.c (Ffont_get): Do not cache :otf value.
1649
1650 2011-02-07 Paul Eggert <eggert@cs.ucla.edu>
1651
1652 conform to C89 pointer rules
1653
1654 * dired.c (scmp, file_name_completion):
1655 Change types between char * and unsigned char *, to satisfy C89
1656 rules about pointer type compatibility.
1657 * casefiddle.c (casify_object, casify_region): Likewise.
1658 * search.c (Freplace_match, Fregexp_quote): Likewise.
1659 * alloc.c (make_string, make_specified_string, make_pure_string):
1660 Likewise.
1661 * data.c (Fstring_to_number): Likewise.
1662 * print.c (float_to_string, PRINTFINISH, printchar, strout):
1663 (print_object): Likewise.
1664 * editfns.c (init_editfns, Fchar_to_string, Fbyte_to_string):
1665 (Fuser_full_name, Fsubst_char_in_region, Ftranslate_region_internal):
1666 (Fformat): Likewise.
1667 * callint.c (Fcall_interactively): Likewise.
1668 * fns.c (string_make_multibyte, string_to_multibyte):
1669 (string_make_unibyte, Fstring_as_unibyte, Fstring_to_unibyte):
1670 (Fbase64_encode_region, base64_encode_1, Fbase64_decode_region, Fmd5):
1671 Likewise.
1672 * lread.c (read1, hash_string): Likewise.
1673 * process.c (read_process_output, send_process, Fprocess_send_region):
1674 Likewise.
1675 * callproc.c (Fcall_process): Likewise.
1676 * doprnt.c (doprnt): Likewise.
1677 * indent.c (compute_motion): Likewise.
1678 * xfont.c (xfont_decode_coding_xlfd): Likewise.
1679 * ralloc.c (resize_bloc): Likewise.
1680 * image.c (tiff_load): Likewise.
1681 * xml.c (make_dom, parse_region): Likewise.
1682 * character.c (strwidth): Make its argument const char *, not const
1683 unsigned char *, since more callers prefer it that way. All callers
1684 changed.
1685
1686 2011-02-06 Paul Eggert <eggert@cs.ucla.edu>
1687
1688 * xterm.c (x_alloc_nearest_color_1): Avoid unportable int assumption.
1689 Emacs assumes two's complement elsewhere, but the assumption is
1690 easy to remove here, and this suppresses a warning with Sun C 5.8.
1691
1692 conform to C89 pointer rules
1693
1694 * xterm.c (x_draw_fringe_bitmap, handle_one_xevent, x_bitmap_icon):
1695 (same_x_server, x_term_init):
1696 Change types between char * and unsigned char *, to satisfy C89
1697 rules about pointer type compatibility.
1698 * doc.c (get_doc_string, Fsnarf_documentation):
1699 (Fsubstitute_command_keys): Likewise.
1700 * xfns.c (Fx_open_connection, Fx_window_property): Likewise.
1701 * bitmaps/gray.xbm (gray_bits): Likewise.
1702 * image.c (xbm_read_bitmap_data, xbm_load_image, xbm_load): Likewise.
1703 * keyboard.c (echo_char, MULTI_LETTER_MOD, tty_read_avail_input):
1704 Likewise.
1705 * keymap.c (Ftext_char_description): Likewise.
1706 * minibuf.c (Fread_buffer): Likewise.
1707 * fileio.c (IS_DRIVE) [defined WINDOWSNT]:
1708 (DRIVE_LETTER) [defined DOS_NT]:
1709 (report_file_error, Ffile_name_directory, Ffile_name_nondirectory):
1710 (make_temp_name, Fexpand_file_name, file_name_absolute_p):
1711 (search_embedded_absfilename, Fsubstitute_in_file_name):
1712 (barf_or_query_if_file_exists, Fmake_directory_internal):
1713 (Fdelete_directory_internal, Ffile_name_absolute_p, read_non_regular):
1714 (Finsert_file_contents, Fwrite_region):
1715 Likewise.
1716 * insdel.c (insert, insert_and_inherit, insert_before_markers):
1717 (insert_before_markers_and_inherit, insert_1, insert_1_both):
1718 Likewise. This changes these functions' signatures, which is
1719 more convenient since most callers use char *. All remaining
1720 callers changed.
1721 * editfns.c (general_insert_function): Change signature to
1722 match changes to insert functions' signatures.
1723 * keymap.c (map_keymap_char_table_item, map_keymap_internal):
1724 Use explicit cast when converting between void * and function pointer
1725 types, as C89 requires this.
1726
1727 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
1728
1729 don't ignore chdir failure
1730 * sysdep.c (sys_subshell) [!defined DOS_NT]: Diagnose chdir
1731 failure and exit.
1732 (sys_subshell) [defined DOS_NT]: Mark with a FIXME the two
1733 remaining unchecked chdir calls in this function; some DOS/NT
1734 expert needs to fix them.
1735 * emacs.c (main): Mark with a FIXME the unchecked chdir calls
1736 in this function; some NextStep expert needs to fix them.
1737
1738 2011-02-05 Glenn Morris <rgm@gnu.org>
1739
1740 * xfaces.c (Finternal_set_lisp_face_attribute):
1741 Try to clarify some error messages. (Bug#2659)
1742
1743 2011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
1744
1745 * editfns.c (save_restriction_restore): Don't forget to invalidate the
1746 current_column cache (bug#7946).
1747
1748 2011-02-05 Kenichi Handa <handa@m17n.org>
1749
1750 * ftfont.c (ftfont_open): Use FC_DUAL only when it is defined.
1751
1752 * xftfont.c (xftfont_open): Likewise.
1753
1754 2011-02-05 Andreas Schwab <schwab@linux-m68k.org>
1755
1756 * window.c (Fselect_window): Add missing return value.
1757
1758 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
1759
1760 xstrcasecmp: conform to C89 pointer rules
1761 * xfaces.c (xstrcasecmp): Change args from const unsigned char *
1762 to const char *, since they're usually low-level C strings, and
1763 this stays compatible with C89 pointer rules. All callers changed.
1764
1765 * charset.c: Conform to C89 pointer rules.
1766 (define_charset_internal): Switch between char * and unsigned char *.
1767
1768 * xmenu.c: Conform to C89 const rules.
1769 (xmenu_show, xdialog_show): Declare local var as char *, not
1770 const char *, to stay compatible with C89 const rules.
1771
1772 * xdisp.c: Conform to C89 pointer rules.
1773 (store_mode_line_noprop, display_string, reseat_to_string):
1774 (c_string_pos, number_of_chars, message_dolog):
1775 (message_log_check_duplicate, set_message_1, store_mode_line_noprop):
1776 (display_mode_element, display_string):
1777 Switch between char * and unsigned char * to stay compatible wth
1778 C89 pointer rules.
1779
1780 * regex.c: Conform to C89 pointer rules.
1781 (re_wctype): Add cast, as C89 does not allow assigning between
1782 char * and unsigned char *.
1783 (regex_compile): Likewise.
1784
1785 sync from gnulib to remove HAVE_STDBOOL_H
1786 * config.in: Regenerate.
1787
1788 2011-02-04 Eli Zaretskii <eliz@gnu.org>
1789
1790 * makefile.w32-in (LISP_H, PROCESS_H): New variables.
1791 Replace all uses of lisp.h with $(LISP_H), and all uses of
1792 process.h with $(PROCESS_H).
1793 ($(BLD)/editfns.$(O)): Depend on ../lib/strftime.h.
1794 ($(BLD)/print.$(O)): Depend on ../lib/ftoastr.h and ../lib/intprops.h.
1795
1796 * deps.mk: Update for recent changes: gnutls support, gnulib
1797 imports, addition of globals.h.
1798
1799 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on
1800 ../lib/ignore-value.h.
1801
1802 2011-02-03 Paul Eggert <eggert@cs.ucla.edu>
1803
1804 allow C code to suppress warnings about ignored return values
1805
1806 We need to go through the code and for each such warning, either
1807 fix the code to pay attention to the returned value, or tell GCC
1808 that we really do want to ignore the returned value. Here is one
1809 example of how to do the latter.
1810 * sysdep.c: Include <ignore-value.h>.
1811 (sys_subshell): Suppress an undesirable warning about not checking
1812 the returned value of 'write', as there's nothing useful one can
1813 do with that returned value.
1814
1815 2011-02-03 Jan Djärv <jan.h.d@swipnet.se>
1816
1817 * xterm.c (x_connection_closed): Remove all calls that calls
1818 XSync (Bug#7949).
1819
1820 2011-02-01 Eli Zaretskii <eliz@gnu.org>
1821
1822 * image.c (tiff_load): Avoid compiler warning in 2nd arg to
1823 TIFFClientOpen.
1824
1825 2011-02-01 Jan Djärv <jan.h.d@swipnet.se>
1826
1827 * xsmfns.c (ice_connection_closed): Call delete_read_fd.
1828 (x_session_check_input): Change args and return type so it can be used
1829 as argument to add_read_fd. Make static. Remove call to select.
1830 Call kbd_buffer_store_event for emacs_event.
1831 (smc_save_yourself_CB): Also store initial argv to SmRestartCommand.
1832 (ice_conn_watch_CB): Call add_read_fd.
1833
1834 * xterm.c (XTread_socket): Remove HAVE_X_SM block with call to
1835 x_session_check_input.
1836 (x_session_initialized): Remove definition.
1837 (x_initialize): Remove setting of x_session_initialized.
1838
1839 * xterm.h (x_session_check_input): Remove declaration.
1840
1841 2011-02-01 Paul Eggert <eggert@cs.ucla.edu>
1842
1843 format-time-string now supports subsecond time stamp resolution
1844 * editfns.c (emacs_nmemftime): Rename from emacs_memftimeu,
1845 for consistency with its new argument and with gnulib nstrftime.
1846 All callers changed. New argument NS.
1847 (Fformat_time_string): Check that the time argument's microseconds
1848 component, if any, is in range; this avoids integer overflow and
1849 also nstrftime needs this. Document %N.
1850
1851 2011-01-31 Andreas Schwab <schwab@linux-m68k.org>
1852
1853 * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead
1854 of int. All uses adjusted.
1855 (PNG_JMPBUF, png_load, jpeg_load, tiff_load, gif_load)
1856 (svg_load_image): Remove casts.
1857
1858 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
1859
1860 * image.c (fn_png_longjmp, fn_png_set_longjmp_fn): New png
1861 function definitions for compiling with libpng-1.5.
1862 (PNG_LONGJMP, PNG_JMPBUF): New macros for libpng-1.5.
1863 (my_png_error, png_load): Use them. Suggested by Thomas Klausner
1864 (Bug#7908).
1865
1866 2011-01-31 Eli Zaretskii <eliz@gnu.org>
1867
1868 * s/ms-w32.h (HAVE_STRFTIME): Don't define.
1869
1870 * makefile.w32-in (OBJ2): Remove strftime.$(O).
1871 ($(BLD)/strftime.$(O)): Remove prerequisites.
1872
1873 2011-01-31 Paul Eggert <eggert@cs.ucla.edu>
1874
1875 src/emacs.c now gets version number from configure.in
1876 * emacs.c (emacs_version): Set to VERSION so that it
1877 is determined automatically from ../configure.in.
1878
1879 2011-01-31 Jim Meyering <meyering@redhat.com>
1880
1881 * charset.c (load_charset_map): Don't deref NULL on failed malloc.
1882 Use xmalloc rather than malloc.
1883
1884 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
1885
1886 strftime: import from gnulib
1887 * Makefile.in (obj): Remove strftime.o, as gnulib now does this for us.
1888 * deps.mk (strftime.o): Remove.
1889 * editfns.c: Include <strftime.h>, supplied by gnulib.
1890 (emacs_strftimeu): Remove decl.
1891 (emacs_memftimeu): Use nstrftime (the gnulib name) rather than
1892 emacs_strftimeu.
1893 * config.in: Regenerate.
1894 * strftime.c: Remove; we now use strftime from gnulib.
1895
1896 Use SSDATA when the context wants char *.
1897 * alloc.c, buffer.c, bytecode.c, callproc.c, dired.c:
1898 * dispnew.c, doc.c, editfns.c, emacs.c, fileio.c, filelock.c:
1899 * fns.c, font.c, frame.c, image.c, indent.c, keyboard.c:
1900 * lread.c, minibuf.c, print.c, process.c, search.c, widget.c:
1901 * xdisp.c, xfaces.c, xfns.c, xml.c, xselect.c, xterm.c:
1902 Use SSDATA (not SDATA) when the context of the expression wants
1903 char * (not unsigned char *).
1904
1905 2011-01-30 Jan Djärv <jan.h.d@swipnet.se>
1906
1907 * .gdbinit: Read global lisp variables as globals.f_V*.
1908
1909 2011-01-30 Andreas Schwab <schwab@linux-m68k.org>
1910
1911 * font.c (PROP_MATCH): Remove parameter N and use strlen instead.
1912 All uses changed.
1913 (PROP_SAVE): Likewise.
1914
1915 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
1916
1917 * keyboard.c (make_lispy_position): Fix typo in last change
1918 (Bug#7935).
1919
1920 2011-01-29 Eli Zaretskii <eliz@gnu.org>
1921
1922 * s/ms-w32.h (HAVE_MKTIME): Remove.
1923
1924 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
1925 (GNULIB): New variable.
1926 (LIBS): Add $(GNULIB).
1927 $(TEMACS): Depend on $(GNULIB).
1928 <top-level>: Fix font-lock disrupted by a lone `"'.
1929
1930 2011-01-29 Jan Djärv <jan.h.d@swipnet.se>
1931
1932 * nsselect.m (ns_string_from_pasteboard): Get length of string
1933 and use make_string instead of build_string (Bug#7934).
1934 (ns_string_to_pasteboard_internal): Use initWithBytesNoCopy
1935 instead of stringWithUTF8String (Bug#7934).
1936
1937 2011-01-29 Anders Lindgren <andlind@gmail.com> (tiny change)
1938
1939 * nsfont.m (nsfont_open): Ensure that fonts with inexact
1940 descenders would not become one pixel too tall (Bug#7887).
1941
1942 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
1943
1944 * keyboard.c (make_lispy_position): For clicks on right fringe or
1945 margin, compute text position using the X coordinate relative to
1946 the left of the text area (Bug#7839).
1947
1948 2011-01-28 Kenichi Handa <handa@m17n.org>
1949
1950 * ftfont.c (ftfont_spec_pattern): Check each extra property
1951 value.
1952
1953 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
1954
1955 * xdisp.c (safe_eval_handler): Distinguish symbols and strings.
1956
1957 2011-01-27 Chong Yidong <cyd@stupidchicken.com>
1958
1959 * font.c (font_parse_fcname): Undefine a temporary macro.
1960
1961 2011-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
1962
1963 Let the debugger continue to the normal handler (bug#7825).
1964 * eval.c (maybe_call_debugger): Declare before new use.
1965 (find_handler_clause): Don't call debugger any more.
1966 Ignore Vstack_trace_on_error.
1967 Use XCAR/XCDR.
1968 (syms_of_eval): Remove Vstack_trace_on_error.
1969 (Fsignal): Only modify handlerlist when we know we need to do it.
1970 Call the debugger when necessary.
1971 * globals.h (Vstack_trace_on_error): Remove.
1972
1973 2011-01-26 Chong Yidong <cyd@stupidchicken.com>
1974
1975 * font.c (font_parse_fcname): Rewrite GTK font name parser.
1976
1977 2011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
1978
1979 * xdisp.c (handle_fontified_prop): Be careful with font-lock changing
1980 the buffer's point-max (bug#7876).
1981
1982 2011-01-25 Chong Yidong <cyd@stupidchicken.com>
1983
1984 * lisp.h (XPNTR): Obey DATA_SEG_BITS in all non-USE_LSB_TAG cases.
1985 Remove unused case (Bug#6811).
1986
1987 2011-01-23 Jan Djärv <jan.h.d@swipnet.se>
1988
1989 * nsterm.m (x_set_offset): Set dont_constrain to 0 so the call to
1990 setFrameTopLeftPoint is constrained.
1991
1992 2011-01-23 Paul Eggert <eggert@cs.ucla.edu>
1993
1994 Check return values of some library calls.
1995 * emacs.c (main): Check dup result.
1996 * frame.c: Include <limits.h>, for INT_MIN and INT_MAX.
1997 (frame_name_fnn_p): Check strtol result.
1998
1999 * image.c (x_create_bitmap_from_xpm_data): Add cast to fix type clash
2000 when calling XpmCreatePixmapFromData.
2001
2002 Promote SSDATA macro from gtkutil.c and xsmfns.c to lisp.h.
2003 * lisp.h (SSDATA): New macro.
2004 All uses of (char *) SDATA (x) replaced with SSDATA (x),
2005 and all uses of (unsigned char *) SDATA (x) replaced with SDATA (x).
2006 * gtkutil.c (SSDATA): Remove, as lisp.h now defines this.
2007 * xsmfns.c (SSDATA): Likewise.
2008
2009 2011-01-22 Martin Rudalics <rudalics@gmx.at>
2010
2011 * window.c (select_window): New function.
2012 (Fselect_window): Call it.
2013 (inhibit_point_swap): Variable deleted.
2014 (Fset_window_configuration): Call select_window directly.
2015
2016 2011-01-22 Jan Djärv <jan.h.d@swipnet.se>
2017
2018 * nsterm.m (constrainFrameRect): Only constrain the first time called.
2019
2020 2011-01-21 Jan Djärv <jan.h.d@swipnet.se>
2021
2022 * nsterm.m (x_set_offset, windowDidMove): When calculating y, use first
2023 screen, not the window screen.
2024 (x_set_window_size): Remove constraints.
2025 Calculate origin.y only if zooming is 0 and without referring to a
2026 screen.
2027 (windowWillResize): Don't modify frameSize.
2028 (windowDidBecomeKey, mouseDown): Set dont_constrain to 1.
2029 (initFrameFromEmacs): Initialize ns_userRect.
2030 (windowShouldZoom): Set zooming to one. Remove all other code.
2031 (windowWillUseStandardFrame): Move static ns_userRect to EmacsView.
2032 Zero it after restore.
2033 (constrainFrameRect): New method for EmacsWindow.
2034 (mouseDragged): Always post NSWindowDidResizeNotification after call to
2035 windowWillResize.
2036
2037 * nsterm.h (ns_output): Add dont_constrain and zooming.
2038 (EmacsView): Add ns_userRect.
2039
2040 * nsterm.m (keyDown): If ns_right_alternate_modifier is Qleft, check
2041 if ns_alternate_modifier is none.
2042
2043 2011-01-20 Jan Djärv <jan.h.d@swipnet.se>
2044
2045 * unexmacosx.c: Add comment about include order.
2046
2047 2011-01-20 Glenn Morris <rgm@gnu.org>
2048
2049 * minibuf.c (syms_of_minibuf) <read-expression-history>:
2050 Give it a doc string.
2051 * globals.h: Add Vread_expression_history.
2052
2053 * macros.c (syms_of_macros) <kbd-macro-termination-hook>:
2054 Give it a doc string.
2055 * globals.h: Add Vkbd_macro_termination_hook.
2056
2057 2011-01-20 Chong Yidong <cyd@stupidchicken.com>
2058
2059 * fns.c (Fyes_or_no_p): Revert 2011-01-07 change, removing ARGS.
2060
2061 2011-01-19 Paul Eggert <eggert@cs.ucla.edu>
2062
2063 Fix X11 compilation failure.
2064 * globals.h (struct emacs_globals): Document f_Vselection_alist.
2065 * xselect.c (Vselection_alist): Remove declaration, moving its
2066 documentation to globals.h. This fixes a compilation failure
2067 induced by the earlier change to globals.h today.
2068
2069 2011-01-19 Jan Djärv <jan.h.d@swipnet.se>
2070
2071 * unexmacosx.c: Include config.h before unistd.h (Bug#7859).
2072
2073 * nsterm.m (ns_input_file, ns_input_font, ns_input_fontsize)
2074 (ns_input_line, ns_input_color, ns_input_text, ns_working_text)
2075 (ns_input_spi_name, ns_input_spi_arg)
2076 (ns_alternate_modifier, ns_right_alternate_modifier)
2077 (ns_command_modifier, ns_right_command_modifier, ns_control_modifier)
2078 (ns_right_control_modifier, ns_function_modifier)
2079 (ns_antialias_text, ns_confirm_quit): Move to globals.h.
2080 (Vx_toolkit_scroll_bars, x_use_underline_position_properties)
2081 (x_underline_at_descent_line): Remove declaration.
2082 (syms_of_nsterm): Remove & from DEFVAR_LISP and DEFVAR_BOOL.
2083
2084 * nsselect.m (Vns_sent_selection_hooks, Vns_lost_selection_hooks)
2085 (Vselection_alist, Vselection_converter_alist): Move to globals.h.
2086 (syms_of_nsselect): Remove & from DEFVAR_LISP.
2087
2088 * nsmenu.m (Voverriding_local_map, Voverriding_local_map_menu_flag):
2089 Remove declaration.
2090
2091 * nsfont.m (Vns_reg_to_script, ns_antialias_text): Move to
2092 globals.h.
2093 (syms_of_nsfont): Remove & from DEFVAR_LISP.
2094
2095 * nsfns.m (Vmenu_bar_mode, Vtool_bar_mode): Remove declaration.
2096 (Vns_icon_type_alist, Vns_version_string): Move to globals.h.
2097 (syms_of_nsfns): Remove & from DEFVAR_LISP calls.
2098
2099 * globals.h (struct emacs_globals): Add f_ns_input_file,
2100 f_ns_input_font, f_ns_input_fontsize, f_ns_input_line,
2101 f_ns_input_color, f_ns_input_text, f_ns_working_text,
2102 f_ns_input_spi_name, f_ns_input_spi_arg, f_ns_alternate_modifier,
2103 f_ns_right_alternate_modifier, f_ns_command_modifier,
2104 f_ns_right_command_modifier, f_ns_control_modifier,
2105 f_ns_right_control_modifier, f_ns_function_modifier,
2106 f_ns_antialias_text, f_ns_confirm_quit, f_Vns_icon_type_alist,
2107 f_Vns_version_string, f_Vns_sent_selection_hooks,
2108 f_Vns_lost_selection_hooks, f_Vselection_alist, f_Vns_reg_to_script
2109 and corresponding defines.
2110
2111 2011-01-19 Sam Steingold <sds@gnu.org>
2112
2113 * w32.c (check_windows_init_file): Remove declarations of
2114 Vwindow_system, Vload_path, Qfile_exists_p to fix compilation.
2115 * w32fns.c: Fix an error introduced by the previous patch.
2116
2117 2011-01-19 Tom Tromey <tromey@redhat.com>
2118
2119 * window.c: Fix error introduced by previous patch.
2120
2121 2011-01-18 Tom Tromey <tromey@parfait>
2122
2123 * globals.h: New file.
2124 * xterm.h (Vx_pixel_size_width_font_regexp): Remove declaration.
2125 * window.h (Vinitial_window_system, Vminibuf_scroll_window)
2126 (Vwindow_system_version): Remove declaration.
2127 * w32term.h (Vw32_enable_palette)
2128 (Vx_pixel_size_width_font_regexp): Remove declaration.
2129 * w32menu.c (Voverriding_local_map)
2130 (Voverriding_local_map_menu_flag): Remove declaration.
2131 * w32inevt.c (Vw32_alt_is_meta, Vw32_apps_modifier)
2132 (Vw32_capslock_is_shiftlock, Vw32_enable_caps_lock)
2133 (Vw32_enable_num_lock, Vw32_lwindow_modifier)
2134 (Vw32_pass_lwindow_to_system, Vw32_pass_rwindow_to_system)
2135 (Vw32_phantom_key_code, Vw32_recognize_altgr)
2136 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
2137 (w32_use_full_screen_buffer): Remove declaration.
2138 * w32.c (Vsystem_configuration, Vw32_downcase_file_names)
2139 (Vw32_generate_fake_inodes, Vw32_get_true_file_attributes)
2140 (w32_num_mouse_buttons, w32_pipe_read_delay): Remove declaration.
2141 * termopts.h (Vtruncate_partial_width_windows, inverse_video)
2142 (no_redraw_on_reenter, visible_bell): Remove declaration.
2143 * sysdep.c (Vsystem_name): Remove declaration.
2144 * syntax.h (parse_sexp_lookup_properties): Remove declaration.
2145 * menu.h (Vmenu_updating_frame): Remove declaration.
2146 * macros.h (Vexecuting_kbd_macro, executing_kbd_macro_index):
2147 Remove declaration.
2148 * lisp.h (Vafter_init_time, Vafter_load_alist)
2149 (Vauto_save_list_file_name, Vbefore_init_time, Vcommand_history)
2150 (Vcompletion_regexp_list, Vcurrent_load_list)
2151 (Vcurrent_prefix_arg, Vdata_directory, Vdebug_on_error)
2152 (Vdoc_directory, Vdoc_file_name, Vdynamic_library_alist)
2153 (Vexec_directory, Vexec_path, Vexec_suffixes)
2154 (Vface_font_rescale_alist, Vface_ignored_fonts, Vfeatures)
2155 (Vhelp_form, Vhistory_length, Vinhibit_field_text_motion)
2156 (Vinhibit_quit, Vinhibit_read_only, Vinhibit_redisplay)
2157 (Vinstallation_directory, Vinvocation_directory)
2158 (Vinvocation_name, Vload_file_rep_suffixes, Vload_history)
2159 (Vload_suffixes, Vmark_even_if_inactive, Vmemory_full)
2160 (Vmessage_log_max, Vobarray, Vprint_length, Vprint_level)
2161 (Vpurify_flag, Vquit_flag, Vsaved_region_selection)
2162 (Vscalable_fonts_allowed, Vselect_active_regions)
2163 (Vshell_file_name, Vstandard_input, Vstandard_output)
2164 (Vsystem_name, Vtemporary_file_directory, Vthrow_on_input)
2165 (Vtop_level, Vtty_erase_char, Vundo_outer_limit)
2166 (Vuser_login_name, Vwindow_scroll_functions)
2167 (Vwindow_system_version, Vx_no_window_manager)
2168 (Vx_resource_class, Vx_resource_name, baud_rate)
2169 (completion_ignore_case, debug_on_next_call, gc_cons_threshold)
2170 (history_delete_duplicates, inhibit_x_resources)
2171 (last_nonmenu_event, load_in_progress, max_specpdl_size)
2172 (minibuffer_auto_raise, print_escape_newlines, scroll_margin)
2173 (use_dialog_box, use_file_dialog): Remove declaration.
2174 Include globals.h.
2175 * keymap.h (Voverriding_local_map)
2176 (Voverriding_local_map_menu_flag, meta_prefix_char):
2177 Remove declaration.
2178 * keyboard.h (Vdouble_click_time, Vfunction_key_map)
2179 (Vinput_method_function, Vkey_translation_map)
2180 (Vlucid_menu_bar_dirty_flag, Vthis_original_command)
2181 (do_mouse_tracking, extra_keyboard_modifiers)
2182 (num_nonmacro_input_events): Remove declaration.
2183 * intervals.h (Vchar_property_alias_alist)
2184 (Vdefault_text_properties, Vinhibit_point_motion_hooks)
2185 (Vtext_property_default_nonsticky): Remove declaration.
2186 * gtkutil.h (x_gtk_file_dialog_help_text)
2187 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
2188 (x_gtk_whole_detached_tool_bar): Remove declaration.
2189 * frame.h (Vdefault_frame_alist, Vframe_alpha_lower_limit)
2190 (Vmenu_bar_mode, Vmouse_highlight, Vterminal_frame)
2191 (Vtool_bar_mode, Vx_resource_class, Vx_resource_name)
2192 (focus_follows_mouse): Remove declaration.
2193 * fontset.h (Valternate_fontname_alist, Vfontset_alias_alist)
2194 (Vignore_relative_composition, Votf_script_alist)
2195 (Vuse_default_ascent, Vvertical_centering_font_regexp):
2196 Remove declaration.
2197 * font.h (Vfont_log): Remove declaration.
2198 * dosfns.h (Vdos_display_scancodes, Vdos_version)
2199 (Vdos_windows_version, dos_codepage, dos_country_code)
2200 (dos_decimal_point, dos_hyper_key, dos_keyboard_layout)
2201 (dos_keypad_mode, dos_super_key, dos_timezone_offset):
2202 Remove declaration.
2203 * disptab.h (Vglyph_table, Vstandard_display_table):
2204 Remove declaration.
2205 * dispextern.h (Vface_remapping_alist, Vglyphless_char_display)
2206 (Vmouse_autoselect_window, Voverflow_newline_into_fringe)
2207 (Vshow_trailing_whitespace, Vtool_bar_button_margin)
2208 (Vtool_bar_style, cursor_in_echo_area, display_hourglass_p)
2209 (inverse_video, mode_line_in_non_selected_windows)
2210 (tool_bar_button_relief, tool_bar_max_label_size)
2211 (underline_minimum_offset)
2212 (unibyte_display_via_language_environment, x_stretch_cursor_p):
2213 Remove declaration.
2214 * composite.h (Vauto_composition_function)
2215 (Vcomposition_function_table): Remove declaration.
2216 * commands.h (Vexecuting_kbd_macro)
2217 (Vminibuffer_local_completion_map)
2218 (Vminibuffer_local_filename_completion_map)
2219 (Vminibuffer_local_filename_must_match_map)
2220 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
2221 (Vminibuffer_local_ns_map, Vthis_command)
2222 (Vunread_command_events, cursor_in_echo_area)
2223 (last_command_event, last_nonmenu_event, unread_command_char):
2224 Remove declaration.
2225 * coding.h (Vcoding_system_for_read, Vcoding_system_for_write)
2226 (Vdefault_file_name_coding_system)
2227 (Vdefault_process_coding_system, Vfile_name_coding_system)
2228 (Vlast_coding_system_used, Vlocale_coding_system)
2229 (Vselect_safe_coding_system_function)
2230 (Vtranslation_table_for_input, coding_system_require_warning)
2231 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
2232 (eol_mnemonic_unix, inherit_process_coding_system):
2233 Remove declaration.
2234 * charset.h (Vcharset_list, Vcurrent_iso639_language):
2235 Remove declaration.
2236 * character.h (Vauto_fill_chars, Vchar_direction_table)
2237 (Vchar_script_table, Vchar_width_table, Vprintable_chars)
2238 (Vscript_representative_chars, Vtranslation_table_vector)
2239 (Vunicode_category_table): Remove declaration.
2240 * ccl.h (Vfont_ccl_encoder_alist): Remove declaration.
2241 * buffer.h (Vafter_change_functions, Vbefore_change_functions)
2242 (Vdeactivate_mark, Vfirst_change_hook, Vtransient_mark_mode)
2243 (inhibit_modification_hooks): Remove declaration.
2244 * xterm.c (syms_of_xterm): Update.
2245 (Vx_alt_keysym, Vx_hyper_keysym, Vx_keysym_table)
2246 (Vx_meta_keysym, Vx_super_keysym, Vx_toolkit_scroll_bars)
2247 (x_mouse_click_focus_ignore_position)
2248 (x_underline_at_descent_line)
2249 (x_use_underline_position_properties): Remove.
2250 * xsmfns.c (syms_of_xsmfns): Update.
2251 (Vx_session_id, Vx_session_previous_id): Remove.
2252 * xsettings.c (syms_of_xsettings): Update.
2253 (Vxft_settings, use_system_font): Remove.
2254 * xselect.c (syms_of_xselect): Update.
2255 (Vselection_converter_alist, Vx_lost_selection_functions)
2256 (Vx_sent_selection_functions, x_selection_timeout): Remove.
2257 * xfns.c (syms_of_xfns): Update.
2258 (Vgtk_version_string, Vmotif_version_string)
2259 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
2260 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
2261 (Vx_no_window_manager, Vx_nontext_pointer_shape)
2262 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
2263 (Vx_sensitive_text_pointer_shape)
2264 (Vx_window_horizontal_drag_shape, x_gtk_file_dialog_help_text)
2265 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
2266 (x_gtk_use_system_tooltips, x_gtk_whole_detached_tool_bar):
2267 Remove.
2268 * xfaces.c (syms_of_xfaces): Update.
2269 (Vface_default_stipple, Vface_font_rescale_alist)
2270 (Vface_ignored_fonts, Vface_new_frame_defaults)
2271 (Vface_remapping_alist, Vfont_list_limit)
2272 (Vscalable_fonts_allowed, Vtty_defined_color_alist): Remove.
2273 * xdisp.c (syms_of_xdisp): Update.
2274 (Vauto_resize_tool_bars, Vblink_cursor_alist)
2275 (Vdisplay_pixels_per_inch, Vfontification_functions)
2276 (Vframe_title_format, Vglobal_mode_string)
2277 (Vglyphless_char_display, Vhourglass_delay, Vhscroll_step)
2278 (Vicon_title_format, Vinhibit_redisplay)
2279 (Vline_number_display_limit, Vline_prefix)
2280 (Vmax_mini_window_height, Vmenu_bar_update_hook)
2281 (Vmenu_updating_frame, Vmessage_log_max)
2282 (Vmouse_autoselect_window, Vnobreak_char_display)
2283 (Voverlay_arrow_position, Voverlay_arrow_string)
2284 (Voverlay_arrow_variable_list, Vredisplay_end_trigger_functions)
2285 (Vresize_mini_windows, Vshow_trailing_whitespace)
2286 (Vtool_bar_border, Vtool_bar_button_margin, Vtool_bar_style)
2287 (Vtruncate_partial_width_windows, Vvoid_text_area_pointer)
2288 (Vwindow_scroll_functions, Vwindow_size_change_functions)
2289 (Vwindow_text_change_functions, Vwrap_prefix)
2290 (auto_raise_tool_bar_buttons_p, automatic_hscrolling_p)
2291 (debug_end_pos, display_hourglass_p, emacs_scroll_step)
2292 (highlight_nonselected_windows, hscroll_margin)
2293 (inhibit_eval_during_redisplay, inhibit_free_realized_faces)
2294 (inhibit_menubar_update, inhibit_try_cursor_movement)
2295 (inhibit_try_window_id, inhibit_try_window_reusing)
2296 (line_number_display_limit_width)
2297 (make_cursor_line_fully_visible_p, message_truncate_lines)
2298 (mode_line_inverse_video, multiple_frames, overline_margin)
2299 (scroll_conservatively, scroll_margin, tool_bar_button_relief)
2300 (tool_bar_max_label_size, underline_minimum_offset)
2301 (unibyte_display_via_language_environment, x_stretch_cursor_p):
2302 Remove.
2303 * window.c (syms_of_window): Update.
2304 (Vminibuf_scroll_window, Vother_window_scroll_buffer)
2305 (Vrecenter_redisplay, Vscroll_preserve_screen_position)
2306 (Vtemp_buffer_show_function, Vwindow_configuration_change_hook)
2307 (Vwindow_point_insertion_type, auto_window_vscroll_p)
2308 (mode_line_in_non_selected_windows, next_screen_context_lines)
2309 (window_min_height, window_min_width): Remove.
2310 (scroll_margin): Remove declaration.
2311 * w32term.c (syms_of_w32term): Update.
2312 (Vw32_capslock_is_shiftlock, Vw32_grab_focus_on_raise)
2313 (Vw32_recognize_altgr, Vw32_swap_mouse_buttons)
2314 (Vx_toolkit_scroll_bars, w32_num_mouse_buttons)
2315 (w32_use_visible_system_caret, x_underline_at_descent_line)
2316 (x_use_underline_position_properties): Remove.
2317 (Vcommand_line_args, Vsystem_name, extra_keyboard_modifiers):
2318 Remove declaration.
2319 * w32select.c (syms_of_w32select): Update.
2320 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
2321 * w32proc.c (syms_of_ntproc): Update.
2322 (Vw32_downcase_file_names, Vw32_generate_fake_inodes)
2323 (Vw32_get_true_file_attributes, Vw32_quote_process_args)
2324 (Vw32_start_process_inherit_error_mode)
2325 (Vw32_start_process_share_console)
2326 (Vw32_start_process_show_window, w32_pipe_read_delay): Remove.
2327 (Vsystem_name): Remove declaration.
2328 * w32font.c (syms_of_w32font): Update.
2329 (Vw32_charset_info_alist): Remove.
2330 * w32fns.c (globals_of_w32fns, syms_of_w32fns): Update.
2331 (Vw32_alt_is_meta, Vw32_apps_modifier, Vw32_bdf_filename_alist)
2332 (Vw32_color_map, Vw32_enable_caps_lock, Vw32_enable_num_lock)
2333 (Vw32_enable_palette, Vw32_lwindow_modifier)
2334 (Vw32_pass_alt_to_system, Vw32_pass_lwindow_to_system)
2335 (Vw32_pass_rwindow_to_system, Vw32_phantom_key_code)
2336 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
2337 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
2338 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
2339 (Vx_no_window_manager, Vx_nontext_pointer_shape)
2340 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
2341 (Vx_sensitive_text_pointer_shape)
2342 (Vx_window_horizontal_drag_shape, w32_ansi_code_page)
2343 (w32_enable_synthesized_fonts, w32_mouse_button_tolerance)
2344 (w32_mouse_move_interval)
2345 (w32_pass_extra_mouse_buttons_to_system)
2346 (w32_pass_multimedia_buttons_to_system, w32_quit_key)
2347 (w32_strict_fontnames, w32_strict_painting): Remove.
2348 (Vhourglass_delay, Vmenu_bar_mode, Vtool_bar_mode)
2349 (Vw32_recognize_altgr, Vwindow_system_version)
2350 (w32_num_mouse_buttons, w32_use_visible_system_caret):
2351 Remove declaration.
2352 * w32console.c (syms_of_ntterm): Update.
2353 (w32_use_full_screen_buffer): Remove.
2354 (Vtty_defined_color_alist): Remove declaration.
2355 * w16select.c (syms_of_win16select): Update.
2356 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
2357 * undo.c (syms_of_undo): Update.
2358 (Vundo_outer_limit, Vundo_outer_limit_function)
2359 (undo_inhibit_record_point, undo_limit, undo_strong_limit):
2360 Remove.
2361 * textprop.c (syms_of_textprop): Update.
2362 (Vchar_property_alias_alist, Vdefault_text_properties)
2363 (Vinhibit_point_motion_hooks, Vtext_property_default_nonsticky):
2364 Remove.
2365 * terminal.c (syms_of_terminal): Update.
2366 (Vdelete_terminal_functions, Vring_bell_function): Remove.
2367 * term.c (syms_of_term): Update.
2368 (Vresume_tty_functions, Vsuspend_tty_functions)
2369 (no_redraw_on_reenter, system_uses_terminfo, visible_cursor):
2370 Remove.
2371 * syntax.c (syms_of_syntax): Update.
2372 (Vfind_word_boundary_function_table, multibyte_syntax_as_symbol)
2373 (open_paren_in_column_0_is_defun_start)
2374 (parse_sexp_ignore_comments, parse_sexp_lookup_properties)
2375 (words_include_escapes): Remove.
2376 * search.c (syms_of_search): Update.
2377 (Vinhibit_changing_match_data, Vsearch_spaces_regexp): Remove.
2378 * process.c (syms_of_process): Update.
2379 (Vprocess_adaptive_read_buffering, Vprocess_connection_type)
2380 (delete_exited_processes): Remove.
2381 * print.c (syms_of_print): Update.
2382 (Vfloat_output_format, Vprint_charset_text_property)
2383 (Vprint_circle, Vprint_continuous_numbering, Vprint_gensym)
2384 (Vprint_length, Vprint_level, Vprint_number_table)
2385 (Vstandard_output, print_escape_multibyte)
2386 (print_escape_newlines, print_escape_nonascii, print_quoted):
2387 Remove.
2388 * msdos.c (syms_of_msdos): Update.
2389 (Vdos_unsupported_char_glyph): Remove.
2390 (unibyte_display_via_language_environment): Remove declaration.
2391 * minibuf.c (syms_of_minibuf): Update.
2392 (Vcompletion_regexp_list, Vhistory_add_new_input)
2393 (Vhistory_length, Vminibuffer_completing_file_name)
2394 (Vminibuffer_completion_confirm)
2395 (Vminibuffer_completion_predicate, Vminibuffer_completion_table)
2396 (Vminibuffer_exit_hook, Vminibuffer_help_form)
2397 (Vminibuffer_history_position, Vminibuffer_history_variable)
2398 (Vminibuffer_prompt_properties, Vminibuffer_setup_hook)
2399 (Vread_buffer_function, Vread_expression_map)
2400 (completion_ignore_case, enable_recursive_minibuffers)
2401 (history_delete_duplicates, minibuffer_allow_text_properties)
2402 (minibuffer_auto_raise, read_buffer_completion_ignore_case):
2403 Remove.
2404 * marker.c (syms_of_marker): Update.
2405 (byte_debug_flag): Remove.
2406 * macros.c (syms_of_macros): Update.
2407 (Vexecuting_kbd_macro, executing_kbd_macro_index): Remove.
2408 * lread.c (syms_of_lread): Update.
2409 (Vafter_load_alist, Vbyte_boolean_vars)
2410 (Vbytecomp_version_regexp, Vcurrent_load_list)
2411 (Veval_buffer_list, Vload_file_name, Vload_file_rep_suffixes)
2412 (Vload_history, Vload_path, Vload_read_function)
2413 (Vload_source_file_function, Vload_suffixes, Vobarray)
2414 (Vold_style_backquotes, Vpreloaded_file_list, Vread_circle)
2415 (Vread_symbol_positions_list, Vread_with_symbol_positions)
2416 (Vsource_directory, Vstandard_input, Vuser_init_file, Vvalues)
2417 (force_load_messages, load_convert_to_unibyte)
2418 (load_dangerous_libraries, load_force_doc_strings)
2419 (load_in_progress): Remove.
2420 * keymap.c (syms_of_keymap): Update.
2421 (Vdefine_key_rebound_commands, Vemulation_mode_map_alists)
2422 (Vminibuffer_local_completion_map)
2423 (Vminibuffer_local_filename_completion_map)
2424 (Vminibuffer_local_filename_must_match_map)
2425 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
2426 (Vminibuffer_local_ns_map, Vminor_mode_map_alist)
2427 (Vminor_mode_overriding_map_alist, Vwhere_is_preferred_modifier):
2428 Remove.
2429 * keyboard.c (syms_of_keyboard): Update.
2430 (Vauto_save_timeout, Vcommand_error_function)
2431 (Vcommand_hook_internal, Vdeactivate_mark)
2432 (Vdeferred_action_function, Vdeferred_action_list)
2433 (Vdisable_point_adjustment, Vdouble_click_time)
2434 (Vecho_keystrokes, Venable_disabled_menus_and_buttons)
2435 (Vfunction_key_map, Vglobal_disable_point_adjustment)
2436 (Vhelp_char, Vhelp_event_list, Vhelp_form)
2437 (Vinput_method_function, Vinput_method_previous_message)
2438 (Vkey_translation_map, Vlast_event_frame)
2439 (Vlucid_menu_bar_dirty_flag, Vmenu_bar_final_items)
2440 (Vminibuffer_message_timeout, Voverriding_local_map)
2441 (Voverriding_local_map_menu_flag, Vpost_command_hook)
2442 (Vpre_command_hook, Vprefix_help_command)
2443 (Vsaved_region_selection, Vselect_active_regions)
2444 (Vshow_help_function, Vspecial_event_map, Vsuggest_key_bindings)
2445 (Vthis_command, Vthis_command_keys_shift_translated)
2446 (Vthis_original_command, Vthrow_on_input, Vtimer_idle_list)
2447 (Vtimer_list, Vtool_bar_separator_image_expression, Vtop_level)
2448 (Vtty_erase_char, Vunread_command_events)
2449 (Vunread_input_method_events, Vunread_post_input_method_events)
2450 (auto_save_interval, cannot_suspend, do_mouse_tracking)
2451 (double_click_fuzz, extra_keyboard_modifiers)
2452 (inhibit_local_menu_bar_menus, last_command_event)
2453 (last_input_event, last_nonmenu_event, menu_prompt_more_char)
2454 (menu_prompting, meta_prefix_char, num_input_keys)
2455 (num_nonmacro_input_events, polling_period, unread_command_char):
2456 Remove.
2457 * insdel.c (syms_of_insdel): Update.
2458 (Vcombine_after_change_calls, check_markers_debug_flag): Remove.
2459 * indent.c (syms_of_indent): Update.
2460 (indent_tabs_mode): Remove.
2461 * image.c (syms_of_image): Update.
2462 (Vimage_cache_eviction_delay, Vimage_types)
2463 (Vimagemagick_render_type, Vmax_image_size, Vx_bitmap_file_path)
2464 (cross_disabled_images): Remove.
2465 * fringe.c (syms_of_fringe): Update.
2466 (Vfringe_bitmaps, Voverflow_newline_into_fringe): Remove.
2467 * frame.c (syms_of_frame): Update.
2468 (Vdefault_frame_alist, Vdefault_frame_scroll_bars)
2469 (Vdelete_frame_functions, Vframe_alpha_lower_limit)
2470 (Vmake_pointer_invisible, Vmenu_bar_mode, Vmouse_highlight)
2471 (Vmouse_position_function, Vterminal_frame, Vtool_bar_mode)
2472 (Vx_resource_class, Vx_resource_name, focus_follows_mouse):
2473 Remove.
2474 * fontset.c (syms_of_fontset): Update.
2475 (Valternate_fontname_alist, Vfont_encoding_charset_alist)
2476 (Vfontset_alias_alist, Vignore_relative_composition)
2477 (Votf_script_alist, Vuse_default_ascent)
2478 (Vvertical_centering_font_regexp): Remove.
2479 * font.c (syms_of_font): Update.
2480 (Vfont_encoding_alist, Vfont_log, Vfont_slant_table)
2481 (Vfont_weight_table, Vfont_width_table): Remove.
2482 * fns.c (syms_of_fns): Update.
2483 (Vfeatures, use_dialog_box, use_file_dialog): Remove.
2484 * filelock.c (syms_of_filelock): Update.
2485 (Vtemporary_file_directory): Remove.
2486 * fileio.c (syms_of_fileio): Update.
2487 (Vafter_insert_file_functions, Vauto_save_include_big_deletions)
2488 (Vauto_save_list_file_name, Vauto_save_visited_file_name)
2489 (Vdefault_file_name_coding_system, Vfile_name_coding_system)
2490 (Vfile_name_handler_alist, Vinhibit_file_name_handlers)
2491 (Vinhibit_file_name_operation, Vset_auto_coding_function)
2492 (Vwrite_region_annotate_functions)
2493 (Vwrite_region_annotations_so_far)
2494 (Vwrite_region_post_annotation_function)
2495 (delete_by_moving_to_trash, write_region_inhibit_fsync): Remove.
2496 (Vw32_get_true_file_attributes): Remove declaration.
2497 * eval.c (syms_of_eval): Update.
2498 (Vdebug_ignored_errors, Vdebug_on_error, Vdebug_on_signal)
2499 (Vdebugger, Vinhibit_quit, Vmacro_declaration_function)
2500 (Vquit_flag, Vsignal_hook_function, Vstack_trace_on_error)
2501 (debug_on_next_call, debug_on_quit, debugger_may_continue)
2502 (max_lisp_eval_depth, max_specpdl_size): Remove.
2503 * emacs.c (syms_of_emacs): Update.
2504 (Vafter_init_time, Vbefore_init_time, Vcommand_line_args)
2505 (Vdynamic_library_alist, Vemacs_copyright, Vemacs_version)
2506 (Vinstallation_directory, Vinvocation_directory)
2507 (Vinvocation_name, Vkill_emacs_hook, Vpath_separator)
2508 (Vprevious_system_messages_locale, Vprevious_system_time_locale)
2509 (Vsystem_configuration, Vsystem_configuration_options)
2510 (Vsystem_messages_locale, Vsystem_time_locale, Vsystem_type)
2511 (inhibit_x_resources, noninteractive1): Remove.
2512 * editfns.c (syms_of_editfns): Update.
2513 (Vbuffer_access_fontified_property)
2514 (Vbuffer_access_fontify_functions, Vinhibit_field_text_motion)
2515 (Voperating_system_release, Vsystem_name, Vuser_full_name)
2516 (Vuser_login_name, Vuser_real_login_name): Remove.
2517 * dosfns.c (syms_of_dosfns): Update.
2518 (Vdos_display_scancodes, Vdos_version, Vdos_windows_version)
2519 (dos_codepage, dos_country_code, dos_decimal_point)
2520 (dos_hyper_key, dos_keyboard_layout, dos_keypad_mode)
2521 (dos_super_key, dos_timezone_offset): Remove.
2522 * doc.c (syms_of_doc): Update.
2523 (Vbuild_files, Vdoc_file_name): Remove.
2524 * dispnew.c (syms_of_display): Update.
2525 (Vglyph_table, Vinitial_window_system)
2526 (Vredisplay_preemption_period, Vstandard_display_table)
2527 (Vwindow_system_version, baud_rate, cursor_in_echo_area)
2528 (inverse_video, redisplay_dont_pause, visible_bell): Remove.
2529 * dired.c (syms_of_dired): Update.
2530 (Vcompletion_ignored_extensions): Remove.
2531 (Vw32_get_true_file_attributes): Remove declaration.
2532 * dbusbind.c (syms_of_dbusbind): Update.
2533 (Vdbus_debug, Vdbus_registered_buses)
2534 (Vdbus_registered_objects_table): Remove.
2535 * data.c (syms_of_data): Update.
2536 (Vmost_negative_fixnum, Vmost_positive_fixnum): Remove.
2537 * composite.c (syms_of_composite): Update.
2538 (Vauto_composition_function, Vauto_composition_mode)
2539 (Vcompose_chars_after_function, Vcomposition_function_table):
2540 Remove.
2541 * coding.c (syms_of_coding): Update.
2542 (Vcharset_revision_table, Vcoding_category_list)
2543 (Vcoding_system_alist, Vcoding_system_for_read)
2544 (Vcoding_system_for_write, Vcoding_system_list)
2545 (Vdefault_process_coding_system, Venable_character_translation)
2546 (Vfile_coding_system_alist, Vlast_code_conversion_error)
2547 (Vlast_coding_system_used, Vlatin_extra_code_table)
2548 (Vlocale_coding_system, Vnetwork_coding_system_alist)
2549 (Vprocess_coding_system_alist)
2550 (Vselect_safe_coding_system_function)
2551 (Vstandard_translation_table_for_decode)
2552 (Vstandard_translation_table_for_encode)
2553 (Vtranslation_table_for_input, coding_system_require_warning)
2554 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
2555 (eol_mnemonic_unix, inherit_process_coding_system)
2556 (inhibit_eol_conversion, inhibit_iso_escape_detection)
2557 (inhibit_null_byte_detection): Remove.
2558 * cmds.c (syms_of_cmds): Update.
2559 (Vpost_self_insert_hook): Remove.
2560 * charset.c (syms_of_charset): Update.
2561 (Vcharset_list, Vcharset_map_path, Vcurrent_iso639_language)
2562 (inhibit_load_charset_map): Remove.
2563 * character.c (syms_of_character): Update.
2564 (Vauto_fill_chars, Vchar_direction_table, Vchar_script_table)
2565 (Vchar_width_table, Vprintable_chars)
2566 (Vscript_representative_chars, Vtranslation_table_vector)
2567 (Vunicode_category_table): Remove.
2568 * ccl.c (syms_of_ccl): Update.
2569 (Vcode_conversion_map_vector, Vfont_ccl_encoder_alist)
2570 (Vtranslation_hash_table_vector): Remove.
2571 * category.c (syms_of_category): Update.
2572 (Vword_combining_categories, Vword_separating_categories): Remove.
2573 * callproc.c (syms_of_callproc): Update.
2574 (Vconfigure_info_directory, Vdata_directory, Vdoc_directory)
2575 (Vexec_directory, Vexec_path, Vexec_suffixes)
2576 (Vinitial_environment, Vprocess_environment)
2577 (Vshared_game_score_directory, Vshell_file_name): Remove.
2578 * callint.c (syms_of_callint): Update.
2579 (Vcommand_debug_status, Vcommand_history, Vcurrent_prefix_arg)
2580 (Vmark_even_if_inactive, Vmouse_leave_buffer_hook): Remove.
2581 * bytecode.c (syms_of_bytecode): Update.
2582 (Vbyte_code_meter, byte_metering_on): Remove.
2583 * buffer.c (syms_of_buffer): Update.
2584 (Vafter_change_functions, Vbefore_change_functions)
2585 (Vchange_major_mode_hook, Vfirst_change_hook)
2586 (Vinhibit_read_only, Vkill_buffer_query_functions)
2587 (Vtransient_mark_mode, inhibit_modification_hooks): Remove.
2588 * alloc.c (syms_of_alloc): Update.
2589 (Vgc_cons_percentage, Vgc_elapsed, Vmemory_full)
2590 (Vmemory_signal_data, Vpost_gc_hook, Vpurify_flag)
2591 (cons_cells_consed, floats_consed, garbage_collection_messages)
2592 (gc_cons_threshold, gcs_done, intervals_consed)
2593 (misc_objects_consed, pure_bytes_used, string_chars_consed)
2594 (strings_consed, symbols_consed, vector_cells_consed): Remove.
2595
2596 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
2597 (DEFVAR_INT): Assume global is in `globals'.
2598 * alloc.c (globals): Define.
2599
2600 2011-01-18 Tom Tromey <tromey@redhat.com>
2601
2602 * image.c (Vimagemagick_render_type): Remove redundant
2603 definition.
2604
2605 2011-01-18 Tom Tromey <tromey@redhat.com>
2606
2607 * xdisp.c (emacs_scroll_step): Rename from scroll_step.
2608 (try_scrolling): Rename argument to 'arg_scroll_conservatively'.
2609 (redisplay_window): Update.
2610 (syms_of_xdisp): Update.
2611
2612 2011-01-18 Tom Tromey <tromey@redhat.com>
2613
2614 * gtkutil.h (x_gtk_use_old_file_dialog, x_gtk_show_hidden_files)
2615 (x_gtk_file_dialog_help_text, x_gtk_whole_detached_tool_bar):
2616 Declare.
2617 * gtkutil.c (xg_uses_old_file_dialog):
2618 (xg_get_file_with_chooser):
2619 (xg_tool_bar_detach_callback): Don't redeclare globals.
2620
2621 2011-01-18 Tom Tromey <tromey@redhat.com>
2622
2623 * lisp.h (DEFVAR_BUFFER_DEFAULTS): New macro.
2624 * buffer.c (syms_of_buffer): Use DEFVAR_BUFFER_DEFAULTS.
2625
2626 2011-01-18 Paul Eggert <eggert@cs.ucla.edu>
2627
2628 * lisp.h (DECL_ALIGN): Define if HAVE_ATTRIBUTE_ALIGNED, not if
2629 defined __GNUC__. ../configure now checks for this GCC feature,
2630 which is now also supported by IBM and Oracle compilers.
2631 (USE_LSB_TAG) [defined DECL_ALIGN]: Also define if defined __sun,
2632 since Solaris malloc returns mult-of-8.
2633
2634 2011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
2635
2636 * image.c (syms_of_image): Don't access XSYMBOL's internals directly.
2637
2638 2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
2639
2640 Give a name FLOAT_TO_STRING_BUFSIZE to the constant 350.
2641 * lisp.h (FLOAT_TO_STRING_BUFSIZE): New macro.
2642 * data.c (Fnumber_to_string): Use it.
2643 * print.c (float_to_string, print_object): Likewise.
2644
2645 Include <unistd.h> unilaterally.
2646 * alloc.c, atimer.c, buffer.c, callproc.c, dired.c, dispnew.c, doc.c:
2647 * doprnt.c, editfns.c, emacs.c, fileio.c, filelock.c, fns.c:
2648 * getloadavg.c, getpagesize.h, gmalloc.c, image.c, keyboard.c:
2649 * lread.c, process.c, process.h, ralloc.c, regex.c, sysdep.c:
2650 * systty.h, term.c, termcap.c, xfns.c, xrdb.c, xselect.c, xsmfns.c:
2651 * xterm.c:
2652 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
2653 unistd.h is always present now, possibly supplied by gnulib.
2654
2655 * mktime.c: Remove; moving to ../lib.
2656
2657 Use gnulib's mktime module.
2658 * deps.mk (mktime.o): Remove rule.
2659
2660 Use gnulib's ftoastr module.
2661 * print.c: Include ftoastr.h.
2662 (FLT_RADIX, DBL_MANT_DIG, DBL_DIG, DBL_MIN, DOUBLE_DIGITS_BOUND):
2663 Remove; no longer needed.
2664 (float_to_string): Use dtoastr rather than rolling our own code,
2665 which had an off-by-one bug on non-IEEE hosts.
2666
2667 Automate syncing from gnulib.
2668 * Makefile.in (lib): New macro.
2669 (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib.
2670 ($(lib)/libgnu.a): New rule.
2671 (temacs$(EXEEXT)): Also link $(lib)/libgnu.a.
2672
2673 * xfns.c (x_real_positions): Fix signedness of local var 'ign'.
2674 XGetGeometry wants unsigned int *, not int *, for its last 4 args,
2675 so change the type of 'ign' to unsigned int from int.
2676
2677 * regex.c (analyse_first): Remove unreachable 'continue' statement.
2678
2679 * xterm.h (struct x_display_info): Remove stray semicolon.
2680 The extra semicolon didn't conform to the C standard.
2681 Problem reported by Sun cc.
2682
2683 * lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics.
2684 These changes make compilation easier to follow with Sun cc.
2685 (ARRAY_MARK_FLAG): Make it signed, so that it can be assigned to
2686 EMACS_INT values without provoking overflow diagnostics.
2687 (PSEUDOVECTOR_FLAG): Likewise, for consistency.
2688 (XSET) [! USE_LSB_TAG]: Use unsigned left shift to avoid overflow
2689 diagnostic with signed left shift.
2690
2691 * fileio.c (make_temp_name): Remove unreachable code.
2692
2693 * fontset.c (free_realized_fontset): Mark unreachable code with if (0).
2694 Previously it was marked by preceding it with "return;", but
2695 Sun cc complains about this.
2696
2697 * coding.c (decode_coding_emacs_mule): Remove unreachable code.
2698 This is a typo left over from 2009-03-06T07:51:52Z!handa@m17n.org,
2699 which fixed Bug#2370. Caught by Sun cc.
2700
2701 2011-01-15 Martin Rudalics <rudalics@gmx.at>
2702
2703 * window.c (inhibit_point_swap): New variable.
2704 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping
2705 point this time.
2706 (Fset_window_configuration): Set inhibit_point_swap to 1 instead
2707 of setting selected_window to nil (Bug#7728).
2708
2709 2011-01-11 Tassilo Horn <tassilo@member.fsf.org>
2710
2711 * image.c (imagemagick_load_image, Finit_image_library):
2712 Free intermediate image after creating a MagickWand from it.
2713 Terminate MagickWand environment after image loading.
2714
2715 2011-01-10 Michael Albinus <michael.albinus@gmx.de>
2716
2717 * dbusbind.c (Fdbus_register_service): Raise an error in case of
2718 unexpected return values.
2719 (Fdbus_register_method): Remove connection initialization.
2720
2721 2011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
2722
2723 * dbusbind.c (QCdbus_request_name_allow_replacement): New symbol;
2724 used by Fdbus_register_service.
2725 (QCdbus_request_name_replace_existing): Likewise.
2726 (QCdbus_request_name_do_not_queue): Likewise.
2727 (QCdbus_request_name_reply_primary_owner): Likewise.
2728 (QCdbus_request_name_reply_in_queue): Likewise.
2729 (QCdbus_request_name_reply_exists): Likewise.
2730 (QCdbus_request_name_reply_already_owner): Likewise.
2731 (Fdbus_register_service): New function.
2732 (Fdbus_register_method): Use Fdbus_register_service to do the name
2733 registration.
2734 (syms_of_dbusbind): Add symbols dbus-register-service,
2735 :allow-replacement, :replace-existing, :do-not-queue,
2736 :primary-owner, :existing, :in-queue and :already-owner.
2737
2738 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
2739
2740 * gtkutil.c (update_frame_tool_bar): Don't advance tool-bar index
2741 when removing extra buttons.
2742
2743 2011-01-08 Chong Yidong <cyd@stupidchicken.com>
2744
2745 * fns.c (Fyes_or_no_p): Doc fix.
2746
2747 2011-01-08 Andreas Schwab <schwab@linux-m68k.org>
2748
2749 * fns.c (Fyes_or_no_p): Add usage.
2750
2751 2011-01-08 Glenn Morris <rgm@gnu.org>
2752
2753 * makefile.w32-in ($(EMACS)):
2754 * Makefile.in (emacs$(EXEEXT)): -batch implies -q.
2755
2756 * xdisp.c (syms_of_xdisp) <Qrisky_local_variable>: Move from here...
2757 * emacs.c (syms_of_emacs) <Qrisky_local_variable>: ...to here.
2758
2759 2011-01-07 Andreas Schwab <schwab@linux-m68k.org>
2760
2761 * image.c (imagemagick_load_image): Fix some resource leaks and
2762 error handling.
2763
2764 2011-01-07 Chong Yidong <cyd@stupidchicken.com>
2765
2766 * fns.c (Fyes_or_no_p): Accept format string args.
2767
2768 2011-01-07 Glenn Morris <rgm@gnu.org>
2769
2770 * emacs.c (no_site_lisp): New int.
2771 (USAGE1): Add --no-site-lisp, mention -Q uses it.
2772 (main): Set no_site_lisp.
2773 (standard_args): Add --no-site-lisp.
2774 * lisp.h (no_site_lisp): New int.
2775 * lread.c (init_lread): If no_site_lisp, don't re-add site-lisp
2776 directories to Vload_path.
2777
2778 2011-01-05 Andreas Schwab <schwab@linux-m68k.org>
2779
2780 * alloc.c (mark_stack): Use __builtin_unwind_init if available.
2781
2782 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
2783
2784 * dbusbind.c (Fdbus_register_method): Add optional parameter
2785 dont_register_service. Updated docstring accordingly.
2786
2787 2011-01-04 Glenn Morris <rgm@gnu.org>
2788
2789 * emacs.c (emacs_copyright): Update short copyright year to 2011.
2790
2791 2011-01-03 Eli Zaretskii <eliz@gnu.org>
2792
2793 * image.c (png_jmpbuf): Remove definition.
2794 (my_png_error, png_load): Don't use png_jmpbuf.
2795
2796 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2797
2798 * keyboard.c (Vselect_active_regions): Doc fix. (Bug#7702)
2799
2800 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2801
2802 * image.c <Qlibpng_version>: New variable.
2803 (syms_of_image): Intern and staticpro it. Set its value to the
2804 version of PNG library we were compiled with.
2805 (my_png_error, png_load): Avoid GCC warnings about direct access
2806 to png_ptr->jmpbuf. (Bug#7716)
2807 (png_jmpbuf): New macro.
2808 (my_png_error, png_load): Use it instead of #ifdef'ing according
2809 to PNG_LIBPNG_VER_MAJOR and PNG_LIBPNG_VER_MINOR.
2810
2811 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
2812
2813 * .gdbinit (xgetptr): Fix the union+lsb case.
2814 (xbacktrace): Fix the union case.
2815
2816 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
2817
2818 * window.c (Fmove_to_window_line): Avoid abort when called in a buffer
2819 different from selected-window's.
2820
2821 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2822
2823 * keyboard.c (parse_menu_item): Prepend " " to the key sequence
2824 equivalent of a menu item when the key sequence is given by the
2825 `:keys' attribute. (Bug#7662)
2826
2827 * xdisp.c (Fformat_mode_line): Doc fix: no need to state that only
2828 the basic faces are supported.
2829
2830 2011-01-02 Jan Djärv <jan.h.d@swipnet.se>
2831
2832 * xterm.c (x_check_fullscreen): Fix pixel/character mixup.
2833
2834 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2835
2836 * xdisp.c (Fformat_mode_line): Fix last change.
2837
2838 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
2839
2840 * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic
2841 faces (Bug#7587).
2842
2843 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2844
2845 * fileio.c (Fexpand_file_name): One more doc fix.
2846
2847 2011-01-01 Chong Yidong <cyd@stupidchicken.com>
2848
2849 * gtkutil.c (xg_get_tool_bar_widgets): Use NULL for a missing
2850 image or label in the container.
2851 (xg_make_tool_item): Replace VERT_ONLY arg with HORIZ, TEXT_IMAGE.
2852 (xg_show_toolbar_item): Function deleted.
2853 (xg_tool_item_stale_p): New function.
2854 (update_frame_tool_bar): Calculate tool-bar style once per call.
2855 Instead of hiding text labels, omit them. Don't use
2856 xg_show_toolbar_item; create new GtkToolItems from scratch if
2857 necessary, instead of trying to re-use them. This avoids an
2858 annoying animation when changing tool-bars.
2859
2860 2010-12-31 Jan Djärv <jan.h.d@swipnet.se>
2861
2862 * nsfns.m (ns_set_name_as_filename): Always use buffer name for
2863 title and buffer filename only for RepresentedFilename.
2864 Handle bad UTF-8 in buffer name (Bug#7517).
2865
2866 2010-12-30 Jan Djärv <jan.h.d@swipnet.se>
2867
2868 * coding.h (ENCODE_UTF_8): Remove "Used by ..." comment.
2869
2870 * nsfns.m (ns_set_name_iconic): Remove.
2871 (ns_set_name_internal): New function (Bug#7517).
2872 (Vicon_title_format): Extern declare.
2873 (ns_set_name): Call ns_set_name_internal.
2874 (x_explicitly_set_name): Remove call to ns_set_name_iconic.
2875 (x_implicitly_set_name): Ditto.
2876 (x_set_title): Remove commet about EXPLICIT. Call ns_set_name_internal.
2877 (ns_set_name_as_filename): Encode name with ENCODE_UTF_8 (Bug#7517).
2878
2879 2010-12-29 Štěpán Němec <stepnem@gmail.com> (tiny change)
2880
2881 * window.c (syms_of_window): Add missing defsubr for
2882 window-use-time.
2883
2884 2010-12-28 Andreas Schwab <schwab@linux-m68k.org>
2885
2886 * xterm.h (x_alloc_lighter_color_for_widget): Restore declaration.
2887 * xterm.c (x_alloc_lighter_color_for_widget): Restore.
2888
2889 2010-12-27 Andreas Schwab <schwab@linux-m68k.org>
2890
2891 * buffer.c: Remove unused declarations.
2892 * buffer.h: Likewise.
2893 * charset.h: Likewise.
2894 * composite.h: Likewise.
2895 * dispextern.h: Likewise.
2896 * dispnew.c: Likewise.
2897 * font.h: Likewise.
2898 * fontset.c: Likewise.
2899 * fontset.h: Likewise.
2900 * intervals.h: Likewise.
2901 * keymap.h: Likewise.
2902 * lisp.h: Likewise.
2903 * syntax.c: Likewise.
2904 * syntax.h: Likewise.
2905 * termhooks.h: Likewise.
2906 * window.h: Likewise.
2907 * xsettings.h: Likewise.
2908 * xterm.c: Likewise.
2909 * xterm.h: Likewise.
2910
2911 * chartab.c (sub_char_table_ref): Make static.
2912 * dispnew.c (line_hash_code, required_matrix_height)
2913 (required_matrix_width): Likewise.
2914 * eval.c (interactive_p, apply_lambda): Likewise.
2915 * fns.c (string_make_multibyte, copy_hash_table, hash_clear):
2916 Likewise.
2917 * font.c (QCadstyle, QCregistry, font_make_spec)
2918 (font_parse_fcname, font_encode_char, font_at): Likewise.
2919 * frame.c (x_frame_get_arg): Likewise.
2920 * keymap.c (get_keyelt): Likewise.
2921 * lread.c (read_filtered_event): Likewise.
2922 * print.c (write_string_1): Likewise.
2923 * window.c (delete_window, window_height, window_width)
2924 (foreach_window): Likewise.
2925 * xrdb.c (x_get_customization_string, x_get_resource): Likewise.
2926 * xterm.c (x_scroll_bar_clear, xembed_set_info)
2927 (xembed_send_message): Likewise.
2928
2929 * eval.c (run_hook_list_with_args): Delete.
2930 * font.c (font_unparse_gtkname, font_update_lface): Likewise.
2931 * terminal.c (get_terminal_param): Likewise.
2932 * xterm.c (x_alloc_lighter_color_for_widget): Likewise.
2933
2934 * scroll.c: Fix comment.
2935
2936 * dispnew.c (add_window_display_history)
2937 (add_frame_display_history, glyph_row_slice_p)
2938 (find_glyph_row_slice, flush_stdout)
2939 (check_matrix_pointer_lossage, matrix_row)
2940 (check_matrix_invariants, check_window_matrix_pointers)
2941 (check_matrix_pointers, window_to_frame_vpos)
2942 (window_to_frame_hpos): Prototize.
2943 * textprop.c (erase_properties): Likewise.
2944
2945 2010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
2946
2947 * print.c (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): Remove.
2948 (print_preprocess): Fix handling of uninterned symbols in last change.
2949
2950 * print.c (print, print_preprocess, print_object): Use a hash table
2951 rather than a linear table for Vprint_number_table.
2952
2953 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
2954
2955 * frame.c (focus_follows_mouse): Default to 0 (Bug#7269).
2956
2957 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
2958
2959 * keyboard.c (Vtool_bar_separator_image_expression): New variable.
2960 (parse_tool_bar_item): Use it to obtain image separators for
2961 displays not using native tool-bar separators.
2962
2963 * xdisp.c (build_desired_tool_bar_string): Don't handle separators
2964 specially, since this is now done in parse_tool_bar_item.
2965
2966 2010-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
2967
2968 Minor clean up to silence some gcc warnings.
2969 * window.c (Fset_window_buffer):
2970 * xterm.c (x_set_frame_alpha): Restructure code to silence
2971 compiler warning.
2972 (handle_one_xevent): Remove unused var `p'.
2973 (do_ewmh_fullscreen): Remove unused var `lval'.
2974 (xembed_set_info): Remove unused var `atom'.
2975 * textprop.c (Fremove_list_of_text_properties): Add braces to silence
2976 compiler warning.
2977 * fontset.c (fontset_id_valid_p, dump_fontset):
2978 * ftfont.c (ftfont_drive_otf): Modernize k&r declaration.
2979 * eval.c (Feval, Ffuncall): Avoid unneeded gotos.
2980 * dispnew.c (update_frame, update_frame_1): Compile the `do_pause'
2981 label only when it's used.
2982 * image.c (x_create_bitmap_from_xpm_data):
2983 * dispextern.h (x_create_bitmap_from_xpm_data): Use const char** like
2984 its callers.
2985 * coding.c (detect_coding_utf_16): Remove unused vars `src_base' and
2986 `consumed_chars'.
2987 (DECODE_EMACS_MULE_21_COMPOSITION): Remove unused var `charbuf_base'.
2988 (decode_coding_emacs_mule): Remove unused label `retry'.
2989 (detect_eol): Add parens to silence compiler warning.
2990 * alloc.c (bytes_used_when_reconsidered): Move to the #ifdef where
2991 it's used to silence the compiler.
2992 (make_number): Modernize k&r declaration.
2993 (mark_char_table): Add parens to silence compiler warning.
2994
2995 2010-12-17 Chong Yidong <cyd@stupidchicken.com>
2996
2997 * keyboard.c (parse_tool_bar_item): Allow menu separators in
2998 tool-bar maps.
2999 (menu_separator_name_p): New function, from gtkutil.c.
3000 (separator_names): Move from gtkutil.c.
3001
3002 * keyboard.h (menu_separator_name_p): Add prototype.
3003
3004 * gtkutil.c (XG_BIN_CHILD): New macro.
3005 (xg_get_menu_item_label, xg_update_menubar)
3006 (xg_update_menu_item, xg_tool_bar_menu_proxy)
3007 (xg_show_toolbar_item, update_frame_tool_bar): Use it.
3008 (separator_names, xg_separator_p): Move to keyboard.c.
3009 (create_menus, xg_update_submenu, update_frame_tool_bar):
3010 Use menu_separator_name_p.
3011
3012 * nsmenu.m (name_is_separator): Function deleted.
3013 (addItemWithWidgetValue): Use menu_separator_name_p.
3014
3015 * w32menu.c (name_is_separator): Function deleted.
3016 (add_menu_item): Use menu_separator_name_p.
3017
3018 2010-12-16 Jan Djärv <jan.h.d@swipnet.se>
3019
3020 * nsterm.m (ns_draw_window_cursor): If the cursor color is the
3021 same as the background, use the face forground as cursor.
3022
3023 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3024
3025 * fileio.c (Fexpand_file_name): Doc fix. (Bug#7617)
3026
3027 2010-12-13 Eli Zaretskii <eliz@gnu.org>
3028
3029 * xdisp.c (string_pos_nchars_ahead, c_string_pos)
3030 (face_before_or_after_it_pos, next_element_from_string)
3031 (next_element_from_c_string, produce_stretch_glyph): Remove unused
3032 calculations of maximum string length before calling
3033 string_char_and_length and STRING_CHAR_AND_LENGTH.
3034 (string_char_and_length): Update commentary: MAXLEN is no longer
3035 needed.
3036
3037 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
3038
3039 * keyboard.c (kbd_buffer_get_event): Construct SAVE_SESSION_EVENT
3040 as (Qsave_session arg).
3041
3042 * xsmfns.c (smc_interact_CB): Set arg to Qnil.
3043 (smc_die_CB): Make an event with arg Qt.
3044 (Fhandle_save_session): If event has Qt as argument,
3045 call Fkill_emacs (Bug#7552).
3046
3047 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3048
3049 * buffer.c (transient-mark-mode): Doc fix (Bug#7465).
3050
3051 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
3052
3053 * xsmfns.c (smc_die_CB): Call Fkill_emacs (Bug#7552).
3054
3055 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3056
3057 * dispextern.h (struct it): New member overlay_strings_charpos.
3058
3059 * xdisp.c (next_overlay_string, load_overlay_strings): Record the
3060 charpos where we computed n_overlay_strings.
3061 (next_overlay_string): Load overlay strings at recorded position,
3062 which may not be the same as the iterator's charpos (Bug#7016).
3063
3064 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
3065
3066 * xdisp.c (try_scrolling): Avoid infloop if the first line is
3067 obscured due to a vscroll (Bug#7537).
3068
3069 2010-12-13 Jan Djärv <jhd@zeplinf.localdomain>
3070
3071 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
3072
3073 * nsterm.m (x_set_window_size, windowWillResize, initFrameFromEmacs):
3074 Use FRAME_TOOLBAR_HEIGHT.
3075 (x_set_offset): Handle XNegative and YNegative in
3076 f->size_hint_flags (Bug#7510).
3077
3078 2010-12-11 Eli Zaretskii <eliz@gnu.org>
3079
3080 * w32fns.c (Fx_show_tip): Call try_window with last argument
3081 TRY_WINDOW_IGNORE_FONTS_CHANGE. Delete the TODO ifdef: problem
3082 solved. Round up the tip height to an integral multiple of the
3083 frame's line height. Add FRAME_COLUMN_WIDTH to the tip width.
3084 (Bug#7398)
3085
3086 2010-12-08 Glenn Morris <rgm@gnu.org>
3087
3088 * fileio.c (Fverify_visited_file_modtime): Default to current buffer.
3089
3090 2010-12-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3091
3092 * xml.c (parse_region): Ignore blank HTML nodes.
3093 (make_dom): Return CDATA sections (like <style>foo</style>) as
3094 text nodes.
3095
3096 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3097
3098 * lread.c (read1): Allow newstyle unquote outside of backquote.
3099 Disallow old-style backquotes inside new-style backquotes.
3100 Don't count unquotes to figure out when we're "syntactically inside
3101 but semantically outside of a backquote" any more.
3102 Extend the restriction no-unescaped-commas-and-backquotes-in-symbols
3103 to all contexts.
3104
3105 2010-12-05 Chong Yidong <cyd@stupidchicken.com>
3106
3107 * process.c: Remove checks for HAVE_SYS_IOCTL_H (Bug#7484).
3108
3109 2010-12-04 Andreas Schwab <schwab@linux-m68k.org>
3110
3111 * Makefile.in (M_FILE): Substitute @M_FILE@ instead of @machfile@.
3112 (S_FILE): Substitute @S_FILE@ instead of @opsysfile@.
3113 * m/arm.h, m/sh3.h, m/xtensa.h: Remove files.
3114
3115 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
3116
3117 * lisp.h (union Lisp_Object): Explicitly declare signedness of
3118 bit-field.
3119 (XINT): Remove variant for EXPLICIT_SIGN_EXTEND.
3120 * m/alpha.h (EXPLICIT_SIGN_EXTEND): Don't define.
3121 * m/amdx86-64.h (EXPLICIT_SIGN_EXTEND): Likewise.
3122 * m/ia64.h (EXPLICIT_SIGN_EXTEND): Likewise.
3123 * m/ibms390.h (EXPLICIT_SIGN_EXTEND): Likewise.
3124 * m/ibms390x.h (EXPLICIT_SIGN_EXTEND): Likewise.
3125 * m/iris4d.h (EXPLICIT_SIGN_EXTEND): Likewise.
3126 * m/m68k.h (EXPLICIT_SIGN_EXTEND): Likewise.
3127 * m/sparc.h (EXPLICIT_SIGN_EXTEND): Likewise.
3128 * m/template.h (EXPLICIT_SIGN_EXTEND): Likewise.
3129 * m/hp800.h: Remove file.
3130 * m/mips.h: Remove file.
3131
3132 2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
3133
3134 * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background
3135 with cursor color and draw a rectangle around the image (Bug#7412).
3136
3137 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
3138
3139 * frame.c (x_set_font): Remove unused variable.
3140
3141 2010-12-02 Jan Djärv <jan.h.d@swipnet.se>
3142
3143 * nsmenu.m (update_frame_tool_bar): Remove NSLog on invalid image.
3144
3145 * nsterm.m (ns_draw_glyph_string): Switch fore- and background if
3146 drawing text under filled box cursor (Bug#7479).
3147
3148 2010-11-27 Kenichi Handa <handa@m17n.org>
3149
3150 * charset.c (emacs_mule_charset): Make it an array of charset ID;
3151 i.e. integer.
3152 (Fdefine_charset_internal): Adjust for the above change.
3153 (init_charset_once): Likewise.
3154
3155 * charset.h (emacs_mule_charset): Adjust the prototype.
3156 Delete duplicated extern.
3157
3158 * coding.c (emacs_mule_char): Adjust for the change of
3159 emacs_mule_charset.
3160
3161 * lread.c (read_emacs_mule_char): Adjust for the change of
3162 emacs_mule_charset.
3163
3164 2010-11-27 Eli Zaretskii <eliz@gnu.org>
3165
3166 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
3167 of w32api >= 3.15. (Bug#6989) (Bug#7452)
3168
3169 2010-11-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3170
3171 * alloc.c (mark_terminals): Ensure that the image cache is marked
3172 even if the terminal object was marked earlier (Bug#6301).
3173
3174 2010-11-21 Chong Yidong <cyd@stupidchicken.com>
3175
3176 * editfns.c (Fbyte_to_string): Signal an error arg is not a byte.
3177
3178 2010-11-27 Jan Djärv <jan.h.d@swipnet.se>
3179
3180 * gtkutil.c (menubar_map_cb): New function (Bug#7425).
3181 (xg_update_frame_menubar): Connect signal map to menubar_map_cb.
3182 Use 23 as menubar height if 0. (Bug#7425).
3183
3184 2010-11-26 Eli Zaretskii <eliz@gnu.org>
3185
3186 * xdisp.c (set_message_1): Force paragraph direction in echo area
3187 be left-to-right.
3188
3189 * keyboard.c (make_lispy_position): Put a meaningful value in yret
3190 when the click is on the header or mode line.
3191
3192 2010-11-25 Eli Zaretskii <eliz@gnu.org>
3193
3194 * xdisp.c (set_cursor_from_row): Don't forget to consider the
3195 `cursor' property of the first character in overlay strings.
3196 (Bug#7474) (Bug#7481)
3197
3198 2010-11-24 Jan Djärv <jan.h.d@swipnet.se>
3199
3200 * nsterm.m (NSLeftControlKeyMask, NSLeftCommandKeyMask)
3201 (NSLeftAlternateKeyMask): New defines.
3202 (keyDown): Parse left and right keys separately (Bug#7458).
3203 Compare Left key masks exactly (Bug#7458).
3204
3205 2010-11-23 Eli Zaretskii <eliz@gnu.org>
3206
3207 * intervals.c (temp_set_point_both): Define before calling, to
3208 avoid GCC warnings.
3209
3210 2010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
3211
3212 * nsmenu.m: Use #include <config.h> instead of "config.h".
3213
3214 * term.c (Qglyphless_char,last_glyphless_glyph_frame)
3215 (last_glyphless_glyph_face_id, last_glyphless_glyph_merged_face_id):
3216 Move declarations ...
3217 * lisp.h (Qglyphless_char,last_glyphless_glyph_frame)
3218 (last_glyphless_glyph_face_id, last_glyphless_glyph_merged_face_id):
3219 ... here.
3220
3221 * emacs.c (gdb_use_union, gdb_valbits,gdb_gctypebits)
3222 (gdb_data_seg_bits, gdb_array_mark_flag, PVEC_FLAG)
3223 (gdb_pvec_type):
3224 * print.c (print_output_debug_flag):
3225 * lisp.h (debug_print): Mark as EXTERNALLY_VISIBLE.
3226 (safe_debug_print): New declaration.
3227
3228 * xterm.c:
3229 * systty.h:
3230 * sound.c: Include <sys/ioctl.h> unconditionally.
3231
3232 2010-11-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3233
3234 * alloc.c (mark_maybe_object): Return early if given a Lisp
3235 integer (Bug#6301).
3236
3237 2010-11-21 Ken Brown <kbrown@cornell.edu>
3238
3239 * sheap.c (STATIC_HEAP_SIZE): Revert previous change.
3240
3241 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
3242
3243 * nsterm.m (ns_right_command_modifier, ns_right_control_modifier):
3244 Define (Bug#7458).
3245 (NSRightCommandKeyMask, NSRightControlKeyMask): Define (Bug#7458).
3246 (EV_MODIFIERS): Check for NSRightCommandKeyMask and
3247 NSRightControlKeyMask also (Bug#7458).
3248 (keyDown): Ditto (Bug#7458).
3249 (syms_of_nsterm): Defvar ns-right-command-modifier and
3250 ns-right-control-modifier (Bug#7458).
3251
3252 2010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
3253
3254 * sysdep.c (sys_subshell): Remove SET_EMACS_PRIORITY.
3255 * emacs.c (emacs_priority, syms_of_emacs): Remove emacs_priority.
3256
3257 * intervals.h (temp_set_point, temp_set_point_both):
3258 * buffer.h (offset_intervals, copy_intervals): Remove INLINE.
3259
3260 2010-11-20 Ken Brown <kbrown@cornell.edu>
3261
3262 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
3263
3264 2010-11-20 Eli Zaretskii <eliz@gnu.org>
3265
3266 * term.c (produce_glyphless_glyph): Use \uNNNN, \UNNNNNN, or
3267 \xNNNNNN for hex-code display of glyphless characters.
3268
3269 2010-11-20 Jan Djärv <jan.h.d@swipnet.se>
3270
3271 * gtkutil.c (xg_make_tool_item): Take vert_only as argument.
3272 Set important to ! vert_only.
3273 (xg_show_toolbar_item): Don't show label horizontally if
3274 tool item isn't important.
3275 (update_frame_tool_bar): Get TOOL_BAR_ITEM_VERT_ONLY and pass it to
3276 xg_make_tool_item, or update important on existing tool item.
3277
3278 * keyboard.c (QCvert_only): New variable.
3279 (parse_tool_bar_item): Check for QCvert_only.
3280 (syms_of_keyboard): Initialize QCvert_only.
3281
3282 * dispextern.h (tool_bar_item_idx): Add TOOL_BAR_ITEM_VERT_ONLY.
3283
3284 2010-11-20 Eli Zaretskii <eliz@gnu.org>
3285
3286 * msdos.c (dos_rawgetc): Use gen_help_event, instead of doing the
3287 same in-line.
3288
3289 2010-11-20 Andreas Schwab <schwab@linux-m68k.org>
3290
3291 * xfaces.c (lookup_face): Make static.
3292 * dispnew.c (copy_row_except_pointers): Likewise.
3293 * syntax.c (dec_bytepos): Likewise.
3294 (inc_bytepos): Remove.
3295 * dispextern.h (lookup_face): Remove declaration.
3296
3297 2010-11-19 Eli Zaretskii <eliz@gnu.org>
3298
3299 * xdisp.c (set_cursor_from_row): Display cursor after all the
3300 glyphs that come from an overlay. Don't overstep the last glyph
3301 when skipping glyphs from an overlay. (Bug#6687)
3302
3303 2010-11-18 Dan Nicolaescu <dann@ics.uci.edu>
3304
3305 * alloc.c (refill_memory_reserve): Move declaration ...
3306 * lisp.h (refill_memory_reserve): ... here.
3307
3308 * strftime.c (_strftime_copytm): Add declaration.
3309
3310 * callproc.c (syms_of_callproc): Use intern_c_string.
3311
3312 Move declarations from .c files to .h files.
3313 * process.c (timers_run):
3314 * minibuf.c (quit_char):
3315 * lread.c (read_emacs_mule_char):
3316 * keyboard.c (minibuf_level, message_enable_multibyte)
3317 (pending_malloc_warning):
3318 * insdel.c (Vselect_active_regions, Vsaved_region_selection)
3319 (Qonly): Remove declarations.
3320 * lisp.h (pending_malloc_warning, Vsaved_region_selection)
3321 (Vselect_active_regions):
3322 * keyboard.h (timers_run): Add declarations.
3323
3324 * strftime.c (my_strftime_gmtime_r, my_strftime_localtime_r)
3325 (tm_diff): Convert definitions to standard C.
3326 (extra_args_spec_iso): Remove, unused.
3327
3328 2010-11-18 Jan Djärv <jan.h.d@swipnet.se>
3329
3330 * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
3331
3332 * config.in (HAVE_G_TYPE_INIT): New symbol.
3333
3334 2010-11-18 Eli Zaretskii <eliz@gnu.org>
3335
3336 * lread.c (Fload): Mention `load-in-progress' and
3337 `load-file-name'. (Bug#7346)
3338
3339 * keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses.
3340 (kbd_buffer_store_event_hold, kbd_buffer_get_event)
3341 (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef
3342 subprocesses. Use buffer_free only ifdef subprocesses.
3343
3344 * process.c (init_process) [subprocesses]: Init kbd_is_on_hold in
3345 the subprocesses version, not in the non-subprocesses one.
3346
3347 * Makefile.in: Don't use ## comment, it breaks the MSDOS build.
3348
3349 2010-11-17 Eli Zaretskii <eliz@gnu.org>
3350
3351 * xdisp.c (set_cursor_from_row): Fix cursor positioning in empty
3352 lines on text-mode terminals. (bug#7417)
3353
3354 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
3355
3356 * xterm.c (get_current_wm_state): Rename from get_current_vm_state.
3357 (do_ewmh_fullscreen, x_handle_net_wm_state): Update callers.
3358
3359 2010-11-17 Kenichi Handa <handa@m17n.org>
3360
3361 * coding.c (Fset_terminal_coding_system_internal): Fix previous
3362 change (set charset-ID list instead of charset-symbol list).
3363
3364 2010-11-16 Chong Yidong <cyd@stupidchicken.com>
3365
3366 * keyboard.c (make_lispy_position): For text area clicks, record Y
3367 pixel position relative to the text area, excluding header line.
3368 Also change X and Y to Lisp_Objects, not pointers; don't return
3369 coordinate values via pointers. Pass ON_TEXT_AREA coordinate to
3370 buffer_posn_from_coords counting from the start of the text area.
3371 (Fposn_at_x_y, make_lispy_event): Callers changed.
3372
3373 * window.c (coordinates_in_window): Change X and Y to ints rather
3374 than pointers; don't return coordinates via pointers.
3375 (struct check_window_data): Change X and Y from pointers to ints.
3376 (window_from_coordinates): Remove args WX and WY; don't return
3377 coordinates via pointers.
3378 (Fcoordinates_in_window_p, window_from_coordinates):
3379 (check_window_containing, Fwindow_at): Callers changed.
3380 (window_relative_x_coord): New function.
3381
3382 * window.h (window_from_coordinates, window_relative_x_coord):
3383 Update prototypes.
3384
3385 * dispnew.c (buffer_posn_from_coords): Assume that X counts from
3386 the start of the text area.
3387
3388 * xdisp.c (remember_mouse_glyph): Change window_from_coordinates
3389 call. Use window_relative_x_coord.
3390 (note_mouse_highlight): Change window_from_coordinates call.
3391
3392 * w32term.c (w32_read_socket):
3393 * msdos.c (dos_rawgetc):
3394 * xterm.c (handle_one_xevent): Likewise.
3395
3396 2010-11-16 Dan Nicolaescu <dann@ics.uci.edu>
3397
3398 * strftime.c (LOCALE_PARAM_DECL): Update for standard C.
3399 (LOCALE_PARAM, LOCALE_PARAM_PROTO): Remove, unused.
3400 (memcpy_lowcase, so_week_days, extra_args_spec, emacs_strftimeu):
3401 Convert definitions to standard C.
3402 * regex.c: Do not include <stdlib.h>, config.h does it.
3403 Include unistd.h.
3404 (xrealloc, init_syntax_once, re_match, regcomp, regexec)
3405 (regerror, regfree): Convert definitions to standard C.
3406 * mktime.c (my_mktime_localtime_r, ydhms_tm_diff, ranged_convert)
3407 (__mktime_internal): Convert definitions to standard C.
3408
3409 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3410
3411 * w32proc.c:
3412 * w32inevt.c:
3413 * w32heap.c:
3414 * w32.c: Remove config.h include guards.
3415
3416 * callproc.c (child_setup): Reorder code to simplify #ifdefs.
3417 No code changes.
3418
3419 * process.c: Include <sys/ioctl.h> unconditionally,
3420 keyboard.c already does it.
3421
3422 * keyboard.c (pending_malloc_warning): Add const to match
3423 definition in alloc.c.
3424 (Fset_input_interrupt_mode): Simplify #ifdefs.
3425
3426 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3427
3428 Clean up systty.h macros.
3429 * systty.h (EMACS_GET_TTY_PGRP, EMACS_SET_TTY_PGRP, EMACS_GET_TTY)
3430 (EMACS_SET_TTY): Remove unneeded abstraction, instead inline the
3431 definition in all uses.
3432 (EMACS_TTY_TABS_OK): Remove, it has a single user.
3433 * sysdep.c (discard_tty_input, child_setup_tty)
3434 (init_sys_modes, tabs_safe_p, reset_sys_modes):
3435 * emacs.c (shut_down_emacs):
3436 * callproc.c (child_setup):
3437 * term.c (dissociate_if_controlling_tty): Inline removed macros.
3438
3439 * data.c (sign_extend_temp, sign_extend_lisp_int): Remove, unused.
3440
3441 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
3442
3443 * w32fns.c (Fx_create_frame):
3444 * nsfns.m (Fx_create_frame): Don't check for the cursorColor
3445 resource here; it's now done at startup.
3446
3447 2010-11-14 Jan Djärv <jan.h.d@swipnet.se>
3448
3449 * xterm.c (set_wm_state): Add Qnil to final cons.
3450
3451 * xselect.c (x_send_client_event): Remove unused variables cons and
3452 size.
3453
3454 2010-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3455
3456 * keyboard.c (modify_event_symbol): Add const to array elements of
3457 arg NAME_TABLE.
3458 (lispy_accent_keys, lispy_function_keys, lispy_multimedia_keys)
3459 (lispy_kana_keys, iso_lispy_function_keys, lispy_wheel_names)
3460 (lispy_wheel_names, lispy_drag_n_drop_names, modifier_names):
3461 Add const to array elements.
3462 (scroll_bar_parts): Make static. Fix position of const.
3463
3464 * w32fns.c (lispy_function_keys): Add const to extern.
3465
3466 * w32inevt.c (lispy_function_keys): Likewise.
3467
3468 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
3469
3470 * xfns.c (Fx_create_frame): Don't check for the cursorColor
3471 resource here; it's now done at startup.
3472
3473 2010-11-13 Dan Nicolaescu <dann@ics.uci.edu>
3474
3475 * xmenu.c: Make it clear that ../lwlib/lwlib.h is only needed for Motif.
3476
3477 Fix compilation on Solaris.
3478 * sysdep.c: Do not #include <term.h>.
3479 (tputs): Add declaration, similar to what cm.c does. (Bug#7178)
3480
3481 * s/ms-w32.h (HAVE_TERMIOS_H): Do not undef, not used anymore.
3482
3483 2010-11-13 Jan Djärv <jan.h.d@swipnet.se>
3484
3485 * xterm.c (set_wm_state): Don't put Atom in cons, call
3486 make_fixnum_or_float on them first.
3487 (x_term_init): Initialize Xatom_net_supporting_wm_check and
3488 Xatom_net_supported correctly.
3489
3490 * xselect.c (x_send_client_event): Move CHECK_STRING ...
3491 (Fx_send_client_event): to here.
3492
3493 2010-11-13 Martin Rudalics <rudalics@gmx.at>
3494
3495 * window.c (Fwindow_use_time): New function.
3496
3497 2010-11-13 Eli Zaretskii <eliz@gnu.org>
3498
3499 * xdisp.c (set_cursor_from_row): Fix cursor positioning on
3500 zero-width characters.
3501
3502 * .gdbinit (pgx): Adapt to latest changes in `struct glyph'.
3503
3504 * w32term.c (x_draw_glyphless_glyph_string_foreground): Draw the
3505 box before drawing the glyphs inside it.
3506
3507 * xdisp.c (syms_of_xdisp) <glyphless-char-display>: Doc fix.
3508
3509 * dispextern.h (enum glyphless_display_method):
3510 Rename GLYPHLESS_DISPLAY_HEXA_CODE to GLYPHLESS_DISPLAY_HEX_CODE.
3511 All users changed.
3512
3513 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
3514 Fix comments.
3515 (produce_glyphless_glyph): Enclose "U+nnnn" and "empty box"
3516 whitespace in "[]", to simulate a box. Don't use uninitialized
3517 variable `width'.
3518
3519 2010-11-11 Julien Danjou <julien@danjou.info>
3520
3521 * xsettings.c (init_xsettings): Use already fetch atoms.
3522
3523 * xsmfns.c (create_client_leader_window): Use SM_CLIENT_ID atom
3524 from dpyinfo.
3525
3526 * xselect.c (Fx_send_client_event): Split and create
3527 x_send_client_event.
3528
3529 * lisp.h: Do not EXFUN Fx_send_client_event.
3530
3531 * xterm.c (x_set_frame_alpha): Use _NET_WM_WINDOW_OPACITY atom
3532 from dpyinfo.
3533 (wm_supports): Use atoms from dpyinfo.
3534 (do_ewmh_fullscreen): Use atoms from dpyinfo.
3535 (x_ewmh_activate_frame): Use atoms from dpyinfo.
3536 (xembed_set_info): Use atoms from dpyinfo.
3537 (x_term_init): Fetch _XEMBED_INFO, _NET_SUPPORTED,
3538 _NET_SUPPORTING_WM_CHECK, _NET_WM_WINDOW_OPACITY and
3539 _NET_ACTIVE_WINDOW, XSETTINGS atoms.
3540 Get all atoms in one round-trip.
3541 (set_wm_state): Use x_send_client_event rather than
3542 Fx_send_client_event, using Atom directly.
3543 (x_ewmh_activate_frame): Ditto.
3544 (x_set_sticky): Pass atoms to set_wm_state.
3545 (do_ewmh_fullscreen): Ditto.
3546
3547 * xterm.h (x_display_info): Add Xatom_net_supported,
3548 Xatom_net_supporting_wm_check, Xatom_net_active_window,
3549 Xatom_net_wm_window_opacity, Xatom_XEMBED_INFO, SM_CLIENT_ID.
3550
3551 * xfns.c (Fx_show_tip): Fix typo in docstring.
3552
3553 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
3554
3555 * cmds.c (Fself_insert_command): Don't call XFASTINT without checking
3556 it's not negative.
3557
3558 2010-11-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3559
3560 * font.c (font_filter_properties): Add const to array elements of
3561 properties args.
3562
3563 * font.h (font_filter_properties): Likewise.
3564
3565 * ftfont.c (ftfont_booleans, ftfont_non_booleans): Add const to array
3566 elements.
3567
3568 * w32font.c (w32font_booleans, w32font_non_booleans): Likewise.
3569
3570 2010-11-10 Michael Albinus <michael.albinus@gmx.de>
3571
3572 * dbusbind.c (QCdbus_type_unix_fd): New Lisp object.
3573 (XD_BASIC_DBUS_TYPE, xd_symbol_to_dbus_type, xd_signature)
3574 (xd_append_arg, xd_retrieve_arg): Support DBUS_TYPE_UNIX_FD.
3575 (Fdbus_call_method): Add DBUS_TYPE_UNIX_FD type mapping to doc string.
3576 (syms_of_dbusbind): Initialize QCdbus_type_unix_fd).
3577
3578 2010-11-10 Glenn Morris <rgm@gnu.org>
3579
3580 * emacs.c (syms_of_emacs) <system-type>: Doc fix.
3581
3582 2010-11-09 Eli Zaretskii <eliz@gnu.org>
3583
3584 * xfns.c (x_real_positions): Fix declaration-after-statement problem.
3585
3586 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
3587
3588 * image.c (free_image): Don't garbage the frame here, since this
3589 function can be called while redisplaying (Bug#7210).
3590 (uncache_image): Garbage the frame here (Bug#6426).
3591
3592 2010-11-09 Jan Djärv <jan.h.d@swipnet.se>
3593
3594 * xfns.c (x_real_positions): Only use _NET_FRAME_EXTENTS if our
3595 parent is the root window. Check this after traversing window tree.
3596
3597 * xterm.c (x_term_init): Initialize Xatom_net_frame_extents.
3598
3599 * xterm.h (struct x_display_info): Xatom_net_frame_extents is new.
3600
3601 * xfns.c (x_real_positions): Try to get _NET_FRAME_EXTENTS first
3602 before traversing window tree (Bug#5721).
3603
3604 2010-11-07 Jan Djärv <jan.h.d@swipnet.se>
3605
3606 * xfns.c (set_machine_and_pid_properties): Let X set WM_CLIENT_MACHINE.
3607
3608 * xdisp.c (note_mode_line_or_margin_highlight):
3609 Initialize Cursor to No_Cursor for HAVE_WINDOW_SYSTEM also.
3610
3611 2010-11-06 Eli Zaretskii <eliz@gnu.org>
3612
3613 * xfns.c (Fx_show_tip): If any of the tool-tip text lines is R2L,
3614 adjust width of tool-tip frame to the width of text, excluding the
3615 stretch glyph at the beginning of R2L glyph rows.
3616
3617 * w32fns.c (Fx_show_tip): Likewise.
3618
3619 2010-11-06 Jan Djärv <jan.h.d@swipnet.se>
3620
3621 * nsfont.m: Include termchar for new mouse-highlight.
3622 (nsfont_draw): Use MOUSE_HL_INFO.
3623
3624 2010-11-05 Eli Zaretskii <eliz@gnu.org>
3625
3626 Unify mouse-highlight code for all GUI and TTY sessions.
3627
3628 * term.c: Remove static mouse_face_* variables. All users
3629 changed.
3630 (term_show_mouse_face, term_clear_mouse_face)
3631 (fast_find_position, term_mouse_highlight): Functions deleted.
3632 (tty_draw_row_with_mouse_face): New function.
3633 (term_mouse_movement): Call note_mouse_highlight instead of
3634 term_mouse_highlight.
3635
3636 * nsterm.m (ns_update_window_begin, ns_update_window_end)
3637 (ns_update_end, x_destroy_window, ns_frame_up_to_date)
3638 (ns_dumpglyphs_box_or_relief, ns_maybe_dumpglyphs_background)
3639 (ns_dumpglyphs_image, ns_dumpglyphs_stretch)
3640 (ns_initialize_display_info, keyDown, mouseMoved, mouseExited):
3641 Replace Display_Info with Mouse_HLInfo everywhere where
3642 mouse_face_* members were accessed for mouse highlight purposes.
3643
3644 * xterm.c (x_update_window_begin, x_update_window_end)
3645 (x_update_end, XTframe_up_to_date, x_set_mouse_face_gc)
3646 (handle_one_xevent, x_free_frame_resources, x_term_init):
3647 Replace Display_Info with Mouse_HLInfo everywhere where mouse_face_*
3648 members were accessed for mouse highlight purposes.
3649
3650 * w32term.c (x_update_window_begin, x_update_window_end)
3651 (x_update_end, w32_read_socket, x_free_frame_resources)
3652 (w32_initialize_display_info): Replace Display_Info with
3653 Mouse_HLInfo everywhere where mouse_face_* members were accessed
3654 for mouse highlight purposes.
3655
3656 * xdisp.c (show_mouse_face, note_mode_line_or_margin_highlight)
3657 (note_mouse_highlight) [HAVE_WINDOW_SYSTEM]: Don't run GUI code
3658 unless the frame is on a window-system.
3659 (get_tool_bar_item, handle_tool_bar_click)
3660 (note_tool_bar_highlight, draw_glyphs, erase_phys_cursor)
3661 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
3662 (note_mode_line_or_margin_highlight, note_mouse_highlight)
3663 (x_clear_window_mouse_face, cancel_mouse_face, expose_frame):
3664 Replace Display_Info with Mouse_HLInfo everywhere where
3665 mouse_face_* members were accessed for mouse highlight purposes.
3666 (coords_in_mouse_face_p): Move prototype out of the
3667 HAVE_WINDOW_SYSTEM conditional.
3668 (x_y_to_hpos_vpos, frame_to_window_pixel_xy): Move out of the
3669 HAVE_WINDOW_SYSTEM block.
3670 (try_window_id) [HAVE_GPM || MSDOS]:
3671 Call x_clear_window_mouse_face.
3672 (draw_row_with_mouse_face): Implementation for HAVE_WINDOW_SYSTEM
3673 systems. Call tty_draw_row_with_mouse_face for TTY systems.
3674 (show_mouse_face): Call draw_row_with_mouse_face, instead of
3675 calling draw_glyphs directly.
3676 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
3677 (cursor_in_mouse_face_p, rows_from_pos_range)
3678 (mouse_face_from_buffer_pos, mouse_face_from_string_pos)
3679 (note_mode_line_or_margin_highlight, note_mouse_highlight)
3680 (x_clear_window_mouse_face, cancel_mouse_face): Move out of the
3681 HAVE_WINDOW_SYSTEM block. Ifdef away window-system specific
3682 fragments.
3683 (note_mouse_highlight): Call popup_activated for MSDOS as well.
3684 Clear mouse highlight if pointer is over glyphs whose OBJECT is an
3685 integer.
3686 (mouse_face_from_buffer_pos): Add parentheses around && within ||.
3687 (x_consider_frame_title, tool_bar_lines_needed):
3688 Move prototypes to HAVE_WINDOW_SYSTEM-only part.
3689 (get_window_cursor_type): Move inside a HAVE_WINDOW_SYSTEM-only
3690 part. Remove "#ifdef HAVE_WINDOW_SYSTEM" from body of function.
3691 (null_glyph_slice): Move declaration into HAVE_WINDOW_SYSTEM-only
3692 part.
3693
3694 * dispnew.c (mirror_make_current): Set Y coordinate of the
3695 mode-line and header-line rows.
3696 (init_display): Setup initial frame's output_data for text
3697 terminal frames.
3698
3699 * xmenu.c (popup_activated): Don't define on MSDOS, which now has
3700 its own definition on msdos.c.
3701
3702 * msdos.c (show_mouse_face, clear_mouse_face)
3703 (fast_find_position, IT_note_mode_line_highlight)
3704 (IT_note_mouse_highlight): Functions deleted.
3705 (IT_frame_up_to_date, dos_rawgetc): Call note_mouse_highlight
3706 instead of IT_note_mouse_highlight.
3707 (draw_row_with_mouse_face, popup_activated): New functions.
3708 (dos_set_window_size, draw_row_with_mouse_face, IT_update_begin)
3709 (IT_update_end, IT_frame_up_to_date, internal_terminal_init)
3710 (dos_rawgetc): Replace Display_Info with Mouse_HLInfo everywhere
3711 where mouse_face_* members were accessed for mouse highlight
3712 purposes.
3713
3714 * msdos.h (initialize_msdos_display): Add prototype.
3715
3716 * frame.h (MOUSE_HL_INFO): New macro.
3717
3718 * lisp.h (Mouse_HLInfo): New data type.
3719
3720 * xterm.h (struct x_display_info):
3721 * w32term.h (struct w32_display_info):
3722 * nsterm.h (struct ns_display_info):
3723 * termchar.h (struct tty_display_info): Use it instead of
3724 mouse_face_* members.
3725
3726 * dispextern.h (show_mouse_face, clear_mouse_face): Update type of
3727 1st argument.
3728 (frame_to_window_pixel_xy, note_mouse_highlight)
3729 (x_clear_window_mouse_face, cancel_mouse_face, clear_mouse_face)
3730 (show_mouse_face, cursor_in_mouse_face_p): Move prototypes out of
3731 HAVE_WINDOW_SYSTEM conditional.
3732 (draw_row_with_mouse_face): Declare prototype.
3733 (tty_draw_row_with_mouse_face): Declare prototype.
3734
3735 2010-11-05 Eli Zaretskii <eliz@gnu.org>
3736
3737 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
3738 Remove unused variables.
3739
3740 2010-11-05 Adrian Robert <Adrian.B.Robert@gmail.com>
3741
3742 * nsterm.m (EmacsView-mouseExited:): Correct error in conditional
3743 logic pointed out by Eli Zaretskii.
3744
3745 2010-11-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
3746
3747 * coding.c (coding-category-list): Refer to set-coding-system-priority
3748 instead of the obsolete set-coding-priority in the doc string.
3749
3750 2010-11-04 Adrian Robert <Adrian.B.Robert@gmail.com>
3751
3752 * nsfont.m (nsfont_draw): Correct previous patch to return
3753 correct value.
3754 * nsimage.m (EmacsImage-setXBMColor:): Correct previous patch:
3755 don't change the method signature, change the return.
3756
3757 2010-11-04 Ismail Donmez <ismail@namtrac.org> (tiny change)
3758
3759 * nsfont.m (nsfont_draw)
3760 * nsimage.m (EmacsImage-setXBMColor:)
3761 * nsterm.m (EmacsView-performDragOperation:): Correct empty return.
3762
3763 2010-11-03 Julien Danjou <julien@danjou.info>
3764
3765 * image.c (gif_load): Add support for transparency and specified
3766 :background.
3767
3768 2010-11-01 Kenichi Handa <handa@m17n.org>
3769
3770 * dispextern.h (lookup_glyphless_char_display): Extern it.
3771
3772 * termhooks.h (struct terminal): New member charset_list.
3773
3774 * coding.c (Fset_terminal_coding_system_internal): Set the
3775 `charset_list' member of struct terminal.
3776
3777 * term.c (produce_glyphs): Handle the case it->what == IT_GLYPHLESS.
3778 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
3779
3780 * xdisp.c (lookup_glyphless_char_display): Make it non-static.
3781 (lookup_glyphless_char_display): Set it->what at the end.
3782 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
3783 (last_glyphless_glyph_merged_face_id): Make them non-static.
3784
3785 * w32term.c (x_draw_glyphless_glyph_string_foreground):
3786 Fix the arg with_background for font->driver->draw.
3787
3788 2010-11-01 Kenichi Handa <handa@m17n.org>
3789
3790 * w32gui.h (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
3791 Surround chp by parentheses.
3792
3793 2010-11-01 Kenichi Handa <handa@m17n.org>
3794
3795 Implement various display methods for glyphless characters.
3796
3797 * xdisp.c (Qglyphless_char, Vglyphless_char_display)
3798 (Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space)
3799 (Qzero_width): New variables.
3800 (THIN_SPACE_WIDTH): New macro.
3801 (lookup_glyphless_char_display): New function.
3802 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
3803 (last_glyphless_glyph_merged_face_id): New variables.
3804 (get_next_display_element): Check glyphless characters.
3805 (redisplay_internal): Initialize last_glyphless_glyph_frame and
3806 last_glyphless_glyph_face_id.
3807 (fill_glyphless_glyph_string): New function.
3808 (BUILD_GLYPHLESS_GLYPH_STRING): New macro.
3809 (BUILD_GLYPH_STRINGS): Handle the case GLYPHLESS_GLYPH.
3810 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
3811 (x_produce_glyphs): If a suitable font is not found, produce a
3812 glyphless glyph. Handle the case it->what == IT_GLYPHLESS.
3813 (syms_of_xdisp): Intern and staticpro Qglyphless_char,
3814 Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space, and
3815 Qzero_width.
3816 (Vglyphless_char_display): Declare it as a Lisp variable.
3817
3818 * dispextern.h (enum glyph_type): Add GLYPHLESS_GLYPH.
3819 (struct glyph): Change the size of the member "type" to 3.
3820 Add glyphless to the union slice and u.
3821 (enum display_element_type): Add IT_GLYPHLESS.
3822 (enum glyphless_display_method): New enum.
3823 (struct it): New member glyphless_method.
3824 (Vglyphless_char_display): Extern it.
3825
3826 * xterm.c (x_draw_glyphless_glyph_string_foreground): New function.
3827 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
3828
3829 * w32term.c (x_draw_glyphless_glyph_string_foreground): New function.
3830 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
3831
3832 * nsterm.m (ns_draw_glyph_string): Handle the case
3833 GLYPHLESS_GLYPH (the detail is not yet implemented).
3834
3835 2010-10-31 Glenn Morris <rgm@gnu.org>
3836
3837 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Fix merge, maybe.
3838
3839 * frame.c (syms_of_frame) <tool-bar-mode>:
3840 Default to nil if !HAVE_WINDOW_SYSTEM. (Bug#7299)
3841
3842 2010-10-31 Chong Yidong <cyd@stupidchicken.com>
3843
3844 * xterm.c (x_connection_closed): Print informative error message
3845 when aborting on GTK. This requires using shut_down_emacs
3846 directly instead of Fkill_emacs.
3847
3848 2010-10-29 Eli Zaretskii <eliz@gnu.org>
3849
3850 * emacs.c (main): Call syms_of_filelock unconditionally.
3851
3852 * filelock.c (syms_of_filelock): Move out of #ifdef CLASH_DETECTION
3853 clause, but keep part of it conditioned on CLASH_DETECTION.
3854
3855 2010-10-29 Glenn Morris <rgm@gnu.org>
3856
3857 * nsfns.m (Fx-display-save-under, Fx-open-connection)
3858 (Fxw-color-defined-p, Fxw-display-color-p, Fx-show-tip):
3859 * w32fns.c (Fxw_color_defined_p, Fx_open_connection):
3860 * xfns.c (Fxw_color_defined_p, Fx_open_connection):
3861 Sync docs between X, W32, NS.
3862
3863 * buffer.c (syms_of_buffer) <abbrev-mode, transient-mark-mode>:
3864 * frame.c (syms_of_frame) <tool-bar-mode>: Move doc here from Lisp.
3865
3866 2010-10-26 Juanma Barranquero <lekktu@gmail.com>
3867
3868 * eval.c (init_eval_once): Set max_lisp_eval_depth to 600;
3869 otherwise, bootstrapping on Windows fails to compile macroexp.el.
3870
3871 2010-10-26 Eli Zaretskii <eliz@gnu.org>
3872
3873 * cmds.c (internal_self_insert): Don't insert if argument N is
3874 zero or negative. (Bug#7281)
3875
3876 2010-10-26 Jan Djärv <jan.h.d@swipnet.se>
3877
3878 * gtkutil.c (qttip_cb): Set title to empty for ATK (Bug#7278).
3879
3880 2010-10-25 Glenn Morris <rgm@gnu.org>
3881
3882 * Makefile.in (SOME_MACHINE_LISP): Remove easymenu.elc.
3883
3884 2010-10-24 Glenn Morris <rgm@gnu.org>
3885
3886 * w32fns.c (Fx_synchronize, Fx_change_window_property)
3887 (Fx_window_property, Fx_file_dialog):
3888 * xfns.c (Fx_synchronize, Fx_change_window_property)
3889 (Fx_window_property, Fx_file_dialog): Sync docs between w32 and X.
3890
3891 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3892
3893 * xterm.c (x_connection_closed): Kill Emacs unconditionally.
3894
3895 2010-10-24 Eli Zaretskii <eliz@gnu.org>
3896
3897 * frame.c (Fframep, Fwindow_system): Deprecate use as a predicate.
3898
3899 * dispnew.c (syms_of_display) <initial-window-system, window-system>:
3900 Deprecate use as a boolean flag.
3901
3902 2010-10-24 Jim Meyering <jim@meyering.net>
3903
3904 * emacs.c (argmatch): Don't treat "--" as "--chdir".
3905
3906 2010-10-24 Glenn Morris <rgm@gnu.org>
3907
3908 * w16select.c (syms_of_win16select) <selection-coding-system>:
3909 <next-selection-coding-system>:
3910 * w32select.c (syms_of_w32select) <selection-coding-system>:
3911 <next-selection-coding-system>:
3912 Sync docs with select.el.
3913
3914 * xfaces.c (syms_of_xfaces) <tty-defined-color-alist>: Sync doc with
3915 Lisp version.
3916
3917 * w32term.c (syms_of_w32term) <x-use-underline-position-properties>:
3918 Sync doc with the xterm.c version.
3919
3920 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
3921 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
3922
3923 2010-10-23 Glenn Morris <rgm@gnu.org>
3924
3925 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
3926 * frame.c (syms_of_frame) <menu-bar-mode>:
3927 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode, display-hourglass>:
3928 <hourglass-delay>: Sync docs with Lisp.
3929
3930 2010-10-23 Eli Zaretskii <eliz@gnu.org>
3931
3932 Implement mouse highlight for bidi-reordered lines.
3933
3934 * xdisp.c (fast_find_string_pos): #ifdef away, not used anymore.
3935 (mouse_face_from_string_pos): New function, replaces
3936 fast_find_string_pos.
3937 (note_mouse_highlight): Call it instead of fast_find_string_pos.
3938 (note_mode_line_or_margin_highlight): Support bidi-reordered
3939 strings and R2L glyph rows. Fix comments.
3940 (note_mouse_highlight): When bidi reordering is turned on in a
3941 buffer, call next-single-property-change and
3942 previous-single-property-change with last argument nil.
3943 Clear mouse highlight when mouse pointer is in a R2L row on the stretch
3944 glyph that stands for no text beyond the line end.
3945 (row_containing_pos): Don't return too early when CHARPOS is in a
3946 bidi-reordered continued line. Return immediately when the first
3947 hit is found in a line that is not continued, or when an exact
3948 match for CHARPOS is found.
3949 (rows_from_pos_range): New function.
3950 (mouse_face_from_buffer_pos): Use it instead of calling
3951 row_containing_pos for START_CHARPOS and END_CHARPOS. Rewrite the
3952 function to support mouse highlight in bidi-reordered lines and
3953 not to assume that START_CHARPOS is always in mouse_face_beg_row.
3954 If necessary, swap mouse_face_beg_row and mouse_face_end_row so
3955 that the former is always above the latter or identical to it.
3956 (show_mouse_face): Support drawing highlighted R2L lines.
3957 (coords_in_mouse_face_p): New function, bidi-aware.
3958 (cursor_in_mouse_face_p, note_mouse_highlight, erase_phys_cursor):
3959 Call it instead of comparing with mouse-face members of dpyinfo.
3960 (note_mode_line_or_margin_highlight): Fix confusingly swapped
3961 usage of hpos and vpos.
3962
3963 2010-10-22 Jan Djärv <jan.h.d@swipnet.se>
3964
3965 * xrdb.c: Include keyboard.h for MOTIF.
3966
3967 * xmenu.c: Revert 2010-07-27 change: lwlib.h is needed for
3968 MOTIF (Bug#7263).
3969
3970 * xfns.c: Include Xm/TextF and Xm/List.
3971 (file_dialog_cb, file_dialog_unmap_cb, clean_up_file_dialog):
3972 Make ANSI prototypes.
3973
3974 2010-10-22 Glenn Morris <rgm@gnu.org>
3975
3976 * Makefile.in (SOME_MACHINE_LISP): Add w32-vars.
3977 Remove ccl and duplicate mouse.
3978
3979 2010-10-21 Chong Yidong <cyd@stupidchicken.com>
3980
3981 * insdel.c (prepare_to_modify_buffer): Don't set
3982 saved-region-selection if modification hooks are disabled.
3983
3984 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
3985
3986 * cmds.c (Fdelete_char): Doc fix.
3987
3988 2010-10-19 Ken Brown <kbrown@cornell.edu>
3989
3990 * s/cygwin.h (SIGNALS_VIA_CHARACTERS): New define (bug#7225).
3991
3992 2010-10-19 Kenichi Handa <handa@m17n.org>
3993
3994 Fix incorrect font metrics when the same font is opened with
3995 different pixelsizes.
3996
3997 * xftfont.c: Include composite.h.
3998 (xftfont_shape): New function.
3999 (syms_of_xftfont): Set xftfont_driver.shape.
4000
4001 2010-10-18 Julien Danjou <julien@danjou.info>
4002
4003 * frame.c (Fframe_pointer_visible_p):
4004 Add `frame-pointer-visible-p' to get the pointer visibility.
4005
4006 2010-10-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
4007
4008 * gnutls.c (emacs_gnutls_read): Return 0 if we get a
4009 non-"EAGAIN"-like error to signal to Emacs that the socket should
4010 be closed.
4011
4012 2010-10-15 Eli Zaretskii <eliz@gnu.org>
4013
4014 * unexcoff.c (make_hdr): Fix prototype according to changes in
4015 2010-10-03T13:59:56Z!dann@ics.uci.edu.
4016
4017 * image.c (tiff_load): Cast 3rd argument to avoid compiler warning.
4018
4019 2010-10-15 Tassilo Horn <tassilo@member.fsf.org>
4020
4021 * Makefile.in (really-oldXMenu): Fix typo in variable name that
4022 made building the X menu fail.
4023 (really-oldXMenu): Fix my previous fix.
4024
4025 2010-10-14 Damyan Pepper <damyanp@gmail.com>
4026
4027 Fix handling of font properties on Windows (bug#6303).
4028 * font.c (font_filter_properties): New function, refactored from
4029 ftfont_filter_properties.
4030 * font.h (font_filter_properties): Declare.
4031 * ftfont.c (ftfont_filter_properties): Use font_filter_properties.
4032 * w32font.c (w32font_booleans, w32font_non_booleans): New variables.
4033 (w32font_filter_properties): New function.
4034 (w32font_driver): Add w32font_filter_properties.
4035
4036 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
4037
4038 * font.c (Ffont_variation_glyphs):
4039 * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
4040
4041 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
4042
4043 * w32fns.c (w32_wnd_proc, file_dialog_callback):
4044 * w32font.c (w32_generic_family):
4045 * w32inevt.c (key_event):
4046 * w32menu.c (fill_in_menu):
4047 * w32proc.c (reader_thread, w32_executable_type, compare_env)
4048 (merge_and_sort_env, int_from_hex, enum_locale_fn, enum_codepage_fn):
4049 * w32term.c (w32_read_socket): Make static.
4050
4051 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
4052
4053 * image.c (DEF_IMGLIB_FN): Add argument to adapt to strict
4054 prototypes; all callers changed.
4055
4056 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
4057
4058 * makefile.w32-in (TLIB2): Rename from TLIBW32.
4059 (OBJ2): New macro.
4060 (WIN32OBJ, FONTOBJ): Remove.
4061 (OBJ1): Redistribute object files with OBJ2.
4062 (LIBS, $(TEMACS)): Use TLIB2.
4063 (make-buildobj-CMD, make-buildobj-SH): Use OBJ2.
4064 ($(TLIB2), TAGS, TAGS-LISP, TAGS-gmake): Depend on OBJ2.
4065
4066 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
4067
4068 * emacs.c (Vdynamic_library_alist)
4069 (syms_of_emacs) <dynamic-library-alist>: Move from image.c and rename.
4070 Doc fix.
4071
4072 * lisp.h (Vdynamic_library_alist): Declare extern.
4073
4074 * image.c (Vimage_library_alist)
4075 (syms_of_image) <image-library-alist>: Move to emacs.c and rename.
4076 (lookup_image_type): Use Vdynamic_library_alist.
4077 (Finit_image_library): Doc fix.
4078
4079 2010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
4080
4081 * Makefile.in (lispsource, libsrc, etc, oldxmenudir, lwlibdir)
4082 (lispdir): Remove trailing /, update all uses.
4083
4084 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
4085
4086 * nsterm.m (Qleft): Declare.
4087 (ns_right_alternate_modifier): New variable.
4088 (NSRightAlternateKeyMask): New define.
4089 (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
4090 ns_right_alternate_modifier isn't Qleft.
4091 (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
4092 as emacs modifier for NSRightAlternateKeyMask.
4093 (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
4094
4095 2010-10-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4096
4097 * gnutls.c (emacs_gnutls_write): If we're trying to write before
4098 gnutls is ready, return EAGAIN as the errno.
4099
4100 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
4101
4102 * vm-limit.c:
4103 * unexhp9k800.c:
4104 * unexelf.c:
4105 * unexaix.c:
4106 * termcap.c: Remove #ifdef emacs / #ifndef emacs code, unused.
4107
4108 * Makefile.in (temacs): Use $(ALL_CFLAGS) on the link line.
4109 (PROFILING_LDFLAGS): Remove, not needed anymore.
4110
4111 * Makefile.in: Use $(...) everywhere instead of ${...}.
4112 (CRT_DIR): Move near potential user.
4113 (START_FILE): Move near CRT_DIR, it might use it.
4114
4115 * sysdep.c (LPASS8): Remove, unused.
4116 (emacs_ospeed): Change from being a global to a local in the only
4117 user: init_baud_rate.
4118
4119 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
4120
4121 * gnutls.c (syms_of_gnutls): All the bootprops are keywords.
4122 (emacs_gnutls_write): Remove the debuggin fsync call.
4123 (emacs_gnutls_read): Return -1 if we got an error from
4124 gnutls_read. This allows us to actually read lots of data from
4125 the GnuTLS stream.
4126 (emacs_gnutls_write): Check for GNUTLS_E_AGAIN and not EINTR.
4127 According to the documentation, this is correct, and it seems to
4128 make things work.
4129
4130 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
4131
4132 * xterm.c (x_draw_relief_rect): Clear corner pixels.
4133
4134 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
4135
4136 * keyboard.c: Revert last change; it was not intended to be
4137 synchronized with the trunk.
4138
4139 2010-10-08 Kenichi Handa <handa@m17n.org>
4140
4141 * coding.c (complement_process_encoding_system): Fix previous change.
4142
4143 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
4144
4145 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
4146 (Fdbus_init_bus): ... here. (Bug#7113)
4147
4148 2010-10-08 Glenn Morris <rgm@gnu.org>
4149
4150 * buffer.c (before-change-functions, after-change-functions):
4151 Three-year overdue doc fix following 2007-08-13 change.
4152
4153 2010-10-08 Kenichi Handa <handa@m17n.org>
4154
4155 * coding.c (coding_inherit_eol_type): If parent doesn't specify
4156 eol-format, inherit from the system's default.
4157 (complement_process_encoding_system): Make a new coding system
4158 inherit the original eol-format.
4159
4160 2010-10-08 Kenichi Handa <handa@m17n.org>
4161
4162 * coding.c (complement_process_encoding_system): New function.
4163
4164 * coding.h (complement_process_encoding_system): Extern it.
4165
4166 * callproc.c (Fcall_process): Complement the coding system for
4167 encoding arguments.
4168 (Fcall_process_region): Complement the coding system for encoding
4169 the input to the process.
4170
4171 * process.c (Fstart_process): Complement the coding system for
4172 encoding arguments.
4173 (send_process): Complement the coding system for encoding what
4174 sent to the process.
4175
4176 2010-10-08 Kenichi Handa <handa@m17n.org>
4177
4178 * xfont.c (xfont_open): Fix setting of font->average_width from
4179 :avgwidth property (Bug#7123).
4180
4181 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
4182
4183 * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
4184 is more portable.
4185
4186 * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
4187 (kbd_buffer_get_event): ... here. This is needed for cygwin, which
4188 has not defined SIGIO.
4189
4190 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
4191
4192 * xterm.c (x_draw_relief_rect): If box width is larger than 1,
4193 draw the outermost line using the black relief, for legibility.
4194 Omit drawing the four corner pixels.
4195
4196 2010-10-04 Chong Yidong <cyd@stupidchicken.com>
4197
4198 * keyboard.c (echo_prompt): Function moved into read_key_sequence.
4199 (read_key_sequence): Inline echo_prompt.
4200 (echo_dash): Add a dash only if key is continued (Bug#7137).
4201
4202 2010-10-04 Dan Nicolaescu <dann@ics.uci.edu>
4203
4204 Remove O_RDONLY, O_WRONLY definitions, not needed.
4205 * unexcoff.c:
4206 * lread.c:
4207 * fileio.c:
4208 * doc.c:
4209 * callproc.c:
4210 * alloc.c:
4211 * termcap.c: Remove O_RDONLY O_WRONLY definitions.
4212
4213 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
4214
4215 * gnutls.h (GNUTLS_LOG2): Convenience macro.
4216
4217 * gnutls.c: Add property list symbol holders.
4218 (emacs_gnutls_handshake): Clarify how sockets are passed to
4219 GnuTLS.
4220 (gnutls_log_function2): Convenience function using GNUTLS_LOG2.
4221 (Fgnutls_boot): Get all parameters from a plist. Require trustfiles
4222 and keyfiles to be a list of file names. Default to "NORMAL" for
4223 the priority string. Improve logging.
4224
4225 2010-10-03 Glenn Morris <rgm@gnu.org>
4226
4227 * fileio.c (Vdirectory_sep_char): Remove.
4228
4229 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
4230
4231 * termhooks.h: Remove #ifdef CONSP.
4232
4233 * xterm.c (NO_INLINE, noinline): Move definitions to ../configure.in.
4234
4235 Include <fcntl.h> unconditionally.
4236 * termcap.c:
4237 * sysdep.c:
4238 * lread.c:
4239 * keyboard.c:
4240 * filelock.c:
4241 * fileio.c:
4242 * doc.c:
4243 * callproc.c:
4244 * alloc.c: Remove include guards for <fcntl.h>, process.c already
4245 does it.
4246
4247 * process.c: Do not include <sys/wait.h>, syswait.h does it.
4248
4249 * sysdep.c (flush_pending_output): Remove code, does not do
4250 anything on any platform.
4251
4252 Remove unused code.
4253 * sysdep.c (select_alarm, sys_select, read_input_waiting):
4254 Remove select emulation, all systems support select.
4255 (set_exclusive_use): Remove, the only user is in an #if 0 block.
4256 * process.c (create_process): Remove #if 0 code.
4257
4258 Remove unused arguments for unexec.
4259 The third one is never used, and the last two are always passed as zero.
4260 * emacs.c (unexec): Add declaration.
4261 (Fdump_emacs): Only pass the first two arguments to unexec.
4262 Simplify #ifdef.
4263 * unexw32.c (unexec):
4264 * unexsol.c (unexec):
4265 * unexhp9k800.c (unexec):
4266 * unexcw.c (unexec): Remove the last 3 arguments, unused.
4267 * unexelf.c (unexec): Remove the last 3 arguments, unused.
4268 (find_section): Use const.
4269 * unexmacosx.c (unexec): Remove the last 3 arguments, unused.
4270 (unexec_error): Declare it NO_RETURN.
4271 * unexcoff.c (make_hdr): Assume bss_start is always zero, remove
4272 it as an argument, remove data_start and entry_address arguments, unused.
4273 (unexec): Remove bss_start, data_start and
4274 entry_address arguments.
4275 * unexaix.c (make_hdr): Assume bss_start is always zero, remove
4276 it as an argument, remove data_start and entry_address arguments, unused.
4277 (unexec): Remove bss_start, data_start and
4278 entry_address arguments.
4279
4280 2010-10-03 Juanma Barranquero <lekktu@gmail.com>
4281
4282 * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ).
4283
4284 * gnutls.c (emacs_gnutls_handshake, gnutls_make_error)
4285 (gnutls_emacs_global_init, gnutls_emacs_global_deinit): Make static.
4286 (Fgnutls_get_initstage, Fgnutls_deinit, Fgnutls_boot, Fgnutls_bye):
4287 Fix typos in docstrings.
4288 (Fgnutls_error_fatalp, Fgnutls_error_string): Doc fixes.
4289 (Fgnutls_errorp): Doc fix; use ERR for the argument name.
4290
4291 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
4292
4293 * keyboard.c (command_loop_1): Make sure the mark is really alive
4294 before using it (Bug#7044).
4295
4296 2010-10-02 Juanma Barranquero <lekktu@gmail.com>
4297
4298 * makefile.w32-in (tags): Rename target to full-tags.
4299
4300 2010-10-02 Eli Zaretskii <eliz@gnu.org>
4301
4302 * emacs.c (main): Remove !WINDOWSNT conditional.
4303 (Fkill_emacs): Don't mention exemption on MS-Windows.
4304
4305 2010-10-02 Glenn Morris <rgm@gnu.org>
4306
4307 * character.c (Fchar_bytes): Remove obsolete function.
4308 (syms_of_character): Remove Schar_bytes.
4309
4310 * emacs.c (fatal_error_signal): Also run Fkill_emacs on SIGINT.
4311 (main) [!WINDOWSNT]: Handle SIGINT with fatal_error_signal
4312 in batch-mode.
4313 (Fkill_emacs): Doc fix. Also run the hook in batch mode.
4314 (kill-emacs-hook): Doc fix.
4315
4316 2010-10-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4317
4318 * xml.c (Flibxml_parse_xml_region, Flibxml_parse_html_region)
4319 (parse_region): Rework to take regions instead of strings, and
4320 renamed to reflect that these are the libxml functions.
4321
4322 2010-10-01 Eli Zaretskii <eliz@gnu.org>
4323
4324 * term.c (init_tty) [DOS_NT]: Don't call Wcm_clear after setting
4325 screen dimensions in tty->Wcm.
4326
4327 * xdisp.c (set_cursor_from_row): When the row is truncated and
4328 point is outside the range of displayed characters, position the
4329 cursor inside the scroll margin. (Bug#6349)
4330
4331 2010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
4332
4333 Do not include stdlib.h and string.h, config.h does it.
4334 * xfont.c:
4335 * w32term.c:
4336 * w32reg.c:
4337 * w32inevt.c:
4338 * w32heap.c:
4339 * w32console.c:
4340 * w16select.c:
4341 * unexsol.c:
4342 * term.c:
4343 * sound.c:
4344 * scroll.c (m):
4345 * gtkutil.c:
4346 * font.c:
4347 * filelock.c:
4348 * fileio.c:
4349 * dosfns.c:
4350 * dbusbind.c:
4351 * bidi.c:
4352 * callproc.c:
4353 * process.c:
4354 * msdos.c:
4355 * charset.c: Do not include stdlib.h and string.h, config.h does it.
4356
4357 * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h
4358 defines it.
4359
4360 * process.c: Move #include <pty.h> earlier.
4361 (SIGCHLD): Remove conditional definition, syssignal.h defines it.
4362 (pty_name): Move definition later.
4363
4364 * nsselect.m (syms_of_nsselect):
4365 * nsmenu.m (syms_of_nsmenu):
4366 * nsfns.m (syms_of_nsfns):
4367 * msdos.c (syms_of_msdos):
4368
4369 * image.c (syms_of_image):
4370 * charset.c (syms_of_charset): Use intern_c_string instead of intern.
4371
4372 * point.h: Remove, unused.
4373
4374 2010-10-01 Eli Zaretskii <eliz@gnu.org>
4375
4376 * makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
4377 (TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
4378 (nt-TAGS-gmake, nt-TAGS-nmake): New targets.
4379
4380 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
4381
4382 * xml.c (parse_string): Use const.
4383
4384 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4385
4386 * eval.c (Fbacktrace): Don't overwrite print-level on exit.
4387 Also only override Vprint_level if it isn't already bound, and increase
4388 the level to 8 to produce more useful backtraces for bug reports.
4389
4390 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
4391
4392 * Makefile.in: ecrt0.c does not exist anymore, do not mention it.
4393
4394 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
4395
4396 * w32console.c (vga_stdcolor_name): Remove unused function;
4397 presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
4398
4399 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4400
4401 * gnutls.c (emacs_gnutls_handshake): Made into internal function.
4402 (Fgnutls_boot): Start the handshake.
4403 (emacs_gnutls_read): Perform the handshake from the reader loop.
4404 (Fgnutls_boot): Remove some debugging messages.
4405 Change indentation throughout to use the Emacs style.
4406 (emacs_gnutls_handshake): Cast the fds to something that's
4407 possibly the expected length.
4408 (emacs_gnutls_write): Return -1 if we try to write before handshake.
4409
4410 * process.h (Lisp_Process): Add a gnutls_p field to Lisp_Process.
4411
4412 * process.c (make_process): Set the gnutls_p field to zero by
4413 default.
4414 (read_process_output): Always call the gnutls_read function if the
4415 stream is a gnutls stream.
4416 (send_process): Ditto for writes.
4417
4418 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Refuse to read
4419 or write anything until the state is GNUTLS_STAGE_READY.
4420 (Fgnutls_boot): Mark the stream as being a gnutls stream.
4421
4422 2010-09-29 Eli Zaretskii <eliz@gnu.org>
4423
4424 * xdisp.c (reseat_1): Initialize bidi_it.paragraph_dir to
4425 NEUTRAL_DIR.
4426 (handle_invisible_prop, iterate_out_of_display_property)
4427 (next_element_from_buffer): If bidi_it.first_elt is set, call
4428 bidi_paragraph_init with NO_DEFAULT_P argument non-zero.
4429 (Bug#7128)
4430
4431 * print.c (print_object): Fix format string and argument types for
4432 printing a Lisp_Misc_Marker.
4433
4434 * xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
4435 (load_overlay_strings, get_overlay_strings_1)
4436 (get_overlay_strings, forward_to_next_line_start)
4437 (back_to_previous_visible_line_start, reseat, reseat_to_string)
4438 (get_next_display_element, next_element_from_string)
4439 (next_element_from_c_string, next_element_from_buffer)
4440 (move_it_vertically_backward, move_it_by_lines, add_to_log)
4441 (message_dolog, message_log_check_duplicate, message2_nolog)
4442 (message3, message3_nolog, vmessage, set_message, set_message_1)
4443 (hscroll_window_tree, text_outside_line_unchanged_p)
4444 (set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
4445 (find_last_unchanged_at_beg_row)
4446 (find_first_unchanged_at_end_row, row_containing_pos)
4447 (trailing_whitespace_p, display_mode_element, decode_mode_spec)
4448 (display_count_lines, x_produce_glyphs, note_mouse_highlight):
4449 Use EMACS_INT for buffer and string positions.
4450
4451 * dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
4452 (row_containing_pos): Adjust prototype.
4453
4454 * lisp.h (pos_visible_p, message2, message2_nolog, message3)
4455 (message2_nolog, set_message): Adjust prototypes.
4456
4457 2010-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
4458
4459 * gnutls.c (Fgnutls_boot): Remove unused vars `data' and `srp_cred'.
4460 (Fgnutls_boot): Use SDATA.
4461 (Fgnutls_handshake): Remove unused var `max_log_level'.
4462
4463 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
4464
4465 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
4466 (Bug#7113)
4467
4468 2010-09-27 Jan Djärv <jan.h.d@swipnet.se>
4469
4470 * xgselect.c (xg_select): Clear file descriptors not set from
4471 rfds and wfds.
4472
4473 * process.c (wait_reading_process_output): Add missing FD_CLR
4474 for write_mask (must mirror connect_wait_mask).
4475
4476 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
4477
4478 * gnutls.c (gnutls_log_function): Show level and "gnutls.c"
4479 prefix.
4480 (Fgnutls_boot): Use changed process members. Use log level with a
4481 function parameter to set it. Bring back Emacs-level debugging
4482 messages at log level 1 and 2.
4483
4484 * process.c (make_process): Initialize gnutls_log_level.
4485
4486 * process.h: Add gnutls_log_level and rename x509_cred and
4487 anon_cred to have the gnutls_ prefix for consistency.
4488
4489 * gnutls.h (GNUTLS_LOG): Add convenience macro.
4490
4491 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
4492
4493 * w32.c (g_b_init_get_sid_identifier_authority)
4494 (GetSidIdentifierAuthority_Proc, get_sid_identifier_authority):
4495 Remove, not used.
4496 (globals_of_w32): Don't set g_b_init_get_sid_identifier_authority.
4497 (init_winsock): Remove useless assignment.
4498 (open_process_token, get_token_information, lookup_account_sid)
4499 (get_sid_sub_authority, get_sid_sub_authority_count, get_file_security)
4500 (get_security_descriptor_owner, get_security_descriptor_group)
4501 (is_valid_sid, equal_sid, get_length_sid, copy_sid)
4502 (get_native_system_info, get_system_times, init_user_info, crlf_to_lf)
4503 (is_unc_volume, GetCachedVolumeInformation, get_volume_info)
4504 (is_fat_volume, open_unc_volume, read_unc_volume, close_unc_volume)
4505 (unc_volume_file_attributes, convert_from_time_t)
4506 (create_toolhelp32_snapshot, process32_first, process32_next)
4507 (open_thread_token, impersonate_self, revert_to_self)
4508 (get_process_memory_info, get_process_working_set_size)
4509 (global_memory_status, global_memory_status_ex, socket_to_fd)
4510 (shutdown_handler): Make static.
4511
4512 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
4513
4514 * dbusbind.c (dbus_fd_cb, xd_get_dispatch_status)
4515 (xd_pending_messages): Functions removed.
4516 (xd_read_queued_messages): Add parameters fd, *data, for_read in
4517 order to be compatible with add_read_fd. Determine bus from data,
4518 and call xd_read_message just for this bus.
4519 (xd_add_watch): Use xd_read_queued_messages as callback function.
4520 Add data.
4521
4522 * lisp.h (xd_pending_messages, xd_read_queued_messages): Remove.
4523
4524 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4525
4526 * gnutls.c (gnutls_log_function): Add more debugging.
4527 (emacs_gnutls_read): Don't infloop while reading.
4528
4529 2010-09-27 Kenichi Handa <handa@m17n.org>
4530
4531 These changes are to remove restriction on the number of glyphs in
4532 one composition.
4533
4534 * dispextern.h (struct glyph): Change the member "slice" to union.
4535 Remove u.cmp.from and u.cmp.to. Give more bits to u.cmp.id.
4536 (GLYPH_SLICE_EQUAL_P): Adjust for the above change.
4537
4538 * dispnew.c (buffer_posn_from_coords): Use glyph->slice.img
4539 instead of glyph->slice.
4540 (marginal_area_string): Likewise.
4541
4542 * term.c (encode_terminal_code): Use glyph->slice.cmp instead of
4543 glyph->u.cmp.
4544 (append_composite_glyph): Likewise.
4545
4546 * xdisp.c (dump_glyph): Use glyph->slice.cmp instead of
4547 glyph->u.cmp.
4548 (fill_gstring_glyph_string, x_get_glyph_overhangs)
4549 (append_composite_glyph): Likewise.
4550 (fill_image_glyph_string): Use glyph->slice.img instead of
4551 glyph->slice.
4552 (append_glyph, produce_image_glyph, append_stretch_glyph)
4553 (note_mouse_highlight): Likewise.
4554
4555 2010-09-26 Jan Djärv <jan.h.d@swipnet.se>
4556
4557 * process.c (add_keyboard_wait_descriptor)
4558 (delete_keyboard_wait_descriptor): Reinstate ifdef subprocesses.
4559 (wait_reading_process_output): Don't pass write_mask to select
4560 if SELECT_CANT_DO_WRITE_MASK is defined.
4561 (SELECT_CANT_DO_WRITE_MASK): Define if SELECT_CANT_DO_WRITE_MASK.
4562
4563 * process.h (add_read_fd, delete_read_fd, add_write_fd)
4564 (delete_write_fd): Declare.
4565
4566 * process.c (gpm_wait_mask, max_gpm_desc): Remove.
4567 (write_mask): New variable.
4568 (max_input_desc): Rename from max_keyboard_desc.
4569 (fd_callback_info): New variable.
4570 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd):
4571 New functions.
4572 (Fmake_network_process): FD_SET write_mask.
4573 (deactivate_process): FD_CLR write_mask.
4574 (wait_reading_process_output): Connecting renamed to Writeok.
4575 check_connect removed. check_write is new. Remove references to gpm.
4576 Use Writeok/check_write unconditionally (i.e. no #ifdef
4577 NON_BLOCKING_CONNECT) instead of Connecting.
4578 Loop over file descriptors and call callbacks in fd_callback_info
4579 if file descriptor is ready for I/O.
4580 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor.
4581 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor.
4582 (keyboard_bit_set): Use max_input_desc.
4583 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor):
4584 Remove #ifdef subprocesses. Use max_input_desc.
4585 (init_process): Initialize write_mask and fd_callback_info.
4586
4587 * keyboard.c (readable_events, gobble_input): Remove DBUS code.
4588
4589 * dbusbind.c: Include process.h.
4590 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch)
4591 (xd_read_message_1): New functions.
4592 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd.
4593 Handle watch for both read and write.
4594 (Fdbus_init_bus): Also register xd_toggle_watch.
4595 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
4596 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call
4597 to dbus_connection_flush.
4598 (xd_read_message): Move most of the code to xd_read_message_1.
4599 Call xd_read_message_1 until status is COMPLETE.
4600
4601 2010-09-26 Dan Nicolaescu <dann@ics.uci.edu>
4602
4603 * term.c: Do not include sys/ioctl.h, not needed.
4604 (init_tty): Reorder code to reduce the number of #ifdefs.
4605 No code changes.
4606
4607 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
4608
4609 * process.h: Set up GnuTLS support.
4610
4611 * process.c (make_process, Fstart_process)
4612 (read_process_output, send_process): Set up GnuTLS support for
4613 process input/output file descriptors.
4614
4615 * gnutls.h: The GnuTLS glue for Emacs, macros and enums.
4616
4617 * gnutls.c: The source code for GnuTLS support in Emacs.
4618
4619 * emacs.c: Set up GnuTLS support and call syms_of_gnutls.
4620
4621 * config.in: Set up GnuTLS support.
4622
4623 * Makefile.in (LIBGNUTLS_LIBS, LIBGNUTLS_CFLAGS, ALL_CFLAGS)
4624 (obj, LIBES): Set up GnuTLS support.
4625
4626 2010-09-26 Juanma Barranquero <lekktu@gmail.com>
4627
4628 * w32.c (get_emacs_configuration_options): Fix previous change.
4629
4630 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
4631
4632 * insdel.c (prepare_to_modify_buffer): Ensure the mark marker is
4633 alive before using it (Bug#6977).
4634
4635 2010-09-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4636
4637 * xdisp.c (face_before_or_after_it_pos): EMACS_INT/int fixup.
4638
4639 * dispextern.h: EMACS_INT/int fixup.
4640
4641 * xdisp.c (string_pos_nchars_ahead, init_iterator): EMACS_INT/int
4642 fixup.
4643
4644 * xrdb.c (magic_file_p): EMACS_INT/int fixup.
4645
4646 2010-09-25 Eli Zaretskii <eliz@gnu.org>
4647
4648 * window.c (Fpos_visible_in_window_p, Fdelete_other_windows)
4649 (Fselect_window, window_scroll_pixel_based)
4650 (window_scroll_line_based, Frecenter, Fset_window_configuration):
4651 Use EMACS_INT for buffer positions.
4652
4653 * textprop.c (validate_interval_range, interval_of)
4654 (property_change_between_p, Fadd_text_properties)
4655 (set_text_properties_1, Fremove_text_properties)
4656 (Fremove_list_of_text_properties, Ftext_property_any)
4657 (Ftext_property_not_all, copy_text_properties)
4658 (text_property_list, extend_property_ranges)
4659 (verify_interval_modification): Use EMACS_INT for buffer
4660 positions.
4661
4662 * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT
4663 for buffer positions.
4664
4665 * process.c (read_process_output, send_process)
4666 (Fprocess_send_region, status_notify): Use EMACS_INT for buffer
4667 and string positions and size.
4668
4669 * print.c (print_object, print_string, strout): Use EMACS_INT for
4670 string indices.
4671
4672 * minibuf.c (string_to_object): Use EMACS_INT for string position
4673 and size.
4674
4675 * marker.c (verify_bytepos): Use EMACS_INT for buffer positions.
4676
4677 * lread.c <read_from_string_index, read_from_string_index_byte>
4678 <read_from_string_limit, readchar_count>: Define EMACS_INT.
4679 (readchar, unreadchar, read_internal_start): Use EMACS_INT for
4680 buffer positions and string length.
4681
4682 * keyboard.c <last_point_position, last_non_minibuf_size>: Declare
4683 EMACS_INT.
4684 (echo_truncate, adjust_point_for_property, read_char)
4685 (gen_help_event, make_lispy_event, modify_event_symbol)
4686 (Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT
4687 for buffer positions and string length.
4688
4689 * keyboard.h (gen_help_event): Adjust prototype.
4690
4691 * termhooks.h <struct input_event>: Make `code' member EMACS_INT.
4692
4693 * commands.h <last_point_position>: Declare EMACS_INT.
4694
4695 * xdisp.c <help_echo_pos>: Define as EMACS_INT.
4696 (truncate_echo_area): Accept EMACS_INT argument.
4697
4698 * dispextern.h <help_echo_pos>: Declare EMACS_INT.
4699
4700 * lisp.h (truncate_echo_area): Adjust prototype.
4701
4702 * composite.c (composition_adjust_point): Return EMACS_INT.
4703
4704 * composite.h (composition_adjust_point): Adjust prototype.
4705
4706 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
4707
4708 * process.c (Fmake_network_process): When arg :host is 'local,
4709 use address 127.0.0.1, not name "localhost". (Bug#6781)
4710
4711 2010-09-24 Eli Zaretskii <eliz@gnu.org>
4712
4713 * indent.c (Fcurrent_indentation, indented_beyond_p)
4714 (compute_motion): Use EMACS_INT for buffer position variables.
4715
4716 * lisp.h (indented_beyond_p): Adjust prototype.
4717
4718 * buffer.c (overlay_strings): Return EMACS_INT.
4719
4720 * buffer.h (overlay_strings): Adjust prototype.
4721
4722 * region-cache.c (pp_cache): Adjust format to arguments.
4723
4724 * eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT.
4725 (call_debugger): Use EMACS_INT for specpdl_size related variables.
4726 (verror): Use EMACS_INT for size of allocated buffer.
4727
4728 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer
4729 positions.
4730
4731 * xdisp.c (redisplay_internal, try_window_id)
4732 (set_cursor_from_row, find_first_unchanged_at_end_row):
4733 Use EMACS_INT for buffer positions.
4734
4735 * dispextern.h (set_cursor_from_row): Adjust prototype.
4736
4737 * dispnew.c (increment_matrix_positions)
4738 (increment_row_positions, copy_glyph_row_contents)
4739 (mode_line_string, marginal_area_string): Use EMACS_INT for buffer
4740 positions.
4741
4742 * dispextern.h (mode_line_string, marginal_area_string)
4743 (increment_matrix_positions, increment_row_positions):
4744 Adjust prototypes.
4745
4746 * data.c (Faref, Faset): Use EMACS_INT for string length and
4747 positions.
4748
4749 * cmds.c (internal_self_insert): Use EMACS_INT for the count of
4750 characters to insert.
4751
4752 * ccl.c (Fccl_execute_on_string): Use EMACS_INT for string
4753 position and size.
4754
4755 * syntax.c (scan_words, update_syntax_table)
4756 (prev_char_comend_first, back_comment, skip_chars)
4757 (skip_syntaxes, Fforward_comment, Fbackward_prefix_chars):
4758 Use EMACS_INT for buffer and string positions.
4759
4760 * syntax.h (scan_words, update_syntax_table): Adjust prototypes.
4761
4762 * casefiddle.c (operate_on_word): Use EMACS_INT for buffer
4763 positions.
4764
4765 2010-09-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4766
4767 * scroll.c (calculate_scrolling, line_ins_del)
4768 (calculate_direct_scrolling, scroll_cost): Fix EMACS_INT/int
4769 conversion.
4770
4771 * region-cache.c (move_cache_gap, set_cache_region, pp_cache)
4772 (region_cache_backward, region_cache_forward)
4773 (revalidate_region_cache, set_cache_region): FIX EMACS_INT/int
4774 conversion.
4775
4776 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
4777
4778 * eval.c (verror): Fix EMACS_INT/int conversion.
4779
4780 * print.c (PRINTDECLARE, PRINTPREPARE, strout, print_string)
4781 (print_preprocess, print_check_string_charset_prop)
4782 (print_object): Fix EMACS_INT/int conversion.
4783
4784 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
4785
4786 2010-09-24 Eli Zaretskii <eliz@gnu.org>
4787
4788 * callproc.c (Fcall_process): Use EMACS_INT for count of
4789 characters read from the subprocess.
4790
4791 * bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
4792 positions.
4793 (bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
4794 positions.
4795
4796 * buffer.c (struct sortvec): Use EMACS_INT for buffer positions.
4797 (struct sortstrlist, overlay_str_len): Use EMACS_INT for string
4798 length.
4799 (advance_to_char_boundary, Fset_buffer_multibyte)
4800 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
4801 (overlay_touches_p, record_overlay_string, overlay_strings)
4802 (recenter_overlay_lists, fix_start_end_in_overlays)
4803 (modify_overlay, Fmove_overlay, report_overlay_modification)
4804 (evaporate_overlays): Use EMACS_INT for buffer positions.
4805
4806 * lisp.h (fix_start_end_in_overlays, overlay_touches_p):
4807 Adjust prototypes.
4808
4809 * dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
4810 positions.
4811
4812 * fns.c (Fcompare_strings, Fstring_lessp, concat)
4813 (string_make_unibyte, Fstring_as_unibyte, Fsubstring)
4814 (Fsubstring_no_properties, substring_both, Ffillarray)
4815 (Fclear_string, mapcar1, Fmapconcat, Fmapcar, Fmapc)
4816 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
4817 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
4818 (Fmd5): Use EMACS_INT for buffer and string positions and length
4819 variables and arguments.
4820
4821 * lisp.h (substring_both): Adjust prototype.
4822
4823 2010-09-24 Juanma Barranquero <lekktu@gmail.com>
4824
4825 Remove W32 API function pointer unused since 2005-02-15 (revno 2005-02-15T23:19:26Z!jasonr@gnu.org).
4826 * w32fns.c (clipboard_sequence_fn): Don't declare.
4827 (globals_of_w32fns): Don't initialize it.
4828
4829 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
4830
4831 * syntax.c (back_comment): Detect the case where a 1-char comment
4832 starter is also the 2nd char of a 2-char comment ender.
4833
4834 2010-09-23 Jan Djärv <jan.h.d@swipnet.se>
4835
4836 * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
4837
4838 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4839
4840 * eval.c (verror): EMACS_INT/int cleanup.
4841
4842 * lisp.h (SPECPDL_INDEX): Cast to int, since we're not going to
4843 unwind_protect more than 2GB worth of functions.
4844
4845 * editfns.c (Finsert_char): EMACS_INT/int cleanup.
4846
4847 * lisp.h: Have oblookup take EMACS_INT to allow interning big
4848 string and avoid compiler warnings.
4849 (USE_SAFE_ALLOCA): Cast to int to avoid compilation warnings in
4850 all users.
4851
4852 * lread.c (oblookup): EMACS_INT/int cleanup.
4853
4854 * cmds.c (Fforward_line, Fdelete_char): EMACS_INT/int cleanup.
4855
4856 2010-09-23 Eli Zaretskii <eliz@gnu.org>
4857
4858 * editfns.c (clip_to_bounds): Return an EMACS_INT value.
4859
4860 * lisp.h (clip_to_bounds): Adjust prototype.
4861
4862 * intervals.c (adjust_for_invis_intang): Return EMACS_INT value.
4863
4864 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4865
4866 * lisp.h: doprnt.c EMACS_INT/int cleanup.
4867
4868 * doprnt.c (doprnt): EMACS_INT/int cleanup.
4869
4870 * doc.c (Fsnarf_documentation, get_doc_string): EMACS_INT/int
4871 cleanup.
4872
4873 * lisp.h: Change the definition of all marker.c functions that
4874 take and return buffer stuff to be EMACS_INT instead of int.
4875
4876 * marker.c (buf_charpos_to_bytepos, CONSIDER, set_marker_both)
4877 (buf_charpos_to_bytepos, bytepos_to_charpos)
4878 (buf_bytepos_to_charpos, Fbuffer_has_markers_at)
4879 (set_marker_restricted, set_marker_both): Convert int to EMACS_INT
4880 for all buffer positions.
4881
4882 2010-09-23 Chong Yidong <cyd@stupidchicken.com>
4883
4884 * intervals.c (traverse_intervals, rotate_right, rotate_left)
4885 (split_interval_right, find_interval, next_interval)
4886 (delete_node, delete_interval, interval_deletion_adjustment)
4887 (adjust_intervals_for_deletion, merge_interval_right)
4888 (merge_interval_left, graft_intervals_into_buffer)
4889 (copy_intervals): Convert EMACS_UINTs to EMACS_INT.
4890
4891 * intervals.h (traverse_intervals): Update prototype.
4892
4893 2010-09-23 Eli Zaretskii <eliz@gnu.org>
4894
4895 * indent.c (compute_motion): Use EMACS_INT for arguments to
4896 region_cache_forward.
4897
4898 * region-cache.c (struct boundary, struct region_cache):
4899 Use EMACS_INT for positions.
4900 (find_cache_boundary, move_cache_gap, insert_cache_boundary)
4901 (delete_cache_boundaries, set_cache_region)
4902 (invalidate_region_cache, know_region_cache)
4903 (region_cache_forward, region_cache_backward, pp_cache):
4904 Use EMACS_INT for buffer positions.
4905
4906 * region-cache.h (know_region_cache, invalidate_region_cache)
4907 (region_cache_forward, region_cache_backward): Adjust prototypes.
4908
4909 * search.c (string_match_1, fast_c_string_match_ignore_case)
4910 (looking_at_1, scan_buffer, scan_newline)
4911 (find_next_newline_no_quit, find_before_next_newline)
4912 (search_command, trivial_regexp_p, search_buffer, simple_search)
4913 (boyer_moore, wordify, Freplace_match): Use EMACS_INT for buffer
4914 and string positions and length.
4915
4916 * lisp.h (scan_buffer, scan_newline, find_next_newline_no_quit)
4917 (find_before_next_newline): Adjust prototypes.
4918
4919 * editfns.c (transpose_markers, update_buffer_properties)
4920 (buildmark, clip_to_bounds, Fgoto_char, overlays_around)
4921 (get_pos_property, Fconstrain_to_field)
4922 (Fline_beginning_position, Fline_end_position, Fprevious_char)
4923 (Fchar_after, Fchar_before, Finsert_char)
4924 (Finsert_buffer_substring, Fcompare_buffer_substrings)
4925 (Fsubst_char_in_region, Fformat, Ftranspose_regions):
4926 Use EMACS_INT for buffer and string position variables.
4927 (Finsert_char): Protect against too large insertions.
4928
4929 * lisp.h (clip_to_bounds): Adjust prototype.
4930
4931 * intervals.c (traverse_intervals, rotate_right, rotate_left)
4932 (balance_an_interval, split_interval_right, split_interval_left)
4933 (find_interval, next_interval, update_interval)
4934 (adjust_intervals_for_insertion, delete_node, delete_interval)
4935 (interval_deletion_adjustment, adjust_intervals_for_deletion)
4936 (offset_intervals, merge_interval_right, merge_interval_left)
4937 (graft_intervals_into_buffer, adjust_for_invis_intang)
4938 (move_if_not_intangible, get_local_map, copy_intervals)
4939 (copy_intervals_to_string, compare_string_intervals)
4940 (set_intervals_multibyte_1): Use EMACS_INT for buffer positions
4941 and for interval tree size.
4942
4943 * intervals.h (traverse_intervals, split_interval_right)
4944 (split_interval_left, find_interval, offset_intervals)
4945 (graft_intervals_into_buffer, copy_intervals)
4946 (copy_intervals_to_string, move_if_not_intangible, get_local_map)
4947 (update_interval): Adjust prototypes.
4948
4949 * xdisp.c (check_point_in_composition, reconsider_clip_changes):
4950 Use EMACS_INT for buffer position variables and arguments.
4951
4952 * composite.c (get_composition_id, find_composition)
4953 (run_composition_function, compose_text)
4954 (composition_gstring_width, autocmp_chars)
4955 (composition_update_it, Ffind_composition_internal): Use EMACS_INT
4956 for buffer positions and string length variables and arguments.
4957
4958 * composite.h (get_composition_id, find_composition, compose_text)
4959 (composition_gstring_width): Adjust prototypes.
4960
4961 * editfns.c (Fformat): Use EMACS_INT for string size variables.
4962
4963 * xdisp.c (store_mode_line_noprop, display_mode_element):
4964 Use EMACS_INT for string positions.
4965
4966 * intervals.c (get_property_and_range): Use EMACS_INT for buffer
4967 position arguments.
4968
4969 * intervals.h (get_property_and_range): Adjust prototype.
4970
4971 * character.c (parse_str_as_multibyte, str_as_multibyte)
4972 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
4973 (string_count_byte8, string_escape_byte8, c_string_width)
4974 (strwidth, lisp_string_width, multibyte_chars_in_text):
4975 Use EMACS_INT for string length variables and arguments.
4976
4977 * character.h (parse_str_as_multibyte, str_as_multibyte)
4978 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
4979 (c_string_width, strwidth, lisp_string_width):
4980 Adjust prototypes.
4981
4982 * font.c (font_intern_prop): Use EMACS_INT for string length
4983 variables.
4984
4985 * font.c (font_intern_prop): Use EMACS_INT for string length
4986 variables.
4987
4988 * fns.c (Fstring_as_multibyte): Use EMACS_INT for string length
4989 variables.
4990
4991 * alloc.c <total_string_size>: Declare as EMACS_INT, not int.
4992 (Fmake_string): Protect against too large strings.
4993 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
4994 (live_misc_p): Use ptrdiff_t instead of int for pointer
4995 differences.
4996 (string_bytes, check_sblock, check_string_free_list)
4997 (allocate_string_data, compact_small_strings, Fmake_string)
4998 (Fmake_bool_vector, make_string, make_unibyte_string)
4999 (make_multibyte_string, make_string_from_bytes)
5000 (make_specified_string_string, Fmake_list, Fmake_vector):
5001 Use EMACS_INT for string length variables and arguments.
5002 (find_string_data_in_pure, make_pure_string, make_pure_c_string)
5003 (Fpurecopy): Use EMACS_INT for string size.
5004 (mark_vectorlike, mark_char_table, mark_object): Use EMACS_UINT
5005 for vector size.
5006
5007 * lisp.h (make_string, make_unibyte_string, make_multibyte_string)
5008 (make_string_from_bytes, make_specified_string_string)
5009 (make_pure_string, string_bytes, check_point_in_composition):
5010 Adjust prototypes.
5011
5012 2010-09-22 Eli Zaretskii <eliz@gnu.org>
5013
5014 * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal)
5015 (check_translation): Use EMACS_INT for buffer positions and
5016 length.
5017
5018 * undo.c (record_marker_adjustment, record_delete)
5019 (record_change, record_point, record_insert)
5020 (record_property_change, Fprimitive_undo): Use EMACS_INT for
5021 buffer positions.
5022
5023 * lisp.h (record_marker_adjustment, record_delete)
5024 (record_change, record_point, record_insert)
5025 (record_property_change, Fprimitive_undo): Adjust prototypes.
5026
5027 2010-09-22 Juanma Barranquero <lekktu@gmail.com>
5028 Eli Zaretskii <eliz@gnu.org>
5029
5030 * w32.c (get_emacs_configuration_options): Fix buffer overrun.
5031
5032 2010-09-22 Eli Zaretskii <eliz@gnu.org>
5033
5034 * minibuf.c (Fminibuffer_contents)
5035 (Fminibuffer_contents_no_properties)
5036 (Fminibuffer_completion_contents): Use EMACS_INT for minibuffer
5037 positions.
5038
5039 * keyboard.c (command_loop_1): Use EMACS_INT to compare point with
5040 mark.
5041
5042 * alloc.c (make_uninit_string, make_uninit_multibyte_string)
5043 (allocate_string_data): Accept EMACS_INT for string length.
5044
5045 * editfns.c (Ffield_string, Ffield_string_no_properties)
5046 (make_buffer_string, make_buffer_string_both, Fbuffer_substring)
5047 (Fbuffer_substring_no_properties, find_field, Fdelete_field)
5048 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
5049 (Ffield_end): Use EMACS_INT for buffer positions.
5050
5051 * insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare
5052 point with mark.
5053
5054 * lisp.h (allocate_string_data, make_uninit_string)
5055 (make_uninit_multibyte_string, make_buffer_string)
5056 (make_buffer_string_both): Adjust prototypes.
5057
5058 2010-09-22 Chong Yidong <cyd@stupidchicken.com>
5059
5060 * xml.c: Switch to GNU indentation.
5061 (make_dom): Change parse tree format to match xml.el.
5062 (Fxml_parse_html_string_internal): Rename from html-parse-string.
5063 (Fxml_parse_string_internal): Rename from xml-parse-string.
5064
5065 2010-09-22 Kenichi Handa <handa@m17n.org>
5066
5067 * xdisp.c (compute_stop_pos): Call composition_compute_stop_pos
5068 only if we are not at a composition.
5069 (set_iterator_to_next): Give it->end_charpos to
5070 composition_compute_stop_pos.
5071 (set_iterator_to_next, next_element_from_buffer): Likewise.
5072
5073 * dispnew.c (buffer_posn_from_coords): Fix position when the
5074 current display element is a grapheme cluster in bidi-reordered
5075 region.
5076
5077 2010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
5078
5079 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
5080 the regions may overlap.
5081
5082 2010-09-21 Juanma Barranquero <lekktu@gmail.com>
5083
5084 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
5085
5086 2010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
5087
5088 * emacs.c: Do not include sys/ioctl.h, not needed.
5089
5090 * doprnt.c: Do not include stdlib.h, config.h does it.
5091 Move #include before macro definition.
5092
5093 2010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
5094
5095 * Makefile.in (temacs): Link using $(CC) not $(LD).
5096 (LD_FIRSTFLAG): Define using autoconf.
5097 (LD): Remove.
5098
5099 Remove HAVE_TERMIOS definitions.
5100 * s/usg5-4-common.h (HAVE_TERMIOS):
5101 * s/template.h (HAVE_TERMIOS):
5102 * s/gnu-linux.h (HAVE_TERMIOS):
5103 * s/darwin.h (HAVE_TERMIOS):
5104 * s/cygwin.h (HAVE_TERMIOS):
5105 * s/bsd-common.h (HAVE_TERMIOS):
5106 * s/aix4-2.h (HAVE_TERMIOS):
5107 * s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
5108 defined on all non-MS platforms.
5109 (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
5110
5111 * xterm.c (xt_action_hook): Use const.
5112
5113 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
5114
5115 Don't make W32 code conditional on HAVE_SOCKETS, it's always defined.
5116 * w32.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
5117 (gethostname) [!HAVE_SOCKETS]: Remove.
5118 (SOCK_REPLACE_HANDLE): Remove macro.
5119 (socket_to_fd, sys_close, _sys_read_ahead, sys_read, sys_write)
5120 (term_ntproc, init_ntproc): Don't conditionalize on HAVE_SOCKETS.
5121 * w32proc.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
5122 (syms_of_ntproc): Don't conditionalize on HAVE_SOCKETS.
5123
5124 2010-09-18 Eli Zaretskii <eliz@gnu.org>
5125
5126 * deps.mk (xml.o): Add dependencies.
5127
5128 * xdisp.c (Fcurrent_bidi_paragraph_direction):
5129 Call bidi_paragraph_init with NO_DEFAULT_P non-zero. (Bug#7038)
5130
5131 * bidi.c (bidi_paragraph_init): Accept an additional argument
5132 NO_DEFAULT_P; all callers changed. If NO_DEFAULT_P is non-zero,
5133 search back until a paragraph with a strong directional character
5134 is found, and use that to determine paragraph's base direction.
5135
5136 * dispextern.h (bidi_paragraph_init): Update prototype.
5137
5138 2010-09-17 Eli Zaretskii <eliz@gnu.org>
5139
5140 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
5141 of w32api >= 3.15. (Bug#6989)
5142
5143 2010-09-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5144
5145 * process.c (wait_reading_process_output): Don't message about
5146 accept-process-output unless the time limit really is zero.
5147
5148 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
5149
5150 * frame.c (Ftool_bar_pixel_width): YAILOM (Yet another
5151 int/Lisp_Object mixup).
5152
5153 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
5154
5155 * keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL
5156 not HELP.
5157
5158 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
5159
5160 * frame.c (Ftool_bar_pixel_width): New function to expose tool
5161 bar's pixel width to Lisp (Bug#7048).
5162
5163 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
5164
5165 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
5166
5167 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
5168
5169 * gtkutil.c (xg_pack_tool_bar): Call gtk_handle_box_set_handle_position
5170 with argument top/left if tool bar is vertical/horizontal (Bug#7051).
5171
5172 2010-09-17 Kenichi Handa <handa@m17n.org>
5173
5174 * ftfont.c (ftfont_check_otf): Fix previous change.
5175
5176 2010-09-14 Kenichi Handa <handa@m17n.org>
5177
5178 * ftfont.c (ftfont_check_otf): Fix the case of checking just
5179 existence of GSUB or GPOS.
5180
5181 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
5182
5183 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
5184
5185 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
5186
5187 * xml.c (parse_buffer): Rename to parse_string(), since that's
5188 what it does.
5189 (parse_string): Return nil when the document can't be parsed.
5190
5191 2010-09-14 Jan Djärv <jan.h.d@swipnet.se>
5192
5193 * xterm.c (get_current_vm_state): New function.
5194 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
5195 want_fullscreen so set_wm_state calls are few (Bug#7013).
5196 (x_handle_net_wm_state): Move code to get_current_vm_state and
5197 call that function.
5198
5199 2010-09-14 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
5200
5201 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
5202
5203 2010-09-14 Kenichi Handa <handa@m17n.org>
5204
5205 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
5206 we may use designation or locking-shift.
5207
5208 2010-09-14 Kenichi Handa <handa@m17n.org>
5209
5210 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
5211 sequence when the source is multibyte.
5212
5213 2010-09-14 Andreas Schwab <schwab@linux-m68k.org>
5214
5215 * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last change.
5216 Don't make first argument optional. Doc fix.
5217
5218 2010-09-14 Leo <sdl.web@gmail.com> (tiny change)
5219
5220 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
5221 parameters for the doc string.
5222
5223 2010-09-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
5224
5225 * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
5226
5227 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5228
5229 * fns.c (Fy_or_n_p): Move to lisp/subr.el.
5230 (syms_of_fns): Don't defsubr Sy_or_n_p.
5231 * lisp.h: Don't declare Fy_or_n_p.
5232 * fileio.c (barf_or_query_if_file_exists): Fy_or_n_p -> y-or-n-p.
5233
5234 2010-09-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
5235
5236 * xml.c (Fxml_parse_buffer): New function to parse XML files.
5237
5238 2010-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
5239
5240 * xml.c: New file.
5241 (Fhtml_parse_buffer): New function to interface to the libxml2
5242 html parsing function.
5243
5244 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
5245
5246 * biditype.h: Regenerate.
5247
5248 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
5249
5250 * nsimage.m (ns_load_image): Check argument types.
5251
5252 * image.c: Remove all uses of gcpro.
5253 (xpm_load): Check all lisp types.
5254 (pbm_load): Likewise.
5255 (png_load): Likewise.
5256 (jpeg_load): Likewise.
5257 (tiff_load): Likewise.
5258 (gif_load): Likewise.
5259 (imagemagick_load_image): Likewise.
5260 (imagemagick_load): Likewise.
5261 (svg_load): Likewise.
5262 (gs_load): Likewise.
5263
5264 2010-09-04 Eli Zaretskii <eliz@gnu.org>
5265
5266 * w32uniscribe.c (uniscribe_shape): Update commentary.
5267 Don't try to reorder grapheme clusters, since LGSTRING should always
5268 hold them in the logical order.
5269 (uniscribe_encode_char, uniscribe_shape): Force ScriptShape to
5270 return glyph codes in the logical order.
5271
5272 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
5273
5274 * image.c (imagemagick_image_p): Replace bcopy by memcpy.
5275 (imagemagick_load_image): Fix type mismatch.
5276 (Fimagemagick_types): Likewise. Doc fix.
5277
5278 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
5279
5280 * xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
5281
5282 * xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
5283
5284 * xselect.c: Remove declaration of cut-buffer objects and functions.
5285 (symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
5286 (x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
5287 (Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
5288 (Fx_rotate_cut_buffers_internal): Remove.
5289 (syms_of_xselect): Remove defsubr of above.
5290 Remove intern of QCUT_BUFFERn.
5291
5292 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
5293
5294 * cmds.c (Vblink_paren_function): Remove.
5295 (internal_self_insert): Make it insert N chars at a time.
5296 Don't call blink-paren-function.
5297 (Fself_insert_command): Adjust accordingly.
5298 (syms_of_cmds): Don't declare blink-paren-function.
5299
5300 2010-08-31 Kenichi Handa <handa@m17n.org>
5301
5302 * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
5303 characters.
5304
5305 * term.c (encode_terminal_code): Fix the previous change.
5306 (produce_glyphs): Don't set it->char_to_display here.
5307 Don't handle unibyte-display-via-language-environment here.
5308 (produce_special_glyphs): Set temp_it.char_to_display before
5309 calling produce_glyphs.
5310
5311 * xdisp.c (get_next_display_element): Set it->char_to_display
5312 here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit
5313 characters.
5314 (get_overlay_arrow_glyph_row): Set it.char_to_display too before
5315 calling PRODUCE_GLYPHS.
5316 (append_space_for_newline): Save and store it->char_to_display.
5317 Set it->char_to_display before calling PRODUCE_GLYPHS.
5318 (extend_face_to_end_of_line): Set it->char_to_display before
5319 calling PRODUCE_GLYPHS.
5320 (get_glyph_face_and_encoding): Set the glyph code an 8-bit
5321 character to its byte value.
5322 (get_char_glyph_code): New function.
5323 (produce_stretch_glyph): Set it2.char_to_display too before
5324 calling x_produce_glyphs.
5325 (x_produce_glyphs): Simplify by using the same code for ASCII and
5326 non-ASCII characters. Don't set it->char_to_display here.
5327 Don't handle unibyte-display-via-language-environment here. For a
5328 character of no glyph, use font->space_width instead of FONT_WIDTH.
5329
5330 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
5331
5332 * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
5333
5334 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
5335
5336 * keyboard.c (command_loop_1): Don't call x-set-selection on tty.
5337
5338 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
5339
5340 * marker.c (Fcopy_marker): Make the first arg optional.
5341
5342 2010-08-30 Kenichi Handa <handa@m17n.org>
5343
5344 * composite.c (composition_update_it): Fix computing of
5345 cmp_it->width.
5346
5347 2010-08-29 Kenichi Handa <handa@m17n.org>
5348
5349 * term.c (encode_terminal_code): Encode byte chars to the
5350 corresponding bytes.
5351
5352 2010-08-29 Jan Djärv <jan.h.d@swipnet.se>
5353
5354 * nsterm.m (ns_draw_window_cursor): Draw BAR_CURSOR correct for R2L.
5355
5356 2010-08-26 Kenichi Handa <handa@m17n.org>
5357
5358 * xdisp.c (compute_stop_pos): Pay attention to bidi scan direction
5359 on calling composition_compute_stop_pos.
5360
5361 2010-08-25 Kenichi Handa <handa@m17n.org>
5362
5363 * fontset.c (reorder_font_vector): Prefer a font-spec specifying
5364 :otf.
5365
5366 * composite.c (composition_compute_stop_pos): Don't break
5367 composition at PT.
5368 (composition_reseat_it): Likewise. Fix calculation of character
5369 position starting a composition.
5370 (Fcomposition_get_gstring): Don't limit the number of components
5371 for automatic composition.
5372
5373 2010-08-25 Kenichi Handa <handa@m17n.org>
5374
5375 * composite.c (composition_compute_stop_pos): In forward search,
5376 pay attention to the possibility that some character after ENDPOS
5377 will be composed with charactrs before ENDPOS.
5378
5379 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
5380
5381 * keyboard.c (command_loop_1): Don't clobber primary selection
5382 during handle-switch-frame (Bug#6872).
5383
5384 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
5385
5386 * dbusbind.c: Accept UNIX domain sockets as bus address.
5387 (Fdbus_close_bus): New function.
5388 (Vdbus_registered_buses): New variable.
5389 (xd_initialize): Implement string as bus address.
5390 (Fdbus_init_bus): Add bus to Vdbus_registered_buses).
5391 (Fdbus_get_unique_name, Fdbus_call_method)
5392 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
5393 (Fdbus_method_error_internal, Fdbus_send_signal)
5394 (Fdbus_register_signal, Fdbus_register_method): Remove bus type
5395 check. This is done in xd_initialize_bus. Adapt doc string, if
5396 necessary.
5397 (xd_pending_messages, xd_read_queued_messages): Loop over buses in
5398 Vdbus_registered_buses.
5399 (Vdbus_registered_objects_table): Create hash.
5400
5401 2010-08-22 Juri Linkov <juri@jurta.org>
5402
5403 * keyboard.c (Fexecute_extended_command): Move reading a command name
5404 with `completing-read' to a new Elisp function `read-extended-command'.
5405 Call it to read a command to `function' (bug#5364, bug#5214).
5406
5407 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
5408
5409 * emacs.c (main): Remove handling of --unibyte arg (Bug#6886).
5410
5411 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
5412
5413 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
5414 instead of SAFE_ALLOCA.
5415
5416 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
5417
5418 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
5419 (Bug#6214).
5420
5421 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
5422
5423 * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
5424
5425 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
5426
5427 * doc.c (Fsnarf_documentation): Initialize skip_file before
5428 build-files test.
5429
5430 2010-08-22 Peter O'Gorman <pogma@thewrittenword.com> (tiny change)
5431
5432 * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
5433 New definitions.
5434 (HAVE_TERMIO): Remove.
5435
5436 2010-08-22 Eli Zaretskii <eliz@gnu.org>
5437
5438 * deps.mk (sysdep.o, msdos.o): Depend on sysselect.h.
5439
5440 * sysselect.h [WINDOWSNT]: Don't define the FD_* and select stuff
5441 for w32.
5442
5443 * s/ms-w32.h (HAVE_SYS_TIMEB_H): Don't #undef HAVE_SYS_SELECT_H,
5444 it's done in nt/config.nt.
5445
5446 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on sysselect.h.
5447
5448 * unexcoff.c (report_error, make_hdr, write_segment)
5449 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
5450 Convert argument lists and prototypes to ANSI C.
5451 (make_hdr, write_segment): Remove unused variables.
5452 (unexec): Remove commented-out line. Initialize `new' to shut up
5453 compiler warnings.
5454
5455 2010-08-22 Dan Nicolaescu <dann@ics.uci.edu>
5456
5457 Simplify termio code.
5458 All non-MSDOS non-WINDOWSNT platforms define HAVE_TERMIOS, so
5459 HAVE_TERMIO code is obsolete.
5460 Replace HAVE_TERMIOS conditionals with !DOS_NT.
5461 * systty.h: Do not define HAVE_TCATTR.
5462 Remove HAVE_TERMIO, HAVE_LTCHARS and HAVE_TCHARS code.
5463 Do not define EMACS_HAVE_TTY_PGRP. Only define
5464 EMACS_GET_TTY_PGRP for !DOS_NT.
5465 * sysdep.c: Include sysselect.h unconditionally. Do not include
5466 sys/ioctl.h and termios.h, systty.h does it.
5467 Use HAVE_SYS_UTSNAME_H instead of USG as an include guard.
5468 (init_baud_rate): Remove HAVE_TERMIO code.
5469 (child_setup_tty): Remove HAVE_TERMIO code.
5470 (emacs_get_tty, emacs_set_tty): Remove HAVE_TERMIO, HAVE_TCHARS
5471 and HAVE_LTCHARS code. Use !DOS_NT instead of HAVE_TCATTR.
5472 (new_ltchars, new_tchars): Remove, unused.
5473 (init_sys_modes): Remove HAVE_TERMIO, HAVE_TCHARS and HAVE_LTCHARS
5474 code. Remove special casing for __mips__, it was a no-op.
5475 Remove HAVE_TCATTR conditional, it is implied by HAVE_TERMIOS.
5476 (init_sys_modes): Remove HPUX special case.
5477 * process.c: Include stdlib.h unconditionally. Do not include
5478 fcntl.h, systty.h does it. Remove conditional code for
5479 HAVE_SERIAL, it is always true.
5480 (process_send_signal): Remove HAVE_TERMIOS conditional, it's
5481 always true when SIGNALS_VIA_CHARACTERS is true.
5482 (Fcontinue_process, Fprocess_send_eof): Simplify conditionals:
5483 !WINDOWSNT means HAVE_TERMIOS.
5484 (create_process): Remove HAVE_TERMIOS, it's inside a HAVE_PTYS
5485 conditional, which is true for all HAVE_TERMIOS systems.
5486 * keyboard.c (init_keyboard): Do not use HAVE_TERMIO, use !DOS_NT
5487 instead of HAVE_TERMIOS.
5488 * emacs.c (shut_down_emacs): Use !defined DOS_NT instead of
5489 EMACS_HAVE_TTY_PGRP.
5490 * callproc.c (child_setup): Move EMACS_SET_TTY_PGRP use to the
5491 non-MSDOS, non-WINDOWSNT code, it's only defined for such systems
5492 anyway.
5493
5494 2010-08-21 Eli Zaretskii <eliz@gnu.org>
5495
5496 * dispnew.c (buffer_posn_from_coords): Fix off-by-one error in
5497 mirroring pixel positions.
5498
5499 2010-08-20 Dan Nicolaescu <dann@ics.uci.edu>
5500
5501 * alloc.c (malloc_sbrk_used, malloc_sbrk_unused): Remove,
5502 write only.
5503 (init_alloc_once): Remove writes to malloc_sbrk_unused, and
5504 malloc_sbrk_used, nothing uses them.
5505
5506 * puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
5507 defined, unconditionally defined in lisp.h.
5508
5509 * term.c: Do not include <termios.h>, systty.h does it.
5510
5511 * s/unixware.h (HAVE_TCATTR):
5512 * s/aix4-2.h (HAVE_TCATTR): Remove definitions, not needed.
5513 systty.h defines it when HAVE_TERMIOS is defined.
5514
5515 2010-08-20 Eli Zaretskii <eliz@gnu.org>
5516
5517 * dispnew.c (buffer_posn_from_coords): Fix last change for text
5518 terminals: add one-character offset for R2L lines.
5519
5520 * emacs.c <emacs_version>: Add a comment regarding
5521 msdos/mainmake.v2's dependency on the syntax of this declaration.
5522
5523 2010-08-20 Eli Zaretskii <eliz@gnu.org>
5524
5525 * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer
5526 position for R2L lines by mirroring the pixel position wrt the
5527 text are box. Improve commentary.
5528
5529 2010-08-20 Andreas Schwab <schwab@linux-m68k.org>
5530
5531 * image.c (imagemagick_clear_image): Remove debugging output.
5532
5533 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
5534
5535 * cmds.c (Vself_insert_face, Vself_insert_face_command): Remove.
5536 (Qpost_self_insert_hook, Vpost_self_insert_hook): New vars.
5537 (internal_self_insert): Run Qpost_self_insert_hook rather than handle
5538 self-insert-face.
5539 (syms_of_cmds): Initialize the new vars.
5540
5541 2010-08-19 Jason Rumney <jasonr@gnu.org>
5542
5543 * w32menu.c (set_frame_menubar): Remove call to undefined function.
5544
5545 * w32fns.c (w32_wnd_proc): Don't check context before initializing.
5546
5547 2010-08-19 Jan Djärv <jan.h.d@swipnet.se>
5548
5549 * nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".
5550
5551 2010-08-18 Eli Zaretskii <eliz@gnu.org>
5552
5553 * xterm.c (x_draw_bar_cursor):
5554 * w32term.c (x_draw_bar_cursor): If the character under cursor is
5555 R2L, draw the bar cursor on its right rather than on its left.
5556
5557 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
5558
5559 * eval.c (Fdefmacro): Only obey one declaration.
5560
5561 * casefiddle.c (casify_region): Setup gl_state.
5562
5563 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
5564
5565 * nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
5566
5567 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
5568
5569 * gtkutil.c (update_frame_tool_bar): Literal strings are const char*.
5570
5571 2010-08-18 David De La Harpe Golden <david@harpegolden.net>
5572
5573 * nsselect.m (QCLIPBOARD, NXPrimaryPboard): Define.
5574 (symbol_to_nsstring): Map QCLIPBOARD => NSGeneralPboard,
5575 QPRIMARY => NXPrimaryPboard.
5576 (ns_string_to_symbol): NSGeneralPboard => QCLIPBOARD,
5577 NXPrimaryPboard => QPRIMARY.
5578 (nxatoms_of_nsselect): NXPrimaryPboard = PrimarySelection,
5579 NXSecondaryPboard = SecondarySelection.
5580 (syms_of_nsselect): Intern QCLIPBOARD (Bug#6677).
5581
5582 2010-08-18 Joakim Verona <joakim@verona.se>
5583
5584 * image.c: Add support for ImageMagick. When HAVE_IMAGEMAGICK is
5585 defined:
5586 (imagemagick_image_p): New function to test for ImageMagic image.
5587 (imagemagick_load): New function to load ImageMagick image.
5588 (imagemagick_load_image): New function, helper for imagemagick_load.
5589 (imagemagick-types): New function.
5590 (Qimagemagick): New Lisp_object.
5591 (imagemagick-render-type): New variable, decides which renderer to use.
5592
5593 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
5594
5595 * gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
5596 is a string.
5597
5598 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
5599
5600 * nsfns.m (ns_frame_parm_handlers): Add a slot for the
5601 x_set_tool_bar_position handler.
5602
5603 2010-08-17 Eli Zaretskii <eliz@gnu.org>
5604
5605 * w32fns.c <w32_frame_parm_handlers>: Add a slot for the
5606 x_set_tool_bar_position handler, needed to support changes from
5607 2010-07-29T16:49:59Z!jan.h.d@swipnet.se for positioning the tool bar. (Bug#6796)
5608
5609 2010-08-16 Jan Djärv <jan.h.d@swipnet.se>
5610
5611 * nsselect.m: Include keyboard.h for QPRIMARY, remove its
5612 declaration (Bug#6863).
5613 (syms_of_nsselect): Don't intern QPRIMARY.
5614
5615 * xselect.c: Remove declaration of QPRIMARY (Bug#6864).
5616
5617 * keyboard.h (QPRIMARY): Declare (Bug#6864).
5618
5619 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
5620
5621 * keyboard.c (command_loop_1): Avoid setting selection twice,
5622 since it's done in deactivate-mark as well.
5623 (Vselect_active_regions): Change default to t. Replace `lazy'
5624 with non-default value `only', meaning only set PRIMARY for
5625 temporarily active regions.
5626
5627 * insdel.c (prepare_to_modify_buffer): Handle `only' value of
5628 select-active-regions.
5629
5630 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
5631
5632 * keyboard.c (parse_tool_bar_item): Put in a bad label if :label
5633 isn't a string.
5634
5635 2010-08-15 Andreas Schwab <schwab@linux-m68k.org>
5636
5637 * keyboard.c (parse_tool_bar_item): Avoid excessive use of strlen.
5638
5639 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
5640
5641 * keyboard.c (parse_tool_bar_item): malloc buf.
5642 Set TOOL_BAR_ITEM_LABEL to empty string if not set to
5643 new_lbl (Bug#6855).
5644
5645 2010-08-14 Eli Zaretskii <eliz@gnu.org>
5646
5647 * xterm.c (x_draw_stretch_glyph_string):
5648 * w32term.c (x_draw_stretch_glyph_string): In R2L rows, display
5649 the cursor on the right edge of the stretch glyph.
5650
5651 * xdisp.c (window_box_right_offset, window_box_right):
5652 Fix commentary.
5653
5654 * xdisp.c (Fcurrent_bidi_paragraph_direction): Fix paragraph
5655 direction when point is inside a run of whitespace characters.
5656
5657 * bidi.c (bidi_at_paragraph_end): Remove obsolete comment.
5658
5659 2010-08-14 Jason Rumney <jasonr@gnu.org>
5660
5661 * keyboard.c (lispy_function_keys): Do not define VK_PACKET (bug#4836)
5662
5663 2010-08-14 Chong Yidong <cyd@stupidchicken.com>
5664
5665 * fns.c (Fmake_hash_table): Doc fix (Bug#6851).
5666
5667 2010-08-13 Jason Rumney <jasonr@gnu.org>
5668
5669 * w32menu.c (simple_dialog_show): Use unicode message box if available.
5670 (MessageBoxW_Proc): New function typedef.
5671 (unicode-message-box): New function pointer.
5672 (globals_of_w32menu): Import it from user32.dll. (Bug#5629)
5673
5674 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
5675
5676 * frame.h (Qtool_bar_position): Declare.
5677
5678 * xfns.c (Fx_create_frame): Call x_default_parameter for
5679 Qtool_bar_position.
5680
5681 2010-08-13 Eli Zaretskii <eliz@gnu.org>
5682
5683 * unexcoff.c: Remove the parts used when "emacs" is not defined.
5684 (report_error, report_error_1): Ditto.
5685 (write_segment): Remove "#if 0" unused code.
5686 (make_hdr): Remove code that was "#ifndef NO_REMAP" before
5687 NO_REMAP was removed (in 2010-07-29T03:25:08Z!dann@ics.uci.edu).
5688 (start_of_text): Remove unused function (was used only if NO_REMAP
5689 was NOT defined).
5690
5691 * msdos.c (IT_set_face): Fix format string to match argument
5692 types.
5693 (IT_write_glyphs, IT_note_mode_line_highlight)
5694 (IT_set_frame_parameters): Remove unused variables.
5695 (x_set_menu_bar_lines): Declare set_menu_bar_lines.
5696 (IT_set_terminal_modes): Disambiguate expression in if clause.
5697 (Fmsdos_remember_default_colors): Return Qnil.
5698 (IT_set_frame_parameters): Add parens to disambiguate boolean
5699 expression for logging the cursor type to termscript.
5700 (keyboard_layout_list, keypad_translate_map)
5701 (grey_key_translate_map): Add braces in inner initializers.
5702 (dos_rawgetc): Add parens in condition for mouse-3 button-press.
5703 (dos_rawgetc): Remove unused label.
5704 (XMenuActivate): Add braces to remove ambiguous `else'.
5705 (dos_ttraw): Always return a value.
5706 (spawnve): Declare.
5707 (run_msdos_command): Cast 3rd arg of spawnve to "char **".
5708
5709 * dosfns.h (x_set_title): Declare.
5710
5711 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
5712 Remove unused variables.
5713
5714 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused
5715 variables.
5716 (init_dosfns): Declare get_lim_data.
5717 (system_process_attributes): Declare Fget_internal_run_time.
5718
5719 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument
5720 list to be consistent with menu.h.
5721
5722 * w32menu.c (add_menu_item, name_is_separator): Shut up compiler
5723 warnings due to mixing of "char *" and "const char *".
5724
5725 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
5726
5727 Introduce a new comment style "c" flag.
5728 * syntax.c (SYNTAX_FLAGS_COMMENT_STYLEB)
5729 (SYNTAX_FLAGS_COMMENT_STYLEC): New macros.
5730 (SYNTAX_FLAGS_COMMENT_STYLE): Use them, add an argument.
5731 (syntax_prefix_flag_p): New function.
5732 (Fstring_to_syntax): Understand new "c" flag.
5733 (Finternal_describe_syntax_value): Recognize new flag; use the
5734 SYNTAX_FLAGS_* macros.
5735 (scan_sexps_forward, Fparse_partial_sexp): Change representation of
5736 comment style to accomodate the new styles.
5737 (back_comment, forw_comment, Fforward_comment, scan_lists)
5738 (scan_sexps_forward): Update code to obey the new comment style flag.
5739
5740 * syntax.h: Move SYNTAX_FLAGS_FOO() macros to syntax.c.
5741
5742 * casefiddle.c (casify_region): Use the new syntax_prefix_flag_p.
5743
5744 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
5745
5746 * xfns.c (x_defined_color): If USE_GTK, call xg_check_special_colors
5747 first.
5748 (Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
5749
5750 * gtkutil.h (xg_check_special_colors): Declare.
5751
5752 * gtkutil.c (xg_check_special_colors, style_changed_cb): New functions.
5753 (xg_create_frame_widgets): Connect theme name changes to
5754 style_changed_cb.
5755
5756 * xterm.c (emacs_class): New char[] for EMACS_CLASS.
5757 (xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class.
5758 (x_term_init): Use char[] display_opt and name_opt instead of
5759 string literal. file is const char*.
5760
5761 * xsmfns.c (NOSPLASH_OPT): Change to char[].
5762 (smc_save_yourself_CB): Do xstrdup on all ->type and ->name for
5763 props. Free them at the end.
5764
5765 * xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "".
5766
5767 * xrdb.c (get_system_app): Make path const and use char *p for
5768 non-const char.
5769
5770 * xmenu.c (Fx_popup_dialog): error_name is const char*.
5771 (xmenu_show): error parameter is const char **. pane_string is const
5772 char *.
5773 (button_names): Is const char *.
5774 (xdialog_show): error_name and pane_string is const.
5775
5776 * process.h (synch_process_death): Is const char*.
5777
5778 * w32menu.c (w32_menu_show):
5779 * nsmenu.m (ns_menu_show): error parameter is const char **.
5780
5781 * menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter
5782 is const char **.
5783
5784 * menu.c (Fx_popup_menu): error_name is const.
5785
5786 * keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean
5787 with unsigned char and XtPointer with void *.
5788
5789 * gtkutil.h: Replace widget_value with struct _widget_value.
5790 (enum button_type, struct _widget_value): Remove and use the one from
5791 keyboard.h.
5792
5793 * gtkutil.c (get_utf8_string): Always return an allocated string.
5794 Parameter is const.
5795 (create_dialog, xg_create_one_menuitem, create_menus)
5796 (xg_item_label_same_p, xg_update_menu_item): Free result from
5797 get_utf8_string.
5798 (xg_separator_p, xg_item_label_same_p): label is const.
5799
5800 * font.h (font_open_by_name): Make name const.
5801
5802 * font.c (font_open_by_name): Make name const.
5803
5804 * floatfns.c (matherr): Use a const char* variable for x->name.
5805
5806 * emacs.c (main): Pass char[] to putenv instead of literal.
5807
5808 * callproc.c (synch_process_death): Make const.
5809 (Fcall_process): Make signame const.
5810
5811 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle)
5812 (addDisplayItemWithImage): Use const char*.
5813
5814 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle)
5815 (addDisplayItemWithImage, update_frame_tool_bar): Use const char*.
5816
5817 * nsfont.m (ns_descriptor_to_entity): Use const char*.
5818
5819 * keyboard.h (_widget_value): name, value and key are const char*.
5820
5821 * unexmacosx.c (unexec_error): Use const char *.
5822
5823 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
5824
5825 * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
5826 (font_parse_name, font_open_by_name):
5827 * font.c (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
5828 (font_parse_name, font_open_by_name): Remove const.
5829
5830 2010-08-09 Andreas Schwab <schwab@linux-m68k.org>
5831
5832 Use autoconf determined WORDS_BIGENDIAN instead of hardcoded
5833 definition.
5834
5835 * m/alpha.h: Don't define/undef WORDS_BIG_ENDIAN.
5836 * m/amdx86-64.h: Likewise.
5837 * m/arm.h: Likewise.
5838 * m/hp800.h: Likewise.
5839 * m/ia64.h: Likewise.
5840 * m/ibmrs6000.h: Likewise.
5841 * m/ibms390.h: Likewise.
5842 * m/intel386.h: Likewise.
5843 * m/iris4d.h: Likewise.
5844 * m/m68k.h: Likewise.
5845 * m/macppc.h: Likewise.
5846 * m/mips.h: Likewise.
5847 * m/sh3.h: Likewise.
5848 * m/sparc.h: Likewise.
5849 * m/template.h: Likewise.
5850 * m/vax.h: Likewise.
5851 * m/xtensa.h: Likewise.
5852 * fringe.c (init_fringe_bitmap): Test WORDS_BIGENDIAN instead of
5853 WORDS_BIG_ENDIAN.
5854 * lisp.h: Likewise.
5855 * md5.c: Likewise.
5856 * sound.c (le2hl, le2hs, be2hl, be2hs): Likewise.
5857
5858 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
5859
5860 Use const char* instead of char*.
5861 Reduce the number of warnings with -Wwrite-strings.
5862 * xrdb.c (get_environ_db, get_system_name):
5863 * unexelf.c (find_section):
5864 * term.c (string_cost, string_cost_one_line, per_line_cost)
5865 (get_named_tty, init_tty):
5866 * sysdep.c (sys_subshell):
5867 * sound.c (sound_perror, sound_warning, vox_open, vox_init)
5868 (alsa_sound_perror, alsa_open, alsa_configure, alsa_init):
5869 * search.c (Freplace_match):
5870 * process.c (Fmake_network_process, send_process, init_process):
5871 * lread.c (Fload, init_lread):
5872 * keymap.c (Fdescribe_buffer_bindings, describe_map_tree):
5873 * keyboard.c (parse_tool_bar_item, struct event_head):
5874 * gtkutil.h (xg_get_font_name):
5875 * gtkutil.c (get_dialog_title, create_dialog, xg_get_font_name)
5876 (make_widget_for_menu_item, make_menu_item, create_menus)
5877 (xg_make_tool_item):
5878 * font.c (parse_matrix, font_parse_name):
5879 * floatfns.c (rounding_driver, float_error_fn_name):
5880 * filelock.c (get_boot_time_1, lock_file_1):
5881 * fileio.c (barf_or_query_if_file_exists, check_writable):
5882 * editfns.c (get_system_name, get_operating_system_release)
5883 (Fencode_time, Fset_time_zone_rule):
5884 * dispextern.h (string_cost, per_line_cost, get_named_tty, init_tty):
5885 * buffer.c (defvar_per_buffer): Use const.
5886
5887 2010-08-08 Kenichi Handa <handa@m17n.org>
5888
5889 * charset.c: Include <stdlib.h>.
5890 (struct charset_sort_data): New struct.
5891 (charset_compare): New function.
5892 (Fsort_charsets): New function.
5893 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
5894
5895 * coding.c (decode_coding_iso_2022): Fix checking of dimension
5896 number in CTEXT extended segment.
5897
5898 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
5899
5900 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
5901 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
5902
5903 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
5904
5905 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
5906 (Fhash_table_size): Fix typos in docstrings.
5907 (Fmake_hash_table): Doc fix.
5908
5909 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
5910
5911 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
5912 Doc fix (bug#5625).
5913
5914 2010-08-08 Ken Brown <kbrown@cornell.edu>
5915
5916 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
5917 the MSDOS definition.
5918
5919 2010-08-08 Dan Nicolaescu <dann@ics.uci.edu>
5920
5921 Use const char* instead of char*.
5922 * xterm.c (x_create_toolkit_scroll_bar):
5923 * xfont.c (xfont_list_pattern):
5924 * xfns.c (x_default_scroll_bar_color_parameter)
5925 (xic_create_fontsetname, x_default_font_parameter)
5926 (x_screen_planes):
5927 * xdisp.c (c_string_pos, number_of_chars, reseat_to_string)
5928 (store_mode_line_string, decode_mode_spec, display_string):
5929 * menu.c (digest_single_submenu):
5930 * keymap.h (initial_define_key, initial_define_lispy_key):
5931 * keymap.c (initial_define_key, initial_define_lispy_key):
5932 * image.c (image_error, image_keyword):
5933 * gtkutil.h (xg_create_widget, xg_create_scroll_bar):
5934 * gtkutil.c (xg_create_widget, xg_create_scroll_bar):
5935 * ftfont.c (struct fc_charset_table, ftfont_spec_pattern)
5936 (ftfont_list, ftfont_match):
5937 * frame.c (frame_parm_table):
5938 * font.h (font_intern_prop, font_parse_xlfd, font_parse_fcname)
5939 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
5940 (font_add_log, font_deferred_log):
5941 * font.c (font_intern_prop, font_parse_xlfd, font_parse_fcname)
5942 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
5943 (font_add_log, font_deferred_log):
5944 * emacs.c (argmatch):
5945 * dispextern.h (struct it):
5946 * coding.c (ENCODE_DESIGNATION):
5947 * charset.c (define_charset_internal): Use const.
5948
5949 * s/freebsd.h (DECLARE_GETPWUID_WITH_UID_T): Remove, unused.
5950
5951 * xrdb.c: Remove include guard.
5952 Remove DECLARE_GETPWUID_WITH_UID_T conditional it had no effect.
5953 Remove #if 0 code. Replace malloc->xmalloc, free->xfree,
5954 realloc->xrealloc instead of using #defines.
5955
5956 2010-08-08 Eli Zaretskii <eliz@gnu.org>
5957
5958 * cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
5959 * editfns.c (Fline_beginning_position, Fline_end_position):
5960 State in the doc strings that start and end of line are in the
5961 logical order.
5962
5963 * xdisp.c (display_line): Move the handling of overlay arrow after
5964 the call to find_row_edges. (Bug#6699)
5965
5966 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
5967
5968 * keyboard.c (command_loop_1):
5969 * insdel.c (prepare_to_modify_buffer): Don't call validate_region.
5970
5971 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
5972
5973 * insdel.c (prepare_to_modify_buffer): Save active region text to
5974 Vsaved_region_selection.
5975
5976 * xselect.c (QPRIMARY): Move to keyboard.c.
5977
5978 * keyboard.c (Vselect_active_regions): Move from simple.el.
5979 (Vsaved_region_selection, Qx_set_selection, QPRIMARY, Qlazy): New vars.
5980 (command_loop_1): Set window selection prior to deactivating the mark.
5981
5982 2010-08-07 Juanma Barranquero <lekktu@gmail.com>
5983
5984 * alloc.c (lisp_malloc):
5985 * buffer.c (set_buffer_internal, set_buffer_internal_1):
5986 * charset.h (emacs_mule_charset):
5987 * dispextern.h (inhibit_free_realized_faces, redraw_frame)
5988 (redraw_garbaged_frames, scroll_cost, update_frame, scrolling)
5989 (bitch_at_user):
5990 * lisp.h (Fcheck_coding_system, Fget_text_property)
5991 (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize):
5992 Remove duplicate declarations.
5993
5994 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
5995
5996 * process.c: Simplify include logic.
5997
5998 * keyboard.h (quit_char): Add declaration.
5999 * process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
6000 (QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary):
6001 Add declarations.
6002 * sysdep.c:
6003 * w32.c: Remove the above declarations.
6004
6005 Remove extern declarations in .c files, .h files have them.
6006 * xterm.c:
6007 * xdisp.c:
6008 * msdos.c:
6009 * image.c:
6010 * gtkutil.c:
6011 * fileio.c:
6012 * eval.c: Remove declarations.
6013
6014 * frame.c (frame_params): Make const.
6015
6016 * lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
6017
6018 * emacs.c (emacs_copyright, emacs_version): Make static.
6019 (Vinitial_window_system, Vauto_save_list_file_name)
6020 (Vinhibit_redisplay): Remove declarations.
6021 (main): Remove HAVE_SHM code, unused. Remove _I386 conditional
6022 for AIX.
6023
6024 Use const for some arrays and functions.
6025 * xterm.h (xg_set_icon_from_xpm_data):
6026 * xfns.c (xg_set_icon_from_xpm_data):
6027 * term.c (fkeys):
6028 * keyboard.c (lispy_accent_keys, lispy_function_keys)
6029 (lispy_multimedia_keys, lispy_kana_keys, iso_lispy_function_keys)
6030 (lispy_drag_n_drop_names, scroll_bar_parts, modify_event_symbol)
6031 (frame.c frame_parms):
6032 * emacs-icon.h (gnu_xpm_bits):
6033 * callint.c (callint_argfuns): Use const.
6034
6035 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
6036
6037 * sysdep.c: Move include term.h last of includes (Bug#6812).
6038
6039 2010-08-06 Eli Zaretskii <eliz@gnu.org>
6040
6041 * dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
6042
6043 * msdos.c (IT_display_cursor): Log cursor position on termscript.
6044
6045 * .gdbinit (pgx): Display the avoid_cursor_p flag.
6046
6047 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
6048
6049 * makefile.w32-in ($(BLD)/xdisp.$(O)): Update dependencies.
6050
6051 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
6052
6053 * xterm.h (x_get_focus_frame): Declare.
6054
6055 * keyboard.h (poll_for_input_1): Unconditionally declare.
6056
6057 * nsterm.h (x_set_menu_bar_lines): Declare.
6058
6059 * window.c: Don't include menu.h, it depends on lots of other .h-files.
6060
6061 * xfaces.c (x_create_gc, x_free_gc): Convert to ANSI C prototypes.
6062
6063 * window.c: Include menu.h.
6064
6065 * unexmacosx.c (print_region_list, print_regions)
6066 (build_region_list, find_emacs_zone_regions)
6067 (unexec_regions_merge, read_load_commands, dump_it)
6068 (unexec_init_emacs_zone): Convert to ANSI C prototypes.
6069
6070 * term.c: Check HAVE_SYS_IOCTL_H.
6071
6072 * sysdep.c: Check HAVE_TERM_H.
6073
6074 * process.c: Check HAVE_UTIL_H. Include nsterm.h if HAVE_NS.
6075
6076 * nsterm.m (ns_init_paths, ns_alloc_autorelease_pool)
6077 (ns_ring_bell, ns_defined_color, hide_hourglass)
6078 (x_display_pixel_height, x_display_pixel_width, syms_of_nsterm):
6079 Convert to ANSI C prototypes.
6080 (x_set_window_size, ns_draw_fringe_bitmap, judge): Move declarations
6081 before code.
6082
6083 * nsterm.h : Include sysselect.h.
6084 (x_sync, x_get_focus_frame, x_set_mouse_position)
6085 (x_set_mouse_pixel_position, x_make_frame_visible)
6086 (x_make_frame_invisible, x_iconify_frame, x_char_width, x_char_height)
6087 (x_pixel_width, x_pixel_height, x_set_frame_alpha, x_set_tool_bar_lines)
6088 (x_activate_menubar, free_frame_menubar, ns_init_paths, ns_select)
6089 (syms_of_nsterm, syms_of_nsfns, syms_of_nsmenu, syms_of_nsselect):
6090 Declare.
6091
6092 * nsmenu.m (popup_activated, name_is_separator)
6093 (syms_of_nsmenu): Convert to ANSI C prototypes.
6094 (runMenuAt): Prototypes and move declarations before code.
6095
6096 * nsimage.m (ns_load_image): Move NSTRACE after declarations.
6097
6098 * nsfont.m (ns_fallback_entity, syms_of_nsfont): Convert to ANSI C
6099 prototypes.
6100
6101 * nsfns.m (have_menus_p, ns_display_info_for_name)
6102 (x_set_cursor_type, ns_appkit_version_str)
6103 (ns_appkit_version_int, ns_do_applescript)
6104 (x_set_scroll_bar_default_width, x_sync, compute_tip_xy)
6105 (syms_of_nsfns): Convert to ANSI C prototypes.
6106
6107 * menu.h (x_set_menu_bar_line): Declare.
6108 (free_menubar_widget_value_tree et.al): Add HAVE_NS for these functions.
6109
6110 * lisp.h (fmod_float): Declare.
6111
6112 * image.c (xpm_scan, xpm_make_color_table_v)
6113 (xpm_put_color_table_v, xpm_get_color_table_v)
6114 (xpm_make_color_table_h, xpm_put_color_table_h)
6115 (xpm_get_color_table_h, xpm_str_to_color_key, xpm_load_image)
6116 (xpm_load): Convert to ANSI C prototypes.
6117
6118 * emacs.c: Include nsterm.h if HAVE_NS.
6119
6120 * bidi.c (bidi_dump_cached_states): Fix fprintf warning.
6121
6122 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
6123
6124 * process.c: Remove HAVE_SOCKETS #ifdefs inside #ifdef
6125 subprocesses, only MSDOS does not define HAVE_SOCKETS.
6126 (socket_options): Use const char* for name.
6127
6128 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
6129
6130 Fix changes in 2010-08-05T23:15:24Z!dann@ics.uci.edu..2010-08-05T23:34:12Z!dann@ics.uci.edu for Windows build.
6131
6132 * xmenu.c [USE_X_TOOLKIT || USE_GTK]:
6133 Don't declare xmalloc_widget_value and digest_single_submenu.
6134
6135 * w32font.c (Qlatin): Remove declaration.
6136
6137 * menu.h (xmalloc_widget_value, digest_single_submenu): Declare.
6138
6139 * dired.c (compile_pattern): Restore declaration.
6140
6141 2010-08-05 Dan Nicolaescu <dann@ics.uci.edu>
6142
6143 Remove extern declarations in .c files, .h files have them.
6144 * data.c:
6145 * dired.c:
6146 * editfns.c:
6147 * filelock.c:
6148 * fns.c:
6149 * font.c:
6150 * fontset.c:
6151 * frame.c:
6152 * fringe.c:
6153 * ftfont.c:
6154 * gtkutil.c:
6155 * indent.c:
6156 * keyboard.c:
6157 * keymap.c:
6158 * lread.c:
6159 * menu.c:
6160 * print.c:
6161 * search.c:
6162 * sound.c:
6163 * window.c:
6164 * xdisp.c:
6165 * xfaces.c:
6166 * xfns.c:
6167 * xfont.c:
6168 * xftfont.c:
6169 * xmenu.c:
6170 * xterm.c: Remove declarations.
6171
6172 Cleanup syssignal.h.
6173 * syssignal.h (sighold, sigrelse, RETSIGTYPE): Remove, unused.
6174 (main_thread): Move down to remove #ifdef.
6175 (SIGMASKTYPE, SIGEMPTYMASK, SIGFULLMASK, sigmask, sigunblock):
6176 Remove conditional definition following unconditional ones.
6177
6178 * lisp.h: Remove HAVE_SHM code, unused.
6179 (QCmap, QCrehash_size, QCrehash_threshold, QCsize, QCtest)
6180 (QCweakness, Qabove_handle, Qbackquote, Qbar, Qbelow_handle)
6181 (Qborder, Qbottom, Qbox, Qcircular_list, Qcomma, Qcomma_at)
6182 (Qcomma_dot, Qcursor, Qdefault, Qdown, Qend_scroll, Qeq, Qeql)
6183 (Qequal, Qfile_exists_p, Qfont_param, Qfringe, Qfunction)
6184 (Qfunction_documentation, Qhandle, Qhbar, Qheader_line, Qhollow)
6185 (Qidentity, Qleft_margin, Qmenu, Qmenu_bar_update_hook)
6186 (Qmode_line_inactive, Qmouse, Qoverriding_local_map)
6187 (Qoverriding_terminal_local_map, Qratio, Qregion, Qright_margin)
6188 (Qscroll_bar, Qtool_bar, Qtop, Qup, Qvertical_border, Qwhen)
6189 (Qwindow_scroll_functions, Vafter_load_alist)
6190 (Vauto_save_list_file_name, Vface_alternative_font_family_alist)
6191 (Vface_alternative_font_registry_alist, Vface_font_rescale_alist)
6192 (Vface_ignored_fonts, Vinhibit_redisplay, Vminibuffer_list)
6193 (Vprint_length, Vprint_level, Vscalable_fonts_allowed)
6194 (Vshell_file_name, Vsystem_name, Vwindow_scroll_functions)
6195 (Vwindow_system_version, Vx_no_window_manager, initial_argc)
6196 (initial_argv, last_nonmenu_event, load_in_progress)
6197 (noninteractive_need_newline, scroll_margin): Add declarations.
6198
6199 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
6200 Remove declarations, menu.h has them.
6201 (QCbutton, QCtoggle, QCradio, QClabel, extra_keyboard_modifiers)
6202 (Vinput_method_function, Qinput_method_function)
6203 (Qevent_symbol_element_mask, last_event_timestamp):
6204 * dispextern.h (Voverflow_newline_into_fringe):
6205 * font.h (QCantialias, Qp, syms_of_ftfont, syms_of_xfns)
6206 (syms_of_ftxfont, syms_of_xftfont, syms_of_bdffont)
6207 (syms_of_w32font, syms_of_nsfont):
6208 * fontset.h (find_font_encoding, Qlatin):
6209 * frame.h (Qtooltip, Qrun_hook_with_args, Vmenu_bar_mode)
6210 (Vtool_bar_mode, set_frame_menubar):
6211 * ftfont.h (ftfont_font_format, ftfont_get_fc_charset):
6212 * xterm.h (Qx_gtk_map_stock):
6213 * keymap.h (meta_prefix_char): Add declarations.
6214
6215 * term.c: Remove dead code.
6216
6217 Fix emacs -Q -f server-start & emacsclient -t on GNU/Linux.
6218 * term.c (dissociate_if_controlling_tty): Use USG5 instead of
6219 USG. This is equivalent to defined (USG) && !defined (BSD_PGRPS),
6220 which is what was there before BSD_PGRPS was removed.
6221
6222 2010-08-05 Eli Zaretskii <eliz@gnu.org>
6223
6224 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
6225
6226 * unexcoff.c: Renamed from unexec.c.
6227
6228 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
6229
6230 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
6231
6232 2010-08-03 Johan Bockgård <bojohan@gnu.org>
6233
6234 * data.c (Flocal_variable_p): Handle variable aliases correctly.
6235 (Bug#6744)
6236
6237 2010-08-02 Jan Djärv <jan.h.d@swipnet.se>
6238
6239 * xterm.c (x_create_toolkit_scroll_bar): Only set XtNbeNiceToColormap
6240 to TRUE if depth of screen is < 16.
6241
6242 * gtkutil.c (hierarchy_ch_cb, qttip_cb): Do not define unless
6243 USE_GTK_TOOLTIP.
6244 (xg_prepare_tooltip): Return 0 unless USE_GTK_TOOLTIP.
6245 (xg_show_tooltip, xg_hide_tooltip): Do nothing unless USE_GTK_TOOLTIP.
6246 (xg_create_frame_widgets): Surround tooltip-related code with ifdef
6247 USE_GTK_TOOLTIP.
6248 (xg_free_frame_widgets): Don't delete ttip_* unless USE_GTK_TOOLTIP.
6249
6250 * xterm.h (USE_GTK_TOOLTIP): New define.
6251 (struct x_output): Put ttip_* inside ifdef USE_GTK_TOOLTIP.
6252
6253 * sysdep.c (child_setup_tty): Enable ICANON in lflags and set VEOF
6254 to Control-D (Bug#6771).
6255
6256 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
6257
6258 * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
6259 Wording by Drew Adams <drew.adams@oracle.com>.
6260
6261 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
6262
6263 * xterm.h (struct x_output): Add ttip_widget, ttip_window and
6264 ttip_lbl.
6265
6266 * xterm.c (x_clear_frame): Check FRAME_GTK_WIDGET (f) before
6267 calling gtk_widget_queue_draw.
6268 (x_free_frame_resources): Call xg_free_frame_widgets.
6269
6270 * xfns.c (x_gtk_use_system_tooltips): New variable.
6271 (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call
6272 new gtkutil tooltip functions to show the tooltip.
6273 (Fx_hide_tip): Call xg_hide_tooltip.
6274 (syms_of_xfns): Defvar x-gtk-use-system-tooltips.
6275
6276 * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip)
6277 (xg_show_tooltip, xg_hide_tooltip): Declare.
6278
6279 * gtkutil.c (hierarchy_ch_cb, qttip_cb, xg_prepare_tooltip)
6280 (xg_show_tooltip, xg_hide_tooltip, xg_free_frame_widgets):
6281 New functions.
6282 (xg_create_frame_widgets): Set ttip_* to 0. Set a dummy tooltip
6283 text so qttip_cb is called. Connect query-tooltip to qttip_cb.
6284 Remove code that is commented out.
6285
6286 2010-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
6287
6288 * keymap.c (Fdefine_key, Flookup_key): Say what event is invalid.
6289
6290 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
6291
6292 * xselect.c (x_own_selection): Use list4.
6293
6294 2010-07-30 Dan Nicolaescu <dann@ics.uci.edu>
6295
6296 * buffer.c (Qwindow): Do not define, already defined in data.c.
6297 (syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
6298
6299 2010-07-29 Chad Brown <yandros@mit.edu>
6300
6301 Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf.
6302 * dired.c, sysdep.c: Test HAVE_DIRENT_H instead of SYSV_SYSTEM_DIR.
6303 * config.in: Undef HAVE_DIRENT_H.
6304 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h,
6305 * s/msdos.h, s/usg5-4.h: Don't define SYSV_SYSTEM_DIR.
6306
6307 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6308
6309 Rename s/usg5-4.h -> s/usg5-4-common.h.
6310 * s/usg5-4.h: Rename file to ...
6311 * s/usg5-4-common.h: ... this for consistency with what we do for BSD.
6312 * s/unixware.h:
6313 * s/sol2-6.h:
6314 * s/irix6-5.h: Update includes accordingly.
6315
6316 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
6317
6318 * xfns.c (x_set_tool_bar_position): Remove debug fprintf.
6319
6320 * xterm.h (struct x_output): Add toolbar_top_height,
6321 toolbar_bottom_height, toolbar_left_width, toolbar_right_width.
6322 Remove toolbar_height.
6323 If USE_GTK: Add hbox_widget and toolbar_in_hbox.
6324 (FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
6325 (FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
6326 (FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
6327
6328 * xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
6329
6330 * xfns.c (x_set_tool_bar_position): New function.
6331 (xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
6332 (x_frame_parm_handlers): Add x_set_tool_bar_position.
6333 (syms_of_xfns): If USE_GTK, provide move-toolbar.
6334
6335 * window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
6336 and FRAME_TOOLBAR_LEFT_WIDTH.
6337
6338 * gtkutil.h (xg_change_toolbar_position): Declare.
6339
6340 * gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
6341 (xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
6342 (xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
6343 (xg_create_frame_widgets): Create a hobox for placing widgets
6344 vertically. Use gtk_box_pack_start.
6345 (xg_height_or_width_changed): Rename from xg_height_changed.
6346 (x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
6347 (xg_update_frame_menubar, free_frame_menubar): Change to
6348 xg_height_or_width_changed.
6349 (xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
6350 size correctly. Remove hardcoded 4, instead use handlebox size -
6351 toolbar size.
6352 (xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
6353 size correctly. Use handlebox size + toolbar size as additional size.
6354 (xg_pack_tool_bar): POS is a new parameter.
6355 Set orientation of tool bar based on pos.
6356 Only make handlebox_widget if NULL.
6357 Check if tool bar goes to vbox or hbox depending on pos.
6358 (xg_update_tool_bar_sizes): New function.
6359 (update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
6360 height, call xg_update_tool_bar_sizes instead.
6361 (free_frame_tool_bar): Remove from hbox or vbox depending on
6362 toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
6363 (xg_change_toolbar_position): New function.
6364
6365 * frame.h (struct frame): Add tool_bar_position.
6366 (Qbottom): Declare.
6367
6368 * frame.c (Qtool_bar_position): New variable.
6369 (make_frame): Set tool_bar_position to Qtop.
6370 (frame_parms): Add tool-bar-position.
6371 (x_report_frame_params): Store tool_bar_position.
6372 (x_set_fringe_width): Reset wm size hint after fringe changes.
6373
6374 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6375
6376 Make lisp_time_argument declaration work on all systems.
6377 * lisp.h (lisp_time_argument): Move declaration ...
6378 * systime.h (lisp_time_argument): ... here
6379 * editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
6380
6381 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
6382
6383 * vm-limit.c (POINTER): Add typedef for it.
6384 (start_of_data): Change return type from POINTER to char *.
6385
6386 * frame.h (Qtty_color_mode): Move declaration out of ifdef
6387 HAVE_WINDOW_SYSTEM.
6388
6389 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6390
6391 * vm-limit.c: Do not include sys/resource.h, mem-limits.h does it.
6392 Remove reference to __osf__, unused.
6393
6394 * mem-limits.h: Remove duplicated includes.
6395 (NULL): Remove definition, unused.
6396 (POINTER): Remove definition.
6397 (start_of_data): Use char* in prototype, as the function
6398 definition does.
6399
6400 Remove extern declarations from .c files, and them to .h files.
6401 * keyboard.h (Qhelp_echo, waiting_for_input)
6402 (input_available_clear_time, ignore_mouse_drag_p)
6403 (Vdouble_click_time, real_this_command, Vthis_original_command):
6404 * keymap.h (Qremap, Qmenu_item, Voverriding_local_map)
6405 (Voverriding_local_map_menu_flag):
6406 * lisp.h (Qinteractive_form, use_file_dialog)
6407 (Qcursor_in_echo_area, QCascent, QCmargin, QCrelief, Qcount)
6408 (Qextension_data, QCconversion, QCcolor_symbols, QCheuristic_mask)
6409 (QCindex, QCmatrix, QCcolor_adjustment, QCmask)
6410 (Qrisky_local_variable, map_char_table_for_charset, Vprint_level)
6411 (Qfunction, debug_on_next_call, Qfield)
6412 (Vinhibit_field_text_motion, Vuser_login_name, lisp_time_argument)
6413 (Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string)
6414 (Qfile_directory_p, Qinsert_file_contents)
6415 (Qcompletion_ignore_case, Qcompletion_ignore_case)
6416 (Vcompletion_regexp_list, Vhistory_length, completion_ignore_case)
6417 (history_delete_duplicates, minibuffer_auto_raise, Qonly)
6418 (Qfile_name_handler_alist, Qfront_sticky, Qrear_nonsticky)
6419 (Qminibuffer_prompt)
6420 (Vtemporary_file_directory,char_ins_del_vector, Qface):
6421 * xterm.h (gray_bitmap_width, gray_bitmap_height)
6422 (gray_bitmap_bits, xic_create_fontsetname):
6423 * coding.h (Vtranslation_table_for_input): Add extern declarations.
6424
6425 * xsmfns.c (Vuser_login_name):
6426 * xrdb.c (Vdouble_click_time):
6427 * xfaces.c (xic_create_fontsetname):
6428 * w32select.c (waiting_for_input):
6429 * print.c (minibuffer_auto_raise):
6430 * msdos.c (Qhelp_echo):
6431 * macros.c (real_this_command):
6432 * keymap.c (Voverriding_local_map):
6433 * xterm.c (poll_for_input_1, gray_bitmap_width)
6434 (gray_bitmap_height, gray_bitmap_bits;
6435 * xmenu.c ( Voverriding_local_map)
6436 (Voverriding_local_map_menu_flag; Qmenu_item; use_dialog_box)
6437 (use_file_dialog, Xt_app_con):
6438 * xdisp.c (minibuffer_auto_raise, Voverriding_local_map)
6439 (Voverriding_local_map_menu_flag, Qmenu_item, Qface, Qinvisible)
6440 (Qwidth, Qinvisible, Qwindow, Qpriority, Qtool_bar_lines)
6441 (Qtool_bar_lines, ignore_mouse_drag_p):
6442 * minibuf.c (Voverriding_local_map, Qfield, Qfront_sticky)
6443 (Qrear_nonsticky, nconc2):
6444 * keyboard.c (current_global_map, minibuf_level, Qmenu_item)
6445 (Vhistory_length, Vtranslation_table_for_input, Qcomposition)
6446 (Qdisplay, Qafter_string, Qbefore_string, Qundefined):
6447 * fileio.c (use_dialog_box, use_file_dialog, Vuser_login_name)
6448 (minibuf_level, minibuffer_auto_raise, lisp_time_argument):
6449 * eval.c (Qinteractive_form, Qrisky_local_variable, Qfunction)
6450 (gc_in_progress):
6451 * doc.c (Voverriding_local_map, Qremap):
6452 * dired.c (completion_ignore_case, Qcompletion_ignore_case)
6453 (Vcompletion_regexp_list):
6454 * coding.c (Qmac, Qinsert_file_contents, Qwrite_region)
6455 (Qcompletion_ignore_case):
6456 * callint.c (Qcursor_in_echo_area, Qfile_directory_p, Qonly)
6457 (Vhistory_length, Vthis_original_command, real_this_command)
6458 (Qface, Qminibuffer_prompt, history_delete_duplicates):
6459 * image.c (Qrisky_local_variable):
6460 * fontset.c (QCname):
6461 * fns.c (minibuffer_auto_raise, QCname):
6462 * dispnew.c (char_ins_del_cost):
6463 * composite.c (font_fill_lglyph_metrics):
6464 * cmds.c (Qface, Vtranslation_table_for_input):
6465 * charset.c (map_char_table_for_charset, Qfile_name_handler_alist):
6466 * ccl.c (charset_unicode):
6467 * callproc.c (Vtemporary_file_directory):
6468 * buffer.c (emacs_strerror): Remove extern declarations.
6469
6470 * data.c (Qwindow): Make non-static, used from other files too.
6471 * frame.c (validate_x_resource_name): Remove shadow definition for i.
6472
6473 * unexec.c (make_hdr): Remove references to NO_REMAP, COFF,
6474 SEGMENT_MASK, SECTION_ALIGNMENT, ADJUST_EXEC_HEADER.
6475 * s/usg5-4.h (COFF):
6476 * s/template.h:
6477 * s/msdos.h (COFF, NO_REMAP):
6478 * s/ms-w32.h (NO_REMAP):
6479 * s/hpux10-20.h (NO_REMAP):
6480 * m/sparc.h (SEGMENT_MASK):
6481 * m/m68k.h (NO_REMAP):
6482 * m/intel386.h (SEGMENT_MASK):
6483 * m/arm.h (NO_REMAP):
6484 * m/alpha.h (COFF):
6485 * m/template.h: Remove references to unused defines.
6486
6487 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
6488
6489 * xsettings.c (Ftool_bar_get_system_style): Also check for
6490 Qtext_image_horiz.
6491
6492 * xdisp.c (Qtext_image_horiz): Define.
6493 (syms_of_xdisp): Initialize Qtext_image_horiz. Add text-image-horiz
6494 to documentation of tool-bar-style.
6495
6496 * lisp.h (Qtext_image_horiz): Declare.
6497
6498 * gtkutil.c (xg_make_tool_item, xg_show_toolbar_item): Handle tool bar
6499 style text_image_horiz.
6500
6501 2010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
6502
6503 * emacs.c (Fkill_emacs): Remove return statement.
6504
6505 * term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
6506 (encode_terminal_code, produce_composite_glyph): Remove unused variables.
6507 (set_tty_color_mode, term_mouse_highlight, term_get_fkeys):
6508 Remove local extern declarations.
6509
6510 * xmenu.c: Do not included lwlib.h, not needed.
6511
6512 * m/iris4d.h (XUINT, XSET): Remove, not needed.
6513
6514 * process.c: Move definitions earlier to minimize #ifdefs.
6515
6516 * xterm.h (x_get_customization_string, x_load_resources)
6517 (x_get_resource, x_text_icon, x_text_icon, x_check_errors)
6518 (x_check_errors, x_property_data_to_lisp, defined_color)
6519 (xic_set_xfontset, x_defined_color): Use const.
6520
6521 * xterm.c (xlwmenu_window_p, xlwmenu_redisplay): Remove declarations.
6522 (x_text_icon, x_check_errors, x_connection_closed): Use const.
6523
6524 * xselect.c (selection_data_to_lisp_data)
6525 (x_property_data_to_lisp):
6526 * xrdb.c (x_get_string_resource, file_p)
6527 (x_get_customization_string, magic_file_p, search_magic_path)
6528 (get_system_app, get_user_app, x_load_resources, x_get_resource)
6529 (x_get_string_resource): Use const.
6530
6531 * xfns.c: Include xlwmenu.h when USE_LUCID.
6532 (x_defined_color, xic_set_xfontset): Use const.
6533 (Fx_hide_tip): Remove local extern declaration.
6534
6535 * xfaces.c (Qmouse_face): Remove declaration.
6536 (face_color_gray_p, tty_defined_color, defined_color)
6537 (face_color_gray_p, face_color_supported_p): Add const.
6538
6539 * xdisp.c (do_mouse_tracking): Remove declaration.
6540 (add_to_log): Use const.
6541
6542 * minibuf.c (Qmouse_face): Remove declaration.
6543
6544 * msdos.c (IT_note_mouse_highlight): Remove local extern declaration.
6545
6546 * keyboard.h (do_mouse_tracking): Add declaration.
6547
6548 * image.c (QCwidth, QCheight, QCforeground, QCbackground, QCfile)
6549 (QCdata, QCtype, Qcenter): Remove declarations.
6550
6551 * frame.c (x_get_resource_string, x_get_string_resource)
6552 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
6553 (x_default_parameter): Use const.
6554
6555 * font.c (Qnormal, QCtype, QCfamily, QCweight, QCslant, QCwidth)
6556 (QCheight, QCsize, QCname): Remove declarations.
6557
6558 * emacs.c (main): Remove local extern declaration.
6559
6560 * editfns.c (region_limit, syms_of_editfns): Remove local extern
6561 declarations.
6562
6563 * dispnew.c: Remove duplicate #include <unistd.h>.
6564 (update_window, update_frame_1, init_display): Remove local extern
6565 declarations.
6566
6567 * dispextern.h (add_to_log): Remove declaration.
6568 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
6569 (x_frame_get_and_record_arg, x_default_parameter): Add const.
6570
6571 * dired.c (scmp): Add const.
6572 (directory_files_internal): Remove local extern declaration.
6573
6574 * data.c (Finteractive_form): Use const.
6575
6576 * composite.c (syms_of_composite): Remove local extern declarations.
6577
6578 * charset.c (add_to_log): Remove declaration.
6579
6580 * character.c (strwidth, parse_str_to_multibyte): Add const.
6581
6582 * character.h (strwidth, parse_str_to_multibyte): Likewise.
6583
6584 * buffer.c (Fset_buffer_multibyte): Remove local extern declaration.
6585
6586 * lisp.h (Fkill_emacs): Mark as NO_RETURN.
6587 (Lisp_Subr): Make doc and intspec constant.
6588 (QCsize, Qspace, Qcenter, QCalign_to, QCdata, QCfile, QCtype)
6589 (Qlocal, Qapply, Qnormal, QCfamily, QCweight, QCslant, QCwidth)
6590 (QCheight, QCsize, QCname, QCwidth, QCforeground)
6591 (QCbackground, add_to_log, stack_base, Vmark_even_if_inactive)
6592 (display_arg): Add declarations.
6593
6594 2010-07-27 Christoph Scholtes <cschol2112@gmail.com>
6595
6596 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
6597
6598 * window.c (Fwindow_height): Doc fix (bug#6518).
6599
6600 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
6601
6602 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
6603
6604 2010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
6605
6606 * keyboard.c (Ftop_level, Fexit_recursive_edit)
6607 (Fabort_recursive_edit): Remove return statements in NO_RETURN
6608 functions.
6609
6610 * frame.h (Qtty_color_mode): Add declaration.
6611
6612 * lisp.h (Ftop_level, Fexit_recursive_edit)
6613 (Fabort_recursive_edit): Mark as NO_RETURN.
6614
6615 2010-07-26 Kenichi Handa <handa@m17n.org>
6616
6617 * font.c (Ffont_shape_gstring): Terminate GSTRING by nil if the
6618 number of glyphs gets smaller than the original length. (Bug#6621)
6619
6620 2010-07-26 Juanma Barranquero <lekktu@gmail.com>
6621
6622 * lread.c (unreadpure, mapatoms_1): Make static.
6623
6624 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
6625
6626 * terminfo.c (tparam): Fix prototype of tparm.
6627
6628 2010-07-25 Andreas Schwab <schwab@linux-m68k.org>
6629
6630 * emacs.c (main) [PROFILING]: Use __executable_start if defined to
6631 find start of text segment.
6632 * dispnew.c (safe_bcopy): Don't define if HAVE___EXECUTABLE_START
6633 is defined.
6634
6635 * callproc.c (set_initial_environment): Avoid unbalanced braces.
6636
6637 2010-07-25 Ken Brown <kbrown@cornell.edu>
6638
6639 * vm-limit.c (check_memory_limits): Fix previous change;
6640 accidentally reverted an earlier change.
6641
6642 2010-07-25 Ken Brown <kbrown@cornell.edu>
6643
6644 * mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
6645 * vm-limit.c: ...add 'defined (CYGWIN)' here (Bug#6715).
6646
6647 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
6648
6649 * callproc.c (relocate_fd): Set inside #ifndef WINDOWSNT.
6650 * dired.c (opendir, readdir): Fix prototypes.
6651 * editfns.c (w32_get_internal_run_time): Fix prototypes.
6652 * keyboard.c (input_available_signal): Declare inside #ifdef SIGIO.
6653 * ndir.h (opendir, readdir, seekdir, closedir): Fix prototypes.
6654 (telldir): Remove declaration.
6655 * ralloc.c (real_morecore, __morecore): Fix prototypes.
6656 * sound.c (alsa_sound_perror): Declare inside #ifdef HAVE_ALSA.
6657 * syssignal.h (strsignal): Fix prototype.
6658 * term.c (tparam): Fix prototype.
6659 (term_get_fkeys_address, term_get_fkeys_kboard, term_get_fkeys_1)
6660 (term_get_fkeys): Set inside "#ifndef DOS_NT".
6661 * vm-limit.c (check_memory_limits): Fix prototypes of real_morecore
6662 and __morecore.
6663 * w32gui.h (XParseGeometry): Fix prototype.
6664 * w32heap.h (get_data_start, get_data_end, init_heap): Fix prototypes.
6665 * w32term.c (my_set_focus): Declare inside #if 0.
6666 * w32term.h (x_window_to_frame, x_display_info_for_name, w32_term_init)
6667 (w32_fill_rect, w32_clear_window, init_crit, delete_crit, signal_quit)
6668 (drain_message_queue, get_next_msg, post_msg, parse_button)
6669 (ClipboardSequence_Proc): Fix prototypes.
6670 (wait_for_sync): Remove declaration.
6671
6672 2010-07-24 Juanma Barranquero <lekktu@gmail.com>
6673
6674 * w32fns.c (w32_to_x_color): Remove, unused.
6675
6676 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
6677
6678 * lisp.h: Remove leftover P_.
6679
6680 2010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
6681
6682 * ecrt0.c, unexalpha.c: Remove files, unused.
6683
6684 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
6685
6686 * cmds.c (internal_self_insert): Make static.
6687 * lisp.h (internal_self_insert): Remove declaration.
6688
6689 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
6690
6691 * alloc.c (free_float):
6692 * font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse):
6693 * frame.c (delete_frame_handler):
6694 * ralloc.c (reorder_bloc):
6695 * w32menu.c (menubar_id_to_frame, add_left_right_boundary):
6696 Remove unused static functions.
6697
6698 * menu.c (cleanup_popup_menu): Set inside "#ifdef HAVE_NS";
6699 it is called only from NS code.
6700
6701 * w32term.c (my_set_focus): #ifdef away; it is called only from
6702 "#ifdef 0" code.
6703
6704 * w32fns.c (x_edge_detection):
6705 * xfaces.c (may_use_scalable_font_p):
6706 Remove obsolete static declarations.
6707
6708 2010-07-20 Juanma Barranquero <lekktu@gmail.com>
6709
6710 * alloc.c (emacs_blocked_free, emacs_blocked_malloc)
6711 (emacs_blocked_realloc, uninterrupt_malloc):
6712 * fringe.c (w32_reset_fringes):
6713 * image.c (convert_mono_to_color_image, lookup_rgb_color)
6714 (init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
6715 * sound.c (be2hs, do_play_sound):
6716 * vm-limit.c (get_lim_data, ret_lim_data):
6717 * w32term.c (x_free_frame_resources):
6718 * xfaces.c (x_create_gc, x_free_gc):
6719 Convert definitions to standard C.
6720
6721 2010-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
6722
6723 * eval.c (Feval, Ffuncall): Use the new names.
6724
6725 * lisp.h (struct Lisp_Subr): Rename `am' to aMANY and add aUNEVALLED.
6726 (DEFUN): Add braces around the union initialisation and use ## to
6727 specify the right union alternative and avoid a cast.
6728
6729 2010-07-18 Juanma Barranquero <lekktu@gmail.com>
6730
6731 * makefile.w32-in ($(BLD)/keyboard.$(O)): Update dependencies.
6732
6733 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
6734
6735 * frame.c (make_initial_frame): Use set_menu_bar_lines (Bug#6660).
6736
6737 2010-07-17 Jan Djärv <jan.h.d@swipnet.se>
6738
6739 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
6740 is related to the menu bar (Bug#6499).
6741 (xg_frame_resized): GTK_IS_MAPPED => gtk_widget_get_mapped, for Gtk 3.0.
6742
6743 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
6744
6745 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
6746
6747 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
6748
6749 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
6750 i.e. don't put back ButtonRelease (Bug#6608).
6751
6752 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
6753 instead of Window. Call xg_event_is_for_menubar when
6754 USE_GTK (Bug#6499).
6755
6756 * gtkutil.h (xg_event_is_for_menubar): Declare.
6757
6758 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
6759
6760 2010-07-16 Eli Zaretskii <eliz@gnu.org>
6761
6762 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
6763 when it's the same as the old foreground. (Bug#6609)
6764
6765 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
6766
6767 * xmenu.c (free_frame_menubar): Only call x_set_window_size if
6768 widget is non-null (Bug#6645).
6769
6770 2010-07-15 Andreas Schwab <schwab@linux-m68k.org>
6771
6772 * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font):
6773 Convert old-style definition.
6774
6775 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
6776 timestamp argument.
6777
6778 2010-07-15 Eli Zaretskii <eliz@gnu.org>
6779
6780 * fringe.c (update_window_fringes): Restore mistakenly reverted
6781 code from 2010-04-17T12:33:05Z!eliz@gnu.org merged in 2010-04-20T13:31:28Z!eliz@gnu.org.
6782
6783 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
6784
6785 * xterm.c (xm_scroll_callback, x_process_timeouts): K&R => prototype.
6786 (SET_SAVED_KEY_EVENT): Remove (not used).
6787 (SET_SAVED_MENU_EVENT): Rename to SET_SAVED_BUTTON_EVENT and
6788 remove size parameter.
6789 (handle_one_xevent): Check popup_activated () for menu for Xt also.
6790 Remove #ifdef USE_GTK around finish = X_EVENT_DROP.
6791 Remove #ifdef USE_MOTIF code that did SET_SAVED_BUTTON_EVENT for
6792 ButtonRelease.
6793 (x_set_window_size_1): scroll_bar_actual_width is always
6794 SCROLL_BAR_COLS * COLUMN_WIDTH for the purpose of frame sizing.
6795
6796 * xdisp.c (pending_menu_activation): Remove extern declaration.
6797 (prepare_menu_bars): Remove setting of pending_menu_activation.
6798
6799 * xmenu.c (pending_menu_activation): Remove.
6800 (x_activate_menubar): Set popup_activated_flag for Xt also.
6801 Remove setting of pending_menu_activation.
6802 (set_frame_menubar): Remove check of pending_menu_activation.
6803 Declare menubar_size before code. Correct spelling in comment.
6804
6805 2010-07-14 Kenichi Handa <handa@m17n.org>
6806
6807 * font.c (font_open_entity): Cancel previous change.
6808 (Ffont_get): Don't check FONT_ENTITY_INDEX of a font-object.
6809
6810 2010-07-13 Eli Zaretskii <eliz@gnu.org>
6811
6812 Remove subprocesses #ifdefs.
6813 * process.c <inhibit_sentinels>: Move to the common part.
6814 (Fwaiting_for_user_input_p): Move to the common part; return nil
6815 if async subprocesses aren't supported.
6816 * sysdep.c (wait_for_termination) [!MSDOS]: Don't compile on
6817 MS-DOS. Remove "#ifdef subprocesses".
6818 (sys_subshell, sys_select): Remove "#ifdef subprocesses".
6819 (gettimeofday): Remove "#ifdef subprocesses".
6820 (wait_without_blocking): Remove function.
6821 (flush_pending_output, child_setup_tty): Don't compile on MS-DOS.
6822 Remove "#ifdef subprocesses".
6823 (child_setup_tty): Use WINDOWSNT instead of DOS_NT, since not
6824 compiled on MS-DOS.
6825 * callproc.c (Fcall_process) [!MSDOS]: Don't call
6826 wait_for_termination on MS-DOS.
6827 * emacs.c (shut_down_emacs): Remove "#ifndef subprocesses" from
6828 initialization of inhibit_sentinels.
6829 * keyboard.c (record_asynch_buffer_change): Remove "#ifdef
6830 subprocesses" conditional.
6831 * callproc.c (Fcall_process) [!subprocesses]: Don't call
6832 wait_for_termination, since `buffer' cannot be an integer when
6833 async subprocesses are not supported
6834 * xdisp.c (decode_mode_spec): Use `MSDOS' instead of `subprocesses'
6835 for ifdefing away the call to Fprocess_status.
6836
6837 * process.c (add_keyboard_wait_descriptor) [!subprocesses]: Ifdef
6838 away the entire body of the function.
6839
6840 2010-07-13 Dan Nicolaescu <dann@ics.uci.edu>
6841
6842 Remove subprocesses #ifdefs from term.c.
6843 * process.c (add_keyboard_wait_descriptor)
6844 (delete_keyboard_wait_descriptor): Move to common section, do
6845 nothing when subprocesses is not defined.
6846 * term.c (Fsuspend_tty, Fresume_tty, init_tty):
6847 Remove subprocesses #ifdefs.
6848
6849 Convert maybe_fatal to standard C.
6850 * lisp.h (verror): Declare.
6851 * eval.c (verror): New function containing the code from ...
6852 (error): ... this. Call verror.
6853 * term.c (vfatal): New function containing the code from ...
6854 (fatal): ... this. Call vfatal.
6855 (maybe_fatal): Convert to standard C, use variable number of
6856 arguments. Declare as non-return.
6857 (init_tty): Fix maybe_fatal call.
6858
6859 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6860
6861 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose)
6862 (_scroll_bar_note_movement): Convert definitions to standard C.
6863 * xmenu.c (menu_help_callback, pop_down_menu, xmenu_show):
6864 * xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
6865
6866 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6867
6868 * xterm.c (x_frame_of_widget, x_alloc_nearest_color_for_widget)
6869 (x_alloc_lighter_color_for_widget, cvt_string_to_pixel)
6870 (cvt_pixel_dtor, x_window_to_menu_bar, xt_action_hook)
6871 (xaw_jump_callback, xaw_scroll_callback)
6872 (x_create_toolkit_scroll_bar, x_set_toolkit_scroll_bar_thumb)
6873 (x_wm_set_size_hint, x_activate_timeout_atimer):
6874 Convert definitions to standard C.
6875 * xmenu.c (menubar_id_to_frame, popup_get_selection)
6876 (popup_activate_callback, popup_deactivate_callback)
6877 (menu_highlight_callback, menubar_selection_callback)
6878 (apply_systemfont_to_dialog, apply_systemfont_to_menu)
6879 (free_frame_menubar, popup_selection_callback, as)
6880 (create_and_show_popup_menu, dialog_selection_callback)
6881 (create_and_show_dialog):
6882 * xfns.c (hack_wm_protocols, x_window):
6883 * xfaces.c (x_update_menu_appearance):
6884 * widget.c (get_default_char_pixel_size, pixel_to_char_size)
6885 (char_to_pixel_size, round_size_to_char, get_wm_shell)
6886 (set_frame_size, update_wm_hints, setup_frame_gcs)
6887 (update_various_frame_slots, update_from_various_frame_slots)
6888 (EmacsFrameInitialize, EmacsFrameRealize, EmacsFrameResize)
6889 (EmacsFrameSetValues, EmacsFrameQueryGeometry)
6890 (EmacsFrameSetCharSize, widget_store_internal_border): Likewise.
6891
6892 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6893
6894 * dbusbind.c (xd_initialize): Don't compare boolean with a constant.
6895
6896 2010-07-12 Eli Zaretskii <eliz@gnu.org>
6897
6898 * process.c (setup_process_coding_systems): Move to the part
6899 shared by non-subprocesses systems, and make its body empty when
6900 subprocesses is not defined.
6901 (close_process_descs): Move to the part shared by non-subprocesses
6902 systems.
6903 (wait_reading_process_output) [!subprocesses]: Convert arg list to
6904 ANSI C.
6905
6906 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6907
6908 * editfns.c (transpose_markers): Convert old-style definition.
6909 * emacs.c (abort, shut_down_emacs, fixup_locale)
6910 (synchronize_system_time_locale)
6911 (synchronize_system_messages_locale, syms_of_emacs): Likewise.
6912 * floatfns.c (extract_float, matherr, init_floatfns)
6913 (syms_of_floatfns): Likewise.
6914 * fns.c (make_hash_table): Likewise.
6915 * ftfont.c (ftfont_get_otf, ftfont_otf_features)
6916 (ftfont_otf_capability, ftfont_get_glyph_id, ftfont_get_metrics)
6917 (ftfont_drive_otf, ftfont_shape_by_flt, ftfont_shape)
6918 (ftfont_variation_glyphs): Likewise.
6919 * gtkutil.c (xg_create_widget, xg_modify_menubar_widgets): Likewise.
6920 * keymap.c (describe_map_tree, describe_map, describe_vector): Likewise.
6921 * lread.c (read_filtered_event): Likewise.
6922 * minibuf.c (read_minibuf_noninteractive, read_minibuf): Likewise.
6923 * process.c (wait_reading_process_output): Likewise.
6924 * scroll.c (do_line_insertion_deletion_costs): Likewise.
6925 * search.c (search_buffer, boyer_moore): Likewise.
6926 * syntax.c (scan_sexps_forward): Likewise.
6927 * xdisp.c (try_scrolling): Likewise.
6928 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
6929 (face_at_string_position): Likewise.
6930 * xfns.c (x_default_scroll_bar_color_parameter): Likewise.
6931 * xselect.c (x_get_window_property, receive_incremental_selection)
6932 (x_get_window_property_as_lisp_data, lisp_data_to_selection_data):
6933 Likewise.
6934 * xterm.c (x_draw_relief_rect, x_draw_box_rect): Likewise.
6935
6936 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6937
6938 * callproc.c (child_setup): Remove subprocesses conditional.
6939 Remove code dealing with SET_EMACS_PRIORITY, unused.
6940
6941 * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
6942 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
6943
6944 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
6945 (__do_global_dtors, __main): Use void in definition.
6946 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
6947 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
6948 the only users from ...
6949 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
6950 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
6951 (HAVE_VOLATILE): Remove, unused.
6952
6953 Convert more function definitions to standard C.
6954 * xdisp.c (window_box_edges, handle_single_display_spec)
6955 (display_string): Convert definition to standard C.
6956 * scroll.c (do_direct_scrolling, scrolling_1):
6957 * dispnew.c (allocate_matrices_for_frame_redisplay)
6958 (mirrored_line_dance):
6959 * coding.c (code_convert_string):
6960 * charset.c (map_charset_chars):
6961 * ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
6962 (Fregister_ccl_program, Fregister_code_conversion_map):
6963 * keyboard.c (kbd_buffer_nr_stored): Likewise.
6964 (head_table): Make static and const.
6965
6966 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6967
6968 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
6969 (PROFILING_LDFLAGS): Set from substitution.
6970 (ALL_CFLAGS): Add C_WARNINGS_SWITCH and PROFILING_CFLAGS, put
6971 CFLAGS last.
6972
6973 2010-07-12 Kenichi Handa <handa@m17n.org>
6974
6975 * Makefile.in (lisp): Change hebrew.el to hebrew.elc.
6976 (shortlisp): Likewise.
6977
6978 * font.h (enum font_property_index): New member FONT_ENTITY_INDEX.
6979
6980 * font.c (font_open_entity): Record ENTITY in FONT_OBJECT's slot
6981 of FONT_ENTITY_INDEX.
6982 (Ffont_get): If KEY is :otf and the font-object doesn't have the
6983 property, get the property value dynamically.
6984 (Ffont_put): Accept font-entity and font-object too.
6985 (Ffont_get_glyhphs): Rename from Fget_font_glyphs. Arguments and
6986 return value changed.
6987 (syms_of_font): Adjust for the above change.
6988
6989 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
6990
6991 * blockinput.h: Remove obsolete comment.
6992
6993 * lisp.h: Include <stddef.h>.
6994 (OFFSETOF): Don't define.
6995 (VECSIZE): Use offsetof instead of OFFSETOF.
6996 (PSEUDOVECSIZE): Likewise.
6997 * process.c (conv_sockaddr_to_lisp): Likewise.
6998 * alloc.c: Don't include <stddef.h>.
6999 * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof.
7000
7001 * process.c: Remove obsolete comment.
7002
7003 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
7004
7005 * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
7006
7007 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
7008
7009 * callint.c (Fcall_interactively): Use strchr, strrchr instead of
7010 index, rindex.
7011 * doc.c (get_doc_string, Fsnarf_documentation): Likewise.
7012 * editfns.c (Fuser_full_name, Fformat): Likewise.
7013 * emacs.c (argmatch, sort_args, decode_env_path): Likewise.
7014 * fileio.c (Ffile_symlink_p): Likewise.
7015 * filelock.c (current_lock_owner): Likewise.
7016 * font.c (font_parse_name, font_parse_family_registry): Likewise.
7017 * fontset.c (fontset_pattern_regexp): Likewise.
7018 * lread.c (read1): Likewise.
7019 * sysdep.c (init_system_name): Likewise.
7020 * xfns.c (select_visual): Likewise.
7021 * s/hpux10-20.h (index, rindex): Don't define.
7022 * s/ms-w32.h (index): Likewise.
7023 * s/usg5-4.h: Likewise.
7024
7025 * callproc.c (relocate_fd): Use F_DUPFD if defined.
7026
7027 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
7028 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
7029 (egetenv): Likewise.
7030 * doprnt.c (doprnt): Likewise.
7031 * editfns.c (set_time_zone_rule, format2): Likewise.
7032 * emacs.c (decode_env_path): Likewise.
7033 * eval.c (signal_error, error): Likewise.
7034 * insdel.c (replace_range_2): Likewise.
7035 * keyboard.c (cmd_error_internal): Likewise.
7036 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
7037 * print.c (write_string, write_string_1, print_error_message):
7038 Likewise.
7039 * vm-limit.c (warn_function, memory_warnings): Likewise.
7040 * xdisp.c (message1, message1_nolog, message_with_string)
7041 (vmessage, message, message_nolog): Likewise.
7042 * emacs.c: Remove duplicate declaration.
7043 * keyboard.h: Likewise.
7044 * lisp.h: Update prototypes.
7045
7046 * eval.c: Fix indentation problem.
7047
7048 * keyboard.c: Include "process.h".
7049
7050 * eval.c: Remove obsolete noinline declaration.
7051 * fns.c: Likewise.
7052
7053 2010-07-11 Ken Raeburn <raeburn@raeburn.org>
7054
7055 * doprnt.c (doprnt): Take a va_list argument instead of count and
7056 pointer.
7057 * eval.c (error): Change to a standard-C variadic function.
7058 * xdisp.c (vmessage): Rename from message, made static, and
7059 changed to take a va_list argument.
7060 (message): New variadic wrapper.
7061 (message_nolog): Now a variadic function, calling vmessage.
7062 * lisp.h: Include stdarg.h for va_list.
7063 (doprnt, error, message, message_nolog): Decls updated.
7064
7065 2010-07-11 Eli Zaretskii <eliz@gnu.org>
7066
7067 * process.c (syms_of_process) <delete-exited-processes>: Define
7068 even if !subprocesses.
7069 (delete_exited_processes): Ditto.
7070
7071 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
7072 (delete_exited_processes): Don't define.
7073
7074 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
7075
7076 * frame.c (make_frame): Initialize menu_bar_lines and
7077 tool_bar_lines members.
7078 (make_initial_frame, make_terminal_frame):
7079 Initialize menu_bar_lines using value of menu-bar-mode.
7080
7081 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
7082
7083 2010-07-10 Eli Zaretskii <eliz@gnu.org>
7084
7085 * process.c: Reshuffle #include's. Condition some of the global
7086 and static variables on `subprocesses'.
7087 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
7088 Leave only one implementation.
7089 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
7090 (kill_buffer_processes, Flist_system_processes)
7091 (Fprocess_attributes, init_process, syms_of_process): Unify the
7092 implementations for with subprocesses and without them.
7093
7094 2010-07-09 Jan Djärv <jan.h.d@swipnet.se>
7095
7096 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
7097 correct size for Motif.
7098 (free_frame_menubar): Call x_set_window_size to update frame size.
7099
7100 * xfns.c (x_window): Set borderWidth to 0 for pane and
7101 EmacsFrame. Frame size calculation is wrong otherwise.
7102
7103 2010-07-09 Michael Albinus <michael.albinus@gmx.de>
7104
7105 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
7106 allows to suppress errors when polling in Emacs' main loop.
7107 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
7108 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
7109 (Fdbus_method_error_internal, Fdbus_send_signal)
7110 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
7111 (Fdbus_register_method): Use it. (Bug#6579)
7112
7113 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
7114
7115 * alloc.c: Convert DEFUNs to standard C.
7116 * buffer.c:
7117 * bytecode.c:
7118 * callint.c:
7119 * callproc.c:
7120 * casefiddle.c:
7121 * casetab.c:
7122 * category.c:
7123 * character.c:
7124 * charset.c:
7125 * chartab.c:
7126 * cmds.c:
7127 * coding.c:
7128 * composite.c:
7129 * data.c:
7130 * dbusbind.c:
7131 * dired.c:
7132 * dispnew.c:
7133 * doc.c:
7134 * dosfns.c:
7135 * editfns.c:
7136 * emacs.c:
7137 * eval.c:
7138 * fileio.c:
7139 * filelock.c:
7140 * floatfns.c:
7141 * fns.c:
7142 * font.c:
7143 * fontset.c:
7144 * frame.c:
7145 * fringe.c:
7146 * image.c:
7147 * indent.c:
7148 * insdel.c:
7149 * keyboard.c:
7150 * keymap.c:
7151 * lread.c:
7152 * macros.c:
7153 * marker.c:
7154 * menu.c:
7155 * minibuf.c:
7156 * msdos.c:
7157 * nsfns.m:
7158 * nsmenu.m:
7159 * nsselect.m:
7160 * print.c:
7161 * process.c:
7162 * search.c:
7163 * sound.c:
7164 * syntax.c:
7165 * term.c:
7166 * terminal.c:
7167 * textprop.c:
7168 * undo.c:
7169 * w16select.c:
7170 * w32console.c:
7171 * w32fns.c:
7172 * w32font.c:
7173 * w32menu.c:
7174 * w32proc.c:
7175 * w32select.c:
7176 * window.c:
7177 * xdisp.c:
7178 * xfaces.c:
7179 * xfns.c:
7180 * xmenu.c:
7181 * xselect.c:
7182 * xsettings.c:
7183 * xsmfns.c: Likewise.
7184
7185 2010-07-08 Eli Zaretskii <eliz@gnu.org>
7186
7187 * process.c (kbd_is_on_hold, hold_keyboard_input)
7188 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
7189
7190 2010-07-08 Jan Djärv <jan.h.d@swipnet.se>
7191
7192 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
7193 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
7194 unless USE_LUCID.
7195
7196 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
7197
7198 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative
7199 declaration.
7200
7201 Clean up include guards.
7202 * tparam.c: Remove include guards for config.h, string.h and code
7203 that assumes #ifndef emacs.
7204 * termcap.c:
7205 * unexalpha.c:
7206 * sysdep.c:
7207 * filemode.c:
7208 * filelock.c:
7209 * bidi.c: Likewise.
7210
7211 Remove prefix-args.c
7212 * prefix-args.c: Remove file.
7213 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
7214 * Makefile.in (temacs${EXEEXT}): Remove references to
7215 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
7216 (mostlyclean): Remove reference to prefix-args.
7217 (prefix-args): Remove.
7218
7219 Simplify cstart_of_data, start_of_code and related code.
7220 * mem-limits.h: Remove !emacs and _LIBC conditional code.
7221 (start_of_data): Merge into start_of_data function.
7222 * sysdep.c (start_of_text): Remove. Move simplified versions of
7223 it in the only users: unexaix.c and unexec.c.
7224 (read_input_waiting): Remove local declaration of quit_char.
7225 (start, etext): Remove declarations.
7226 (start_of_data): Merge with the version in mem-limits.h and move
7227 to vm-limits.c.
7228 * vm-limit.c (start_of_data): Merged and simplified version of the
7229 code formerly in mem-limits.h and sysdep.c.
7230 * unexec.c (start): New declaration, moved from sysdep.c.
7231 (start_of_text): Simplified version of the code formerly in sysdep.c.
7232 * unexaix.c (start_of_text): Simplified version of the code
7233 formerly in sysdep.c.
7234 * m/alpha.h (HAVE_TEXT_START): Remove.
7235 (TEXT_START): Move ...
7236 * unexalpha.c (TEXT_START): ... here.
7237 * s/hpux10-20.h (TEXT_START): Remove.
7238 * s/darwin.h (TEXT_START):
7239 * m/mips.h (TEXT_START):
7240 * m/macppc.h (HAVE_TEXT_START):
7241 * m/m68k.h (TEXT_START):
7242 * m/iris4d.h (TEXT_START):
7243 * m/intel386.h (TEXT_START):
7244 * m/ibmrs6000.h (TEXT_START):
7245 * m/ia64.h (HAVE_TEXT_START):
7246 * s/msdos.h (TEXT_START): Likewise.
7247
7248 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
7249
7250 * alloc.c (overrun_check_malloc, overrun_check_realloc)
7251 (overrun_check_free, xstrdup, allocate_string)
7252 (allocate_string_data, compact_small_strings, Fmake_string)
7253 (make_unibyte_string, make_multibyte_string)
7254 (make_string_from_bytes, make_specified_string, make_float)
7255 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
7256 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
7257 memcpy, memmove, memset, memcmp.
7258 * atimer.c (start_atimer, set_alarm): Likewise.
7259 * buffer.c (clone_per_buffer_values, report_overlay_modification)
7260 (mmap_realloc, init_buffer_once): Likewise.
7261 * callint.c (Fcall_interactively): Likewise.
7262 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
7263 (getenv_internal_1): Likewise.
7264 * casefiddle.c (casify_object): Likewise.
7265 * ccl.c (ccl_driver): Likewise.
7266 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
7267 * charset.c (load_charset_map_from_file)
7268 (load_charset_map_from_file, load_charset_map_from_vector)
7269 (Fdefine_charset_internal): Likewise.
7270 * cm.c (Wcm_clear): Likewise.
7271 * coding.c (decode_eol, decode_coding_object)
7272 (Fset_coding_system_priority, make_subsidiaries): Likewise.
7273 * data.c (Faset): Likewise.
7274 * dired.c (directory_files_internal, file_name_completion_stat):
7275 Likewise.
7276 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
7277 (clear_glyph_row, copy_row_except_pointers)
7278 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
7279 (save_current_matrix, restore_current_matrix)
7280 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
7281 (mirror_line_dance, scrolling_window): Likewise.
7282 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
7283 Likewise.
7284 * doprnt.c (doprnt): Likewise.
7285 * editfns.c (Fuser_full_name, make_buffer_string_both)
7286 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
7287 * emacs.c (sort_args): Likewise.
7288 * eval.c (Fapply, Ffuncall): Likewise.
7289 * fileio.c (Ffile_name_directory, make_temp_name)
7290 (Fexpand_file_name, search_embedded_absfilename)
7291 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
7292 (auto_save_error): Likewise.
7293 * fns.c (Fstring_equal, Fcopy_sequence, concat)
7294 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
7295 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
7296 (Fmake_hash_table): Likewise.
7297 * fringe.c (Fdefine_fringe_bitmap): Likewise.
7298 * ftfont.c (ftfont_text_extents): Likewise.
7299 * getloadavg.c (getloadavg): Likewise.
7300 * image.c (define_image_type, make_image, make_image_cache)
7301 (x_create_x_image_and_pixmap, xbm_image_p)
7302 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
7303 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
7304 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
7305 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
7306 (tiff_image_p, tiff_read_from_memory, gif_image_p)
7307 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
7308 Likewise.
7309 * indent.c (scan_for_column, compute_motion): Likewise.
7310 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
7311 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
7312 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
7313 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
7314 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
7315 (store_user_signal_events, menu_bar_items, tool_bar_items)
7316 (process_tool_bar_item, append_tool_bar_item)
7317 (read_char_minibuf_menu_prompt, read_key_sequence)
7318 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
7319 Likewise.
7320 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
7321 Likewise.
7322 * lisp.h (STRING_COPYIN): Likewise.
7323 * lread.c (Fload, read1, oblookup): Likewise.
7324 * msdos.c (Frecent_doskeys): Likewise.
7325 * nsfns.m (Fx_create_frame): Likewise.
7326 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
7327 Likewise.
7328 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
7329 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
7330 Likewise.
7331 * nsmenu.m (ns_update_menubar): Likewise.
7332 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
7333 * print.c (print_unwind, printchar, strout, print_string)
7334 (print_error_message): Likewise.
7335 * process.c (conv_lisp_to_sockaddr, set_socket_option)
7336 (Fmake_network_process, Fnetwork_interface_list)
7337 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
7338 (init_process): Likewise.
7339 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
7340 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
7341 Likewise.
7342 * scroll.c (do_scrolling, do_direct_scrolling)
7343 (scrolling_max_lines_saved): Likewise.
7344 * search.c (search_buffer, wordify, Freplace_match): Likewise.
7345 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
7346 * syntax.c (skip_chars, skip_syntaxes): Likewise.
7347 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
7348 (emacs_set_tty): Likewise.
7349 * term.c (encode_terminal_code, calculate_costs)
7350 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
7351 Likewise.
7352 * termcap.c (tgetst1, gobble_line): Likewise.
7353 * termhooks.h (EVENT_INIT): Likewise.
7354 * tparam.c (tparam1): Likewise.
7355 * unexalpha.c (unexec): Likewise.
7356 * unexec.c (write_segment): Likewise.
7357 * unexmacosx.c (unexec_write_zero): Likewise.
7358 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
7359 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
7360 * w32font.c (w32font_list_family, w32font_text_extents)
7361 (w32font_list_internal, w32font_match_internal)
7362 (w32font_open_internal, compute_metrics, Fx_select_font):
7363 Likewise.
7364 * w32menu.c (set_frame_menubar, add_menu_item)
7365 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
7366 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
7367 * w32uniscribe.c (uniscribe_list_family): Likewise.
7368 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
7369 * window.c (make_window, replace_window, set_window_buffer)
7370 (Fsplit_window): Likewise.
7371 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
7372 (add_to_log, message3, x_consider_frame_title)
7373 (append_space_for_newline, extend_face_to_end_of_line)
7374 (decode_mode_spec_coding, init_glyph_string): Likewise.
7375 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
7376 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
7377 (face_attr_equal_p, make_realized_face, make_face_cache)
7378 (free_realized_faces, lookup_named_face, smaller_face)
7379 (face_with_height, lookup_derived_face)
7380 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
7381 (Finternal_set_font_selection_order, realize_default_face)
7382 (compute_char_face, face_at_buffer_position)
7383 (face_for_overlay_string, face_at_string_position, merge_faces):
7384 Likewise.
7385 * xfns.c (xic_create_fontsetname, Fx_create_frame)
7386 (Fx_window_property, x_create_tip_frame)
7387 (Fx_backspace_delete_keys_p): Likewise.
7388 * xfont.c (xfont_list, xfont_match, xfont_list_family)
7389 (xfont_text_extents): Likewise.
7390 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
7391 * xrdb.c (magic_file_p, x_get_resource): Likewise.
7392 * xselect.c (x_queue_event, x_get_window_property)
7393 (receive_incremental_selection): Likewise.
7394 * xsmfns.c (x_session_check_input): Likewise.
7395 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
7396 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
7397 Likewise.
7398 * character.h (BCOPY_SHORT): Removed.
7399 * config.in: Regenerate.
7400 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
7401 * emacs.c (main) [PROFILING]: Don't declare
7402 dump_opcode_frequencies.
7403 * lisp.h (safe_bcopy): Remove declaration.
7404 (memset) [!HAVE_MEMSET]: Declare.
7405 (memcpy) [!HAVE_MEMCPY]: Likewise.
7406 (memmove) [!HAVE_MEMMOVE]: Likewise.
7407 (memcmp) [!HAVE_MEMCMP]: Likewise.
7408 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
7409 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
7410 Don't define.
7411 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
7412 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
7413 (BCOPY_DOWNWARD_SAFE): Don't define.
7414 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
7415 (memcpy) [!HAVE_MEMCPY]: Define.
7416 (memmove) [!HAVE_MEMMOVE]: Define.
7417 (memcmp) [!HAVE_MEMCMP]: Define.
7418
7419 2010-07-07 Jan Djärv <jan.h.d@swipnet.se>
7420
7421 * process.c (kbd_is_on_hold): New variable.
7422 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
7423 New functions.
7424 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
7425 select on empty input mask.
7426 (init_process): Initialize kbd_is_on_hold to 0.
7427
7428 * process.h (hold_keyboard_input, unhold_keyboard_input)
7429 (kbd_on_hold_p): Declare.
7430
7431 * keyboard.c (input_available_signal): Declare.
7432 (kbd_buffer_nr_stored): New function.
7433 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
7434 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
7435 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
7436 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
7437 (tty_read_avail_input): If input is on hold, return.
7438 Don't read more that free slots in kbd_buffer (Bug#6571).
7439
7440 2010-07-07 Eli Zaretskii <eliz@gnu.org>
7441
7442 * msdos.h:
7443 * msdos.c:
7444 * dosfns.c:
7445 * w16select.c: Convert function definitions to ANSI C.
7446
7447 * msdos.h (ctrl_break_func, install_ctrl_break_check):
7448 Remove unused prototypes.
7449
7450 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
7451
7452 * coding.c, sysdep.c: Convert some more functions to standard C.
7453
7454 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
7455
7456 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
7457 (encode_coding_object): Use SPECPDL_INDEX.
7458 (syms_of_coding): Use DOS_NT.
7459
7460 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
7461
7462 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
7463
7464 Make the function member of Lisp_Subr use standard C prototypes.
7465 * lisp.h (struct Lisp_Subr): Use a union for the function member.
7466 (DECL_ALIGN): Add a cast for the function.
7467 * eval.c (Feval, Ffuncall): Use the proper type for each type
7468 function call.
7469
7470 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
7471
7472 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
7473 fringe face id, so face-remapping-alist works (Bug#6091).
7474
7475 2010-07-06 Juanma Barranquero <lekktu@gmail.com>
7476
7477 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
7478 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
7479 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
7480
7481 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
7482
7483 * xterm.c (x_get_keysym_name): Change type of parameter to int.
7484 * lisp.h: Declare x_get_keysym_name.
7485 * keyboard.c (modify_event_symbol): Don't declare
7486 x_get_keysym_name here.
7487
7488 2010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
7489
7490 * ecrt0.c: Revert conversion to standard C.
7491
7492 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
7493
7494 * vm-limit.c (memory_warnings):
7495 * keyboard.c (modify_event_symbol):
7496 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
7497 (round2, emacs_rint):
7498 * process.c (send_process, old_sigpipe): Convert function
7499 definitions and declarations to standard C.
7500
7501 2010-07-05 Juanma Barranquero <lekktu@gmail.com>
7502
7503 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
7504 * xdisp.c: Convert function definitions to standard C.
7505
7506 * cm.c (cmputc): Arg C is now int, not char.
7507 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
7508
7509 2010-07-05 James Cloos <cloos@jhcloos.com>
7510
7511 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
7512
7513 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
7514 _NET_WM_ICON_NAME atoms.
7515
7516 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
7517 and _NET_WM_ICON_NAME properties, too, matching what is
7518 done in the Gtk+ case.
7519
7520 2010-07-05 Jan Djärv <jan.h.d@swipnet.se>
7521
7522 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
7523
7524 * xsmfns.c (SSDATA): New macro.
7525 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
7526 passed to strlen/strcpy/strcat.
7527 (create_client_leader_window): Surround with #ifndef USE_GTK.
7528 Cast 7:th arg to XChangeProperty to (unsigned char *).
7529
7530 * xsettings.c (something_changedCB, parse_settings)
7531 (apply_xft_settings): Reformat prototype.
7532 (something_changedCB, init_gconf): Remove unused variable i.
7533 (read_settings): Remove unused variable long_len.
7534
7535 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
7536 (xg_get_image_for_pixmap, create_dialog)
7537 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
7538 (menuitem_highlight_callback, make_menu_item)
7539 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
7540 (xg_create_scroll_bar, xg_update_scrollbar_pos)
7541 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
7542 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
7543 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
7544 (xg_tool_bar_item_expose_callback): Reformat prototype.
7545 (xg_update_menubar): GList *group => GSList *group.
7546 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
7547 before use.
7548 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
7549 to GTK_IMAGE (wimage).
7550
7551 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
7552
7553 * atimer.c: Use "" instead of <> for local includes for
7554 consistency with the rest of the code.
7555
7556 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
7557 * xrdb.c (get_system_name):
7558 * window.c (shrink_windows):
7559 * syntax.c (forw_comment):
7560 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
7561 (ins_del_costs):
7562 * mem-limits.h (start_of_data):
7563 * lread.c (readevalloop):
7564 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
7565 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
7566 * frame.c (x_get_focus_frame):
7567 * floatfns.c (fmod_float):
7568 * fileio.c (choose_write_coding_system):
7569 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
7570 (malloc_initialize_hook, sort_args, synchronize_locale):
7571 * doprnt.c (doprnt):
7572 * dired.c (compile_pattern):
7573 * data.c (fmod_float):
7574 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
7575 (map_char_table_for_charset):
7576 * charset.c (define_charset_internal):
7577 * alloc.c (Fgarbage_collect): Convert declarations or definitions
7578 to standard C.
7579
7580 2010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
7581 Stefan Monnier <monnier@iro.umontreal.ca>
7582
7583 * lread.c (read1): Fix up last change to not mess up `c'.
7584
7585 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7586
7587 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
7588
7589 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7590
7591 Fix prototypes.
7592
7593 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
7594 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
7595 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
7596 arg, as required by internal_condition_case_1.
7597 * print.c (strout): Use const char* for arg PTR.
7598 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
7599 (analyse_first): Fix "const const".
7600 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
7601 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
7602 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
7603
7604 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
7605
7606 * alloc.c: Convert function definitions to standard C.
7607 * atimer.c:
7608 * bidi.c:
7609 * bytecode.c:
7610 * callint.c:
7611 * callproc.c:
7612 * casefiddle.c:
7613 * casetab.c:
7614 * category.c:
7615 * ccl.c:
7616 * character.c:
7617 * charset.c:
7618 * chartab.c:
7619 * cmds.c:
7620 * coding.c:
7621 * composite.c:
7622 * data.c:
7623 * dbusbind.c:
7624 * dired.c:
7625 * dispnew.c:
7626 * doc.c:
7627 * doprnt.c:
7628 * ecrt0.c:
7629 * editfns.c:
7630 * fileio.c:
7631 * filelock.c:
7632 * filemode.c:
7633 * fns.c:
7634 * font.c:
7635 * fontset.c:
7636 * frame.c:
7637 * fringe.c:
7638 * ftfont.c:
7639 * ftxfont.c:
7640 * gtkutil.c:
7641 * indent.c:
7642 * insdel.c:
7643 * intervals.c:
7644 * keymap.c:
7645 * lread.c:
7646 * macros.c:
7647 * marker.c:
7648 * md5.c:
7649 * menu.c:
7650 * minibuf.c:
7651 * prefix-args.c:
7652 * print.c:
7653 * ralloc.c:
7654 * regex.c:
7655 * region-cache.c:
7656 * scroll.c:
7657 * search.c:
7658 * sound.c:
7659 * strftime.c:
7660 * syntax.c:
7661 * sysdep.c:
7662 * termcap.c:
7663 * terminal.c:
7664 * terminfo.c:
7665 * textprop.c:
7666 * tparam.c:
7667 * undo.c:
7668 * unexelf.c:
7669 * window.c:
7670 * xfaces.c:
7671 * xfns.c:
7672 * xfont.c:
7673 * xftfont.c:
7674 * xgselect.c:
7675 * xmenu.c:
7676 * xrdb.c:
7677 * xselect.c:
7678 * xsettings.c:
7679 * xsmfns.c:
7680 * xterm.c: Likewise.
7681
7682 2010-07-03 Eli Zaretskii <eliz@gnu.org>
7683
7684 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
7685 frames other than the initial one. Fix reversal of colors when
7686 `reverse' is specified in the frame parameters.
7687 Call update_face_from_frame_parameter instead of
7688 internal-set-lisp-face-attribute. Initialize screen colors from
7689 initial_screen_colors[] when f->default_face_done_p is zero,
7690 instead of depending on being called with default-frame-alist as
7691 the alist argument.
7692
7693 * xfaces.c (update_face_from_frame_parameter): Move out of
7694 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
7695 with HAVE_WINDOW_SYSTEM.
7696
7697 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
7698 to menu-bar-mode, if not set in the frame parameters or in
7699 default-frame-alist.
7700
7701 * w32console.c (sys_tputs): Adjust argument list to prototype in
7702 term.c.
7703
7704 2010-07-03 Juanma Barranquero <lekktu@gmail.com>
7705
7706 * lisp.h (memory_warnings): Fix prototype.
7707
7708 * cm.h (evalcost): Fix prototype.
7709
7710 * cm.c (evalcost): Fix arg type.
7711
7712 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
7713
7714 * term.c (term_clear_mouse_face, Fidentity):
7715 * syssignal.h (signal_handler_t):
7716 * lisp.h (memory_warnings):
7717 * coding.h (preferred_coding_system):
7718 * cm.h (evalcost):
7719 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
7720
7721 2010-07-02 Eli Zaretskii <eliz@gnu.org>
7722
7723 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
7724 from prototypes.
7725
7726 * msdos.h (load_pixmap): Don't define away.
7727
7728 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
7729
7730 * lisp.h:
7731 * atimer.h: Remove define for P_.
7732
7733 * alloc.c: Remove __P and P_ from .c and .m files.
7734 * atimer.c:
7735 * buffer.c:
7736 * callint.c:
7737 * category.c:
7738 * charset.c:
7739 * chartab.c:
7740 * cm.c:
7741 * coding.c:
7742 * composite.c:
7743 * data.c:
7744 * dired.c:
7745 * dispnew.c:
7746 * doc.c:
7747 * editfns.c:
7748 * emacs.c:
7749 * eval.c:
7750 * fileio.c:
7751 * filelock.c:
7752 * fns.c:
7753 * font.c:
7754 * fontset.c:
7755 * frame.c:
7756 * ftfont.c:
7757 * ftxfont.c:
7758 * gmalloc.c:
7759 * gtkutil.c:
7760 * image.c:
7761 * indent.c:
7762 * intervals.c:
7763 * keyboard.c:
7764 * keymap.c:
7765 * lread.c:
7766 * marker.c:
7767 * menu.c:
7768 * minibuf.c:
7769 * print.c:
7770 * process.c:
7771 * scroll.c:
7772 * search.c:
7773 * sound.c:
7774 * strftime.c:
7775 * syntax.c:
7776 * sysdep.c:
7777 * term.c:
7778 * terminal.c:
7779 * textprop.c:
7780 * unexalpha.c:
7781 * w32console.c:
7782 * w32fns.c:
7783 * w32font.c:
7784 * w32menu.c:
7785 * w32term.c:
7786 * w32uniscribe.c:
7787 * window.c:
7788 * xdisp.c:
7789 * xfaces.c:
7790 * xfns.c:
7791 * xfont.c:
7792 * xftfont.c:
7793 * xmenu.c:
7794 * xselect.c:
7795 * xterm.c: Likewise.
7796
7797 Remove P_ and __P macros.
7798 * atimer.h: Remove P_ and __P macros.
7799 * buffer.h:
7800 * category.h:
7801 * ccl.h:
7802 * character.h:
7803 * charset.h:
7804 * cm.h:
7805 * coding.h:
7806 * composite.h:
7807 * dispextern.h:
7808 * disptab.h:
7809 * dosfns.h:
7810 * font.h:
7811 * fontset.h:
7812 * frame.h:
7813 * gtkutil.h:
7814 * indent.h:
7815 * intervals.h:
7816 * keyboard.h:
7817 * keymap.h:
7818 * lisp.h:
7819 * macros.h:
7820 * md5.h:
7821 * menu.h:
7822 * msdos.h:
7823 * nsterm.h:
7824 * puresize.h:
7825 * region-cache.h:
7826 * syntax.h:
7827 * syssignal.h:
7828 * systime.h:
7829 * termhooks.h:
7830 * w32font.h:
7831 * w32term.h:
7832 * widget.h:
7833 * window.h:
7834 * xgselect.h:
7835 * xsettings.h:
7836 * xterm.h: Likewise.
7837
7838 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
7839
7840 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
7841
7842 Cleanup old code.
7843 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
7844 * syssignal.h: Remove code for Lynx, not supported anymore.
7845 * vm-limit.c: Remove unused code the depends on emacs not being
7846 defined and NO_LIM_DATA being defined.
7847 * mem-limits.h: Remove dead code.
7848
7849 2010-07-01 Jan Djärv <jan.h.d@swipnet.se>
7850
7851 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
7852
7853 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
7854 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
7855
7856 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
7857 parameters, they are already absolute.
7858
7859 * nsterm.m (x_set_window_size, initFrameFromEmacs):
7860 Rename FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
7861
7862 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
7863
7864 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar):
7865 Update FRAME_TOOLBAR_HEIGHT.
7866
7867 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar):
7868 Add BLOCK/UNBLOCK_INPUT so asserts don't trigger.
7869
7870 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
7871
7872 * frame.c (get_future_frame_param, Fmake_terminal_frame):
7873 Don't check default-frame-alist.
7874
7875 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
7876
7877 * process.c (create_process): Avoid using invalid file descriptors.
7878
7879 * callproc.c (child_setup): Avoid closing a file descriptor twice.
7880
7881 2010-06-30 Jan Djärv <jan.h.d@swipnet.se>
7882
7883 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
7884 Improve documentation. Return font regardless of use_system_font.
7885 (syms_of_xsettings): Improve documentation for font-use-system-font.
7886
7887 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
7888
7889 * xfaces.c (realize_face): Garbage the frame if a face is removed
7890 (Bug#6593).
7891
7892 2010-07-05 Andreas Schwab <schwab@linux-m68k.org>
7893
7894 * keyboard.c: Remove duplicate <setjmp.h>.
7895 (read_key_sequence): Remove volatile qualifiers.
7896
7897 2010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7898
7899 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
7900 (struct glyph_row): New members left_fringe_offset and
7901 right_fringe_offset.
7902
7903 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
7904 specially.
7905 * w32term.c (w32_draw_fringe_bitmap): Likewise.
7906 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
7907
7908 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
7909 Take account of bitmap offset.
7910 (draw_window_fringes): Take account of window vscroll.
7911 (update_window_fringes): Likewise. Extend top-aligned top indicator
7912 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
7913 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
7914 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
7915
7916 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7917
7918 * w32fns.c (Qtooltip): Declare.
7919 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
7920
7921 2010-07-03 Jan Djärv <jan.h.d@swipnet.se>
7922
7923 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
7924 grab on just Press (Bug#6499).
7925
7926 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
7927
7928 * frame.c (Qtooltip): New var.
7929 (delete_frame): Use it. Fix faulty if statement. Don't update
7930 mode line for tooltip frames. Suggested by Martin Rudalics.
7931
7932 * xfns.c (x_create_tip_frame):
7933 * w32fns.c (x_create_tip_frame): Use it.
7934
7935 2010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
7936
7937 * xftfont.c (xftfont_open): Check font width one by one also when
7938 spacing is dual.
7939
7940 * ftfont.c (ftfont_open): Ditto.
7941
7942 2010-06-30 Glenn Morris <rgm@gnu.org>
7943
7944 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
7945
7946 * Makefile.in (CANNOT_DUMP): Update for configure name change.
7947
7948 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
7949 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
7950 * s/darwin.h (SYSTEM_MALLOC):
7951 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
7952
7953 2010-06-29 Jan Djärv <jan.h.d@swipnet.se>
7954
7955 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
7956 (ns_get_screen): Don't assign integer to f.
7957 (Fx_display_color_cells): Declarations before statements.
7958
7959 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
7960
7961 * xfns.c (x_default_font_parameter): Remove got_from_system
7962 (Bug#6526).
7963
7964 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
7965 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper):
7966 New defines based on what configure finds.
7967
7968 * xterm.c (XTflash): Use gtk_widget_get_window.
7969 (xg_scroll_callback): Use gtk_adjustment_get_upper and
7970 gtk_adjustment_get_page_size.
7971 (handle_one_xevent): Use gtk_widget_get_mapped.
7972 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
7973 messages.
7974
7975 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
7976
7977 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
7978 HAVE_GTK_FILE_SELECTION_NEW.
7979
7980 * gtkutil.c (xg_display_open, xg_display_close):
7981 Remove HAVE_GTK_MULTIDISPLAY, it is always defined.
7982 (xg_display_open): Return type is void.
7983 (gtk_widget_set_has_window)
7984 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
7985 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
7986 (gtk_adjustment_set_page_increment)
7987 (gtk_adjustment_get_step_increment): #define these if not found
7988 by configure.
7989 (remove_submenu): New define based on Gtk+ version.
7990 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar):
7991 Use gtk_widget_get_window.
7992 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
7993 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
7994 (create_dialog): Use gtk_dialog_get_action_area and
7995 gtk_dialog_get_content_area.
7996 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
7997 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
7998 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
7999 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item):
8000 Use g_object_ref and g_object_unref.
8001 (xg_update_menu_item, xg_tool_bar_menu_proxy):
8002 Use gtk_widget_get_sensitive.
8003 (xg_update_submenu): Use remove_submenu.
8004 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
8005 properties instead to get old x and y position.
8006 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
8007 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
8008 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
8009 (xg_get_tool_bar_widgets): New function.
8010 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
8011 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
8012 (toolbar_set_orientation): New #define based on if configure
8013 finds gtk_orientable_set_orientation.
8014 (xg_create_tool_bar): Call toolbar_set_orientation.
8015 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
8016 instead of gtk_box_pack_start_defaults.
8017
8018 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
8019
8020 * cmds.c (Fdelete_backward_char): Move into Lisp.
8021
8022 2010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
8023
8024 * s/freebsd.h (BSD4_2): Remove redundant definition.
8025 bsd-common.h defines it already.
8026
8027 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
8028
8029 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
8030 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
8031 tool-bar-mode, which are now set using these X resources at
8032 startup, to determine the defaults (Bug#2249).
8033
8034 * w32fns.c (Fx_create_frame):
8035 * nsfns.m (Fx_create_frame): Likewise.
8036
8037 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
8038
8039 2010-06-24 Juanma Barranquero <lekktu@gmail.com>
8040
8041 * gtkutil.c (xg_update_scrollbar_pos):
8042 Avoid C99 mid-block variable declaration.
8043
8044 2010-06-22 Jan Djärv <jan.h.d@swipnet.se>
8045
8046 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
8047
8048 * gtkutil.h (xg_show_scroll_bar): Remove.
8049
8050 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
8051 if height is less than scroll bar min size.
8052 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
8053
8054 * xfns.c (x_default_font_parameter): Try to open font from system
8055 before using it (bug#6478). Rename got_from_gconf to got_from_system.
8056
8057 2010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
8058
8059 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
8060
8061 2010-06-20 Eli Zaretskii <eliz@gnu.org>
8062
8063 * xdisp.c (try_scrolling): When scroll-conservatively is set to
8064 most-positive-fixnum, be extra accurate when scrolling window
8065 start, to avoid missing the cursor line.
8066
8067 2010-06-19 Eli Zaretskii <eliz@gnu.org>
8068
8069 * xdisp.c (try_scrolling): Compute the limit for searching point
8070 in forward scroll from scroll_max, instead of an arbitrary limit
8071 of 10 screen lines.
8072 See http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
8073 and
8074 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
8075 for details.
8076
8077 2010-06-16 Glenn Morris <rgm@gnu.org>
8078
8079 * editfns.c (Fbyte_to_string): Pacify compiler.
8080
8081 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
8082
8083 * lread.c (read1): Phase out old-style backquotes a bit more.
8084
8085 2010-06-12 Eli Zaretskii <eliz@gnu.org>
8086
8087 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
8088 bidimirror.h.
8089
8090 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
8091
8092 * bidi.c (bidi_initialize): Remove explicit initialization of
8093 bidi_type_table; include biditype.h instead. Don't support
8094 entries whose second codepoint is zero. Initialize bidi_mirror_table.
8095 (bidi_mirror_char): Use bidi_mirror_table.
8096
8097 * biditype.h: New file.
8098
8099 * bidimirror.h: New file.
8100
8101 * window.c (syms_of_window): Doc fix (bug#6409).
8102
8103 2010-06-12 Romain Francoise <romain@orebokech.com>
8104
8105 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
8106 ediff-hook.
8107
8108 2010-06-10 Glenn Morris <rgm@gnu.org>
8109
8110 * editfns.c (Fbyte_to_string): Pacify compiler.
8111
8112 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
8113
8114 2010-06-26 Andreas Schwab <schwab@linux-m68k.org>
8115
8116 * alloc.c (Fmake_byte_code): Don't access undefined argument
8117 (Bug#6517).
8118
8119 2010-06-25 Chong Yidong <cyd@stupidchicken.com>
8120
8121 * xdisp.c (next_element_from_image): Ensure that after-strings are
8122 read the next time we hit handle_stop (Bug#1336).
8123
8124 2010-06-23 Andreas Schwab <schwab@linux-m68k.org>
8125
8126 * lread.c (read1): Signal error if #s is not followed by paren.
8127
8128 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
8129
8130 * image.c (free_image): Mark frame as garbaged (Bug#6426).
8131
8132 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
8133
8134 2010-06-15 Glenn Morris <rgm@gnu.org>
8135
8136 * editfns.c (Fbyte_to_string): Pacify compiler.
8137
8138 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
8139
8140 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
8141 Check `object's type before accessing its guts.
8142
8143 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
8144
8145 * s/usg5-4.h: Fix previous change.
8146 Suggested by Lawrence Mitchell <wence@gmx.li>
8147
8148 2010-06-08 Andreas Schwab <schwab@linux-m68k.org>
8149
8150 * minibuf.c (Fall_completions): Add more checks.
8151
8152 2010-06-08 Juanma Barranquero <lekktu@gmail.com>
8153
8154 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
8155
8156 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
8157
8158 * lread.c (X_OK): Remove, unused.
8159
8160 * dispnew.c: Remove obsolete comment.
8161
8162 Remove INCLUDED_FCNTL.
8163 * xterm.c (INCLUDED_FCNTL):
8164 * callproc.c (INCLUDED_FCNTL):
8165 * alloc.c (INCLUDED_FCNTL):
8166 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
8167 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
8168
8169 2010-06-07 Martin Rudalics <rudalics@gmx.at>
8170
8171 * window.c (Fselect_window): Move `record_buffer' up to the
8172 beginning of this function, so the buffer gets recorded
8173 even if the selected window does not change.
8174 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
8175
8176 2010-06-07 Juanma Barranquero <lekktu@gmail.com>
8177
8178 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
8179 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
8180
8181 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
8182
8183 Remove BSTRING related code, all platforms define it.
8184 * s/usg5-4.h (BSTRING): Remove definition.
8185 * s/template.h (BSTRING):
8186 * s/msdos.h (BSTRING):
8187 * s/ms-w32.h (BSTRING):
8188 * s/hpux10-20.h (BSTRING):
8189 * s/gnu-linux.h (BSTRING):
8190 * s/darwin.h (BSTRING):
8191 * s/cygwin.h (BSTRING):
8192 * s/bsd-common.h (BSTRING):
8193 * s/aix4-2.h (BSTRING): Likewise.
8194 * sysdep.c: Remove code depending on BSTRING not being defined.
8195
8196 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
8197
8198 Remove obsolete macro BASE_LEADING_CODE_P.
8199 * character.h (BASE_LEADING_CODE_P): Remove.
8200 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
8201 * buffer.c (Fset_buffer_multibyte):
8202 * indent.c (scan_for_column, compute_motion):
8203 * insdel.c (count_combining_before, count_combining_after):
8204 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
8205
8206 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
8207
8208 Turn `directory-sep-char' into a noop.
8209
8210 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
8211 (DIRECTORY_SEP): Define unconditionally.
8212
8213 * s/ms-w32.h (DIRECTORY_SEP): Remove.
8214
8215 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
8216 call dostounix_filename directly.
8217
8218 * fileio.c (CORRECT_DIR_SEPS): Remove.
8219 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
8220 (Fsubstitute_in_file_name): Use dostounix_filename instead.
8221 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
8222 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
8223
8224 * w32proc.c (CORRECT_DIR_SEPS): Remove.
8225 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
8226
8227 2010-06-03 Andreas Schwab <schwab@linux-m68k.org>
8228
8229 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 address.
8230 (Bug#6346)
8231
8232 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
8233
8234 * ccl.c (Fccl_program_p): Fix typo in docstring.
8235
8236 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
8237
8238 Move UNEXEC definition to autoconf.
8239 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
8240 * s/sol2-10.h (UNEXEC):
8241 * s/irix6-5.h (UNEXEC):
8242 * s/hpux10-20.h (UNEXEC):
8243 * s/gnu-linux.h (UNEXEC):
8244 * s/darwin.h (UNEXEC):
8245 * s/cygwin.h (UNEXEC):
8246 * s/bsd-common.h (UNEXEC):
8247 * s/aix4-2.h (UNEXEC):
8248 * m/alpha.h (UNEXEC): Likewise.
8249 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
8250
8251 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
8252
8253 Remove obsolete pre-unicode2 macros.
8254 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
8255 * composite.c (composition_reseat_it):
8256 * data.c (Faset):
8257 * fns.c (Ffillarray):
8258 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
8259 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
8260
8261 2010-06-03 Juri Linkov <juri@jurta.org>
8262
8263 * buffer.c (Fother_buffer): Add CHECK_FRAME.
8264 (Fswitch_to_buffer): Remove unused variable `err'.
8265
8266 2010-06-03 Glenn Morris <rgm@gnu.org>
8267
8268 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
8269
8270 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
8271 now that AH_BOTTOM does it.
8272
8273 * m/hp800.h (HAVE_ALLOCA):
8274 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
8275
8276 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
8277 Remove NOT_C_CODE tests, it is always true now.
8278
8279 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
8280
8281 Fix config.h includes.
8282 * xsettings.c:
8283 * xgselect.c:
8284 * nsterm.m:
8285 * nsselect.m:
8286 * nsimage.m:
8287 * nsfont.m:
8288 * nsfns.m:
8289 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
8290 other files do.
8291
8292 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
8293
8294 * s/sol2-6.h: Remove obsolete comments.
8295
8296 Remove unnecessary alloca.h includes.
8297 * keymap.c: Do not include alloca.h, config.h does that.
8298 * sysdep.c: Likewise. Do not define fwrite, not used.
8299
8300 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
8301
8302 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
8303 the HAVE_TERMIO where it belongs (bug#6149).
8304
8305 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
8306
8307 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
8308 of bug#6305).
8309
8310 2010-05-30 Eli Zaretskii <eliz@gnu.org>
8311
8312 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
8313 state is always cached (bug#6306).
8314
8315 2010-05-29 Eli Zaretskii <eliz@gnu.org>
8316
8317 Fix cursor motion in bidi-reordered continued lines.
8318 * xdisp.c (try_cursor_movement): Backup to non-continuation line
8319 only after finding point's row. Fix the logic. Rewrite the loop
8320 over continuation lines in bidi-reordered buffers.
8321 Return CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
8322 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
8323
8324 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
8325
8326 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
8327
8328 2010-05-28 Kenichi Handa <handa@m17n.org>
8329
8330 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
8331 Don't sheck SPEC if it is nil.
8332 (font_list_entities): Call font_delete_unmatched if
8333 Vface_ignored_fonts is non-nil. (Bug#6287)
8334
8335 2010-05-28 Glenn Morris <rgm@gnu.org>
8336
8337 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
8338
8339 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8340
8341 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
8342 whether to trash.
8343 (internal_delete_file, Frename_file): Callers changed.
8344 (delete_by_moving_to_trash): Doc fix.
8345 (Fdelete_directory_internal): Don't move to trash.
8346
8347 * callproc.c (delete_temp_file):
8348 * buffer.c (Fkill_buffer): Callers changed.
8349
8350 * lisp.h: Update prototype.
8351
8352 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8353
8354 * xdisp.c (redisplay_window): After redisplay, check if point is
8355 still valid before setting it (Bug#6177).
8356
8357 2010-05-27 Glenn Morris <rgm@gnu.org>
8358
8359 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
8360 Convert comments to Makefile format.
8361
8362 * Makefile.in (bootstrap-clean): No more Makefile.c.
8363
8364 2010-05-26 Glenn Morris <rgm@gnu.org>
8365
8366 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
8367 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
8368
8369 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
8370 Remove.
8371 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8372
8373 2010-05-26 Kenichi Handa <handa@m17n.org>
8374
8375 * composite.c (composition_compute_stop_pos): Fix condition for
8376 backward scanning.
8377
8378 2010-05-25 Glenn Morris <rgm@gnu.org>
8379
8380 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
8381 Move before TEMACS_LDFLAGS.
8382 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8383 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8384
8385 * Makefile.in (NOT_C_CODE): No longer define.
8386 (config.h): No longer include.
8387
8388 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
8389 variables it may reference.
8390
8391 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
8392 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
8393
8394 2010-05-25 Kenichi Handa <handa@m17n.org>
8395
8396 * dispextern.h (struct composition_it): New members rule_idx and
8397 charpos.
8398
8399 * xdisp.c (set_iterator_to_next): While scanning backward, assume
8400 that the character positions of IT point the last character of the
8401 current grapheme cluster.
8402 (next_element_from_composition): Don't change character positions
8403 of IT.
8404 (append_composite_glyph): Set glyph->charpos to
8405 it->cmp_it.charpos.
8406
8407 * composite.c (autocmp_chars): Change the first argument to RULE,
8408 and try composition with RULE only.
8409 (composition_compute_stop_pos): Record the index number of the
8410 composition rule in CMP_IT->rule_idx.
8411 (composition_reseat_it): Call autocmp_chars repeatedly until the
8412 correct rule of the composition is found.
8413 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
8414 is at the last character of the current grapheme cluster when
8415 CMP_IT->reversed_p is nonzero.
8416
8417 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
8418
8419 * editfns.c (Fbyte_to_string): New function.
8420
8421 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
8422
8423 * process.c (Fmake_network_process): Set :host to nil if it's not used.
8424 Suggested by Masatake YAMATO <yamato@redhat.com>.
8425
8426 2010-05-23 Eli Zaretskii <eliz@gnu.org>
8427
8428 * dispextern.h (init_iterator): Sync prototype with changed definition.
8429
8430 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
8431
8432 * s/netbsd.h: If terminfo is found, use it in preference to
8433 termcap. (Bug#6190) [Backport from trunk]
8434
8435 2010-05-19 Eli Zaretskii <eliz@gnu.org>
8436
8437 Redesign and reimplement bidi-aware edge positions of glyph rows.
8438
8439 * dispextern.h (struct glyph_row): New members minpos and maxpos.
8440 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
8441 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
8442 and maxpos members instead of start.pos and end.pos, respectively.
8443
8444 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
8445 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
8446 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
8447 (try_window_reusing_current_matrix, try_window_id):
8448 Use ROW->minpos rather than ROW->start.pos.
8449 (init_from_display_pos, init_iterator): Use EMACS_INT for
8450 character and byte positions.
8451 (find_row_edges): Rename from find_row_end. Accept additional
8452 arguments for minimum and maximum buffer positions seen by
8453 display_line for this row. Don't use iterator to find the
8454 position following the maximum one; instead, increment the
8455 position found by display_line directly. Fix logic; eol_pos
8456 should be tested before the rest. Handle the case of characters
8457 delivered from display vector (bug#6036). Fix tests related to
8458 it->method. Handle the truncated_on_right_p rows.
8459 (RECORD_MAX_MIN_POS): New macro.
8460 (display_line): Use it to record the minimum and maximum buffer
8461 positions for glyphs in the row being assembled. Record the
8462 position of the newline that terminates the line. If word wrap is
8463 in effect, restore minimum and maximum positions seen up to the
8464 wrap point, when iterator returns to it.
8465 (try_window_reusing_current_matrix): Give up if in bidi-reordered
8466 row and cursor not already at point. Restore original pre-bidi
8467 code for unidirectional buffers.
8468
8469 * dispnew.c (increment_row_positions, check_matrix_invariants):
8470 Increment and check row->start.pos and row->end.pos, in addition
8471 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
8472
8473 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
8474 Display truncated_on_left_p and truncated_on_right_p flags.
8475 Formatting fixes.
8476 (pmtxrows): Display the ordinal number of each row. Don't display
8477 rows beyond the last one.
8478
8479 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
8480 it is not copied by bidi_copy_it.
8481
8482 2010-05-22 Eli Zaretskii <eliz@gnu.org>
8483
8484 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
8485 (Bug#6237)
8486
8487 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
8488
8489 * image.c (Fimage_flush): Rename from image-refresh.
8490
8491 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
8492
8493 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
8494 just one window.
8495
8496 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
8497 (clear_image_cache): If the number of cached images is unusually
8498 large, decrease the cache eviction delay (Bug#6230).
8499
8500 2010-05-21 Glenn Morris <rgm@gnu.org>
8501
8502 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
8503 Move these rules to ns.mk.
8504 * ns.mk: New file.
8505
8506 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
8507
8508 * Makefile.in (CANNOT_DUMP): New, set by configure.
8509 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
8510
8511 2010-05-20 Juri Linkov <juri@jurta.org>
8512
8513 * fileio.c (Fdelete_file): Change interative spec to use
8514 `read-file-name' like in `find-file-read-args' where the default
8515 value is `default-directory' instead of `buffer-file-name'.
8516 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
8517
8518 2010-05-20 Kevin Ryde <user42@zip.com.au>
8519
8520 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
8521 (Voverriding_terminal_local_map, Vsystem_key_alist)
8522 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
8523
8524 2010-05-20 Glenn Morris <rgm@gnu.org>
8525
8526 * Makefile.in (DEPDIR): New constant.
8527 (DEPFLAGS): Set with configure, not cpp.
8528 (MKDEPDIR): New, set by configure.
8529 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
8530 (clean): Use $DEPDIR.
8531 (deps_frag): Include from configure.
8532 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
8533 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
8534
8535 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state):
8536 Fix reallocation of the cache. (Bug#6210)
8537
8538 2010-05-19 Glenn Morris <rgm@gnu.org>
8539
8540 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
8541
8542 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
8543 (GNULIB_VAR): Remove.
8544 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
8545
8546 * m/ibms390x.h (LINKER):
8547 * m/macppc.h (LINKER) [GNU_LINUX]:
8548 * s/aix4-2.h (ORDINARY_LINK):
8549 * s/cygwin.h (LINKER):
8550 * s/darwin.h (ORDINARY_LINK):
8551 * s/gnu.h (ORDINARY_LINK):
8552 * s/netbsd.h (LINKER):
8553 * s/usg5-4.h (ORDINARY_LINK):
8554 Move to configure.
8555
8556 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
8557
8558 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
8559
8560 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
8561 prevent stack overflow if number of arguments is too large
8562 (Bug#6214).
8563
8564 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
8565
8566 * charset.c (load_charset_map_from_file): Don't call close after fclose.
8567
8568 2010-05-18 Glenn Morris <rgm@gnu.org>
8569
8570 * s/gnu-linux.h: Combine two conditionals.
8571
8572 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
8573 $(POST_ALLOC_OBJ).
8574
8575 * Makefile.in (RALLOC_OBJ): New, set by configure.
8576 (rallocobj): Replace with the previous variable.
8577 (otherobj): Use $RALLOC_OBJ.
8578
8579 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
8580 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
8581
8582 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
8583 (gmallocobj, vmlimitobj): Replace with previous two variables.
8584 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
8585
8586 2010-05-17 Glenn Morris <rgm@gnu.org>
8587
8588 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
8589 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
8590
8591 2010-05-16 Glenn Morris <rgm@gnu.org>
8592
8593 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
8594
8595 * Makefile.in (clean): Get rid of HAVE_NS conditional.
8596
8597 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
8598 trailing "/".
8599
8600 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
8601 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
8602
8603 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
8604 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
8605 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
8606 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
8607 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
8608
8609 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
8610 Remove ${STARTFLAGS}, nothing ever sets it.
8611
8612 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
8613
8614 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
8615
8616 2010-05-16 Glenn Morris <rgm@gnu.org>
8617
8618 * Makefile.in (LIBX_BASE): Always define.
8619
8620 * Makefile.in (LIBX_OTHER): Move out of cpp section.
8621
8622 * Makefile.in (LIBXT): Always define.
8623
8624 2010-05-15 Glenn Morris <rgm@gnu.org>
8625
8626 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
8627
8628 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
8629 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
8630
8631 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
8632
8633 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
8634 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
8635
8636 * emacs.c (main): Initialize initial-environment and
8637 process-environment before generating from env, not after.
8638
8639 Handle --version reasonably in CANNOT_DUMP configuration.
8640 * emacs.c (emacs_version, emacs_copyright): New string variables.
8641 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
8642 (syms_of_emacs): Defvar them, and initialize them from the C
8643 string variables.
8644 (main): If initialization hasn't been done, print initial version
8645 info from the C strings, instead of starting an interactive session.
8646
8647 2010-05-15 Eli Zaretskii <eliz@gnu.org>
8648
8649 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
8650 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
8651 (bidi_paragraph_init): Remove redundant assertion that we are at
8652 the beginning of a line after call to bidi_find_paragraph_start.
8653
8654 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
8655 (syms_of_xdisp): Defsubr it.
8656
8657 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
8658
8659 * Makefile.in: Fix MSDOS-related comments.
8660
8661 2010-05-15 Glenn Morris <rgm@gnu.org>
8662
8663 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
8664 (really-lwlib, really-oldXMenu): Always define.
8665 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
8666
8667 * Makefile.in: Simplify cpp conditional.
8668
8669 * Makefile.in (${ns_appdir}): Simplify using umask.
8670
8671 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
8672
8673 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
8674
8675 * eval.c (specbind): Remove left-over duplicate test.
8676 Disallow let-binding frame-local vars. Add comment.
8677
8678 2010-05-14 Eli Zaretskii <eliz@gnu.org>
8679
8680 Make the cache of bidi iterator states dynamically allocated.
8681 * bidi.c (bidi_cache_shrink): New function.
8682 (bidi_init_it): Call it.
8683 (bidi_cache_iterator_state): Enlarge the cache if needed.
8684
8685 * bidi.c (bidi_move_to_visually_next): Rename from
8686 bidi_get_next_char_visually. All callers changed.
8687
8688 2010-05-14 Kenichi Handa <handa@m17n.org>
8689
8690 * dispextern.h (struct composition_it): New member reversed_p.
8691
8692 * composite.c (composition_compute_stop_pos): Search backward if
8693 ENDPOS < CHARPOS.
8694 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
8695 Set CMP_IT->reversed_p.
8696 (composition_update_it): Pay attention to CMP_IT->reversed_p.
8697
8698 * xdisp.c (set_iterator_to_next):
8699 Call composition_compute_stop_pos with negative ENDPOS if we are
8700 scanning backward. Call composition_compute_stop_pos if scan
8701 direction is changed.
8702 (next_element_from_buffer): Call composition_compute_stop_pos with
8703 negative ENDPOS if we are scanning backward.
8704 (next_element_from_composition): Pay attention to
8705 IT->cmp_it.reversed_p.
8706
8707 2010-05-14 Kenichi Handa <handa@m17n.org>
8708
8709 * font.c (font_range): Return the range for the font found at first.
8710
8711 2010-05-14 Glenn Morris <rgm@gnu.org>
8712
8713 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
8714
8715 * Makefile.in (mktime, X11, register): Move undefs to configure.
8716
8717 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
8718 (MSDOS_X_OBJ): New variable.
8719 (MSDOS_SUPPORT_REAL): New constant.
8720 (MSDOS_SUPPORT): Set as a variable, not with cpp.
8721 (obj): Use MSDOS_X_OBJ.
8722 (lisp): Use MSDOS_SUPPORT as a variable.
8723
8724 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
8725 (GPM_MOUSE_SUPPORT): Now it's a constant.
8726 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
8727 not cpp.
8728
8729 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
8730 (ns_appresdir): Remove, unused.
8731
8732 * Makefile.in (SHELL): Move outside cpp section.
8733
8734 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
8735
8736 2010-05-13 Glenn Morris <rgm@gnu.org>
8737
8738 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
8739 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
8740
8741 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
8742 HAVE_WINDOW_SYSTEM must be too.
8743
8744 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
8745 (lisp): Remove WINNT_SUPPORT.
8746
8747 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
8748 Let configure set these variables (to empty) in this case as well.
8749
8750 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
8751 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
8752
8753 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
8754 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
8755 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
8756 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
8757 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
8758 the values output by configure.
8759 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
8760
8761 2010-05-12 Glenn Morris <rgm@gnu.org>
8762
8763 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
8764 (LINKER_WAS_SPECIFIED): Remove.
8765
8766 * Makefile.in (LIB_GCC): Set using configure, not cpp.
8767 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
8768 * m/arm.h (LIB_GCC) [GNU_LINUX]:
8769 * s/cygwin.h (LIB_GCC):
8770 * s/freebsd.h (LIB_GCC):
8771 * s/gnu-linux.h (LIB_GCC):
8772 * s/msdos.h (LIB_GCC):
8773 * s/netbsd.h (LIB_GCC):
8774 Move to configure.
8775
8776 2010-05-11 Karel Klíč <kklic@redhat.com>
8777
8778 * ftfont.c: Fix incorrect parentheses of #if condition for
8779 definining M17N_FLT_USE_NEW_FEATURE.
8780
8781 2010-05-11 Glenn Morris <rgm@gnu.org>
8782
8783 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
8784 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
8785
8786 2010-05-10 Eli Zaretskii <eliz@gnu.org>
8787
8788 * xdisp.c (init_iterator): Don't turn on bidi reordering in
8789 unibyte buffers. See
8790 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
8791
8792 2010-05-10 Glenn Morris <rgm@gnu.org>
8793
8794 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
8795 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
8796 (LIBES): Use LIBS_SYSTEM as a variable.
8797 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
8798 * s/aix4-2.h (LIBS_SYSTEM):
8799 * s/freebsd.h (LIBS_SYSTEM):
8800 * s/hpux10-20.h (LIBS_SYSTEM):
8801 * s/sol2-6.h (LIBS_SYSTEM):
8802 * s/unixware.h (LIBS_SYSTEM):
8803 Move to configure.
8804
8805 * s/aix4-2.h (MAIL_USE_LOCKF):
8806 * s/bsd-common.h (MAIL_USE_FLOCK):
8807 * s/darwin.h (MAIL_USE_FLOCK):
8808 * s/gnu-linux.h (MAIL_USE_FLOCK):
8809 * s/irix6-5.h (MAIL_USE_FLOCK):
8810 * s/template.h (MAIL_USE_FLOCK):
8811 Move to configure.
8812
8813 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
8814
8815 * Version 23.2 released.
8816
8817 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
8818
8819 * composite.c (autocmp_chars): Save point as marker before calling
8820 auto-composition-function (Bug#5984).
8821
8822 * lisp.h (restore_point_unwind): Add prototype.
8823
8824 * fileio.c (restore_point_unwind): Remove static attribute.
8825
8826 2010-05-08 Kenichi Handa <handa@m17n.org>
8827
8828 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
8829 new feature of libotf and m17n-flt.
8830 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
8831 Call OTF_check_features even if no specific feature is given.
8832 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
8833 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
8834 that OUT is NULL. Use OTF_drive_gsub_with_log and
8835 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
8836 OTF_drive_gpos.
8837 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
8838 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
8839 Setup mflt_enable_new_feature and mflt_try_otf.
8840
8841 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
8842
8843 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
8844
8845 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
8846 box and toolbar (Bug #6139).
8847 (xg_create_tool_bar): Remove comment (Bug #6139).
8848 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
8849 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
8850
8851 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
8852
8853 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
8854 Update dependencies.
8855
8856 2010-05-08 Eli Zaretskii <eliz@gnu.org>
8857
8858 * fringe.c (update_window_fringes): Set up truncation bitmaps for
8859 R2L lines.
8860
8861 2010-05-08 Glenn Morris <rgm@gnu.org>
8862
8863 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
8864
8865 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
8866 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
8867 (termcapobj): Replace with TERMCAP_OBJ.
8868 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
8869 (LIBES): Use LIBS_TERMCAP as a variable.
8870
8871 * s/freebsd.h (osreldate.h): No longer include, since this file
8872 does not use __FreeBSD_version any more.
8873
8874 * s/aix4-2.h (TERMINFO):
8875 * s/cygwin.h (TERMINFO):
8876 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8877 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
8878 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8879 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8880 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
8881 * s/irix6-5.h (TERMINFO):
8882 * s/netbsd.h (LIBS_TERMCAP):
8883 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
8884 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
8885 * s/usg5-4.h (TERMINFO):
8886 Move to configure.
8887
8888 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8889
8890 * eval.c (unbind_to): Don't unbind a local binding into the global
8891 binding when the local binding disappeared. Inversely, don't unbind
8892 a global binding into a newly created local binding.
8893 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
8894 can specify the frame to use, when applicable. Adjust callers.
8895
8896 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
8897 Stefan Monnier <monnier@iro.umontreal.ca>
8898
8899 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
8900
8901 2010-05-07 Eli Zaretskii <eliz@gnu.org>
8902
8903 * w32fns.c: Include w32.h.
8904 (Fw32_shell_execute): Decode the error message before passing it
8905 to `error'. (Bug#6126)
8906
8907 * msdos.c (dos_set_window_size):
8908 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
8909 instead of `XSYMBOL (foo)->value'.
8910
8911 2010-05-07 Eli Zaretskii <eliz@gnu.org>
8912
8913 Fix the MS-DOS build, broken by autoconfiscation.
8914
8915 * Makefile.in: Don't use Make-style comments past the "start of
8916 cpp stuff" line.
8917 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
8918
8919 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
8920 edited directly by msdos/sed1v2.inp).
8921
8922 2010-05-07 Glenn Morris <rgm@gnu.org>
8923
8924 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
8925 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
8926 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
8927 move out of cpp section.
8928 * s/freebsd.h (LD_SWITCH_SYSTEM):
8929 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
8930 * s/netbsd.h (LD_SWITCH_SYSTEM):
8931 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
8932
8933 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
8934
8935 Define LIB_STANDARD and START_FILES using autoconf.
8936 * s/usg5-4.h (LIB_STANDARD):
8937 * s/netbsd.h (START_FILES):
8938 * s/irix6-5.h (LIB_STANDARD):
8939 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
8940 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
8941 * s/freebsd.h (START_FILES):
8942 * s/darwin.h (START_FILES):
8943 * s/cygwin.h (START_FILES):
8944 * s/aix4-2.h (LIB_STANDARD):
8945 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
8946 * Makefile.in (STARTFILES): Rename to START_FILES, define using
8947 autoconf, not cpp.
8948
8949 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
8950
8951 Remove NEED_BSDTTY and NEED_UNISTD_H.
8952 * s/hpux10-20.h (NEED_BSDTTY): Remove.
8953 * s/aix4-2.h (NEED_UNISTD_H): Remove.
8954 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
8955 <sys/ptyio.h> and <unistd.h>.
8956
8957 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
8958
8959 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
8960 * s/gnu.h (START_FILES): Remove empty definition.
8961
8962 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
8963
8964 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
8965
8966 2010-05-06 Glenn Morris <rgm@gnu.org>
8967
8968 * Makefile.in (CPP, LN_S): Remove unused variables.
8969
8970 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8971
8972 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
8973
8974 2010-05-05 Lawrence Mitchell <wence@gmx.li>
8975
8976 * m/sparc.h: Fix typo in earlier change.
8977
8978 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8979
8980 Misc tweaks.
8981 * eval.c (Fdefvaralias): Remove unintended nested if.
8982 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
8983
8984 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
8985
8986 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
8987
8988 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
8989
8990 Remove BSD_PGRPS.
8991 * s/bsd-common.h (BSD_PGRPS): Remove undef.
8992 * s/gnu-linux.h (BSD_PGRPS): Remove.
8993 * term.c (dissociate_if_controlling_tty):
8994 * sysdep.c (narrow_foreground_group, widen_foreground_group)
8995 (init_sys_modes, reset_sys_modes):
8996 * emacs.c (main):
8997 * callproc.c (Fcall_process, child_setup): Remove code depending
8998 on BSD_PGRPS.
8999
9000 Remove POSIX_SIGNALS.
9001 * s/usg5-4.h (POSIX_SIGNALS):
9002 * s/netbsd.h (POSIX_SIGNALS):
9003 * s/msdos.h (POSIX_SIGNALS):
9004 * s/ms-w32.h (POSIX_SIGNALS):
9005 * s/hpux11.h (POSIX_SIGNALS):
9006 * s/gnu.h (POSIX_SIGNALS):
9007 * s/gnu-linux.h (POSIX_SIGNALS):
9008 * s/freebsd.h (POSIX_SIGNALS):
9009 * s/darwin.h (POSIX_SIGNALS):
9010 * s/cygwin.h (POSIX_SIGNALS):
9011 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
9012 * s/unixware.h:
9013 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
9014 * process.c (create_process):
9015 * syssignal.h:
9016 * sysdep.c (wait_for_termination, init_signals):
9017 * process.c (create_process):
9018 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
9019 remove all code that assumes the contrary.
9020
9021 2010-05-04 Glenn Morris <rgm@gnu.org>
9022
9023 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
9024 variable.
9025 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
9026 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
9027 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
9028 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
9029 LD_SWITCH_SYSTEM_tmp.
9030 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
9031 New variables, set by configure.
9032
9033 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
9034 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
9035 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
9036 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
9037 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
9038
9039 * s/aix4-2.h (C_SWITCH_SYSTEM):
9040 * m/alpha.h (C_SWITCH_MACHINE):
9041 Move to configure.in.
9042 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
9043 New variables, set by configure.
9044 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
9045 $c_switch_machine and $c_switch_system.
9046
9047 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
9048
9049 * s/hpux10-20.h (LIB_STANDARD): New definition.
9050 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
9051 on it, not used anymore.
9052
9053 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
9054
9055 * eval.c (internal_condition_case_n): Rename from
9056 internal_condition_case_2.
9057 (internal_condition_case_2): New function.
9058
9059 * xdisp.c (safe_call): Use internal_condition_case_n.
9060
9061 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
9062 (internal_delete_file, Frename_file): Callers changed.
9063
9064 * buffer.c (Fkill_buffer):
9065 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
9066
9067 * lisp.h: Update prototypes.
9068
9069 2010-05-03 Glenn Morris <rgm@gnu.org>
9070
9071 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
9072 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
9073 (LIBXT): Set with configure, not cpp.
9074 (LIBX): Remove.
9075 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
9076
9077 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
9078
9079 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
9080 The FreeBSD is not needed, the default works, Solaris version is
9081 not needed, and the remaining case is not supported by configure.
9082
9083 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
9084
9085 * xsmfns.c (CHDIR_OPT): New define.
9086 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
9087 restarting emacs.
9088
9089 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
9090 shut_down_emacs.
9091
9092 * emacs.c (USAGE1): Mention --chdir.
9093 (main): Handle --chdir.
9094 (standard_args): Add --chdir.
9095 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
9096 #5552).
9097
9098 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
9099
9100 Remove LD_SWITCH_MACHINE.
9101 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
9102 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
9103
9104 Clean up IRIX code.
9105 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
9106 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
9107
9108 Clean up AIX code.
9109 * m/ibmrs6000.inp: Remove file, unused.
9110 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
9111 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
9112 definition ...
9113 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
9114
9115 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
9116 unused.
9117
9118 2010-05-01 Eli Zaretskii <eliz@gnu.org>
9119
9120 Emulate POSIX_SIGNALS on MS-Windows.
9121
9122 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
9123 (SIG_SETMASK, SIG_UNBLOCK): Define.
9124
9125 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
9126 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
9127 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
9128
9129 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
9130 New stubs.
9131
9132 Miscellaneous fixes of bidi display.
9133
9134 * xdisp.c (find_row_end): New function, refactored from display_line.
9135 (display_line): Use it.
9136 (extend_face_to_end_of_line): In almost-filled rows, extend only
9137 if the row is R2L and not continued.
9138 (display_line): Fix prepending of truncation glyphs to R2L rows.
9139 Preserve overlay and string info in row->end.
9140 (insert_left_trunc_glyphs): Support addition of left truncation
9141 glyphs to R2L rows.
9142 (set_cursor_from_row): Don't place cursor on the vertical border
9143 glyph between adjacent windows. Fix a crash when a display string
9144 is continued to the next line. Don't return zero if cursor was
9145 found by `cursor' property of a display string.
9146 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
9147 test for that explicitly.
9148
9149 2010-05-01 Glenn Morris <rgm@gnu.org>
9150
9151 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
9152 for clarity.
9153 (OTHER_OBJ): Remove.
9154 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
9155 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
9156
9157 2010-05-01 Karel Klíč <kklic@redhat.com>
9158
9159 * fileio.c (Ffile_selinux_context): Context functions may return null.
9160
9161 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
9162
9163 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
9164
9165 2010-04-30 Glenn Morris <rgm@gnu.org>
9166
9167 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
9168 (OTHER_OBJ): Define as a separate variable, for clarity.
9169
9170 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
9171
9172 * xsettings.c: Include limits.h and update file comment.
9173
9174 2010-04-30 Glenn Morris <rgm@gnu.org>
9175
9176 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
9177 Set with configure, not cpp.
9178 (LIBW): Remove, replace with $TOOLKIT_LIBW.
9179
9180 * Makefile.in (mallocobj): Remove.
9181 (otherobj): Simplify using @OTHER_OBJ@.
9182
9183 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
9184 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
9185 Don't bother making nsgui.h dependency platform-specific.
9186
9187 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
9188
9189 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
9190
9191 * process.c (read_process_output, exec_sentinel): Don't burp if the
9192 sentinel/filter kills the current buffer (bug#6060).
9193
9194 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
9195 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
9196 Remove unused var `args'.
9197 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
9198 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
9199 * doc.c (store_function_docstring): Use XSETCAR.
9200
9201 2010-04-28 Glenn Morris <rgm@gnu.org>
9202
9203 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
9204 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
9205
9206 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
9207
9208 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
9209 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
9210
9211 * Makefile.in (FONT_OBJ): New, set by configure.
9212 (FONT_DRIVERS): Use $FONT_OBJ.
9213
9214 * Makefile.in (LIBXMU): Set with configure, not cpp.
9215 * s/aix4-2.h (LIBXMU):
9216 * s/hpux10-20.h (LIBXMU):
9217 Remove definition, now set in configure.
9218
9219 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
9220
9221 * m/amdx86-64.h [i386]: Move this test to configure.in.
9222
9223 2010-04-27 Glenn Morris <rgm@gnu.org>
9224
9225 * Makefile.in (LIBXTR6): Set with configure, not cpp.
9226 * s/unixware.h (NEED_LIBW): Remove definition.
9227
9228 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
9229 (TOOLKIT_LIBW): New, set by configure.
9230 (@X_TOOLKIT_TYPE@): No longer define it.
9231
9232 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
9233 (MOTIF_LIBW): Set with configure, not cpp.
9234 * s/aix4-2.h (LIB_MOTIF):
9235 * s/gnu-linux.h (LIB_MOTIF):
9236 * s/unixware.h (LIB_MOTIF): Move to configure.in.
9237
9238 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
9239
9240 Reduce CPP usage.
9241 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
9242 (obj): Use autoconf for unexec instead of cpp.
9243 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE):
9244 Remove definitions and undefs. Inline definitions in the only user.
9245 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
9246
9247 2010-04-27 Glenn Morris <rgm@gnu.org>
9248
9249 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
9250 since the defaults (set by the system file) are fine in most cases.
9251 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
9252 * m/ibms390x.h (START_FILES, LIB_STANDARD):
9253 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
9254 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
9255 Remove definitions, since they are set correctly in s/gnu-linux.h.
9256 * s/freebsd.h (START_FILES, LIB_STANDARD):
9257 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
9258 * s/hpux10-20.h (START_FILES):
9259 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
9260 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
9261
9262 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
9263 (MOTIF_LIBW): Use $LIBXP.
9264 (otherobj): Use $WIDGET_OBJ.
9265
9266 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
9267
9268 * Makefile.in (LIBS_MACHINE): Remove, unused.
9269
9270 Use autoconf instead of cpp for LIB_MATH.
9271 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
9272 * s/cygwin.h (LIB_MATH): Likewise.
9273 * Makefile.in (LIB_MATH): Do not define with cpp.
9274 (LIBES): Use autoconf for LIB_MATH.
9275
9276 2010-04-26 Kenichi Handa <handa@m17n.org>
9277
9278 * composite.c (Ffind_composition_internal): Fix the return value
9279 for an automatic composition.
9280
9281 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
9282
9283 Remove all NO_ARG_ARRAY uses.
9284 * fns.c (concat2, concat3, nconc2):
9285 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
9286 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
9287 * m/xtensa.h (NO_ARG_ARRAY):
9288 * m/template.h (NO_ARG_ARRAY):
9289 * m/sparc.h (NO_ARG_ARRAY):
9290 * m/sh3.h (NO_ARG_ARRAY):
9291 * m/mips.h (NO_ARG_ARRAY):
9292 * m/macppc.h (NO_ARG_ARRAY):
9293 * m/iris4d.h (NO_ARG_ARRAY):
9294 * m/intel386.h (NO_ARG_ARRAY):
9295 * m/ibms390x.h (NO_ARG_ARRAY):
9296 * m/ibms390.h (NO_ARG_ARRAY):
9297 * m/ibmrs6000.h (NO_ARG_ARRAY):
9298 * m/ia64.h (NO_ARG_ARRAY):
9299 * m/hp800.h (NO_ARG_ARRAY):
9300 * m/arm.h (NO_ARG_ARRAY):
9301 * m/amdx86-64.h (NO_ARG_ARRAY):
9302 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
9303
9304 2010-04-25 Eli Zaretskii <eliz@gnu.org>
9305
9306 * xdisp.c (display_line): Don't assume 2nd call to
9307 get_next_display_element cannot return zero. (Bug#6030)
9308 (iterate_out_of_display_property): New function, body from pop_it.
9309 (pop_it): Use it.
9310
9311 2010-04-24 Glenn Morris <rgm@gnu.org>
9312
9313 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
9314 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
9315 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
9316 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
9317
9318 2010-04-24 Eli Zaretskii <eliz@gnu.org>
9319
9320 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
9321 use `get_next_display_element' and `set_iterator_to_next' to
9322 advance to the next character, when looking for the character that
9323 begins the next row.
9324
9325 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
9326 definition of "struct Lisp_Symbol".
9327
9328 2010-04-24 Glenn Morris <rgm@gnu.org>
9329
9330 * Makefile.in (CRT_DIR): New variable, set by configure.
9331 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
9332 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
9333
9334 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9335
9336 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
9337
9338 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
9339
9340 Remove redundant flags.
9341 * s/freebsd.h (C_SWITCH_SYSTEM):
9342 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
9343 * s/netbsd.h (C_SWITCH_SYSTEM):
9344 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
9345 of these.
9346
9347 Simplify m/intel386.h.
9348 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
9349 user: ecrt0.c.
9350 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
9351 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
9352 the only user: s/unixware.h.
9353 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
9354 from m/intel386.h.
9355 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE):
9356 Definitions moved here from m/intel386.h.
9357
9358 * m/mips.h: Remove #if 0 code.
9359
9360 2010-04-23 Eli Zaretskii <eliz@gnu.org>
9361
9362 Fix display of composed characters from L2R scripts in bidi buffers.
9363 * xdisp.c (set_iterator_to_next, next_element_from_composition):
9364 After advancing IT past the composition, resync the bidi iterator
9365 with IT's position. (Bug#5977)
9366
9367 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9368
9369 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
9370 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
9371
9372 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9373
9374 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
9375
9376 2010-04-23 Eli Zaretskii <eliz@gnu.org>
9377
9378 Support `display' text properties and overlay strings in bidi buffers.
9379 * xdisp.c (pop_it): When the stack is popped after displaying
9380 from a string, bidi-iterate to exit from the text portion covered
9381 by the `display' property or overlay. (Bug#5988, bug#5920)
9382
9383 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9384
9385 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
9386 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
9387
9388 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
9389 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
9390
9391 Simplify STARTFILES definition.
9392 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
9393 relying on Makefile.in to define it.
9394 * s/cygwin.h (START_FILES): Likewise.
9395 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
9396
9397 Clean up Solaris code.
9398 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
9399 (LIB_MOTIF): Remove, configure takes care of this.
9400 (NOT_USING_MOTIF): Remove, unused.
9401 * xrdb.c: Remove #if 0-ed #include.
9402 (SYSV): Remove conditional for old SysV.
9403 * sysdep.c (closedir): Remove conditional code for Solaris,
9404 Solaris has closedir.
9405
9406 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
9407
9408 * xsettings.c (read_and_apply_settings): Check if current_font is
9409 NULL before strcmp (Bug#6001).
9410
9411 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
9412
9413 Clean up HP-UX files.
9414 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
9415 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
9416 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
9417 * s/hpux10-20.h: ... to the only user, here.
9418
9419 2010-04-21 Eli Zaretskii <eliz@gnu.org>
9420
9421 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
9422 use buffer-local values of paragraph-start and paragraph-separate.
9423 <paragraph_start_re, paragraph_separate_re>: Rename from
9424 fallback_paragraph_start_re and fallback_paragraph_separate_re.
9425 (Bug#5992)
9426
9427 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9428
9429 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
9430 current_tool_bar_style are new.
9431 (store_config_changed_event): Rename from store_font_changed_event.
9432 (XSETTINGS_TOOL_BAR_STYLE): New define.
9433 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
9434 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
9435 HAVE_XFT.
9436 (something_changedCB): store_font_changed_event is now
9437 store_config_changed_event.
9438 (parse_settings): Rename from parse_xft_settings.
9439 Read non-xft xsettings outside #ifdef HAVE_XFT.
9440 (read_settings): Rename from read_xft_settings.
9441 (apply_xft_settings): Take current settings as parameter. Do not
9442 call read_(xft)_settings.
9443 (read_and_apply_settings): New function.
9444 (xft_settings_event): Do non-xft stuff out of HAVE_XFT.
9445 Call read_and_apply_settings if there are settings to be read.
9446 (init_xsettings): Rename from init_xfd_settings.
9447 Call read_and_apply_settings unconditionally.
9448 (xsettings_initialize): Call init_xsettings.
9449 (Ftool_bar_get_system_style): New function.
9450 (syms_of_xsettings): Define Qmonospace_font_name and
9451 Qtool_bar_style. Initialize current_tool_bar_style to nil.
9452 defsubr Stool_bar_get_system_style. Fprovide on
9453 dynamic-setting.
9454 Move misplaced HAVE_GCONF.
9455
9456 * xsettings.h (Ftool_bar_get_system_style): Declare.
9457
9458 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
9459 Qtext, Qboth, Qboth_horiz are new.
9460 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
9461 Vtool_bar_style, tool_bar_max_label_size.
9462
9463 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
9464
9465 * keyboard.c: QClabel is new.
9466 (parse_tool_bar_item): Take out QClabel from tool bar items.
9467 Try to construct a label if ther is no QClabel.
9468 (syms_of_keyboard): Intern :label as QClabel.
9469
9470 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
9471 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
9472 New.
9473
9474 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
9475 dynamic-setting.el.
9476
9477 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
9478 (xg_make_tool_item, xg_show_toolbar_item): New function.
9479 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
9480 Call xg_make_tool_item to make a tool bar item.
9481 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
9482
9483 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
9484 into account for toolbars.
9485
9486 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9487
9488 * data.c (make_blv): Declarations before code (Bug#5993).
9489
9490 2010-04-21 Glenn Morris <rgm@gnu.org>
9491
9492 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
9493 Define using autoconf, not cpp.
9494 (LIBXSM): New variable, set by autoconf.
9495 (LIBXT): Use $LIBXSM.
9496
9497 2010-04-21 Dan Nicolaescu <local_user@dannlt>
9498
9499 Remove NOMULTIPLEJOBS, unused.
9500 * s/template.h (NOMULTIPLEJOBS):
9501 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
9502
9503 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
9504 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
9505 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
9506 detects -znocombreloc and passes it to the linker
9507 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
9508
9509 2010-04-21 Glenn Morris <rgm@gnu.org>
9510
9511 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
9512
9513 2010-04-21 Karel Klíč <kklic@redhat.com>
9514
9515 * Makefile.in (LIBSELINUX_LIBS): New.
9516 (LIBES): Add $LIBSELINUX_LIBS.
9517 * eval.c, lisp.h (call7): New function.
9518 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
9519 (Ffile_selinux_context, Fset_file_selinux_context):
9520 New functions.
9521 (Fcopy_file): New parameter preserve-selinux-context.
9522 (Frename_file): Preserve selinux context when renaming by copy-file.
9523
9524 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
9525 Eli Zaretskii <eliz@gnu.org>
9526
9527 Don't depend on cm.c or termcap.c on Windows, use stubs.
9528 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
9529 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
9530 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
9531 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
9532 (sys_tputs, sys_tgetstr): New stubs.
9533 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
9534 (tputs, tgetstr): New; define to sys_*.
9535
9536 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
9537
9538 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
9539
9540 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9541
9542 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
9543 Just signal a warning rather than an error when inside a let.
9544 (Fmake_variable_frame_local): Add the same test.
9545
9546 * font.c (syms_of_font): Make the style table vars read-only.
9547
9548 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
9549 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
9550
9551 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
9552
9553 2010-04-20 Eli Zaretskii <eliz@gnu.org>
9554
9555 Fix R2L paragraph display on TTY.
9556
9557 * xdisp.c (unproduce_glyphs): New function.
9558 (display_line): Use it when produced glyphs are discarded from R2L
9559 glyph rows.
9560 (append_composite_glyph): In R2L rows, prepend the glyph rather
9561 than appending it.
9562
9563 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
9564 rather than append it. Set up the resolved_level and bidi_type
9565 attributes of the appended glyph.
9566 (produce_special_glyphs): Mirror the backslash continuation
9567 character in R2L lines.
9568
9569 Implement display of R2L paragraphs in GUI sessions.
9570
9571 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
9572 append_stretch_glyph.
9573 (set_cursor_from_row) <cursor_x>: Remove unused variable.
9574 Fix off-by-one error in computing x at end of text in the row.
9575 (append_stretch_glyph): In reversed row, prepend the glyph rather
9576 than append it. Set resolved_level and bidi_type of the glyph.
9577 (extend_face_to_end_of_line): If the row is reversed, prepend a
9578 stretch glyph whose width is such that the rightmost glyph will be
9579 drawn at the right margin of the window. Fix off-by-one error on
9580 TTY frames in testing whether a line needs face extension.
9581 Fix face extension at ZV. If this is the last glyph row, use
9582 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
9583 region face.
9584 (set_cursor_from_row, display_line):
9585 Use MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
9586 row->continuation_lines_width.
9587 (next_element_from_buffer): Don't call bidi_paragraph_init if we
9588 are at ZV. Fixes a crash when reseated to ZV by
9589 try_window_reusing_current_matrix.
9590 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
9591 which happens with R2L glyph rows. Fixes a crash when inserting a
9592 character at end of an R2L line.
9593 (set_cursor_from_row): Don't be fooled by truncated rows: don't
9594 treat them as having zero-width characters. Improve comments.
9595 Don't reverse pos_before and pos_after for reversed glyph rows.
9596 Set cursor.x to negative value when the cursor might be on the
9597 left fringe.
9598 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
9599 left fringe, not the right one.
9600 (notice_overwritten_cursor, draw_phys_cursor_glyph)
9601 (erase_phys_cursor): For reversed cursor_row, support cursor on
9602 the left fringe.
9603
9604 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
9605 of continuation indicators on the fringes.
9606 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
9607 left fringe.
9608
9609 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
9610 draw cursor on the left fringe.
9611
9612 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
9613 cursor on the left fringe.
9614
9615 * dispnew.c (update_text_area): Handle reversed desired rows when
9616 the cursor is on the left fringe.
9617 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
9618 below, not by 0, for when the cursor is on the left fringe.
9619
9620 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
9621
9622 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
9623 widget is a scrollbar.
9624
9625 2010-04-20 Kenichi Handa <handa@m17n.org>
9626
9627 * charset.c (char_charset): Consider Vcharset_non_preferred_head
9628 only when the arg CHARSET_LIST is nil.
9629
9630 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9631
9632 Make variable forwarding explicit rather the using special values.
9633 Basically, this makes the structure of buffer-local values and object
9634 forwarding explicit in the type of Lisp_Symbols rather than use
9635 special Lisp_Objects for that. This tends to lead to slightly more
9636 verbose code, but is more C-like, simpler, and makes it easier to make
9637 sure we handled all cases, among other things by letting the compiler
9638 help us check it.
9639 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
9640 Removing forwarding objects.
9641 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
9642 (struct Lisp_Symbol): Make the various forms of variable-forwarding
9643 explicit rather than hiding them inside Lisp_Object "values".
9644 (XFWDTYPE): New macro.
9645 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
9646 (XBUFFER_LOCAL_VALUE): Remove.
9647 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
9648 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
9649 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
9650 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
9651 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
9652 Remove the Lisp_Misc_* header.
9653 (struct Lisp_Buffer_Local_Value): Redefine.
9654 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
9655 (struct Lisp_Misc_Any): Add filler to get the right size.
9656 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
9657 Lisp_Intfwd.
9658 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
9659 (DEFVAR_KBOARD): Allocate a forwarding object.
9660 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
9661 (let_shadows_global_binding_p): New function.
9662 (union Lisp_Val_Fwd): New type.
9663 (make_blv): New function.
9664 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
9665 (store_symval_forwarding, swap_in_global_binding, Fboundp)
9666 (swap_in_symval_forwarding, find_symbol_value, Fset)
9667 (let_shadows_buffer_binding_p, set_internal, default_value)
9668 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
9669 (Fkill_local_variable, Fmake_variable_frame_local)
9670 (Flocal_variable_p, Flocal_variable_if_set_p)
9671 (Fvariable_binding_locus):
9672 * xdisp.c (select_frame_for_redisplay):
9673 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
9674 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
9675 * frame.c (store_frame_param):
9676 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
9677 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
9678 value structure.
9679 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
9680 (clone_per_buffer_values): Only adjust markers into the current buffer.
9681 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
9682 (Fbuffer_local_value, set_buffer_internal_1)
9683 (swap_out_buffer_local_variables):
9684 Adapt to the new symbol value structure.
9685 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
9686 (defvar_per_buffer): Take a new arg for the fwd object.
9687 (buffer_lisp_local_variables): Return a proper alist (different fix
9688 for bug#4138).
9689 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
9690 (Fgarbage_collect): Don't handle buffer_defaults specially.
9691 (mark_object): Handle new symbol value structure rather than the old
9692 special Lisp_Misc_* objects.
9693 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
9694 * term.c (set_tty_color_mode):
9695 * bidi.c (bidi_initialize): Don't access the ->value field directly.
9696 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
9697 a buffer_local_flags.
9698 * print.c (print_object): Get rid of impossible forwarding objects.
9699
9700 2010-04-19 Eli Zaretskii <eliz@gnu.org>
9701
9702 * bidi.c (bidi_get_type, bidi_get_category)
9703 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
9704 (bidi_type_of_next_char, bidi_level_of_next_char):
9705 Declare static. Use `INLINE' rather than `inline'.
9706
9707 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
9708
9709 * dired.c (Ffile_attributes): Fix typo in docstring.
9710
9711 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9712
9713 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
9714 NSInteger (Bug#5811).
9715
9716 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9717
9718 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
9719 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
9720
9721 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9722
9723 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
9724
9725 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
9726
9727 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
9728 terminal frames (Bug#5837).
9729
9730 2010-04-19 Eli Zaretskii <eliz@gnu.org>
9731
9732 * .gdbinit (xsubchartable): New command.
9733
9734 2010-04-19 Eli Zaretskii <eliz@gnu.org>
9735
9736 * xdisp.c (display_line): Don't write beyond the last glyph row in
9737 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
9738 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
9739 and
9740 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
9741
9742 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
9743
9744 * alloc.c (Fpurecopy): Hash-cons if requested.
9745 (syms_of_alloc): Update purify-flag docstring.
9746
9747 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
9748
9749 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
9750 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
9751
9752 2010-04-17 Eli Zaretskii <eliz@gnu.org>
9753
9754 Fix a crash when an NSM character is inserted at BEGV.
9755
9756 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
9757 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
9758 NEUTRAL_B or UNKNOWN_BT.
9759
9760 2010-04-16 Eli Zaretskii <eliz@gnu.org>
9761
9762 * xdisp.c (set_cursor_from_row): Don't consider possibility of
9763 other rows with cursor unless they are different from this row and
9764 this row is part of a continued line. (Bug#5943)
9765
9766 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
9767
9768 * s/freebsd.h: Restore osreldate.h include.
9769 Suggested by Naohiro Aota.
9770
9771 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
9772
9773 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
9774
9775 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
9776
9777 * s/cygwin.h: Avoid linking against static libgcc.
9778
9779 2010-04-15 Juri Linkov <juri@jurta.org>
9780
9781 * window.c: Add Qscroll_command.
9782 Remove Vscroll_preserve_screen_position_commands.
9783 (window_scroll_pixel_based, window_scroll_line_based): Check the
9784 `scroll-command' property on the last command instead of searching
9785 the last command in Vscroll_preserve_screen_position_commands.
9786 (syms_of_window): Initialize and staticpro `Qscroll_command'.
9787 Put Qscroll_command property on Qscroll_up and Qscroll_down.
9788 (scroll-preserve-screen-position): Doc fix.
9789 (Vscroll_preserve_screen_position_commands): Remove variable.
9790
9791 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
9792
9793 * xdisp.c (message): Do not use NO_ARG_ARRAY.
9794
9795 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
9796
9797 Reduce cpp use in Makefile.in.
9798 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
9799 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
9800 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
9801 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
9802 (CRT0_COMPILE): Remove, inline it in the only user.
9803
9804 2010-04-14 Juri Linkov <juri@jurta.org>
9805
9806 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
9807 `scroll-up-command' and `M-v' from `scroll-down' to
9808 `scroll-down-command'.
9809
9810 2010-04-14 Juri Linkov <juri@jurta.org>
9811
9812 * window.c (Vscroll_preserve_screen_position_commands): New variable
9813 with the default value as the list of Qscroll_down and Qscroll_up.
9814 (window_scroll_pixel_based, window_scroll_line_based): Search the
9815 last command in the list Vscroll_preserve_screen_position_commands
9816 instead of comparing with Qscroll_up and Qscroll_down.
9817
9818 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
9819
9820 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
9821 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
9822 does that.
9823
9824 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
9825 to zero.
9826
9827 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9828
9829 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
9830
9831 Try to solve the problem of spurious EOF chars in long lines of text
9832 sent to interactive subprocesses.
9833 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
9834 (system_process_attributes): Remove unused var `ttotal'.
9835 * process.c (send_process): Don't bother breaking long line with EOF
9836 chars when talking to ttys any more.
9837 (wait_reading_process_output): Output a warning when called in such
9838 a way that it could block without being interruptible.
9839
9840 Try to detect file modification within the same second.
9841 * buffer.h (struct buffer): New field modtime_size.
9842 * buffer.c (reset_buffer): Initialize it.
9843 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
9844 (Fverify_visited_file_modtime): Check it.
9845 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
9846 (Fset_visited_file_modtime): Set (or clear) it.
9847
9848 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9849
9850 * process.c (status_notify): Remove unused var `ro'.
9851
9852 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
9853
9854 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
9855 more than one visual (Bug#5938).
9856
9857 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
9858
9859 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
9860 Undefine.
9861
9862 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
9863
9864 Remove C_SWITCH_SYSTEM_TEMACS.
9865 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
9866 (malloc, realloc, free): Use emacs, not temacs for conditional
9867 definition.
9868
9869 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
9870 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
9871
9872 Use autoconf, not cpp for some variables.
9873 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
9874 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
9875 (ALL_CFLAGS): Use them as make variables.
9876 (really-lwlib, really-oldXMenu): Do not pass them.
9877
9878 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
9879
9880 * xmenu.c (apply_systemfont_to_dialog): New.
9881 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
9882
9883 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9884
9885 * process.c (exec_sentinel): Preserve current-buffer.
9886
9887 * process.c (read_process_output): Move the save-current-buffer to
9888 apply to both the filter and the non-filter branches.
9889
9890 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
9891
9892 * s/msdos.h (UNEXEC): New definition.
9893
9894 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9895
9896 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
9897 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
9898
9899 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
9900 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
9901 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
9902 TRY_WINDOW_CHECK_MARGINS.
9903
9904 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
9905 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
9906 width only when it is for padding.
9907
9908 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
9909
9910 * xfns.c (Fx_show_tip): Call try_window in a loop until
9911 fonts_changed_p is zero (Bug#2423).
9912
9913 2010-04-08 Eli Zaretskii <eliz@gnu.org>
9914
9915 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
9916 the end of TEXT_AREA. (Bug#5856)
9917
9918 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
9919
9920 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
9921 HAVE_GCONF.
9922
9923 2010-04-08 Eli Zaretskii <eliz@gnu.org>
9924
9925 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
9926 prev.orig_type, for resolving type of NSM. (Bug#5858)
9927
9928 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
9929
9930 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
9931 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
9932 in current_font.
9933 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
9934 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
9935 New functions.
9936 (syms_of_xsettings): Initialize current_font.
9937 defsubr Sfont_get_system_normal_font.
9938
9939 * xsettings.h (Ffont_get_system_normal_font)
9940 (xsettings_get_system_normal_font): Declare.
9941
9942 * xfns.c (extern xlwmenu_default_font): Remove.
9943 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
9944 to xlwmenu.c.
9945
9946 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
9947 menu items in UTF-8.
9948
9949 * xmenu.c: Include xsettings.h and xlwmenu.h if USE_LUCID.
9950 (apply_systemfont_to_menu): New function.
9951 (set_frame_menubar, create_and_show_popup_menu):
9952 Call apply_systemfont_to_menu.
9953
9954 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
9955
9956 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
9957 FRAME_LINE_TO_PIXEL_Y.
9958
9959 * xterm.c (x_set_window_size_1): Don't add border_width/height to
9960 pixelwidth/height.
9961
9962 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
9963
9964 Simplify code for HP machines.
9965 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
9966 for GNU_LINUX, not needed.
9967 (UNEXEC, NEED_BSDTTY): Move definitions...
9968 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
9969
9970 * m/iris4d.h (UNEXEC): Move definition ...
9971 * s/irix6-5.h (UNEXEC): ... here.
9972
9973 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
9974
9975 * xfns.c (set_machine_and_pid_properties): New function.
9976 (Fx_create_frame): Call set_machine_and_pid_properties.
9977
9978 2010-04-03 Eli Zaretskii <eliz@gnu.org>
9979
9980 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char):
9981 Check bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
9982 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
9983
9984 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
9985 in this function. (Bug#5703)
9986
9987 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
9988
9989 * nsterm.h: Fix last change.
9990
9991 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
9992
9993 * m/intel386.h (NO_REMAP): Move definition ...
9994 * s/msdos.h (NO_REMAP): ... here.
9995
9996 * m/vax.h (CRT0_DUMMIES): Remove, unused.
9997
9998 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
9999 used on those platforms.
10000
10001 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
10002
10003 Remove extern errno declarations.
10004 * xterm.c:
10005 * xrdb.c:
10006 * w32term.c:
10007 * unexec.c:
10008 * unexaix.c:
10009 * sysdep.c:
10010 * process.c:
10011 * lread.c:
10012 * keyboard.c:
10013 * floatfns.c:
10014 * filelock.c:
10015 * fileio.c:
10016 * emacs.c (main):
10017 * ecrt0.c:
10018 * dispnew.c:
10019 * callproc.c:
10020 * buffer.c: Remove errno extern declarations.
10021 * s/netbsd.h (NEED_ERRNO): Remove.
10022
10023 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
10024
10025 Remove all uses of LIBX11_SYSTEM.
10026 * Makefile.in (LIBX11_SYSTEM): Remove.
10027 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
10028 instead.
10029
10030 2010-04-01 Eli Zaretskii <eliz@gnu.org>
10031
10032 Remove support for DJGPP v1.x (bug#5813).
10033
10034 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
10035 * s/msdos.h:
10036 * unexec.c (make_hdr, copy_text_and_data):
10037 * sysdep.c (wait_for_termination, sys_subshell):
10038 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
10039 (IT_set_terminal_modes, __write, _rename, gethostname)
10040 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
10041 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
10042 the value of __DJGPP__.
10043 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
10044 compatibility code.
10045 * lread.c:
10046 * gmalloc.c (memalign):
10047 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
10048 * emacs.c (main):
10049 * dosfns.c (init_dosfns):
10050 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
10051
10052 2010-04-01 Eli Zaretskii <eliz@gnu.org>
10053
10054 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
10055 string with `cursor' property comes from an `after-string'
10056 overlay. (Bug#5816)
10057
10058 2010-04-01 Glenn Morris <rgm@gnu.org>
10059
10060 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
10061 Define as Makefile variables.
10062 (LIBX): Use above variables rather than directly using autoconf.
10063
10064 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
10065
10066 Clean up BSD_SYSTEM use.
10067 * xterm.c:
10068 * process.c:
10069 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
10070 for including <sys/ioctl.h>.
10071 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
10072 code is only used for MSDOS.
10073
10074 2010-03-31 Juri Linkov <juri@jurta.org>
10075
10076 * image.c: Add `Qextension_data'.
10077 (syms_of_image): Initialize and staticpro `Qextension_data'.
10078 (Fimage_metadata): Rename from `Fimage_extension_data'.
10079 (gif_load): Put GIF extension data to the property
10080 `Qextension_data'.
10081
10082 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10083
10084 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
10085 * nsterm.h: Fix prototype.
10086
10087 2010-03-31 Eli Zaretskii <eliz@gnu.org>
10088
10089 * xdisp.c (highlight_trailing_whitespace): Support highlight of
10090 trailing whitespace in right-to-left rows.
10091
10092 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10093
10094 Get rid of the direct_output optimizations.
10095 * keyboard.c (nonundocount): Remove extern declaration.
10096 (command_loop_1): Remove brittle optimisation for cheap and
10097 common operations.
10098 * xdisp.c (redisplay_internal): Don't bother checking
10099 redisplay_performed_directly_p any more.
10100 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
10101 any more.
10102 * dispnew.c (redisplay_performed_directly_p)
10103 (direct_output_for_insert, direct_output_forward_char):
10104 * dispextern.h (redisplay_performed_directly_p)
10105 (direct_output_for_insert, direct_output_forward_char): Remove.
10106 * cmds.c (nonundocount): Make it static.
10107
10108 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
10109
10110 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
10111
10112 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
10113
10114 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
10115 invisible (Bug#5766).
10116
10117 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
10118
10119 * xdisp.c (x_consider_frame_title, update_window_cursor):
10120 Remove HAVE_NS conditionals.
10121 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
10122
10123 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
10124 filename for the title.
10125 (ns_set_doc_edited): Do nothing if the selected window is a
10126 minibuffer window.
10127
10128 * nsterm.h: Add prototypes for ns_set_name_as_filename and
10129 ns_set_doc_edited.
10130
10131 * nsterm.m: Remove unneeded prototype.
10132
10133 2010-03-31 Glenn Morris <rgm@gnu.org>
10134
10135 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
10136 in the DOC file. (Bug#5336)
10137
10138 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
10139
10140 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
10141
10142 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
10143
10144 * window.c (keys_of_window): Remove redundant/overridden bindings.
10145
10146 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10147
10148 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
10149 Restore original behavior when the iterator is not bidi_p.
10150
10151 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
10152
10153 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
10154
10155 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10156
10157 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
10158 are outside the range of cached character positions.
10159
10160 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
10161
10162 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
10163
10164 2010-03-30 Eli Zaretskii <eliz@gnu.org>
10165
10166 Initial support for bidirectional editing.
10167
10168 * Makefile.in (obj): Include bidi.o.
10169 (bidi.o): New target.
10170
10171 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
10172 ($(BLD)/bidi.$(O)): New target.
10173
10174 * bidi.c: New file.
10175
10176 * buffer.h (struct buffer): New members bidi_display_reordering
10177 and bidi_paragraph_direction.
10178
10179 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
10180 and bidi_paragraph_direction.
10181 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
10182 and bidi-paragraph-direction.
10183 (Fbuffer_swap_text): Swap the values of
10184 bidi_display_reordering and bidi_paragraph_direction.
10185
10186 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
10187 (bidi_type_t, bidi_dir_t): New types.
10188 (bidi_saved_info, bidi_stack, bidi_it): New structures.
10189 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
10190 prev_stop, base_level_stop, and eol_pos.
10191 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
10192 (IT_STACK_SIZE): Enlarge to 5.
10193 (struct glyph_row): New member reversed_p.
10194 <string_buffer_position>: Update prototype.
10195 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
10196 glyph_row if bidi_it.paragraph_dir == R2L.
10197 (struct glyph): New members resolved_level and bidi_type.
10198
10199 * dispnew.c (direct_output_forward_char): Give up if we need bidi
10200 processing or buffer's direction is right-to-left.
10201 (prepare_desired_row): Preserve the reversed_p flag.
10202 (row_equal_p): Compare the reversed_p attributes as well.
10203
10204 * xdisp.c (init_iterator): Initialize it->bidi_p.
10205 Call bidi_init_it and set it->paragraph_embedding from the current
10206 buffer's value of bidi_paragraph_direction.
10207 (reseat_1): Initialize bidi_it.first_elt.
10208 (set_iterator_to_next, next_element_from_buffer): Use the value of
10209 paragraph_embedding to determine the paragraph direction.
10210 (set_iterator_to_next): Under bidi reordering, call
10211 bidi_get_next_char_visually. Call bidi_paragraph_init if the
10212 new_paragraph flag is set in the bidi iterator.
10213 (next_element_from_buffer): If bidi_it.first_elt is set,
10214 initialize paragraph direction and find the first character to
10215 display in the visual order. If reseated to a middle of a line,
10216 prime the bidi iterator starting at the line's beginning.
10217 Handle the situation where we overstepped stop_charpos due to
10218 non-linearity of the bidi iteration. Likewise for when we back up
10219 beyond the previous stop_charpos. When moving across stop_charpos,
10220 record it in prev_stop.
10221 (display_line): Set row->end and it->start for the next row to the
10222 next character in logical order. Always extend reversed_p rows to
10223 the end of line, even if they end at ZV. Copy the reversed_p flag
10224 to the next glyph row. Keep calling set_cursor_from_row for
10225 bidi-reordered rows even if we already have a possible candidate
10226 for cursor position. Set row_end after all the row's glyphs have
10227 been produced, by looping over the glyphs. Record the position
10228 after EOL in it->eol_pos, and use it to set end_pos of the last
10229 row produced for a continued line.
10230 <Qright_to_left, Qleft_to_right>: New variables.
10231 (syms_of_xdisp): Initialize and staticpro them.
10232 (string_buffer_position_lim): New function.
10233 (string_buffer_position): Most of code moved to
10234 string_buffer_position_lim. Last argument and return value are
10235 now EMACS_INT; all callers changed.
10236 (set_cursor_from_row): Rewritten to support bidirectional text and
10237 reversed glyph rows.
10238 (text_outside_line_unchanged_p, try_window_id):
10239 Disable optimizations if we are reordering bidirectional text and the
10240 paragraph direction can be affected by the change.
10241 (append_glyph, append_composite_glyph)
10242 (produce_image_glyph, append_stretch_glyph): Set the
10243 resolved_level and bidi_type members of each glyph.
10244 (append_glyph): If the glyph row is reversed, prepend the glyph
10245 rather than appending it.
10246 (handle_stop_backwards): New function.
10247 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
10248 (reseat): Call handle_stop_backwards to recompute prev_stop and
10249 base_level_stop for the new position.
10250 (handle_invisible_prop): Under bidi iteration, skip invisible text
10251 using bidi_get_next_char_visually. If we are `reseat'ed, init the
10252 paragraph direction. Update IT->prev_stop after skipping
10253 invisible text.
10254 (move_it_in_display_line_to): New variables prev_method
10255 and prev_pos. Compare for strict equality in
10256 BUFFER_POS_REACHED_P.
10257 (try_cursor_movement): Examine all the candidate rows that occlude
10258 point, to return the best match. If rows are bidi-reordered
10259 and point moved backwards, back up to the row that is not a
10260 continuation line, and start looking for a suitable row from
10261 there.
10262
10263 * term.c (append_glyph): Reverse glyphs by pre-pending them,
10264 rather than appending, if the glyph_row's reversed_p flag is set.
10265 Set the resolved_level and bidi_type members of each glyph.
10266
10267 * .gdbinit (pbiditype): New command.
10268 (pgx): Use it to display bidi level and type of the glyph.
10269 (pitx): Display some bidi information about the iterator.
10270 (prowlims, pmtxrows): New commands.
10271
10272 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
10273
10274 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
10275 * s/usg5-4.h (LIBS_DEBUG):
10276 * s/irix6-5.h (C_DEBUG_SWITCH):
10277 * s/gnu-linux.h (LIBS_DEBUG):
10278 * s/darwin.h (LIBS_DEBUG):
10279 * s/bsd-common.h (LIBS_DEBUG):
10280 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
10281 * m/iris4d.h (LIBS_DEBUG):
10282 * m/hp800.h (LIBS_DEBUG): Remove definitions.
10283
10284 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
10285 (LIBS_DEBUG): Remove definition.
10286
10287 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
10288
10289 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
10290 Windows.
10291
10292 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10293
10294 * process.c (Fmake_network_process): Don't call turn_on_atimers around
10295 `connect' (Bug#5723).
10296
10297 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
10298
10299 * process.c (Fmake_network_process): Call `select' for interrupted
10300 `connect' rather than creating new socket (Bug#5173).
10301
10302 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
10303
10304 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
10305
10306 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
10307
10308 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
10309
10310 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10311
10312 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
10313 XLoadQueryFont.
10314
10315 2010-03-24 Kenichi Handa <handa@m17n.org>
10316
10317 * coding.c (decode_coding_ccl): Fix previous change for the
10318 multibyte case.
10319 (encode_coding_ccl): Don't setup ccl program here. Fix for the
10320 case that the output buffer is fullfilled.
10321 (encode_coding): Setup ccl program here.
10322
10323 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
10324
10325 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
10326
10327 Simplify LIBS_MACHINE definitions.
10328 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
10329 * m/iris4d.h (LIBS_MACHINE): Likewise.
10330 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
10331 * s/aix4-2.h (LIBS_SYSTEM): ... here.
10332 * s/netbsd.h: Remove commented out code.
10333
10334 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
10335
10336 Remove dead code dealing with POSIX_SIGNALS.
10337 * atimer.c (set_alarm): Remove dead code, all USG systems define
10338 POSIX_SIGNALS.
10339 * data.c (arith_error): Likewise.
10340 * keyboard.c (input_available_signal, handle_user_signal)
10341 (interrupt_signal): Likewise.
10342 * process.c (sigchld_handler): Likewise.
10343 (create_process): Remove if 0 code. Remove HPUX conditional when
10344 !defined (POSIX_SIGNALS), it cannot be true.
10345 * syssignal.h: Remove USG5_4 and USG conditionals when
10346 !POSIX_SIGNALS, they cannot be true.
10347
10348 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
10349 NO_SOCK_SIGIO, not used anymore.
10350
10351 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
10352
10353 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
10354 support vax on BSDs.
10355
10356 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
10357 * s/aix4-2.h (ORDINARY_LINK): ... here.
10358
10359 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
10360
10361 * Makefile.in (abs_builddir): Define.
10362 (bootstrap_exe): Use it.
10363 (VPATH): Use $(srcdir) instead of @srcdir@.
10364
10365 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
10366
10367 * Makefile.in (bootstrap_exe): Use an absolute name.
10368
10369 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10370
10371 Remove support for old GNU/Linux using libc version 5.
10372 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
10373 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
10374
10375 Consolidate redundant definitions in s/bsd-common.h.
10376 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10377 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10378 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
10379 doing it in all files that include this one.
10380 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10381 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10382 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10383 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10384 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10385 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10386 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10387 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10388 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10389
10390 Consolidate redundant definitions.
10391 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
10392 it's undefined in all files that include this one.
10393 (POSIX_SIGNALS): Define here instead of doing it in all files that
10394 include this one.
10395 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10396 (POSIX_SIGNALS): Do not define.
10397 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10398 (POSIX_SIGNALS): Do not define.
10399 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10400 (POSIX_SIGNALS): Do not define.
10401
10402 Remove support for old UNIX System V systems.
10403 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
10404 * s/usg-5-4-2.h: Remove.
10405
10406 Remove support for Solaris on PPC and for old versions.
10407 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
10408 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
10409 that cancel each other.
10410 * s/sol2-3.h:
10411 * s/sol2-4.h:
10412 * s/sol2-5.h: Remove.
10413 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
10414 (NO_REMAP): Remove, unused.
10415 (UNEXEC): Move definition ...
10416 * s/aix4-2.h (UNEXEC): ... here.
10417
10418 * s/openbsd.h: Remove support for non-ELF and for systems that do
10419 not support shared libraries.
10420 * s/netbsd.h:
10421 * s/freebsd.h: Likewise.
10422
10423 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10424
10425 Remove non-working support for lynxos 3.0.
10426 * s/lynxos.h: Remove file.
10427
10428 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
10429 COFF_BSD_SYMBOLS, nothing defines it anymore.
10430
10431 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10432
10433 Remove obsolete uses of HAVE_SHM.
10434 * emacs.c (standard_args):
10435 (Fdump_emacs):
10436 (syms_of_emacs): Remove code depending on HAVE_SHM.
10437
10438 * alloc.c: Remove HAVE_SHM dependent definition.
10439
10440 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
10441
10442 2010-03-18 Glenn Morris <rgm@gnu.org>
10443
10444 * emacs.c (USAGE4): Hard-code bug address.
10445 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
10446 (bug_reporting_address): Remove.
10447 (main): Don't call bug_reporting_address.
10448
10449 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
10450 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
10451
10452 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
10453
10454 * xfns.c (Fx_create_frame):
10455 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
10456 on left.
10457
10458 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
10459
10460 * editfns.c (Fformat): Account for string precision when computing
10461 field width (Bug#5710).
10462
10463 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
10464
10465 * xfns.c (Fx_create_frame): Set default to Qright.
10466
10467 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
10468 all window systems.
10469
10470 2010-03-12 Eli Zaretskii <eliz@gnu.org>
10471
10472 These changes remove termcap.c from the build on Posix platforms.
10473 * Makefile.in (termcapobj): Move termcap.o from here...
10474 (MSDOS_OBJ): ...to here.
10475 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
10476 now identical to when LIBS_TERMCAP is defined.
10477
10478 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
10479
10480 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
10481
10482 * config.in: Regenerated. (See top-level ChangeLog.)
10483
10484 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
10485
10486 * Branch for 23.2.
10487
10488 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
10489
10490 Cleanup setup of gl_state in various parts of the code.
10491 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
10492 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
10493 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
10494 (skip_chars):
10495 * regex.c (regex_compile): Use it.
10496 (re_compile_pattern): Don't set gl_state.current_syntax_table since
10497 it's now set in regex_compile when/if we need it.
10498
10499 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
10500
10501 Make it possible to C-g in a tight bytecode loop again (bug#5680).
10502 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
10503 (QUIT): Use it to consolidate code and remove redundancy.
10504 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
10505
10506 * regex.c (regex_compile): Setup gl_state as well.
10507
10508 * syntax.c (skip_chars): Setup gl_state (bug#3823).
10509 (in_classes): Use CONSP before XCAR/XCDR.
10510
10511 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
10512
10513 * keymap.c (Fwhere_is_internal): Use Fequal to compare
10514 definitions, so that keyboard macros are correctly handled
10515 (Bug#5481).
10516
10517 2010-03-02 Eli Zaretskii <eliz@gnu.org>
10518
10519 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
10520 text that could be relocated inside the call to emacs_mule_char.
10521 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
10522 (CODING_DECODE_CHAR): Add a comment describing its purpose.
10523
10524 2010-03-02 Kenichi Handa <handa@m17n.org>
10525
10526 * character.c (parse_str_as_multibyte): Fix handling of the
10527 multibyte form of raw-bytes.
10528 (str_as_multibyte): Likewise.
10529
10530 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
10531 form of raw-bytes.
10532
10533 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
10534
10535 * charset.c (load_charset_map_from_file)
10536 (load_charset_map_from_vector): Zero out allocated
10537 charset_map_entries before using them.
10538
10539 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
10540
10541 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
10542
10543 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
10544
10545 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
10546 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
10547
10548 2010-02-26 Kenichi Handa <handa@m17n.org>
10549
10550 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
10551
10552 * xdisp.c (reseat_to_string): Fix previous change.
10553
10554 2010-02-26 David Reitter <david.reitter@gmail.com>
10555
10556 * nsfont.m (nsfont_draw): ns_antialias_text should be a
10557 Lisp_Object (Bug#4736).
10558
10559 2010-02-25 Kenichi Handa <handa@m17n.org>
10560
10561 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
10562
10563 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
10564
10565 * xterm.c (XTflash): Move declarations before statements.
10566
10567 * gtkutil.c (xg_get_gdk_display): Remove (unused).
10568 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
10569 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
10570 (xg_create_tool_bar): Remove unused variables.
10571 (x_wm_set_size_hint): Move declarations before statements.
10572 (xg_create_frame_widgets): Remove variable grav.
10573
10574 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
10575
10576 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
10577
10578 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
10579
10580 * term.c (fatal): Add a final \n if needed (bug#5596).
10581
10582 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
10583
10584 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
10585
10586 2010-02-18 Glenn Morris <rgm@gnu.org>
10587
10588 * callint.c (Finteractive): Doc fix.
10589
10590 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
10591
10592 * coding.c (record_conversion_result):
10593 Handle CODING_RESULT_INSUFFICIENT_DST.
10594 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
10595 memory allocation error.
10596
10597 2010-02-17 Kenichi Handa <handa@m17n.org>
10598
10599 * coding.c (decode_coding_ccl): Don't setup ccl program here.
10600 Fix for the case that the output buffer is fullfilled.
10601 (decode_coding): Setup ccl program here. Keep looping when the
10602 decoder stopped because the output buffer is
10603 fullfilled (bug#5534).
10604
10605 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
10606
10607 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
10608
10609 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
10610 bug #5571.
10611 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
10612 overdrawn.
10613
10614 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
10615
10616 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
10617 doing_interact here.
10618 (ice_connection_closed): New function.
10619 (x_session_check_input, smc_die_CB, ice_io_error_handler)
10620 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
10621 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
10622 returns I/O error.
10623 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
10624 bug #5512.
10625
10626 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
10627
10628 * nsfont.m (nsfont_open): The system's value for the font descent
10629 is negative, so round it down to avoid clipping.
10630
10631 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
10632
10633 * charset.c (load_charset_map_from_file)
10634 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
10635 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
10636
10637 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
10638
10639 * charset.c (load_charset_map_from_file): Allocate large
10640 charset_map_entries structure on the heap rather than the stack.
10641 (Bug#5526).
10642
10643 2010-01-31 Kenichi Handa <handa@m17n.org>
10644
10645 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
10646 size in NAME is invalid, return -1 (Bug#5396).
10647
10648 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
10649
10650 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
10651 <deactivated@gmail.com> (Bug#3605).
10652
10653 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
10654
10655 * fileio.c (Frename_file): Correctly rename symlinks to
10656 directories (Bug#5496).
10657
10658 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
10659
10660 * nsterm.m (ns_ring_bell): Handle visible bell like X.
10661
10662 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
10663
10664 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
10665
10666 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
10667
10668 * frame.c (DEFAULT_ROWS): Change default to 35.
10669
10670 * xfns.c (x_default_font_parameter): Change default XFT font to
10671 monospace-10 (Bug#3643).
10672
10673 2010-01-29 Eli Zaretskii <eliz@gnu.org>
10674
10675 * w32inevt.c (key_event): Remove unnecessary comparison of
10676 event->uChar.AsciiChar with 128.
10677
10678 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
10679
10680 * fileio.c (Frename_file): Fix last change (Bug#5487).
10681
10682 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
10683
10684 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
10685
10686 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
10687
10688 * xfns.c (Fx_create_frame): Remove window size matching code from
10689 2010-01-15.
10690 (x_get_current_desktop, x_get_desktop_workarea): Remove.
10691
10692 2010-01-27 Jason Rumney <jasonr@gnu.org>
10693
10694 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
10695 (key_event): Use unicode for characters 128 and higher (Bug#4567).
10696
10697 2010-01-27 Kenichi Handa <handa@m17n.org>
10698
10699 * regex.c (analyse_first): Fix setting of fastmap for unibyte
10700 pattern string (Bug#4209).
10701
10702 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
10703
10704 * fileio.c (Frename_file): Call copy-directory and
10705 delete-directory for directories, in order to handle cross-device
10706 renaming (Bug#3353).
10707
10708 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
10709
10710 * xfns.c (Fx_create_frame): If frame height is too big, try
10711 sizes 24 and 10. Bug #3643.
10712
10713 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
10714
10715 Try and fix bug#788, hopefully for real this time.
10716 * keymap.c (shadow_lookup): Add `remap' arg.
10717 (describe_map, describe_vector): Update calls to shadow_lookup.
10718 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
10719 `remapped' so this flag is applicable to `sequence'. Be careful to
10720 perform remapping during shadow_lookup check of remapped_sequences.
10721
10722 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
10723
10724 * image.c (png_load): Use png_sig_cmp instead of the obsolete
10725 png_check_sig, which has been removed in libpng 1.4.
10726
10727 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
10728
10729 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
10730 lacks this header file).
10731
10732 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10733
10734 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
10735 as in Emacs 22.
10736
10737 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10738
10739 * lisp.h (make_pure_string): String pointer arg now points to const.
10740
10741 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
10742 args now point to const.
10743
10744 2010-01-22 Eli Zaretskii <eliz@gnu.org>
10745
10746 * lread.c (Fload): Don't treat files without .elc extension as
10747 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
10748 them. (bug#5303)
10749
10750 2010-01-20 Kenichi Handa <handa@m17n.org>
10751
10752 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
10753 treat the source as actual byte sequence.
10754
10755 2010-01-19 Alan Mackenzie <acm@muc.de>
10756
10757 Fix spurious before-change-functions invocation from (insert ?\n).
10758 * textprop.c (set_text_properties): Rename parameter
10759 `signal_after_change_p' to `coherent_change_p', and make the
10760 invocation of `modify_region' conditional on it.
10761
10762 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
10763
10764 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
10765 for debug purpose.
10766 (syms_of_xsettings): Declare xft-settings.
10767
10768 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
10769
10770 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
10771
10772 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
10773
10774 * xterm.c (event_handler_gdk): Block input (Bug#5037).
10775
10776 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
10777
10778 * emacs.c (standard_args): Adjust arg priorities to reflect how
10779 they are processed in startup.el.
10780
10781 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
10782
10783 * Makefile.in (lisp, shortlisp): Update.
10784
10785 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
10786
10787 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
10788 code, link the new kboard into all_kboard before running Lisp code,
10789 and protect the new terminal with GCPRO (Bug#5365).
10790 (x_term_init): Remove unused var `atom'.
10791 (x_delete_display, x_delete_terminal): Remove unused var `i'.
10792
10793 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
10794
10795 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
10796 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
10797 to find out usable size of the desktop. Don't make frames larger than
10798 this. Bug #3643.
10799
10800 2010-01-15 Kenichi Handa <handa@m17n.org>
10801
10802 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
10803
10804 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
10805
10806 * nsterm.m (Qnone): Define.
10807
10808 * nsfns.m (Qnone): Move definition to nsterm.m.
10809
10810 2010-01-14 Kenichi Handa <handa@m17n.org>
10811
10812 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
10813 systems.
10814
10815 2010-01-14 Kenichi Handa <handa@m17n.org>
10816
10817 Make auto-composition work on all buffers even if they are
10818 fundamental mode.
10819
10820 * composite.c (Vauto_composition_mode): New variable.
10821 (composition_compute_stop_pos): Check Vauto_composition_mode
10822 instead of Vauto_composition_function.
10823 (composition_adjust_point, Ffind_composition_internal): Likewise.
10824 (syms_of_composite): Declare Lisp variable
10825 "auto-composition-mode" here.
10826
10827 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
10828
10829 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
10830 during call to vendor-specific-keysyms (Bug#5365).
10831
10832 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10833
10834 * keyboard.c (input_available_signal) [SYNC_INPUT]:
10835 Call SIGNAL_THREAD_CHECK (Bug#5333).
10836
10837 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
10838 Call SIGNAL_THREAD_CHECK.
10839
10840 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
10841
10842 Try to fix bug#5314. This is probably not the final word, tho.
10843 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
10844 recent-auto-save-p as a side-effect.
10845 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
10846 * buffer.c (Fkill_buffer, reset_buffer):
10847 * editfns.c (Fsubst_char_in_region):
10848 * fileio.c (Finsert_file_contents, Fdo_auto_save)
10849 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
10850
10851 2010-01-13 Kenichi Handa <handa@m17n.org>
10852
10853 Display buffer name, etc. in mode line by composing correctly.
10854
10855 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
10856 STRING is not nil.
10857 (display_mode_element): Adjust for the change of
10858 decode_mode_spec and display_line.
10859 (decode_mode_spec): Change arg MULTIBYTE to STRING.
10860 (display_string): Handle the case that STRING is non-null and
10861 LISP_STRING is not nil.
10862
10863 * xterm.c (x_draw_composite_glyph_string_foreground):
10864 Pay attention to s->face->overstrike.
10865
10866 * composite.c (composition_reseat_it): Don't check PT if STRING is
10867 non nil.
10868
10869 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10870
10871 * keyboard.c (read_char): Don't apply previous change when current
10872 buffer is unchanged by command execution.
10873
10874 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
10875
10876 * keyboard.c (read_char): Return after executing from special map.
10877
10878 2010-01-12 Glenn Morris <rgm@gnu.org>
10879
10880 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
10881 bug-gnu-emacs rather than emacs-pretest-bug.
10882
10883 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
10884
10885 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
10886 initializing the Lisp variables that depend on them.
10887
10888 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10889
10890 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
10891 Clear areas that will not be updated after change of menu bar lines.
10892 Clear the menu bar window's current matrix when the window gets empty.
10893
10894 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
10895
10896 * intervals.h, textprop.c (extend_property_ranges): Return value
10897 and args changed. Discard properties that begin at or after the
10898 new end (Bug#5306).
10899
10900 * editfns.c (Fformat): Caller changed.
10901
10902 * nsterm.m (ns_set_default_prefs): Delete function.
10903 (syms_of_nsterm): Initialize ns_command_modifier,
10904 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
10905 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
10906
10907 * xdisp.c (pos_visible_p): Check for invisible text at the correct
10908 position (Bug#4040).
10909
10910 2010-01-09 Eli Zaretskii <eliz@gnu.org>
10911
10912 * editfns.c (Ffloat_time): Doc fix.
10913
10914 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
10915
10916 * xfns.c (Fx_create_frame): Don't create frame larger than display
10917 by default bug#3643.
10918
10919 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10920
10921 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
10922 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
10923 windows above internal border.
10924
10925 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
10926 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
10927 windows above internal border.
10928
10929 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
10930 tool bar windows specially.
10931
10932 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
10933
10934 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
10935 specially.
10936 (XTflash): Take account of menu bar height.
10937
10938 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
10939 specially.
10940
10941 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
10942
10943 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
10944 also be true before we can return early (bug #5339).
10945
10946 2010-01-06 David Reitter <david.reitter@gmail.com>
10947
10948 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
10949 (Fns_display_usable_bounds): Rewrite, computing bounds properly
10950 (Bug#3233).
10951
10952 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
10953
10954 * font.c (font_open_entity): Enable chache and call cached_font_ok
10955 for the driver if defined.
10956 (QCuser_spec): New symbol.
10957 (font_spec_from_name): Save name as user-spec.
10958 (font_load_for_lface): Keep user-spec instead of name.
10959 (font_open_by_name): Save name as user-spec.
10960 (syms_of_font): Initialize QCuser_spec.
10961 (font_clear_prop): Clear name if it exists in font (bug#5157).
10962
10963 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
10964 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
10965 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
10966
10967 * font.h (struct font_driver): Add cached_font_ok.
10968
10969 * xterm.c (x_clear_frame): Queue draw for scroll bars.
10970
10971 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
10972
10973 * xterm.c (x_new_font): Move code for setting rows/cols before
10974 resizing ...
10975 (x_set_window_size): ... to here. Bug #2568.
10976
10977 * gtkutil.c (xg_clear_under_internal_border): New function.
10978 (xg_frame_resized, xg_frame_set_char_size):
10979 Call xg_clear_under_internal_border.
10980 (xg_update_scrollbar_pos): Clear under old scroll bar position.
10981
10982 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
10983
10984 * keyboard.c (read_key_sequence): Catch keyboard switch after
10985 making a new tty frame (Bug#5095).
10986
10987 2010-01-05 Kenichi Handa <handa@m17n.org>
10988
10989 * fontset.c (fontset_find_font): Fix getting the frame pointer.
10990
10991 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
10992
10993 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
10994 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
10995 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
10996
10997 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
10998
10999 * dbusbind.c (xd_add_watch): Improve debug message.
11000 (xd_remove_watch): Improve debug message. If DATA is the session
11001 bus, unset D-Bus session environment.
11002 (Fdbus_init_bus): Pass the bus as argument to
11003 dbus_connection_set_watch_functions. (Bug#5283)
11004
11005 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
11006
11007 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
11008
11009 * lread.c (syms_of_lread): Make it clearer that these are the
11010 names of loaded files (Bug#5068).
11011
11012 * eval.c (run_hook_with_args): Handle the case where the global
11013 value has the obsolete single-function form (Bug#5026).
11014
11015 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
11016
11017 * minibuf.c (Fall_completions): Minor optimization.
11018
11019 2009-12-26 Eli Zaretskii <eliz@gnu.org>
11020
11021 * .gdbinit (pgx): Fix display of composite glyphs.
11022 Display cmp.from and cmp.to as well.
11023 (pitx): Fix last change.
11024
11025 2009-12-25 Kenichi Handa <handa@m17n.org>
11026
11027 * composite.h (composition_adjust_point): Update prototype.
11028
11029 * composite.c (composition_reseat_it): Don't make a composition
11030 spanning over point.
11031 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
11032 composable characters.
11033 (composition_adjust_point): New arg NEW_PT. Callers changed.
11034
11035 * keyboard.c (command_loop_1): Force redisplay if the last point
11036 was within a composition.
11037 (adjust_point_for_property): Don't adjust point for automatic
11038 composition when called after buffer modification.
11039
11040 2009-12-19 Eli Zaretskii <eliz@gnu.org>
11041
11042 * .gdbinit (pitx): Don't use enum names, use their values.
11043 Remove reference to non-existing value GET_FROM_COMPOSITION.
11044 (pgx): Don't use enum names, use their values.
11045 (pitmethod): New helper command.
11046 (pitx): Use it to display iteration method.
11047 (pgrowit): New command.
11048
11049 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
11050
11051 Update dependencies in Makefile.in.
11052
11053 * Makefile.in (alloc.o): Depend on termhooks.h.
11054 (atimer.o): Depend on blockinput.h.
11055 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
11056 and frame.h.
11057 (callint.o): Depend on systime.h, coding.h, and composite.h.
11058 (callproc.o): Depend on buffer.h.
11059 (casefiddle.o): Don't depend on charset.h.
11060 (casetab.o): Depend on character.h.
11061 (ccl.o): Depend on composite.h.
11062 (chartab.o): Depend on ccl.h.
11063 (cm.o): Depend on dispextern.h.
11064 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
11065 (coding.o): Don't depend on $(INTERVALS_H).
11066 (composite.o): Don't depend on dispextern.h explicitly (it's in
11067 $(INTERVALS_H)). Depend on ccl.h.
11068 (data.o): Depend on systime.h, coding.h, composite.h,
11069 dispextern.h, font.h, and ccl.h.
11070 (dired.o): Depend on composite.h.
11071 (dispnew.o): Depend on coding.h. Don't depend explicitly on
11072 composite.h (it's in $(INTERVALS_H)).
11073 (doc.o): Depend on systime.h, coding.h, and composite.h.
11074 (editfns.o): Don't depend explicitly on dispextern.h.
11075 (emacs.o): Depend on frame.h and coding.h.
11076 (eval.o): Depend on coding.h, composite.h, and xterm.h.
11077 (fileio.o): Depend on frame.h and commands.h. Don't depend
11078 explicitly on dispextern.h.
11079 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
11080 composite.h.
11081 (fns.o): Don't depend on termhooks.h.
11082 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
11083 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
11084 coding.h, $(INTERVALS_H), window.h, xterm.h.
11085 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
11086 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
11087 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
11088 fontset.h, ccl.h, and ftfont.h.
11089 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
11090 (gtkutil.o): Depend on dispextern.h and composite.h.
11091 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
11092 termhooks.h, and ccl.h.
11093 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
11094 (intervals.o): Depend on systime.h and coding.h.
11095 (keyboard.o): Depend on composite.h and coding.h.
11096 (keymap.o): Depend on coding.h and frame.h.
11097 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
11098 (macros.o): Depend on systime.h, coding.h, and composite.h.
11099 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
11100 and atimer.h.
11101 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
11102 dispextern.h explicitly.
11103 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
11104 Don't depend explicitly on dispextern.h and composite.h.
11105 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
11106 (regex.o): Don't depend on charset.h.
11107 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
11108 (search.o): Don't depend explicitly on composite.h.
11109 (sound.o): Depend on atimer.h and systime.h.
11110 (syntax.o): Don't depend explicitly on composite.h.
11111 (sysdep.o): Depend on coding.h and composite.h.
11112 (term.o): Depend on xterm.h and buffer.h.
11113 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
11114 (textprop.o): Don't depend on dispextern.h explicitly.
11115 (undo.o): Depend on dispextern.h.
11116 (window.o): Depend on coding.h and termhooks.h. Don't depend on
11117 dispextern.h and composite.h explicitly.
11118 (xdisp.o): Depend on ccl.h.
11119 (xfaces.o): Depend on coding.h and ccl.h.
11120 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
11121 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
11122 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
11123 ftfont.h.
11124 (xgselect.o): New dependency.
11125 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
11126 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
11127 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
11128 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
11129 (xsmfns.o): Depend on frame.h and dispextern.h.
11130 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
11131 sysselect.h.
11132
11133 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
11134
11135 * font.c (Fclear_font_cache): Pass correct cache argument to
11136 font_clear_cache.
11137
11138 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
11139
11140 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
11141 twice.
11142
11143 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
11144
11145 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
11146 calling file-remote-p. Reported by Jim Meyering.
11147
11148 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
11149
11150 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
11151 avoid compiler warnings. (Bug #5217)
11152
11153 2009-12-14 Kenichi Handa <handa@m17n.org>
11154
11155 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
11156 in 8-bit encoding.
11157
11158 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
11159
11160 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
11161 tooltip windows.
11162
11163 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
11164
11165 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
11166 Xatom_net_window_type.
11167
11168 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
11169 Xatom_net_window_type.
11170
11171 * xterm.c (my_log_handler): New function.
11172 (x_term_init): Set my_log_handler as log handler during gtk_init
11173 so we can filter out buggy messages. (Bug #5120).
11174
11175 * xterm.c (xg_scroll_callback): Parameter list changed,
11176 use parameter GtkScrollType to determine scroll/line/page.
11177 Only allow dragging if a button < 4 is grabbed (bug #5177).
11178 (xg_end_scroll_callback): New function.
11179 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
11180 xg_create_scroll_bar.
11181
11182 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
11183 (scroll_end_callback): Remove.
11184 (xg_create_scroll_bar): Add parameter end_callback, bind it to
11185 button-release-event. Replace value-changed event with change-value,
11186 bug #5177.
11187 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
11188 bug #5177.
11189
11190 * gtkutil.h (XG_LAST_SB_DATA): Remove.
11191 (xg_create_scroll_bar): Add GCallback end_callback.
11192
11193 * xftfont.c (QClcdfilter): New variable.
11194 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
11195 (syms_of_xftfont): Initialize QClcdfilter.
11196
11197 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
11198
11199 * xsettings.c (struct xsettings): Add member seen.
11200 (parse_xft_settings): Update member seen with what we have read.
11201 Return non-zero if Xft-settings have been parsed, 0 otherwise.
11202 (apply_xft_settings): Only update Xft settings with what member seen
11203 indicates as new.
11204
11205 2009-12-12 Eli Zaretskii <eliz@gnu.org>
11206
11207 * dispextern.h (struct text_pos): Use EMACS_INT.
11208 (struct glyph): Use EMACS_INT for charpos.
11209 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
11210 region_beg_charpos, region_end_charpos,
11211 redisplay_end_trigger_charpos, and also for
11212 iterator_stack_entry.end_charpos and
11213 iterator_stack_entry.stop_charpos.
11214
11215 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
11216
11217 * gtkutil.c (scroll_end_callback): New function (bug #5177).
11218 (xg_create_scroll_bar): Call scroll_end_callback on button release
11219 event (bug #5177).
11220 (xg_event_is_for_scrollbar): != replaced with ==.
11221
11222 2009-12-12 Kenichi Handa <handa@m17n.org>
11223
11224 * ftfont.c (struct ftfont_info): New member matrix.
11225 (ftfont_open): Setup xftfont_info->matrix.
11226 (MFLTFontFT): New member matrix.
11227 (FLOOR, CEIL, ROUND): New macros.
11228 (ftfont_get_metrics): Handle matrix transformation.
11229 (ftfont_shape_by_flt): New arg matrix. Callers changed.
11230
11231 * xftfont.c (struct xftfont_info): New member matrix.
11232 (xftfont_open): Setup xftfont_info->matrix.
11233
11234 2009-12-10 Kenichi Handa <handa@m17n.org>
11235
11236 * xdisp.c (append_space_for_newline): Consider face-remapping.
11237
11238 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
11239
11240 * xsettings.c: Include "keyboard.h".
11241
11242 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
11243
11244 Fix implicit function declarations.
11245 * cmds.c: Include "frame.h".
11246 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
11247 * frame.h: Move declaration of delete_frame outside of
11248 HAVE_WINDOW_SYSTEM.
11249
11250 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
11251
11252 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
11253
11254 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
11255 GTK builds.
11256
11257 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
11258
11259 * unexelf.c (unexec): Don't search for .data twice.
11260
11261 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
11262
11263 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
11264 if push failed.
11265 (handle_line_prefix): Set avoid_cursor_p here. Check return value
11266 of push_display_prop (Bug#5000).
11267
11268 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
11269 value of font_list_entities (Bug#5085).
11270
11271 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
11272
11273 Fix `string-to-number' to deal consistently with integers and floats.
11274 * lread.c (isfloat_string): New argument ignore_trailing to accept all
11275 trailing characters, not just whitespace.
11276 (read1): Pass new arg 0 to keep old behavior.
11277 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
11278 trailing chars, as it is already done for integers. Doc fixes.
11279 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
11280
11281 2009-12-04 Eli Zaretskii <eliz@gnu.org>
11282
11283 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
11284 Delete unused enumeration value.
11285
11286 2009-12-03 Eli Zaretskii <eliz@gnu.org>
11287
11288 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
11289
11290 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
11291
11292 * process.c (Fmake_network_process): Fix up the tests for
11293 "connectionless socket", so they DTRT for seqpacket sockets as well.
11294
11295 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
11296
11297 * process.c (Qseqpacket): New symbol.
11298 (HAVE_SEQPACKET): New macro.
11299 (Fmake_network_process): Accept new :type `seqpacket'.
11300 (init_process): Add `seqpacket' feature when applicable.
11301 (syms_of_process): Initialize Qseqpacket.
11302
11303 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11304
11305 * font.c (font_load_for_lface, font_open_by_name): Don't store name
11306 if entity is Qnil.
11307
11308 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
11309
11310 * print.c (print_preprocess): Preprocess the key_and_value table of
11311 hashtables, even tho they're "hidden" (bug#5082).
11312
11313 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
11314
11315 * frame.c (frame_make_pointer_invisible)
11316 (frame_make_pointer_visible): Declare f before statements.
11317
11318 2009-11-28 Eli Zaretskii <eliz@gnu.org>
11319
11320 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
11321 omitted dependencies on lisp.h.
11322
11323 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
11324
11325 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
11326 is NULL.
11327
11328 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
11329
11330 * frame.c (frame_make_pointer_invisible)
11331 (frame_make_pointer_visible): Just return if there isn't any selected
11332 frame.
11333
11334 * search.c (simple_search): Remove warning by making *p const.
11335
11336 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
11337
11338 * xdisp.c (power_letter): Remove duplicate const.
11339
11340 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
11341
11342 * term.c (delete_tty): Remove check for last terminal (bug#4970).
11343
11344 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
11345 defaults (bug #5025).
11346
11347 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
11348
11349 * insdel.c (adjust_markers_for_delete): Move it in the
11350 right direction! (bug#4803)
11351
11352 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11353
11354 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
11355
11356 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
11357
11358 2009-11-24 Glenn Morris <rgm@gnu.org>
11359
11360 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
11361
11362 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
11363
11364 * Makefile.in: Must create deps for ecrt0.o in its rule.
11365
11366 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
11367 because that is what Gtk+ font dialog understands.
11368
11369 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
11370 of Fcopy_sequence.
11371 (font_open_by_name): Put name given into QCname for font-object returned.
11372
11373 * frame.c (x_set_font): Save original font name as frame parameter
11374 font-parameter.
11375
11376 * xsettings.c (set_default_xft_settings): New function.
11377 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
11378 is found.
11379
11380 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
11381
11382 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
11383 searching backwards through multibyte buffer.
11384
11385 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
11386
11387 * xterm.c: #include xgselect.h.
11388 (x_initialize): Call xgselect_initialize.
11389
11390 * xsettings.c (something_changedCB): C++ comments => C comments.
11391 (init_gconf): Do not deal with any GLib file descriptors, xg_select
11392 does that now.
11393
11394 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
11395 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
11396 (scroll_bar_button_cb): Remove.
11397 (create_menus): C++ comments => C comments. Don't bind grab-notify
11398 event.
11399 (xg_create_scroll_bar): Don't bind button-press-event and
11400 button-release-event.
11401
11402 * process.c: Include xgselect.h if defined (USE_GTK) ||
11403 defined (HAVE_GCONF).
11404 (wait_reading_process_output): Call xg_select for the same condition.
11405
11406 * xgselect.c (xg_select): New function to better integrate with
11407 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
11408
11409 * xgselect.h: New file, declare xg_select, xgselect_initialize.
11410
11411 * Makefile.in (XOBJ): Add xgselect.o.
11412
11413 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
11414
11415 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
11416 Remove ignored second argument. All callers changed.
11417 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
11418 (RE_STRING_CHAR_AND_LENGTH): Likewise.
11419 * xdisp.c (string_char_and_length): Likewise.
11420
11421 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
11422
11423 * xterm.c (x_new_font):
11424 * print.c (print_object):
11425 * cmds.c (Fself_insert_command): Move declarations before statements.
11426
11427 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
11428
11429 * s/cygwin.h: Remove unneeded linker flags.
11430
11431 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
11432
11433 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
11434
11435 * xsettings.h: Declare xsettings_get_system_font.
11436
11437 * xsettings.c (xsettings_get_system_font): New function.
11438 (init_gconf): No use initiating gconf unless we have Xft also.
11439 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
11440 HAVE_GCONF.
11441
11442 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
11443 add a blank entry so it doesn't collapse into nothing.
11444
11445 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11446
11447 * lread.c (Funintern): Comment out last change.
11448
11449 2009-11-19 Richard Stallman <rms@gnu.org>
11450
11451 * lread.c (Funintern): Error if symbol is t or nil.
11452
11453 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11454
11455 * insdel.c (make_gap_larger): Don't make as many assumptions about the
11456 representation of Lisp integers.
11457 Reported by MJ Chan <mjchan.inbox@gmail.com>.
11458
11459 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
11460
11461 * lisp.h: Remove declaration of Ffont_get_system_font.
11462 * xfns.c: Move include of "xsettings.h".
11463 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
11464
11465 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11466
11467 * xsettings.c (something_changedCB, Ffont_get_system_font):
11468 Check use_system_font.
11469 (syms_of_xsettings): DEFVAR font-use-system-font.
11470
11471 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
11472
11473 * xfns.c (x_default_font_parameter): Remove dead assignment.
11474
11475 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
11476
11477 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11478
11479 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
11480 not have FC_LCD_*. #define them if not there.
11481
11482 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
11483
11484 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
11485
11486 * xterm.c (handle_one_xevent): Call xft_settings_event for
11487 ClientMessage, PropertyNotify and DestroyNotify.
11488 (x_term_init): If we have XFT, get DPI from Xft.dpi.
11489 Call xsettings_initialize.
11490
11491 * xftfont.c (xftfont_fix_match): New function.
11492 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
11493 Call xftfont_fix_match after XftFontMatch.
11494
11495 * xfont.c (xfont_driver): Initialize all members.
11496
11497 * xfns.c (x_default_font_parameter):
11498 Try font from Ffont_get_system_font.
11499 Do not get font from x_default_parameter if we got one from
11500 Ffont_get_system_font.
11501 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
11502
11503 * w32font.c (w32font_driver): Initialize all members.
11504
11505 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
11506
11507 * lisp.h: Declare syms_of_xsettings.
11508
11509 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
11510 Handle CONFIG_CHANGED_EVENT.
11511
11512 * ftfont.c (ftfont_filter_properties): New function.
11513
11514 * frame.c (x_set_font): Remove unused variable lval.
11515
11516 * font.h (struct font_driver): Add filter_properties.
11517
11518 * font.c (font_put_extra): Don't return if val is nil, it means
11519 boolean option is off.
11520 (font_parse_fcname): Collect all extra properties in extra_props
11521 and call filter_properties for all drivers with extra_props and
11522 font as parameter.
11523 (font_open_entity): Do not use cache, it does not pick up new
11524 fontconfig settings like hinting.
11525 (font_load_for_lface): If spec had a name in it, store it in entity.
11526
11527 * emacs.c (main): Call syms_of_xsettings.
11528
11529 * config.in: HAVE_GCONF is new.
11530
11531 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
11532 xsettings.o is new.
11533
11534 2009-11-17 Kenichi Handa <handa@m17n.org>
11535
11536 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
11537 back to the default font in case that no suitable font is found.
11538
11539 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
11540
11541 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
11542 Suggested by Chad Brown <yandros@mit.edu>.
11543 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
11544
11545 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
11546
11547 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
11548
11549 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
11550
11551 * Makefile.in: Ignore errors from mkdir when creating deps directory.
11552
11553 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
11554
11555 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
11556 has a parent.
11557
11558 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
11559 dependency files in deps/. Include those files into Makefile.
11560
11561 * config.in: Generated (AUTO_DEPEND).
11562
11563 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
11564
11565 * dbusbind.c (Vdbus_registered_objects_table): Rename from
11566 Vdbus_registered_functions_table, because it contains also
11567 properties. Fix docstring.
11568 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
11569
11570 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11571
11572 * alloc.c (mark_object): Don't reprocess marked strings.
11573 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
11574 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
11575
11576 2009-11-13 Kenichi Handa <handa@m17n.org>
11577
11578 * category.c (word_boundary_p): Adjust for the change of the
11579 semantics of Vword_combining_categories.
11580 (Vword_combining_categories): Describe the slight change of the
11581 semantics.
11582
11583 2009-11-13 Eli Zaretskii <eliz@gnu.org>
11584
11585 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
11586
11587 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
11588
11589 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
11590
11591 * xdisp.c (syms_of_xdisp): Fix typo in last change.
11592
11593 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
11594
11595 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
11596
11597 2009-11-11 David Reitter <david.reitter@gmail.com>
11598
11599 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
11600 variables to fix 2009-11-09 change.
11601
11602 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11603
11604 * process.c (ifflag_def): Make flag_sym constant.
11605 (Fnetwork_interface_info): Use a constant pointer.
11606 (ifflag_table):
11607 * xfns.c (cursor_bits):
11608 * xdisp.c (power_letter):
11609 * termcap.c (speeds, esctab):
11610 * sysdep.c (baud_convert):
11611 * keyboard.c (lispy_accent_codes, modifier_names):
11612 * image.c (xbm_format, xpm_format, pbm_format, png_format)
11613 (jpeg_format, tiff_format, gif_format, svg_format)
11614 (interlace_start, interlace_increment, gs_format):
11615 * gtkutil.c (separator_names):
11616 * fringe.c (swap_nibble):
11617 * fns.c (base64_value_to_char, base64_char_to_value):
11618 * fileio.c (make_temp_name_tbl):
11619 * coding.c (suffixes): Make constant.
11620
11621 * frame.c (make_initial_frame):
11622 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
11623 build_string.
11624 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
11625
11626 * s/freebsd.h:
11627 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
11628
11629 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
11630 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
11631
11632 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
11633 * xterm.c (syms_of_xterm):
11634 * xfaces.c (syms_of_xfaces):
11635 * xdisp.c (syms_of_xdisp):
11636 * lread.c (syms_of_lread):
11637 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
11638 build_string.
11639
11640 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
11641
11642 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
11643
11644 * fns.c (Fplist_get): Merge the active and the commented out code.
11645
11646 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
11647
11648 * keyboard.h: Declare timer_check.
11649
11650 * keyboard.c (timer_check_2): New function that does what the old
11651 timer_check did.
11652 (timer_check): Call timer_check_2 until -1 or a non-zero time is
11653 returned, i.e. don't return -1 with timers pending.
11654
11655 * process.c: Remove extern declaration of timer_check.
11656
11657 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
11658 even if timer_check returned -1.
11659
11660 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
11661 xg_dialog_data.
11662 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
11663 the event loop.
11664 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
11665 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
11666 Destroy the dialog after xg_dialog_run.
11667
11668 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
11669
11670 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
11671
11672 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
11673
11674 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
11675
11676 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
11677
11678 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
11679
11680 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
11681
11682 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
11683 w32menu.c, and nsmenu.m.
11684 Simplify the obsolete case where position is nil.
11685 (cleanup_popup_menu): New function, moved from nsmenu.m.
11686 (struct skp): Remove slot `notreal'.
11687 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
11688 adjust callers.
11689 (single_menu_item): Adjust call to parse_menu_item.
11690 (syms_of_menu): Defsubr x-popup-menu.
11691 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
11692 (keymap_panes): Don't export any more.
11693 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
11694 (xmenu_show): Declare.
11695 * keyboard.c (parse_menu_item): Remove arg `notreal'.
11696 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
11697 * keyboard.h (parse_menu_item): Update declaration.
11698 * xmenu.c (Fx_popup_menu): Remove.
11699 (syms_of_xmenu): Don't defsubr x-popup-menu.
11700 * w32menu.c (Fx_popup_menu): Remove.
11701 (syms_of_w32menu): Don't defsubr x-popup-menu.
11702 * nsmenu.m (cleanup_popup_menu): Remove.
11703 (ns_menu_show): Rename from ns_popup_menu and remove all the code
11704 moved to menu.c's Fx_popup_menu.
11705 (Fx_popup_menu): Remove.
11706 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
11707 menu_items (it's done in menu.c already).
11708
11709 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
11710
11711 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
11712 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
11713
11714 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
11715
11716 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
11717 xmenu_show. Hide any tooltip before opening a menu.
11718 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
11719 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
11720
11721 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
11722
11723 Let integers use up 2 tags to give them one extra bit and thus double
11724 their range.
11725 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
11726 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
11727 New macros.
11728 (enum Lisp_Type): Use them. Give explicit values.
11729 (Lisp_Type_Limit): Remove.
11730 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
11731 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
11732 Pay attention to USE_2_TAGS_FOR_INTS.
11733 (INTEGERP): Use LISP_INT_TAG_P.
11734 * fns.c (internal_equal): Simplify the default case.
11735 (sxhash): Use case_Lisp_Int.
11736 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
11737 any more.
11738 (Ftype_of): Use case_Lisp_Int.
11739 (store_symval_forwarding): Take into account the fact that Ints can
11740 now have more than one tag.
11741 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
11742 (buffer_slot_type_mismatch):
11743 * xfaces.c (face_attr_equal_p):
11744 * print.c (print_object):
11745 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
11746 Use case_Lisp_Int.
11747
11748 2009-11-06 Eli Zaretskii <eliz@gnu.org>
11749
11750 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
11751
11752 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
11753 warning.
11754
11755 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
11756
11757 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
11758
11759 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
11760
11761 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
11762 ButtonPressRelease and MotionNotify (bug#4870).
11763
11764 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
11765
11766 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
11767
11768 * xterm.c (syms_of_xterm):
11769 * xselect.c (syms_of_xselect):
11770 * xmenu.c (syms_of_xmenu):
11771 * xfns.c (syms_of_xfns):
11772 * xfaces.c (syms_of_xfaces):
11773 * xdisp.c (syms_of_xdisp):
11774 * window.c (syms_of_window):
11775 * w32fns.c (syms_of_w32fns):
11776 * undo.c (syms_of_undo):
11777 * textprop.c (syms_of_textprop):
11778 * terminal.c (syms_of_terminal):
11779 * syntax.c (syms_of_syntax):
11780 * sound.c (syms_of_sound):
11781 * search.c (syms_of_search):
11782 * print.c (syms_of_print):
11783 * minibuf.c (syms_of_minibuf):
11784 * macros.c (syms_of_macros):
11785 * keymap.c (syms_of_keymap, initial_define_key)
11786 (initial_define_lispy_key):
11787 * keyboard.c (syms_of_keyboard):
11788 * insdel.c (syms_of_insdel):
11789 * image.c (syms_of_image):
11790 * fringe.c (syms_of_fringe):
11791 * frame.c (syms_of_frame):
11792 * fontset.c (syms_of_fontset):
11793 * fns.c (syms_of_fns):
11794 * fns.c (syms_of_fns):
11795 * fileio.c (syms_of_fileio):
11796 * fileio.c (syms_of_fileio):
11797 * eval.c (syms_of_eval):
11798 * doc.c (syms_of_doc):
11799 * dispnew.c (syms_of_display):
11800 * dired.c (syms_of_dired):
11801 * dbusbind.c (syms_of_dbusbind):
11802 * data.c (syms_of_data):
11803 * composite.c (syms_of_composite):
11804 * coding.c (syms_of_coding):
11805 * cmds.c (syms_of_cmds):
11806 * charset.c (define_charset_internal, syms_of_character):
11807 * ccl.c (syms_of_ccl):
11808 * category.c (syms_of_category, init_category_once):
11809 * casetab.c (syms_of_casetab):
11810 * casefiddle.c (syms_of_casefiddle):
11811 * callint.c (syms_of_callint):
11812 * bytecode.c (syms_of_bytecode):
11813 * buffer.c (keys_of_buffer, syms_of_buffer):
11814 * alloc.c (syms_of_alloc):
11815 * process.c (syms_of_process, init_process):
11816 * lread.c (syms_of_lread, init_obarray):
11817 * font.c (build_style_table):
11818 * emacs.c (syms_of_emacs, main): Replace calls to intern with
11819 intern_c_string, calls to make_pure_string with
11820 make_pure_c_string. Use pure_cons instead of Fcons.
11821
11822 * process.c (socket_options): Make it const.
11823 (set_socket_option, init_process): Use a const pointer.
11824
11825 * lread.c (intern_c_string): New function.
11826 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
11827 (defvar_int): Uset it. Make the name const char*.
11828
11829 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
11830 (defvar_int): Update prototypes.
11831 (DEFUN, EXFUN): Support for prototypes is now required.
11832 (intern_c_string): New prototype.
11833 (struct Lisp_Subr): Make symbol_name constant.
11834
11835 * font.c (struct table_entry): Remove unused member. Make NAMES
11836 constant.
11837 (weight_table, slant_table, width_table): Make constant.
11838
11839 * emacs.c (struct standard_args): Make name and longname constant.
11840
11841 * character.h (DEFSYM): Use intern_c_string.
11842
11843 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
11844
11845 * alloc.c (make_pure_c_string): New function.
11846
11847 * eval.c (Fautoload): Purecopy all arguments.
11848
11849 2009-11-05 Kenichi Handa <handa@m17n.org>
11850
11851 * fileio.c (Finsert_file_contents): Be sure set coding-system of
11852 the buffer in case of replace.
11853
11854 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
11855
11856 * puresize.h (BASE_PURESIZE): Increase to 1620000.
11857
11858 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
11859
11860 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
11861 when applicable (bug#4851).
11862
11863 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
11864 (P_): Support for prototypes is now required.
11865
11866 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
11867
11868 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
11869 (Bug#4827).
11870
11871 2009-10-30 Eli Zaretskii <eliz@gnu.org>
11872
11873 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
11874
11875 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
11876
11877 * puresize.h (BASE_PURESIZE): Increase to 1470000.
11878
11879 * lread.c (Fload): Purecopy the file name when building
11880 Vpreloaded_file_list.
11881
11882 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
11883
11884 * w32fns.c (syms_of_w32fns): Change default value of
11885 w32-scroll-lock-modifier to nil. (Bug#2827)
11886
11887 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
11888
11889 * minibuf.c (Fall_completions): Fix typos in docstring.
11890
11891 2009-10-26 Andreas Schwab <schwab@redhat.com>
11892
11893 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
11894
11895 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
11896
11897 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
11898 For delta < 0, skip check that only makes sense when the mini-window
11899 is going to be enlarged. (Bug#4534)
11900
11901 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
11902
11903 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
11904 string in menu maps (Bug#4471).
11905
11906 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
11907
11908 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
11909 FRAME_NS_VIEW on terminal frames (Bug#4765).
11910
11911 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
11912
11913 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
11914 DBUS_TYPE_UINTnn separately to get proper sign extension.
11915
11916 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
11917 can properly handle unsigned types.
11918 (make_uid, make_gid): Remove.
11919
11920 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
11921 types again.
11922
11923 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
11924 (system_process_attributes): Likewise.
11925
11926 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
11927
11928 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
11929
11930 * eval.c (Fautoload): Purecopy the filename. Simplify.
11931
11932 * category.c (Fdefine_category): Purecopy docstring.
11933
11934 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
11935
11936 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
11937
11938 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
11939
11940 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
11941
11942 * window.c (Fwindow_edges, Fwindow_pixel_edges)
11943 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
11944 (Bug#4775).
11945
11946 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
11947
11948 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
11949 (init_fileio_once):
11950 * lisp.h (init_fileio_once): Remove.
11951 * emacs.c (main): Don't call init_fileio_once.
11952
11953 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
11954
11955 * puresize.h (BASE_PURESIZE): Increase to 1430000.
11956
11957 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
11958
11959 * doprnt.c (doprnt): Fix overflow check.
11960
11961 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
11962
11963 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
11964
11965 * xterm.h (x_wait_for_event): Declare it.
11966
11967 * xterm.c (pending_event_wait): New variable.
11968 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
11969 see pending_event_wait.eventtype.
11970 (handle_one_xevent): Don't change gravity when parent changes.
11971 (x_new_font): Call change_frame_size with new rows/columns before we
11972 try to resize the frame.
11973 (x_wait_for_event): New function.
11974 (x_set_window_size_1): Don't change gravity unless change_gravity
11975 is set.
11976 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
11977 don't change frame size, instead wait for the ConfigureNotify.
11978 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
11979 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
11980 (x_initialize): Initialize pending_event_wait.
11981
11982 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
11983 size.
11984
11985 * widget.c (EmacsFrameSetValues): Add comment.
11986 (EmacsFrameSetCharSize): Just call x_set_window_size.
11987
11988 * gtkutil.c (xg_frame_set_char_size): Flush events and call
11989 x_wait_for_event.
11990 (flush_and_sync): Remove again.
11991 (xg_get_font_name): Suggest monospace if no previous font is known.
11992
11993 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
11994
11995 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
11996 8th bit, since that only made sense in the ASCII world (bug#4751).
11997
11998 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11999
12000 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
12001 processing pending events when event is filtered for input method.
12002 (Bug#3681)
12003
12004 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
12005
12006 * fns.c: Add #endif accidentally removed in previous change.
12007
12008 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
12009
12010 * fns.c: Remove code for unsupported system: MAC_OS.
12011 * image.c: Likewise. Include setjmp.h.
12012
12013 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
12014
12015 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
12016 pixel -1 (bug #4742).
12017
12018 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
12019
12020 * process.c (create_pty): Remove conditionals for no longer
12021 supported systems: UNIPLUS and RTU.
12022
12023 * xterm.c:
12024 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
12025
12026 * alloc.c: Do not define struct catchtag.
12027 * eval.c: Move struct catchtag definition ...
12028 * lisp.h: ... here.
12029
12030 * image.c: Move png.h #include earlier to avoid warnings.
12031
12032 * xterm.c:
12033 * xsmfns.c:
12034 * xselect.c:
12035 * xrdb.c:
12036 * xmenu.c:
12037 * xftfont.c:
12038 * xfont.c:
12039 * xfns.c:
12040 * xfaces.c:
12041 * xdisp.c:
12042 * window.c:
12043 * widget.c:
12044 * w32xfns.c:
12045 * w32uniscribe.c:
12046 * w32term.c:
12047 * w32select.c:
12048 * w32reg.c:
12049 * w32proc.c:
12050 * w32menu.c:
12051 * w32inevt.c:
12052 * w32heap.c:
12053 * w32font.c:
12054 * w32fns.c:
12055 * w32console.c:
12056 * w32.c:
12057 * w16select.c:
12058 * vm-limit.c:
12059 * unexsol.c:
12060 * unexec.c:
12061 * unexcw.c:
12062 * unexaix.c:
12063 * undo.c:
12064 * tparam.c:
12065 * textprop.c:
12066 * terminfo.c:
12067 * terminal.c:
12068 * termcap.c:
12069 * term.c:
12070 * syntax.c:
12071 * sound.c:
12072 * sheap.c:
12073 * search.c:
12074 * scroll.c:
12075 * region-cache.c:
12076 * regex.c:
12077 * ralloc.c:
12078 * process.c:
12079 * print.c:
12080 * nsterm.m:
12081 * nsselect.m:
12082 * nsmenu.m:
12083 * nsimage.m:
12084 * nsfont.m:
12085 * nsfns.m:
12086 * msdos.c:
12087 * minibuf.c:
12088 * menu.c:
12089 * marker.c:
12090 * macros.c:
12091 * keymap.c:
12092 * keyboard.c:
12093 * intervals.c:
12094 * insdel.c:
12095 * indent.c:
12096 * gtkutil.c:
12097 * ftxfont.c:
12098 * ftfont.c:
12099 * fringe.c:
12100 * frame.c:
12101 * fontset.c:
12102 * font.c:
12103 * fns.c:
12104 * floatfns.c:
12105 * filelock.c:
12106 * fileio.c:
12107 * emacs.c:
12108 * editfns.c:
12109 * dosfns.c:
12110 * doprnt.c:
12111 * doc.c:
12112 * dispnew.c:
12113 * dired.c:
12114 * dbusbind.c:
12115 * data.c:
12116 * composite.c:
12117 * coding.c:
12118 * cmds.c:
12119 * cm.c:
12120 * chartab.c:
12121 * charset.c:
12122 * character.c:
12123 * ccl.c:
12124 * category.c:
12125 * casetab.c:
12126 * casefiddle.c:
12127 * callproc.c:
12128 * callint.c:
12129 * bytecode.c:
12130 * buffer.c:
12131 * atimer.c: Include setjmp.h. (Bug#4643)
12132
12133 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
12134
12135 Remove leftover table unibyte_to_multibyte_table.
12136 * character.c (unibyte_to_multibyte_table): Remove.
12137 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
12138 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
12139 * character.h (UNIBYTE_TO_CHAR): New macro.
12140 (MAKE_CHAR_MULTIBYTE): Use it.
12141 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
12142 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
12143 (message_dolog, set_message_1):
12144 * search.c (Freplace_match):
12145 * editfns.c (Fcompare_buffer_substrings):
12146 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
12147 (concat):
12148 * insdel.c (copy_text, count_size_as_multibyte):
12149 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
12150 * term.c (produce_glyphs):
12151 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
12152 * regex.c (RE_CHAR_TO_MULTIBYTE):
12153 * cmds.c (internal_self_insert):
12154 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
12155
12156 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
12157
12158 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
12159
12160 * puresize.h (BASE_PURESIZE): Increase to 1310000.
12161
12162 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
12163
12164 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
12165
12166 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
12167
12168 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
12169 still needed under Tiger.
12170
12171 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
12172
12173 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
12174 __Apple__.
12175
12176 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
12177
12178 2009-10-15 Kenichi Handa <handa@m17n.org>
12179
12180 * print.c (print_object): Escape a symbol like "2E10" too.
12181
12182 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
12183
12184 Cleanups and changes for 64-bit compile under Snow Leopard.
12185 Based on suggestions by Erik Charlebois.
12186
12187 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
12188
12189 * nsfont.m (ns_char_width): Replace deprecated call.
12190 (ns_findfonts, nsfont_list_family): Use long format in printf, and
12191 cast argument.
12192 (nsfont_open): Use ns_char_width() everywhere.
12193 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
12194
12195 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
12196
12197 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
12198 where appropriate.
12199
12200 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
12201 where appropriate.
12202 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
12203 Use stringWithUTF8String.
12204 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
12205
12206 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
12207 Add formal protocol mention to inheritance.
12208 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
12209
12210 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
12211 Fix printf format.
12212 (ns_query_color): Use CGFloat where appropriate.
12213 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
12214 (EmacsScroller-mouseDown:): Use long format in printf, and cast
12215 argument.
12216
12217 * config.in (NS_HAVE_NSINTEGER): Drop.
12218
12219 * dbusbind.c (dbus-method-return-internal)
12220 (dbus-method-error-internal): Use long format in printf, and cast
12221 argument.
12222
12223 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
12224 in printf, and cast argument.
12225
12226 * process.c (list_processes_1): Use long format in printf, and
12227 cast argument.
12228
12229 2009-10-11 Glenn Morris <rgm@gnu.org>
12230
12231 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
12232
12233 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
12234
12235 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
12236 menu bar with a small width so it doesn't enlarge the frame.
12237
12238 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
12239
12240 * fontset.c (Fset_fontset_font): Fix typos in error messages.
12241
12242 2009-10-06 Glenn Morris <rgm@gnu.org>
12243
12244 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
12245 SOME_MACHINE_LISP (this enters indirectly via DOC).
12246
12247 2009-10-05 Eli Zaretskii <eliz@gnu.org>
12248
12249 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
12250
12251 2009-10-04 Eli Zaretskii <eliz@gnu.org>
12252
12253 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
12254 Doc fix.
12255
12256 2009-10-03 Martin Rudalics <rudalics@gmx.at>
12257
12258 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
12259
12260 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
12261
12262 * lisp.h (Qdelete_directory_internal): Remove, because it is not
12263 used anymore outside fileio.c.
12264
12265 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
12266
12267 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
12268
12269 * lisp.h (Qdelete_directory_internal):
12270 Declare, instead of Qdelete_directory.
12271
12272 * w32fns.c (Fsystem_move_file_to_trash): Use it.
12273
12274 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
12275
12276 * eval.c (Fcalled_interactively_p): Add `kind' argument.
12277
12278 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
12279
12280 * fileio.c (Fdelete_directory_internal): Rename from
12281 Fdelete_directory. It is not a command anymore. It has no file
12282 name handler.
12283
12284 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
12285
12286 * xdisp.c (get_next_display_element): Use an enum in last change.
12287
12288 2009-09-28 Kenichi Handa <handa@m17n.org>
12289
12290 * xdisp.c (get_next_display_element): Pay attention to
12291 unibyte_display_via_language_environment in handling
12292 Vnobreak_char_display.
12293
12294 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
12295
12296 * nsterm.h (ns_app_name): New extern variable.
12297
12298 * nsterm.m (ns_app_name): New variable.
12299 (ns_term_init): Set and use it.
12300 (ns_term_shutdown): Use it.
12301
12302 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
12303 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
12304
12305 * nsfns.m (ns_set_name_iconic, ns_set_name)
12306 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
12307 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
12308
12309 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
12310 Remove double-casting in client_data comparison.
12311
12312 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12313
12314 * keyboard.c (make_lispy_event): Remember last wheel direction.
12315 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
12316
12317 2009-09-26 Glenn Morris <rgm@gnu.org>
12318
12319 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
12320 internal.elc. Add term/pc-win.elc.
12321 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
12322 term/x-win.elc.
12323 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
12324 term/w32-win.elc.
12325 (NS_SUPPORT): New.
12326 (lisp): Add NS_SUPPORT.
12327 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
12328
12329 2009-09-25 David Reitter <david.reitter@gmail.com>
12330
12331 * nsmenu.m (EmacsMenu-clear): Recognize application menu
12332 on Mac OS X 10.6+ (bug#4513).
12333
12334 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12335
12336 * frame.c (xrdb_get_resource): Return nil for empty string resources;
12337 some parts of Emacs code (like font selection) don't grok them.
12338 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
12339
12340 2009-09-24 Andreas Schwab <schwab@redhat.com>
12341
12342 * coding.c (decode_coding_iso_2022): Fix operator precedence.
12343
12344 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12345
12346 * dired.c (Fdirectory_files): Fix typo in docstring.
12347
12348 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
12349
12350 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
12351 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
12352 (EmacsScroller-setPosition:portion:whole:): Remove -display call
12353 under GNUstep.
12354 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
12355
12356 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
12357 glyph advancement.
12358
12359 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
12360
12361 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
12362 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
12363
12364 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
12365 deleted (bug #4492).
12366
12367 * nsfont.m (Vns_reg_to_script): New lisp variable.
12368 (syms_of_nsfont): Declare it.
12369 (ns_registry_to_script): New function.
12370 (ns_get_req_script): Call it.
12371 (ns_findfonts): Don't give up on non-unicode registry.
12372
12373 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
12374
12375 2009-09-20 Tom Tromey <tromey@redhat.com>
12376
12377 * eval.c (find_handler_clause): Make stack-trace-on-error work in
12378 batch mode (bug#4228).
12379
12380 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
12381
12382 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
12383 carefully. (Bug #4339)
12384
12385 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
12386
12387 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
12388
12389 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
12390
12391 * emacs.c (inhibit_x_resources): Update doc string for NS.
12392 (main) [HAVE_NS]: Don't process --no-init-file option.
12393 Remove legacy code for -NXHost. Fix error printf in daemon case.
12394
12395 * nsterm.h (ns_no_defaults): Remove.
12396
12397 * nsterm.m (ns_no_defaults): Remove.
12398 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
12399 (ns_use_qd_smoothing): Remove legacy variable.
12400 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
12401 don't update the NSWindow itself.
12402 (EmacsView-windowWillUseStandardFrame:defaultFrame:):
12403 Improve state detection and store user rect ourselves. (Bug #3581)
12404
12405 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
12406 ns_use_qd_smoothing.
12407
12408 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
12409 platform versions. Drop support for emacs-20-style face specs.
12410 (x-close-connection): Drop PSFlush() under OS X.
12411 (x-focus-frame): Activate the app first. (Bug #4180)
12412
12413 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
12414
12415 * emacs.c (inhibit_x_resources): New variable.
12416 (main) [HAVE_NS]: Don't process --quick command line option.
12417 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
12418
12419 * lisp.h (inhibit_x_resources): Declare it extern.
12420
12421 * w32reg.c (x_get_string_resource):
12422 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
12423
12424 2009-09-17 Eli Zaretskii <eliz@gnu.org>
12425
12426 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
12427 Add lisp/term/internal.elc.
12428
12429 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
12430
12431 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
12432 (bug#4461).
12433
12434 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
12435
12436 * puresize.h (BASE_PURESIZE): Increase to 1290000.
12437
12438 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
12439 (OBJECTS_MACHINE): Remove, unused.
12440
12441 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
12442
12443 * frame.c (x_get_resource_string): Remove unused.
12444
12445 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
12446
12447 * xterm.c (x_new_font): Call change_frame_size before calling
12448 x_set_window_size, in case frame size won't change.
12449
12450 * frame.c (x_set_font): Remove dead code.
12451
12452 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
12453
12454 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
12455
12456 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12457
12458 * lread.c (Fload): Don't output a message after loading an obsolete
12459 package any more (done in Lisp now).
12460
12461 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
12462
12463 * fns.c (syms_of_fns): Doc fix (Bug#4227).
12464
12465 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12466
12467 * keymap.c (Fwhere_is_internal): Use nconc2.
12468
12469 2009-09-11 Alan Mackenzie <acm@muc.de>
12470
12471 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
12472 batch mode.
12473
12474 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
12475
12476 * xdisp.c (display_mode_element): Detect cycles.
12477
12478 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
12479
12480 * keymap.c (where_is_internal): Don't erroneously return nil right after
12481 filling the cache.
12482 (where_is_internal_1): Fix up typo.
12483
12484 2009-09-11 Glenn Morris <rgm@gnu.org>
12485
12486 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
12487 share a common doc-string.
12488
12489 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
12490
12491 * keymap.c (get_keymap): Return the actual keymap symbol rather than
12492 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
12493
12494 * keymap.c (QCadvertised_binding): New constant.
12495 (syms_of_keymap): Initialize it.
12496 (Fwhere_is_internal): Try and use bindings from :advertised-binding
12497 if applicable.
12498
12499 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
12500
12501 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
12502 (parse_menu_item): Streamline since bindings are recomputed all the
12503 time anyway. Don't bother checking Vdefine_key_rebound_commands any
12504 more and don't support lmenu's menu-alias any more either.
12505
12506 * keymap.c (where_is_internal_data): Make noindirect a boolean.
12507 (where_is_internal): Strip it down to only traverse the keymaps.
12508 Move the cache handling from Fwhere_is_internal to here.
12509 (Fwhere_is_internal): Move the handling of remapping and the choice of
12510 the best binding from where_is_internal to here.
12511 Unify the cached/noncached paths, so remapping is also handled
12512 correctly when the cache is used, and so the cache can be used to
12513 speed up remap-handling when applicable.
12514 Give preference to non-remapped bindings.
12515 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
12516 non-remapped bindings.
12517 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
12518 command remapping.
12519
12520 * xdisp.c (display_mode_element): Move list length limit from 50 to
12521 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
12522
12523 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
12524
12525 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
12526
12527 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
12528
12529 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
12530 (Bug#4334)
12531
12532 * keymap.c (where_is_internal): Filter out shadowed remappings.
12533 Assume that where_is_internal returns unshadowed bindings to simplify
12534 the code and get rid of the gotos. Use ASIZE.
12535
12536 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
12537
12538 * xterm.c (x_focus_changed): If we get a focusout and pointer
12539 is invisible, make it visible.
12540
12541 * xterm.h: Remove condition for declaration of
12542 x_*_window_to_frame.
12543
12544 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
12545
12546 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
12547 initial terminal as well.
12548
12549 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
12550
12551 * xterm.h: Rename x_non_menubar_window_to_frame to
12552 x_menubar_window_to_frame.
12553
12554 * xterm.c: Remove declarations also in xterm.h.
12555 (XTmouse_position): Do not return valid positions
12556 for clicks in the menubar and the toolbar for Gtk+.
12557
12558 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
12559 if the widget for the event has the same top level as a frame,
12560 return the frame.
12561 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
12562 internal windows, bug #4122.
12563 (x_non_menubar_window_to_frame): Remove.
12564
12565 2009-09-02 Glenn Morris <rgm@gnu.org>
12566
12567 * buffer.c (default-major-mode): Move most of the doc from here...
12568 (major-mode): ... to here.
12569
12570 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
12571
12572 * process.c (wait_reading_process_output): Keep the descriptor
12573 when pty is used by a non-child process, e.g., in I/O buffer of
12574 GDB this allows inferior to be restarted.
12575
12576 2009-08-29 Eli Zaretskii <eliz@gnu.org>
12577
12578 * xdisp.c (redisplay_internal): Remove redundant test and collapse
12579 both branches into one.
12580
12581 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
12582
12583 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
12584 (main): Use enable-multibyte-characters rather than
12585 default-enable-multibyte-characters. Output a warning message when
12586 running a unibyte session.
12587
12588 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12589
12590 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
12591 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
12592 (copy_data_segment): Also copy __program_vars section.
12593 (copy_dyld_info) [LC_DYLD_INFO]: New function.
12594 (dump_it) [LC_DYLD_INFO]: Use it.
12595
12596 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
12597
12598 2009-08-28 Eli Zaretskii <eliz@gnu.org>
12599
12600 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
12601 $(SRC)/buildobj.h.
12602 (buildobj.h): Rename from $(SRC)/buildobj.h.
12603 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
12604 $(SRC)/buildobj.h.
12605 (clean): Add buildobj.h.
12606
12607 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
12608
12609 * print.c (print_object): Set escapeflag to 1 when printing
12610 hashtable keys and values.
12611
12612 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
12613
12614 * lread.c (read_integer): Use doubles (and potentially return a float
12615 number) as we do in string-to-number.
12616 (read1): Use strtol to read integers, signal errors on strtol's
12617 overflow and use floats if strtol's output is too large for
12618 Elisp integers.
12619
12620 2009-08-27 Eli Zaretskii <eliz@gnu.org>
12621
12622 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
12623 (make-buildobj-SH): Fix last change.
12624 (SRC): Move to before where it's first used.
12625
12626 2009-08-27 Kenichi Handa <handa@m17n.org>
12627
12628 * process.c (send_process): Use encode_coding_object instead of
12629 encode_coding_string to perform eol-conversion even if the string
12630 is unibyte.
12631
12632 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
12633 character.
12634
12635 * cmds.c (Fself_insert_command): Avoid unnecessay
12636 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
12637
12638 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
12639
12640 * callproc.c (Fcall_process): Remove always true #if.
12641
12642 * lisp.h: Replace #if 0 code for checking with text pointing to
12643 the --enable-checking configure flag.
12644
12645 * emacs.c (main): Mention the --enable-profiling configure flag
12646 instead of using CFLAGS.
12647
12648 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
12649
12650 * Makefile.in (buildobj.h): New target.
12651 (doc.o): Depend on it.
12652 (temacs${EXEEXT}): Don't generate buildobj.lst.
12653 (mostlyclean): Delete buildobj.h, not buildobj.lst.
12654 * makefile.w32-in ($(SRC)/buildobj.h): New target.
12655 ($(BLD)/doc.$(O)): Depend on it.
12656 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
12657 provided by Eli Zaretskii.)
12658 ($(TEMACS)): Don't generate buildobj.lst.
12659 * doc.c: Include buildobj.h.
12660 (buildobj): New static variable.
12661 (Fsnarf_documentation): Use it, instead of opening and reading
12662 buildobj.lst.
12663
12664 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
12665
12666 * dbusbind.c (Fdbus_call_method)
12667 (Fdbus_call_method_asynchronously): Use English numeric format for
12668 timeout values in doc string.
12669
12670 2009-08-25 Kenichi Handa <handa@m17n.org>
12671
12672 * alloc.c (mark_char_table): New function.
12673 (mark_object): Use mark_char_table for a char-table.
12674
12675 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
12676 (CHAR_TABLE_REF): Use it.
12677
12678 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
12679
12680 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
12681 before invoking the newly build emacs to check for load-path
12682 shadowing.
12683
12684 2009-08-22 Glenn Morris <rgm@gnu.org>
12685
12686 * Makefile.in (bootstrap_exe): New variable.
12687 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
12688 Use ${bootstrap_exe}.
12689
12690 2009-08-22 Eli Zaretskii <eliz@gnu.org>
12691
12692 * coding.h (encode_coding_string): Don't encode unibyte strings.
12693 (Bug#4047)
12694
12695 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
12696
12697 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
12698
12699 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
12700 intended as hotfix only.
12701 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
12702
12703 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
12704
12705 * nsterm.m (ns_get_color): Update documentation properly for last
12706 change, and clean up loose ends in the code left by it.
12707 Fix longstanding bug with 16-bit hex parsing, and add support for
12708 yet another X11 format (rgb:r/g/b) for compatibility.
12709 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
12710 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
12711
12712 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
12713
12714 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
12715
12716 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
12717
12718 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
12719 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
12720 (xd_initialize, xd_pending_messages): Check, whether
12721 $DBUS_SESSION_BUS_ADDRESS is set.
12722
12723 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12724
12725 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
12726
12727 * nsterm.m (ns_get_color): Remove incompatible color formats again.
12728
12729 2009-08-20 Glenn Morris <rgm@gnu.org>
12730
12731 * emacs.c (system-type): Doc fix.
12732
12733 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
12734
12735 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
12736 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
12737
12738 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
12739
12740 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
12741 New functions.
12742 (xd_initialize): Revert change from 2009-08-16.
12743
12744 2009-08-18 Kenichi Handa <handa@m17n.org>
12745
12746 * fontset.c (Ffontset_font): If a nil element is found in a
12747 font-group vector, return nil.
12748
12749 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
12750
12751 * process.c (status_notify): Don't perform redisplay.
12752 (Fdelete_process, list_processes_1, process_send_signal):
12753 Expliticly perform redisplay.
12754 (wait_reading_process_output): Always check process status, but
12755 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
12756
12757 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
12758
12759 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
12760 (XFLOAT_INIT): New macro for storing a float value.
12761 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
12762 * fns.c (sxhash): Copy out the value of a float in order to
12763 examine its bytes.
12764 * dbusbind.c (xd_append_arg): Likewise.
12765
12766 * emacs.c (main): Don't call syms_of_data twice.
12767
12768 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
12769
12770 * dbusbind.c (xd_initialize): Add connection file descriptor to
12771 input_wait_mask, in order to let select() detect, whether a new
12772 message has been arrived.
12773 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
12774
12775 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
12776
12777 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
12778 New functions.
12779
12780 * lisp.h (xd_pending_messages): Declare.
12781
12782 * keyboard.c (readable_events): Call xd_pending_messages.
12783
12784 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
12785
12786 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
12787
12788 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
12789
12790 * buffer.c (set_buffer_internal_1)
12791 (swap_out_buffer_local_variables): Check for unbound local
12792 variables (Bug#4138).
12793
12794 2009-08-14 Eli Zaretskii <eliz@gnu.org>
12795
12796 * process.c (create_pty): Fix last change.
12797
12798 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
12799
12800 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
12801 (xbm_load_image): Caller changed.
12802 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
12803
12804 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
12805
12806 * process.c (create_pty): New function.
12807 (Fstart_process): Use it to allow Emacs to just associate a pty
12808 with the buffer. See associated change in gdb-mi.el.
12809 (list_processes_1): Deal with no program name.
12810 (start_process_unwind): Use pid == -2 to mean no process.
12811
12812 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
12813
12814 * cmds.c (nonundocount): New global variable.
12815 (keys_of_cmds): Initialize it.
12816 (Fself_insert_command): Use it to combine upto 20 sequential chars
12817 into a single undo entry, just like the Qself_insert_command code in
12818 keyboard.c does.
12819 Call frame_make_pointer_invisible, also like the Qself_insert_command
12820 code in keyboard.c does.
12821 * keyboard.c (command_loop_1): Use the new global nonundocount rather
12822 than its own local replacement for it.
12823
12824 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
12825
12826 * fns.c (concat): Don't re-set string length to its current value.
12827
12828 * coding.h (decode_coding_string, encode_coding_string):
12829 Use SBYTES macro.
12830
12831 * doprnt.c (doprnt_lisp): Delete unused function.
12832 (doprnt): Merge with doprnt1, discarding lispstrings code.
12833 * lisp.h (doprnt_lisp): Don't declare.
12834
12835 2009-08-07 Juri Linkov <juri@jurta.org>
12836
12837 * puresize.h (BASE_PURESIZE): Increase to 1270000.
12838
12839 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
12840
12841 * print.c (syms_of_print): Undo previous change.
12842
12843 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
12844
12845 * lread.c (read1, syms_of_lread): Read hashtables back from the
12846 readable format.
12847
12848 * print.c (print_preprocess, print_object): Print hashtables fully
12849 and readably.
12850 (syms_of_print): Provide 'hashtable-print-readable.
12851
12852 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
12853
12854 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
12855 no family set.
12856 (nsfont_open): Handle case when entity has no family.
12857
12858 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
12859
12860 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
12861 element, not a list, for match case.
12862
12863 2009-07-28 Kenichi Handa <handa@m17n.org>
12864
12865 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
12866 rigidly.
12867
12868 * xfont.c (xfont_list_pattern): Don't ignore the return value of
12869 font_parse_xlfd. Check font properties more rigidly.
12870
12871 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
12872
12873 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
12874 bsd-common.h.
12875
12876 2009-07-27 Kenichi Handa <handa@m17n.org>
12877
12878 * xfaces.c (face_with_height): Call font_clear_prop.
12879
12880 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
12881
12882 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
12883
12884 * xterm.c (x_term_init): Use Qx.
12885
12886 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
12887
12888 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
12889 (ns_get_color): Revert 2009-07-16 change.
12890
12891 2009-07-25 Eli Zaretskii <eliz@gnu.org>
12892
12893 * lread.c (syms_of_lread) <force_load_messages>: New variable.
12894 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
12895
12896 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
12897
12898 * coding.h (decode_coding_string, encode_coding_string):
12899 Use SCHARS macro.
12900
12901 * lread.c: Rewrite 2009-07-21 changes.
12902 (load_depth): Delete.
12903 (Qload_in_progress): New variable.
12904 (load_unwind): Don't reference load_depth or load_in_progress.
12905 (Fload): Likewise; specbind Qload_in_progress instead.
12906 (init_lread): Don't initialize load_depth.
12907 (syms_of_lread): Initialize and protect Qload_in_progress.
12908
12909 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
12910
12911 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
12912
12913 2009-07-23 Yavor Doganov <yavor@gnu.org>
12914
12915 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
12916
12917 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
12918
12919 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
12920 Bugs 3792, 3720, 2402.
12921 (ns_lookup_indexed_color): Check for bad index.
12922 (ns_index_color): Init unused slot to 0.
12923 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
12924 Bug 3714, possibly 3082.
12925
12926 2009-07-22 Jason Rumney <jasonr@gnu.org>
12927
12928 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
12929 Position IME window at cursor (Bug#2570).
12930 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
12931 (globals_of_w32fns): Dynamically load functions required above.
12932
12933 * w32term.c (w32_draw_window_cursor): Send message to reposition
12934 any IME window.
12935
12936 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
12937
12938 * fileio.c: Revert 2009-07-16 changes.
12939 (Vauto_save_include_big_deletions): New variable.
12940 (Fdo_auto_save): Disable auto-save only if
12941 auto-save-include-big-deletions is nil.
12942
12943 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
12944
12945 * xdisp.c (move_it_to): For continued lines ending in a tab, take
12946 the overflowed pixels into account (Bug#3879).
12947
12948 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
12949
12950 * lread.c (load_depth): New variable.
12951 (Fload, load_unwind, init_lread): Set it to the load recursion
12952 depth; set load_in_progress as a simple boolean based on the
12953 current load_depth. (Bug#3892)
12954
12955 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
12956
12957 * nsfont.m (ns_has_attribute): Remove.
12958 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
12959
12960 2009-07-18 Juri Linkov <juri@jurta.org>
12961
12962 * process.c (Fset_process_query_on_exit_flag): Mention killing
12963 a buffer in docstring.
12964
12965 2009-07-17 Kenichi Handa <handa@m17n.org>
12966
12967 * casetab.c (shuffle): Fix the logic of setting up the cycle.
12968
12969 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12970
12971 * nsfns.m (Fns_set_alpha): Remove function.
12972 (syms_of_nsfns): Don't defsubr it.
12973
12974 * nsterm.m (ns_get_color): Remove incompatible color formats.
12975 (ns_color_to_lisp): Generate #rrggbb color format string.
12976
12977 2009-07-16 Richard Stallman <rms@gnu.org>
12978
12979 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
12980 (Fset_buffer_auto_saved): Handle save_length = -2.
12981
12982 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
12983
12984 * xterm.c (Qx_gtk_map_stock): New var.
12985
12986 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
12987 of calling intern each time.
12988
12989 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12990
12991 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
12992 does tiling.
12993
12994 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
12995
12996 2009-07-14 Kenichi Handa <handa@m17n.org>
12997
12998 * font.c (font_vconcat_entity_vectors): New function.
12999 (struct font_sort_data): New member font_driver_preference.
13000 (font_compare): Check font_driver_preference.
13001 (font_sort_entities): The format of the first argument changed.
13002 (font_delete_unmatched): Likewise.
13003 (font_list_entities): The return type changed.
13004 (font_select_entity): The format of the second argument changed.
13005 (font_find_for_lface): Adjuste for the above changes.
13006 Don't suppress the checking of C even if the repertory supports it.
13007 (Flist_fonts): Adjust for the above changes.
13008
13009 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
13010 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
13011 Reject a font who has adstyle property that is different from a
13012 langname derived from registry property.
13013 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
13014
13015 2009-07-13 Eli Zaretskii <eliz@gnu.org>
13016
13017 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
13018 local copy of dirfilename.
13019
13020 2009-07-13 Kenichi Handa <handa@m17n.org>
13021
13022 * chartab.c (sub_char_table_ref_and_range): Fix the range check
13023 against max_char.
13024
13025 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
13026 calling XSYMBOL (sym).
13027
13028 2009-07-11 Eli Zaretskii <eliz@gnu.org>
13029
13030 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
13031 New function.
13032 (directory_files_internal) [WINDOWSNT]:
13033 Bind w32-get-true-file-attributes to either t or nil, depending whether
13034 the filesystem of the directory is fast or slow.
13035
13036 * w32.c (logon_network_drive): Don't assume PATH is an absolute
13037 file name.
13038 (is_slow_fs): New function.
13039 (stat): Use it to determine whether to issue more system calls to
13040 get accurate file attributes, when w32-get-true-file-attributes is
13041 `local'.
13042
13043 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
13044
13045 * xfns.c (Fx_select_font): Remember last font selected in
13046 x_last_font_name and use that the next time. Also try the frame
13047 parameter font-parameter as default to the font dialog.
13048
13049 2009-07-10 Kenichi Handa <handa@m17n.org>
13050
13051 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
13052
13053 2009-07-09 Eli Zaretskii <eliz@gnu.org>
13054
13055 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
13056
13057 * w32.c (stat): Treat UNC file names as residing on remote
13058 drives. (Bug#3542)
13059
13060 2009-07-09 Kenichi Handa <handa@m17n.org>
13061
13062 * fontset.c (fontset_find_font): Fix previous change.
13063
13064 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
13065
13066 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
13067 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
13068 error flag.
13069
13070 2009-07-08 Kenichi Handa <handa@m17n.org>
13071
13072 * fontset.c (fontset_find_font): Fix the logic of handling
13073 charset_matched.
13074 (font_for_char): Delete unused var.
13075 (generate_ascii_font_name): Delete it.
13076
13077 * coding.h (JIS_TO_SJIS2): Fix the code range check.
13078
13079 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
13080 (encode_coding_sjis): Fix the code range check.
13081
13082 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
13083
13084 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
13085 (Fexpand_file_name): Copy string data properly (Bug#3772).
13086
13087 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
13088
13089 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
13090 first MapNotify.
13091
13092 2009-07-07 Kenichi Handa <handa@m17n.org>
13093
13094 * character.h (unibyte_has_multibyte_table): Delete extern.
13095 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
13096
13097 * charset.c (Fset_charset_priority): Update charset_unibyte.
13098 (syms_of_charset): Initialize charset_unibyte.
13099
13100 * character.c (unibyte_has_multibyte_table): Delete it.
13101 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
13102 charset_unibyte.
13103 (multibyte_char_to_unibyte_safe): Likewise.
13104 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
13105
13106 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
13107 (x_produce_glyphs): Likewise.
13108
13109 * .gdbinit (xcharset): Fix the treating $arg0.
13110
13111 2009-07-04 Eli Zaretskii <eliz@gnu.org>
13112
13113 Emulation of `getloadavg' on MS-Windows.
13114 * w32.c: Include float.h.
13115 (g_b_init_get_native_system_info, g_b_init_get_system_times)
13116 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
13117 (get_native_system_info, get_system_times): New functions.
13118 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
13119 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
13120 (globals_of_w32): Initialize g_b_init_get_native_system_info,
13121 g_b_init_get_system_times, and num_of_processors.
13122
13123 2009-07-03 Jason Rumney <jasonr@gnu.org>
13124
13125 * w32term.c (w32_initialize): Use standard types.
13126
13127 2009-07-03 Eli Zaretskii <eliz@gnu.org>
13128
13129 * dired.c (Ffile_attributes): Decode user and group names by the
13130 locale's encoding. (Bug#3443)
13131
13132 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
13133
13134 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
13135 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
13136
13137 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
13138
13139 * term.c (init_tty): Remove spurious #ifdef.
13140
13141 * m/mips.h: Mention this file is also used for netbsd.
13142 * m/pmax.h: Remove file.
13143
13144 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
13145
13146 * xterm.h (struct x_display_info): Add invisible_cursor.
13147 (struct x_output): Add current_cursor.
13148
13149 * xterm.c (XTtoggle_invisible_pointer): New function.
13150 (x_define_frame_cursor): Don't define cursor if invisible or the
13151 same as before. Set current_cursor.
13152 (x_create_terminal): Set toggle_invisible_pointer_hook.
13153
13154 * xfns.c (make_invisible_cursor): New function.
13155 (x_set_mouse_color): Call make_invisible_cursor.
13156 Set current_cursor.
13157 (x_window): Set current_cursor.
13158
13159 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
13160
13161 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
13162 inserting a character.
13163 (read_avail_input): Call frame_make_pointer_visible.
13164
13165 * frame.c (Vmake_pointer_invisible): New variable.
13166 (frame_make_pointer_invisible, frame_make_pointer_visible):
13167 New functions.
13168 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
13169
13170 * frame.h: Declare frame_make_pointer_invisible and
13171 frame_make_pointer_visible.
13172 (struct frame): Add pointer_invisible.
13173
13174 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
13175
13176 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
13177 frame isn't visible.
13178 (xg_frame_resized): If width/height is -1, get size of window
13179 from X server.
13180
13181 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
13182 for MapNotify.
13183
13184 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
13185 here or call change_frame_size. Just call flush_and_sync.
13186 (flush_and_sync): Reintroduce.
13187
13188 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
13189
13190 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
13191
13192 * xterm.c (x_handle_net_wm_state): Also look for sticky.
13193 (x_term_init): Initialize Xatom_net_wm_state_sticky.
13194
13195 * frame.h: Declare Qsticky.
13196
13197 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
13198
13199 * nsfns.m (ns_frame_parm_handlers): Ditto.
13200
13201 * frame.c: Declare Qsticky.
13202 (frame_parms): Add sticky.
13203
13204 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
13205
13206 * xterm.h: Declare x_set_sticky.
13207
13208 * xterm.c (x_set_sticky): New function.
13209
13210 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
13211 (xg_tool_bar_menu_proxy): Attach enter/leave events to
13212 xg_tool_bar_proxy_help_callback.
13213
13214 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
13215
13216 * frame.c: Qmaximized is new.
13217 (x_set_frame_parameters): Do not handle fullscreen specially.
13218 Only set width and height if explicitly set.
13219 (x_set_fullscreen): Handle Qmaximized.
13220 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
13221 (syms_of_frame): Initialize Qmaximized.
13222
13223 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
13224 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
13225
13226 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
13227 for Expose event. Add call to x_check_fullscreen for MapNotify event.
13228 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
13229 set gravity to NorthWestGravity when USE_GTK.
13230 (set_wm_state): New function.
13231 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
13232 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
13233 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
13234 or the case when no window manager is running. That means remove calls
13235 to x_real_positions and x_fullscreen_adjust.
13236
13237 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
13238 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
13239 flush_and_sync.
13240 (xg_height_changed): New function.
13241 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
13242 and gtk_window_set_policy. Set frame gravity after parsing the
13243 geometry string.
13244 (xg_update_frame_menubar, free_frame_menubar)
13245 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
13246 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
13247 Remove calls to xg_frame_set_char_size.
13248
13249 2009-07-01 Kenichi Handa <handa@m17n.org>
13250
13251 * keyboard.c (decode_keyboard_code): New function.
13252 (tty_read_avail_input): Decode the input bytes if necessary.
13253
13254 * coding.c (setup_coding_system):
13255 Initialize coding->carryover_bytes to 0.
13256 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
13257 use Qno_conversion.
13258
13259 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13260
13261 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
13262
13263 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
13264
13265 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
13266
13267 2009-06-30 Jason Rumney <jasonr@gnu.org>
13268
13269 * w32term.c (w32_initialize): Use GetModuleHandle for library that
13270 is already loaded.
13271 Set user model ID if supported (bug#1849).
13272
13273 2009-06-29 Jim Meyering <meyering@redhat.com>
13274
13275 Remove useless if-before-xfree test.
13276 * nsfont.m (nsfont_close): Remove useless test.
13277 * term.c (delete_tty): Likewise.
13278 * w32.c (system_process_attributes): Likewise.
13279 * w32font.c (w32font_close): Likewise.
13280 * xfaces.c (x_free_gc): Likewise.
13281 * xselect.c (buffer): Likewise.
13282
13283 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
13284
13285 * process.c (send_process): Keep decoded string in a local
13286 variable and protect it from GC. (Bug#3521)
13287
13288 2009-06-28 Eli Zaretskii <eliz@gnu.org>
13289
13290 * term.c (create_tty_output) [MSDOS]: #ifdef away.
13291 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
13292
13293 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
13294
13295 * xdisp.c (start_display, handle_face_prop)
13296 (move_it_vertically_backward, cursor_row_fully_visible_p)
13297 (redisplay_window, try_window_id, produce_image_glyph):
13298 Delete some #ifdef-ed out code chunks that are now obsolete.
13299
13300 * xterm.c (x_update_window_begin, x_new_focus_frame)
13301 (x_scroll_bar_handle_click, handle_one_xevent)
13302 (handle_one_xevent, XTread_socket, x_focus_on_frame)
13303 (x_make_frame_visible, x_make_frame_invisible)
13304 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
13305 code chunks that are now obsolete.
13306
13307 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
13308
13309 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
13310 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
13311 for hours, when optimzation is enabled.
13312 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
13313 (xd_read_message): Make them static.
13314
13315 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
13316
13317 * term.c (turn_on_face): Allow simultaneously bold and dim
13318 terminal faces (Bug#3530).
13319
13320 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
13321
13322 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
13323
13324 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
13325 truncation glyphs (Bug#3686).
13326
13327 2009-06-27 Glenn Morris <rgm@gnu.org>
13328
13329 * m/pmax.h: Restore file, with only netbsd portions.
13330
13331 2009-06-26 David Reitter <david.reitter@gmail.com>
13332
13333 * nsterm.m (keydown): Avoid infinite loop.
13334
13335 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
13336
13337 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
13338 the arg FORCE_SYMBOL.
13339
13340 2009-06-25 Kenichi Handa <handa@m17n.org>
13341
13342 * fontset.c (fontset_find_font): When a usable rfont_def is found
13343 in a fallback font-group, make it the first element of the group.
13344
13345 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
13346
13347 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
13348
13349 2009-06-24 Kenichi Handa <handa@m17n.org>
13350
13351 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
13352 set for C.
13353 (fontset_font): Record the availability of a font for C both in
13354 the realized fontsets of the current one and the default one.
13355
13356 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
13357
13358 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
13359 conditional, it is always defined on AIX.
13360
13361 2009-06-23 Miles Bader <miles@gnu.org>
13362
13363 * window.c (Vrecenter_redisplay): New variable.
13364 (syms_of_window): Initialize it.
13365 (Qtty): New extern declaration.
13366 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
13367
13368 2009-06-23 Jim Meyering <meyering@redhat.com>
13369
13370 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
13371 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
13372 pointer dereferences are guaranteed to be valid.
13373
13374 2009-06-23 Kenichi Handa <handa@m17n.org>
13375
13376 * emacs.c (main): Call init_font ().
13377
13378 * font.h (Vfont_log): Extern it.
13379 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
13380
13381 * font.c (font_sort_entities, font_list_entities)
13382 (font_matching_entity, font_open_entity)
13383 (font_close_object): Change font_add_log to FONT_ADD_LOG.
13384 (Vfont_log): Delete static.
13385 (font_log_env_checked): Delete this variable.
13386 (font_add_log): Don't check font_log_env_checked.
13387 (font_deferred_log): Check Vfont_log.
13388 (init_font): New function.
13389
13390 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
13391
13392 * w32font.c: Change font_add_log to FONT_ADD_LOG.
13393
13394 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
13395
13396 * xfont.c: Change font_add_log to FONT_ADD_LOG.
13397
13398 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
13399 (face_for_char): Don't call font_deferred_log here.
13400 (font_for_char): Likewise.
13401
13402 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
13403
13404 * w32term.c (x_draw_glyph_string): Use the glyph string's width
13405 rather than its background_width for drawing the overline and
13406 underline (Bug#489).
13407
13408 * xterm.c (x_draw_glyph_string): Use the glyph string's width
13409 rather than its background_width for drawing the overline and
13410 underline (Bug#489).
13411 (xg_default_icon_file): New variable.
13412 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
13413 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
13414
13415 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
13416 (load_overlay_strings): Remove externs.
13417 (fast_find_position): Function deleted.
13418 (mouse_face_from_buffer_pos): New function, based on
13419 fast_find_position. Correctly handle before-strings,
13420 display-strings, and after-strings (Bug#1220).
13421 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
13422
13423 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
13424
13425 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
13426 (move_it_in_display_line_to, move_it_in_display_line_to)
13427 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
13428
13429 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
13430
13431 * Branch for 23.1.
13432
13433 2009-06-21 Jason Rumney <jasonr@gnu.org>
13434
13435 * w32term.c (keyboard_codepage): New static variable.
13436 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
13437 (w32_read_socket) [WM_CHAR]: Use it to decode character
13438 input (bug#3237).
13439 (w32_initialize): Initialize it.
13440 (codepage_for_locale): New function.
13441
13442 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
13443
13444 * process.c (status_message): Pass Faset index argument as a lisp
13445 object, so as to work with USE_LISP_UNION_TYPE.
13446
13447 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13448
13449 * coding.c (Ffind_coding_systems_region_internal):
13450 Cache checked characters.
13451
13452 2009-06-18 Kenichi Handa <handa@m17n.org>
13453
13454 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
13455
13456 2009-06-18 Andreas Schwab <aschwab@redhat.com>
13457
13458 * xdisp.c (redisplay_internal): Check that the frame is still
13459 live after redisplay of its windows.
13460 (redisplay_windows): Check that the window is still live.
13461
13462 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
13463
13464 * coding.c (detect_coding_utf_16): Fix previous change.
13465
13466 2009-06-16 Kenichi Handa <handa@m17n.org>
13467
13468 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
13469 UTF-16 by checking the dispersion of Eth and Oth bytes.
13470
13471 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
13472
13473 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
13474
13475 2009-06-15 Kenichi Handa <handa@m17n.org>
13476
13477 * process.c (status_message): Fix previous change. Be sure to
13478 decode a localized string.
13479
13480 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13481
13482 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
13483 add comment explaining why.
13484
13485 2009-06-14 Sidney Markowitz <sidney@sidney.com>
13486
13487 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
13488
13489 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
13490
13491 * nsfont.m (ns_attribute_value): Remove.
13492 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
13493 (ns_has_attribute): Shrink the normal range.
13494 (ns_findfonts): Don't worry about requested spec in determining
13495 need for synthItal.
13496 (ns_get_covering_families): Retain scriptToFamilies.
13497
13498 2009-06-14 Seiji Zenitani <zenitani@mac.com>
13499
13500 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
13501
13502 2009-06-11 Kenichi Handa <handa@m17n.org>
13503
13504 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
13505 overhang for the static composition case.
13506
13507 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13508
13509 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
13510 overhang for the automatic composition case.
13511
13512 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
13513 composition case.
13514
13515 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
13516
13517 * xdisp.c (get_next_display_element): When handling wrap-prefix
13518 and line-prefix, treat \n as a control character (bug#3502).
13519
13520 2009-06-10 Kenichi Handa <handa@m17n.org>
13521
13522 * font.c (font_parse_family_registry): Fix for one-char foundry.
13523 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
13524
13525 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
13526
13527 * process.c (status_message): Fix handling of multibyte signal
13528 string (Bug#3499).
13529
13530 2009-06-09 Jim Meyering <meyering@redhat.com>
13531
13532 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
13533 color name is missing.
13534
13535 2009-06-09 Kenichi Handa <handa@m17n.org>
13536
13537 * charset.c (Fmap_charset_chars): In docstring, state clearly that
13538 FROM-CODE and TO-CODE are codepoints of CHARSET.
13539
13540 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
13541
13542 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
13543
13544 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
13545
13546 Changes to support :script/:lang/:otf in NS font driver.
13547 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
13548 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
13549 indicate not part of font driver interface, and change callers.
13550 (ns_get_family): Remove pointless null check.
13551 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
13552 ns_spec_to_descriptor, ns_descriptor_to_entity.
13553 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
13554 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
13555 (ns_spec_to_descriptor, ns_descriptor_to_entity)
13556 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
13557 (ns_get_req_script, ns_accumulate_script_ranges)
13558 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
13559 New functions.
13560 (nsfont_list, nsfont_match): Use ns_findfonts.
13561 (nsfont_open): Use font descriptor instead of traits.
13562 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
13563 (dump_glyphstring): Rename to ns_dump_glyphstring.
13564
13565 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
13566
13567 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
13568
13569 * fontset.c (fontset_from_font): Remove NS-specific code.
13570
13571 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
13572
13573 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
13574 nonactive windows.
13575
13576 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
13577
13578 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
13579
13580 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
13581
13582 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
13583
13584 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
13585
13586 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
13587 account for the overflowing of newlines into the last glyph on the
13588 display line (Bug#3482).
13589
13590 2009-06-05 David Reitter <david.reitter@gmail.com>
13591
13592 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
13593 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
13594 Fns_selection_exists_p, Fns_selection_owner_p.
13595
13596 2009-06-03 Jason Rumney <jasonr@gnu.org>
13597
13598 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
13599 available. (Bug#3379)
13600
13601 2009-05-29 Kenichi Handa <handa@m17n.org>
13602
13603 * coding.c (get_translation_table):
13604 Check Venable_character_translation.
13605
13606 2009-05-26 David Reitter <david.reitter@gmail.com>
13607
13608 * nsterm.m (ns_raise_frame): Only raise frame if visible.
13609 (x_make_frame_visible): Move frame to front rather than calling
13610 ns_raise_frame().
13611 (keyDown:): Do not swallow events that aren't re-sent if frame
13612 isn't key window.
13613 (drawRect:): Do not set visibility/iconified flags because
13614 drawRect may be called by NSView even if the frame is hidden.
13615
13616 * nsfns.m (Fx_create_frame): Follow other ports in
13617 determining visibility; default to t. Ensure async_visible is set.
13618
13619 2009-05-23 Eli Zaretskii <eliz@gnu.org>
13620
13621 * dired.c (Ffile_attributes): Doc fix.
13622
13623 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
13624
13625 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
13626
13627 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13628
13629 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
13630 and xfont_scratch_props.
13631 (syms_of_xfont): Do it here instead.
13632 (xfont_find_ccl_program): Delete, unused.
13633 (xfont_open): Delete unused var `i'.
13634
13635 2009-05-21 Kenichi Handa <handa@m17n.org>
13636
13637 * fontset.c (Qlatin): Don't make it static.
13638
13639 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
13640 New functions.
13641 (xfont_scripts_cache, xfont_scratch_props): New variables.
13642 (Qlatin, Vscalable_fonts_allowed): Extern it.
13643 (xfont_list_pattern): Argument changed. Callers changed.
13644 Check Vscalable_fonts_allowed. Check the support of a script.
13645 (xfont_list): Don't reject a font spec with :script property.
13646 (xfont_has_char): Fix setting of encoding.
13647 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
13648 xfont_scratch_props.
13649
13650 2009-05-19 Kenichi Handa <handa@m17n.org>
13651
13652 * font.c (font_sort_entities): Rename from font_sort_entites.
13653 Callers changed.
13654
13655 2009-05-18 Kenichi Handa <handa@m17n.org>
13656
13657 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
13658
13659 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
13660
13661 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
13662 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
13663
13664 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13665
13666 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
13667 (x_delete_terminal): Dissociate resource database from display and
13668 then call XrmDestroyDatabase before closing display.
13669
13670 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
13671
13672 * nsterm.m (ns_read_socket): Remove unused variable.
13673 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
13674 whether selected frame is viable before raising it (based on patch
13675 by David Reitter), and improve commentary.
13676 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
13677
13678 2009-05-15 Kenichi Handa <handa@m17n.org>
13679
13680 * font.c (Ffont_spec): Check arguments.
13681
13682 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
13683
13684 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
13685 weight when testing attributes (Bug#3282).
13686
13687 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13688
13689 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
13690 what we expect to get in the next ConfigureNotify event.
13691
13692 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
13693 before Xft one (Bug#1696).
13694
13695 2009-05-07 David Reitter <david.reitter@gmail.com>
13696
13697 * nsfns.m (Fx_display_planes): Compute bitplanes using
13698 NSBitsPerPixelFromDepth (Bug#3207).
13699
13700 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
13701
13702 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
13703
13704 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
13705
13706 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
13707
13708 2009-05-07 David Reitter <david.reitter@gmail.com>
13709
13710 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
13711 Respect mouse face background.
13712
13713 2009-05-07 David Reitter <david.reitter@gmail.com>
13714
13715 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
13716 Mouse movement/highlight: bracket drawing operations
13717 in ns_update_begin and ns_update_end.
13718
13719 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13720
13721 * nsfns.m (ns_get_screen): Rewrite.
13722 Don't presume selected-frame is of type `ns'.
13723
13724 * font.c (font_update_drivers): Sanity fallback to avoid disabling
13725 all drivers.
13726
13727 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
13728
13729 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13730
13731 * keyboard.h (add_user_signal): Fix typo in extern.
13732
13733 * lisp.h (add_user_signal): Remove extern.
13734
13735 * unexelf.c (unexec): Consider a section to precede the .bss section
13736 if its addresses overlap that of .bss.
13737 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
13738 instead of dumping process.
13739
13740 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13741
13742 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
13743
13744 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
13745
13746 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
13747
13748 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
13749
13750 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
13751 any statements.
13752
13753 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
13754
13755 * process.c (read_process_output): Make sure the current buffer is
13756 always restored.
13757
13758 * coding.c (record_conversion_result): Don't modify
13759 Vlast_code_conversion_error for successful result.
13760 (alloc_destination): Don't clobber conversion result. (Bug#1650)
13761
13762 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
13763
13764 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
13765 (load_charset_map): Remove unnecessary code.
13766
13767 2009-04-30 David Reitter <david.reitter@gmail.com>
13768
13769 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
13770 through f24.
13771
13772 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
13773
13774 * xfaces.c (face_at_buffer_position): New arg base_face_id.
13775
13776 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
13777 face_at_buffer_position.
13778 (face_before_or_after_it_pos, get_next_display_element)
13779 (note_mouse_highlight): Update face_at_buffer_position call.
13780
13781 * term.c (term_mouse_highlight):
13782 * msdos.c (IT_note_mouse_highlight):
13783 * fontset.c (Finternal_char_font):
13784 * font.c (font_at, font_range): Update face_at_buffer_position call.
13785
13786 * dispextern.h (face_at_buffer_position): Update prototype.
13787
13788 2009-04-30 Kenichi Handa <handa@m17n.org>
13789
13790 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
13791
13792 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
13793
13794 * callproc.c (Fcall_process): Fix GC protection. Make sure
13795 current buffer is always restored.
13796
13797 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13798
13799 * atimer.c (init_atimer): Also clear stopped_atimers.
13800
13801 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
13802
13803 * process.c (create_process): Clean up merger residues of
13804 2008-07-17 change.
13805
13806 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
13807
13808 * lread.c (Vread_circle): New variable.
13809 (read1): Disable recursive read if Vread_circle is nil.
13810
13811 2009-04-29 Kenichi Handa <handa@m17n.org>
13812
13813 * fontset.h (set_default_ascii_font): Delete extern.
13814
13815 * fontset.c (set_default_ascii_font): Delete this unused function.
13816
13817 * frame.c (x_set_font): When ARG is a font-object, check if the
13818 font-object matches with the ASCII font-spec of the frame's
13819 fontset. If not, create a new fontset for the frame. (Bug #3075)
13820
13821 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
13822
13823 * fns.c (Flocale_info): Protect vector from GC during decoding.
13824
13825 * process.c (Fstart_process): Protect argv strings from GC during
13826 encoding.
13827
13828 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
13829
13830 * sysdep.c: Include <ctype.h>.
13831
13832 2009-04-27 David Reitter <david.reitter@gmail.com>
13833
13834 * nsfont.m (nsfont_open): Remove unused variable shrink.
13835 Remove commented-out code.
13836
13837 2009-04-26 Johan Bockgård <bojohan@gnu.org>
13838
13839 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
13840
13841 2009-04-25 Jason Rumney <jasonr@gnu.org>
13842
13843 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
13844
13845 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13846
13847 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
13848 Swap bytes in short integer if fringe bitmap width > 8.
13849
13850 2009-04-23 Kenichi Handa <handa@m17n.org>
13851
13852 * xfaces.c (Fx_list_fonts): If a font size is specified in
13853 PATTERN, set it in returned scalable fonts.
13854
13855 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
13856
13857 * keyboard.c (Fset_input_meta_mode): Doc fix.
13858
13859 * dispnew.c (Fsend_string_to_terminal): Doc fix.
13860
13861 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
13862
13863 * coding.c (Fterminal_coding_system): Doc fix.
13864
13865 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
13866 (Fx_display_pixel_height, Fx_display_planes)
13867 (Fx_display_color_cells, Fx_server_max_request_size)
13868 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
13869 (Fx_display_mm_height, Fx_display_mm_width)
13870 (Fx_display_backing_store, Fx_display_visual_class)
13871 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
13872 Doc fixes, replacing "terminal id" with "terminal object".
13873 (check_x_display_info): Handle terminal objects instead of
13874 terminal ids.
13875
13876 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
13877 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
13878 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
13879 Doc fixes, replacing "terminal id" with "terminal object".
13880
13881 2009-04-21 Kenichi Handa <handa@m17n.org>
13882
13883 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
13884 (font_score): Check AVGWIDTH too.
13885
13886 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
13887 worst case.
13888 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
13889 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
13890
13891 2009-04-19 Jason Rumney <jasonr@gnu.org>
13892
13893 The following changes fix Bug#3005 for wide glyphs on each platform,
13894 without reintroducing Bug#1258 for stretch glyphs.
13895
13896 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
13897 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
13898 get_phys_cursor_geometry.
13899
13900 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
13901 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
13902 using get_phys_cursor_geometry.
13903
13904 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
13905 correctly calculated.
13906
13907 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
13908
13909 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
13910 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
13911 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
13912 is deprecated.
13913
13914 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
13915
13916 * font.c (font_put_frame_data): Use xfree instead of free.
13917
13918 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
13919
13920 * w32font.c (Qja, Qko): Remove declarations.
13921 (syms_of_w32font): Don't DEFSYM them.
13922
13923 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
13924
13925 * font.c (Qja, Qko): Move definitions here from ftfont.c.
13926
13927 * font.h (Qja, Qko): Extern them.
13928
13929 * ftfont.c (Qja, Qko): Remove declarations.
13930
13931 * xfont.c (Qja, Qko): Remove declarations.
13932
13933 2009-04-17 Kenichi Handa <handa@m17n.org>
13934
13935 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
13936 string from a vector to handle Latin-1 characters correctly.
13937
13938 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
13939 entity even if the cache hits.
13940
13941 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
13942
13943 * search.c (boyer_moore): Use zero as marker value for a possible
13944 match instead of depending on overflow behavior. (Bug#2844)
13945
13946 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
13947 * lisp.h: Adjust prototypes.
13948
13949 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
13950
13951 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
13952 change (Bug#3003).
13953
13954 2009-04-16 Kenichi Handa <handa@m17n.org>
13955
13956 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
13957
13958 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
13959 adstyle.
13960
13961 * ftfont.c (Qja, Qko): Don't make them static.
13962 (enum ftfont_cache_for): New enum.
13963 (fc_charset_table): Undo the previous change.
13964 (ftfont_get_latin1_charset): Delete it.
13965 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
13966 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
13967 non-scarable font, try to get AVERAGE_WIDTH.
13968 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
13969 Change ft_face_cache from a list of a hash-table. Don't check
13970 `ja' and `ko' adstyle here.
13971 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
13972 FTFONT_CACHE_FOR_CHARET.
13973 (ftfont_get_charset): Undo the previous change.
13974 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
13975 (ftfont_close): Likewise.
13976 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
13977
13978 * font.c (font_sort_entites): Change the meaning of the arg
13979 BEST-ONLY. Don't optimize for VEC of lenght 1.
13980 (font_select_entity): Just return the value of font_sort_entites.
13981
13982 * xfaces.c (merge_face_vectors): Reflect font properties in
13983 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
13984 font_clear_prop if a face attribute doesn't change.
13985
13986 * charset.h (charset_ksc5601): Extern it.
13987
13988 * charset.c (charset_ksc5601): New variable.
13989 (Fdefine_charset_internal): Set charset_ksc5601.
13990 (init_charset_once): Initialize charset_ksc5601 to -1.
13991
13992 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
13993
13994 * fileio.c (history_delete_duplicates): Remove unused declaration.
13995
13996 * callint.c (history_delete_duplicates): New declaration.
13997 (Fcall_interactively): Remove command history duplicates when
13998 history_delete_duplicates is true.
13999
14000 2009-04-14 Eli Zaretskii <eliz@gnu.org>
14001
14002 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
14003
14004 2009-04-14 Kenichi Handa <handa@m17n.org>
14005
14006 * font.c (Ffont_info): Fix docstring. Fix the second element of
14007 the returned value (bug#2949).
14008
14009 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
14010
14011 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
14012
14013 2009-04-14 Kenichi Handa <handa@m17n.org>
14014
14015 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
14016 encoding charset is ascii_compatible.
14017
14018 * charset.c (Fdefine_charset_internal): Make charset
14019 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
14020 code_offset is 0, and covers all ASCII characters.
14021
14022 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
14023
14024 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
14025 (ns_string_to_pasteboard_internal):
14026 * nsmenu.m (process_dialog):
14027 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
14028 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
14029 * lisp.h (Fx_load_color_file): Declare.
14030
14031 2009-04-13 Kenichi Handa <handa@m17n.org>
14032
14033 * font.c (font_delete_unmatched): Preserve the order of list elements.
14034 (font_select_entity): Suppress the code to optimize for the same
14035 kind of fonts.
14036 (font_load_for_lface): Get a font that supports at least ASCII
14037 characters.
14038
14039 * ftfont.c (Qja, Qko): New variables.
14040 (fc_charset_table): Delete uniquifier data for iso8859-1.
14041 (ftfont_get_latin1_charset): New function.
14042 (get_adstyle_property): New function.
14043 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
14044 bitmap fonts.
14045 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
14046 Delete iso-8859-1 range from the charset of fonts whose adstyle is
14047 `ko' or `ja'.
14048 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
14049 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
14050 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
14051 property.
14052 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
14053 (syms_of_ftfont): DEFSYM Qja and Qko.
14054
14055 2009-04-09 Kenichi Handa <handa@m17n.org>
14056
14057 * charset.c (map_charset_chars): For a charset of `superset'
14058 method, fix calculation of code range.
14059
14060 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
14061 from the list of extra properties.
14062 (font_clear_prop): Be sure to delete `:name' font property.
14063
14064 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14065
14066 * dispnew.c (redraw_overlapping_rows): Fix detection of
14067 overlapping for topmost and bottommost rows.
14068
14069 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
14070
14071 2009-04-06 Jason Rumney <jasonr@gnu.org>
14072
14073 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
14074
14075 2009-04-06 Kenichi Handa <handa@m17n.org>
14076
14077 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
14078
14079 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
14080
14081 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14082
14083 * ftfont.c (ftfont_open): Fix checking of the return value of
14084 FT_Load_Char. Fix setting font->underline_thickness.
14085
14086 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
14087
14088 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
14089 (Fterminal_parameters, Fterminal_parameter)
14090 (Fset_terminal_parameter): In doc string, refer to terminal
14091 objects rather than terminal ids.
14092
14093 2009-04-04 Eli Zaretskii <eliz@gnu.org>
14094
14095 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
14096 ret_lim_data. (Bug#2867)
14097
14098 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
14099
14100 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
14101 so they don't get wider than the window, matching 2006-01-23
14102 change to the partner function in xdisp.c (Bug#2800).
14103
14104 2009-04-03 Kenichi Handa <handa@m17n.org>
14105
14106 * print.c (print_object): Make each lowest sub_char_table start a
14107 new line (Bug#2866).
14108
14109 2009-04-02 Kenichi Handa <handa@m17n.org>
14110
14111 * fontset.c (fontset_font): Record no-font when a fontset
14112 explicitly tells not to try another font-specs.
14113
14114 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
14115
14116 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
14117
14118 2009-03-30 Kenichi Handa <handa@m17n.org>
14119
14120 * fontset.c (fontset_from_font): Specify only registry in a
14121 font-spec for all characters supported by that registry.
14122
14123 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
14124 even if HAVE_M17N_FLT is not defined.
14125
14126 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
14127
14128 * ftfont.c: Conditionalize prototyping and use of
14129 ftfont_variation_glyphs.
14130
14131 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
14132
14133 * frame.c (delete_frame): Work around compiler bug.
14134
14135 * editfns.c (general_insert_function): Adjust to insdel.c changes.
14136 * insdel.c (prepare_to_modify_buffer, signal_before_change):
14137 Some more EMACS_INT.
14138 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
14139
14140 * xdisp.c (dump_glyph): Fix typo.
14141
14142 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
14143 (adjust_markers_gap_motion, adjust_markers_for_delete)
14144 (adjust_markers_for_insert, adjust_point)
14145 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
14146 (make_gap, copy_text, count_size_as_multibyte, insert)
14147 (insert_and_inherit, insert_before_markers)
14148 (insert_before_markers_and_inherit, insert_1)
14149 (count_combining_before, count_combining_after, insert_1_both)
14150 (insert_from_string, insert_from_string_before_markers)
14151 (insert_from_string_1, insert_from_gap, insert_from_buffer)
14152 (insert_from_buffer_1, adjust_after_replace)
14153 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
14154 (replace_range_2, del_range, del_range_1, del_range_byte)
14155 (del_range_both, del_range_2, modify_region)
14156 (prepare_to_modify_buffer, signal_before_change)
14157 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
14158 for buffer positions and sizes.
14159 * lisp.h: Adjust prototypes accordingly.
14160
14161 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
14162 (non_regular_inserted, non_regular_nbytes, read_non_regular)
14163 (Finsert_file_contents): Use EMACS_INT for buffer positions.
14164
14165 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
14166
14167 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
14168
14169 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
14170 lines and columns so we keep the same pixel height and width.
14171
14172 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
14173 the property _NET_WM_STATE has changed.
14174 (x_handle_net_wm_state): New function to update frame parameter
14175 fullscreen.
14176 (x_term_init): Initialize atoms for _NET_WM_STATE.
14177
14178 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
14179
14180 2009-03-27 Kevin Ryde <user42@zip.com.au>
14181
14182 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
14183 Gpm_GetEvent as an error that justifies closing the filedescriptor.
14184 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
14185 (Fgpm_mouse_stop): Pass that new parameter.
14186 * termhooks.h (close_gpm): Adjust prototype.
14187
14188 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
14189
14190 * lisp.h (Fx_focus_frame): Declare.
14191
14192 * callint.c (Fcall_interactively): For '^' just delegate the work to
14193 handle-shift-selection.
14194 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
14195
14196 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
14197
14198 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
14199
14200 * data.c (Qinteractive_form): New variable.
14201 (Finteractive_form): Use it.
14202
14203 * eval.c (Fcommandp): Use Qinteractive_form.
14204
14205 2009-03-24 Jason Rumney <jasonr@gnu.org>
14206
14207 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
14208 Calculate total size precisely. Decode environment variables
14209 before substituting. (Bug#38)
14210
14211 2009-03-24 Kenichi Handa <handa@m17n.org>
14212
14213 * font.c (find_font_encoding): Return Qnil for unsupported
14214 encoding (Bug#2722).
14215
14216 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
14217
14218 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
14219 that gdpy is set.
14220
14221 2009-03-22 Alan Mackenzie <acm@muc.de>
14222
14223 * callint.c (Finteractive): Clarify the doc string - even
14224 promptless elements need \n separators.
14225
14226 2009-03-22 Jason Rumney <jasonr@gnu.org>
14227
14228 * w32term.c (syms_of_w32term): Doc fix for
14229 x-use-underline-position-properties.
14230
14231 2009-03-21 Eli Zaretskii <eliz@gnu.org>
14232
14233 * w32.c (getpwuid): Change argument type to unsigned.
14234 (struct w32_id): Change type of `rid' member to unsigned.
14235 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
14236 argument ID to unsigned. All callers changed.
14237 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
14238
14239 2009-03-20 Eli Zaretskii <eliz@gnu.org>
14240
14241 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
14242 negative, produce a float value.
14243
14244 * dired.c (make_uid, make_gid): New functions.
14245 (Ffile_attributes): Use them to avoid negative UID and GID.
14246
14247 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
14248
14249 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
14250 (syms_of_keyboard) <command-hook-internal, input-method-function>:
14251 Fix typos in docstrings.
14252
14253 2009-03-19 Kenichi Handa <handa@m17n.org>
14254
14255 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
14256 changed, use font_load_for_lface to get a new font object.
14257 Call free_realized_fontset after handling ASCII font change.
14258
14259 * frame.c (x_set_font): Handle the case that ARG is a cons.
14260
14261 2009-03-19 Glenn Morris <rgm@gnu.org>
14262
14263 * fileio.c (Fsubstitute_in_file_name): Doc fix.
14264
14265 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
14266
14267 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
14268
14269 2009-03-19 Kenichi Handa <handa@m17n.org>
14270
14271 * charset.c (load_charset_map_from_file): When a mapfile can't be
14272 loaded, signal an error.
14273
14274 2009-03-18 Eli Zaretskii <eliz@gnu.org>
14275
14276 * dired.c (Ffile_attributes): Make sure UID and GID are always
14277 positive, even if the value is too large for a positive EMACS_INT.
14278 Doc fix.
14279
14280 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
14281
14282 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14283
14284 * xmenu.c (xdialog_show): Move Fredisplay call ...
14285 (Fx_popup_dialog): ... here.
14286
14287 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
14288
14289 * dired.c (file_name_completion): Disable the first optimization just
14290 installed, since it is not implemented correctly.
14291
14292 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
14293
14294 * dired.c (file_name_completion): Check completion-ignored-extensions
14295 only if the entry can affect bestmatch.
14296 Stop the search early, as Ftry_completion already does.
14297
14298 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
14299
14300 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
14301
14302 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
14303
14304 * keyboard.c (parse_menu_item): Don't display remappings as menu
14305 equivalent bindings (Bug#788).
14306
14307 2009-03-15 Jason Rumney <jasonr@gnu.org>
14308
14309 * w32term.h (WM_EMACS_PAINT): New message.
14310 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
14311 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
14312 before passing to lisp thread. (Bug#950)
14313
14314 2009-03-14 David Reitter <david.reitter@gmail.com>
14315
14316 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
14317 variable as it was never reset.
14318 (ns_term_init): Remove initialization of Lisp-settable defaults
14319 and ns_expand_space.
14320 (-setPanelFromDefaultValues): Remove ns_expand_space.
14321 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
14322 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
14323 i.e. no additional spacing, similar to Carbon port.
14324
14325 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
14326 * nsfns.m (ns-popup-prefs-panel): Remove.
14327
14328 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
14329
14330 * sound.c (alsa_configure): Remove call to deprecated
14331 snd_pcm_sw_params_set_xfer_align.
14332
14333 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
14334
14335 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
14336 after clicking in a detached tool bar.
14337 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
14338
14339 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
14340
14341 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
14342 int/Lisp_Object mixup).
14343
14344 2009-03-13 Kenichi Handa <handa@m17n.org>
14345
14346 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
14347 Handle NAME nil and t correctly. Callers changed.
14348 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
14349 (set_fontset_font): Change ARG to a vector. Handle range_list in
14350 ARG correctly.
14351 (Fset_fontset_font): Fix the case that TARGET is both a script
14352 name and charset name. Adjust the arg to set_fontset_font for
14353 the above change.
14354 (fontset_from_font): Fix previous change.
14355 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
14356 entry. If FONTSET is the default fontset, don't set the extra
14357 slot of the returning char-table.
14358
14359 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
14360
14361 * nsfns.m (Fx_close_connection): Doc fix.
14362 (Fns_do_applescript): Reflow docstring.
14363 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
14364 (Fx_display_pixel_width, Fx_display_pixel_height)
14365 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
14366 Fix typos in docstrings.
14367 (Fns_set_alpha): Fix typos in error messages.
14368
14369 2009-03-12 David Reitter <david.reitter@gmail.com>
14370
14371 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
14372 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
14373 were used for such events.
14374
14375 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
14376 (toggleToolbar, performDragOperation, runHelp): Use it.
14377
14378 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
14379 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
14380
14381 2009-03-11 Kenichi Handa <handa@m17n.org>
14382
14383 * font.h (font_open_by_spec): Extern it.
14384
14385 * font.c (font_open_by_spec): New function.
14386 (font_open_by_name): Use font_open_by_spec.
14387
14388 * frame.c (x_set_font): When ARG is a font-object, don't alter the
14389 fontset of the frame.
14390
14391 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
14392 modify the default font of frames that use this fontset.
14393 (num_auto_fontsets): New variable.
14394 (fontset_from_font): Use num_auto_fontsets to decide a fontset
14395 name. Be sure to set FONTSET_ASCII to the correct font name.
14396 (update_auto_fontset_alist): New function.
14397
14398 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
14399
14400 * makefile.w32-in: Update dependencies.
14401
14402 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
14403
14404 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
14405
14406 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
14407
14408 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
14409
14410 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
14411
14412 * lread.c (Feval_buffer): Doc fix.
14413
14414 2009-03-09 Kenichi Handa <handa@m17n.org>
14415
14416 * charset.c (Qfile_name_handler_alist): Extern it.
14417 (load_charset_map_from_file): Temporarily bind
14418 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
14419
14420 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
14421
14422 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
14423 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
14424
14425 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
14426
14427 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
14428 (x_set_window_size): Change back to calculated method of setting
14429 toolbar height under Cocoa. (Bug#2546)
14430 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
14431 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
14432
14433 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
14434
14435 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
14436 accelerator in parens under GNUstep.
14437
14438 2009-03-06 Kenichi Handa <handa@m17n.org>
14439
14440 These changes are to detect incorrect composition sequence without
14441 looking ahead the source. (Bug#2370)
14442
14443 * coding.h: Include "composite.h".
14444 (enum compisition_state): New enum.
14445 (struct compisition_status): New struct.
14446 (struct iso_2022_spec): New member cmp_status.
14447 (struct emacs_mule_spec): New struct.
14448 (struct coding_system): New members ctext_extended_segment_len and
14449 embedded_utf_8. Change the union member
14450 spec.emacs_mule_full_support to spec.emacs_mule.
14451
14452 * coding.c (CODING_ISO_CMP_STATUS): New macro.
14453 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
14454 (MAX_ANNOTATION_LENGTH): Define to 5.
14455 (ADD_COMPOSITION_DATA): New arg nbytes.
14456 (emacs_mule_char): New arg cmp_status.
14457 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
14458 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
14459 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
14460 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
14461 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
14462 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
14463 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
14464 (EMACS_MULE_COMPOSITION_END): New macro.
14465 (emacs_mule_finish_composition): New function.
14466 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
14467 (decode_coding_emacs_mule): Avoid long looking ahead while
14468 handling composition.
14469 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
14470 (ENCODE_COMPOSITION_RULE): New macro.
14471 (finish_composition): New function.
14472 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
14473 (DECODE_COMPOSITION_START): New implementation.
14474 (DECODE_COMPOSITION_END): Likewise.
14475 (STORE_COMPOSITION_RULE): New macro.
14476 (decode_coding_iso_2022): Avoid long looking ahead while handling
14477 composition, CTEXT extended segment, and embedded UTF-8.
14478 (setup_coding_system): For a coding of type iso-2022, reset
14479 CODING_ISO_EXTSEGMENT_LEN (coding) and
14480 CODING_ISO_EMBEDDED_UTF_8 (coding).
14481 (get_translation): Delete arguments last_block, from_nchars,
14482 to_nchars. Callers changed.
14483 (produce_chars): Don't modify charbuf. Adjusted for the change of
14484 get_translation.
14485 (produce_composition): Adjust for the new annotation sequence.
14486 (handle_composition_annotation): Likewise.
14487 (consume_chars): Adjust for the change of get_translation.
14488
14489 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
14490
14491 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
14492
14493 2009-03-05 Kenichi Handa <handa@m17n.org>
14494
14495 * font.c (font_select_entity): New function.
14496 (font_find_for_lface): Use font_select_entity to select a font.
14497
14498 * fontset.c (fontset_find_font): If a font found without
14499 restricting to the characters C doesn't support C, try to find a
14500 font with C restriction.
14501
14502 2009-03-04 Nikolaj Schumacher <me@nschum.de>
14503
14504 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
14505
14506 2009-03-04 Jason Rumney <jasonr@gnu.org>
14507
14508 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
14509 characters that have already been read. (Bug#2569)
14510
14511 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
14512 Log an error message if check_image_size failed.
14513 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
14514 (gs_load): Mention max-image-size in size error message. (Bug#2560)
14515
14516 2009-03-02 Eli Zaretskii <eliz@gnu.org>
14517
14518 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
14519 when decoding process output.
14520
14521 2009-03-01 Richard M Stallman <rms@gnu.org>
14522
14523 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
14524
14525 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
14526
14527 2009-02-28 Eli Zaretskii <eliz@gnu.org>
14528
14529 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
14530 (decode_coding_emacs_mule, decode_coding_iso_2022)
14531 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14532 (decode_coding_raw_text, decode_coding_charset)
14533 (setup_coding_system, decode_eol, decode_coding, consume_chars):
14534 Honor inhibit-eol-conversion. (Bug #2186)
14535
14536 2009-02-28 Jason Rumney <jasonr@gnu.org>
14537
14538 * coding.c (detect_coding_charset): If not checking latin extra,
14539 fail on characters between 0x80 and 0xA0. (Bug#2354)
14540
14541 2009-02-28 Eli Zaretskii <eliz@gnu.org>
14542
14543 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
14544 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
14545
14546 2009-02-27 Glenn Morris <rgm@gnu.org>
14547
14548 * callint.c (Finteractive): Doc fix.
14549
14550 2009-02-27 Kenichi Handa <handa@m17n.org>
14551
14552 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
14553
14554 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
14555
14556 * font.c (font_style_to_value): Set value for unknown symbols to
14557 100 instead of 255.
14558 (weight_table, slant_table, width_table): Treat "unspecified" as
14559 the default value.
14560
14561 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
14562
14563 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
14564
14565 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
14566
14567 * lread.c (Fload): Stop checking Vloads_in_progress and signal
14568 error as soon as a recursive load is detected.
14569
14570 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
14571
14572 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
14573 before caching.
14574
14575 2009-02-24 Kenichi Handa <handa@m17n.org>
14576
14577 * fontset.c (fontset_find_font): Fix the condition for checking
14578 unavailable font.
14579
14580 2009-02-24 Glenn Morris <rgm@gnu.org>
14581
14582 * xfaces.c (Finternal_set_font_selection_order): Remove leading
14583 whitespace that confuses documentation.
14584
14585 2009-02-23 Miles Bader <miles@gnu.org>
14586
14587 * process.c (Flist_system_processes, Fprocess_attributes)
14588 (syms_of_process): Rename `system-process-attributes' to
14589 `process-attributes'.
14590
14591 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
14592
14593 * coding.h (struct coding_system): Make safe_charsets a pointer to
14594 unsigned char.
14595 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
14596 being 255.
14597 (SAFE_CHARSET_P): Likewise.
14598 (setup_iso_safe_charsets): Properly setup safe_charsets.
14599 (Fdefine_coding_system_internal): Likewise.
14600 (setup_coding_system): Likewise. Remove unneeded casts.
14601 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
14602 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS.
14603 Remove unneeded casts.
14604
14605 * insdel.c (del_range_2): Don't modify gap contents when called
14606 from decode_coding_object. (Bug#1809)
14607
14608 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
14609
14610 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
14611 Qfont_object.
14612 (Ftype_of): Recognize font objects.
14613
14614 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
14615
14616 * font.c (Qfont_spec, Qfont_entity, Qfont_object):
14617 Definitions moved to data.c.
14618
14619 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
14620
14621 * nsterm.m (x_make_frame_invisible): Unset async_visible,
14622 async_iconified. Based on a patch by Christian Lynbech
14623 <christian.lynbech@tieto.com>.
14624 (EmacsView-windowDidMiniaturize:): Unset async_visible.
14625
14626 2009-02-20 Glenn Morris <rgm@gnu.org>
14627
14628 * syntax.c (Fskip_chars_forward): Fix doc typo.
14629
14630 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
14631
14632 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
14633
14634 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
14635
14636 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
14637
14638 2009-02-19 Kenichi Handa <handa@m17n.org>
14639
14640 * coding.c (detect_coding): Preserve coding->mode.
14641 Don't overflow coding->carryover. (Bug#2370)
14642
14643 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
14644
14645 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
14646
14647 2009-02-18 Kenichi Handa <handa@m17n.org>
14648
14649 * font.c (font_check_otf_features): Fix handling of `nil' element.
14650 (Ffont_spec): Describe :lang and :otf in the docstring.
14651
14652 2009-02-16 Andreas Schwab <schwab@suse.de>
14653
14654 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
14655 string.
14656
14657 2009-02-16 Kenichi Handa <handa@m17n.org>
14658
14659 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
14660 (Bug#1723)
14661
14662 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
14663
14664 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
14665
14666 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
14667 (handle_line_prefix): Suppress wrapping of wrap prefixes.
14668
14669 2009-02-14 Eli Zaretskii <eliz@gnu.org>
14670
14671 * msdos.c (MAX_SCREEN_BUF): New macro.
14672 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
14673 Encode the entire run of glyphs sharing the same face, instead of
14674 doing that one glyph at a time (fixes a bug with displaying
14675 double-size characters).
14676
14677 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
14678
14679 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
14680
14681 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
14682 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
14683 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
14684
14685 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
14686 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
14687
14688 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
14689
14690 * keyboard.c (adjust_point_for_property): Allow stopping between two
14691 invisible areas.
14692
14693 2009-02-12 Jason Rumney <jasonr@gnu.org>
14694
14695 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
14696 (add_font_entity_to_list): Call check_face_name even when family
14697 is unspecified.
14698
14699 * w32term.c (x_display_pixel_height, x_display_pixel_width):
14700 Release DC when finished. Use NULL window to refer to desktop.
14701 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
14702
14703 * w32font.c (add_font_entity_to_list): Fix check for substituted
14704 raster fonts. (Bug#2219)
14705
14706 2009-02-12 Kenichi Handa <handa@m17n.org>
14707
14708 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
14709 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
14710 (autocmp_chars): Use fast_looking_at. Don't compose more
14711 characters than MAX_COMPOSITION_COMPONENTS.
14712 (find_automatic_composition): While looking forward and backward,
14713 check static composition. Fix where to stop looking forward.
14714 (composition_adjust_point): Fix checking of static composition.
14715 (Fcomposition_get_gstring): Pay attention to
14716 MAX_COMPOSITION_COMPONENTS.
14717
14718 * lisp.h (fast_looking_at): Extern it.
14719
14720 * search.c (fast_looking_at): New function.
14721
14722 * term.c (encode_terminal_code): Adjust for the change of
14723 <struct glyph>.u.cmp.to.
14724 (append_composite_glyph): Likewise.
14725
14726 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
14727 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
14728 composition.
14729 (append_composite_glyph): Adjust for the change of
14730 <strcut glyph>.u.cmp.to.
14731
14732 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
14733
14734 * casetab.c (init_casetab_once):
14735 * coding.c (ALLOC_CONVERSION_WORK_AREA):
14736 * font.c (font_update_lface):
14737 * fontset.c (Fnew_fontset):
14738 * ftfont.c (ftfont_drive_otf):
14739 * xfont.c (xfont_open):
14740 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
14741
14742 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
14743
14744 * fileio.c (Fwrite_region): !NILP -> CONSP.
14745
14746 2009-02-10 Andreas Schwab <schwab@suse.de>
14747
14748 * process.c (send_process): Properly relocate pointer into data
14749 when using encoded data. (Bug#2272)
14750
14751 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
14752
14753 * coding.c (detect_coding_charset): Fix previous change.
14754
14755 2009-02-08 Jason Rumney <jasonr@gnu.org>
14756
14757 * w32fns.c (w32_hide_hourglass): Handle case where frame
14758 disappeared while hourglass was displayed. (Bug #2193)
14759
14760 2009-02-07 Andreas Schwab <schwab@suse.de>
14761
14762 * unexelf.c (unexec): Fix error message.
14763
14764 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
14765
14766 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
14767 when modal window is active. (Bug #2152)
14768 (applicationShouldTerminate:): Remove now-unneeded while loop
14769 around NSRunAlertPanel.
14770
14771 * nsmenu.m (popupSession): New file-global variable.
14772 (pop_down_menu): End the popupSession before closing dialog.
14773 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
14774 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
14775 don't query NSApp for events (just sleep instead).
14776
14777 2009-02-07 Eli Zaretskii <eliz@gnu.org>
14778
14779 * coding.c (syms_of_coding) <translation-table-for-input>:
14780 Modify doc string to discourage use for character code unification.
14781
14782 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14783
14784 * atimer.c (run_timers): Update pending_atimers.
14785
14786 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
14787
14788 * image.c (svg_load_image): Fix last change.
14789
14790 * xfns.c (Fx_create_frame): Signal an error if no font is
14791 found (Bug#2147).
14792
14793 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
14794
14795 * character.c (syms_of_character) <script-representative-chars>:
14796 Fix typo in docstring.
14797
14798 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
14799
14800 * nsmenu.m (pop_down_menu): New function.
14801 (ns_popup_dialog): Call it on unwind.
14802 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
14803 call timer_check() (Bug#2154).
14804 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
14805 handling_signal is set.
14806 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
14807
14808 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
14809
14810 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
14811
14812 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
14813
14814 * keyboard.c (poll_for_input_1, handle_async_input):
14815 Set handling_signal under HAVE_NS.
14816
14817 2009-02-04 Glenn Morris <rgm@gnu.org>
14818
14819 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
14820
14821 2009-02-04 Kenichi Handa <handa@m17n.org>
14822
14823 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
14824
14825 * charset.c (Fchar_charset): New optional arg restriction.
14826
14827 * coding.h (coding_system_charset_list): Extern it.
14828
14829 * coding.c (coding_system_charset_list): New function.
14830
14831 * composite.c: Include coding.h and termhooks.h.
14832 (composition_gstring_p): Fix for the terminal case.
14833 (composition_gstring_width): Likewise.
14834 (fill_gstring_body): Likewise.
14835 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
14836 the frame.
14837 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
14838 is within a composition.
14839 (Fcomposition_get_gstring): Fix the terminal case.
14840
14841 * term.c (encode_terminal_code): Fix handling of composition.
14842 (produce_composite_glyph): For static composition, get pixel_width
14843 from struct composition.
14844
14845 2009-02-02 Andreas Schwab <schwab@suse.de>
14846
14847 * unexelf.c (unexec): Handle unaligned bss offset.
14848
14849 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
14850
14851 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
14852 XT,w32read_socket changes to ns_read_socket.
14853
14854 * keyboard.c (handle_interrupt): Don't call
14855 quit_throw_to_read_char() under NS.
14856
14857 * blockinput.h: Remove NS-specific code.
14858
14859 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
14860
14861 * dispnew.c (window_change_signal): Don't try to get the size of a
14862 suspended tty frame.
14863 * term.c (Fresume_tty): Resize if the size has changed while the
14864 tty was suspended.
14865
14866 * alloc.c (mark_stack): Properly conditionalize previous change.
14867
14868 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
14869
14870 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
14871 * w32term.c (w32_read_socket) [SYNC_INPUT]:
14872 Remove; this code is not used on Windows.
14873
14874 2009-01-30 Eli Zaretskii <eliz@gnu.org>
14875
14876 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
14877 EOLs that also has stray ^M characters.
14878
14879 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
14880
14881 * atimer.c (run_timers, alarm_signal_handler):
14882 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
14883 * w32inevt.c (w32_console_read_socket):
14884 * w32term.c (w32_read_socket):
14885 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
14886
14887 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
14888
14889 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
14890 Initialize it as a relative filename pattern.
14891 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
14892 (Fcall_process_region): Simplify temp file creation using
14893 temporary-file-directory.
14894
14895 2009-01-29 Eli Zaretskii <eliz@gnu.org>
14896
14897 * msdos.c: Rename pending_signals to msdos_pending_signals.
14898 (sig_suspender, sigprocmask): Adjust.
14899
14900 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
14901
14902 * keyboard.c (pending_signals): New var.
14903 (poll_for_input, input_available_signal, init_keyboard): Set it.
14904 (process_pending_signals): New function.
14905
14906 * lisp.h (QUIT): Check pending_signals instead of
14907 interrupt_input_pending. Use process_pending_signals.
14908
14909 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
14910
14911 * process.c (wait_reading_process_output): Use process_pending_signals.
14912
14913 * sysdep.c (emacs_write): Use process_pending_signals.
14914
14915 * xterm.c (XTread_socket): Update pending_signals.
14916
14917 * w32term.c (w32_read_socket): Update pending_signals.
14918
14919 * w32inevt.c (w32_console_read_socket): Update pending_signals.
14920
14921 2009-01-29 Kenichi Handa <handa@m17n.org>
14922
14923 * xftfont.c (xftfont_has_char): New function.
14924 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
14925
14926 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
14927
14928 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
14929 under GNUstep.
14930 (ns_query_color): New declaration.
14931
14932 * nsterm.m (ns_confirm_quit): New variable.
14933 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
14934 (EmacsApp-applicationShouldTerminate:): Use it.
14935 (EmacsPrefsController): Let user set it.
14936 (ns_query_color): New function.
14937 (ns_defined_color): Use it.
14938 (ns_initialize): Drop.
14939 (ns_term_init): Add two lines from ns_initialize(), and set
14940 input_interrupt_mode to nil.
14941
14942 * image.c (svg_load_image): Don't right-shift background RGB when
14943 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
14944
14945 2009-01-28 Kenichi Handa <handa@m17n.org>
14946
14947 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
14948 (fontset_get_font_group): Remember that no font-group is specified
14949 for C.
14950
14951 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
14952
14953 * fns.c (concat): Check for string overflow (bug#1787).
14954
14955 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
14956 Quadruple undo limits (bug#1501).
14957
14958 2009-01-27 Kenichi Handa <handa@m17n.org>
14959
14960 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
14961 directly use GT_Get_Char_index.
14962
14963 * xftfont.c (struct xftfont_info): New member `index'.
14964
14965 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
14966 (Ffontset_font): Adjust for the change of fontset entry.
14967
14968 2009-01-26 Kenichi Handa <handa@m17n.org>
14969
14970 * fontset.c (fontset_find_font): Fix handling of non-cons return
14971 value of fontset_get_font_group.
14972 (fontset_font): Revert last change.
14973
14974 2009-01-26 Jason Rumney <jasonr@gnu.org>
14975
14976 * w32font.c (w32font_list_internal): Return quickly if registry is
14977 unknown. Simplify final return.
14978 (add_font_entity_to_list): Break complex logic down into more
14979 manageable chunks. Move unknown registry check to
14980 w32font_list_internal.
14981
14982 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
14983
14984 Changes to remove Feval calls from GUI under NS.
14985
14986 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
14987 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
14988 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
14989
14990 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
14991 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
14992 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
14993 instead of NON_ASCII_KEYSTROKE_EVENT.
14994 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
14995 (EmacsApp-applicationShouldTerminate:): Query user.
14996 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
14997 instead of Feval.
14998
14999 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
15000
15001 * keyboard.c (kbd_buffer_get_event): Check for it.
15002 (keys_of_keyboard): Define lispy keys for
15003 ns-put/unput-working-text.
15004
15005 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
15006 versions.
15007 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
15008
15009 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
15010
15011 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
15012 setting current_buffer directly. (Bug#2044)
15013
15014 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
15015
15016 * fontset.c (fontset_font): If we know there is no font, don't do
15017 any work. (Bug#1952, bug#1990).
15018
15019 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
15020
15021 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
15022
15023 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
15024 (ns_no_defaults): New declaration.
15025 (main): Use it.
15026
15027 * nsterm.h (ns_no_defaults): New declaration.
15028
15029 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
15030
15031 * nsterm.m (ns_no_defaults): New variable.
15032 (ns_initialize): Don't read defaults when ns_no_defaults.
15033 (EmacsView-readSelectionFromPasteboard:)
15034 (writeSelectionToPasteboard:types:): New stubbed-out methods for
15035 NSServicesRequests protocol. (Bug#1435)
15036 (ns_dumpglyphs_stretch): New function.
15037 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
15038 of 2008-11-15 to other terms. (Bug#615)
15039
15040 * nsimage.m (setPixmapData:): Set to ignore image DPI.
15041
15042 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
15043
15044 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
15045 call for Sparc64.
15046
15047 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
15048
15049 * nsfns.m:
15050 * nsgui.h:
15051 * nsmenu.m:
15052 * nsselect.m:
15053 * nsterm.h:
15054 * nsterm.m: Remove '23' comments that indicated code added during
15055 update from emacs-20 -> emacs-23.
15056
15057 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
15058
15059 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
15060 ns_alternate_modifier. (Bug#1217)
15061
15062 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
15063 Display all shortcuts, including those w/o super modifier.
15064
15065 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
15066
15067 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
15068
15069 * fileio.c (Vwrite_region_post_annotation_function)
15070 (Vwrite_region_annotation_buffers): New vars.
15071 (build_annotations_unwind): Just reset
15072 Vwrite_region_annotation_buffers.
15073 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
15074 Call write-region-post-annotation-function.
15075 (build_annotations): Add to Vwrite_region_annotation_buffers if
15076 buffer changes.
15077
15078 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
15079
15080 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
15081 Tiger.
15082 * nsfns.m (ns_do_applescript):
15083 Conditionalize typeUTF16ExternalRepresentation on Tiger.
15084
15085 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
15086
15087 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
15088
15089 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
15090
15091 * nsmenu.m (NSMENUPROFILE): Change #if style.
15092
15093 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
15094
15095 * nsterm.m (x_set_frame_alpha): Add prototype.
15096 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
15097 handle Ctrl-tab. (Bug#1841)
15098 (ns_get_color): Use unsigned long long for scanned hex string value.
15099 (ns_term_shutdown): Abort on non SIGTERM signals.
15100 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
15101 (EmacsPrefsController-setPanelFromDefaultValues): New function.
15102 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
15103 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
15104 (ns_defined_color): Fix settings of the XColor variable fields:
15105 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
15106
15107 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
15108 DPI. (Bug#1316)
15109 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
15110 values in onTiger section.
15111
15112 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
15113
15114 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
15115 Check return value of font_spec_from_name.
15116 (Fx_list_fonts): Doc fix. (Bug#1951)
15117
15118 * font.c (font_spec_from_name): Return Qnil if font name could not
15119 be parsed.
15120 (font_parse_name): Treat a `?' character as part of an XLFD.
15121
15122 * fns.c (Fsubstring): Doc fix.
15123
15124 2009-01-19 Kenichi Handa <handa@m17n.org>
15125
15126 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
15127 (ftfont_list): Likewise.
15128
15129 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
15130
15131 * dbusbind.c (Fdbus_register_signal):
15132 * process.c (conv_sockaddr_to_lisp):
15133 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
15134
15135 * callproc.c (Fgetenv_internal): Doc fix.
15136
15137 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
15138
15139 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
15140 it is not even used.
15141
15142 2009-01-16 Glenn Morris <rgm@gnu.org>
15143
15144 * font.c (Ffont_variation_glyphs): Silence compiler.
15145
15146 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
15147
15148 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
15149 Reported by David Robinow <drobinow@gmail.com>.
15150
15151 2009-01-15 Kenichi Handa <handa@m17n.org>
15152
15153 * coding.c (detect_coding_system): Fix handling of null_byte_found.
15154
15155 2009-01-14 Jason Rumney <jasonr@gnu.org>
15156
15157 * frame.c (x_set_font): Always store a font to the font parameter,
15158 never a fontset. (Bug#1562)
15159
15160 2009-01-14 Kenichi Handa <handa@m17n.org>
15161
15162 * coding.c (TWO_MORE_BYTES): New macro.
15163 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
15164
15165 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
15166
15167 * font.c (font_clear_prop): If clearing the family, clear the font
15168 width index too.
15169
15170 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
15171
15172 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
15173
15174 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
15175 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
15176 functions, use sizeof.
15177
15178 2009-01-12 Martin Rudalics <rudalics@gmx.at>
15179
15180 * keyboard.c (read_char): Fix case where last_nonmenu_event
15181 returned a bad value with submenus. (Bug#447)
15182
15183 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
15184
15185 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
15186 family, clear the font width index too.
15187
15188 2009-01-11 Jason Rumney <jasonr@gnu.org>
15189
15190 * keyboard.c (cmd_error_internal): Exit when errors occur before
15191 frame creation and not in daemon mode. (Bug#1836)
15192
15193 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
15194
15195 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
15196 of a display vector, backtrack.
15197 (try_window_reusing_current_matrix): Check glyph type before
15198 referencing charpos member.
15199
15200 2009-01-10 Eli Zaretskii <eliz@gnu.org>
15201
15202 Fix Bug #876:
15203
15204 * coding.c (inhibit_null_byte_detection): New variable.
15205 (detect_coding, detect_coding_system): Don't pay attention to null
15206 bytes if inhibit_null_byte_detection is non-zero.
15207 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
15208 <inhibit-iso-escape-detection>: Doc fix.
15209
15210 2009-01-09 Jason Rumney <jasonr@gnu.org>
15211
15212 * w32font.c (add_font_entity_to_list): Don't report unknown
15213 Windows charset as any unrecognized registry. (Bug#1548)
15214 Only report Unicode Plane 2 fonts as unicode-sip.
15215
15216 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
15217
15218 * xfaces.c (Fx_font_family_list): Delete function.
15219 Move compatibility version to faces.el.
15220
15221 * font.c (Ffont_family_list): Return a list of strings, not symbols.
15222
15223 2009-01-09 Martin Rudalics <rudalics@gmx.at>
15224
15225 * frame.c (x_set_frame_parameters): Remember requested value for
15226 fullscreen before it's reset by the parameter handler.
15227
15228 2009-01-09 Glenn Morris <rgm@gnu.org>
15229
15230 * keyboard.c (last_command_char): For clarity, rename to...
15231 (last_command_event): ... and update all users.
15232 (last_input_char): For clarity, rename to...
15233 (last_input_event): ... and update all users.
15234 (last-command-char, last-input-char): Move to subr.el as aliases.
15235 * cmds.c, commands.h: Update for last_command_char rename.
15236
15237 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
15238
15239 * font.c (font_open_for_lface): Handle unspecified height attribute.
15240
15241 2009-01-08 Jason Rumney <jasonr@gnu.org>
15242
15243 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
15244 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
15245 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
15246 Don't declare.
15247 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
15248 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
15249
15250 2009-01-07 Kenichi Handa <handa@m17n.org>
15251
15252 * fileio.c (Finsert_file_contents): In the case of replace,
15253 remember the coding system used for decoding in
15254 coding_system (Bug#1039).
15255
15256 * coding.c (decode_coding_utf_8): Check byte_after_cr before
15257 breaking the loop. (Bug#870)
15258 (decode_coding_utf_16, decode_coding_emacs_mule)
15259 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
15260 (decode_coding_charset): Likewise.
15261
15262 2009-01-05 Martin Rudalics <rudalics@gmx.at>
15263
15264 * frame.c (x_set_frame_parameters): Make sure height (width) get
15265 applied when fullwidth (fullheight) is set. (Bug#1522)
15266
15267 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
15268
15269 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
15270 (utc_base): Declare as ULONGLONG, not long double.
15271 (convert_time_raw): Delete.
15272 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
15273 (initialize_utc_base): New function.
15274 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
15275 (convert_from_time_t): Use initialize_utc_base; compute result with
15276 64-bit arithmetic.
15277 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
15278
15279 2009-01-03 Eli Zaretskii <eliz@gnu.org>
15280
15281 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
15282 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
15283 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
15284 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
15285 [!subprocesses]: Define.
15286 (syms_of_process) [!subprocesses]: Intern and staticpro them.
15287 (Flist_system_processes, Fsystem_process_attributes)
15288 [!subprocesses]: Call list_system_processes and
15289 system_process_attributes instead of returning Qnil.
15290
15291 * dosfns.c (system_process_attributes, list_system_processes):
15292 New functions.
15293
15294 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
15295
15296 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
15297 Don't use the default (no-op) implementation.
15298
15299 2009-01-03 Jason Rumney <jasonr@gnu.org>
15300
15301 * keyboard.c (parse_modifiers_uncached): Wheel events are
15302 clicks (bug#687).
15303
15304 * w32term.c (x_query_colors, x_query_color): New functions.
15305
15306 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
15307 (svg_load_image): Cast returned pointers from dynamically loaded
15308 functions. Eliminate W32 specific code.
15309
15310 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
15311
15312 * nsfns.m (x_set_foreground_color, x_set_background_color)
15313 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
15314 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
15315 x_ prefix instead of ns_. Update references.
15316 (syms_of_nsfns): Add a FIXME comment.
15317
15318 * nsterm.m (x_set_cursor_type): New prototype.
15319 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
15320
15321 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
15322 for Solaris instead of incorrectly providing Qutime and Qcutime.
15323
15324 2009-01-02 Eli Zaretskii <eliz@gnu.org>
15325
15326 * w32.c (process_times): Compute sum of utime and stime.
15327 (system_process_attributes): Add Qtime to the alist.
15328
15329 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
15330 and add them to the alist.
15331
15332 * process.c (top level) <Qtime, Qctime>: New variables.
15333 (syms_of_process): staticpro them.
15334 (Fsystem_process_attributes): Add their documentation to the doc
15335 string.
15336
15337 * process.h: Declare Qtime and Qctime.
15338
15339 2009-01-02 Jason Rumney <jasonr@gnu.org>
15340
15341 * image.c (Qgobject): New symbol.
15342 (syms_of_image): Initialize it.
15343 (init_svg_functions): Load some functions from gobject library.
15344
15345 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
15346
15347 * frame.c (make_terminal_frame): Remove redundant code and useless
15348 block.
15349
15350 2009-01-01 Andreas Schwab <schwab@suse.de>
15351
15352 * process.c (conv_sockaddr_to_lisp): Add workaround for
15353 getsockname bug on BSD.
15354
15355 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
15356
15357 * xfns.c (x_create_tip_frame): Set border width of the X window.
15358
15359 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
15360
15361 2009-01-01 Jason Rumney <jasonr@gnu.org>
15362
15363 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
15364 Don't block input, as per earlier xterm.c changes.
15365
15366 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
15367
15368 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
15369 (ns_appkit_version_int): New function.
15370 (x-server-version): Use ns_appkit_version_int and follow 21+
15371 convention of returning 3 integers.
15372
15373 2008-12-30 Kenichi Handa <handa@m17n.org>
15374
15375 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
15376 (CHAR_SURROGATE_PAIR_P): New macro.
15377
15378 * font.h (struct font_driver): New member get_variation_glyphs.
15379
15380 * font.c (font_range): Don't require a font for a variation selector.
15381 (Ffont_variation_glyphs): New function.
15382 (syms_of_font): Defsubr it.
15383
15384 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
15385 ftfont_variation_glyphs.
15386 (setup_otf_gstring): New function.
15387 (ftfont_drive_otf): Use it.
15388 (ftfont_shape_by_flt): Handle variation selector.
15389 (ftfont_variation_glyphs): New function.
15390
15391 2008-12-30 Martin Rudalics <rudalics@gmx.at>
15392
15393 * frame.c (Vemacs_iconified): Remove.
15394
15395 2008-12-30 Jason Rumney <jasonr@gnu.org>
15396
15397 * frame.c (store_frame_param, x_get_arg): Enable newer code on
15398 WINDOWSNT too, as related changes have already been synced. (Bug#117)
15399
15400 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
15401
15402 * indent.c (Fvertical_motion): Don't advance iterator if we have
15403 reseated to the desired position.
15404
15405 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
15406 checking for pos match.
15407
15408 2008-12-30 Kenichi Handa <handa@m17n.org>
15409
15410 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
15411 just get the low 8-bit of the code.
15412
15413 * font.c (font_intern_prop): Validate str as multibyte.
15414
15415 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
15416
15417 * dispextern.h (struct face): Move lface and hash from the middle
15418 of bitfields.
15419
15420 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
15421
15422 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
15423
15424 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
15425 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
15426 instead of intervals.h.
15427
15428 2008-12-26 Andreas Schwab <schwab@suse.de>
15429
15430 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
15431 cons.
15432
15433 2008-12-26 Martin Rudalics <rudalics@gmx.at>
15434
15435 * textprop.c (Qminibuffer_prompt): New variable.
15436 (syms_of_textprop): Initialize it.
15437 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
15438 in minibuffer-prompt face. (Bug#1662)
15439
15440 2008-12-25 Jason Rumney <jasonr@gnu.org>
15441
15442 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
15443
15444 2008-12-24 Jason Rumney <jasonr@gnu.org>
15445
15446 * ralloc.c (r_alloc_reset_variable): New function.
15447
15448 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
15449 record of what points where. (Bug#716)
15450
15451 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
15452
15453 * minibuf.c (read_minibuf): Follow the non-interactive case when
15454 running as a daemon, before detaching.
15455
15456 2008-12-22 Andreas Schwab <schwab@suse.de>
15457
15458 * buffer.c (init_buffer): Use realloc instead of xrealloc.
15459 * gtkutil.c (free_widget_value): Use xfree instead of free.
15460
15461 2008-12-22 Martin Rudalics <rudalics@gmx.at>
15462
15463 * frame.c (delete_frame): New function derived from
15464 Fdelete_frame to handle Qnoelisp value for FORCE argument.
15465 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
15466 (Fdelete_frame): Call delete_frame. Remove line from doc-string
15467 saying that FORCE non-nil doesn't run `delete-frame-functions'.
15468 * frame.h: Extern delete_frame.
15469 * window.c (window_loop):
15470 * terminal.c (delete_terminal):
15471 * xterm.c (x_connection_closed):
15472 * xfns.c (Fx_hide_tip):
15473 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
15474
15475 2008-12-21 Jason Rumney <jasonr@gnu.org>
15476
15477 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
15478 when character maps to .notdef character.
15479
15480 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
15481
15482 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
15483
15484 2008-12-20 Jason Rumney <jasonr@gnu.org>
15485
15486 * frame.c (Fmake_terminal_frame): Raise an error when called from
15487 a graphical frame on Windows. (Bug#1325)
15488
15489 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
15490
15491 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
15492
15493 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
15494
15495 * minibuf.c (Fread_buffer): Doc fix.
15496
15497 2008-12-20 Jason Rumney <jasonr@gnu.org>
15498
15499 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
15500 server name in UNC paths. (Bug#719)
15501
15502 * coding.c (decode_coding): Clear chars_at_source flag when using
15503 charbuf. (Bug#1035)
15504
15505 2008-12-19 Daniel Engeler <engeler@gmail.com>
15506
15507 * sysdep.c (serial_configure): Fix typo.
15508
15509 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
15510
15511 * sysdep.c: Include alloca.h.
15512 (system_process_attributes): Add implementation for Solaris.
15513
15514 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
15515
15516 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
15517
15518 Reorganize implementation of Flist_system_processes and
15519 Fsystem_process_attributes. No functional changes.
15520 * process.c: Don't #include pwd.h, grp.h and limits.h.
15521 (Flist_system_processes): Just call list_system_processes.
15522 (Fsystem_process_attributes): Just call system_process_attributes.
15523 (procfs_list_system_processes, time_from_jiffies)
15524 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
15525 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
15526
15527 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
15528 (list_system_processes): Rename from
15529 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
15530 Provide a do nothing implementation.
15531 (system_process_attributes): Rename from
15532 procfs_list_system_processes.
15533 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
15534 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
15535
15536 * w32.c (list_system_processes): Rename from
15537 w32_list_system_processes.
15538 (system_process_attributes): Rename from
15539 w32_system_process_attributes.
15540
15541 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
15542
15543 * process.h (w32_list_system_processes)
15544 (w32_system_process_attributes): Remove.
15545 (list_system_processes, system_process_attributes):
15546 New prototypes.
15547
15548 2008-12-19 Kenichi Handa <handa@m17n.org>
15549
15550 * xfont.c (xfont_decode_coding_xlfd): New function.
15551 (xfont_encode_coding_xlfd): New function.
15552 (xfont_list_pattern): Decode XLFD by iso-8859-1.
15553 (xfont_list): Decode and encode XLFD by iso-8859-1.
15554 (xfont_match): Likewise.
15555 (xfont_list_family): Likewise.
15556 (xfont_open): Likewise.
15557
15558 * ftfont.c (ftfont_open): Generate a multibyte string if given
15559 names are utf-8.
15560
15561 * xftfont.c (xftfont_open): Generate a multibyte string if given
15562 names are utf-8.
15563
15564 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
15565
15566 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
15567 changed.
15568 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
15569 clicked on a detached tool bar button.
15570
15571 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
15572
15573 * emacs.c (main): Print and error and exit when no data is read
15574 from the pipe.
15575
15576 2008-12-17 Jason Rumney <jasonr@gnu.org>
15577
15578 * w32font.c (w32font_has_char): Always return -1.
15579
15580 2008-12-16 Kenichi Handa <handa@m17n.org>
15581
15582 * font.c (font_open_entity): Fix previous change.
15583
15584 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
15585
15586 * process.c: Include <limits.h>.
15587
15588 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
15589
15590 * font.c (font_update_drivers): Fix mistake in reconstructing the
15591 driver list.
15592
15593 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
15594
15595 * font.c (font_clear_cache): Fix format of font cache data.
15596
15597 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
15598
15599 * xftfont.c (xftfont_open): Free Xft font pattern if
15600 XftFontOpenPattern fails.
15601
15602 * xterm.c (x_free_frame_resources): Remove extraneous call to
15603 free_frame_faces.
15604
15605 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15606
15607 * xterm.c (x_delete_display): Move xim_close_dpy call to
15608 x_delete_terminal.
15609 (x_delete_terminal): Call xim_close_dpy.
15610
15611 2008-12-13 Jason Rumney <jasonr@gnu.org>
15612
15613 * w32font.c (intern_font_name): New function.
15614 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
15615 (w32font_open_internal, Fx_select_font): Decode font name.
15616 (fill_in_logfont, list_all_matching_fonts): Encode font name.
15617
15618 * w32font.h (intern_font_name): Declare new function.
15619
15620 * w32uniscribe.c (add_opentype_font_name_to_list):
15621 Use intern_font_name.
15622
15623 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15624
15625 * frame.c (Fdelete_frame): Call free_font_driver_list.
15626
15627 * font.c (free_font_driver_list): Implement missing function.
15628
15629 * w32term.c (w32_term_init): Don't initialize the image cache
15630 here; it will be done in init_frame_faces.
15631
15632 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
15633 (struct x_display_info): Remove unused member null_pixel.
15634 New member xim_callback_data.
15635
15636 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
15637 (xim_initialize): Save pointer to callback function data.
15638 (xim_close_dpy): Free callback function data. Call XCloseIM,
15639 reverting 2008-11-04 change by David Smith.
15640 (x_term_init): Don't initialize the image cache here; it will be
15641 done in init_frame_faces. Remove ancient "null_pixel" cruft.
15642 (x_delete_display): Free x_dnd_atoms member.
15643
15644 2008-12-13 Kenichi Handa <handa@m17n.org>
15645
15646 * font.c (font_rescale_ratio): Move from xfaces.c.
15647 Argument type changed. Handle a font-spec too.
15648 (font_score): Check Vface_font_rescale_alist.
15649 (font_open_entity): Likewise. (Bug#1547)
15650
15651 * xfaces.c (font_rescale_ratio): Move to font.c.
15652
15653 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15654
15655 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
15656
15657 2008-12-12 Jason Rumney <jasonr@gnu.org>
15658
15659 * w32fns.c (x_display_info_for_name, Fx_open_connection):
15660 Set Vwindow_system_version to the real w32 major version.
15661
15662 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
15663
15664 * term.c (init_tty): Move setting the terminal name before the
15665 potential user: maybe_fatal.
15666
15667 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
15668
15669 * term.c (tty_free_frame_resources): Rename from delete_tty_output;
15670 all callers changed. Call free_frame_faces to free the face cache.
15671
15672 2008-12-11 Jason Rumney <jasonr@gnu.org>
15673
15674 * w32font.c (fill_in_logfont): Don't assume symbol script means
15675 SYMBOL_CHARSET. (Bug#547)
15676
15677 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
15678 size for surrogates. (Bug#1096, bug#872)
15679
15680 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
15681
15682 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
15683
15684 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
15685
15686 * process.c (Fsystem_process_attributes, syms_of_process):
15687 Fix typo in name of Ssystem_process_attributes.
15688 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
15689
15690 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
15691
15692 * syntax.c (Fmodify_syntax_entry): Doc fix.
15693
15694 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
15695
15696 * font.c (Ffont_spec): Move usage to end of docstring.
15697
15698 2008-12-10 Jason Rumney <jasonr@gnu.org>
15699
15700 * w32font.c (Qcham): New symbol.
15701 (font_supported_scripts): Add cham, and comments for other new
15702 scripts in bitfield from OpenType spec.
15703 (add_font_entity_to_list): Limit unicode-sip fonts to those that
15704 contain characters beyond the bmp.
15705
15706 2008-12-10 Kenichi Handa <handa@m17n.org>
15707
15708 * ftfont.c (fc_charset_table): Add "unicode-sip".
15709 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
15710 Qunicode_sip.
15711
15712 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
15713
15714 * coding.c (QCdefault_char): Rename from QCdefalut_char.
15715 (Fcoding_system_put): Use QCdefault_char.
15716 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
15717
15718 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
15719
15720 * xftfont.c (syms_of_xftfont): Fix typo.
15721
15722 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
15723
15724 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
15725
15726 * emacs.c (main): Close daemon_pipe on exec.
15727
15728 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
15729
15730 * termchar.h (struct tty): New members termcap_term_buffer and
15731 termcap_strings_buffer.
15732
15733 * term.c (encode_terminal_code): Free any previous memory blocks
15734 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
15735 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
15736 All callers changed.
15737 (init_tty): Store termcap data and string buffers in new struct
15738 tty members termcap_term_buffer and termcap_strings_buffer.
15739 (delete_tty): Free them.
15740 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
15741
15742 2008-12-07 Seiji Zenitani <zenitani@mac.com>
15743
15744 * nsfns.m (ns_set_background_color): Remove code duplication.
15745 It was a substitute for face-transparency on OS X 10.3.
15746
15747 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
15748
15749 * coding.c (make_conversion_work_buffer): Disable buffer
15750 modification hooks in the work buffer.
15751
15752 2008-12-05 Eli Zaretskii <eliz@gnu.org>
15753
15754 * process.c (procfs_system_process_attributes): If `nread' has a
15755 negative value, assign zero to it.
15756
15757 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
15758
15759 * eval.c (Vdebug_on_error): Doc fix.
15760
15761 2008-12-05 Kenichi Handa <handa@m17n.org>
15762
15763 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
15764 second character is a combining character.
15765
15766 2008-12-05 Eli Zaretskii <eliz@gnu.org>
15767
15768 * process.c (procfs_system_process_attributes): Don't use cmd,
15769 cmdsize, and q without initializing them first.
15770
15771 2008-12-04 Jason Rumney <jasonr@gnu.org>
15772
15773 * w32font.c (w32font_draw): Initialize orig_clip before getting
15774 it, and delete it when finished.
15775
15776 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
15777
15778 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
15779 case when running as a daemon before detaching.
15780
15781 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
15782
15783 * w32.c (init_environment): Don't unload library shell32.dll.
15784
15785 2008-12-03 Kenichi Handa <handa@m17n.org>
15786
15787 * font.c (font_at): Set `multibyte' at first.
15788
15789 * coding.c (decode_coding_charset): Check type of an element of
15790 vector VALIDS.
15791 (encode_coding_emacs_mule): Be sure to set `code'.
15792
15793 * fontset.c (face_for_char): Handle invalid charset property correctly.
15794 (font_for_char): Likewise.
15795
15796 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
15797
15798 * font.c (Fopen_font): Compute pixel size correctly.
15799 (font_update_lface): Handle fonts with corrupted size specs,
15800 i.e. non-int and non-float.
15801
15802 * ftfont.c (ftfont_match): Initialize entity variable.
15803 (ftfont_resolve_generic_family): Avoid using uninitialized var.
15804 (ftfont_list_family): Initialize list var earlier.
15805
15806 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
15807
15808 * xterm.c (x_draw_glyph_string): Fall back on
15809 underline_minimum_offset for underline position.
15810
15811 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15812
15813 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
15814
15815 * character.c (c_string_width): Specify the type for LEN.
15816
15817 2008-12-03 Kenichi Handa <handa@m17n.org>
15818
15819 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
15820 (decode_coding_utf_8): Likewise.
15821 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
15822 (produce_chars): Initialize consumed_chars to 0.
15823
15824 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
15825
15826 * keyboard.c (make_lispy_position): Only use PT if the selected
15827 window is current.
15828
15829 2008-12-02 Andreas Schwab <schwab@suse.de>
15830
15831 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
15832
15833 * doprnt.c (doprnt1): Fix size of charbuf.
15834
15835 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
15836
15837 * keyboard.c (timer_check): Revert last change.
15838
15839 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
15840
15841 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
15842
15843 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
15844
15845 * makefile.w32-in: Update dependencies.
15846 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
15847
15848 2008-12-01 Andreas Schwab <schwab@suse.de>
15849
15850 * font.c (register_font_driver): Use xmalloc.
15851 (font_put_frame_data): Likewise.
15852
15853 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
15854
15855 * xfaces.c (realize_x_face): Make abort condition clearer.
15856
15857 * gtkutil.c (update_frame_tool_bar): Initialize variable.
15858
15859 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
15860
15861 * keyboard.c (timer_check): After a timer runs, ensure that the
15862 selected window's buffer is current.
15863
15864 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
15865
15866 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
15867 It was accidentally restored by the Unicode merge.
15868
15869 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
15870
15871 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
15872
15873 * w32proc.c: Include "coding.h".
15874 (Fw32_short_file_name): Encode filename passed to Windows API.
15875 (Fw32_long_file_name): Encode filename passed to Windows API and
15876 decode back the result. (Bug#1433)
15877
15878 2008-11-29 Kenichi Handa <handa@m17n.org>
15879
15880 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
15881 not before accessing it.
15882
15883 * charset.c (Fdefine_charset_internal): After calculating
15884 min_char, max_char, and fastmap, copy the charset structure again.
15885 (encode_char): Fix the previous change.
15886
15887 2008-11-28 Seiji Zenitani <zenitani@mac.com>
15888
15889 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
15890
15891 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
15892
15893 * nsterm.m (x_set_frame_alpha): New function.
15894
15895 2008-11-27 Eli Zaretskii <eliz@gnu.org>
15896
15897 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
15898
15899 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
15900
15901 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
15902 pointer to check_face_name.
15903
15904 2008-11-27 Kenichi Handa <handa@m17n.org>
15905
15906 * category.h (SET_CATEGORY_SET): Call set_category_set.
15907 (set_category_set): Extern it.
15908
15909 * category.c (hash_get_category_set): New function.
15910 (Fmodify_category_entry): Adjust for the change of
15911 char_table_ref_and_range. Call hash_get_category_set to get a
15912 category set to store in the table.
15913
15914 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
15915 Funify_charset.
15916
15917 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
15918 (DECODE_CHAR): Check if the decoder vector is ready.
15919 (ENCODE_CHAR): Check if the encoder char-table is ready.
15920 (maybe_unify_char): Extern it.
15921
15922 * charset.c (Vchar_unified_charset_table): Delete it.
15923 (inhibit_load_charset_map): New variable.
15924 (temp_charset_work): New variable.
15925 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
15926 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
15927 New macros.
15928 (load_charset_map): Meaning of control_flag changed.
15929 If inhibit_load_charset_map is nonzero, setup a table in
15930 temp_charset_work.
15931 (load_charset): New argument control_flag.
15932 (map_charset_for_dump): New function.
15933 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
15934 map_charset_for_dump.
15935 (Fdefine_charset_internal): If the charset method is MAP, load
15936 mapping tables by calling load_charset.
15937 (Funify_charset): Don't load a mapping table but directly set
15938 Vchar_unify_table.
15939 (maybe_unify_char): New function.
15940 (decode_char): Don't handle the deleted method MAP_DEFERRED.
15941 Handle the case of inhibit_load_charset_map being nonzero.
15942 (encode_char): Don't handle the deleted method MAP_DEFERRED.
15943 Handle the case of inhibit_load_charset_map being nonzero.
15944 (Fclear_charset_maps): Just free temp_charset_work.
15945 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
15946 variable.
15947
15948 * chartab.c (sub_char_table_ref_and_range): Adjust for the
15949 change of char_table_ref_and_range.
15950 (char_table_ref_and_range): Change the meaning of argument FROM
15951 and TO. Now the caller must provide initial values for *FROM
15952 and *TO.
15953
15954 * fontset.c (fontset_add): Adjust for the change of
15955 char_table_ref_and_range.
15956 (fontset_get_font_group): Likewise.
15957 (Ffontset_info): Likewise.
15958
15959 * keymap.c (describe_vector): Adjust for the change of
15960 char_table_ref_and_range. For char-table, put boundary between
15961 non-ASCII and 8-bit characters.
15962
15963 * print.c (print_object): For bool-vector, delete unnecessary
15964 check of ASCII_BYTE_P.
15965
15966 2008-11-26 Jason Rumney <jasonr@gnu.org>
15967
15968 * w32font.c (w32font_open_internal): Don't include external
15969 leading in font height. (Bug#879)
15970
15971 2008-11-26 Glenn Morris <rgm@gnu.org>
15972
15973 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
15974 redefinition with ifdef. (Bug#1383)
15975
15976 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
15977
15978 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
15979
15980 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
15981
15982 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
15983 New EmacsView methods.
15984 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
15985 Fixes bug #1048,1357,1414.
15986
15987 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
15988
15989 Fix bug #1362.
15990 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
15991 is not an indexed color.
15992 * nsterm.m (free_indexed_color): Add argument checking.
15993 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
15994
15995 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
15996
15997 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
15998 Document confirm-after-completion value for
15999 minibuffer-completion-confirm.
16000
16001 2008-11-24 Jason Rumney <jasonr@gnu.org>
16002
16003 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
16004 warning.
16005
16006 2008-11-23 Jason Rumney <jasonr@gnu.org>
16007
16008 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
16009 restored before returning.
16010
16011 * w32font.c (check_face_name): New function.
16012 (add_font_entity_to_list): Use it to filter out common substituted
16013 fonts. (Bug#642)
16014
16015 2008-11-22 Martin Rudalics <rudalics@gmx.at>
16016
16017 * buffer.c (Fswitch_to_buffer): Reword and mention new option
16018 confirm-nonexistent-file-or-buffer in doc-string.
16019
16020 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
16021
16022 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
16023 Fix copy/paste typo. Add checks.
16024
16025 2008-11-21 Kenichi Handa <handa@m17n.org>
16026
16027 * coding.c (detect_coding_iso_2022): Reject invalid composition
16028 sequence.
16029 (DECODE_COMPOSITION_START): If the current source is the last
16030 block, and the current composition doesn't end, regard this
16031 sequence as invalid.
16032 (decode_coding_iso_2022): Handle invalid composition sequence.
16033
16034 2008-11-20 Martin Rudalics <rudalics@gmx.at>
16035
16036 * window.c (coordinates_in_window): Don't return
16037 ON_VERTICAL_BORDER for the rightmost position of a mode/header
16038 line when the window is not the rightmost one. (Bug#1372)
16039
16040 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
16041
16042 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
16043
16044 2008-11-15 Eli Zaretskii <eliz@gnu.org>
16045
16046 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
16047 and bright_bg if noninteractive is non-zero.
16048
16049 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16050
16051 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
16052 x_draw_glyph_string_background.
16053
16054 * w32term.c (x_draw_glyph_string): Likewise.
16055
16056 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
16057
16058 * xterm.c (x_draw_glyph_string): Stop drawing the background of
16059 the next glyph string once past the overhang width.
16060
16061 * nsterm.m (ns_draw_glyph_string): Likewise.
16062
16063 * w32term.c (x_draw_glyph_string): Likewise.
16064
16065 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
16066
16067 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
16068 double file close.
16069
16070 2008-11-14 Martin Rudalics <rudalics@gmx.at>
16071
16072 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
16073 dedicated status of window before attempting to display another
16074 buffer in it.
16075
16076 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
16077
16078 * msdos.c (Fmsdos_long_file_names):
16079 (syms_of_msdos) <dos-unsupported-char-glyph>:
16080 * dosfns.c (Fint86): Fix typos in docstrings.
16081
16082 2008-11-14 Eli Zaretskii <eliz@gnu.org>
16083
16084 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
16085
16086 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
16087
16088 * puresize.h (BASE_PURESIZE): Increase to 1260000.
16089
16090 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
16091
16092 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
16093
16094 * frame.h: Negative alpha means "don't touch".
16095
16096 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
16097
16098 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
16099
16100 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
16101
16102 * hftctl.c:
16103 * chpdef.h:
16104 * acldef.h: Remove files used only for systems no longer supported.
16105
16106 * Makefile.in: Fix .o alphabetical ordering.
16107 (hftctl.o): Remove dependency, file removed.
16108 (keymap.o, print.o): Depend on charset.h.
16109
16110 2008-11-10 Kenichi Handa <handa@m17n.org>
16111
16112 * character.c (Fget_byte): Fix and make it faster for unibyte target.
16113
16114 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
16115
16116 * dired.c (file_name_completion): If completion_ignore_case is
16117 enabled, ignore case when checking completion-regexp-list.
16118
16119 2008-11-08 Eli Zaretskii <eliz@gnu.org>
16120
16121 * vm-limit.c (get_lim_data): Fix last change.
16122
16123 2008-11-08 Kenichi Handa <handa@m17n.org>
16124
16125 * character.c (Fget_byte): New function.
16126 (syms_of_character): Defsubr Fget_byte.
16127
16128 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
16129
16130 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
16131 cursor position is valid after scrolling.
16132
16133 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
16134
16135 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
16136
16137 2008-11-06 Glenn Morris <rgm@gnu.org>
16138
16139 * xterm.c (handle_one_xevent): Don't let popup menus cause
16140 mouse-autoselect-window related window switching. (Bug#1261)
16141
16142 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
16143
16144 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
16145
16146 2008-11-04 Andreas Schwab <schwab@suse.de>
16147
16148 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
16149
16150 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
16151
16152 * xfns.c (Fx_wm_set_size_hint): New function.
16153
16154 2008-11-03 Martin Rudalics <rudalics@gmx.at>
16155
16156 * textprop.c (Fprevious_single_char_property_change): Return 0
16157 when there's no change in a string. (Bug#1301)
16158
16159 2008-11-02 Martin Rudalics <rudalics@gmx.at>
16160
16161 * frame.c (do_switch_frame): New argument NORECORD passed to
16162 Fselect_window.
16163 (Fselect_frame): New argument NORECORD passed to
16164 do_switch_frame.
16165 (Fset_frame_selected_window): New argument NORECORD passed to
16166 Fselect_frame.
16167 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
16168 in call of do_switch_frame.
16169 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
16170 Handle NORECORD argument in call of Fselect_frame.
16171 * lisp.h (do_switch_frame, Fselect_frame)
16172 (Fset_frame_selected_window): Adjust declarations.
16173 * window.c (select_frame_norecord): New function.
16174 (run_window_configuration_change_hook): Use it and call
16175 Fselect_frame with NORECORD set.
16176 (Fselect_window): Pass NORECORD to Fselect_frame.
16177 (Fset_window_configuration): Handle NORECORD argument in call of
16178 do_switch_frame.
16179 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
16180 Fset_frame_selected_window.
16181 * keyboard.c (command_loop_1): Handle NORECORD in call of
16182 Fselect_frame (currently ifdefd).
16183
16184 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
16185
16186 * emacs.c (USAGE2): Untabify.
16187
16188 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
16189
16190 * composite.c (fill_gstring_header): Fix copy/paste typo.
16191
16192 2008-10-31 Martin Rudalics <rudalics@gmx.at>
16193
16194 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
16195 (Fother_window): Rename argument and rewrite doc-string.
16196 (select_window_norecord): Fix return value. (Bug#1276)
16197
16198 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
16199
16200 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
16201 new frames overriding foreground for tooltips. Based on similar patch
16202 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
16203
16204 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
16205
16206 * emacs.c (Fdaemon_initialized): Initialize nfd.
16207
16208 2008-10-29 Martin Rudalics <rudalics@gmx.at>
16209
16210 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
16211 (Fwindow_text_height): Clarify doc-strings.
16212 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
16213 doc-string of window-scroll-functions.
16214
16215 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
16216
16217 * category.c (syms_of_category): Fix typo in docstring.
16218
16219 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
16220
16221 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
16222 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
16223 Fix typos in docstrings.
16224
16225 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
16226
16227 * emacs.c (daemon_pipe): Make non-static.
16228 (IS_DAEMON): Move definition ...
16229 * lisp.h (IS_DAEMON): ... here.
16230 (daemon_pipe): Declare.
16231 (is_daemon): Remove.
16232 * dispnew.c (init_display): Use IS_DAEMON.
16233
16234 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16235
16236 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
16237 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
16238
16239 * emacs.c (is_daemon): Remove.
16240 (main): Don't set is_daemon.
16241 (IS_DAEMON): New macro.
16242 (Fdaemonp, Fdaemon_initialized): Use it.
16243 (Fdaemon_initialized): Write a char into the pipe to make sure the
16244 parent exits.
16245 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
16246
16247 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
16248
16249 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
16250 over-sized glyph, draw it with the default glyph width.
16251
16252 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
16253 glyph, draw it with the default glyph width.
16254
16255 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
16256 glyph, draw it with the default glyph width.
16257
16258 * xdisp.c (try_scrolling): When computing the distance from the
16259 scroll margin to PT, try moving some distance past the window
16260 bottom before giving up.
16261
16262 2008-10-27 Martin Rudalics <rudalics@gmx.at>
16263
16264 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
16265 (Fset_window_buffer): Explain in doc-string that a window can be
16266 "strongly" dedicated to its buffer.
16267
16268 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
16269
16270 * emacs.c (daemon_name): New variable.
16271 (main): Deal with --daemon=SERVER_NAME.
16272 (Fdaemonp): Return a name if one was passed to --daemon.
16273
16274 2008-10-26 Romain Francoise <romain@orebokech.com>
16275
16276 * emacs.c (daemon_pipe): New variable.
16277 (main): Create a pipe before forking, make the parent exit only after
16278 the child has closed its end of the pipe. Move closing the
16279 descriptors ...
16280 (Fdaemon_initialized): ... here. New function.
16281
16282 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
16283
16284 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
16285 the previous unoptimized table.
16286
16287 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
16288 the distinction between non-nil and non-t value of `dedicated'.
16289
16290 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
16291
16292 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
16293 read_char_minibuf_menu_text is large enough to hold the menu string.
16294
16295 2008-10-25 Martin Rudalics <rudalics@gmx.at>
16296
16297 * window.c (Fget_buffer_window, Fdelete_windows_on)
16298 (Freplace_buffer_in_windows): Make buffer argument optional and
16299 rename to buffer_or_name.
16300
16301 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
16302
16303 * xdisp.c (handle_single_display_spec, handle_display_prop):
16304 Undo 2005-05-16 change.
16305 (handle_stop): Pop iterator if it's loaded with an empty string.
16306 (get_overlay_strings_1): Don't save iterator if it's loaded with
16307 an empty string (bug#1201).
16308
16309 2008-10-24 Kenichi Handa <handa@m17n.org>
16310
16311 * ftfont.c (ftfont_otf_features): Fix previous change.
16312 (ftfont_otf_capability): Check FeatureList.FeatureCount before
16313 calling ftfont_otf_features.
16314
16315 2008-10-24 Kenichi Handa <handa@m17n.org>
16316
16317 * font.c (font_match_p): Fix for the case that a vector of
16318 characters is in script-representative-chars.
16319
16320 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
16321
16322 * dbusbind.c (xd_in_read_queued_messages): New variable.
16323 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
16324 (xd_read_queued_messages): Catch Qdbus_error from the macros.
16325 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
16326 macro. (Bug#1186)
16327
16328 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
16329
16330 * s/sol2-10.h: New file.
16331
16332 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
16333
16334 * xdisp.c (fill_glyph_string): Fix typo in source (though the
16335 poor beast has survived 9+ years and the jump from xterm.c!).
16336
16337 2008-10-23 Martin Rudalics <rudalics@gmx.at>
16338
16339 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
16340 Reword doc-string.
16341 (Fbury_buffer): In doc-string say what happens to the buffer's window.
16342
16343 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
16344
16345 * character.c (syms_of_character) <script-representative-chars>:
16346 <unicode-category-table>: Doc fixes.
16347
16348 2008-10-23 Noah Friedman <friedman@splode.com>
16349
16350 * coding.c (make_conversion_work_buffer): Check that
16351 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
16352 Fget_buffer_create.
16353
16354 2008-10-23 Kenichi Handa <handa@m17n.org>
16355
16356 * font.c (font_add_log): Check the values of extra properties.
16357
16358 2008-10-22 Martin Rudalics <rudalics@gmx.at>
16359
16360 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
16361 Reword doc-string.
16362 (Fset_window_parameter): Use NILP.
16363 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
16364 (Frecenter): Use "selected" instead of "current" window in doc-strings.
16365
16366 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
16367
16368 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
16369
16370 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
16371
16372 * nsfns.m (ns_appkit_version): New function.
16373 (x-server-version): Use it.
16374 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
16375 (x-server-vendor): Don't check_ns().
16376
16377 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
16378
16379 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
16380
16381 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
16382 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
16383
16384 2008-10-22 Kenichi Handa <handa@m17n.org>
16385
16386 * syntax.c (scan_words): Call word_boundary_p instead of comparing
16387 scripts.
16388
16389 * category.c (word_boundary_p): Check scripts instead of charset.
16390 Handle nil value in word-separating-categories and
16391 word-combining-categories.
16392 (syms_of_category): Fix docstrings of word-separating-categories
16393 and word-combining-categories.
16394
16395 2008-10-21 Eli Zaretskii <eliz@gnu.org>
16396
16397 * coding.c (Fencode_coding_region, Fdecode_coding_region)
16398 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
16399
16400 2008-10-21 Martin Rudalics <rudalics@gmx.at>
16401
16402 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
16403 Rename arg "buffer" to "buffer_or_name".
16404 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
16405 it optional.
16406 (no_switch_window): Remove since the return value is not used.
16407 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
16408 Consider window as dedicated when Fwindow_dedicated_p returns a
16409 non-nil value.
16410 * lisp.h: Remove prototype for no_switch_window.
16411
16412 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
16413
16414 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
16415 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
16416
16417 2008-10-21 Kenichi Handa <handa@m17n.org>
16418
16419 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
16420 check Vlatin_extra_code_table.
16421
16422 2008-10-20 Eli Zaretskii <eliz@gnu.org>
16423
16424 * fileio.c (Fset_file_modes): Doc fix.
16425
16426 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
16427
16428 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
16429 in arrays.
16430
16431 2008-10-19 Martin Rudalics <rudalics@gmx.at>
16432
16433 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
16434 Mention kill-buffer in doc-string.
16435 (Fset_window_buffer): Reinsert tem check removed in last commit.
16436 (Fenlarge_window, Fshrink_window): Have argument names and
16437 doc-string follow Elisp manual more closely.
16438
16439 2008-10-18 Eli Zaretskii <eliz@gnu.org>
16440
16441 * fileio.c (Fset_file_modes): Doc fix.
16442
16443 2008-10-18 Martin Rudalics <rudalics@gmx.at>
16444
16445 * window.c (Fwindow_width, Fset_window_start)
16446 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
16447 (Fdelete_windows_on, Freplace_buffer_in_windows):
16448 Make doc-strings follow code and Elisp manual more closely.
16449 (Fwindow_dedicated_p): Make window argument optional.
16450 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
16451 (Fset_window_buffer): Respect any non-nil dedicated value for
16452 window. Rename "buffer" argument to "buffer_or_name".
16453
16454 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
16455
16456 * m/sh3.h: New file, machine description for SuperH.
16457
16458 2008-10-17 Martin Rudalics <rudalics@gmx.at>
16459
16460 * window.c (Fsplit_window): Rename arg horflag to horizontal.
16461
16462 2008-10-17 Kenichi Handa <handa@m17n.org>
16463
16464 * ftfont.c (ftfont_otf_features): Fix indexing
16465 gsub_gpos->FeatureList.Feature. Check the validity of indices.
16466
16467 2008-10-16 Magnus Henoch <mange@freemail.hu>
16468
16469 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
16470 (Fdbus_call_method_asynchronously): Ditto.
16471 This change makes C-h f display the argument list.
16472
16473 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
16474
16475 * fileio.c (Fexpand_file_name): Doc fix.
16476
16477 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
16478 of :foreground and :background equivalent to unspecified (20.x
16479 compatibility).
16480
16481 2008-10-15 Eli Zaretskii <eliz@gnu.org>
16482
16483 * buffer.c (syms_of_buffer): Doc fix.
16484
16485 2008-10-14 Kenichi Handa <handa@m17n.org>
16486
16487 * font.c (font_clear_prop): When clearing font width, clear the
16488 average width field too.
16489
16490 2008-10-12 Andreas Schwab <schwab@suse.de>
16491
16492 * ftfont.c (ftfont_shape_by_flt): Make static.
16493 * ftfont.h (ftfont_shape_by_flt): Don't declare.
16494
16495 * font.c: Don't include <m17n-flt.h>.
16496
16497 2008-10-10 Eli Zaretskii <eliz@gnu.org>
16498
16499 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
16500
16501 2008-10-09 Eli Zaretskii <eliz@gnu.org>
16502
16503 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
16504 away code.
16505
16506 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
16507
16508 * dispnew.c (update_text_area): Avoid looping due to large glyph
16509 overhangs (bug#1070).
16510
16511 2008-10-09 Kenichi Handa <handa@m17n.org>
16512
16513 * fontset.c (face_for_char): If face->fontset is negative, just
16514 return ascii_face.
16515
16516 * font.c (font_delete_unmatched): Fix previous change.
16517 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
16518
16519 2008-10-09 Martin Rudalics <rudalics@gmx.at>
16520
16521 * frame.c (Fraise_frame): On text-only terminals select frame in
16522 order to make it visible. (Bug#1061)
16523
16524 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
16525
16526 * fontset.c (fontset_find_font): Check frame validity.
16527
16528 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
16529
16530 * gtkutil.c (xg_display_open): Reset default display if none exists.
16531 (xg_display_close): Allow Emacs to close all displays (bug#985).
16532
16533 2008-10-06 Andreas Schwab <schwab@suse.de>
16534
16535 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
16536
16537 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
16538
16539 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
16540
16541 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
16542
16543 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
16544 during initialization.
16545
16546 2008-10-04 Eli Zaretskii <eliz@gnu.org>
16547
16548 * xdisp.c (redisplay_internal): If frame switched, redisplay the
16549 whole thing on MSDOS frames as well as on a TTY.
16550
16551 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
16552 well as for TTY.
16553 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
16554 well as on a TTY.
16555
16556 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
16557 as well as for TTY.
16558
16559 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
16560
16561 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
16562 MSDOS frames as well.
16563
16564 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
16565
16566 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
16567 correct arguments.
16568 * menu.c (find_and_return_menu_selection): Add cast.
16569
16570 2008-10-03 Glenn Morris <rgm@gnu.org>
16571
16572 * emacs.c (USAGE1): Add --daemon.
16573
16574 2008-10-02 Eli Zaretskii <eliz@gnu.org>
16575
16576 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
16577 100, so it's in percents as advertised.
16578
16579 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
16580
16581 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
16582 (ns_output.current_cursor, ns_output.desired_cursor)
16583 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
16584 (FRAME_NEW_CURSOR_COLOR): Remove.
16585
16586 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
16587 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
16588 enumeration (HOLLOW_BOX_CURSOR, etc.).
16589
16590 * nsterm.m (ns_frame_rehighlight): Remove commented code.
16591 (draw_window_cursor): Simplify code.
16592 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
16593 Don't change cursor type. In latter, call rehighlight instead of doing
16594 updates manually.
16595 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
16596 Use core Emacs cursor types.
16597
16598 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
16599
16600 2008-10-02 Martin Rudalics <rudalics@gmx.at>
16601
16602 * process.c (Faccept_process_output): Fix doc-string.
16603
16604 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
16605
16606 * gmalloc.c (__sbrk): Also define for uClibc.
16607
16608 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
16609 for uClibc.
16610
16611 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16612
16613 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
16614 styles.
16615 (nsfont_open): Reenable the cache.
16616
16617 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16618
16619 * font.c (font_matching_entity): Reflect ATTRS in font selection.
16620 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
16621
16622 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
16623
16624 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
16625 a suspended terminal.
16626
16627 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
16628
16629 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
16630
16631 2008-09-30 Eli Zaretskii <eliz@gnu.org>
16632
16633 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
16634
16635 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
16636
16637 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
16638 in a continued line coincides with a line beginning.
16639
16640 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
16641
16642 * nsfont.m (nsfont_trait_distance): Fix bug.
16643 (nsfont_list): Return a list rather than a vector (syncs with Handa
16644 changes of 2008-05-14).
16645 (nsfont_open): Improve logging.
16646
16647 2008-09-29 Andreas Schwab <schwab@suse.de>
16648
16649 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
16650
16651 2008-09-28 Martin Rudalics <rudalics@gmx.at>
16652
16653 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
16654 name as char-resolve-modifiers.
16655 Reported by: Markus Triska <markus.triska@gmx.at>
16656
16657 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
16658
16659 * dispnew.c (init_display): Return earlier when running as a daemon.
16660
16661 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
16662
16663 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
16664
16665 2008-09-27 Eli Zaretskii <eliz@gnu.org>
16666
16667 * composite.c (Fcomposition_get_gstring)
16668 (Fcompose_region_internal, Fcompose_string_internal)
16669 (Ffind_composition_internal): Doc fix.
16670 (syms_of_composite) <compose-chars-after-function>: Doc fix.
16671 (syms_of_composite) <auto-composition-function>: Doc fix.
16672 (syms_of_composite) <composition-function-table>: Doc fix.
16673
16674 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
16675
16676 * search.c (wordify): New argument for lax word-ends.
16677 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
16678
16679 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
16680
16681 * lisp.h (is_daemon): Declare.
16682 * dispnew.c (init_display): Do not try to initialize the terminal
16683 when running as a daemon.
16684
16685 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
16686
16687 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
16688 x_display_pixel_height.
16689
16690 2008-09-22 Martin Rudalics <rudalics@gmx.at>
16691
16692 * undo.c (record_point): Don't call Fundo_boundary for first
16693 change. (Bug#731)
16694
16695 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
16696
16697 * emacs.c (Fdaemonp): Doc fix.
16698
16699 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
16700
16701 * emacs.c (main): Place #ifdef in the proper place.
16702
16703 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
16704
16705 * emacs.c (standard_args): Add --daemon.
16706 (main): Disconnect from the terminal when --daemon is passed.
16707 (is_daemon): New variable.
16708 (Fdaemonp): New function.
16709 (syms_of_emacs): Defsubr it.
16710
16711 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
16712
16713 * xdisp.c (get_next_display_element): Handle string display
16714 correctly when checking for the end of a box run.
16715
16716 2008-09-20 Glenn Morris <rgm@gnu.org>
16717
16718 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
16719 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
16720 (Frename_file): Avoid copying to trash if a rename involves
16721 a delete. (Bug#964).
16722
16723 2008-09-20 Eli Zaretskii <eliz@gnu.org>
16724
16725 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
16726 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
16727 frames as well as termcap frames.
16728 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
16729 get_named_tty.
16730
16731 2008-09-19 Eli Zaretskii <eliz@gnu.org>
16732
16733 * process.c (procfs_system_process_attributes): Fix cmdline in
16734 case /proc/PID/cmdline is empty.
16735
16736 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
16737 x_display_pixel_height.
16738
16739 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
16740
16741 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
16742
16743 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
16744 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
16745
16746 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
16747
16748 * dispextern.h (struct it): Move line_wrap away from the middle of
16749 bitfields. Move voffset in struct iterator_stack_entry after the
16750 bitfields. Move tab_width near after another short.
16751
16752 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
16753
16754 * frame.h (struct frame): Move alpha from the middle of bitfields.
16755
16756 * window.h (struct window): Move frozen_window_start_p after the
16757 rest of the bitfields to reduce padding.
16758
16759 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
16760
16761 * xterm.h (x_display_info): Remove `height' and `width' members.
16762
16763 * nsterm.h (ns_display_info): Remove `height' and `width' members.
16764
16765 * w32term.h (w32_display_info): Remove `height', `width',
16766 `height_in', and `width_in' members.
16767
16768 * xterm.c (x_display_pixel_height, x_display_pixel_width):
16769 New functions.
16770 (x_calc_absolute_position): Use them.
16771 (x_term_init): Omit removed `height' and `width' members.
16772
16773 * w32term.c (x_display_pixel_height, x_display_pixel_width):
16774 New functions.
16775 (w32_read_socket, x_calc_absolute_position): Use them.
16776 (w32_initialize_display_info, w32_term_init): Omit removed members
16777 of w32_display_info.
16778
16779 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
16780 New functions.
16781 (ns_initialize_display_info): Omit removed members of ns_display_info.
16782
16783 * xterm.c (x_display_pixel_height, x_display_pixel_width):
16784 New functions.
16785 (x_calc_absolute_position): Use them.
16786 (x_term_init): Omit removed `height' and `width' members.
16787
16788 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
16789 (compute_tip_xy):
16790 * frame.c (x_fullscreen_adjust):
16791 * xmenu.c (menu_position_func): Use x_display_pixel_height and
16792 x_display_pixel_width.
16793
16794 2008-09-18 Kenichi Handa <handa@m17n.org>
16795
16796 * composite.c (fill_gstring_header): Don't check FROM and TO here.
16797 (composition_compute_stop_pos): Fix handling of static composition.
16798 (Fcomposition_get_gstring): Check FROM and TO at first.
16799
16800 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
16801
16802 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
16803 mixup (YAILOM).
16804
16805 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
16806
16807 * indent.c (Fvertical_motion): Use position reported by iterator
16808 instead of PT for determining screen motion (bug#943).
16809
16810 2008-09-17 Romain Francoise <romain@orebokech.com>
16811
16812 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
16813
16814 2008-09-17 Kenichi Handa <handa@m17n.org>
16815
16816 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
16817
16818 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
16819 if necessary.
16820
16821 2008-09-16 Kenichi Handa <handa@m17n.org>
16822
16823 * coding.c (make_conversion_work_buffer): Avoid calling
16824 Fget_buffer_create if it is not necessary.
16825
16826 2008-09-15 Martin Rudalics <rudalics@gmx.at>
16827
16828 * window.c (Fselect_window): Don't update window_select_count and
16829 use_time when norecord is not nil.
16830
16831 2008-09-14 Kenichi Handa <handa@m17n.org>
16832
16833 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
16834 specpdl_ptr.
16835
16836 2008-09-12 Kenichi Handa <handa@m17n.org>
16837
16838 * indent.c (scan_for_column): Don't handle automatic composition
16839 if the current buffer is not associated with a window.
16840
16841 * composite.c (composition_reseat_it): If the current buffer is
16842 not associated with a window, ignore the automatic composition.
16843 (find_automatic_composition): Likewise.
16844
16845 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
16846
16847 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
16848 (Fgpm_mouse_stop): Use it.
16849 * termhooks.h (close_gpm): Declare.
16850 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
16851 connection if Gpm_GetEvent fails.
16852
16853 * window.c (set_window_buffer): Always preserve current-buffer.
16854
16855 2008-09-12 Glenn Morris <rgm@gnu.org>
16856
16857 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
16858
16859 2008-09-11 Glenn Morris <rgm@gnu.org>
16860
16861 * charset.c (charset-map-path): Doc fix.
16862
16863 2008-09-10 Kenichi Handa <handa@m17n.org>
16864
16865 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
16866
16867 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
16868 compose a grapheme cluster with the preceding base glyph.
16869
16870 * composite.c (composition_compute_stop_pos): Fix previous change.
16871 Reset cmp_it->id to -1 at first.
16872
16873 2008-09-10 Glenn Morris <rgm@gnu.org>
16874
16875 * Makefile.in (character.o, chartab.o): Fix config.h typo.
16876
16877 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
16878
16879 * keyboard.c (read_key_sequence): Reapply translation maps when
16880 switching keyboards.
16881
16882 2008-09-09 Kenichi Handa <handa@m17n.org>
16883
16884 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
16885 characters.
16886
16887 * composite.c (FORWARD_CHAR): Fix calculation
16888 of (POSITION).pos_byte.
16889 (composition_compute_stop_pos): Limit the search of composition to
16890 at most 500 characters ahead. If we reach the limit or find a
16891 newline, set cmp_it->ch to -2 and return 0.
16892 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
16893
16894 2008-09-08 Kenichi Handa <handa@m17n.org>
16895
16896 * indent.c (Fvertical_motion): Be sure to set
16897 it_overshoot_expected if it.cmp_it.id is non-negative.
16898
16899 2008-09-07 Andreas Schwab <schwab@suse.de>
16900
16901 * callproc.c (Fcall_process): Don't hold references to string data
16902 across garbage collection. Move initialisation of new_argv down
16903 to avoid compiler bug.
16904
16905 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16906
16907 * process.c (Fsystem_process_attributes): Doc fix.
16908
16909 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
16910
16911 * callproc.c (Fcall_process): Canonicalize current directory name.
16912
16913 * xdisp.c (move_it_to): When moving by vpos, ensure that the
16914 iterator advances to the next line if the current line ends in a
16915 continued tab.
16916
16917 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
16918
16919 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
16920 member to point to cmp_from.
16921
16922 * xdisp.c: Doc fix for references to gidx data member.
16923
16924 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
16925
16926 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
16927
16928 2008-09-07 Kenichi Handa <handa@m17n.org>
16929
16930 * composite.c (FORWARD_CHAR): Check STOP after
16931 incrementing (POSITION).pos.
16932
16933 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16934
16935 * process.c (Fsystem_process_attributes): Doc fix.
16936
16937 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
16938
16939 * keyboard.c (Ftop_level): Doc fix.
16940
16941 2008-09-06 Eli Zaretskii <eliz@gnu.org>
16942
16943 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
16944 minibuffer, don't let lower part of menu invade the echo area.
16945
16946 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
16947 "char *q" to access menu text and advance through it. Revert the
16948 change that displayed ">" instead of ASCII character 0x10.
16949
16950 2008-09-05 Eli Zaretskii <eliz@gnu.org>
16951
16952 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
16953 toggle boxes and radio buttons on MS-DOS as well.
16954
16955 2008-09-05 Kenichi Handa <handa@m17n.org>
16956
16957 * composite.c (autocmp_chars): Check lookback count.
16958 (composition_compute_stop_pos): Set cmp_it->lookback.
16959 (composition_reseat_it): Check lookback count.
16960 (struct position_record): New struct.
16961 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
16962 (find_automatic_composition): New function.
16963 (composition_adjust_point): Use find_automatic_composition.
16964
16965 * dispextern.h (struct composition_it): New member lookback.
16966
16967 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
16968
16969 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
16970 if moving by a single line.
16971
16972 2008-09-02 Andreas Schwab <schwab@suse.de>
16973
16974 * xterm.c (x_delete_display): Fix merge error.
16975
16976 * fileio.c (Fexpand_file_name): Remove unused variables.
16977
16978 2008-09-02 Eli Zaretskii <eliz@gnu.org>
16979
16980 * fileio.c (Fexpand_file_name): Copy argument `name' into local
16981 storage on all platforms, not just on DOS_NT.
16982
16983 2008-09-02 Jason Rumney <jasonr@gnu.org>
16984
16985 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
16986 Ensure mouse is not grabbed after menu is finished.
16987
16988 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
16989
16990 * xfaces.c (Finternal_set_alternative_font_family_alist)
16991 (Finternal_set_alternative_font_registry_alist): Properly copy
16992 entire alist structure.
16993
16994 2008-09-01 Kenichi Handa <handa@m17n.org>
16995
16996 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
16997 representative chars of the script is a vector.
16998 (ftfont_list): Handle the case where the representative chars of
16999 the script is a vector.
17000
17001 * character.c (syms_of_character): Docstring of
17002 script-representative-chars fixed.
17003
17004 2008-08-31 Eli Zaretskii <eliz@gnu.org>
17005
17006 * msdos.c (BUILD_CHAR_GLYPH): New macro.
17007 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
17008 the menu. Allocate larger buffer for `text', to account for
17009 possible ^C characters.
17010
17011 2008-08-31 Martin Rudalics <rudalics@gmx.at>
17012
17013 * xdisp.c (prepare_menu_bars): Don't call
17014 Vwindow_size_change_functions with arg Qt.
17015
17016 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
17017
17018 * font.h (font_range):
17019 * fileio.c (report_file_error):
17020 * composite.c (composition_update_it): Yet another int/Lisp_Object
17021 mixup (YAILOM).
17022
17023 2008-08-30 Glenn Morris <rgm@gnu.org>
17024
17025 * data.c (Fmake_variable_frame_local): Doc fix.
17026
17027 * frame.c (Fmodify_frame_parameters): Doc fix.
17028
17029 2008-08-30 Eli Zaretskii <eliz@gnu.org>
17030
17031 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
17032 needed by GetTokenInformation.
17033 (w32_system_process_attributes): Check return values of all system
17034 APIs.
17035
17036 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
17037 only when the state changes.
17038 (IT_update_begin, IT_update_end): Add termscript trace.
17039
17040 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
17041 clipboard is unavailable. Set dst to NULL if it doesn't point to
17042 malloc'ed data.
17043 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
17044 passing random values to xfree.
17045
17046 * dispnew.c (init_display): Set `tty's association in frame's
17047 parameters alist to the name of the terminal device, if that is known.
17048
17049 2008-08-29 Jason Rumney <jasonr@gnu.org>
17050
17051 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
17052
17053 2008-08-29 Eli Zaretskii <eliz@gnu.org>
17054
17055 * composite.c (fill_gstring_body): Avoid compiler warnings.
17056
17057 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
17058 LGLYPH_SET_CODE to avoid compiler warnings.
17059
17060 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
17061
17062 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
17063
17064 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
17065 LGLYPH_SET_CODE.
17066
17067 2008-08-29 Kenichi Handa <handa@m17n.org>
17068
17069 * fileio.c (report_file_error): Don't downcase the first character
17070 of errstring if it is still unibyte.
17071
17072 2008-08-29 Kenichi Handa <handa@m17n.org>
17073
17074 These changes are to re-implement the automatic composition so
17075 that it doesn't use text properties.
17076
17077 * Makefile.in (ftfont.o): Depend on composite.h.
17078 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
17079
17080 * character.h (Vunicode_category_table): Extern it.
17081
17082 * character.c (Vunicode_category_table): New variable.
17083 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
17084
17085 * chartab.c (optimize_sub_char_table): Perform more greedy
17086 optimization.
17087
17088 * composite.h (enum composition_method):
17089 Delete COMPOSITION_WITH_GLYPH_STRING.
17090 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
17091 (Vcomposition_function_table): Extern it.
17092 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
17093 (composition_gstring_put_cache, composition_gstring_from_id)
17094 (composition_gstring_p, composition_gstring_width)
17095 (composition_compute_stop_pos, composition_reseat_it)
17096 (composition_update_it, composition_adjust_point): Extern them.
17097 (Fcomposition_get_gstring): EXFUN it.
17098
17099 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
17100 (Vcomposition_function_table)
17101 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
17102 (gstring_hash_table, gstring_work, gstring_work_headers):
17103 New variables.
17104 (gstring_lookup_cache, composition_gstring_put_cache)
17105 (composition_gstring_from_id, composition_gstring_p)
17106 (composition_gstring_width, fill_gstring_header)
17107 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
17108 (composition_reseat_it, composition_update_it)
17109 (composition_adjust_point, Fcomposition_get_gstring): New functions.
17110 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
17111 and gstring_work_headers. DEFVAR_LISP composition-function-table.
17112 Defsubr composition_get_gstring.
17113
17114 * dispextern.h (struct glyph): New union u.cmp. Delete the member
17115 cmp_id.
17116 (struct glyph_string): Delete the member gidx. New members
17117 cmp_id, cmp_from, and cmp_to.
17118 (enum it_method): Delete GET_FROM_COMPOSITION.
17119 (struct composition_it): New struct.
17120 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
17121 Delete c, len, cmp_id, cmp_len in u.comp.
17122
17123 * font.h (enum lgstring_indices): Delete it.
17124 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
17125 (enum lglyph_indices): Likewise.
17126 (font_range): Adjust extern.
17127 (font_fill_lglyph_metrics): Extern it.
17128
17129 * font.c (QCf): New variable.
17130 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
17131 (font_prepare_composition): Delete this function.
17132 (font_range): Type and arguments changed.
17133 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
17134 (font_fill_lglyph_metrics): New function.
17135 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
17136 (syms_of_font): DEFSYM QCf. Delete defsubr for
17137 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
17138 Defsubr Sfont_shape_gstring.
17139
17140 * fontset.h (font_for_char): Extern it.
17141
17142 * fontset.c (font_for_char): New function.
17143
17144 * ftfont.c: Include composite.h.
17145 (ftfont_resolve_generic_family): Add langset "en" to pattern.
17146 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
17147
17148 * indent.c: Include composite.h and dispextern.h.
17149 (check_composition): Delete this function.
17150 (scan_for_column): Handle composition by
17151 composition_compute_stop_pos, composition_reseat_it, and
17152 composition_update_it.
17153 (compute_motion): Likewise.
17154 (Fvertical_motion): Fix checking of composition.
17155
17156 * keyboard.c (adjust_point_for_property): Check composition by
17157 composition_adjust_point.
17158
17159 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
17160 struct glyph_string.
17161
17162 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
17163 (append_composite_glyph): Adjust for the change of struct it and
17164 struct glyph.
17165 (produce_composite_glyph): Likewise.
17166
17167 * w32term.c (x_draw_composite_glyph_string_foreground):
17168 Adjust for the change of struct glyph_string.
17169 (x_draw_glyph_string): Likewise.
17170
17171 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
17172 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
17173
17174 * xdisp.c: Include font.h.
17175 (it_props): Delete the entry for Qauto_composed.
17176 (init_iterator): Initialize it->cmp_it.id to -1.
17177 (compute_stop_pos): Call composition_compute_stop_pos.
17178 (face_before_or_after_it_pos): Adjust for the change of struct it.
17179 (handle_auto_composed_prop): Delete it.
17180 (handle_composition_prop): Handle only static composition.
17181 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
17182 from xassert. Initialize it->cmp_it.stop_pos.
17183 (push_it): Adjust for the change of struct it.
17184 (pop_it): Likewise.
17185 (get_next_element): Delete next_element_from_composition.
17186 (CHAR_COMPOSED_P): New macro.
17187 (get_next_display_element): For automatic composition, get a face
17188 from the font in the glyph-string.
17189 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
17190 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
17191 (next_element_from_string): Check if the character at the current
17192 position is composed by CHAR_COMPOSED_P.
17193 (next_element_from_buffer): Likewise.
17194 (next_element_from_composition): Adjust for the change of struct it.
17195 Update it->cmp_it.
17196 (dump_glyph): Adjust for the change of struct glyph.
17197 (fill_composite_glyph_string): Adjust for the change of struct
17198 it and struct glyph. Don't handle automatic composition here.
17199 (fill_gstring_glyph_string): New function.
17200 (x_get_glyph_overhangs): Handle automatic composition.
17201 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
17202 (BUILD_GSTRING_GLYPH_STRING): New macro.
17203 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
17204 automatic composition.
17205 (append_composite_glyph): Adjust for the change of struct it and
17206 struct glyph.
17207 (x_produce_glyphs): Adjust for the change of struct it.
17208
17209 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
17210 the change of struct glyph_string.
17211 (x_draw_glyph_string): Likewise.
17212
17213 2008-08-29 Glenn Morris <rgm@gnu.org>
17214
17215 * buffer.c (word-wrap): Doc fix.
17216 * xdisp.c (truncate-partial-width-windows): Doc fix.
17217 Increase default to 50.
17218
17219 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
17220
17221 * xdisp.c (update_tool_bar_unwind): New function.
17222 (update_tool_bar): Temporarily set selected frame before building
17223 tool-bar items.
17224
17225 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
17226
17227 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
17228 snprintf, respectively.
17229 (xd_append_arg): Convert strings with Fstring_make_unibyte.
17230
17231 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
17232
17233 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
17234 LDFLAGS to GNUstep CC invocation.
17235
17236 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
17237
17238 * indent.c (Fvertical_motion): Revert last change. Handle the
17239 general case where we are moving forward, and PT spans multiple
17240 screen lines.
17241
17242 * eval.c (find_handler_clause): Temporarily increase
17243 max-lisp-eval-depth while printing the backtrace buffer, to
17244 guarantee that help-mode code can run.
17245
17246 2008-08-27 Eli Zaretskii <eliz@gnu.org>
17247
17248 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
17249 colors under -rv.
17250 (IT_set_frame_parameters): Don't swap foreground and background
17251 colors if `(reverse . t)' is present in the frame properties.
17252 (internal_terminal_init): Call init_frame_faces only for the
17253 initial frame.
17254
17255 2008-08-27 Andreas Schwab <schwab@suse.de>
17256
17257 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
17258
17259 2008-08-27 Andreas Schwab <schwab@suse.de>
17260
17261 * search.c (search_buffer): Set char_base to zero only at the end.
17262
17263 2008-08-27 Kenichi Handa <handa@m17n.org>
17264
17265 * fileio.c (report_file_error): Fix handling of multibyte error string.
17266
17267 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
17268
17269 * xterm.c (x_term_init): Temporarily hide the partially
17270 initialized terminal while calling vendor-specific-keysyms.
17271
17272 2008-08-26 Eli Zaretskii <eliz@gnu.org>
17273
17274 * msdos.c (internal_terminal_init): Most initializations done only
17275 once, especially initial_screen_colors[] and termscript open.
17276
17277 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
17278
17279 * eval.c (Fcondition_case): Doc fix.
17280
17281 * widgetprv.h (EmacsFramePart): Change font member to the new font
17282 struct.
17283
17284 * widget.c: Include character.h and font.h for XSETFONT.
17285 (setup_frame_gcs): Compute X font id from font struct, just once.
17286
17287 2008-08-26 Eli Zaretskii <eliz@gnu.org>
17288
17289 * term.c (get_named_tty): Fix last change.
17290
17291 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
17292
17293 * indent.c (Fvertical_motion): If moving forward starting from a
17294 multi-line string, move the iterator to the last line of that string.
17295
17296 2008-08-25 Eli Zaretskii <eliz@gnu.org>
17297
17298 * frame.c (do_switch_frame): Mark previously displayed frame as
17299 obscured for FRAME_MSDOS_P frames as well.
17300
17301 2008-08-24 Eli Zaretskii <eliz@gnu.org>
17302
17303 * frame.c (make_terminal_frame): Initialize f->terminal,
17304 f->terminal->reference_count, and scroll bars on MS-DOS as well.
17305 Set the top frame to newly created frame.
17306 (Fmake_terminal_frame): Reuse the_only_display_info.
17307
17308 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
17309 estimating available memory.
17310
17311 2008-08-23 David Reitter <david.reitter@gmail.com>
17312
17313 * nsterm.m (ns_draw_window_cursor): Don't call
17314 NSDisableScreenUpdates and NSEnableScreenUpdates on
17315 non-NS_IMPL_COCOA systems.
17316
17317 2008-08-23 Andreas Schwab <schwab@suse.de>
17318
17319 * process.c (procfs_system_process_attributes): Fix use of
17320 uninitialized variables.
17321
17322 2008-08-23 Eli Zaretskii <eliz@gnu.org>
17323
17324 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
17325
17326 * dispnew.c (init_display): Remove MS-DOS specific conditions for
17327 calling tty-set-up-initial-frame-faces.
17328
17329 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
17330 Allow MSDOS frames along with X frames.
17331
17332 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
17333 addition to output_termcap.
17334
17335 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
17336
17337 * termchar.h (FRAME_TTY): Support output_msdos_raw.
17338 (struct tty_display_info) [MSDOS]: Add fields related to mouse
17339 highlight.
17340
17341 * process.c [!subprocesses]: Define QCname.
17342 (syms_of_process): Intern and staticpro it.
17343
17344 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
17345 Adjust for changes in encoding/decoding routines.
17346 Use encode_coding_object and decode_coding_object instead of
17347 encode_coding and decode_coding.
17348
17349 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
17350
17351 * dosfns.c: Include frame.h before termhooks.h.
17352 (dos_cleanup): Use CURTTY ()->termscript instead of a global
17353 variable termscript.
17354
17355 * s/msdos.h (USER_FULL_NAME): Define.
17356 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
17357
17358 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
17359 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
17360 pw->pw_gecos.
17361
17362 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
17363 SELECTED_FRAME as additional (1st) argument.
17364 (tty_read_avail_input): Handle output_msdos_raw in
17365 addition to output_termcap.
17366
17367 * msdos.c: Include frame.h before termhooks.h.
17368 (mouse_on, mouse_off, mouse_moveto, mouse_init)
17369 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
17370 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
17371 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
17372 (IT_set_terminal_modes, IT_reset_terminal_modes)
17373 (IT_set_frame_parameters): Use tty->termscript instead of a global
17374 variable termscript.
17375 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
17376 global variable terminal_coding. Don't refer to
17377 Vnonascii_translation_table.
17378 (internal_terminal_init): Set Vwindow_system in current_kboard.
17379 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
17380 Announce date and time of session start, if termscript is open.
17381 Don't zero out the_only_display_info (it is done in
17382 term.c:init_tty). Open termscript only of not already open.
17383 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
17384 here instead of dos_ttraw. Don't initialize display if this is an
17385 initial tty. Don't set FRAME_FONT.
17386 (Vwindow_system_version): Bump to 23.
17387 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
17388 is available, set up mouse_position_hook.
17389 (dos_ttraw, IT_set_terminal_modes): If called with initial
17390 terminal, do nothing.
17391 (IT_set_frame_parameters): Handle the Qtty_type frame
17392 parameter by calling internal_terminal_init.
17393 (dos_set_window_size, show_mouse_face)
17394 (clear_mouse_face, IT_note_mode_line_highlight)
17395 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
17396 (dos_rawgetc): Use tty_display_info instead of x_display_info.
17397 (initialize_msdos_display): New function.
17398 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
17399 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
17400 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
17401 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
17402 Accept additional argument: a pointer to a frame. Update all callers.
17403 (request_sigio, unrequest_sigio): Don't define, now defined on
17404 sysdep.c.
17405 (IT_write_glyphs): Rewrite to use encode_terminal_code.
17406
17407 * term.c [MSDOS]: Include msdos.h.
17408 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
17409 conditional to DOS_NT. Allow only one call to this function in a
17410 session. Don't allocate a new struct tty_display_info; instead,
17411 reuse the_only_display_info. Call get_tty_size to get screen
17412 dimensions. Call init_baud_rate to set bad_rate.
17413 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
17414 (Fsuspend_tty) [MSDOS]: Don't close input and output.
17415 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
17416 (get_tty_terminal, get_named_tty, Ftty_type)
17417 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
17418 output_termcap.
17419 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
17420 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
17421 only when subprocesses are supported.
17422
17423 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
17424 f->output_data.x.
17425 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
17426 terminal devices.
17427
17428 * msdos.h: Remove definition of struct x_display_info and struct
17429 x_output.
17430 (FRAME_FONT): Use output_data.tty.
17431 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
17432 (struct x_display_info): Rename from display_info. Update all users in
17433 msdos.c.
17434 (struct x_output): Remove background_pixel and foreground_pixel.
17435 (the_only_display_info): Rename from the_only_x_display.
17436 (dos_ttraw): Update prototype.
17437
17438 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
17439 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
17440
17441 2008-08-23 Jason Rumney <jasonr@gnu.org>
17442
17443 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
17444 (fn_TIFFSetDirectory): New library function used.
17445 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
17446 (tiff_load): Use :index to select among multiple images. Set count
17447 property when multiple images exist.
17448 (gif_format): Use :index, not :image.
17449
17450 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
17451
17452 * xdisp.c (try_scrolling): Check INT_MAX instead of
17453 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
17454 to obtain INT_MAX.
17455
17456 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
17457
17458 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
17459
17460 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
17461
17462 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
17463 GNUstep library location.
17464
17465 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
17466
17467 * xfaces.c (x_update_menu_appearance): Check validity of menu font
17468 before using it.
17469
17470 * puresize.h (BASE_PURESIZE): Increase to 1250000.
17471
17472 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
17473
17474 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
17475 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
17476 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
17477 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
17478 (EmacsApp-cursor_blink_handler): Remove declaration.
17479 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
17480 match 01 Feb 2008 changes in xterm.c.
17481 (ns_read_socket): Add cast to avoid warning.
17482 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
17483 GNUstep.
17484
17485 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
17486
17487 * xselect.c (x_get_foreign_selection): Return nil if desired
17488 selection could not be obtained, instead of signalling an error.
17489
17490 2008-08-20 David Reitter <david.reitter@gmail.com>
17491
17492 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
17493 * nsterm.m: Remove ns-specific code for cursor blinking.
17494 (ns_draw_window_cursor): Clear cursor properly rather than
17495 redrawing the area. Respect width of bar cursors.
17496 These changes enable the use of generic blink-cursor-mode and
17497 generic cursor types in NS and support smooth cursor movements (do
17498 not blink off after command).
17499 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
17500 Nextstep, too.
17501
17502 2008-08-19 Kenichi Handa <handa@m17n.org>
17503
17504 * font.c (Vfont_log_deferred): New variable.
17505 (font_add_log): Check Vfont_log_deferred.
17506 (font_deferred_log): New function.
17507
17508 * font.h (font_deferred_log): Extern it.
17509
17510 * fontset.c (reorder_font_vector): Use encoding charset of fonts
17511 for sorting.
17512 (face_for_char): Use deferred log.
17513
17514 2008-08-18 Kenichi Handa <handa@m17n.org>
17515
17516 * fontset.c (face_for_char): Add font log.
17517
17518 * font.c (font_add_log): Add the font properties :script, :lang,
17519 and :otf in the log.
17520
17521 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
17522
17523 * xdisp.c: Remove dead code.
17524 (handle_invisible_prop, next_overlay_string): Defer call to
17525 setup_for_ellipsis.
17526 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
17527
17528 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
17529
17530 * xfaces.c (lookup_derived_face): Properly handle possible zero
17531 return value of get_lface_attributes.
17532 (merge_faces): Don't tell lookup_derived_face to signal an error
17533 if face is not found.
17534
17535 * dired.c (Fdirectory_files): Doc fix.
17536
17537 * process.c (make_process): Initialize kill_without_query struct
17538 member.
17539
17540 2008-08-15 Eli Zaretskii <eliz@gnu.org>
17541
17542 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
17543 Alternative calculation of totphys for Visual Studio 6.
17544
17545 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
17546
17547 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
17548 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
17549 All users changed.
17550 (stat): Only root directory passed to GetDriveType. Allow RAM
17551 disk as well as local fixed disk when w32-get-true-file-attributes
17552 is set to `local'.
17553 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
17554 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
17555 (w32_cached_id, w32_add_to_cache): New functions.
17556 (get_name_and_id): Look account names in the cache before calling
17557 lookup_account_sid.
17558 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
17559 New initialization flags.
17560 (globals_of_w32): Initialize them to zero.
17561 (w32_system_process_attributes): Use w32_cached_id and
17562 w32_add_to_cache.
17563
17564 2008-08-14 Lawrence Mitchell <wence@gmx.li>
17565
17566 * lread.c (Fread_char, Fread_char_exclusive): If no character
17567 event is read before timeout is reached, return nil, rather than
17568 converting to a number.
17569
17570 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
17571
17572 * fns.c (use_dialog_box): Doc fix.
17573
17574 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
17575 on OS X.
17576
17577 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
17578
17579 * frame.c (Qns_parse_geometry): New var.
17580 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
17581
17582 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
17583
17584 * xdisp.c (x_produce_glyphs): Handle the case when font has no
17585 space character in calculating tabs.
17586
17587 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
17588
17589 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
17590
17591 2008-08-10 Glenn Morris <rgm@gnu.org>
17592
17593 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
17594 silence gcc "limited range of data type" warnings in some
17595 make_fixnum_or_float calls.
17596
17597 2008-08-09 Eli Zaretskii <eliz@gnu.org>
17598
17599 * w32.c (w32_system_process_attributes): If the process does not
17600 exist, return nil.
17601
17602 * w32.c: Include thelp32.h, psapi.h and coding.h.
17603 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
17604 declarations.
17605 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
17606 (Process32Next_Proc): New typedefs.
17607 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
17608 (g_b_init_process32_next, g_b_init_open_thread_token)
17609 (g_b_init_impersonate_self, g_b_init_revert_to_self)
17610 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
17611 (g_b_init_get_process_working_set_size)
17612 (g_b_init_global_memory_status_ex): New static variables.
17613 (globals_of_w32): Initialize them.
17614 (create_toolhelp32_snapshot, process32_first, process32_next)
17615 (open_thread_token, impersonate_self, revert_to_self)
17616 (get_process_memory_info, get_process_working_set_size)
17617 (global_memory_status, global_memory_status_ex): New wrapper
17618 functions.
17619 (w32_list_system_processes, w32_system_process_attributes)
17620 (enable_privilege, restore_privilege, ltime, process_times):
17621 New functions.
17622 (convert_time_raw): New function.
17623 (convert_time): Remove conversion of FILETIME into time in 100
17624 nsec units, call convert_time_raw instead.
17625
17626 * process.h (w32_list_system_processes, w32_system_process_attributes):
17627 Add prototypes.
17628 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
17629 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
17630 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
17631 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
17632
17633 * process.c (Fsystem_process_attributes): Doc fix.
17634
17635 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
17636
17637 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
17638 a continued multi-char glyph; if so, advance to the actual glyph.
17639
17640 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
17641
17642 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
17643
17644 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
17645 (.m.o): Use it.
17646 * config.in: Regenerate.
17647
17648 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
17649
17650 * xdisp.c (redisplay_window): Revert last change.
17651 (try_window): Check bottom scroll margin too.
17652
17653 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
17654
17655 * config.in: Regenerate.
17656
17657 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
17658 -list-load-path-shadows'.
17659 (nsgui.h): Reduce number of things depending on it.
17660
17661 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
17662
17663 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
17664 instead of window-end which does the wrong thing at eob.
17665 (try_cursor_movement): Minor optimization.
17666 (redisplay_window): If scroll margin is defined, don't assume
17667 window doesn't need scrolling.
17668
17669 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
17670
17671 * config.in: Regenerate.
17672
17673 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
17674 (mostlyclean): Don't delete *.d under NS.
17675
17676 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
17677
17678 2008-08-06 Kenichi Handa <handa@m17n.org>
17679
17680 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
17681
17682 2008-08-06 Andreas Schwab <schwab@suse.de>
17683
17684 * config.in: Regenerate.
17685
17686 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
17687
17688 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
17689 forcing a window start.
17690
17691 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
17692 (auto_save_1): Update modtime when auto-save-list-file-name is on.
17693
17694 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17695
17696 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
17697 argument.
17698
17699 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
17700
17701 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
17702 <scroll-down-aggressively, before-change-functions>:
17703 <after-change-functions>: Reflow docstrings.
17704
17705 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17706 Ken Raeburn <raeburn@gnu.org>
17707
17708 Dock menu customization, based on a patch by Ken Raeburn, plus some
17709 other fixes.
17710 * nsmenu.m (dockMenu): New variable.
17711 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
17712
17713 * nsterm.h (dockMenu): Declare.
17714
17715 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
17716 (ns_term_init): Initialize dockMenu.
17717 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
17718 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
17719 left.
17720
17721 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
17722
17723 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
17724
17725 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
17726
17727 * config.in: Regenerate.
17728
17729 2008-08-04 Seiji Zenitani <zenitani@mac.com>
17730
17731 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
17732
17733 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
17734
17735 * nsterm.h (find_and_call_menu_selection): Fix prototype.
17736
17737 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17738
17739 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
17740
17741 * keyboard.h: Comment an #endif.
17742
17743 * lisp.h (have_menus_p): Adjust comment.
17744
17745 * menu.c (find_and_return_menu_selection): Fix comparison with
17746 client_data.
17747
17748 * nsmenu.m (popup_activated_flag): New variable.
17749 (popup_activated): New function.
17750 (menu-or-popup-active-p): New exported lisp definition.
17751 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
17752 when popup done.
17753 (ns_popup_dialog): Set popup_activated_flag.
17754
17755 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
17756 version for GNUstep (handled by conditional typedef in nsterm.m).
17757 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
17758 in rgb.txt).
17759
17760 * process.c (init_process): Use DARWIN_OS, not DARWIN.
17761
17762 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
17763
17764 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
17765
17766 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
17767 shortcircuit if popup_activated like GTK and X toolkit.
17768
17769 * m/inter386.h: Change DARWIN to DARWIN_OS.
17770
17771 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
17772 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
17773 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood.
17774 Expand comment on NO_SOCK_SIGIO.
17775
17776 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
17777
17778 * nsterm.m (windowDidResize): Remove stopModal call.
17779
17780 2008-08-03 Andreas Schwab <schwab@suse.de>
17781
17782 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
17783 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
17784
17785 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
17786
17787 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
17788 Don't use uninitialized pointer variable when using getrlimit.
17789
17790 2008-08-02 Jason Rumney <jasonr@gnu.org>
17791
17792 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
17793
17794 2008-08-02 Eli Zaretskii <eliz@gnu.org>
17795
17796 * alloc.c (NSTATICS): Bump to 0x640.
17797
17798 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
17799
17800 * lisp.h: Add prototype for directory_files_internal.
17801
17802 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
17803 New functions.
17804 (syms_of_process): Defsubr them. Add initializations for various
17805 Q* symbols used in procfs_system_process_attributes.
17806 (procfs_list_system_processes, procfs_system_process_attributes)
17807 [HAVE_PROCFS]: New functions.
17808 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
17809 (procfs_get_total_memory): New functions.
17810
17811 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
17812
17813 * xfaces.c (Fx_load_color_file): Fix previous change;
17814 it is #ifdef WINDOWSNT, not WINDOWS_NT.
17815
17816 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
17817
17818 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
17819
17820 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17821
17822 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
17823
17824 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
17825
17826 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
17827
17828 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
17829 define NSApplicationDelegateReplySuccess.
17830 (EmacsView -converstationIdentifier): Use long instead of
17831 NSInteger for GNUstep, since it doesn't have NSInteger.
17832
17833 * xmenu.c: Revert last change.
17834
17835 * keyboard.h: Fix last change.
17836
17837 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
17838
17839 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
17840 on Windows.
17841
17842 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17843
17844 Warning clearing and clean-up in NS port.
17845 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
17846 Add prototypes.
17847 * nsgui.h (FACE_DEFAULT): Remove, unused.
17848 (XGCValues): Change colors to unsigned long.
17849 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
17850 nsterm.m.
17851 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
17852 (ns_list_fonts): Remove, unused.
17853 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
17854 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
17855 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
17856 (nsfont_draw): Compare face colors to 0, not nil.
17857 * nsmenu.m (struct widget_value): Drop unneeded declaration.
17858 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
17859 (-addSubmenuWithTitle:): Use NSMenuItem class.
17860 (ns_popup_menu): Use NO, not NULL, for enabled setting.
17861 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
17862 (ns_clip_to_row): Make gc arg a BOOL.
17863 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
17864 ns_clip_to_row() call.
17865 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
17866 used). Cast FRAME_FONT assignments.
17867 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
17868 (ns_string_to_lispmod): Change arg to const char.
17869 (ns_term_init): Use NSMenuItem class.
17870 (EmacsApp -openFile:): Move to different section of file.
17871 (EmacsApp -application:openFiles:): Don't return a value, call
17872 -replyToOpenOrPrint:.
17873 (EmacsView -keyDown:): Fix up cast.
17874 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
17875 (EmacsView -menuDown:): Cast tag in call to
17876 find_and_call_menu_selection().
17877 (ns_list_fonts): Remove, unused.
17878 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
17879 (ns_fontname_to_xlfd): Make static.
17880 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
17881 Remove prototypes (now in keyboard.h).
17882 (next_menubar_widget_id): Remove, unused.
17883 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
17884 Remove prototypes (now in keyboard.h).
17885 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
17886
17887 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
17888
17889 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
17890 (floatfns.o): Depend on syssignal.h.
17891 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
17892
17893 * systty.h: Fix previous change that removed BSD_TERMIOS.
17894 Add comments to #ifdefs.
17895
17896 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17897
17898 * w32fns.c (w32-load-color-file): Remove.
17899 (x-open-connection): Use renamed Fx_load_color_file.
17900 * xfaces.c (x-load-color-file): Add.
17901 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
17902 Emacs.clr.
17903 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
17904
17905 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
17906
17907 * dbusbind.c (Fdbus_call_method_asynchronously)
17908 (Fdbus_method_error_internal): New defuns.
17909 (xd_read_message): Handle also reply messages.
17910 (Vdbus_registered_functions_table): Extend docstring.
17911
17912 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
17913
17914 * keyboard.c (gobble_input): Fix previous change.
17915
17916 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
17917
17918 * bitmaps/README:
17919 * xfns.c:
17920 * termcap.c:
17921 * term.c:
17922 * syswait.h:
17923 * systty.h:
17924 * systime.h:
17925 * syssignal.h:
17926 * sysdep.c:
17927 * process.h:
17928 * process.c:
17929 * print.c:
17930 * ndir.h:
17931 * lread.c:
17932 * keyboard.c:
17933 * getpagesize.h:
17934 * floatfns.c:
17935 * fileio.c:
17936 * emacs.c:
17937 * doc.c:
17938 * dispnew.c:
17939 * dired.c:
17940 * data.c:
17941 * callproc.c:
17942 * buffer.c:
17943 * README:
17944 * Makefile.in:
17945 * s/template.h:
17946 * s/msdos.h:
17947 * m/vax.h: Remove VMS support.
17948 * s/vms.h:
17949 * vlimit.h:
17950 * uaf.h:
17951 * temacs.opt:
17952 * param.h:
17953 * ioctl.h: Remove file.
17954
17955 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
17956
17957 * s/ms-w32.h (MULTI_KBOARD): Remove.
17958 * xterm.c:
17959 * xselect.c:
17960 * xfns.c:
17961 * window.c:
17962 * w32term.c:
17963 * w32fns.c:
17964 * terminal.c:
17965 * termhooks.h:
17966 * term.c:
17967 * sysdep.c:
17968 * keyboard.h:
17969 * keyboard.c:
17970 * frame.h:
17971 * frame.c:
17972 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
17973 * config.in: Regenerate.
17974
17975 2008-07-30 Jason Rumney <jasonr@gnu.org>
17976
17977 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
17978
17979 * w32font.c (w32font_encode_char): Leave as unicode if in range.
17980 (w32font_open_internal): Get unicode version of textmetrics.
17981 Don't enable or disable glyph indices here.
17982 (w32font_open): Disable use of glyph indices.
17983
17984 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
17985
17986 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
17987
17988 * minibuf.c (Vread_buffer_function): Doc fix.
17989
17990 2008-07-30 John Paul Wallington <jpw@pobox.com>
17991
17992 * minibuf.c (read_buffer_completion_ignore_case): New var.
17993 (Fread_buffer): Use it.
17994
17995 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
17996
17997 * systty.h (sensemode): Remove empty #if. Remove reference to
17998 BSD_TERMIOS, unused.
17999
18000 * sysdep.c: Remove reference to DGUX.
18001 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
18002
18003 * config.in: Regenerate.
18004
18005 2008-07-30 Jason Rumney <jasonr@gnu.org>
18006
18007 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
18008
18009 2008-07-29 Jason Rumney <jasonr@gnu.org>
18010
18011 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
18012 is populated.
18013 (uniscribe_encode_char): Always use uniscribe.
18014 Avoid using context if cache is populated.
18015
18016 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
18017
18018 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
18019 open menu.
18020
18021 * gtkutil.c (menu_nav_ended): Remove.
18022 (create_menus): Remove signal connect for menu_nav_ended.
18023
18024 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
18025
18026 * xdisp.c (redisplay_window): Check return value of
18027 compute_window_start_on_continuation_line before forcing a window
18028 start.
18029
18030 2008-07-28 Jason Rumney <jasonr@gnu.org>
18031
18032 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
18033
18034 * w32term.c (w32_enable_unicode_output, cleartype_active):
18035 Remove obsolete display options.
18036 (x_draw_glyph_string_background): Don't use old cleartype_active
18037 workaround.
18038 (w32_initialize): Remove cleartype_active initialization.
18039 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
18040
18041 2008-07-28 Andreas Schwab <schwab@suse.de>
18042
18043 * lisp.h (init_weak_hash_tables, syms_of_font)
18044 (xd_read_queued_messages, syms_of_dbusbind): Declare.
18045 (remove_hash_entry): Don't declare.
18046 * eval.c (maybe_call_debugger): Make static and move before use.
18047 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
18048 * xdisp.c: Include "gtkutil.h" if USE_GTK.
18049 * xterm.h (x_set_frame_alpha): Declare.
18050
18051 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
18052
18053 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
18054 (create_menus): Connect selection-done to menu_nav_ended.
18055
18056 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
18057
18058 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
18059 Set Vx_resource_name to a fallback. Replace read of 'buffered'
18060 parameter with read of 'alpha' one.
18061 (Qns_frame_parameter): Remove.
18062 * nsselect.m (selection-coding-system)
18063 (next-selection-coding-system, Vselection_coding_system)
18064 (Vnext_selection_coding_system): Drop.
18065
18066 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
18067
18068 * nsfns.m (do-applescript, do_applescript): Rename to
18069 ns-do-applescript, ns_do_applescript, and move within file.
18070
18071 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
18072
18073 Remove support for Mac Carbon.
18074 * mactoolbox.c:
18075 * macterm.h:
18076 * macterm.c:
18077 * macselect.c:
18078 * macmenu.c:
18079 * macgui.h:
18080 * macfns.c:
18081 * mac.c: Remove file.
18082 * s/darwin.h:
18083 * m/intel386.h:
18084 * xfaces.c:
18085 * xdisp.c:
18086 * window.c:
18087 * tparam.c:
18088 * termhooks.h:
18089 * termcap.c:
18090 * term.c:
18091 * syssignal.h:
18092 * sysselect.h:
18093 * sysdep.c:
18094 * process.c:
18095 * lread.c:
18096 * lisp.h:
18097 * keyboard.c:
18098 * image.c:
18099 * fringe.c:
18100 * frame.h:
18101 * frame.c:
18102 * fontset.c:
18103 * font.h:
18104 * font.c:
18105 * fns.c:
18106 * fileio.c:
18107 * emacs.c:
18108 * dispnew.c:
18109 * dispextern.h:
18110 * config.in:
18111 * atimer.c:
18112 * Makefile.in: Remove code for Carbon.
18113
18114 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18115
18116 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
18117
18118 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18119
18120 * macterm.h (kCGBitmapByteOrder32Host): New define for
18121 non-universal SDKs.
18122
18123 * image.c (mac_create_cg_image_from_image, image_load_image_io)
18124 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
18125
18126 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
18127 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
18128
18129 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
18130
18131 * w32inevt.c: Include dispextern.h.
18132
18133 2008-07-26 Andreas Schwab <schwab@suse.de>
18134
18135 * print.c (print_object): Fix off-by-one in last change.
18136
18137 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
18138
18139 * term.c (syms_of_term): Don't initialize default_orig_pair,
18140 default_set_foreground and default_set_background on Windows.
18141
18142 2008-07-25 Jason Rumney <jasonr@gnu.org>
18143
18144 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
18145 ScriptItemize. Clean up return value checking. Remove unused
18146 variables.
18147 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
18148 shaping engine.
18149
18150 * w32font.c (w32font_has_char): Handle the case where we can't
18151 determine the script for a character.
18152
18153 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
18154
18155 * term.c (syms_of_term): Initialize default_orig_pair,
18156 default_set_foreground, and default_set_background.
18157
18158 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
18159 clash (bug#86).
18160 (getloadavg): Callers changed.
18161
18162 * image.c (svg_load_image): Fix last change.
18163 (svg_load_image): Use rsvg_handle_get_dimensions to check that
18164 image size is valid. Use g_object_unref instead of deprecated
18165 rsvg_handle_free to free rsvg handle.
18166 (x_from_xcolors): Don't initialize pixmap (silence compiler).
18167
18168 2008-07-25 Jason Rumney <jasonr@gnu.org>
18169
18170 * w32font.c (w32font_encode_char): Encode characters outside BMP as
18171 surrogates before looking up glyph index.
18172 (w32font_text_extents): Encode as surrogates if falling back to
18173 functions that need UTF-16 wide chars.
18174
18175 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
18176 BMP as surrogates before looking up glyph index.
18177
18178 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
18179
18180 * image.c (svg_load_image): Check for failure in return value of
18181 rsvg_handle_get_pixbuf. Free rsvg handle when done.
18182
18183 2008-07-25 Jason Rumney <jasonr@gnu.org>
18184
18185 * w32font.c (Fx_select_font): Reverse sense of second arg.
18186
18187 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
18188
18189 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
18190 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
18191
18192 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
18193 (PURESIZE): Use it.
18194
18195 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
18196
18197 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
18198 * m/alpha.h (TEXT_END):
18199 * m/ibmrs6000.h (TEXT_END):
18200 * m/macppc.h (TEXT_END):
18201 * s/darwin.h (TEXT_END):
18202 * s/msdos.h (TEXT_END): Remove, unused.
18203 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
18204 * s/cygwin.h: Remove comment.
18205
18206 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
18207 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
18208 * m/intel386.h (DOT_GLOBAL_START):
18209 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
18210 (USG): Remove, file not used on USG platforms.
18211
18212 * Makefile.in (HAVE_X11): Remove empty #else.
18213
18214 2008-07-24 Andreas Schwab <schwab@suse.de>
18215
18216 * fileio.c (Finsert_file_contents): Properly adjust undo list
18217 after format conversion.
18218
18219 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
18220
18221 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
18222 (menu_nav_ended): Remove.
18223 (create_menus): Remove signal connect for menu_nav_ended.
18224 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
18225 create_menus.
18226 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
18227
18228 2008-07-23 Jason Rumney <jasonr@gnu.org>
18229
18230 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
18231 with opened font.
18232 (w32font_open): Set font type to gdi.
18233
18234 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
18235
18236 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
18237
18238 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
18239 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
18240 defines it.
18241 * unexec.c (ADDR_CORRECT): Define unconditionally.
18242
18243 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
18244
18245 * unexec.c: Remove code depending on !COFF and USG, the file is
18246 not used for such systems.
18247
18248 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
18249 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
18250 (LD_SWITCH_SYSTEM_1): Remove, update users.
18251
18252 * s/darwin.h (DATA_END):
18253 * m/intel386.h (DATA_END):
18254 * m/ibmrs6000.h (DATA_END):
18255 * m/alpha.h (DATA_END): Remove, unused.
18256
18257 * config.in: Regenerate.
18258 * s/ms-w32.h (subprocesses): Define unconditionally.
18259 * s/template.h (subprocesses): Update comment.
18260 * s/vms.h (subprocesses):
18261 * s/usg5-4.h (subprocesses):
18262 * s/hpux10-20.h (subprocesses):
18263 * s/gnu-linux.h (subprocesses):
18264 * s/cygwin.h (subprocesses):
18265 * s/bsd-common.h (subprocesses):
18266 * s/aix4-2.h (subprocesses):
18267 * s/darwin.h (subprocesses): Do not define, defined by default now.
18268
18269 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
18270 Remove all references.
18271 (temacs): Add GNUstep specific ld flags.
18272
18273 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
18274 similarly to what X does.
18275
18276 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
18277
18278 * nsfns.m (x-list-fonts): Remove.
18279 (syms_of_nsfns): Drop the x-list-fonts declaration.
18280 * nsterm.m: Get rid of remaining "//" comments.
18281
18282 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
18283
18284 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
18285
18286 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
18287 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
18288 (Fns_own_selection_internal, Fx_disown_selection_internal)
18289 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
18290
18291 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
18292 ... */' style of docstrings. Doc fixes.
18293
18294 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
18295
18296 * terminfo.c (UP, BC, PC): Undo previous change.
18297
18298 * nsfns.m: Rename ns prefixed functions/variables to the
18299 corresponding x versions. Update references.
18300
18301 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
18302
18303 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
18304
18305 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
18306
18307 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
18308 Remove forwarding functions.
18309 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
18310 non-static.
18311 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
18312 non-static.
18313 (ns_frame_parm_handlers): Use the new names.
18314 (syms_of_nsfns): Move to the end of file.
18315
18316 * nsterm.m (syms_of_nsterm): Move to the end of file.
18317
18318 * dispnew.c (init_display): Remove code for X10.
18319
18320 2008-07-22 Jason Rumney <jasonr@gnu.org>
18321
18322 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
18323 bare drive.
18324
18325 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
18326
18327 * nsterm.m (syms_of_nsterm): Remove debugging println.
18328
18329 2008-07-22 David Reitter <david.reitter@gmail.com>
18330
18331 * nsfns.m (do_applescript, F_do_applescript): NS version of the
18332 Carbon implementation of the same functionality: execute arbitrary
18333 AppleScript code.
18334
18335 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
18336
18337 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
18338 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
18339 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
18340 (Fx_display_mm_height, Fx_display_mm_width)
18341 (Fx_display_backing_store, Fx_display_visual_class)
18342 (Fx_display_save_under, Fx_open_connection)
18343 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
18344 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
18345 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
18346 (Fx_display_pixel_width, Fx_display_pixel_height)
18347 (Fx_display_usable_bounds, Fx_display_planes)
18348 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
18349 ... */' style of docstrings.
18350
18351 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
18352
18353 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
18354 on this platform.
18355 (mips):
18356 * m/iris4d.h (mips): Do not define.
18357 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
18358
18359 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
18360
18361 * image.c:
18362 * nsfns.m:
18363 * nsselect.m:
18364 * nsterm.h:
18365 * nsterm.m: Rename ns prefixed functions/variables to the
18366 corresponding x versions. Update references.
18367
18368 * m/ibms390x.h (NO_REMAP): Do not undefine.
18369
18370 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
18371
18372 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
18373
18374 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
18375 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
18376 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
18377 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
18378 (Fns_display_mm_height, Fns_display_mm_width)
18379 (Fns_display_backing_store, Fns_display_visual_class)
18380 (Fns_display_save_under, Fns_open_connection)
18381 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
18382 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
18383 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
18384 (Fns_display_pixel_width, Fns_display_pixel_height)
18385 (Fns_display_usable_bounds, Fx_display_planes)
18386 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
18387
18388 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
18389
18390 * print.c (print_object): Check print_depth before searching for
18391 circularities.
18392
18393 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
18394
18395 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
18396 only sprintf.
18397
18398 2008-07-21 Kenichi Handa <handa@m17n.org>
18399
18400 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
18401
18402 2008-07-20 Andreas Schwab <schwab@suse.de>
18403
18404 * syntax.c (find_start_pos, find_start_value)
18405 (find_start_value_byte, find_start_begv, find_defun_start)
18406 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
18407
18408 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
18409
18410 * s/sol2-3.h: Insert contents of s/sol2.h.
18411 (LD_SWITCH_SYSTEM): Remove redundant definition.
18412 * s/sol2.h: Remove, unused.
18413
18414 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
18415
18416 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
18417
18418 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
18419
18420 * Makefile.in (ns_appdir): Fix typo in find command.
18421
18422 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
18423
18424 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
18425
18426 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
18427 added not supported anymore.
18428
18429 * s/usg5-4-2.h (LIBS_SYSTEM):
18430 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
18431
18432 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
18433 * s/lynxos.h (GETPGRP_NO_ARG):
18434 * s/hpux10-20.h (NO_SIOCTL_H):
18435 * s/gnu.h (GETPGRP_NO_ARG):
18436 * s/gnu-linux.h (NO_SIOCTL_H):
18437 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
18438 * s/cygwin.h (GETPGRP_NO_ARG):
18439 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
18440 (C_DEBUG_SWITCH): Remove duplicate definition.
18441
18442 * m/ibms390.h: Remove boilerplate comments.
18443
18444 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
18445
18446 * process.c (HAVE_SERIAL): Consolidate ifdefs.
18447 (wait_reading_process_output): Remove code for SunOS, platform not
18448 supported anymore. Use SOLARIS2 instead of sun.
18449
18450 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18451
18452 * font.c (font_open_by_name): Under NS, default lface height to zero.
18453 (font_open_for_lface): Under NS, set size based on frame fontsize.
18454 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
18455 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
18456
18457 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18458
18459 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
18460 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
18461 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
18462 YES/NO.
18463 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
18464 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
18465 * Makefile.in (clean): Clear out build destination dir.
18466
18467 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18468
18469 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
18470 xterm, xselect.
18471 * lisp.h: Remove declaration of hash_remove.
18472 * nsgui.h: Remove redefinitions of hash_remove.
18473 * fns.c (hash_remove): Rename to hash_remove_from_table.
18474
18475 2008-07-19 Seiji Zenitani <zenitani@mac.com>
18476
18477 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
18478 strdup() the family UTF8String before modifying it.
18479
18480 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18481
18482 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
18483 NS_FACE_BACKGROUND with 0 instead of nil.
18484 * nsfont.m (nsfont_draw): Same.
18485
18486 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
18487
18488 * nsfns.m (ns_set_background_color): Fix crash.
18489
18490 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
18491
18492 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
18493
18494 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
18495
18496 * puresize.h (BASE_PURESIZE): Increase to 1240000.
18497
18498 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18499
18500 * gtkutil.c: Include <config.h> instead of "config.h".
18501
18502 * lisp.h (Foverlay_buffer): Add EXFUN.
18503
18504 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
18505 child process to complete child_setup. Undo 2005-09-21 change.
18506
18507 * s/darwin.h: Mention setsid after vfork.
18508
18509 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18510
18511 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
18512 Depend on macgui.h.
18513
18514 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
18515 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
18516
18517 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
18518 and f19.
18519 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
18520
18521 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
18522 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
18523 Remove enumerators.
18524
18525 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
18526 Check if FACE_FROM_ID returns NULL.
18527
18528 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
18529
18530 * w32inevt.c (change_frame_size): Remove extern declaration.
18531 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
18532 change_frame_size.
18533
18534 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
18535
18536 * getloadavg.c: Revert last change (2008-07-15).
18537
18538 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
18539
18540 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
18541 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
18542 from configure.
18543
18544 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
18545
18546 * s/sol2.h:
18547 * s/sol2-4.h: Reorganize conditionals.
18548
18549 * ecrt0.c: Remove code depending on m68000, not used anymore.
18550
18551 * fns.c (hash_remove): Make static.
18552 * lisp.h (hash_remove): Don't prototype.
18553
18554 * m/ibmrs6000.h:
18555 * m/ibms390x.h:
18556 * m/macppc.h: Remove boilerplate comments.
18557
18558 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
18559 Solaris, which does not need them.
18560
18561 * m/vax.h: Remove comments about unsupported systems.
18562
18563 * s/darwin.h: Reorganize ifdefs.
18564
18565 2008-07-17 Andreas Schwab <schwab@suse.de>
18566
18567 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
18568
18569 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
18570
18571 Use SDATA. Follow coding convention of placing operators at
18572 beginning of next line rather than end of previous line, and placing
18573 spaces around infix operators.
18574
18575 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
18576 in case it was defined already.
18577 USE @GNUSTEP_MAKEFILES@ rather than envvars.
18578 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
18579 ns_default.
18580 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
18581 Lisp_Objects.
18582 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
18583 (ns_defined_color, ns_color_to_lisp): Declare.
18584 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
18585 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
18586 it's accepted even with USE_LISP_UNION_TYPE.
18587 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
18588 (update_frame_tool_bar): Remove apparently obsolete tests for
18589 non-integerness of f->tool_bar_lines.
18590 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
18591 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
18592 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
18593 (nsfont_open): Don't confuse NULL for Qnil.
18594 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
18595 * menu.h (find_and_call_menu_selection):
18596 * menu.c (find_and_call_menu_selection): Use just int for vector size.
18597 (find_and_return_menu_selection): Always return something.
18598 * frame.h: Include dispextern.h for Display_Info.
18599 (display_x_get_resource): Declare.
18600
18601 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
18602
18603 * syntax.c: Remove stdio.h include accidentally introduced in
18604 Emacs.app commit.
18605 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
18606 NS_IMPL_COCOA.
18607 * keyboard.c (handle_async_input, input_available_signal): Remove
18608 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
18609
18610 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
18611
18612 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
18613 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
18614 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
18615 Use SDATA.
18616
18617 * keymap.c: Remove all NS-specific code.
18618 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
18619 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
18620 where_is_preferred_modifier, return a different value depending on how
18621 preferred is the binding.
18622 (where_is_internal): Adjust accordingly.
18623 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
18624 Adjust to new preferred_sequence_p.
18625 (syms_of_keymap): Declare `where-is-preferred-modifier'.
18626 * keyboard.c (parse_solitary_modifier): Not static any more.
18627 * keyboard.h (parse_solitary_modifier): Declare.
18628
18629 2008-07-16 Andreas Schwab <schwab@suse.de>
18630
18631 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
18632 of easymenu.
18633
18634 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
18635
18636 * xdisp.c (move_it_in_display_line): Account for word wrap, so
18637 that we don't move off the line.
18638
18639 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
18640
18641 * keyboard.c (Qsuper): Remove.
18642 (parse_menu_item): Don't call where_is_internal specially for NS.
18643
18644 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
18645
18646 * s/gnu-linux.h: Remove boilerplate comments.
18647
18648 * m/alpha.h (__ELF__): Consolidate conditions.
18649
18650 * m/m68k.h (linux): Use GNU_LINUX instead.
18651 Remove boilerplate comments.
18652
18653 * m/intel386.h: Undo refactoring from previous change.
18654 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
18655 too, remove dead code.
18656 (linux): Use GNU_LINUX instead.
18657
18658 2008-07-16 Jason Rumney <jasonr@gnu.org>
18659
18660 * w32gui.h: Repeat 26 June changes lost by last change.
18661
18662 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
18663
18664 * systty.h: Remove code for Aix on 386, unsupported platform.
18665
18666 * s/ms-w32.h: Remove boilerplate comments.
18667 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
18668
18669 * s/gnu-linux.h (TERM): Remove support.
18670 (HAVE_SYSVIPC): Remove, unused.
18671 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
18672 for this system.
18673
18674 * process.c: Remove support for IRIS, unused.
18675 Remove support for TERM, not relevant anymore.
18676
18677 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
18678 used with the definition.
18679
18680 * s/aix4-2.h (static): Do not undef.
18681
18682 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
18683 only used on Aix.
18684 (HAVE_SYSVIPC): Remove, unused.
18685
18686 * m/hp800.h (CANNOT_DUMP): Do not undef.
18687
18688 * m/alpha.h: Fix comment.
18689
18690 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
18691 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
18692 used by this configuration.
18693 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
18694 * unexec.c: Remove code depending on HPUX and
18695 USG_SHARED_LIBRARIES, not used with this file. Remove code
18696 depending on IRIS, unused. Remove if 0-ed code.
18697
18698 * s/template.h: Remove comments about static.
18699
18700 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
18701 Remove if 0-ed code.
18702 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
18703 were the same as the default.
18704 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
18705 Remove boilerplate comments.
18706 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
18707 (HAVE_SYSVIPC): Remove, unused.
18708 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
18709
18710 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18711 Remove boilerplate comments.
18712 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18713 Remove boilerplate comments.
18714 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18715 Remove boilerplate comments.
18716 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
18717
18718 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
18719 USG systems which do not use DATA_SEG_BITS.
18720 Refactor code. Remove boilerplate comments.
18721
18722 * m/ibms390.h:
18723 * m/m68k.h:
18724 * s/bsd-common.h:
18725 * s/cygwin.h:
18726 * s/darwin.h:
18727 * s/freebsd.h:
18728 * s/gnu.h:
18729 * s/msdos.h: Remove boilerplate comments.
18730
18731 * m/iris4d.h: Remove boilerplate comments and code for systems that
18732 do not use this file.
18733 (IRIS_4D): Remove, unused.
18734
18735 * m/mips.h: Remove boilerplate comments and code for systems that
18736 do not use this file.
18737 (SIGN_EXTEND_CHAR):
18738 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
18739 * unexmips.c: Remove file, unused.
18740
18741 * editfns.c (Fuser_full_name): Replace the only use of
18742 USER_FULL_NAME with its value.
18743 * config.in: Regenerate.
18744
18745 2008-07-16 David Reitter <david.reitter@gmail.com>
18746
18747 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
18748 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
18749
18750 2008-07-16 Glenn Morris <rgm@gnu.org>
18751
18752 * emacs.c (system-type): Doc fix.
18753
18754 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
18755
18756 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
18757 If the cache doesn't work, let's fix it, rather than work around it.
18758
18759 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18760
18761 * Makefile.in: Correct additions for nsfont.o in last commit.
18762 * nsfont.m: New file (forgot last commit).
18763
18764 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
18765
18766 * callproc.c (set_initial_environment):
18767 Initialize Vprocess_environment under CANNOT_DUMP (fixes crash when
18768 batch-compiling for bootstrap).
18769
18770 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
18771 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18772
18773 * frame.c (make_initial_frame): Call init_frame_faces(f) in
18774 CANNOT_DUMP case -- fix crash due to different init order.
18775
18776 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18777
18778 Changes and additions for NeXTstep windowing system (Cocoa and
18779 GNUstep) support.
18780
18781 * Makefile.in:
18782 * config.in: Support defines and build commands for NS port.
18783 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
18784 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
18785 * dispextern.h: Include nsgui.h and add needed typedefs under NS
18786 windowing.
18787 (struct face): Add synth_ital field.
18788 * dispnew.c: Include nsterm.h when compiling under NS windowing.
18789 (init_display): Initialize Vinitial_window_system to "ns" when so
18790 compiled.
18791 * emacs.c: Include GSConfig.h when compiling under GNUstep.
18792 (display_arg): Use under NS.
18793 (main): Under NS, allocate autorelease pool and handle command line
18794 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
18795 (standard_args): Add NS-specific args.
18796 (shut_down_emacs): Shut down NS terminal if compiled under NS.
18797 * font.c (DEFAULT_ENCODING): New variable.
18798 (font_find_for_lface): Use it.
18799 (syms_of_font): Load syms_of_nsfont under NS.
18800 * font.h: Declare nsfont_driver when compiled under NS.
18801 * fontset.c: When compiling under NS, include nsterm.h.
18802 (fontset_from_font): Autoconstruct fontset under NS.
18803 * frame.c (various): Under NS, include nsterm.h, add Qns window system
18804 symbol, document and use it.
18805 (do_switch_frame): When for_deletion under Cocoa, add
18806 Fraise_frame(Qnil).
18807 (x_set_frame_parameters): Ensure font attribute changes are picked up.
18808 (x_get_arg): Allow "yes" and "no" as boolean values.
18809 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
18810 Qright under Cocoa.
18811 (focus-follows-mouse): Default to 0 under NS.
18812 * frame.h (enum output_method): Add output_ns.
18813 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
18814 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
18815 (FRAME_WINDOW_P): NS-specific definition.
18816 * fringe.c (max_used_fringe_bitmap): Make public.
18817 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
18818 (getloadavg): Use NeXT code under descendant OS's.
18819 * image.c (includes and header section, x_create_bitmap_from_data)
18820 (x_create_bitmap_from_file, free_bitmap_record, image_background)
18821 (image_background_transparent, x_clear_image_1)
18822 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
18823 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
18824 (x_to_xcolors, x_from_xcolors, x_disable_image)
18825 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
18826 other GUIs, including XPM support using code originally written for
18827 Carbon GUI.
18828 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
18829 using NS API.
18830 (image_ascent): Use font metrics macros instead of direct struct field
18831 access.
18832 * keyboard.c (includes): Add nsterm.h when compiling under NS.
18833 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
18834 Also, handle NS as GTK for menu bar purposes.
18835 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
18836 toolkit where they differ.
18837 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
18838 use cachelist, still needed under NS.
18839 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
18840 (struct widget_value): Define it here for menu.c.
18841 * keymap.c (includes): Include modifier internals.
18842 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
18843 NS.
18844 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
18845 support for preferring sequences using certain modifiers, specified by
18846 the FIRSTONLY argument.
18847 * lisp.h (hash_remove): Rename to avoid name clash when compiling
18848 under NS GNUstep implementation.
18849 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
18850 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
18851 * menu.c: Include nsterm.h under NS.
18852 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
18853 (free_menubar_widget_tree_value, update_submenu_strings)
18854 (find_and_call_menu_selection): Treat NS as X and NT.
18855 (find_and_return_menu_selection): New function, used for popup menus.
18856 * nsgui.h:
18857 * nsterm.h:
18858 * nsfns.m:
18859 * nsimage.m:
18860 * nsmenu.m:
18861 * nsselect.m:
18862 * nsterm.m: New files.
18863 * process.c (wait_reading_process_output): Under NS, call ns_select()
18864 instead of plain select().
18865 * syntax.c (char_quoted): Under NS, avoid a crash when called near
18866 beginning of buffer.
18867 * sysselect.h (init_process): Rename when compiling under Cocoa to
18868 avoid name conflict.
18869 * termhooks.h (display_info): Add ns_display_info to union.
18870 * terminal.c (Fterminal_live_p): Add ns to terminal types.
18871 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
18872 COCOA environment.
18873 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
18874 unexec() signature. (Note, this will dump, but the resulting file
18875 crashes; unexosx is used instead; keeping around for reference and
18876 possible aid in getting dump working under GNUstep.)
18877 * w32gui.h (button_type, widget_value): Remove definitions (now in
18878 keyboard.h).
18879 * window.c: Include nsterm.h when compiling under NS.
18880 * xdisp.c (includes): Include nsterm.h when compiling under NS.
18881 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
18882 other GUI windowing systems.
18883 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
18884 GTK.
18885 (x_consider_frame_title): Under NS, set icon type and frame
18886 modified-state indicator; use ns_set_name_as_filename() when using
18887 formatted title.
18888 (update_window_cursor): Make public when compiling under NS.
18889 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
18890 (hourglass_atimer, Vhourglass_delay
18891 * xfaces.c (header section, init_frame_faces, clear_font_table)
18892 (defined_color, unload_color, x_face_list_fonts)
18893 (prepare_face_for_display): Add NS support parallel to other GUIs.
18894 Emulate GCs like other non-X GUIs.
18895 (split_font_name): Don't lowercase font name under NS.
18896 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
18897 under NS.
18898 * s/darwin.h: Add support for compilation under NS.
18899
18900 2008-07-15 Jason Rumney <jasonr@gnu.org>
18901
18902 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
18903 (w32_show_hourglass): Rename from show_hourglass.
18904 (w32_hide_hourglass): Rename from hide_hourglass.
18905 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
18906 (Vhourglass_delay): Declare extern.
18907 (hourglass_started): Remove.
18908
18909 * xdisp.c (Vhourglass_delay): Remove static.
18910 (hourglass_started, start_hourglass, cancel_hourglass):
18911 Don't include these versions on WINDOWSNT.
18912
18913 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18914
18915 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
18916 variables (formerly in xfns.c).
18917 (show_hourglass, hide_hourglass): New prototypes (same).
18918 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
18919 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
18920 in xfns.c).
18921 (syms_of_xdisp): Declare/initialize display-hourglass,
18922 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
18923 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
18924 formerly in xfns.c.
18925 * xfns.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_xfns): Remove display-hourglass, hourglass-delay,
18931 hourglass_atimer, hourglass_shown_p declaration/initialization.
18932 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
18933 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
18934 (start_hourglass, cancel_hourglass): Remove.
18935 (show_hourglass, hide_hourglass): Remove prototypes and static
18936 modifiers.
18937 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
18938 hourglass_atimer, hourglass_shown_p declaration/initialization.
18939 * w32fns.c (display_hourglass_p, Vhourglass_delay)
18940 (DEFAULT_HOURGLASS_DELAY): Remove.
18941 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
18942 hourglass_shown_p declaration/initialization.
18943
18944 2008-07-14 Jason Rumney <jasonr@gnu.org>
18945
18946 * w32fns.c (w32_get_arg): Remove wrapper function.
18947 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
18948 directly.
18949 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
18950
18951 2008-07-14 Kenichi Handa <handa@m17n.org>
18952
18953 * xfont.c (xfont_open): Add workaround for X's bug.
18954
18955 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
18956
18957 * fontset.c: Include <stdio.h> unconditionally.
18958
18959 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
18960
18961 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
18962 for filtering.
18963
18964 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
18965
18966 * s/vms.h: Use __GNUC__ instead of _GNUC_.
18967
18968 * m/macppc.h:
18969 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
18970
18971 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default.
18972 (SPECIAL_EMACS_INT):
18973 * m/ia64.h (SPECIAL_EMACS_INT):
18974 * m/amdx86-64.h (SPECIAL_EMACS_INT):
18975 * s/gnu.h (NLIST_STRUCT):
18976 * s/aix4-2.h (X11R5_INHIBIT_I18N):
18977 * s/gnu-linux.h (LINUX):
18978 * s/msdos.h (HAVE_FACES):
18979 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
18980
18981 * systty.h:
18982 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
18983 anymore.
18984
18985 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
18986
18987 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
18988 always defined as int.
18989
18990 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
18991 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
18992 * s/gnu-linux.h (HAVE_WAIT_HEADER):
18993 * s/freebsd.h (HAVE_WAIT_HEADER):
18994 * s/bsd-common.h (HAVE_UNION_WAIT):
18995 * s/aix4-2.h (HAVE_WAIT_HEADER):
18996 * m/mips.h (HAVE_UNION_WAIT):
18997 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
18998 (COFF, static): Do not define, they are undefined later in the file.
18999
19000 * process.c (update_status): Don't use a union.
19001 (status_convert):
19002 (sigchld_handler): Use int instead of WAITTYPE.
19003
19004 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
19005
19006 * indent.c (Fvertical_motion): Restore hscroll before moving to
19007 goal column.
19008
19009 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
19010
19011 * lisp.h: Remove left over code.
19012
19013 2008-07-11 Andreas Schwab <schwab@suse.de>
19014
19015 * lisp.h: Fix logic in last change.
19016
19017 * menu.h: New file.
19018 * menu.c: Include it.
19019 * xmenu.c: Likewise.
19020 * Makefile.in: Update dependencies.
19021
19022 2008-07-11 Kenichi Handa <handa@m17n.org>
19023
19024 * fontset.c (fontset_from_font): Cancel the previous change.
19025
19026 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
19027
19028 * lisp.h:
19029 * w32heap.c:
19030 * emacs.c:
19031 * alloc.c: Replace all references of NO_UNION_TYPE with
19032 USE_LISP_UNION_TYPE.
19033
19034 * m/xtensa.h (NO_UNION_TYPE):
19035 * m/vax.h (NO_UNION_TYPE):
19036 * m/template.h (NO_UNION_TYPE):
19037 * m/sparc.h (NO_UNION_TYPE):
19038 * m/mips.h (NO_UNION_TYPE):
19039 * m/macppc.h (NO_UNION_TYPE):
19040 * m/m68k.h (NO_UNION_TYPE):
19041 * m/iris4d.h (NO_UNION_TYPE):
19042 * m/intel386.h (NO_UNION_TYPE):
19043 * m/ibms390x.h (NO_UNION_TYPE):
19044 * m/ibms390.h (NO_UNION_TYPE):
19045 * m/ibmrs6000.h (NO_UNION_TYPE):
19046 * m/ia64.h (NO_UNION_TYPE):
19047 * m/hp800.h (NO_UNION_TYPE):
19048 * m/arm.h (NO_UNION_TYPE):
19049 * m/amdx86-64.h (NO_UNION_TYPE):
19050 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
19051 defining it the same.
19052
19053 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
19054
19055 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
19056
19057 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
19058
19059 * fileio.c:
19060 * sysdep.c:
19061 * systty.h:
19062 * m/ibmrs6000.h:
19063 * m/iris4d.h:
19064 * s/aix4-2.h:
19065 * s/freebsd.h:
19066 * s/gnu-linux.h:
19067 * s/hpux10-20.h:
19068 * s/hpux11.h:
19069 * s/netbsd.h:
19070 * s/sol2-3.h:
19071 * s/sol2-4.h:
19072 * s/sol2.h:
19073 * s/usg5-4.h:
19074 * s/vms.h: Remove references to unused variables.
19075
19076 2008-07-10 Andreas Schwab <schwab@suse.de>
19077
19078 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
19079 pattern before matching the generic family.
19080
19081 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
19082
19083 * unexec.c:
19084 * s/vms.h:
19085 * s/usg5-4-2.h:
19086 * s/sol2-5.h:
19087 * s/freebsd.h:
19088 * s/darwin.h: Remove dead code.
19089
19090 * m/template.h:
19091 * m/sparc.h:
19092 * m/mips.h:
19093 * m/m68k.h:
19094 * m/iris4d.h:
19095 * m/intel386.h:
19096 * m/ibms390x.h:
19097 * m/ibms390.h:
19098 * m/ia64.h:
19099 * m/hp800.h:
19100 * m/arm.h:
19101 * m/amdx86-64.h: Remove dead code and references to unused
19102 and compiler defined symbols.
19103
19104 * unexmips.c:
19105 * unexelf.c: Remove references to desupported systems.
19106
19107 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
19108
19109 * m/powermac.h: Remove boilerplate comments.
19110 (NO_REMAP): Remove unused definition.
19111
19112 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
19113 define them.
19114
19115 2008-07-10 Kenichi Handa <handa@m17n.org>
19116
19117 * xfont.c (xfont_open): Log the reason of failure.
19118
19119 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
19120
19121 * fontset.c (fontset_get_font_group):
19122 * font.c (font_check_otf): Specify argument types.
19123
19124 2008-07-09 Kenichi Handa <handa@m17n.org>
19125
19126 * coding.c (detect_coding_utf_8): Set detect_info->found only when
19127 non-ASCII char is found.
19128
19129 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
19130 (reorder_font_vector): Change the arg preferred_family to font.
19131 Prefer the spec matching with font.
19132 (fontset_get_font_group): New function.
19133 (fontset_find_font): Change the format of an element of a realized
19134 fontset. Use fontset_get_font_group.
19135 (fontset_font): Try the current fontset, the default fontset, the
19136 fallbacks of the current fontset, and the fallbacks of the default
19137 fontset in this order.
19138 (face_for_char): Delete the shortcut to use the current font.
19139 (fontset_from_font): Don't set fonts for Latin in the fontset.
19140
19141 * font.h (font_make_object, font_match_p): Adjust prototypes.
19142
19143 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
19144
19145 * font.c (font_make_object): New arg entity and pixelsize.
19146 (font_check_otf_features, font_check_otf): New functions.
19147 (font_match_p): Check :lang, :script, and :otf properties.
19148
19149 * xfont.c (xfont_open): Adjust it for the change of
19150 font_make_object.
19151 (xfont_text_extents): Fix initial setting of metrics.
19152
19153 * ftfont.c (struct ftfont_info): New member index, delete member
19154 fc_charset_idx. Make the member order compatible with struct
19155 xftfont_info.
19156 (fc_charset_table): Change charset names to registry names.
19157 (ftfont_pattern_entity): Delete the args registry and
19158 fc_charset_idx. Change the value of :font-entity property
19159 to (FONTNAME . INDEX). Always set :registry property to
19160 `iso10646-1'.
19161 (struct ftfont_cache_data): New struct.
19162 (ftfont_lookup_cache): New arg for_face.
19163 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
19164 (ftfont_driver): Set the member otf_capability.
19165 (ftfont_get_charset): Adjust it for the change of
19166 fc_charset_table.
19167 (OTF_TAG_SYM): New macro.
19168 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
19169 for the change of fc_charset_table.
19170 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
19171 ftfont_pattern_entity. Add FC_INDEX to objset.
19172 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
19173 and ftfont_pattern_entity.
19174 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
19175 font_make_object, struct ftfont_info.
19176 (ftfont_has_char): Use ftfont_get_fc_charset.
19177 (ftfont_otf_features, ftfont_otf_capability): New functions.
19178 (ftfont_shape): Use ftfont_get_otf.
19179 (ftfont_text_extents): Fix initial setting of metrics.
19180
19181 * xftfont.c (struct xftfont_info): New member ft_size. Make the
19182 member order compatible with struct ftfont_info.
19183 (xftfont_open): Add FC_CHARSET to the pattern.
19184 Set xftfont_info->ft_size. Don't unlock the face. Check BDF
19185 properties if appropriate.
19186 (xftfont_close): Unlock the face.
19187 (xftfont_anchor_point, xftfont_shape): Deleted.
19188 (syms_of_xftfont): Don't set members anchor_point and shape of
19189 xftfont_driver.
19190
19191 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
19192 font_make_object.
19193
19194 * w32font.c (w32font_open): Adjust it for the change of
19195 font_make_object.
19196 (w32font_open_internal): Don't set properties of font_object here.
19197
19198 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
19199
19200 * macfns.c (x_create_tip_frame):
19201 * w32fns.c (x_create_tip_frame):
19202 * xfns.c (x_create_tip_frame): Pass parameter argument to
19203 face-set-after-frame-default.
19204
19205 * xfaces.c (Finternal_merge_in_global_face): Save merged
19206 attributes for the default face back into the face vector.
19207
19208 2008-07-08 Andreas Schwab <schwab@suse.de>
19209
19210 * fontset.h: Declare fontset_from_font. Don't declare
19211 new_fontset_from_font and fontset_from_font_name.
19212 * xterm.c: Include "fontset.h".
19213 * Makefile.in (xterm.o): Update dependencies.
19214
19215 2008-07-08 Glenn Morris <rgm@gnu.org>
19216
19217 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
19218 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
19219
19220 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
19221
19222 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
19223 (x_set_frame_parameters): Don't bind it.
19224
19225 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
19226
19227 * w32fns.c (map_w32_filename): Declare extern.
19228
19229 2008-07-07 Jason Rumney <jasonr@gnu.org>
19230
19231 * w32term.c (WS_EX_LAYERED): Define if not already.
19232
19233 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
19234
19235 * xfaces.c (set_font_frame_param): Don't try to set the font
19236 parameter if it is still unspecified in the lface.
19237
19238 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
19239
19240 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
19241 face if it didn't already exist.
19242
19243 * xdisp.c (try_window_id): Give up if word-wrapping is on.
19244
19245 2008-07-05 Andreas Schwab <schwab@suse.de>
19246
19247 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
19248
19249 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
19250
19251 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
19252 word-wrapping.
19253 (IT_DISPLAYING_WHITESPACE): New macro.
19254 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
19255 when word-wrapping. Simplify word-wrapping logic. Use correct
19256 pixel positions when saving copies of the iterator.
19257 (display_line): Use proper wrap point if the last character on a
19258 line was preceded by whitespace.
19259
19260 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19261
19262 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
19263
19264 2008-07-04 Kenichi Handa <handa@m17n.org>
19265
19266 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
19267
19268 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
19269
19270 2008-07-02 Jason Rumney <jasonr@gnu.org>
19271
19272 * xfns.c (syms_of_xfns): Only define x-select-font when both
19273 HAVE_FREETYPE and USE_GTK.
19274
19275 * xdisp.c (next_element_from_display_vector): Move assignment out
19276 of if statement.
19277
19278 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
19279
19280 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
19281
19282 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
19283 (syms_of_fileio): Initialize and export them.
19284 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
19285
19286 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
19287 (Fsystem_move_file_to_trash): New function.
19288 (syms_of_w32fns): Export it to lisp.
19289
19290 2008-07-01 Jason Rumney <jasonr@gnu.org>
19291
19292 * w32font.c (w32font_text_extents): Don't count overhang as part
19293 of width.
19294
19295 2008-06-30 Miles Bader <miles@gnu.org>
19296
19297 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
19298 Add `avoid_cursor_p' field.
19299
19300 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
19301 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
19302 (append_glyph, append_composite_glyph, produce_image_glyph)
19303 (append_stretch_glyph): Initialize avoid_cursor_p.
19304 (get_it_property): Rename from `get_line_height_property'.
19305 (x_produce_glyphs): Use get_it_property.
19306 (handle_line_prefix, push_display_prop): New functions.
19307 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
19308 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
19309 New variables.
19310 (syms_of_xdisp): Initialize them.
19311
19312 2008-06-30 Kenichi Handa <handa@m17n.org>
19313
19314 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
19315 XftDefaultSubstitute (they are called in XftFontMatch).
19316 (xftfont_open): Fix args to ftfont_font_format.
19317
19318 * ftfont.c (fc_charset_table): New member lang.
19319 (ftfont_resolve_generic_family): New arg pattern.
19320 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
19321 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
19322 (ftfont_open): Fix args to ftfont_font_format.
19323 (ftfont_font_format): New arg filename.
19324
19325 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
19326
19327 * xfaces.c (Finternal_merge_in_global_face): If default face was
19328 modified, realize it again. Update the font face attribute.
19329
19330 2008-06-29 Jason Rumney <jasonr@gnu.org>
19331
19332 * w32term.c (x_set_frame_alpha): Fix logic.
19333
19334 2008-06-29 Kenichi Handa <handa@m17n.org>
19335
19336 * fontset.c (Finternal_char_font): Return font-object instead of
19337 font-name.
19338
19339 * composite.c (get_composition_id): Fix the width calculation for TAB.
19340
19341 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
19342
19343 * indent.c (Fvertical_motion): Properly handle float column arg.
19344
19345 2008-06-28 Jason Rumney <jasonr@gnu.org>
19346
19347 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
19348 (pfnSetLayeredWindowAttributes): New function pointer.
19349 (w32_initialize): Initialize it when supported.
19350 (x_set_frame_alpha): New function.
19351
19352 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
19353 (w32_frame_parm_handlers): Set alpha handler.
19354
19355 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
19356
19357 2008-06-27 Jason Rumney <jasonr@gnu.org>
19358
19359 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
19360 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
19361 (w32_to_x_charset, x_to_w32_charset)
19362 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
19363 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
19364 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
19365 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
19366 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
19367 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
19368 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
19369 (Qw32_charset_unicode): Remove.
19370 (syms_of_w32fns): Update for above changes.
19371
19372 * w32font.c (w32_to_x_charset, x_to_w32_charset)
19373 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
19374 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
19375 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
19376 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
19377 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
19378 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
19379 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
19380 (syms_of_w32font): Update for above changes.
19381
19382 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
19383
19384 * s/usg5-4.h: Fix previous change: keep the correct branch of a
19385 removed #if.
19386 (USG_SHARED_LIBRARIES): Remove duplicate definition.
19387
19388 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
19389 Eli Zaretskii <eliz@gnu.org>
19390
19391 * makefile.w32-in (LOCAL_FLAGS):
19392 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
19393
19394 * sysdep.c (_spawnlp, _getpid):
19395 Declare with explicit _cdecl instead of _CRTAPI1.
19396
19397 * editfns.c (Fget_internal_run_time):
19398 Check for WINDOWSNT with #ifdef, not #if.
19399
19400 2008-06-26 Jason Rumney <jasonr@gnu.org>
19401
19402 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
19403
19404 * w32term.c (x_draw_glyph_string_foreground)
19405 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
19406 Use FONT_HANDLE macro.
19407 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
19408
19409 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
19410 (uniscribe_encode_char): Use FONT_HANDLE macro.
19411
19412 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
19413 (w32font_text_extents): Use precast w32_font.
19414 (w32font_close): Free cached metrics.
19415 (w32font_open_internal): Allocate space for name on stack.
19416
19417 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
19418
19419 * xdisp.c (extend_face_to_end_of_line): Fix last change.
19420
19421 2008-06-26 Jason Rumney <jasonr@gnu.org>
19422
19423 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
19424 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
19425
19426 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
19427
19428 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
19429
19430 2008-06-26 Jason Rumney <jasonr@gnu.org>
19431
19432 * w32bdf.c, w32bdf.h: Remove obsolete files.
19433
19434 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
19435
19436 * w32gui.h: Don't include w32bdf.h.
19437 (XCharStruct, enum w32_char_font_type, W32FontStruct):
19438 Remove obsolete font support.
19439
19440 * w32font.h (struct w32font_info): Remove compat_w32_font.
19441 Add hfont member.
19442 (FONT_COMPAT): Remove obsolete macro.
19443
19444 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
19445 (w32font_encode_char, w32font_text_extents): Use new hfont member.
19446 (w32font_open_internal): Remove compat code. Set new hfont member.
19447 (Fx_select_font): Use new hfont member.
19448
19449 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
19450 (uniscribe_encode_char): Use new hfont member.
19451
19452 * w32term.c (x_draw_glyph_string_foreground)
19453 (x_draw_composite_glyph_string_foreground): Use new hfont member.
19454 (x_draw_glyph_string): Use metrics in w32font_info.
19455
19456 2008-06-26 Kenichi Handa <handa@m17n.org>
19457
19458 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
19459
19460 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
19461
19462 * unexnext.c:
19463 * m/ews4800.h:
19464 * m/hp9000s300.h:
19465 * m/ibm370aix.h:
19466 * m/mips-siemens.h:
19467 * m/ncr386.h:
19468 * m/next.h:
19469 * m/pmax.h:
19470 * m/powerpcle.h:
19471 * m/tandem-s2.h:
19472 * s/386bsd.h:
19473 * s/bsd386.h:
19474 * s/bsd4-1.h:
19475 * s/bsd4-2.h:
19476 * s/bsdos2-1.h:
19477 * s/bsdos2.h:
19478 * s/bsdos3.h:
19479 * s/bsdos4.h:
19480 * s/nextstep.h:
19481 * s/ultrix4-3.h:
19482 * s/usg5-0.h:
19483 * s/usg5-2-2.h:
19484 * s/usg5-2.h:
19485 * s/usg5-4-3.h:
19486 * s/ux4800.h:
19487 * s/uxpds.h:
19488 * s/uxpv.h: Remove support for obsolete systems.
19489 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
19490 Remove, insert contents in s/hpux10-20.h.
19491 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
19492 Remove, insert contents in s/aix4-2.h.
19493 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
19494 * s/bsd4-3.h: Rename to ...
19495 * s/bsd-common.h: ... this.
19496 * data.c:
19497 * doc.c:
19498 * ecrt0.c:
19499 * emacs.c:
19500 * fileio.c:
19501 * floatfns.c:
19502 * keyboard.c:
19503 * mem-limits.h:
19504 * print.c:
19505 * process.c:
19506 * sysdep.c:
19507 * syssignal.h:
19508 * systty.h:
19509 * syswait.h:
19510 * term.c:
19511 * unexec.c:
19512 * unexelf.c:
19513 * unexhp9k800.c:
19514 * m/hp800.h:
19515 * m/ibmrs6000.h:
19516 * m/mips.h:
19517 * m/vax.h:
19518 * s/darwin.h:
19519 * s/freebsd.h:
19520 * s/gnu.h:
19521 * s/ms-w32.h:
19522 * s/msdos.h:
19523 * s/netbsd.h:
19524 * s/template.h: Remove references to obsolete variables.
19525
19526 * Makefile.in: Add dependencies for all unexec files.
19527 (admindir): Remove unused variable.
19528 (UNEXEC_SRC): Remove references.
19529
19530 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
19531
19532 * xfns.c (x_default_font_parameter): If Xft is available, first
19533 try Monospace-12 for the default font.
19534
19535 2008-06-25 Jason Rumney <jasonr@gnu.org>
19536
19537 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
19538
19539 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
19540
19541 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
19542
19543 * buffer.c (syms_of_buffer): Remove default-word-wrap.
19544
19545 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
19546
19547 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
19548 <scroll-conservatively>: Fix typo in docstring.
19549
19550 * xselect.c (Fx_send_client_event): Doc fix.
19551
19552 2008-06-25 Kenichi Handa <handa@m17n.org>
19553
19554 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
19555
19556 * font.c (font_parse_fcname): Remove unused variables.
19557 (font_sort_entites): Delete the arg SPEC. Caller changed.
19558 Fix for the case of ! best_only.
19559 (font_delete_unmatched): Check DPI and AVGWIDTH too.
19560
19561 * lisp.h (Fstring_to_unibyte): EXFUN it.
19562
19563 * character.h (str_to_unibyte): Extern it.
19564
19565 * character.c (str_to_unibyte): New function.
19566
19567 * fns.c (Fstring_to_unibyte): New function.
19568 (syms_of_fns): Defsubr it.
19569
19570 2008-06-24 Kenichi Handa <handa@m17n.org>
19571
19572 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
19573 DPI too.
19574 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
19575
19576 2008-06-24 Andreas Schwab <schwab@suse.de>
19577
19578 * Makefile.in (${lispsource}loaddefs.el): Rename from
19579 ../lisp/loaddefs.el.
19580 (bootstrap-clean): Do what distclean does but don't remove
19581 Makefile.
19582 (distclean): Depend on bootstrap-clean and remove Makefile.
19583
19584 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
19585
19586 * buffer.h (struct buffer): New member word_wrap.
19587
19588 * buffer.c (syms_of_buffer): New variables default-word-wrap and
19589 word-wrap.
19590 (init_buffer_once): Initialize them.
19591
19592 * dispextern.h (struct it): Replace bool truncate_lines_p with a
19593 line_wrap enum possessing three possible values.
19594
19595 * termopts.h: Replace truncate_partial_width_windows with
19596 Vtruncate_partial_width_windows.
19597
19598 * dispnew.c (direct_output_for_insert): Avoid direct output when
19599 inserting a space with word wrap on.
19600
19601 * indent.c (compute_motion): Obey integer values of
19602 truncate-partial-width-windows.
19603
19604 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
19605 replacing truncate_partial_width_windows.
19606 (init_iterator): If Vtruncate_partial_width_windows is an integer,
19607 truncate only if the window width is below that integer.
19608 (start_display, resize_mini_window, produce_stretch_glyph)
19609 (display_string, move_it_in_display_line_to): Use line_wrap.
19610 (back_to_previous_visible_line_start, reseat_1):
19611 Reset string_from_display_prop_p.
19612 (display_line): Extend default face to end of line when wrapping.
19613
19614 2008-06-24 Kim F. Storm <storm@cua.dk>
19615
19616 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
19617 to wrap continued lines at word boundaries.
19618
19619 2008-06-24 Jason Rumney <jasonr@gnu.org>
19620
19621 * font.c (Ffont_face_attributes): Multiply pixel size before point
19622 conversion to avoid multiplying rounding error.
19623
19624 2008-06-23 Jason Rumney <jasonr@gnu.org>
19625
19626 * w32term.c (x_draw_glyph_string_background)
19627 (x_draw_glyph_string): Remove old bdf font code.
19628
19629 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
19630
19631 2008-06-22 Kenichi Handa <handa@m17n.org>
19632
19633 * font.c (font_find_for_lface): Try the adstyle specified in
19634 the property of LFACE_FONT of LFACE (if any).
19635
19636 2008-06-21 Seiji Zenitani <zenitani@mac.com>
19637 Ryo Yoshitake <ryo@shiftmode.net>
19638
19639 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
19640
19641 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
19642
19643 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
19644 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
19645 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
19646 (witness-emacs): Remove.
19647 (lisp, shortlisp): Move loaddefs.el earlier.
19648 (mostlyclean): Forget about witness-emacs.
19649
19650 2008-06-22 Glenn Morris <rgm@gnu.org>
19651
19652 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
19653 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
19654
19655 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
19656
19657 * Makefile.in (PRECOMP): Remove.
19658 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
19659 (witness-emacs): Run `compile-first'.
19660 (.el.elc): Use the new compile-onefile target.
19661
19662 2008-06-21 Kenichi Handa <handa@m17n.org>
19663
19664 * xftfont.c (xftfont_open): Handle QCembolden only when
19665 FC_EMBOLDEN is defined.
19666
19667 2008-06-21 Andreas Schwab <schwab@suse.de>
19668
19669 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
19670 (.el.elc): Likewise.
19671
19672 2008-06-21 Miles Bader <miles@gnu.org>
19673
19674 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
19675 build dir, not the lisp source dir.
19676
19677 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
19678
19679 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
19680 (bootstrapclean): Remove.
19681 (.el.elc): New rule.
19682 (PRECOMP): New var.
19683 (../lisp/subdirs.el): Remove.
19684 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
19685 (witness-emacs): New target.
19686 (mostlyclean): Remove witness-emacs as well.
19687 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
19688 Add witness-emacs dependency.
19689
19690 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
19691
19692 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
19693 defined by the font.
19694
19695 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19696
19697 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
19698 (bootstrap-clean): New target that keeps TAGS around.
19699 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
19700 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
19701
19702 2008-06-20 Jason Rumney <jasonr@gnu.org>
19703
19704 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
19705 Remove obsolete font code.
19706
19707 * w32font.c (font_matches_spec): Use csb bitfield from font signature
19708 to determine language support.
19709
19710 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19711
19712 * sysdep.c (cfsetspeed): New fun extracted from the code.
19713 (cfmakeraw): Move before first use.
19714
19715 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
19716
19717 * sysdep.c (cfmakeraw): Provide fallback implementation.
19718 (serial_configure): Provide fallback implementation of cfsetspeed.
19719
19720 2008-06-20 Kenichi Handa <handa@m17n.org>
19721
19722 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
19723 the pattern.
19724
19725 * fontset.c (fontset_from_font): Copy font_spec before changing
19726 the elements.
19727
19728 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
19729
19730 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19731
19732 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
19733 for explicit `font' parameters.
19734
19735 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
19736
19737 2008-06-19 Kenichi Handa <handa@m17n.org>
19738
19739 * frame.c: Include <ctype.h>.
19740 (x_set_font_backend): Allow spacing characters in the X resource
19741 for FontBackend.
19742
19743 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
19744
19745 * w32fns.c, xfns.c (Qfont_param): New var.
19746 (syms_of_w32fns): Initialize it.
19747 (x_default_font_parameter): Record explicit `font' into
19748 `font-parameter'.
19749
19750 2008-06-18 Kenichi Handa <handa@m17n.org>
19751
19752 * font.c (font_parse_xlfd): Fix previous change.
19753 (font_parse_fcname): Don't use :fc-unknown-spec.
19754 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
19755 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
19756 (font_add_log): Prepend the driver name to the resulting fonts.
19757
19758 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
19759 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
19760 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
19761
19762 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
19763 (QCembolden): New variables.
19764 (syms_of_xftfont): DEFSYM them.
19765 (xftfont_open): Call XftFontMatch. Don't trust the result of
19766 XftTextExtents8 if the pixel_size is less than 5.
19767
19768 2008-06-18 Andreas Schwab <schwab@suse.de>
19769
19770 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
19771 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
19772
19773 2008-06-18 Jason Rumney <jasonr@gnu.org>
19774
19775 * w32font.c (w32font_list, w32font_match): Add logging.
19776
19777 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
19778
19779 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
19780
19781 * font.c (font_parse_fcname): Store divider characters for
19782 unknown-spec list. For known key symbols, intern using correct
19783 symbol name.
19784
19785 2008-06-17 Kenichi Handa <handa@m17n.org>
19786
19787 * xfaces.c (realize_default_face): If the frame is not on window
19788 system, set the fontset of face to nil.
19789
19790 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
19791
19792 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
19793
19794 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
19795
19796 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
19797 (build_font_name_from_vector): Delete externs.
19798
19799 * xfaces.c (struct font_name): Don't declare.
19800
19801 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
19802
19803 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
19804
19805 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
19806
19807 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
19808
19809 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
19810
19811 * font.c (Ffont_spec): Fix usage in docstring.
19812 (Ffont_face_attributes): Doc fix.
19813
19814 2008-06-16 Andreas Schwab <schwab@suse.de>
19815
19816 * font.c (Ffont_face_attributes): Fix definition.
19817
19818 2008-06-16 Jason Rumney <jasonr@gnu.org>
19819
19820 * font.h (font_style_symbolic_from_value): Remove.
19821
19822 * font.c (font_style_symbolic_from_value): Remove.
19823 (font_style_symbolic): Revert to pre 2008-06-13 version.
19824
19825 * w32font.c (w32_to_fc_weight): New function.
19826 (w32font_full_name, logfont_to_fcname): Use it.
19827
19828 2008-06-16 Kenichi Handa <handa@m17n.org>
19829
19830 * font.c (font_check_object): Delete it.
19831 (font_clear_cache): Check if a font-object is alive.
19832 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
19833 font-object to nil.
19834 (font_close_object): Don't check FONT_CLOSE_OBJECT.
19835 (font_at): Don't call font_check_object.
19836 (Ffont_get): Return a symbol for :weight, :slant, and :width.
19837
19838 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
19839
19840 * puresize.h (BASE_PURESIZE): Increase to 1230000.
19841
19842 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
19843
19844 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
19845
19846 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
19847
19848 * font.c (font_parse_fcname): Only one decimal point.
19849 (font_unparse_fcname): Handle data in family and foundry indices
19850 as symbols, not strings.
19851 (font_unparse_gtkname, Ffont_face_attributes): New functions.
19852
19853 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
19854
19855 * font.h (font_unparse_gtkname): Add prototype.
19856
19857 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
19858
19859 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
19860
19861 2008-06-15 Andreas Schwab <schwab@suse.de>
19862
19863 * font.c (font_update_drivers): Fix crash when no drivers match.
19864
19865 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19866
19867 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
19868 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
19869
19870 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
19871
19872 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
19873
19874 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
19875
19876 * process.c (Fserial_process_configure, Fprocess_send_eof):
19877 Use EQ to compare Lisp_Objects.
19878
19879 2008-06-13 Jason Rumney <jasonr@gnu.org>
19880
19881 * w32fns.c (Fw32_select_font): Remove old font API function.
19882
19883 * w32font.c (logfont_to_fcname): New function.
19884 (Fx_select_font): New font dialog function compatible with
19885 GTK/fontconfig version.
19886
19887 * font.c (font_style_symbolic_from_value): New function.
19888 (font_style_symbolic): Use it.
19889
19890 * font.h (font_style_symbolic_from_value): Declare new function.
19891
19892 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
19893
19894 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
19895 <font-width-table>: Fix typos in docstrings.
19896
19897 2008-06-13 Daniel Engeler <engeler@gmail.com>
19898
19899 These changes add serial port access.
19900 * process.c: Add HAVE_SERIAL.
19901 (Fdelete_process, Fprocess_status, Fset_process_buffer)
19902 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
19903 (list_processes_1, select_wrapper, Fstop_process)
19904 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
19905 (status_notify): Modify to handle serial processes.
19906 [HAVE_SERIAL] (Fserial_process_configure)
19907 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
19908 New functions.
19909 * process.h (struct Lisp_Process): Add `type'.
19910 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
19911 New functions.
19912 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
19913 serial ports.
19914 (serial_open, serial_configure): New functions.
19915 * w32.h: Add FILE_SERIAL.
19916 (struct _child_process): Add ovl_read, ovl_write.
19917
19918 2008-06-13 Kenichi Handa <handa@m17n.org>
19919
19920 * dispextern.h (enum lface_attribute_index): New member
19921 LFACE_FOUNDRY_INDEX.
19922
19923 * font.c (font_score): Delete arg alternate_families. Check only
19924 weight, slant, width, and size. Ignore the difference of alias
19925 style symbols.
19926 (font_sort_entites): Adjust for the above change. Reflect the
19927 order of font-driver to scores.
19928 (font_list_entities): Don't check alternate_familes here.
19929 (font_clear_prop): Handle foundry.
19930 (font_update_lface): Don't parse "foundry-family" form here.
19931 Handle FONT_FOUNDRY_INDEX.
19932 (font_find_for_lface): Likewise. Handle alternate families here.
19933 If registry is nil, try iso8859-1 and ascii-0.
19934 (font_open_for_lface): Pay attention to size in ENTITY.
19935 (font_open_by_name): Simplify by calling font_load_for_lface.
19936 (free_font_driver_list): Delete it.
19937 (font_update_drivers): Preserve the order of backends.
19938 (syms_of_font): Setting of sort_shift_bits adjusted for the change
19939 of font_score and font_sort_entites.
19940 (font_update_sort_order): Likewise.
19941
19942 * xfaces.c (LFACE_FOUNDRY): New macro.
19943 (check_lface_attrs): Check foundry.
19944 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
19945 (merge_face_vectors): Check foundry.
19946 (merge_face_ref): Likewise.
19947 (Finternal_set_lisp_face_attribute): Likewise.
19948 (x_update_menu_appearance): Likewise.
19949 (Finternal_get_lisp_face_attribute): Likewise.
19950 (lface_hash): Likewise.
19951 (lface_same_font_attributes_p): Likewise.
19952 (x_supports_face_attributes_p): Likewise.
19953 (tty_supports_face_attributes_p): Likewise.
19954 (Finternal_set_alternative_font_family_alist): Intern strings.
19955 (Finternal_set_alternative_font_registry_alist): Downcase strings.
19956 (realize_default_face): Set LFACE_FOUNDRY (lface).
19957
19958 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
19959 font-driver at first.
19960
19961 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
19962
19963 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
19964
19965 * lread.c (Fload): Use xfree, not free on saved_doc_string.
19966
19967 2008-06-12 Jim Meyering <meyering@redhat.com>
19968
19969 Make unexec_free handle NULL the same way free does.
19970 * unexmacosx.c (unexec_free): Ignore a NULL argument.
19971
19972 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
19973
19974 * character.h (CHAR_TO_BYTE_SAFE): New macro.
19975 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
19976 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
19977 (WEAK_ALIAS): Simplify.
19978 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
19979 when searching a unibyte buffer.
19980
19981 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
19982
19983 * xfns.c (Fx_select_font): Rename from x-font-dialog.
19984
19985 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
19986
19987 * w32font.c: Include ctype.h.
19988
19989 2008-06-11 Jason Rumney <jasonr@gnu.org>
19990
19991 * w32font.c (w32font_encode_char): Detect missing glyphs that are
19992 misreported as space.
19993 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
19994 as aliases for registry iso10646-1.
19995
19996 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
19997
19998 * buffer.c (clone_per_buffer_values): Skip `name'.
19999
20000 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
20001
20002 * font.c (font_parse_fcname): Fix last change; accept decimal
20003 points in font size.
20004
20005 2008-06-10 Jason Rumney <jasonr@gnu.org>
20006
20007 * w32uniscribe.c (add_opentype_font_name_to_list):
20008 Skip non unicode fonts.
20009
20010 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
20011
20012 * xfns.c (Fx_font_dialog): New function.
20013
20014 * gtkutil.c (xg_dialog_response_cb): Rename from
20015 xg_file_response_callback.
20016 (pop_down_dialog): Rename from pop_down_file_dialog.
20017 (xg_get_file_name): Callers changed.
20018 (xg_get_font_name): New function.
20019
20020 * gtkutil.h (xg_get_font_name): Insert prototype.
20021
20022 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
20023
20024 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
20025 x_underline_minimum_display_offset.
20026 (syms_of_xdisp): Declare it here rather than in xterm.c.
20027 * dispextern.h (underline_minimum_offset): Declare it.
20028 * w32term.c (x_draw_glyph_string): Use it.
20029 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
20030 (syms_of_xterm): Don't declare it any more.
20031 (x_draw_glyph_string): Adjust to the new name.
20032
20033 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
20034
20035 * xterm.c (x_underline_minimum_display_offset): New var.
20036 (x_draw_glyph_string): Use it.
20037 (syms_of_xterm): Declare it.
20038
20039 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
20040
20041 * font.c (font_parse_fcname): Accept GTK-style font names too.
20042
20043 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
20044
20045 * dired.c (file_name_completion): Don't return t if the match is exact
20046 but with different capitalization.
20047 * minibuf.c (Ftry_completion): Simplify.
20048
20049 * window.c (Vwindow_point_insertion_type): New var.
20050 (set_window_buffer): Use it.
20051 (syms_of_window): Init and export it to Lisp.
20052
20053 2008-06-10 Kenichi Handa <handa@m17n.org>
20054
20055 * font.h (font_intern_prop): Prototype adjusted.
20056
20057 * font.c (font_intern_prop): New arg force_symbol.
20058 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
20059 Adjust for the change of font_intern_prop.
20060
20061 * ftfont.c (ftfont_pattern_entity):
20062 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
20063 (w32_registry):
20064 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
20065 the change of font_intern_prop.
20066
20067 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
20068
20069 * w32menu.c (digest_single_submenu): Declare extern.
20070
20071 2008-06-09 Jason Rumney <jasonr@gnu.org>
20072
20073 * w32term.c (x_make_frame_visible): Use alternate restore flags.
20074
20075 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
20076 (parse_single_submenu): Remove.
20077 (digest_single_submenu): Remove.
20078 (syms_of_w32menu): Don't initialise variables that have moved
20079 to menu.c.
20080 (set_frame_menubar): Sync with version in xmenu.c.
20081 (w32_menu_show): Sync with xmenu_show in xmenu.c.
20082
20083 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
20084 Make static again.
20085
20086 2008-06-09 Jason Rumney <jasonr@gnu.org>
20087
20088 Changes to w32 files related to the move of common menu code
20089 to menu.c on 2008-06-08 by Chong Yidong.
20090
20091 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
20092 defs to w32gui.h.
20093 (single_keymap_panes, push_menu_item, push_menu_pane):
20094 Make globally visible.
20095
20096 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
20097 (local_free, malloc_widget_value, free_widget_value)
20098 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
20099 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
20100 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
20101 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
20102 (menu_items, menu_items_allocated, menu_items_used)
20103 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
20104 (init_menu_items, finish_menu_items, discard_menu_items)
20105 (grow_menu_items, push_submenu_start, push_submenu_end)
20106 (push_left_right_boundary, push_menu_pane, push_menu_item)
20107 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
20108 (free_menubar_widget_tree_value, parse_single_submenu)
20109 (update_submenu_strings): Remove functions.
20110 (xmalloc_widget_value): Remove and declare extern.
20111
20112 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
20113 (OBJ1): Build it.
20114
20115 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
20116 (local_heap, local_alloc, local_free, malloc_widget_value)
20117 (free_widget_value): Define here.
20118
20119 2008-06-09 Kenichi Handa <handa@m17n.org>
20120
20121 * font.h (Qascii_0): Extern it.
20122
20123 * font.c (Qascii_0): New variable.
20124 (syms_of_font): DEFSYM it.
20125 (font_open_by_name): If the registry "iso8859-1" fails, try also
20126 "ascii-0".
20127
20128 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
20129
20130 2008-06-08 Kenichi Handa <handa@m17n.org>
20131
20132 * .gdbinit (xfont): New command.
20133
20134 2008-06-08 Andreas Schwab <schwab@suse.de>
20135
20136 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
20137 * Makefile.in (menu.o): Update dependencies.
20138
20139 * Makefile.in (obj): Always add menu.o.
20140 * emacs.c (main): Always call syms_of_menu.
20141 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
20142
20143 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
20144
20145 * Makefile.in: Compile menu.c.
20146
20147 * lisp.h: Declare syms_of_menu.
20148
20149 * emacs.c (main): Call syms_of_menu.
20150
20151 * keyboard.h: Relocate platform-independent menu definitions from
20152 xmenu.c.
20153
20154 * menu.c: New file. Relocate platform-independent menu
20155 definitions from xmenu.c. Suggested by Adrian Robert.
20156
20157 * xmenu.c: Remove platform-independent menu definitions.
20158 (menu_items, menu_items_inuse, menu_items_allocated)
20159 (menu_items_used, menu_items_n_panes)
20160 (menu_items_submenu_depth): Move to keyboard.h.
20161 (init_menu_items, finish_menu_items, unuse_menu_items)
20162 (discard_menu_items, restore_menu_items, save_menu_items)
20163 (grow_menu_items, push_submenu_start, push_submenu_end)
20164 (push_left_right_boundary, push_menu_pane, push_menu_item)
20165 (keymap_panes, single_keymap_panes, single_menu_item)
20166 (list_of_panes, list_of_items, find_and_call_menu_selection)
20167 (xmalloc_widget_value, free_menubar_widget_value_tree)
20168 (parse_single_submenu, digest_single_submenu)
20169 (update_submenu_strings): Move to menu.c.
20170
20171 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
20172
20173 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
20174
20175 2008-06-06 Miles Bader <miles@gnu.org>
20176
20177 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
20178 face, not frame default.
20179
20180 2008-06-05 Martin Rudalics <rudalics@gmx.at>
20181
20182 * window.c (pop_up_windows, pop_up_frames)
20183 (display_buffer_reuse_frames, Vpop_up_frame_function)
20184 (Vdisplay_buffer_function, Veven_window_heights)
20185 (Vspecial_display_buffer_names, Vspecial_display_regexps)
20186 (Vspecial_display_function, Vsame_window_buffer_names)
20187 (Vsame_window_regexps, split_height_threshold)
20188 (Vsplit_window_preferred_function): Move those vars to window.el.
20189 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
20190 (Fdisplay_buffer): Move those functions to window.el.
20191 (syms_of_window): Remove corresponding declarations.
20192 (display_buffer): New function.
20193 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
20194 * dispnew.c (Flast_nonminibuf_frame): New function.
20195 * buffer.c (Fpop_to_buffer): Move to window.el.
20196
20197 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20198
20199 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
20200
20201 2008-06-05 Kenichi Handa <handa@m17n.org>
20202
20203 * coding.c (detect_coding): Fix previous change.
20204 (detect_coding_system): Likewise.
20205
20206 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20207
20208 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
20209
20210 * keymap.c (Vminibuffer_local_filename_must_match_map):
20211 Rename from Vminibuffer_local_must_match_filename_map.
20212 (syms_of_keymap):
20213 * minibuf.c (Fcompleting_read): Adjust accordingly.
20214 * commands.h: Rename declaration as well.
20215
20216 2008-06-05 Kenichi Handa <handa@m17n.org>
20217
20218 * font.c (Ffont_spec): Don't use font_parse_family_registry for
20219 family name.
20220 (Ffont_put): Likewise.
20221
20222 * fontset.c (fontset_find_font): Call font_open_for_lface with the
20223 current font-spec.
20224
20225 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
20226 is unspecified.
20227
20228 * xfaces.c (realize_x_face): If the font-related face attributes
20229 are the same as those of default face, realize a new fontset from
20230 default->fontset.
20231 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
20232
20233 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
20234
20235 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
20236 (move_it_in_display_line): New wrapper.
20237
20238 * window.c (window_scroll_pixel_based_preserve_x)
20239 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
20240 (window_scroll_pixel_based, window_scroll_line_based):
20241 Use them to preserve column positions.
20242 (syms_of_window): Initialize them.
20243
20244 * indent.c (Fvertical_motion): Extend first arg to allow passing an
20245 (HPOS . VPOS) pair.
20246
20247 * dispextern.h (move_it_in_display_line): Declare.
20248
20249 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
20250
20251 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
20252 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
20253 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
20254
20255 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
20256
20257 * window.c (Fset_window_parameter): Doc fix.
20258 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
20259
20260 2008-06-04 Joakim Verona <joakim@verona.se>
20261
20262 * window.h (struct window): Add new member window_parameters.
20263
20264 * window.c (Fwindow_parameters, Fwindow_parameter)
20265 (Fset_window_parameter): New defuns.
20266 (syms_of_window): Defsubr the new defuns.
20267 (make_window): Initialize window_parameters to nil.
20268
20269 2008-06-04 John Paul Wallington <jpw@pobox.com>
20270
20271 * eval.c (Fdefmacro): Doc fix.
20272
20273 2008-06-04 Kenichi Handa <handa@m17n.org>
20274
20275 * coding.c (detect_coding): Fix handling of coding->head_ascii.
20276 Be sure to call setup_coding_system when we find a proper coding system.
20277 (detect_coding_system): Fix handling of coding->head_ascii.
20278
20279 2008-06-03 Andreas Schwab <schwab@suse.de>
20280
20281 * font.c (font_prop_validate_spacing): Fix last change.
20282
20283 2008-06-03 Kenichi Handa <handa@m17n.org>
20284
20285 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
20286 (font_parse_fcname): Fix handling of unknown key.
20287
20288 * xfont.c (xfont_list): Try an alias.
20289
20290 * charset.c (char_charset): Return NULL if the arg charset_list is
20291 specified and C doesn't belong to any of them.
20292
20293 2008-06-02 Chip Coldwell <coldwell@redhat.com>
20294
20295 * font.c (font_pixel_size): Don't take cdr of an integer.
20296
20297 2008-06-02 Jim Meyering <meyering@redhat.com>
20298
20299 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
20300 * alloc.c (xfree): Return right away for a NULL arg.
20301 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
20302 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
20303 * mac.c (create_apple_event_from_event_ref): Likewise.
20304 (create_apple_event_from_drag_ref, cfstring_create_normalized):
20305 Likewise.
20306 * doprnt.c (doprnt1): Likewise.
20307 * frame.c (frame): Likewise.
20308 * keyboard.c (wipe_kboard): Likewise.
20309 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
20310 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
20311 * term.c (tty_default_color_capabilities, maybe_fatal)
20312 (delete_tty): Likewise.
20313 * w16select.c (string): Likewise.
20314 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
20315 * w32bdf.c (w32_free_bdf_font): Likewise.
20316 * w32fns.c (w32_unload_font): Likewise.
20317 * w32font.c (w32font_close): Likewise.
20318 * window.c (size_window): Likewise.
20319 * xselect.c (receive_incremental_selection): Likewise.
20320 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
20321 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
20322 * w32.c (stat): Likewise.
20323
20324 Remove useless if-before-free tests.
20325 * editfns.c (Fset_time_zone_rule): Likewise.
20326 * lread.c (nosuffix): Likewise.
20327 * ralloc.c (get_bloc): Likewise.
20328 * regex.c (reg_free): Likewise.
20329 * xftfont.c (xftfont_open, xftfont_close): Likewise.
20330 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
20331 * xsmfns.c (smc_save_yourself_CB): Likewise.
20332
20333 2008-06-02 Kenichi Handa <handa@m17n.org>
20334
20335 * font.c (font_find_for_lface): Handle float font size.
20336 (font_open_for_lface): Likewise.
20337
20338 * xfaces.c (x_supports_face_attributes_p): Check face->font before
20339 comparing the properties.
20340
20341 2008-06-01 Jason Rumney <jasonr@gnu.org>
20342
20343 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
20344 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
20345 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
20346 Don't add empty script list.
20347 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
20348
20349 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
20350
20351 * Makefile.in (dot, dotdot): Remove, update users.
20352 ".." has been used elsewhere in the file for a long time.
20353 (LIBXT_STATIC): Remove conditional based on unused variable.
20354
20355 2008-06-01 Miles Bader <miles@gnu.org>
20356
20357 * xfaces.c (Vface_remapping_alist): New variable.
20358 (syms_of_xfaces): Initialize it.
20359 (enum named_merge_point_kind): New type.
20360 (struct named_merge_point): Add `named_merge_point_kind' field.
20361 (push_named_merge_point): Make cycle detection respect different
20362 named-merge-point kinds.
20363 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
20364 Remove face-name alias resolution.
20365 (lface_from_face_name): New definition using
20366 `lface_from_face_name_no_resolve'.
20367 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
20368 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
20369 (get_lface_attributes): New definition that layers face-remapping on
20370 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
20371 (lookup_basic_face): New function.
20372 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
20373 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
20374 `get_lface_attributes'.
20375 (face_at_buffer_position): Use `lookup_basic_face' to lookup
20376 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
20377 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
20378
20379 * xdisp.c (init_iterator): Pass base_face_id through
20380 `lookup_basic_face' when we actually use it as a face-id.
20381 (handle_single_display_prop): Use `lookup_basic_face' to lookup
20382 DEFAULT_FACE_ID.
20383
20384 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
20385 lookup the initial face-id.
20386
20387 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
20388
20389 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
20390
20391 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
20392 (Fremove_text_properties): Fix typos in docstrings.
20393
20394 2008-05-31 Kenichi Handa <handa@m17n.org>
20395
20396 * font.c (font_list_entities): Fix the car part of data to be
20397 stored in the cache.
20398
20399 * ftfont.c (ftfont_font_format): Don't use strcasestr.
20400
20401 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20402
20403 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
20404 Add a `test' argument so another predicate than `equal' can be used.
20405 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
20406 (map_char_table): Remove unused vars `c' and `i'.
20407 * lisp.h (Foptimize_char_table): Adjust declaration.
20408 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
20409
20410 2008-05-30 Kenichi Handa <handa@m17n.org>
20411
20412 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
20413 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
20414 defined.
20415
20416 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20417
20418 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
20419 (Fmake_variable_frame_local): Disallow mixing buffer-local and
20420 frame-local settings for the same variable.
20421
20422 2008-05-30 Kenichi Handa <handa@m17n.org>
20423
20424 * fontset.c (Ffont_info): Move to font.c.
20425 (syms_of_fontset): Delete defsubr of Sfont_info.
20426
20427 * font.c (font_style_to_value, font_score): Delete casting of the
20428 args to xstcasecmp.
20429 (register_font_driver): Increment num_font_drivers only when
20430 registering the driver globally.
20431 (Ffont_info): Move from fontset.c. Handle a font object too.
20432 (syms_of_font): Defsubr Sfont_info.
20433
20434 2008-05-29 Kenichi Handa <handa@m17n.org>
20435
20436 * coding.h (enum define_coding_utf8_arg_index): New enum.
20437 (enum coding_attr_index): Change coding_attr_utf_16_bom to
20438 coding_attr_utf_bom.
20439 (enum utf_bom_type): Rename from utf_16_bom_type.
20440 (struct utf_16_spec): Adjust for the above change.
20441 (struct coding_system): Add utf_8_bom in `spec' union.
20442
20443 * coding.c (CODING_UTF_8_BOM): New macro.
20444 (enum coding_category): Delete coding_category_utf_8, add
20445 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
20446 coding_category_utf_8_sig.
20447 (CATEGORY_MASK_UTF_8): Delete it.
20448 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
20449 (CATEGORY_MASK_UTF_8_SIG): New macros.
20450 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
20451 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
20452 CATEGORY_MASK_UTF_8_SIG.
20453 (CATEGORY_MASK_UTF_8): New macro.
20454 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
20455 (detect_coding_utf_8): Check BOM.
20456 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
20457 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
20458 (encode_coding_utf_16): Likewise.
20459 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
20460 (detect_coding, detect_coding_system): Handle utf-8-auto.
20461 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
20462 (syms_of_coding): Fix setting up of Vcoding_category_table.
20463
20464 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
20465
20466 * process.c (Faccept_process_output): If `millisec' is non-nil,
20467 `seconds' default to 0.
20468 (wait_reading_process_output): Also return non-nil if we read output
20469 from a non-running process.
20470
20471 2008-05-29 Jason Rumney <jasonr@gnu.org>
20472
20473 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
20474 `raster' specified.
20475 (add_font_entity_to_list): Allow non-opentype truetype fonts back
20476 in the uniscribe backend, but disallow any font that has no
20477 unicode subrange support.
20478
20479 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
20480
20481 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
20482 Fix typos in docstrings.
20483
20484 2008-05-29 Kenichi Handa <handa@m17n.org>
20485
20486 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
20487 (Fx_family_fonts): Set frame correctly.
20488
20489 2008-05-28 Jason Rumney <jasonr@gnu.org>
20490
20491 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
20492
20493 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
20494
20495 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
20496 calling build_annotations.
20497
20498 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
20499
20500 * coding.c (Fdecode_coding_region, Fencode_coding_region)
20501 (Fencode_coding_string):
20502 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
20503 <latin-extra-code-table>: Fix typos in docstrings.
20504 (syms_of_coding) <coding-system-alist>: Doc fix.
20505 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
20506
20507 2008-05-28 Kenichi Handa <handa@m17n.org>
20508
20509 * fontset.c (Ffont_info): Don't call font_close_object.
20510
20511 * font.c (font_parse_family_registry): Use Ffont_put to validate
20512 foundry and family.
20513 (font_delete_unmatched): Don't check spacing.
20514 (font_list_entities): Add spacing to the spec to list fonts.
20515
20516 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
20517 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
20518
20519 * coding.c (encode_coding_raw_text): Fix previous change.
20520 (encode_coding_object): When the dst_object is a buffer and is
20521 different from src_object, move gap to PT.
20522
20523 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
20524
20525 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
20526
20527 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20528
20529 * coding.c (encode_coding_raw_text): Set coding->produced_char for
20530 all branches. Compute it differently.
20531
20532 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
20533
20534 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
20535
20536 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
20537 into "else if () ... else ...".
20538
20539 2008-05-27 Jason Rumney <jasonr@gnu.org>
20540
20541 * w32font.c (w32font_open_internal): Determine if glyph indices
20542 are likely to work here.
20543
20544 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
20545
20546 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
20547 draw overlap glyphs with appropriate highlighting.
20548
20549 2008-05-27 Kenichi Handa <handa@m17n.org>
20550
20551 * xfont.c (xfont_open): Fix calculation of font->average_width.
20552
20553 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20554
20555 * casefiddle.c (casify_object): Try to guess better whether the
20556 argument is a byte or a char.
20557
20558 2008-05-26 Andreas Schwab <schwab@suse.de>
20559
20560 * xselect.c (x_reply_selection_request): Properly handle format == 32.
20561 Always send multiples of format size.
20562
20563 * xterm.c (x_set_frame_alpha): Fix type mismatch.
20564
20565 2008-05-26 Jason Rumney <jasonr@gnu.org>
20566
20567 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
20568 (compute_metrics): Don't set failure if we just cleared the cache.
20569 (w32_weight_table): Remove unused variable.
20570 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
20571 backwards compatibility.
20572
20573 2008-05-25 Kenichi Handa <handa@m17n.org>
20574
20575 * w32term.c (x_draw_glyph_string):
20576 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
20577
20578 * xfaces.c: Delete unused function prototypes.
20579 (xstrlwr, font_frame): Delete them.
20580 (clear_face_cache): Delete unused variable.
20581
20582 * xftfont.c (xftfont_open): Delete unused variable.
20583 If underline_thickness is not 1, adjust underline_position.
20584
20585 * ftxfont.c (ftxfont_open): Delete unused variable.
20586
20587 * fontset.c (face_for_char): Optimize for the case of no charset
20588 property.
20589
20590 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
20591 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
20592 (otf_open, font_otf_capability, generate_otf_features)
20593 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
20594 Comment out by surrounding "#if 0" and "#endif" for the moment.
20595 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
20596 (syms_of_font): Codes for accessing above commented out.
20597
20598 2008-05-24 Eli Zaretskii <eliz@gnu.org>
20599
20600 * w32proc.c: Include dispextern.h.
20601
20602 * w32.c: Include dispextern.h.
20603
20604 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
20605
20606 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
20607 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
20608 Fix typos in docstrings.
20609
20610 2008-05-23 Jason Rumney <jasonr@gnu.org>
20611
20612 * xsmfns.c: Remove includes that are already included by config.h.
20613
20614 2008-05-23 Kenichi Handa <handa@m17n.org>
20615
20616 * charset.c (Qemacs, charset_emacs): New variables.
20617 (char_charset): Fix for non-Unicode characters.
20618 (syms_of_charset): Define charset_emacs.
20619
20620 * w32term.c (x_draw_glyph_string): Be sure to update
20621 s->underline_thickness and s->underline_position. Be sure to draw
20622 underline within the current line area.
20623
20624 * xterm.c (x_draw_glyph_string): Be sure to update
20625 s->underline_thickness and s->underline_position. Be sure to draw
20626 underline within the current line area.
20627
20628 * fontset.c: Delete unused variables and add casting for char *
20629 throughout the file.
20630 (fontset_font): Try the fallback fonts of the current fontset
20631 before consulting the default fontset.
20632
20633 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
20634
20635 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
20636
20637 2008-05-22 Jason Rumney <jasonr@gnu.org>
20638
20639 * font.c: Don't include strings.h.
20640
20641 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
20642
20643 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
20644 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
20645 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
20646 to call xstrcasecmp.
20647
20648 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
20649
20650 * fontset.c (fs_query_fontset): Use xstrcasecmp.
20651
20652 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
20653
20654 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
20655
20656 2008-05-22 Kenichi Handa <handa@m17n.org>
20657
20658 * puresize.h (BASE_PURESIZE): Increase to 1220000.
20659
20660 * font.c (font_prop_validate_style): Adjust for the format
20661 change of font_style_table.
20662
20663 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
20664 two args.
20665
20666 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
20667 two args.
20668
20669 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
20670
20671 * minibuf.c (keys_of_minibuf): Delete.
20672 * lisp.h (keys_of_minibuf): Delete.
20673 * emacs.c (main): Don't call keys_of_minibuf.
20674
20675 2008-05-22 Kenichi Handa <handa@m17n.org>
20676
20677 * ftfont.c (ftfont_resolve_generic_family): Rename from
20678 ftfont_list_generic_family. Return a single family for each
20679 generic family.
20680 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
20681 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
20682 Call font_add_log.
20683 (ftfont_match): Call font_add_log.
20684
20685 * font.h (Ffont_xlfd_name): EXFUN adjusted.
20686 (FONT_DEBUG): Define it.
20687 (font_add_log): Extern it.
20688 (font_assert): Rename from xassert.
20689
20690 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
20691 (xfont_list_family): Call font_add_log.
20692 (xfont_match): Likewise.
20693 (memq_no_quit): Delete.
20694
20695 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
20696 call of Ffont_xlfd_name.
20697
20698 * xfaces.c (struct table_entry, slant_table, weight_table)
20699 (swidth_table): Move to font.c.
20700
20701 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
20702 xassert are changed to font_assert. Delete many unused variables.
20703 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
20704 New variables.
20705 (struct table_entry): Move from xfaces.c and modified.
20706 (weight_table, slant_table, width_table): Move from xfaces.c and
20707 contents adjusted for the change of struct table_entry.
20708 (font_style_to_value, font_style_symbolic): Adjust for the
20709 format change of font_style_table.
20710 (font_parse_family_registry): Don't overwrite existing foundry and
20711 family of font_spec.
20712 (font_score): Fix calculation of diff for sizes.
20713 (font_sort_entites): Call font_add_log.
20714 (font_delete_unmatched): Return a newly created list.
20715 (font_list_entities): Fix previous change. Call font_add_log.
20716 (font_matching_entity, font_open_entity, font_close_entity):
20717 Call font_add_log.
20718 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
20719 (Finternal_set_font_style_table): Delete.
20720 (BUILD_STYLE_TABLE): New macro.
20721 (build_style_table): New function.
20722 (Vfont_log, font_log_env_checked): New variables.
20723 (font_add_log): New function.
20724 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
20725 Declare Lisp variables "font-weight-table", "font-slant-table",
20726 "font-width-table", and "font-log". Initialize font_style_table.
20727
20728 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
20729
20730 * xterm.c (x_set_frame_alpha): Move declarations before statements.
20731
20732 2008-05-21 Seiji Zenitani <zenitani@mac.com>
20733 Ryo Yoshitake <ryo@shiftmode.net>
20734
20735 * frame.c (Qalpha): Add a new frame parameter `alpha'.
20736 (Vframe_alpha_lower_limit): New variable.
20737 (x_set_alpha): New function.
20738
20739 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
20740
20741 * xfns.c (x-create-frame, Qalpha):
20742 Initialize the frame parameter `alpha'.
20743 * xterm.c (OPAQUE, OPACITY): New.
20744 (x_set_frame_alpha): New function.
20745 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
20746
20747 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
20748 * w32fns.c (w32_frame_parm_handlers): Likewise.
20749
20750 2008-05-20 Jason Rumney <jasonr@gnu.org>
20751
20752 * w32font.c (add_font_entity_to_list): Don't add non-opentype
20753 truetype fonts to opentype list.
20754
20755 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
20756
20757 * fontset.c (Ffontset_info): Doc fix.
20758 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
20759 <ignore-relative-composition>: Fix typos in docstrings.
20760
20761 * font.c (syms-of-font) <font-encoding-alist>:
20762 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
20763 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
20764 (Ffont_otf_alternates): Doc fixes.
20765
20766 2008-05-20 Kenichi Handa <handa@m17n.org>
20767
20768 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
20769 font.h through out the file.
20770 (FONT_DRIVERS): Rename from FONTOBJ.
20771 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
20772 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
20773
20774 * emacs.c (main): Call syms_of_font unconditionally.
20775
20776 * font.h (find_font_encoding): Extern it.
20777
20778 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
20779 fontset.c.
20780 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
20781 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
20782 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
20783 only when HAVE_WINDOW_SYSTEM is defined.
20784 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
20785 when HAVE_WINDOW_SYSTEM is defined.
20786
20787 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
20788 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
20789
20790 * xfaces.c: Include font.h unconditionally.
20791 (merge_face_ref, merge_face_vectors)
20792 (Finternal_set_lisp_face_attribute): Cancel the previous change.
20793
20794 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
20795
20796 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
20797 indirect_variable.
20798 * eval.c (lisp_indirect_variable): New fun.
20799 (Fuser_variable_p): Use it.
20800
20801 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
20802
20803 * lisp.h (indirect_variable):
20804 * data.c (indirect_variable, let_shadows_buffer_binding_p):
20805 Use Lisp_Symbol pointers rather than Lisp_Object.
20806 Adjust callers.
20807 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
20808 To this end, change calling-convention.
20809
20810 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
20811 if some non-hidden buffers are selected by string&pred.
20812
20813 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
20814
20815 * process.c (wait_reading_process_output): Always check status
20816 when in batch mode.
20817
20818 2008-05-19 Kenichi Handa <handa@m17n.org>
20819
20820 * font.c (font_list_entities): Fix handling of cache.
20821 (font_matching_entity): Likewise.
20822
20823 * ftfont.c (cs_iso8859_1): Delete.
20824 (ft_face_cache): New variable.
20825 (struct ftfont_info): New member fc_charset_idx.
20826 (ftfont_build_basic_charsets): Delete.
20827 (fc_charset_table): New variable.
20828 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
20829 . FC_CHARSET_IDX) as :font-entity property in the font entity.
20830 Callers changed.
20831 (ftfont_lookup_cache, ftfont_get_charset): New functions.
20832 (ftfont_spec_pattern): New argument fc_charset_idx.
20833 Check registry more rigidly. Change callers.
20834 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
20835 change of :font-entity property of the font.
20836
20837 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
20838 property of the font.
20839
20840 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
20841
20842 * coding.c (Fcoding_system_p): Rename argument to match docstring.
20843 (Funencodable_char_position, Fcheck_coding_systems_region)
20844 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
20845 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
20846 (Ffind_operation_coding_system, Fset_coding_system_priority)
20847 (Fcoding_system_eol_type): Doc fixes.
20848
20849 2008-05-17 Glenn Morris <rgm@gnu.org>
20850
20851 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
20852
20853 2008-05-16 Eli Zaretskii <eliz@gnu.org>
20854
20855 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
20856 and st_gid.
20857
20858 * frame.c (Fdelete_frame): Don't call font_update_drivers if
20859 HAVE_WINDOW_SYSTEM is not defined.
20860
20861 * xfaces.c (merge_face_ref, merge_face_vectors)
20862 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
20863 HAVE_WINDOW_SYSTEM is defined.
20864 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
20865
20866 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
20867
20868 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
20869
20870 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20871
20872 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
20873
20874 2008-05-15 Kenichi Handa <handa@m17n.org>
20875
20876 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
20877 preference.
20878
20879 2008-05-15 Glenn Morris <rgm@gnu.org>
20880
20881 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
20882
20883 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
20884
20885 * fns.c (init_fns): Don't initialize weak_hash_tables here.
20886 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
20887
20888 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
20889
20890 2008-05-15 Kenichi Handa <handa@m17n.org>
20891
20892 * ftfont.c (ftfont_list): Downcase family name to check generic
20893 families.
20894
20895 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
20896 font-spec for QCfont value.
20897
20898 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
20899 buffer. Check the return value of it.
20900
20901 2008-05-14 Jason Rumney <jasonr@gnu.org>
20902
20903 * w32term.c (w32_get_glyph_overhangs): Remove.
20904 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
20905
20906 2008-05-14 Kenichi Handa <handa@m17n.org>
20907
20908 * font.c (font_prop_validate): Make nil a valid value.
20909 (font_clear_cache): Check if the cached vector of entities is nil
20910 or not.
20911
20912 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20913
20914 * emacs.c (main_thread): Conditionalize on
20915 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
20916 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
20917
20918 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
20919 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
20920 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
20921
20922 2008-05-14 Kenichi Handa <handa@m17n.org>
20923
20924 * coding.c (detect_coding_iso_2022): Ignore a coding category that
20925 has no corresponding coding system.
20926
20927 2008-05-14 Jason Rumney <jasonr@gnu.org>
20928
20929 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
20930
20931 * w32font.h (w32font_open_internal): Update declaration.
20932
20933 * w32font.c (w32font_open_internal): Change last argument from
20934 w32font_info struct to font object. Fill in font object from
20935 font_entity. Get Outline metrics if possible. Use them to
20936 calculate underline position and thickness. Use xlfd name as name
20937 property. Don't set codepage.
20938 (w32font_open): Pass font_object to w32font_open_internal. Don't
20939 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
20940 (w32font_draw): Use s->font.
20941 (clear_cached_metrics): Don't clear non-existent blocks.
20942
20943 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
20944 font was not found.
20945 (x_draw_glyph_string): Use underline position and thickness from font.
20946
20947 * w32uniscribe.c (uniscribe_open): Pass font_object to
20948 w32font_open_internal.
20949
20950 2008-05-14 Kenichi Handa <handa@m17n.org>
20951
20952 These changes are to delete all legacy font-handling codes, and
20953 make Emacs use only font-backends.
20954
20955 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
20956 (frame.o, image.o, print.o): Depend on $(FONTSRC).
20957
20958 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
20959
20960 * charset.h (Vcharset_non_preferred_head)
20961 (Vcurrent_iso639_language): Extern them.
20962
20963 * charset.c (Vcharset_non_preferred_head): New variable.
20964 (Vcurrent_iso639_language): New variable.
20965 (syms_of_charset): Declare it as a Lisp variable.
20966 (char_charset): Don't check non preferred charsets. As a last
20967 resort, return charset_unicode.
20968 (Fset_charset_priority): Update Vcharset_non_preferred_head.
20969
20970 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
20971 conditionals. Don't check enable_font_backend. Delete all codes
20972 used only when USE_FONT_BACKEND is not defined.
20973
20974 * dispextern.h (struct glyph_string): Change type of `font' to
20975 `struct font *'.
20976 (struct glyph_string): New member underline_position and
20977 underline_thickness.
20978 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
20979 (struct face): Change type of `font' to `struct font *'.
20980 Remove members `font_name', `font_info_id'.
20981 (per_char_metric, encode_char): Delete externs.
20982 (calc_pixel_width_or_height): Adjust the prototype.
20983
20984 * emacs.c (enable_font_backend): Delete extern.
20985 (main): Don't set enable_font_backend. Don't check the command
20986 line argument "-disable-font-backend".
20987
20988 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
20989 (enum font_property_index): New members FONT_DPI_INDEX,
20990 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
20991 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
20992 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
20993 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
20994 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
20995 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
20996 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
20997 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
20998 (struct font_spec, struct font_entity): New structs.
20999 (FONT_ENCODING_NOT_DECIDED): Move from fontset.h.
21000 (struct font): Many members from old "struct font_info" moved to
21001 here. Members font and entity deleted.
21002 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
21003 the new font-related objects.
21004 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
21005 (CHECK_FONT_GET_OBJECT): Likewise.
21006 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
21007 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move from font.h.
21008 (struct font_driver): New members case_sensitive anc check.
21009 Type of the member list and open changed.
21010 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
21011 (font_symbolic_width, font_find_object, font_get_spec)
21012 (font_set_lface_from_name): Delete extern.
21013 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
21014
21015 * font.c: Include <strings.h>.
21016 (enable_font_backend): Delete it.
21017 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
21018 (CHECK_VALIDATE_FONT_SPEC): Delete it.
21019 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move to font.h.
21020 (null_string): Delete it.
21021 (null_vector): Make it static.
21022 (font_family_alist): Delete it.
21023 (Qnormal): Extern it.
21024 (QCextra, QClanguage): Delete it.
21025 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
21026 (font_make_spec, font_make_entity, font_make_object)
21027 (font_intern_prop): Rename from intern_downcase. Don't downcase
21028 the string. Callers changed.
21029 (font_pixel_size): Adjust for the format change of font-related
21030 objects.
21031 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
21032 (font_style_to_value, font_style_symbolic): New function.
21033 (build_font_family_alist): Delete it.
21034 (font_registry_charsets): Use Fassoc_string instead of
21035 assq_no_quit.
21036 (font_prop_validate_symbol): Don't return null_string.
21037 (font_prop_validate_style): Adjust for the change of
21038 style-related values in a font vector.
21039 (font_property_table): Delete entries for QClanguage and
21040 QCantialias, add entries for QCavgwidth.
21041 (get_font_prop_index): Delete the 2nd argument FROM.
21042 (font_prop_validate): Arguments changed.
21043 (font_put_extra): Adjust for the change of font-related objects.
21044 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
21045 (font_parse_fcname, font_unparse_fcname)
21046 (font_prepare_composition): Likewise.
21047 (font_parse_family_registry): Rename from font_merge_old_spec.
21048 (otf_open): Delete the 1st arg entity.
21049 (font_otf_capability): Adjust for the above change.
21050 (font_score): New arg alternate_families. Adjusted for the change
21051 of font-related objects.
21052 (font_sort_entites): New arg best_only.
21053 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
21054 Delete them.
21055 (font_match_p): Check alternate families.
21056 (font_find_object): Delete it.
21057 (font_check_object): New function.
21058 (font_clear_cache): Adjust for the change of font-related objects.
21059 (font_delete_unmatched): New arg.
21060 (font_list_entities): Call font_driver->list with a spec that
21061 doesn't specify style-related properties.
21062 (font_matching_entity): Arguments changed. Caller changed.
21063 (font_open_entity): Adjust for the change of font-related objects.
21064 (font_close_object, font_has_char, font_encode_char)
21065 (font_get_name, font_get_spec): Likewise.
21066 (font_spec_from_name, font_clear_prop, font_update_lface):
21067 New functions.
21068 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
21069 (font_prepare_for_face, font_done_for_face, font_open_by_name)
21070 (font_at): Adjust for the change of font-related objects.
21071 (font_range): New function.
21072 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
21073 (Ffont_xlfd_name): Adjust for the change of font-related objects.
21074 (Fcopy_font_spec, Fmerge_font_spec): New function.
21075 (Ffont_family_list): Rename from list-families.
21076 (Finternal_set_font_style_table): Arguments changed.
21077 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
21078 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjust for the
21079 change of font-related objects.
21080 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
21081
21082 * fontset.h (struct font_info): Delete it. Most members go to
21083 struct font.
21084 (FONT_ENCODING_NOT_DECIDED): Move to font.h.
21085 (enum FONT_SPEC_INDEX): Delete it.
21086 (font_info, list_fonts_func, load_font_func, query_font_func)
21087 (set_frame_fontset_func, find_ccl_program_func)
21088 (get_font_repertory_func, new_fontset_from_font_name):
21089 Delete externs.
21090 (fontset_from_font_name): Extern it.
21091 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
21092 (FONT_INFO_FROM_FACE): Deleted.
21093 (face_for_font): Adjust prototype.
21094
21095 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
21096 conditionals. Don't check enable_font_backend. Delete all codes
21097 used only when USE_FONT_BACKEND is not defined.
21098 (get_font_info_func, list_font_func, load_font_func)
21099 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
21100 (get_font_repertory_func): Delete them.
21101 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
21102 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
21103 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
21104 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
21105 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
21106 (fontset_compare_rfontdef): New function.
21107 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
21108 rfont-defs by qsort. Adjusted for the change of font-group vector.
21109 (load_font_get_repertory): Deleted.
21110 (fontset_find_font): Use new macros to ref/set elements of
21111 font-def and rfont-def.
21112 (fontset_font): Fix the timing of remembering that no font for C.
21113 (free_face_fontset): Do nothing if the face has no fontset.
21114 (face_suitable_for_char_p): Use new macros to ref/set elements of
21115 rfont-def.
21116 (face_for_char): Likewise. Call face_for_char with font_object.
21117 (fs_load_font): Delete. Delete #pragma surrounding it.
21118 (fs_query_fontset): Use strcasecmp instead of strcmp.
21119 (generate_ascii_font_name): Adjust for the format change of
21120 font-spec.
21121 (Fset_fontset_font): Likewise. Use new macros to set elements of
21122 font-def.
21123 (Fnew_fontset): Use font_unparse_xlfd to generate
21124 FONTSET_ASCII (fontset).
21125 (new_fontset_from_font_name): Deleted.
21126 (fontset_from_font): Rename from new_fontset_from_font. Check if
21127 a fontset is already created for the font. FIx updating of
21128 Vfontset_alias_alist.
21129 (fontset_ascii_font): Deleted.
21130 (Ffont_info): Adjust for the format change of font-spec.
21131 (Finternal_char_font): Likewise.
21132 (Ffontset_info): Likewise.
21133 (syms_of_fontset): Don't check load_font_func.
21134
21135 * fns.c (internal_equal): Handle PREV_FONT.
21136
21137 * frame.h: Delete USE_FONT_BACKEND conditional.
21138
21139 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
21140 conditionals. Don't check enable_font_backend. Delete all codes
21141 used only when USE_FONT_BACKEND is not defined.
21142 (x_set_font): Call x_new_font, not x_new_fontset2.
21143 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
21144 already set for the frame.
21145
21146 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed.
21147 Make a font-entity by font_make_entity. Use font_intern_prop instead
21148 of intern_downcase. Use FONT_SET_STYLE to set a style-related
21149 font property. If a font is scalable, set avgwidth property to 0.
21150 Set font-entity property by font_put_extra.
21151 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
21152 (ffont_driver): Adjust for the change of struct font_driver.
21153 (ftfont_spec_pattern): New function.
21154 (ftfont_list): Return a list, not vector.
21155 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
21156 (ftfont_list_family): Don't downcase names.
21157 (ftfont_free_entity): Deleted.
21158 (ftfont_open): Return a font-object. Adjusted for the change of
21159 struct font. Get underline_thickness and underline_position from
21160 font property. Don't update dpyinfo->smallest_font_height and
21161 dpyinfo->smallest_char_width.
21162 (ftfont_close): Don't free `struct font'.
21163 (ftfont_has_char): Adjust for the format change of font-entity.
21164 (ftfont_encode_char, ftfont_text_extents): Likewise.
21165
21166 * ftxfont.c (ftxfont_list): Return a list, not vector.
21167 (ftxfont_open): Return a font-object. Adjusted for the change of
21168 struct font. Get underline_thickness and underline_position from
21169 font property. Don't update dpyinfo->smallest_font_height and
21170 dpyinfo->smallest_char_width.
21171 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
21172 (ftxfont_draw): Adjust for the change of struct font.
21173
21174 * image.c (image_ascent): Don't include "charset.h".
21175 Include "character.h" and "font.h".
21176
21177 * lisp.h (enum pvec_type): New member PREV_FONT.
21178 (Fassoc_string): EXFUN it.
21179
21180 * print.c: Include font.h.
21181 (print_object): Handle font-related objects.
21182
21183 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
21184 conditionals. Don't check enable_font_backend. Delete all codes
21185 used only when USE_FONT_BACKEND is not defined.
21186 (handle_auto_composed_prop): Do nothing if it->f is not on a
21187 window system. Check how many following characters can be
21188 displayed by the same font.
21189 (calc_pixel_width_or_height): Type of the 4th arg is changed to
21190 'struct font *'.
21191 (get_char_face_and_encoding): Assign the whole encoding task to
21192 the `encode-char' method of a font driver.
21193 (fill_composite_glyph_string): Adjust for the change of `struct
21194 face' and `struct glyph_string'.
21195 (fill_glyph_string): Likewise.
21196 (get_per_char_metric): Arguments changed.
21197 (x_get_glyph_overhangs): Adjust for the change of `struct face'
21198 and `struct glyph_string'.
21199 (produce_stretch_glyph, calc_line_height_property)
21200 (x_produce_glyphs): Likewise.
21201
21202 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
21203 conditionals. Don't check enable_font_backend. Delete all codes
21204 used only when USE_FONT_BACKEND is not defined.
21205 Use FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
21206 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
21207 (Qp): Extern them.
21208 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
21209 Deleted.
21210 (struct font_name): Deleted.
21211 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
21212 (compare_fonts_by_sort_order): New function.
21213 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
21214 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
21215 Deleted.
21216 (Fx_family_fonts): Use font_list_entities, and sort fonts by
21217 compare_fonts_by_sort_order.
21218 (Fx_font_family_list): Call Ffont_family_list.
21219 (face_numeric_value, face_numeric_weight, face_numeric_slant)
21220 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
21221 (face_symbolic_slant, face_symbolic_swidth)
21222 (split_font_name_into_vector, build_font_name_from_vector)
21223 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
21224 (font_rescale_ratio, split_font_name, build_font_name)
21225 (free_font_names, sort_fonts, x_face_list_fonts)
21226 (face_font_available_p, sorted_font_list, cmp_font_names)
21227 (font_list_1, concat_font_list, font_list, remove_duplicates):
21228 Deleted.
21229 (Fx_list_fonts): Use Ffont_list.
21230 (LFACE_AVGWIDTH): Deleted.
21231 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
21232 by FONTP.
21233 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
21234 (set_lface_from_font_name): Delete it.
21235 (set_lface_from_font): Rename from
21236 set_lface_from_font_and_fontset. Caller changed. Don't set
21237 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
21238 for face.
21239 (merge_face_vectors): Copy font-spec if necessary.
21240 Clear properties of the font-spec if necessary.
21241 (merge_face_ref): Clear properties of the font-spec if necessary.
21242 (Finternal_set_lisp_face_attribute): Likewise.
21243 (set_font_frame_param): Use font_load_for_lface to load a
21244 font-object, and call Fmodify_frame_parameters with it.
21245 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
21246 font name by Ffont_xlfd_name.
21247 (Finternal_lisp_face_attribute_values): Don't check QCweight,
21248 QCslant, and QCwidth.
21249 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
21250 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
21251 Compare fonts by EQ.
21252 (lookup_non_ascii_face): Deleted.
21253 (face_for_font): The 2nd argument changed.
21254 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
21255 Check atomic font properties by case insensitive.
21256 (realize_non_ascii_face): Set face->overstrike correctly.
21257 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
21258 (dump_realized_face): Get font name from
21259 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
21260
21261 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
21262 conditionals. Don't check enable_font_backend. Delete all codes
21263 used only when USE_FONT_BACKEND is not defined.
21264 (xic_create_xfontset): Original code deleted and renamed from
21265 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
21266 (x_make_gc): Don't set GCFont in GCs.
21267 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
21268 opened by "fixed".
21269 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
21270 find_ccl_program_func, query_font_func, set_frame_fontset_func,
21271 get_font_repertory_func.
21272
21273 * xfont.c: Include <stdlib.h> and "ccl.h".
21274 (struct xfont_info): New structure.
21275 (xfont_query_font): Deleted.
21276 (xfont_find_ccl_program): Rename from x_find_ccl_program and
21277 moved from xterm.c.
21278 (xfont_driver): Adjust for the change of struct font_driver.
21279 (compare_font_names): New function.
21280 (xfont_list_pattern): Sort font names case insensitively.
21281 Make font_entity by calling font_make_entity. Avoid auto-scaled fonts.
21282 (xfont_list): Return a list, not vector.
21283 (xfont_match): If the font doesn't have QCname property, generate
21284 a name from the other font properties.
21285 (xfont_open): Return a font-object. Adjusted for the change of
21286 struct font. Get underline_thickness and underline_position from
21287 font property. Don't update dpyinfo->smallest_font_height and
21288 dpyinfo->smallest_char_width.
21289 (xfont_close): Don't free struct font.
21290 (xfont_prepare_face): Adjust for the change of struct font.
21291 (xfont_done_face): Deleted.
21292 (xfont_has_char): Adjust for the change of struct font.
21293 (xfont_encode_char, xfont_draw): Likewise.
21294 (xfont_check): New function.
21295
21296 * xftfont.c (xftfont_list): Adjust for the change of `list'
21297 callback function.
21298 (xftfont_match): Adjust for the format change of font-entity.
21299 (xftfont_open): Adjust for the format change of font-entity and
21300 font-object. Adjusted for the change of struct font. Return a
21301 font-object. Don't update dpyinfo->smallest_font_height and
21302 dpyinfo->smallest_char_width.
21303 (xftfont_close): Block input while calling XftFontClose.
21304 (xftfont_prepare_face): Don't block input while calling
21305 xftfont_get_colors. Adjusted for the change of struct font.
21306 (xftfont_shape): Return value of error case fixed.
21307
21308 * xrdb.c (x_load_resources): Don't setup a fontset resource.
21309
21310 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
21311 conditionals.
21312 (FONT_WIDTH): Return (f)->max_width.
21313 (struct x_display_info): Delete member `font'.
21314 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
21315 (x_find_ccl_program, x_get_font_repertory): Delete externs.
21316 (struct x_output): Change type of `font' to `struct font *'.
21317
21318 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
21319 conditionals. Don't check enable_font_backend. Delete all codes
21320 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
21321 (x_per_char_metric, x_encode_char): Deleted.
21322 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
21323 (x_compute_glyph_string_overhangs): Adjust for the change of
21324 `struct face'.
21325 (x_draw_glyph_string_foreground)
21326 (x_draw_composite_glyph_string_foreground): Likewise.
21327 (x_draw_glyph_string): Likewise. Use font->underline_position and
21328 font->underline_thickness.
21329 (x_new_font): Rename from x_new_fontset2.
21330 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
21331 (x_check_font): Call `check' method of a font driver.
21332 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
21333 (x_query_font, x_get_font_repertory): Deleted.
21334 (x_find_ccl_program): Rename and moved to xfont.c.
21335 (x_redisplay_interface): Adjust for the change of `struct
21336 redisplay_interface'.
21337
21338 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
21339 conditionals. Don't check enable_font_backend. Delete all codes
21340 used only when USE_FONT_BACKEND is not defined. Surround non-used
21341 code by "#ifdef OLD_FONT" and "endif".
21342 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
21343
21344 * w32font.h (struct w32font_info): New member.
21345 (FONT_COMPAT): New macro.
21346 (w32font_open_internal): Prototype adjusted.
21347
21348 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
21349 OLD_FONT" and "endif".
21350
21351 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
21352 conditionals. Don't check enable_font_backend. Delete all codes
21353 used only when USE_FONT_BACKEND is not defined.
21354 (w32font_open): Return a font-object. Make a font-object by
21355 font_make_object. Adjusted for the change of struct w32font_info.
21356 (w32font_close): Don't free struct font. Adjusted for the change
21357 of struct w32font_info.
21358 (w32font_encode_char, w32font_text_extents, w32font_draw):
21359 Adjust for the change of struct w32font_info.
21360 (w32font_draw): Likewise.
21361 (w32font_list_internal): Return a list, not vector.
21362 (w32font_open_internal): Change the 4th arg to font-object.
21363 Adjusted for the change of struct w32font_info and font-object format.
21364 (add_font_name_to_list): Don't downcase names.
21365 (w32_enumfont_pattern_entity): Make a font-entity by
21366 font_make_entity. Adjusted for the format change of font-entity.
21367 Use FONT_SET_STYLE to set a style-related font property. If a
21368 font is scalable, set avgwidth property to 0. Set font-entity
21369 property by font_put_extra.
21370 (font_matches_spec): Adjust for the format change of font-entity.
21371 (w32_weight_table, w32_decode_weight): New variables.
21372 (w32_encode_weight): New function.
21373 (fill_in_logfont): Adjust for the format change of font-spec.
21374 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
21375 weight value.
21376 (w32font_driver): Adjust for the change of struct font_driver.
21377
21378 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
21379 conditionals. Don't check enable_font_backend. Surround non-used
21380 code by "#ifdef OLD_FONT" and "endif".
21381 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
21382 (FONT_AVG_WIDTH): Adjust for the change of struct font.
21383
21384 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
21385 conditionals. Don't check enable_font_backend. Delete all codes
21386 used only when USE_FONT_BACKEND is not defined. Surround non-used
21387 code by "#ifdef OLD_FONT" and "endif".
21388
21389 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
21390 (uniscribe_open): Return value changed to font-object.
21391 Adjusted for the format change of font-object.
21392 (uniscribe_otf_capability): Adjust for the change of struct font.
21393 (add_opentype_font_name_to_list): Don't downcase names.
21394 (uniscribe_font_driver): Adjust for the change of struct
21395 font_driver.
21396
21397 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
21398
21399 * dispnew.c (update_frame_1): Check if tty output is still valid
21400 before flushing it.
21401
21402 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
21403
21404 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
21405 to Gtk+ menus.
21406
21407 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
21408
21409 * dired.c (file_name_completion): Tweak the code so as to always do it
21410 in a single pass. Tighten the scope of some variables.
21411
21412 * dired.c (Qdefault_directory): New var.
21413 (file_name_completion): Use it instead of Fexpand_file_name.
21414 (syms_of_dired): Initialize it.
21415
21416 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
21417
21418 * fileio.c (double_dollars): Remove dead code.
21419
21420 2008-05-10 Eli Zaretskii <eliz@gnu.org>
21421
21422 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
21423 Mention w32-get-true-file-attributes in doc string.
21424
21425 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
21426
21427 2008-05-09 Glenn Morris <rgm@gnu.org>
21428
21429 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
21430 2008-04-23.
21431
21432 2008-05-09 Eli Zaretskii <eliz@gnu.org>
21433
21434 Support for reporting owner and group of each file on MS-Windows:
21435 * dired.c (stat_uname, stat_gname): New functions, with special
21436 implementation for w32.
21437 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
21438
21439 * w32.c: Rename the_passwd_* to dflt_passwd_*.
21440 (dflt_group_name): New static variable.
21441 (dflt_group): Rename from the_group.
21442 (init_user_info): Init dflt_group fields. Get user's group name
21443 from LookupAccountSid.
21444 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
21445 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
21446 New initialization states.
21447 (globals_of_w32): Initialize them to zero. Initialize the default
21448 group name to "None".
21449 (GetFileSecurity_Name): New global var, the name of the function
21450 to call for GetFileSecurity.
21451 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
21452 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
21453 (get_file_security, get_security_descriptor_owner)
21454 (get_security_descriptor_group, is_valid_sid)
21455 (get_file_security_desc, get_rid, get_name_and_id)
21456 (get_file_owner_and_group): New functions.
21457 (stat): Use get_file_security_desc and get_file_owner_and_group to
21458 report the owner and primary group of each file. Don't ignore the
21459 high 32 bits of file's size, now that st_size is 64-bit wide.
21460 Fix test when to get true file attributes.
21461 (init_user_info): Use get_rid instead of equivalent inline code.
21462 (fstat): Don't ignore the high 32 bits of file's size.
21463
21464 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
21465
21466 * image.c (png_load): Use correct bit-depth for setting background
21467 color.
21468
21469 2008-05-08 Eli Zaretskii <eliz@gnu.org>
21470
21471 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
21472 epa-hook.elc.
21473
21474 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
21475
21476 * font.c (Ffont_match_p): Don't use `iff' in docstring.
21477
21478 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
21479
21480 * macfns.c (Fx_create_frame): Make a copy of frame parameters
21481 because the original parameters are in pure storage now.
21482 (mac_window): Remove unused params. Update callers.
21483
21484 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
21485
21486 * lread.c (substitute_object_recurse): Use lower-level primitives.
21487 Don't signal errors when traversing sub-char-tables.
21488 Don't loop over all the possible characters when traversing char-tables.
21489
21490 * print.c (print_preprocess): Add sub-char-tables to the print-table,
21491 just like we do in print.c.
21492
21493 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
21494
21495 * minibuf.c (Ftry_completion): Remove code left over from when we used
21496 scmp instead of Fcompare_strings.
21497
21498 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
21499
21500 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
21501
21502 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21503
21504 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
21505 Create bitmap context in native byte order.
21506
21507 * macterm.c (XDrawLine)
21508 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
21509 context in native byte order.
21510
21511 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21512
21513 * config.in: Regenerate.
21514
21515 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
21516 New definitions for Image I/O support.
21517 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
21518 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
21519 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
21520 (mac_data_provider_release_data, image_load_image_io)
21521 [USE_MAC_IMAGE_IO]: New functions.
21522 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
21523 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
21524 (init_image_func_pointer) [MAC_OSX]: Remove function.
21525 (image_load_quartz2d) [MAC_OSX]: Check availability of
21526 CGImageCreateWithPNGDataProvider at compile time.
21527 Use lowercase `false' for boolean constant.
21528 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
21529 Use image_load_image_io.
21530 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
21531 Don't check MyCGImageCreateWithPNGDataProvider.
21532 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
21533 Don't call init_image_func_pointer.
21534
21535 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
21536
21537 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
21538 Make variable non-static.
21539 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
21540 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
21541
21542 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
21543 (RED_FROM_ULONG): Mask off higher bits.
21544 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
21545
21546 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
21547 Include AvailabilityMacros.h.
21548 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
21549 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
21550
21551 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
21552
21553 * chartab.c (Fset_char_table_range): If range is t, really set all
21554 chars to that value.
21555
21556 2008-05-03 Eli Zaretskii <eliz@gnu.org>
21557
21558 * dired.c (Ffile_attributes): Don't allow the device number become
21559 negative.
21560
21561 2008-05-02 Daiki Ueno <ueno@unixuser.org>
21562
21563 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
21564
21565 2008-05-02 Juri Linkov <juri@jurta.org>
21566
21567 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
21568 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
21569 DEFAULT argument as a list of default values in docstrings.
21570
21571 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
21572
21573 * puresize.h (BASE_PURESIZE): Increase to 1210000.
21574
21575 2008-05-01 Martin Rudalics <rudalics@gmx.at>
21576
21577 * dispnew.c (change_frame_size_1): Preserve small windows when
21578 shrinking frames by calling set_window_height|width with third
21579 arg 2.
21580
21581 * window.h (struct window): Replace field too_small_ok by field
21582 resize_proportionally.
21583
21584 * window.c (make_window): Initialize resize_proportionally.
21585 (enlarge_window): Temporarily set resize_proportionally to make
21586 sure that shrink_windows does scale the window proportionally.
21587 (shrink_windows): When window has resize_proportionally set try
21588 to shrink it proportionally by stealing from other windows.
21589 (struct saved_window, Fset_window_configuration)
21590 (compare_window_configurations): Handle resize_proportionally.
21591 (WINDOW_TOTAL_SIZE): New macro.
21592 (window_min_size, shrink_windows, size_window): Use it.
21593 (check_min_window_sizes): Remove. Invalid values of
21594 window-min-height|width are handled by window_min_size_2 now.
21595 (size_window, Fsplit_window, enlarge_window)
21596 (adjust_window_trailing_edge, grow_mini_window): Don't call
21597 check_min_window_sizes.
21598 (window_min_size_2, window_min_size_1, window_min_size):
21599 New argument safe_p for retrieving "safe" minimum sizes.
21600 (Fdisplay_buffer, Fsplit_window, enlarge_window)
21601 (adjust_window_trailing_edge, grow_mini_window):
21602 Adjust arguments of window_min_size... functions.
21603 (shrink_windows): Argument min_size removed. New argument
21604 safe_p allows shrinking windows to their safe minimum sizes.
21605 Calculate minimum size and decide whether a window shall be
21606 deleted for each window individually.
21607 (size_window): When nodelete_p equals 2, tell shrink_windows to
21608 delete windows only if their new minimum size is no more safe.
21609 (shrink_window_lowest_first): Call window_min_size_1 to make
21610 sure to preserve modeline of bottom-most window when resizing
21611 the minibuffer.
21612 (Fset_window_configuration, Fcurrent_window_configuration)
21613 (compare_window_configurations): Do not handle
21614 window-min-height|width any more.
21615 (syms_of_window): Clarify window-min-height|width doc-strings.
21616
21617 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
21618
21619 * dired.c (file_name_completion): Fix up the encoding/decoding issue
21620 some more. Copy some of the code from Ftry_completions.
21621 Remove special case code that dates back to initial revision when the
21622 slash was only added when necessary and that can't trigger nowadays.
21623
21624 2008-04-27 Kenichi Handa <handa@m17n.org>
21625
21626 * font.c (font_prop_validate): Signal `error' instead of `font'.
21627
21628 2008-04-29 Jason Rumney <jasonr@gnu.org>
21629
21630 * w32fns.c (Fw32_battery_status): New defun.
21631 (syms_of_w32fns): Defsubr it.
21632
21633 2008-04-28 Andreas Schwab <schwab@suse.de>
21634
21635 * dired.c (file_name_completion): Fix another mixing of encoded
21636 and decoded names.
21637
21638 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
21639
21640 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
21641
21642 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
21643
21644 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
21645
21646 2008-04-27 Andreas Schwab <schwab@suse.de>
21647
21648 * dired.c (file_name_completion): Fix inappropriate mixing of
21649 encoded and decoded names.
21650
21651 * xterm.c (XTread_socket): Fix use of uninitialized variable.
21652
21653 * puresize.h (BASE_PURESIZE): Increase to 1200000.
21654
21655 2008-04-26 Eli Zaretskii <eliz@gnu.org>
21656
21657 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
21658 2008-03-31, it's not needed anymore with `struct stat' definition
21659 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
21660 for the same reasons.
21661
21662 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
21663
21664 * m/sparc.h: Additional redefinitions for GNU/Linux.
21665
21666 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21667
21668 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
21669 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
21670 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
21671 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
21672 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
21673 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
21674 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21675 Likewise.
21676
21677 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
21678 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
21679 (mac_ax_number_of_characters): Add externs.
21680 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
21681 [USE_MAC_TSM]: Likewise.
21682 (mac_handle_text_input_event) [MAC_OSX]:
21683 Handle kEventTextInputOffsetToPos for no active input area case.
21684 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
21685 (mac_handle_document_access_event)
21686 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
21687 (install_application_handler) [MAC_OSX]: Register handlers for
21688 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
21689 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21690 Register mac_handle_document_access_event.
21691
21692 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
21693 Make functions non-static.
21694
21695 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
21696
21697 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
21698 (read_file_name_completion_ignore_case, insert_default_directory)
21699 (Qdefault_directory): Move to minibuffer.el.
21700 (Fread_file_name): Call the new `read-file-name' instead.
21701
21702 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21703
21704 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
21705 Make function non-static.
21706 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
21707 Remove function.
21708 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
21709 Move to mactoolbox.c.
21710 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
21711
21712 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
21713 (mac_rect_make): New macro.
21714
21715 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
21716 instead of float.
21717 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
21718 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
21719 (XSetBackground) [USE_CG_DRAWING]: Likewise.
21720 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
21721 CGRectMake.
21722 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
21723 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
21724 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
21725 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
21726 instead of WindowRef in argument type.
21727 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
21728 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
21729 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
21730 instead of DISPLAY. All uses changed.
21731 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
21732 (x_calc_absolute_position): Simplify so as not to use
21733 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
21734
21735 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
21736 instead of WindowRef in argument type.
21737 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
21738 [TARGET_API_MAC_CARBON]: Remove externs.
21739 (create_apple_event, mac_event_parameters_to_lisp)
21740 [TARGET_API_MAC_CARBON]: Add externs.
21741
21742 * mactoolbox.c (Vmac_ts_script_language_on_focus)
21743 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
21744 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
21745 is clicked.
21746 (x_activate_menubar): Remove extern for saved_menu_event_location.
21747 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
21748 Move from mac.c.
21749
21750 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21751
21752 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
21753 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
21754
21755 2008-04-23 Jason Rumney <jasonr@gnu.org>
21756
21757 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
21758 attributes only for local files.
21759
21760 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
21761 default to Qlocal.
21762
21763 2008-04-22 Juri Linkov <juri@jurta.org>
21764
21765 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
21766 read-buffer-to-switch instead of using the letter "B".
21767
21768 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
21769
21770 * fileio.c (Qdefault_directory): New variable.
21771 (Fread_file_name): Use it to pass `dir' to the completion functions.
21772
21773 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
21774
21775 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
21776
21777 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
21778
21779 * keyboard.c (Vpre_help_message): Remove.
21780 (show_help_echo): Remove default C code.
21781
21782 * dired.c (directory_files_internal, file_name_completion):
21783 Only call ENCODE_FILE if the string is indeed decoded.
21784
21785 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
21786
21787 * Makefile.in (TOOLKIT_DEFINES): Remove.
21788 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
21789
21790 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21791
21792 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
21793 (mactoolbox.o): New target.
21794
21795 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
21796 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
21797
21798 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
21799 Use mac_set_frame_window_background instead of XSetWindowBackground.
21800 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
21801 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
21802 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
21803 instead of SetWindowTitleWithCFString.
21804 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
21805 Move function to mactoolbox.c.
21806 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
21807 Use mac_set_window_modified instead of SetWindowModified.
21808 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
21809 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
21810 (Fx_focus_frame): Use mac_front_non_floating_window instead of
21811 FrontNonFloatingWindow. Use mac_activate_window instead of
21812 ActivateWindow. Use mac_active_non_floating_window instead of
21813 ActiveNonFloatingWindow.
21814 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
21815 Use mac_show_hourglass and mac_hide_hourglass.
21816 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
21817 instead of GetGlobalMouse.
21818 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
21819 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
21820 Use mac_bring_window_to_front instead of BringToFront.
21821 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
21822 mactoolbox.c.
21823 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
21824 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
21825 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
21826 mactoolbox.c.
21827
21828 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
21829 (XtPointer): Move typedef from macmenu.c.
21830 (enum button_type): Move enum from macmenu.c.
21831 (widget_value): Move typedef from macmenu.c.
21832 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
21833 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
21834 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
21835 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
21836 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
21837 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
21838 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
21839 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
21840 (Selection): Move typedef from macselect.c.
21841 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
21842 macterm.c.
21843 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
21844 (mac_is_window_collapsed, mac_bring_window_to_front)
21845 (mac_send_window_behind, mac_hide_window, mac_show_window)
21846 (mac_collapse_window, mac_front_non_floating_window)
21847 (mac_active_non_floating_window, mac_activate_window)
21848 (mac_move_window_structure, mac_move_window, mac_size_window)
21849 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
21850
21851 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
21852 (enum mac_menu_kind): Move enum to mactoolbox.c.
21853 (min_menu_id): Move variable to mactoolbox.c.
21854 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
21855 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
21856 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
21857 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
21858 [TARGET_API_MAC_CARBON]: Likewise.
21859 (XtPointer): Move typedef to macgui.h.
21860 (enum button_type): Move enum to macgui.h.
21861 (widget_value): Move typedef to macgui.h.
21862 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
21863 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
21864 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
21865 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
21866 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
21867 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
21868 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
21869 (popup_activated_flag): Make variable non-static.
21870 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
21871 (add_menu_item, fill_menu, dispose_menus):
21872 Move functions to mactoolbox.c.
21873 (restore_show_help_function, menu_target_item_handler)
21874 (install_menu_target_item_handler, mac_handle_dialog_event)
21875 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
21876 [TARGET_API_MAC_CARBON]: Likewise.
21877 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
21878 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
21879 (find_and_call_menu_selection, name_is_separator): Make function
21880 non-static.
21881 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
21882 to mactoolbox.c.
21883 (set_frame_menubar): Don't call install_menu_quit_handler.
21884 (menu_item_selection): New variable.
21885 (mac_menu_show): Use create_and_show_popup_menu.
21886 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
21887 selection but set variable menu_item_selection. All uses changed.
21888 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
21889 Call install_menu_quit_handler. Move to mactoolbox.c.
21890
21891 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
21892 (Selection): Move typedef to macgui.h.
21893 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
21894 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
21895 Make variables non-static.
21896 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
21897 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
21898 Make functions non-static.
21899 (Vmac_service_selection) [MAC_OSX]: Likewise.
21900 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
21901 (mac_valid_selection_target_p, mac_clear_selection)
21902 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
21903 (mac_put_selection_value, mac_selection_has_target_p)
21904 (mac_get_selection_value, mac_get_selection_target_list)
21905 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
21906 Move functions to mactoolbox.c.
21907 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
21908 Likewise.
21909 (copy_scrap_flavor_data, mac_handle_service_event)
21910 (install_service_handler) [MAC_OSX]: Likewise.
21911 (syms_of_macselect) <Vmac_dnd_known_types>:
21912 Use mac_dnd_default_known_types.
21913
21914 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
21915 Move to mactoolbox.c.
21916 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
21917 (Fx_selection_owner_p): Add EXFUN.
21918 (install_window_handler, remove_window_handler, XSetWindowBackground):
21919 Remove externs.
21920 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
21921 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
21922 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
21923 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
21924 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
21925 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
21926 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
21927 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
21928 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
21929 (create_and_show_popup_menu, mac_get_selection_from_symbol)
21930 (mac_valid_selection_target_p, mac_clear_selection)
21931 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
21932 (mac_put_selection_value, mac_selection_has_target_p)
21933 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
21934 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
21935 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
21936 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
21937 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
21938 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
21939 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
21940 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
21941 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
21942
21943 * mactoolbox.c: New file.
21944
21945 2008-04-18 Jason Rumney <jasonr@gnu.org>
21946
21947 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
21948
21949 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
21950
21951 * character.c (Fmultibyte_char_to_unibyte):
21952 Return latin1 chars unchanged.
21953
21954 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
21955 relocated if it points to `name'.
21956
21957 2008-04-17 Kenichi Handa <handa@m17n.org>
21958
21959 * data.c (Faset): Allow setting a multibyte character in an
21960 ASCII-only unibyte string.
21961
21962 * lisp.h (STRING_SET_MULTIBYTE): New macro.
21963
21964 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
21965
21966 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
21967 done in config.h.
21968
21969 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
21970
21971 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
21972 (Fchar_direction): Add usage in the docstring.
21973
21974 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
21975
21976 * keyboard.c (read_key_sequence): Remove always-true checks.
21977
21978 2008-04-14 Jason Rumney <jasonr@gnu.org>
21979
21980 * w32font.c (w32font_open_internal): Set max_bounds.descent in
21981 compatibility struct, for better underline positioning.
21982
21983 2008-04-13 David Hansen <david.hansen@gmx.net>
21984
21985 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
21986 string.
21987
21988 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
21989
21990 * m/hp800.h (XUINT, XSET): Remove.
21991
21992 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
21993
21994 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
21995 previous change.
21996
21997 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
21998
21999 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
22000 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
22001
22002 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
22003
22004 * keymap.h (map_keymap_canonical): Declare.
22005 * xmenu.c (single_keymap_panes): Use it.
22006
22007 2008-04-11 Glenn Morris <rgm@gnu.org>
22008
22009 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
22010 set the target's value to that of the alias.
22011
22012 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
22013
22014 * term.c (set_tty_color_mode): Left over typo.
22015
22016 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
22017
22018 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
22019 only after check for file name handler functions. Signal, when
22020 native functionality is not supported.
22021 (syms_of_fileio): Declare it unconditionally.
22022
22023 2008-04-10 Jason Rumney <jasonr@gnu.org>
22024
22025 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
22026 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
22027
22028 * w32.c (logon_network_drive): Also logon to remote drives that
22029 are mapped to drive letters.
22030
22031 2008-04-10 Glenn Morris <rgm@gnu.org>
22032
22033 * xdisp.c (truncate-partial-width-windows): Doc fix.
22034
22035 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
22036
22037 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
22038 Move functions to minibuffer.el.
22039 (syms_of_fileio): Don't declare them.
22040
22041 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
22042
22043 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
22044 (syms_of_minibuf): Remove its initialization.
22045
22046 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
22047
22048 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
22049
22050 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
22051
22052 2008-04-09 Jason Rumney <jasonr@gnu.org>
22053
22054 * makefile.w32-in (distclean): Delete makefile too.
22055 (maintainer-clean): New target.
22056
22057 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
22058
22059 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
22060 for new font backend and composite cases.
22061
22062 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
22063
22064 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
22065 Most of the code moved to run_timers.
22066 (do_pending_atimers): Call run_timers.
22067 (run_timers): New function.
22068
22069 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
22070 run atimers.
22071
22072 * process.c (wait_reading_process_output): The same as above.
22073
22074 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
22075
22076 * minibuf.c (last_exact_completion): Remove variable.
22077 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
22078 (complete_and_exit_1, complete_and_exit_2)
22079 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
22080 (Fdisplay_completion_list, display_completion_list_1)
22081 (Fminibuffer_completion_help, Fself_insert_and_exit)
22082 (Fexit_minibuffer, Fminibuffer_message): Move functions to
22083 minibuffer.el.
22084 (syms_of_minibuf): Remove corresponding initializations.
22085
22086 * keyboard.c (Qdeactivate_mark): New var.
22087 (command_loop_1): Use it to call `deactivate-mark'.
22088 (syms_of_keyboard): Initialize it.
22089
22090 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
22091 to another frame.
22092 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
22093 Don't call set_tty_color_mode.
22094 (store_frame_param): Reset previous_frame rather than call
22095 set_tty_color_mode.
22096 * term.c (set_tty_color_mode): Rewrite.
22097 * dispextern.h (set_tty_color_mode): New type.
22098 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
22099
22100 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
22101
22102 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
22103 for generic chars, which do not exist any more in emacs-unicode.
22104
22105 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
22106
22107 * coding.c (detect_coding_emacs_mule)
22108 (Ffind_operation_coding_system): Fix typo.
22109
22110 2008-04-08 Jason Rumney <jasonr@gnu.org>
22111
22112 * w32uniscribe.c (SNAME): Extract only symbol name.
22113
22114 * w32font.h (struct w32_metric_cache): New struct.
22115 (w32font_info): Use it.
22116 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
22117 (CACHE_BLOCKSIZE): New constants.
22118
22119 * w32font.c (Qja, Qko, Qzh): New symbols.
22120 (syms_of_w32font): Initialise them.
22121 (font_matches_spec): Use them to filter by language.
22122 (recompute_cached_metrics): Remove function.
22123 (compute_metrics, clear_cached_metrics): New functions.
22124 (w32font_encode_char): Use them to manage metric cache.
22125 (w32font_text_extents): Cache metrics for all glyphs on demand.
22126 Delay converting glyph indices to WORD until needed.
22127 (w32font_open_internal): Initialize metric cache to empty.
22128 (registry_to_w32_charset): Charset should always be a symbol.
22129 (fill_in_logfont, list_all_matching_fonts): Family should
22130 always be a symbol.
22131
22132 2008-04-06 Jason Rumney <jasonr@gnu.org>
22133
22134 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
22135 Give up if glyph indices not supported. Use uniscribe obtained
22136 ABC widths for individual metrics. Map glyph clusters back to
22137 characters using fClusterStart flag. Return number of glyphs
22138 produced, not chars processed.
22139 (uniscribe_shape): Map char at FROM to current glyph.
22140
22141 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22142
22143 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
22144 Use SetMenuItemHierarchicalMenu.
22145
22146 2008-04-05 Jason Rumney <jasonr@gnu.org>
22147
22148 * image.c (pbm_load): Allow color values up to 65535.
22149 Throw an error if max_color_idx is outside the supported range.
22150 Report an error when image size is invalid.
22151 Read two bytes at a time when raw images have max_color_idx above 255.
22152
22153 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
22154
22155 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
22156 append "CCL: Quitted" when the CCL program is quitted.
22157 (setup_ccl_program): Initialize ccl->quit_silently to zero.
22158
22159 * ccl.h (struct ccl_program): New member quit_silently.
22160
22161 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
22162
22163 * search.c (compile_pattern_1): Treat non-nil and non-string of
22164 search-spaces-regexp as nil.
22165
22166 * minibuf.c (Fassoc_string): Tweak docstring.
22167
22168 2008-04-05 Eli Zaretskii <eliz@gnu.org>
22169
22170 * dired.c (Ffile_attributes): Support inode numbers wider than 32
22171 bits. Remove ugly WINDOWSNT-specific kludge introduced on
22172 2008-03-14 to force inode be positive.
22173
22174 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
22175 _S_* ones, since we now use our own sys/stat.h.
22176 (stat, fstat): Don't mangle the inode number.
22177 (init_user_info): Don't restrict UID and GID to 0-60000 range.
22178
22179 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
22180
22181 * frame.h (struct frame): Give one more bit to `visible' since we use
22182 values larger than 1 to indicate obscured frames on ttys.
22183
22184 * keymap.c (Qkeymap_canonicalize): New var.
22185 (Fmap_keymap_internal): New fun.
22186 (describe_map): Use keymap-canonicalize.
22187
22188 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
22189 (Fundo_boundary): Set them.
22190 (syms_of_undo): Initialize them.
22191 (record_point): Use them instead of last_point_position*.
22192 (last_undo_buffer): Change type.
22193
22194 2008-04-04 Jason Rumney <jasonr@gnu.org>
22195
22196 * w32font.c (w32font_text_extents): Use font's ascent and descent.
22197 (recompute_cached_metrics): Don't set ascent and descent per char.
22198
22199 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
22200 (uniscribe_check_otf): Add GC protection before consing.
22201 Rearrange loop for counting features.
22202
22203 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
22204
22205 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
22206 buffer with byte-size of source buffer.
22207
22208 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
22209
22210 * callint.c (Fcall_interactively): Handle temporary region even
22211 when shift-select-mode is off.
22212
22213 2008-04-03 Jason Rumney <jasonr@gnu.org>
22214
22215 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
22216
22217 2008-04-03 Kenichi Handa <handa@m17n.org>
22218
22219 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
22220 (CATEGORY_MASK_UTF_16): Likewise.
22221 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
22222 binary file.
22223 (detect_coding): Add null-byte detection for a binary file.
22224 (detect_coding_system): Likewise.
22225
22226 2008-04-03 Jason Rumney <jasonr@gnu.org>
22227
22228 * w32uniscribe.c: New file.
22229
22230 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
22231
22232 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
22233
22234 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
22235 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
22236 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
22237 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
22238 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
22239 (Qphonetic): New symbols.
22240 (syms_of_w32font): Initialize them.
22241 (font_supported_scripts): Use them.
22242 (w32font_list_family): List all charsets.
22243 (w32font_text_extents, recompute_cached_metrics): Fix metric
22244 calculations.
22245 (w32_enumfont_pattern_entity): Make full_type a DWORD.
22246 Give opentype fonts their own format.
22247 (font_matches_spec): New arguments backend and logfont.
22248 Handle :otf spec for uniscribe backend.
22249 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
22250 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
22251
22252 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
22253 font backend.
22254 (globals_of_w32fns): Initialize uniscribe font backend.
22255
22256 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
22257 dependencies.
22258 (w32uniscribe.$(O)): New file to build.
22259 (FONT_OBJ): Include w32uniscribe.$(O).
22260 (LIBS): Add uniscribe libraries.
22261
22262 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
22263
22264 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
22265
22266 * callint.c (Vshift_select_mode): New var.
22267 (Finteractive): Document new ^ spec.
22268 (Fcall_interactively): Call handle-shift-selection if the ^ spec
22269 is present.
22270
22271 * keyboard.c (Vthis_command_keys_shift_translated): New var.
22272 (command_loop_1): Avoid running the direct display versions of
22273 forward-char and backward-char if shift-selection may occur.
22274 (read_key_sequence): Set Vthis_command_keys_shift_translated if
22275 shift-translation takes place.
22276
22277 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
22278 avoid clobbering by define-minor-mode.
22279
22280 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
22281 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
22282
22283 * syntax.c (Fforward_word): Add ^ interactive spec.
22284
22285 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
22286 (Fscroll_right): Add ^ interactive spec.
22287
22288 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
22289
22290 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
22291
22292 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
22293
22294 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
22295
22296 2008-03-31 Juri Linkov <juri@jurta.org>
22297
22298 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
22299
22300 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
22301
22302 * gtkutil.c (xg_set_geometry): Fix indentation.
22303 (xg_resize_outer_widget): Remove.
22304 (x_wm_size_hint_off): Fix indentation.
22305 (xg_frame_set_char_size): Call flush_and_sync after
22306 gtk_window_resize.
22307 (x_wm_set_size_hint): Pass NULL as geometry window to
22308 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
22309 Add menu bar and tool bar height to base height.
22310 (xg_update_frame_menubar, free_frame_menubar)
22311 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
22312 (update_frame_tool_bar, free_frame_tool_bar):
22313 Change xg_resize_outer_widget to xg_frame_set_char_size.
22314
22315 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
22316
22317 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
22318 (Fdbus_call_method): New parameter TIMEOUT.
22319 (dbus-send-signal): Optimize UNGCPRO call.
22320
22321 2008-03-29 Juri Linkov <juri@jurta.org>
22322
22323 * window.c (Fdisplay_buffer): Move call to
22324 Vsplit_window_preferred_function out of conditions that check
22325 if window is eligible for vertical splitting.
22326 When Vsplit_window_preferred_function is non-nil, call it and use
22327 its non-nil return value as window. Otherwise, continue doing
22328 vertical splitting using Fsplit_window with arg horflag=nil.
22329 (syms_of_window) <Vsplit_window_preferred_function>: Change the
22330 default value from `split-window' to nil.
22331
22332 2008-03-29 Juri Linkov <juri@jurta.org>
22333
22334 * callint.c (Fcall_interactively): Revert 2008-03-16 change
22335 for interactive code letters 'b' and 'B'.
22336
22337 2008-03-29 Eli Zaretskii <eliz@gnu.org>
22338
22339 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
22340 multibyte string.
22341
22342 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
22343
22344 * keyboard.c (pending_funcalls): New var.
22345 (timer_check): Run it.
22346 (syms_of_keyboard): Initialize it.
22347 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
22348 (Vdelete_terminal_functions): New vars.
22349 (syms_of_terminal): Initialize them.
22350 (Fdelete_terminal): Run delete-terminal-functions.
22351 * xdisp.c (safe_eval): Rewrite.
22352 (safe_call2): New fun.
22353 * frame.c (Qdelete_frame_functions): New var.
22354 (syms_of_frame): Initialize it.
22355 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
22356 * lisp.h (safe_call2, pending_funcalls): Declare.
22357
22358 2008-03-28 Andreas Schwab <schwab@suse.de>
22359
22360 * indent.c (Fmove_to_column): Move declaration before statements.
22361
22362 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
22363
22364 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
22365 (struct frame): Use bit fields for boolean vars.
22366
22367 * process.c (server_accept_connection): Simplify naming.
22368 (emacs_get_tty_pgrp): Use SDATA.
22369
22370 * coding.c (decode_coding_object): Fix last change.
22371
22372 2008-03-27 Jason Rumney <jasonr@gnu.org>
22373
22374 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
22375
22376 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
22377
22378 * charset.c (Fdefine_charset_internal): Change the way of
22379 registering charsets in Vcharset_order_list.
22380 (syms_of_charset): Make the charset `eight-bit' supplementary.
22381
22382 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
22383
22384 * regex.c (EXTEND_BUFFER): Change order of pointer addition
22385 operations, to avoid having the difference between pointers
22386 overflow.
22387
22388 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
22389
22390 * indent.c (check_display_width): New fun.
22391 (scan_for_column): Use it.
22392
22393 * data.c (syms_of_data): Mark most-positive-fixnum and
22394 most-negative-fixnum as constants.
22395
22396 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
22397
22398 * indent.c (scan_for_column): Extract from current_column_1.
22399 Merge with the same code from Fmove_to_column.
22400 (current_column_1, Fmove_to_column): Use it.
22401
22402 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
22403
22404 * keymap.c (map_keymap_internal): New fun.
22405 (map_keymap): Use it.
22406 (Fmap_keymap_internal): New fun.
22407 (Fmap_keymap): Remove left-out test from before make_save_value.
22408
22409 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
22410
22411 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
22412 Use XCAR/XCDR.
22413
22414 * process.h (struct Lisp_Process): Remove filter_multibyte.
22415 * process.c (QCfilter_multibyte): Remove.
22416 (setup_process_coding_systems): Don't use filter_multibyte.
22417 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
22418 (read_process_output): Don't adjust multibyteness to filter_multibyte.
22419 (Fset_process_filter_multibyte): Change the coding-system to
22420 approximate the previous behavior.
22421 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
22422 coding-system.
22423
22424 * coding.c (decode_coding_object): When not decoding into a buffer,
22425 obey the coding system's preference of (uni|multi)byte.
22426
22427 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
22428
22429 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
22430 every char is changed and has a different byte-length.
22431 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
22432 Fix int -> EMACS_INT.
22433
22434 2008-03-23 David Hansen <david.hansen@gmx.net>
22435
22436 * dbusbind.c (xd_read_message): Remove extra copying of message
22437 strings. Check for NULL `interface' or `member'.
22438
22439 2008-03-22 Eli Zaretskii <eliz@gnu.org>
22440
22441 * w32.c (readdir): If FindFirstFile/FindNextFile return in
22442 cFileName a file name that includes `?' characters, use the 8+3
22443 alias in cAlternateFileName instead.
22444
22445 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
22446
22447 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
22448
22449 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22450
22451 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
22452 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
22453 work on current_buffer only instead (that was already the case
22454 for some of the code anyway).
22455 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
22456 (temp_set_point, temp_set_point_both): Use EMACS_INT.
22457 (SET_PT, SET_PT_BOTH): Adjust.
22458 * intervals.h (set_point, temp_set_point, set_point_both)
22459 (temp_set_point_both): Remove redundant declarations.
22460
22461 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22462
22463 * fileio.c (Finsert_file_contents):
22464 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
22465 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
22466 when buffer != current_buffer anyway.
22467
22468 2008-03-20 Andreas Schwab <schwab@suse.de>
22469
22470 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
22471 as default.
22472
22473 2008-03-19 Jason Rumney <jasonr@gnu.org>
22474
22475 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
22476 (syms_of_w32fns): Initialize them.
22477 (HOURGLASS_ID): New constant.
22478 (x_window_to_frame): Don't check hourglass_window.
22479 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
22480 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
22481 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
22482 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
22483 Only change the cursor if hourglass is not active.
22484 (Fx_create_frame): Initialize frame's current_cursor.
22485 (hourglass_atimer): Remove.
22486 (hourglass_started): New function.
22487 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
22488 (show_hourglass): Adapt to w32, changing argument to frame.
22489
22490 * w32term.h (struct w32_output): Remove hourglass_window.
22491 Add current_cursor.
22492
22493 * eval.c (call_debugger, Fsignal):
22494 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
22495 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
22496 (Fexecute_extended_command, cancel_hourglass_unwind):
22497 * minibuf.c (read_minibuf):
22498 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
22499
22500 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
22501
22502 * window.c (run_funs): New fun.
22503 (run_window_configuration_change_hook): Use it to run the buffer-local
22504 and the global part of the hook.
22505
22506 * xdisp.c (format_mode_line_unwind_data): Add window argument.
22507 (unwind_format_mode_line): Restore selected window.
22508 (x_consider_frame_title, Fformat_mode_line): Set selected window.
22509
22510 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
22511
22512 * editfns.c (Fchar_equal): Check they are valid characters.
22513
22514 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
22515
22516 2008-03-17 Andreas Schwab <schwab@suse.de>
22517
22518 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
22519 against a charset.
22520
22521 * lisp.h (Fbuffer_list): Declare.
22522
22523 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
22524
22525 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
22526 handlebox_widget is != 0.
22527
22528 2008-03-16 Juri Linkov <juri@jurta.org>
22529
22530 * callint.c (Fcall_interactively): For interactive code letters
22531 'b' and 'B' put the buffer list into the list of default "future"
22532 values of the minibuffer.
22533
22534 2008-03-16 Andreas Schwab <schwab@suse.de>
22535
22536 * keyboard.c (read_key_sequence): Fix downcasing of letters with
22537 modifiers.
22538
22539 * regex.c (re_match_2_internal): Correct matching of a charset
22540 against latin-1 characters.
22541
22542 2008-03-16 Kenichi Handa <handa@m17n.org>
22543
22544 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
22545 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
22546 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
22547 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
22548 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
22549 CHAR_STRING_ADVANCE.
22550 (produce_chars): Fix for the case that the source and the
22551 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
22552 instead of CHAR_STRING_ADVANCE.
22553 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
22554 STRING_CHAR_ADVANCE.
22555
22556 2008-03-15 Andreas Schwab <schwab@suse.de>
22557
22558 * regex.c (re_match_2_internal): Correct matching of eight bit
22559 characters in unibyte strings.
22560
22561 2008-03-15 Martin Rudalics <rudalics@gmx.at>
22562
22563 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
22564 at end of range when it coincides with the end of the buffer.
22565
22566 2008-03-14 Eli Zaretskii <eliz@gnu.org>
22567
22568 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
22569
22570 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
22571
22572 2008-03-14 Jason Rumney <jasonr@gnu.org>
22573
22574 * editfns.c (initial_tz): New variable.
22575 (syms_of_editfns): Initialize it.
22576 (Fset_time_zone_rule): Set it when first called.
22577 Use it when TZSTRING is nil.
22578
22579 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
22580 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
22581 (monitor_from_point_fn, get_monitor_info_fn): New globals.
22582 (globals_of_w32fns): Initialize them.
22583 (compute_tip_xy): Use them to position tooltips.
22584
22585 2008-03-14 Glenn Morris <rgm@gnu.org>
22586
22587 * emacs.c (main): Revert previous change.
22588 (standard_args): Revert -internal-script back to -scriptload,
22589 and remove the long-option form.
22590
22591 2008-03-13 Glenn Morris <rgm@gnu.org>
22592
22593 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
22594 Remove option -enable-font-backend.
22595
22596 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
22597
22598 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
22599
22600 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
22601
22602 * xterm.c (x_connection_closed): For GTK: If this is the last
22603 terminal just exit without closing the display.
22604
22605 2008-03-11 Jason Rumney <jasonr@gnu.org>
22606
22607 * w32font.c (w32font_full_name): Use floor to round.
22608
22609 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
22610
22611 * sound.c (alsa_configure): Declare vol at beginning of block.
22612
22613 * fontset.c (Ffontset_info): Remove extra semicolon.
22614
22615 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
22616
22617 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
22618 size of resulting string.
22619
22620 2008-03-10 Jason Rumney <jasonr@gnu.org>
22621
22622 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
22623
22624 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22625
22626 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
22627 Don't pretend as if characters with display property haven't been
22628 consumed for string-replacing-string case.
22629
22630 2008-03-08 Kim F. Storm <storm@cua.dk>
22631
22632 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
22633 (get_next_display_element, next_element_from_string)
22634 (next_element_from_ellipsis, next_element_from_buffer): Use it.
22635
22636 2008-03-08 Andreas Schwab <schwab@suse.de>
22637
22638 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
22639
22640 2008-03-06 Jason Rumney <jasonr@gnu.org>
22641
22642 * w32font.c (w32_registry): Take font_type argument. Use ANSI
22643 when charset not specified. Only translate ANSI to unicode when
22644 font_type is truetype.
22645 (w32font_coverage_ok): New function.
22646 (add_font_entity_to_list): Use it to filter unsuitable fonts.
22647
22648 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
22649
22650 * lread.c (Fread_char): Resolve modifiers.
22651 (Fread_char_exclusive): Likewise.
22652
22653 * character.c (char_resolve_modifier_mask): New function.
22654 (char_string): Use char_resolve_modifier_mask.
22655 (Fchar_resolve_modifiers): New function.
22656 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
22657 function.
22658
22659 2008-03-04 Jason Rumney <jasonr@gnu.org>
22660
22661 * makefile.w32-in: Always include w32font.c in the build.
22662 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
22663
22664 2008-03-04 Andreas Schwab <schwab@suse.de>
22665
22666 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
22667 (versionclean): Likewise.
22668
22669 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
22670
22671 * .cvsignore: Add oo.
22672
22673 2008-03-03 Andreas Schwab <schwab@suse.de>
22674
22675 * coding.c (decode_coding_object): Inhibit gap shrinking while
22676 decoding in place.
22677
22678 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
22679
22680 * w32term.c: Remove unused include "gnu.h".
22681 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
22682
22683 * gnu.h: Rename to ...
22684 * emacs-icon.h: ... this.
22685 * xterm.c: Use emacs-icon.h instead of gnu.h.
22686 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
22687
22688 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
22689
22690 * w32font.c: Include math.h.
22691
22692 2008-03-03 Jason Rumney <jasonr@gnu.org>
22693
22694 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
22695 Compute options separately.
22696 (w32font_open_internal): Set glyph_idx before caching metrics.
22697
22698 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
22699 Define if system headers don't.
22700 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
22701 (w32font_encode_char): Don't declare here.
22702
22703 * w32font.c (Quniscribe, QCformat): New symbols.
22704 (syms_of_w32font): Define them.
22705 (w32font_has_char): Indicate uncertainty.
22706 (w32font_encode_char): Encode as glyph point. Make static.
22707 (recompute_cached_metrics): New function.
22708 (w32font_open_internal): Use it. Set font to use glyph points
22709 initially. Set format based on type of font.
22710 (w32font_text_extents, w32font_draw): Optionally use glyph points.
22711 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
22712 on it. Set format based on information available here.
22713 (add_font_entity_to_list): Identify backend based on opentype_only.
22714
22715 2008-03-02 Andreas Schwab <schwab@suse.de>
22716
22717 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
22718
22719 * coding.c (decode_coding_big5, produce_chars):
22720 Fix typos in last change.
22721
22722 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
22723
22724 * gnu.h: New icon.
22725
22726 2008-03-02 Kenichi Handa <handa@m17n.org>
22727
22728 * coding.c (decode_coding_utf_8): When eol-type of CODING is
22729 `dos', don't decode '\r' if that is the last in the source.
22730 (decode_coding_utf_16, decode_coding_emacs_mule)
22731 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
22732 (decode_coding_raw_text, decode_coding_charset): Likewise.
22733 (produce_chars): Don't decode EOL here. Use EMACS_INT.
22734
22735 2008-03-01 Jason Rumney <jasonr@gnu.org>
22736
22737 * w32font.c (w32font_full_name): Report point size for scalable fonts.
22738
22739 2008-03-01 Kim F. Storm <storm@cua.dk>
22740
22741 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
22742
22743 2008-03-01 Jason Rumney <jasonr@gnu.org>
22744
22745 * w32font.c (w32font_full_name): New function.
22746 (w32font_open_internal): Use it.
22747
22748 2008-03-01 Kim F. Storm <storm@cua.dk>
22749
22750 * dispnew.c (line_draw_cost): Fix invalid glyph check.
22751
22752 2008-03-01 Jason Rumney <jasonr@gnu.org>
22753
22754 * font.c (font_unparse_fcname): Increase len when style is a symbol.
22755
22756 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
22757
22758 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
22759 xg_frame_resized when the event is for the edit widget.
22760
22761 * gtkutil.h (xg_frame_resized): Rename from xg_resize_widgets.
22762
22763 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
22764 set_char_size.
22765 (xg_frame_resized): Rename from xg_resize_widgets. Remove all
22766 operations on widgets here. Just set frame size if needed.
22767 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
22768 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
22769 (x_wm_set_size_hint): Set size hints on the edit widget only, not
22770 the whole frame.
22771 (xg_create_tool_bar): Move attachment of the tool bar to
22772 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
22773 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
22774
22775 2008-03-01 Jason Rumney <jasonr@gnu.org>
22776
22777 * w32fns.c (w32_msg_pump): Disable debug code.
22778
22779 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22780
22781 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
22782
22783 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
22784
22785 * xdisp.c (next_overlay_string): Don't set
22786 overlay_strings_at_end_processed_p if we're currently reading from
22787 a display string.
22788
22789 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
22790
22791 * xdisp.c (get_overlay_strings_1): Fix typo.
22792
22793 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
22794
22795 * xdisp.c (get_overlay_strings_1): Add missing argument type.
22796
22797 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
22798
22799 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
22800
22801 * xdisp.c (display_mode_element): Cancel the previous change.
22802 (decode_mode_spec): Likewise.
22803 (handle_auto_composed_prop): Don't make composition if it->string
22804 is a string.
22805
22806 2008-02-27 Kim F. Storm <storm@cua.dk>
22807
22808 * lisp.h (GLYPH): Change type from int to struct with separate char
22809 and face_id members.
22810 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
22811 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
22812 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
22813 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
22814 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
22815 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
22816 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
22817 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
22818 handle new Lisp glyph code encoding, either an integer or a cons.
22819
22820 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
22821 (GLYPH_ALIAS): Delete.
22822 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
22823 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
22824 (GLYPH_FROM_CHAR): Replace macro by ...
22825 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
22826
22827 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
22828 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
22829 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
22830 (GLYPH_INVALID_P): New macro.
22831 (spec_glyph_lookup_face): Update prototype.
22832
22833 * dispnew.c (line_draw_cost): Adapt to new glyph type.
22834 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
22835 new glyph code encoding.
22836 (spec_glyph_lookup_face): No return value; update passed glyph instead.
22837 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
22838
22839 * xdisp.c (get_next_display_element, next_element_from_display_vector):
22840 Adapt to new glyph type and new glyph code encoding.
22841
22842 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
22843
22844 * indent.c (current_column, current_column_1, Fmove_to_column)
22845 (compute_motion): Adapt to new glyph code encoding.
22846
22847 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
22848
22849 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
22850
22851 * process.c (wait_reading_process_output): Check for window
22852 changes caused by timers.
22853 Suggested by Johan Bockgård.
22854
22855 2008-02-27 Glenn Morris <rgm@gnu.org>
22856
22857 * emacs.c (USAGE1): Add `--disable-font-backend'.
22858
22859 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
22860
22861 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
22862 is made to the buffer.
22863
22864 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
22865
22866 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
22867 (face_at_string_position):
22868 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
22869 (face_at_string_position):
22870 * xdisp.c (display_string, next_overlay_change):
22871 * buffer.h (overlays_at):
22872 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
22873 Update callers.
22874
22875 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
22876
22877 * editfns.c (Fformat): Doc fix.
22878
22879 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
22880
22881 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
22882 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
22883 (Ffont_otf_alternates, Fquery_font): Doc fixes.
22884
22885 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
22886
22887 * buffer.c (Fbuffer_swap_text): New function.
22888 (syms_of_buffer): Defsubr it.
22889
22890 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
22891
22892 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
22893
22894 2008-02-25 Jason Rumney <jasonr@gnu.org>
22895
22896 * w32font.c (w32font_draw): Draw one character at a time when padding.
22897
22898 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
22899
22900 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
22901 Handle a nil arg. Use run_window_configuration_change_hook.
22902 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
22903 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
22904 Use run_window_configuration_change_hook.
22905
22906 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
22907
22908 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
22909 1-pixel width.
22910
22911 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
22912
22913 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
22914 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
22915 if the glyph in the font is zero pixel with.
22916
22917 * dispextern.h (struct glyph_string): New member padding_p.
22918
22919 * w32font.c (w32font_draw): Pay attention to s->padding_p.
22920
22921 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
22922
22923 * xfont.c (xfont_draw): Pay attention to s->padding_p.
22924
22925 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
22926
22927 * font.c: If the font driver doesn't have `shape' function, return Qnil.
22928
22929 2008-02-25 Jason Rumney <jasonr@gnu.org>
22930
22931 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
22932
22933 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
22934
22935 Allow fine-grained image-cache flushing.
22936 * dispextern.h (struct image): Add `dependencies' field.
22937 (clear_image_caches): Change arg to Lisp_Object.
22938 * image.c (make_image): Initialize `dependencies' field.
22939 (clear_image_cache): Change arg to allow fine-grained flushing.
22940 Perform the flush even if image-cache-eviction-delay is nil.
22941 (clear_image_caches): Change arg to Lisp_Object.
22942 (Fclear_image_cache): Expand meaning of the argument.
22943 (mark_image): Mark `dependencies' field.
22944 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
22945 (lface_hash): Use XHASH rather than XFASTINT.
22946 (face_at_buffer_position): Fix int -> EMACS_INT position.
22947 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
22948 (select_frame_for_redisplay): Remove code duplication.
22949 (redisplay_internal): Adapt arg to call to clear_image_caches.
22950
22951 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
22952
22953 * s/vms4-0.h:
22954 * s/vms4-2.h:
22955 * s/vms4-4.h:
22956 * s/vms5-5.h: Remove, unused.
22957
22958 * s/irix5-2.h:
22959 * s/irix6-0.h:
22960 * s/riscos5.h:
22961 * s/mach-bsd4-3.h:
22962 * m/mips4.h: Remove files for obsolete systems.
22963
22964 * Makefile.in:
22965 * filelock.c:
22966 * unexmips.c:
22967 * m/hp9000s300.h:
22968 * m/iris4d.h:
22969 * s/aix3-1.h:
22970 * s/hpux.h:
22971 * s/msdos.h:
22972 * s/usg5-0.h:
22973 * s/usg5-2-2.h:
22974 * s/usg5-2.h:
22975 * s/usg5-3.h: Remove references to obsolete variables.
22976
22977 * s/irix5-0.h: Remove, move all the contents ...
22978 * s/irix6-5.h: ... here. Simplify.
22979 * config.in: Regenerate.
22980
22981 2008-02-24 Jason Rumney <jasonr@gnu.org>
22982
22983 * w32term.c (x_draw_glyph_string_background): Clear the background
22984 manually when cleartype is in use.
22985 (x_draw_glyph_string_foreground): Draw text transparently when
22986 cleartype is in use.
22987
22988 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
22989 a font into it unless we have to.
22990
22991 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
22992
22993 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
22994 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
22995
22996 2008-02-18 Jason Rumney <jasonr@gnu.org>
22997
22998 * w32fns.c (Fw32_shell_execute): Encode parameters.
22999
23000 2008-02-09 Eli Zaretskii <eliz@gnu.org>
23001
23002 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
23003
23004 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
23005
23006 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
23007
23008 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
23009
23010 * xterm.c (x_set_offset): Don't change the gravity if
23011 CHANGE_GRAVITY is -1.
23012
23013 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
23014
23015 * fileio.c (auto_save_error_occurred): New var.
23016 (auto_save_error): Set it.
23017 (Fdo_auto_save): Don't overwrite the error message if an auto-save
23018 error occurred.
23019
23020 2008-02-23 Eli Zaretskii <eliz@gnu.org>
23021
23022 * w32.c (globals_of_w32): Add initializations for
23023 g_b_init_get_sid_sub_authority and
23024 g_b_init_get_sid_sub_authority_count.
23025
23026 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
23027
23028 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
23029 (font_parse_xlfd): Use them for sanity check.
23030 (Finternal_set_font_style_table): Make sure the table is bijective.
23031
23032 Consolidate the image_cache to the terminal struct.
23033 * termhooks.h (P_): Remove redundant def.
23034 (struct terminal): New field `image_cache'.
23035 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
23036 of FRAME_X_IMAGE_CACHE.
23037 * xterm.h (struct x_display_info): Remove image_cache field.
23038 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
23039 * w32term.h (struct w32_display_info): Remove image_cache field.
23040 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
23041 * macterm.h (struct mac_display_info): Remove image_cache field.
23042 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
23043 * xterm.c (x_term_init):
23044 * w32term.c (w32_term_init):
23045 * macterm.c (mac_term_init): Set the image_cache in the terminal.
23046 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
23047 Remove declarations.
23048 (clear_image_caches, mark_image_cache): New declarations.
23049 * xfaces.c (clear_face_cache):
23050 * xdisp.c (redisplay_internal): Use clear_image_caches.
23051 * image.c (clear_image_cache): Don't check that a frame is on
23052 a window-system before checking if it shares the same cache.
23053 (clear_image_caches): New function.
23054 (Fclear_image_cache): Use it.
23055 (mark_image): Move from allo.c.
23056 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
23057 * alloc.c (mark_image, mark_image_cache): Move to image.c.
23058 (mark_object): Don't call mark_image_cache for frames.
23059 (mark_terminals): Call mark_image_cache.
23060
23061 * lisp.h (Fdelete_terminal): Declare.
23062
23063 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
23064 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
23065 wrong_type_argument.
23066
23067 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
23068
23069 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
23070 malayalam.el, and tamil.el. Add sinhala.el.
23071
23072 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
23073
23074 * xterm.c (x_connection_closed): Consolidate identical tests.
23075 (x_delete_terminal): Don't crash if called via x_connection_closed.
23076
23077 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
23078
23079 * xdisp.c (decode_mode_spec): New arg string.
23080 (display_mode_element): Adjust for the above change.
23081
23082 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
23083
23084 * callint.c (Fcall_interactively): Use AREF.
23085
23086 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
23087
23088 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
23089
23090 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
23091
23092 * xfns.c (Fx_show_tip): Set string to " " if empty.
23093
23094 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
23095
23096 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
23097 with Qt.
23098
23099 2008-02-17 Kenichi Handa <handa@m17n.org>
23100
23101 * ftfont.c (ftfont_shape): Return Lispy number.
23102
23103 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
23104 for GCs.
23105 (Finternal_set_font_selection_order): Call font_update_sort_order
23106 only when enable_font_backend is set.
23107 (realize_x_face): Set face->font_info to that of default face only
23108 when enable_font_backend is set.
23109
23110 * xdisp.c (handle_composition_prop): Set it->c to the fist
23111 character of the composed region.
23112 (fill_composite_glyph_string): Set base_face->font_info to
23113 s->font_info. Get a face for ascii from base_face->ascii_face.
23114 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
23115 with a face already decided.
23116 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
23117 non-negative.
23118 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
23119 call font_prepare_composition unconditionally.
23120
23121 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
23122
23123 * xterm.h (struct x_display_info): New member font.
23124
23125 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
23126 (x_set_mouse_face_gc, x_new_font): Likewise.
23127 (x_term_init): Setup display_info->font.
23128 (x_delete_terminal): Free display_info->font.
23129
23130 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
23131
23132 * ftxfont.c (ftxfont_default_fid): Delete it.
23133 (ftxfont_open): Set xfont->fid to 0.
23134 (ftxfont_end_for_frame): Clear data specific to the frame and the
23135 font-driver.
23136
23137 * xftfont.c (xftfont_default_fid): Delete it.
23138 (xftfont_open): Set xfont->fid to 0.
23139
23140 * fontset.c (FONTSET_OBJLIST): New macro.
23141 (fontset_find_font): Update font-object list of the fontset.
23142 (free_realized_fontset): New function.
23143 (free_face_fontset): Call free_realized_fontset.
23144 (Ffont_info): Call font_close_object only when enable_font_backend
23145 is set.
23146
23147 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
23148 [HAVE_NTGUI]: Include w32term.h.
23149 [MAC_OS]: Include macterm.ch.
23150 (font_otf_ValueRecord): Use make_number.
23151 (font_finish_cache): Fix handling of reference count.
23152 (font_clear_cache): Update num_fonts.
23153 (font_open_entity): Update smallest_char_width and
23154 smallest_font_height of the frame.
23155 (font_close_object): Update num_fonts.
23156 (Fclear_font_cache): Fix finding the target cache data.
23157
23158 2008-02-16 Glenn Morris <rgm@gnu.org>
23159
23160 * fontset.c (Finternal_char_font): Fix compilation warning.
23161
23162 2008-02-16 Eli Zaretskii <eliz@gnu.org>
23163
23164 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
23165 instead of char arrays. Enlarge the size of array passed to
23166 get_token_information.
23167
23168 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
23169 warnings.
23170
23171 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
23172
23173 * .gdbinit: Don't set `args', it breaks gdb --args.
23174
23175 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
23176
23177 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
23178 within a narrowed buffer.
23179
23180 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
23181
23182 * coding.c (decode_coding_object, encode_coding_object):
23183 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
23184
23185 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
23186
23187 * coding.c (coding_set_destination): Use BEG_BYTE rather than
23188 hardcoding 1.
23189 (detect_coding_system):
23190 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
23191 (string_char_to_byte, string_byte_to_char, insert_from_gap):
23192 * insdel.c (insert_from_gap):
23193 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
23194 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
23195 (string_to_multibyte):
23196 * character.c (chars_in_text, multibyte_chars_in_text):
23197 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
23198
23199 * character.h (FETCH_STRING_CHAR_ADVANCE)
23200 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
23201 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
23202 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
23203
23204 * casefiddle.c (casify_region): Only call after-change and composition
23205 functions on the part of the region that was changed.
23206
23207 * keyboard.c (read_avail_input):
23208 * frame.c (Fdelete_frame): Call Fdelete_terminal.
23209
23210 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
23211
23212 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
23213 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
23214
23215 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
23216
23217 * w32menu.c (push_submenu_start, push_submenu_end)
23218 (push_left_right_boundary, push_menu_pane, push_menu_item):
23219 * keyboard.c (read_key_sequence): Don't pass args with side effects
23220 to AREF, it fails when compiling with -DENABLE_CHECKING.
23221
23222 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
23223
23224 * Makefile.in (${lispsource}international/charprop.el):
23225 Delete this target.
23226
23227 * search.c (boyer_moore): Fix incorrect synching of the trunk and
23228 emacs-unicode-2.
23229
23230 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
23231
23232 * terminal.c (Fdelete_terminal): Clean up the `force' path.
23233
23234 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
23235
23236 * frame.c (Qnoelisp): New symbol.
23237 (syms_of_frame): Initialize it.
23238 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
23239 harmless Elisp code, from a strong `force' from x_connection_closed.
23240 * frame.h (Qnoelisp): Declare.
23241 * xterm.c (x_connection_closed): Pass `noelisp'.
23242
23243 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
23244 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
23245 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
23246 rather than `int' for the type of `type'.
23247
23248 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
23249
23250 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
23251
23252 * Makefile.in (GNUC): Remove support for gcc-1.x.
23253
23254 2008-02-10 Richard Stallman <rms@gnu.org>
23255
23256 * lisp.h (ASET): Use AREF, not ASLOT.
23257
23258 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
23259
23260 * lisp.h (ASET): Check bounds.
23261
23262 2008-02-10 Glenn Morris <rgm@gnu.org>
23263
23264 * buffer.c (mode-name): Doc fix.
23265
23266 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
23267
23268 * Makefile.in:
23269 * emacs.c:
23270 * gmalloc.c:
23271 * keyboard.c:
23272 * lisp.h:
23273 * m/ibm370aix.h:
23274 * process.c:
23275 * regex.c:
23276 * s/hpux.h:
23277 * sysdep.c:
23278 * sysselect.h:
23279 * systty.h:
23280 * unexec.c:
23281 * w32term.c:
23282 * xsmfns.c:
23283 * xterm.c: Remove code that deals with obsolete variables.
23284
23285 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
23286
23287 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
23288 nothing else needs it anymore.
23289
23290 2008-02-09 Eli Zaretskii <eliz@gnu.org>
23291
23292 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
23293 instead of unibyte_char_to_multibyte.
23294
23295 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
23296
23297 * s/gnu-linux.h: Remove commented out code.
23298
23299 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
23300
23301 * Makefile.in: Update what RMS says about using autoconf.
23302 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
23303 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
23304 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
23305 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
23306
23307 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
23308
23309 * keymap.c (Fkey_description): Move side effect outside of macro call.
23310
23311 * xfaces.c (Finternal_make_lisp_face):
23312 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
23313
23314 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
23315 (syms_of_fontset): Use ASET.
23316
23317 * fns.c (concat): Move side effect outside of macro call.
23318 (hash_clear): Use ASET.
23319
23320 2008-02-08 Richard Stallman <rms@gnu.org>
23321
23322 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
23323 If FORCE, and frame has a surrogate minibuffer for another frame,
23324 delete the other frame first.
23325
23326 2008-02-07 Timo Savola <timo.savola@iki.fi>
23327
23328 * xterm.c (x_detect_focus_change): Handle embed client message.
23329 (handle_one_xevent): Ditto.
23330 (handle_one_xevent): If embedded and we get a button press/release,
23331 request focus.
23332 (xembed_set_info, xembed_send_message): New functions.
23333 (x_make_frame_visible): Call xembed_set_info if embedded.
23334 (x_make_frame_invisible): Call xembed_set_info if embedded.
23335 (x_term_init): Initialize Xatom_XEMBED.
23336 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
23337 (x_iconify_frame): Ditto.
23338
23339 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
23340 (enum xembed_info, enum xembed_message, enum xembed_focus)
23341 (enum xembed_modifier, enum xembed_accelerator): New.
23342 (xembed_set_info, xembed_send_message): Declare.
23343 (FRAME_X_EMBEDDED_P): New.
23344
23345 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
23346 gtk_plug_new.
23347
23348 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
23349 window ID of a frame.
23350 (x_window): Reparent frame if embedded.
23351 (Fx_create_frame): Don't set border width if embedded.
23352
23353 * emacs.c (USAGE3): Add --parent-id.
23354 (standard_args): Ditto.
23355
23356 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
23357
23358 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
23359
23360 2008-02-07 Jim Meyering <meyering@redhat.com>
23361
23362 Use "do...while (0)", not "if (1)...else" in macro definitions.
23363 The latter provokes a warning from gcc about the empty else, when
23364 followed by ";". Also, without that trailing semicolon, it would
23365 silently swallow up any following statement.
23366 * syntax.h (SETUP_SYNTAX_TABLE)
23367 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
23368 * buffer.h (DECODE_POSITION): Likewise.
23369 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
23370 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
23371 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
23372 (FETCH_CHAR_ADVANCE): Likewise.
23373 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
23374
23375 2008-02-07 Jim Meyering <meyering@redhat.com>
23376
23377 * lread.c [lint]: Don't include <sys/inode.h>.
23378
23379 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
23380
23381 * xselect.c (x_handle_dnd_message):
23382 * xmenu.c (digest_single_submenu, xmenu_show):
23383 * xdisp.c (with_echo_area_buffer_unwind_data)
23384 (format_mode_line_unwind_data, unwind_format_mode_line)
23385 (display_menu_bar):
23386 * eval.c (Ffetch_bytecode):
23387 * doc.c (store_function_docstring):
23388 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
23389 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
23390 * buffer.c (add_overlay_mod_hooklist): Use ASET.
23391
23392 2008-02-07 Kenichi Handa <handa@m17n.org>
23393
23394 * ftxfont.c (ftxfont_open): Don't set
23395 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
23396
23397 * ftfont.c (ftfont_open): Fix previous change.
23398
23399 2008-02-06 Jason Rumney <jasonr@gnu.org>
23400
23401 * w32font.c (w32font_text_extents): Fill in lbearing metric.
23402 Use cached metrics for ASCII characters.
23403 (w32font_open_internal): Don't set font's owning_frame.
23404 Cache metrics for ASCII characters.
23405
23406 * w32font.h (struct w32font_info): Add ascii_metrics.
23407 Remove owning_frame.
23408
23409 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
23410
23411 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
23412 to negative value.
23413
23414 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
23415
23416 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
23417
23418 * charset.c (syms_of_charset): Set QCtest and Qeq.
23419
23420 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
23421
23422 * process.c (Fstart_process):
23423 * callproc.c (Fcall_process): Handle the case where
23424 Funhandled_file_name_directory returns nil.
23425
23426 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
23427 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
23428 * font.c (check_gstring): Use them and AREF to access the vector before
23429 we know it's really a gstring.
23430 (Ffont_shape_text): Fix typo.
23431 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
23432
23433 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
23434 Declare.
23435
23436 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
23437
23438 2008-02-05 Jason Rumney <jasonr@gnu.org>
23439
23440 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
23441 Set smallest_font_height and smallest_char_width in display info.
23442
23443 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
23444
23445 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
23446
23447 2008-02-05 Miles Bader <miles@gnu.org>
23448
23449 * xfaces.c (get_lface_attributes, merge_named_face)
23450 (lookup_named_face, lookup_derived_face, realize_named_face):
23451 Revert 2008-02-01 change by cyd@stupidchicken.com.
23452
23453 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
23454
23455 * fontset.c (Ffontset_info): Handle the case of inhibitting the
23456 fallback fonts.
23457 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
23458
23459 2008-02-04 Jason Rumney <jasonr@gnu.org>
23460
23461 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
23462 set full_name.
23463 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
23464
23465 2008-02-03 Jason Rumney <jasonr@gnu.org>
23466
23467 * makefile.w32-in (OBJ1): Include font.o here.
23468 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
23469
23470 2008-02-02 Jason Rumney <jasonr@gnu.org>
23471
23472 * makefile.w32-in (temacs): Bump EMHEAP to 21.
23473
23474 2008-02-01 Jason Rumney <jasonr@gnu.org>
23475
23476 * s/cygwin.h: Define VIRT_ADDR_VARIES.
23477
23478 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
23479
23480 2008-02-01 Andreas Schwab <schwab@suse.de>
23481
23482 * Makefile.in (shortlisp, lisp): Update for rename of
23483 ../lisp/language/myanmar.el.
23484
23485 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
23486
23487 * xfaces.c (get_lface_attributes): Delete function.
23488 (merge_named_face, lookup_named_face, lookup_derived_face)
23489 (realize_named_face): Call lface_from_face_name directly, and use
23490 the fact that merge_face_vectors does not alter its FROM argument.
23491
23492 2008-02-01 Jason Rumney <jasonr@gnu.org>
23493
23494 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
23495 input in the default locale. Handle non-Unicode multibyte input.
23496
23497 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23498
23499 * fontset.c (reorder_font_vector): Exclude nil elements from the
23500 font group. Don't try multiple fonts.
23501 (fontset_font): Adjust for the above change.
23502 (Finternal_char_font): Return nil if the found font doesn't
23503 contain the character ch.
23504
23505 * Makefile.in (lisp, shortlisp): Add cham.el.
23506
23507 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23508
23509 * font.h (FONTP): Make it return 1 also for a font-object.
23510
23511 * .gdbinit (xfontset): New function.
23512
23513 * font.c (font_find_for_lface): Check if the character C is
23514 supported or not only for the first font.
23515
23516 * fontset.c (reorder_font_vector): Fix typo.
23517 (fontset_find_font): Don't add a font-spec specifying a script.
23518 Use 0 (not Qt) for the indication of empty font-group. Change the
23519 format of RFONT-DEF. Return Qt if no font in the font-group
23520 support the character.
23521 (fontset_font): Adjust for the above change. If no font was
23522 found the character, remember that.
23523 (face_for_char): Adjust for the change of RFONT-DEF.
23524 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
23525 no font for the target.
23526 (Finternal_char_font): Adjust for the change of RFONT-DEF.
23527
23528 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23529
23530 * font.c (font_load_for_face): Handle the case that the font in
23531 face->lface is a string.
23532
23533 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23534
23535 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
23536
23537 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23538
23539 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
23540 Fix previous change. If the frame is not on a window system,
23541 signal an error.
23542
23543 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23544
23545 * coding.c (decode_coding_object, encode_coding_object):
23546 Adjust marker positions after conversion.
23547
23548 * lisp.h (struct Lisp_Marker): New member need_adjustment.
23549
23550 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23551
23552 * font.c (font_find_for_lface): Fix the handling of the return
23553 value of font_has_char.
23554 (Ffont_shape_text): Fix previous change.
23555
23556 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
23557 (fontset_ref_and_range): Delete it.
23558 (fontset_find_font): Call char_table_ref_and_range instead of
23559 FONTSET_REF_AND_RANGE.
23560 (make_fontset): Don't setup font groups of Latin here.
23561 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
23562 (new_fontset_from_font): Make the specified font the default for
23563 all Latin characters.
23564
23565 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23566
23567 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
23568 is on a window system before accessing the fontset of the frame.
23569
23570 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23571
23572 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
23573
23574 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
23575 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
23576
23577 * font.c (Ffont_shape_text): If the font driver doesn't have a
23578 shaper function, make zero-width glyphs to have at least one-pixel
23579 width. Fix setting of `to' field of glyphs.
23580
23581 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23582
23583 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
23584 glyphs.
23585
23586 * font.h (struct font_driver): Improve docstring of member `shape'.
23587
23588 2008-02-01 Kenichi Handa <handa@m17n.org>
23589
23590 * composite.c (syms_of_composite): Fix docstring of
23591 auto-composition-function.
23592
23593 * font.h (LGLYPH_SIZE): New macro.
23594
23595 * font.c (Ffont_fill_gstring): Stop filling when a character not
23596 supported by the font is found.
23597 (Ffont_shape_text): When a shape callback function returns nil,
23598 try at most two more times with larger gstring.
23599 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
23600
23601 * xdisp.c (handle_auto_composed_prop): Change the argument to
23602 auto-composition-function.
23603
23604 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
23605 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
23606 Lispy glyph and store it in the lgstring.
23607
23608 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
23609
23610 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
23611
23612 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23613
23614 * font.c (Ffont_shape_text): Avoid unnecessary composition.
23615
23616 * fontset.c (Vfont_encoding_charset_alist): New variable.
23617 (syms_of_fontset): DEFVAR it.
23618 (reorder_font_vector, fontset_find_font): Optimize for the case of
23619 no need of reordering.
23620 (face_for_char): Map the charset property by
23621 Vfont_encoding_charset_alist.
23622
23623 2008-02-01 Jason Rumney <jasonr@gnu.org>
23624
23625 * w32font.c (logfonts_match): Don't check adstyle here.
23626 (font_matches_spec): Check here against physical font instead.
23627 (add_font_entity_to_list): Avoid some substitutions.
23628
23629 * font.c (font_parse_fcname): Default weight and slant to normal.
23630 (font_score): Prefer normal fonts if weight or slant unspecified.
23631 (font_score) [WINDOWSNT]: Scale weight difference down to closer
23632 match freetype scores.
23633
23634 2008-02-01 Jason Rumney <jasonr@gnu.org>
23635
23636 * w32font.c (w32font_text_extents): Don't use the frame stored in the
23637 font, as it may have been deleted.
23638 (w32_enumfont_pattern_entity): Map generic family to adstyle using
23639 most common hyphenless variation.
23640 (logfonts_match): Check generic family.
23641 (font_matches_spec): Don't check generic family here.
23642 (fill_in_logfont): Set generic family based on adstyle.
23643
23644 * w32font.h (w32font_get_cache): Update declaration.
23645
23646 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23647
23648 * ftfont.c (ftfont_get_cache): Adjust the argument type.
23649
23650 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
23651 If none of the new drivers are available, call font_update_drivers
23652 with the old drivers.
23653
23654 * w32font.c (w32font_get_cache): Adjust the argument type.
23655
23656 * xfont.c (xfont_get_cache): Adjust the argument type.
23657
23658 * font.h (struct font_driver): Change argument type of get_cache.
23659
23660 * xftfont.c (xftfont_start_for_frame): Delete prototype.
23661
23662 * font.c (Ffont_get): Fix arguments to Fassoc.
23663 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
23664 (font_clear_cache): New function.
23665 (font_list_entities, font_matching_entity): Use font_get_cache.
23666 (font_update_drivers): Call font_clear_cache when finishing a driver.
23667
23668 * fontset.c (fontset_find_font): Fix previous change.
23669
23670 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23671
23672 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
23673 dpyinfo->font_table.
23674 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
23675 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
23676
23677 * font.c (font_at): Handle the case that the arg C is negative.
23678 Handle the unibyte case.
23679 (Ffont_at): Call font_at with the arg C -1.
23680
23681 * xdisp.c (handle_auto_composed_prop): Don't get a character at
23682 the position here, and call font_at with the arg C -1.
23683 Don't check the range of the existing composition at the point.
23684
23685 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23686
23687 * fontset.c (fontset_add): New args charset_id and family.
23688 Change caller.
23689 (load_font_get_repertory, fontset_find_font): Assume that
23690 font_spec is always a font-spec object.
23691 (Fset_fontset_font): Always store a font-spec object in a fontset.
23692
23693 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
23694 instead of get_property_and_range.
23695
23696 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23697
23698 * xftfont.c (struct xftfont_info): Delete the member ft_face.
23699 (xftfont_open): Don't keep locking face.
23700 (xftfont_close): Don't unlock face.
23701 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
23702
23703 * fontset.c (fontset_find_font): Don't prefer a font of
23704 supplementary charset.
23705
23706 2008-02-01 Kenichi Handa <handa@m17n.org>
23707
23708 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
23709 script, langsys_tag to langsys, new member script.
23710 (OTF_TAG_STR): Terminate by '\0'.
23711 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
23712 listing to the script specified in that property. Fix arg to
23713 OTF_check_features.
23714
23715 2008-02-01 Jason Rumney <jasonr@gnu.org>
23716
23717 * w32font.h: New file.
23718
23719 * w32font.c: Include it.
23720 (struct w32font_info): Add owning_frame field. Move to w32font.h.
23721 (w32font_open): Set owning_frame.
23722 (w32font_text_extents): Use owning_frame.
23723 (struct font_callback_data): Add opentype_only field.
23724 (add_font_entity_to_list): Use it to filter fonts.
23725 Don't check against full name.
23726 (w32font_list_internal): New function.
23727 (w32font_list): Use it.
23728 (w32font_match_internal): New function.
23729 (w32font_match): Use it.
23730 (w32font_open_internal): New function.
23731 (w32font_open): Use it.
23732 (w32font_get_cache, w32font_close, w32font_has_char)
23733 (w32font_encode_char, w32font_text_extents, w32font_draw):
23734 Make non-static.
23735
23736 * makefile.w32-in (w32font.o): Depend on w32font.h.
23737
23738 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23739
23740 * charset.c (Fdefine_charset_internal): Record a supplementary
23741 charset at the tail of Vcharset_order_list.
23742
23743 * font.c (Ffont_shape_text): Fix the return value.
23744
23745 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
23746
23747 * xdisp.c (handle_auto_composed_prop): Fix previous change.
23748
23749 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23750
23751 * ftfont.c (struct OpenTypeSpec): New struct.
23752 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
23753 (ftfont_get_open_type_spec): New function.
23754 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
23755
23756 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
23757
23758 2008-02-01 Jason Rumney <jasonr@gnu.org>
23759
23760 * w32font.c (add_font_entity_to_list): Compare only the beginning
23761 of full name.
23762
23763 2008-02-01 Kenichi Handa <handa@m17n.org>
23764
23765 * xdisp.c (handle_auto_composed_prop): Simplify the code.
23766 Never return HANDLED_RECOMPUTE_PROPS.
23767
23768 2008-02-01 Kenichi Handa <handa@m17n.org>
23769
23770 * font.c (font_gstring_produce): Delete it.
23771
23772 * composite.h (COMPOSITION_METHOD):
23773 Handle COMPOSITION_WITH_GLYPH_STRING.
23774
23775 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23776
23777 * xfont.c (Qx): Delete.
23778 (syms_of_xfont): Don't initialize Qx.
23779
23780 * composite.h (enum composition_method):
23781 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
23782
23783 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23784
23785 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
23786 (choose_face_font): Accept new form of font-spec.
23787
23788 * frame.h (font_driver_list): Declare it unconditionally.
23789 (struct frame): Define members font_driver_list and font_data_list
23790 unconditionally.
23791
23792 * fontset.c: Include "font.h" unconditionally.
23793 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
23794 (Fset_fontset_font): Accept a font-spec object.
23795
23796 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
23797 PIXEL_SIZE part a wild card.
23798
23799 * dispextern.h (struct glyph_string): Define members clip and
23800 num_clips unconditionally.
23801 (struct face): Define members font_info and extra unconditionally.
23802
23803 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
23804 ftfont_info only when HAVE_LIBOTF is defined.
23805
23806 2008-02-01 Andreas Schwab <schwab@suse.de>
23807
23808 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
23809 and end.
23810
23811 2008-02-01 Jason Rumney <jasonr@gnu.org>
23812
23813 * w32font.c (w32font_driver): Add new fields.
23814
23815 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23816
23817 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
23818 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
23819 (LIBES): Add @M17N_FLT_CFLAGS@.
23820
23821 * composite.c (compose_text): Don't treat the new style
23822 composition specially.
23823
23824 * emacs.c (main): Call syms_of_font unconditionally.
23825
23826 * font.h (FONT_ENTITY_NOT_LOADABLE)
23827 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
23828 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
23829 (struct font_driver): New member shape.
23830 (font_registry_charsets): Extern it.
23831 (font_find_for_lface, font_prepare_composition): Adjust prototype.
23832 (font_otf_capability, font_drive_otf): Delete their externs.
23833
23834 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
23835 (font_charset_alist, font_registry_charsets): Move from xfont.c
23836 and rename.
23837 (font_prop_validate_otf): New function.
23838 (font_property_table): Register it for QCotf.
23839 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
23840 (font_drive_otf): Delete.
23841 (font_prepare_composition): New arg F. Adjust for the change of
23842 lispy gstring.
23843 (font_find_for_lface): New arg C.
23844 (font_load_for_face): Adjust for the change of font_find_for_lface.
23845 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
23846 lispy gstring.
23847 (Ffont_shape_text): New function.
23848 (Fopen_font): If the font size is not given, use 12-pixel.
23849 (Ffont_at): New arg STRING.
23850 (syms_of_font): Initialize font_charset_alist.
23851 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
23852 conditionally.
23853
23854 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
23855 fonts of the same font-spec. Change the format of RFONT-DEF.
23856 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
23857 Adjust for the change of RFONT-DEF.
23858 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
23859
23860 * ftfont.h: New file.
23861
23862 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
23863 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
23864 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
23865 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
23866 font_otf_capability and font_drive_otf, set ftfont_shape.
23867 (ftfont_list): Adjust for the change of :otf property value.
23868 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
23869 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
23870 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
23871 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
23872 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
23873 (otf_gstring, gstring, m17n_flt_initialized): New variables.
23874
23875 * w32term.c (x_draw_composite_glyph_string_foreground):
23876 Adjust for the change of lispy gstring.
23877
23878 * xdisp.c (handle_composition_prop): Adjust for the change of
23879 lispy gstring. Call a function for auto-composition with the
23880 third arg it->window.
23881 (fill_composite_glyph_string): Adjust for the change of lispy string.
23882 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
23883
23884 * xfaces.c (set_font_frame_param): Adjust for the change of
23885 font_find_for_lface.
23886
23887 * xfont.c (x_font_charset_alist): Move to font.c and rename.
23888 (xfont_registry_charsets): Likewise. Change caller.
23889 (syms_of_xfont): Don't handle x_font_charset_alist.
23890
23891 * xftfont.c: Include "ftfont.h".
23892 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
23893 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
23894 (xftfont_close) [HAVE_LIBOTF]: Close otf.
23895 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
23896 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
23897 Set xftfont_driver.shape to xftfont_shape.
23898
23899 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
23900 the change of lispy gstring.
23901
23902 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23903
23904 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
23905
23906 2008-02-01 Jason Rumney <jasonr@gnu.org>
23907
23908 * w32font.c (w32font_draw): Fill background manually.
23909
23910 2008-02-01 Jason Rumney <jasonr@gnu.org>
23911
23912 * font.c (Qfontp): Remove unused symbol.
23913 (QCantialias): New symbol.
23914 (syms_of_font): Define it.
23915 (font_property_table): Set a validator for QCantialias.
23916
23917 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
23918 Define if not already.
23919 (QCfamily): Share with xfaces.c.
23920 (Qstandard, Qsubpixel, Qnatural): New symbols.
23921 (syms_of_w32font): Define them. Don't define QCfamily here.
23922 (w32_antialias_type, lispy_antialias_type): New functions.
23923 (w32_enumfont_pattern_entity): New arg requested_font.
23924 Set antialias parameter if non-default was requested.
23925 (fill_in_logfont): Fill in lfQuality if :antialias specified.
23926
23927 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23928
23929 * lread.c (read1): Undo the previous change.
23930
23931 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
23932
23933 * frame.c (Fdelete_frame): Call font_update_drivers only when
23934 USE_FONT_BACKEND is defined.
23935
23936 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23937
23938 * font.h (struct font_bitmap): New member bits_per_pixel.
23939 (struct font_driver): New members start_for_frame and end_for_frame.
23940 (struct font_data_list): New struct.
23941 (font_put_frame_data, font_get_frame_data): Extern them.
23942
23943 * frame.h (struct frame): New member font_data_list.
23944
23945 * font.c (font_update_drivers): Call driver->start_for_frame and
23946 driver->end_for_frame at proper timings.
23947 (font_put_frame_data, font_get_frame_data): New functions.
23948 (Ffont_spec): Add usage in the docstring.
23949
23950 * frame.c (make_frame): Initialize f->font_data_list to NULL.
23951 (Fdelete_frame): Call font_update_drivers.
23952
23953 * xftfont.c (struct xftface_info): Delete the member xft_draw.
23954 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
23955 (xftfont_get_xft_draw): New function.
23956 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
23957 (xftfont_end_for_frame): New function.
23958 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
23959
23960 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
23961 Change argument. Cache GCs in the per-frame data.
23962 (struct ftxfont_frame_data): New struct.
23963 (ftxfont_draw_bitmap): New arg gc_fore and flush.
23964 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
23965 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
23966 (ftxfont_end_for_frame): New function.
23967 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
23968
23969 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
23970
23971 2008-02-01 Kenichi Handa <handa@m17n.org>
23972
23973 * xselect.c (Vselection_coding_system)
23974 (Vnext_selection_coding_system): Delete them.
23975 (syms_of_xselect): Don't declare selection-coding-system and
23976 next-selection-coding-system. They are declared in select.el.
23977
23978 2008-02-01 Jason Rumney <jasonr@gnu.org>
23979
23980 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
23981
23982 * w32fns.c: Include imm.h.
23983 (get_composition_string_fn, get_ime_context_fn): New optional
23984 system functions.
23985 (globals_of_w32fns): Load them from imm32.dll.
23986 (ignore_ime_char): New flag.
23987 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
23988 WM_IME_ENDCOMPOSITION messages.
23989
23990 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
23991 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
23992
23993 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23994
23995 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
23996 (READCHAR_REPORT_MULTIBYTE): New macro.
23997 (readchar): New 2nd arg MULTIBYTE.
23998 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
23999 Make symbol's name multibyte according to the multibyteness of the
24000 source.
24001
24002 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24003
24004 * xfaces.c (face_for_overlay_string): Call lookup_face with
24005 correct arguments (fix of synching with the trunk).
24006
24007 2008-02-01 Kenichi Handa <handa@m17n.org>
24008
24009 * font.c (font_prop_validate_symbol, font_prop_validate_style)
24010 (font_prop_validate_non_neg, font_prop_validate_spacing):
24011 Delete argument prop_index.
24012 (font_property_table): Change arguments to validater. Change Callers.
24013 (font_lispy_object): Delete.
24014 (font_at): Use font_find_object instead fo font_lispy_object.
24015
24016 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
24017
24018 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
24019 and file names.
24020
24021 2008-02-01 Jason Rumney <jasonr@gnu.org>
24022
24023 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
24024 (font_matches_spec): Remove debug output.
24025 (add_font_entity_to_list): Avoid using substituted fonts.
24026
24027 2008-02-01 Jason Rumney <jasonr@gnu.org>
24028
24029 * doc.c (Fsnarf_documentation):
24030 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
24031
24032 2008-02-01 Miles Bader <miles@gnu.org>
24033
24034 * dispextern.h (struct glyph_row): Only define "clip" field if
24035 HAVE_WINDOW_SYSTEM is defined.
24036
24037 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
24038
24039 Fix up multi-tty merge.
24040
24041 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
24042 and indentation.
24043
24044 * xfaces.c (free_realized_face, clear_face_gcs):
24045 Include font_done_for_face in the input_blocked section, just in case.
24046
24047 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
24048 (get_char_face_and_encoding): Undo last change and remove the *other*
24049 duplicate definition (i.e. keep the one that's better scoped and that
24050 includes code for the font-backend).
24051
24052 * terminal.c (create_terminal): Default keyboard_coding to
24053 `no-conversion' and terminal_coding to `undecided'.
24054
24055 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
24056
24057 * fontset.c (free_realized_fontsets): Check that the table entry does
24058 contain a fontset before trying to compare it to `base'.
24059
24060 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
24061 syms_of_charset, and syms_of_coding earlier because init_window_once
24062 now needs Vcoding_system_hash_table to be setup.
24063
24064 * coding.h (default_buffer_file_coding): Remove.
24065
24066 * coding.c (default_buffer_file_coding): Remove.
24067 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
24068 than ->symbol, and use the terminal-local coding system.
24069 (syms_of_coding): Don't setup the coding-systems that are not
24070 terminal-local.
24071 (Fdefine_coding_system_internal): Use XCAR/XCDR.
24072
24073 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
24074 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
24075
24076 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
24077 in chartab.c and were re-added here by mistake.
24078 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
24079
24080 * doc.c (Fsnarf_documentation):
24081 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
24082 src to etc.
24083
24084 * ChangeLog.10: Add mistakenly removed entry.
24085
24086 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
24087
24088 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
24089
24090 2008-02-01 Miles Bader <miles@gnu.org>
24091
24092 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
24093 Add extra args to FACE_FOR_CHAR.
24094
24095 2008-02-01 Kenichi Handa <handa@m17n.org>
24096
24097 * keymap.c (where_is_internal_1): If key is a cons, store the copy
24098 in sequence.
24099
24100 * chartab.c (map_sub_char_table, map_char_table): If the range
24101 contains just one character, call the function with that character
24102 even if the depth is not 3.
24103
24104 2008-02-01 Jason Rumney <jasonr@gnu.org>
24105
24106 * w32font.c (w32font_text_extents): Calculate metrics for the
24107 whole string.
24108
24109 2008-02-01 Jason Rumney <jasonr@gnu.org>
24110
24111 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
24112
24113 2008-02-01 Jason Rumney <jasonr@gnu.org>
24114
24115 * w32term.c (x_set_glyph_string_clipping):
24116 Use get_glyph_string_clip_rects.
24117 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
24118 Adjust for the change of struct glyph_string.
24119
24120 * w32font.c (w32font_draw): Do clipping here.
24121
24122 2008-02-01 Kenichi Handa <handa@m17n.org>
24123
24124 * xftfont.c (xftfont_draw): Adjust for the change of struct
24125 glyph_string.
24126
24127 * xterm.c (x_set_glyph_string_clipping):
24128 Use get_glyph_string_clip_rects.
24129 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
24130 Adjust for the change of struct glyph_string.
24131
24132 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
24133 the resulting clip(s}.
24134 (expose_overlaps): Add arg r. Change callers. Set it to
24135 row->clip temporarily.
24136 (expose_window): Redraw rows overlapping the exposed area.
24137
24138 * dispextern.h (struct glyph_row): New member clip.
24139 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
24140 clip_height, new member clip, and num_clips.
24141
24142 2008-02-01 Kenichi Handa <handa@m17n.org>
24143
24144 * data.c (Fchar_or_string_p): Fix docstring.
24145
24146 2008-02-01 Kenichi Handa <handa@m17n.org>
24147
24148 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
24149 create a temporary XftDraw object.
24150
24151 2008-02-01 Kenichi Handa <handa@m17n.org>
24152
24153 * font.c (Ffontp): Fix docstring.
24154
24155 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
24156 strong evidence of ISO-2022.
24157
24158 2008-02-01 Kenichi Handa <handa@m17n.org>
24159
24160 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
24161 SYNTAX_ENTRY_FOLLOW_PARENT.
24162
24163 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
24164
24165 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
24166 its type.
24167 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
24168 Update to the new type of weak_hash_tables and next_weak.
24169
24170 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
24171 a plain C pointer to Lisp_Hash_Table.
24172
24173 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
24174 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
24175 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
24176 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
24177 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
24178 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
24179 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
24180 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
24181 (GC_EQ): Remove since they've been identical to their non-GC_
24182 alter-egos ever since the markbit was eradicated.
24183
24184 * alloc.c:
24185 * buffer.c:
24186 * buffer.h:
24187 * data.c:
24188 * fileio.c:
24189 * filelock.c:
24190 * fns.c:
24191 * frame.h:
24192 * lisp.h:
24193 * macterm.c:
24194 * print.c:
24195 * process.c:
24196 * w32fns.c:
24197 * w32menu.c:
24198 * w32term.c:
24199 * xfns.c:
24200 * xmenu.c:
24201 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
24202
24203 2008-02-01 Kenichi Handa <handa@m17n.org>
24204
24205 * chartab.c (map_sub_char_table): Make it work for the top-level
24206 char-table. Fix handling of parent char-table.
24207 (map_char_table): Adjust for the above change.
24208
24209 2008-02-01 Jason Rumney <jasonr@gnu.org>
24210
24211 * w32font.c (Qgdi): Rename from Qw32.
24212
24213 2008-02-01 Jason Rumney <jasonr@gnu.org>
24214
24215 * w32bdf.c (get_quoted_string): Make function static.
24216
24217 2008-02-01 Kenichi Handa <handa@m17n.org>
24218
24219 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
24220 bigger ascent and descent than those of the font, use them as
24221 font's ascent and descent.
24222
24223 2008-02-01 Kenichi Handa <handa@m17n.org>
24224
24225 * Makefile.in (${lispsource}international/charprop.el): Move this
24226 target within "#ifdef HAVE_UNIDATA" and "#endif".
24227
24228 2008-02-01 Kenichi Handa <handa@m17n.org>
24229
24230 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
24231 (shortlisp): Add ../lisp/language/tai-viet.el.
24232
24233 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
24234
24235 * Makefile.in (${lispsource}international/charprop.el): Depend on
24236 temacs${EXEEXT}.
24237
24238 2008-02-01 Jason Rumney <jasonr@gnu.org>
24239
24240 * w32font.c (w32font_close): Delete the GDI font object.
24241
24242 * w32menu.c: Include character.h.
24243
24244 * w32proc.c: Likewise.
24245
24246 * w32select.c: Likewise.
24247
24248 * makefile.w32-in (w32proc.o): Depend on character.h.
24249
24250 2008-02-01 Jason Rumney <jasonr@gnu.org>
24251
24252 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
24253
24254 * w32menu.c (syms_of_w32menu): Likewise.
24255
24256 * w32proc.c (syms_of_ntproc): Likewise.
24257
24258 * w32select.c (syms_of_w32select): Likewise.
24259
24260 * w32term.c (syms_of_w32term): Likewise.
24261
24262 2008-02-01 Jason Rumney <jasonr@gnu.org>
24263
24264 * w32font.c (w32font_draw): Delete brush after using it.
24265
24266 2008-02-01 Jason Rumney <jasonr@gnu.org>
24267
24268 * w32font.c (w32font_open): Don't set font_idx.
24269 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
24270 to font settings.
24271 (w32font_draw): Fill background explicitly.
24272
24273 2008-02-01 Jason Rumney <jasonr@gnu.org>
24274
24275 * w32term.c (w32_initialize): Don't call w32font_initialize.
24276
24277 * w32font.c (w32font_info): Remove subranges.
24278 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
24279 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
24280 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
24281 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
24282 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
24283 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
24284 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
24285 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
24286 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
24287 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
24288 New symbols.
24289 (font_callback_data): New struct.
24290 (w32font_list, w32font_match): Use it.
24291 (w32font_open): Don't populate subranges.
24292 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
24293 (w32font_encode_char): Always return unicode code-point as-is.
24294 (w32font_text_extents): Supply a transformation matrix to
24295 GetGlyphOutline. Never look up by glyph index. Avoid looping
24296 twice. Use unicode version of GetTexExtentPoint32 instead of
24297 glyph index version.
24298 (set_fonts_frame): Remove.
24299 (w32_enumfont_pattern_entity): Add frame parameter, use it to
24300 set frame parameter. Use backward compatible fake foundries.
24301 Save generic family in extra slot under QCfamily. Make width slot
24302 constant. Save QCspacing value. Save list of scripts instead of
24303 binary subranges.
24304 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
24305 (add_font_entity_to_list): Use font_callback_data struct.
24306 Filter unwanted fonts.
24307 (add_one_font_entity_to_list): Use font_callback_data struct.
24308 (w32_registry): Default to iso10646_1.
24309 (fill_in_logfont): Use dpi from extra slot. Don't bother with
24310 string font registries. Don't fill in font name if it is a generic
24311 family name, fill family instead. Use spacing, family and script
24312 extra info to fill pitch, family and charset fields.
24313 (list_all_matching_fonts): Use font_callback_data struct.
24314 (unicode_range_for_char): Remove.
24315 (font_supported_scripts): New function.
24316 (w32font_initialize): Remove.
24317 (syms_of_w32font): Update which symbols are defined.
24318
24319 2008-02-01 Jason Rumney <jasonr@gnu.org>
24320
24321 * font.c (font_pixel_size): Reverse assq_no_quit args.
24322
24323 * w32term.h (FONT_WIDTH): Report max width, not average.
24324 (FONT_MAX_WIDTH): Remove.
24325 (FONT_AVG_WIDTH): New macro.
24326
24327 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
24328 redefinition of FONT_WIDTH.
24329
24330 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
24331 (w32_cache_char_metrics): Use FONT_WIDTH.
24332
24333 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
24334
24335 2008-02-01 Jason Rumney <jasonr@gnu.org>
24336
24337 * w32font.c (w32font_open): Make lfHeight negative.
24338
24339 * w32fns.c (x_default_font_parameter): Use new style font name.
24340 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
24341
24342 2008-02-01 Jason Rumney <jasonr@gnu.org>
24343
24344 * w32font.c (QCsubranges): New symbol.
24345 (w32font_open, w32font_has_char): Get subranges from subproperty
24346 of extra.
24347 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
24348 (syms_of_w32font): Define :subranges symbol.
24349
24350 * font.c (font_put_extra): Expose externally.
24351
24352 * font.h (font_put_extra): Move declaration from font.c.
24353
24354 * font.c (Ffont_get): Use font driver to determine otf capability.
24355 (adjust_anchor): Check if driver defines anchor_point before using.
24356
24357 * w32font.c (w32font_open): Handle size, height and pixel_size better.
24358 (w32font_draw): Use options.
24359 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
24360 Fix detection of truetype fonts.
24361 (registry_to_w32_charset): Handle charsets other than iso8859-1
24362 expressed as lisp symbols.
24363 (w32_registry): Express charset as lisp symbol.
24364 (fill_in_logfont): Reverse pixel and point height logic.
24365 Don't set width here. Set quality to default.
24366
24367 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
24368 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
24369
24370 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
24371 Remove redundant loop and allocation.
24372
24373 * makefile.w32-in (font.o, w32font.o): New objects.
24374 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
24375 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
24376
24377 * xdisp.c (fill_composite_glyph_string): Make the first arg to
24378 STORE_XCHARB a valid l-value.
24379
24380 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
24381 calculations for non-Truetype fonts.
24382 (x_draw_glyph_string): Sync with xterm.c.
24383 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
24384 Remove redundant code.
24385 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
24386
24387 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
24388 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
24389
24390 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
24391 (x_to_w32_charset, w32_to_x_charset): Expose externally.
24392
24393 * w32font.c: New file for w32 font backend.
24394
24395 2008-02-01 Kenichi Handa <handa@m17n.org>
24396
24397 * term.c: Don't include "buffer.h" twice.
24398
24399 2008-02-01 Kenichi Handa <handa@m17n.org>
24400
24401 * character.c (Funibyte_string): New function.
24402 (syms_of_character): Defsubr it.
24403
24404 2008-02-01 Jason Rumney <jasonr@gnu.org>
24405
24406 * w32term.c [USE_FONT_BACKEND]:
24407 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
24408 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
24409 (x_draw_glyph_string, x_draw_glyph_string_foreground)
24410 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
24411 (x_free_frame_resources): Sync with xterm.c.
24412
24413 2008-02-01 Andreas Schwab <schwab@suse.de>
24414
24415 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
24416 char-table size.
24417
24418 2008-02-01 Kenichi Handa <handa@m17n.org>
24419
24420 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
24421
24422 2008-02-01 Kenichi Handa <handa@m17n.org>
24423
24424 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
24425 font_otf_gpos, add font_drive_otf.
24426
24427 * fontset.c (fontset_find_font): Pay attention to font size
24428 specified for a font.
24429 (reorder_font_vector): Check contents of font_def.
24430
24431 * font.c (struct otf_list): Delete it.
24432 (otf_list): Make it a lisp variable.
24433 (otf_open): Use lispy otf_list.
24434 (generate_otf_features): Rename from parse_gsub_gpos_spec.
24435 (check_otf_features): New function.
24436 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
24437 New functions.
24438 (font_drive_otf): New function merging font_otf_gsub and
24439 font_otf_gpos.
24440 (font_open_for_lface): New arg spec. Change argument order.
24441 (font_load_for_face): Adjust for the change of font_open_for_lface.
24442 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
24443 Ffont_otf_gpos.
24444 (syms_of_font): Staticpro otf_list. Delete defsubr of
24445 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
24446
24447 * xfaces.c (set_font_frame_param): Adjust for the change of
24448 font_open_for_lface.
24449
24450 * font.h (font_open_for_lface): Adjust prototype.
24451 (struct font_driver): Delete members otf_gsub and otf_gpos, add
24452 member otf_drive.
24453 (font_otf_gsub, font_otf_gpos): Delete externs.
24454 (font_drive_otf): Extern it.
24455
24456 2008-02-01 Kenichi Handa <handa@m17n.org>
24457
24458 * font.c (font_at): If the window W is not on a window system,
24459 return Qnil.
24460
24461 * coding.c (produce_chars, encode_coding): Don't call
24462 insert_from_gap if no characters to produce.
24463
24464 2008-02-01 Kenichi Handa <handa@m17n.org>
24465
24466 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
24467 Fclear_face_cache.
24468
24469 * xfaces.c (face_for_font): Check also face->font==font->font.font.
24470
24471 2008-02-01 Miles Bader <miles@gnu.org>
24472
24473 * emacs.c (main): Change default value of `enable_font_backend' to 1.
24474 Parse "--disable-font-backend" option.
24475 (standard_args): Add "--disable-font-backend" option.
24476
24477 2008-02-01 Kenichi Handa <handa@m17n.org>
24478
24479 * fontset.c (fontset_find_font): New function.
24480 (fontset_font): Use fontset_find_font.
24481 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
24482 Register the specified font for all Latin characters.
24483 (new_fontset_from_font): Register the specified font for all Latin
24484 characters.
24485 (dump_fontset): For a realized fontset, include the base fontset
24486 name in the returned vector.
24487
24488 2008-02-01 Kenichi Handa <handa@m17n.org>
24489
24490 * character.h (CHAR_STRING): Cast C to unsigned on calling
24491 char_string.
24492
24493 * character.c (char_string): Type of arg C changed to unsigned.
24494 Signal an error if C is an invalid character code.
24495
24496 * editfns.c (general_insert_function, Fchar_to_string):
24497 Use CHARACTERP, not INTEGERP.
24498
24499 2008-02-01 Kenichi Handa <handa@m17n.org>
24500
24501 * character.h (MIN_MULTIBYTE_LEADING_CODE)
24502 (MAX_MULTIBYTE_LEADING_CODE): New macros.
24503
24504 * regex.c (analyse_first): Fix for multibyte characters in "case
24505 charset:" and "case categoryspec:".
24506
24507 2008-02-01 Andreas Schwab <schwab@suse.de>
24508
24509 * Makefile.in (LIBES): Move standard libraries to the end.
24510
24511 2008-02-01 Kenichi Handa <handa@m17n.org>
24512
24513 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
24514 nonzero, don't shrink the buffer nextb.
24515
24516 * buffer.h (struct buffer_text): New member inhibit_shrinking.
24517
24518 * coding.c (coding_alloc_by_making_gap): New arg offset.
24519 (alloc_destination): Call coding_alloc_by_making_gap with the arg
24520 offset.
24521 (decode_coding_iso_2022): Update coding->safe_charsets.
24522 (decode_coding_gap): Temporarily set
24523 current_buffer->text->inhibit_shrinking to 1.
24524
24525 2008-02-01 Kenichi Handa <handa@m17n.org>
24526
24527 * xterm.c (x_draw_composite_glyph_string_foreground):
24528 Fix indexing into elements of s->cmp and s->char2b.
24529
24530 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
24531
24532 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
24533
24534 2008-02-01 Kenichi Handa <handa@m17n.org>
24535
24536 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
24537 target_multibyte instead of multibyte.
24538 (re_match_2_internal): Call bcmp_translate with target_multibyte.
24539 (bcmp_translate): Change the argument name from multibyte to
24540 target_multibyte.
24541
24542 2008-02-01 Kenichi Handa <handa@m17n.org>
24543
24544 These changes are to compile a regexp into a pattern that can be
24545 used both for multibyte and unibyte targets.
24546
24547 * Makefile.in (search.o): Depend on charset.h.
24548
24549 * character.c (multibyte_char_to_unibyte_safe): New function.
24550
24551 * search.c: Include "charset.h".
24552 (compile_pattern_1): Delete argument multibyte. Don't set
24553 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
24554 (compile_pattern): Don't compare cp->buf.target_multibyte.
24555 Compare cp->buf.charset_unibyte.
24556 (compile_pattern): Set cp->buf.target_multibyte.
24557
24558 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
24559
24560 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
24561
24562 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
24563 multibyte. Change callers.
24564 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
24565 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
24566 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
24567 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
24568 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
24569 (regex_compile): Make the compiled pattern usable both for
24570 multibyte and unibyte targets.
24571 (analyse_first): Make the fastmap usable both for multibyte and
24572 unibyte targets.
24573 (TRANSLATE_VIA_MULTIBYTE): Delete.
24574 (re_match_2_internal): Pay attention to the case that the
24575 multibyteness of bufp and target may be different.
24576
24577 2008-02-01 Kenichi Handa <handa@m17n.org>
24578
24579 * xdisp.c (x_produce_glyphs): When a font is not found, make the
24580 empty box occupy at least one column width.
24581
24582 2008-02-01 Miles Bader <miles@gnu.org>
24583
24584 * Makefile.in: Remove redundant HAVE_XFT clause.
24585
24586 2008-02-01 Kenichi Handa <handa@m17n.org>
24587
24588 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
24589
24590 2008-02-01 Kenichi Handa <handa@m17n.org>
24591
24592 * fontset.c (Finternal_char_font): Fix for the case of POSITION
24593 being nil.
24594
24595 2008-02-01 Kenichi Handa <handa@m17n.org>
24596
24597 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
24598
24599 2008-02-01 Kenichi Handa <handa@m17n.org>
24600
24601 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
24602
24603 2008-02-01 Kenichi Handa <handa@m17n.org>
24604
24605 * search.c (simple_search): Fix previous change.
24606
24607 2008-02-01 Kenichi Handa <handa@m17n.org>
24608
24609 * xftfont.c (ftfont_font_format): Extern declaration.
24610
24611 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
24612
24613 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
24614 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
24615
24616 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
24617 (ftfont_font_format): Fix previous change.
24618
24619 * font.h (Ffont_xlfd_name): EXFUN it.
24620
24621 * font.c (font_parse_xlfd): Fix the array size of `f'.
24622 (register_font_driver): Use EQ to compare driver->type.
24623
24624 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
24625 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
24626 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
24627
24628 2008-02-01 Kenichi Handa <handa@m17n.org>
24629
24630 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
24631 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
24632
24633 2008-02-01 Kenichi Handa <handa@m17n.org>
24634
24635 * xfont.c (xfont_open): Set font->format.
24636
24637 * xftfont.c (xftfont_open): Set font->format.
24638
24639 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
24640 (ftfont_list): Include FC_FONTFORMAT in FcObject.
24641 (ftfont_open): Set font->format.
24642 (ftfont_font_format): New function.
24643
24644 * font.h (struct font): New member format.
24645
24646 * font.c (Qopentype): New variable.
24647 (syms_of_font): Defsym it.
24648 (Fquery_font): Change the format of the last element of the return
24649 value.
24650
24651 2008-02-01 Kenichi Handa <handa@m17n.org>
24652
24653 * xfns.c (xic_create_xfontset): Try the default fontset name as a
24654 last resort.
24655
24656 2008-02-01 Kenichi Handa <handa@m17n.org>
24657
24658 * coding.c (detect_coding_charset): Fix detection of multi-byte
24659 charset.
24660
24661 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
24662
24663 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
24664
24665 2008-02-01 Kenichi Handa <handa@m17n.org>
24666
24667 * xdisp.c (get_next_display_element): Set it->face_id for the
24668 first component of a composition.
24669 (x_produce_glyphs): Check if the font is changed or not for composition.
24670
24671 2008-02-01 Kenichi Handa <handa@m17n.org>
24672
24673 * fontset.c (Qlatin): New variable.
24674 (syms_of_fontset): Define it as a lisp symbol.
24675 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
24676
24677 2008-02-01 Kenichi Handa <handa@m17n.org>
24678
24679 * font.c (font_unparse_fcname): Pay attention to the case that
24680 some of font property is a null string.
24681
24682 2008-02-01 Kenichi Handa <handa@m17n.org>
24683
24684 * term.c: Include "composite.h".
24685 (encode_terminal_code): Output all components of composition.
24686 Check the size of encode_terminal_src.
24687 (produce_glyphs): For composition, call produce_composite_glyph.
24688 (append_composite_glyph, produce_composite_glyph): New functions.
24689
24690 * xdisp.c (x_produce_glyphs): In handling composition, if a font
24691 is not found, get font_info from the current ascii face.
24692
24693 2008-02-01 Kenichi Handa <handa@m17n.org>
24694
24695 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
24696 buffer-file-name to Qnil before calling insert_from_buffer.
24697
24698 * font.c (font_unparse_fcname): Pay attention to the case that
24699 foundry is a null string.
24700
24701 2008-02-01 Kenichi Handa <handa@m17n.org>
24702
24703 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
24704
24705 * font.c (Qunicode_sip): New variable.
24706 (syms_of_font): Declare it as a Lisp symbol.
24707
24708 * font.h (Qunicode_sip): Extern it.
24709
24710 2008-02-01 Kenichi Handa <handa@m17n.org>
24711
24712 * composite.c (get_composition_id): Pay attention to TAB component.
24713
24714 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
24715 TAB. Adjust for the change of s->char2b which always points to
24716 the first element of allocated memory.
24717
24718 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
24719
24720 * xdisp.c (handle_composition_prop): Set it->c to the first
24721 non-TAB component.
24722 (fill_composite_glyph_string): Change argument.
24723 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
24724 (x_produce_glyphs): Fix handling of left/right padding.
24725
24726 2008-02-01 Kenichi Handa <handa@m17n.org>
24727
24728 * coding.c (detect_coding_system): Fix for handling off
24729 inhibit_iso_escape_detection. Fix for the case that no coding
24730 system is defined for a specific coding category.
24731
24732 2008-02-01 Kenichi Handa <handa@m17n.org>
24733
24734 * font.c (font_matching_entity): Delete unused local var.
24735
24736 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
24737 opening a font.
24738
24739 * fileio.c (Finsert_file_contents): On recovering a file, assume
24740 Unix-like eol.
24741 (choose_write_coding_system): On auto-saving a file, force
24742 Unix-like eol.
24743
24744 * coding.c (setup_coding_system): Fix setting of
24745 coding->common_flags based on eol_type.
24746 (coding_inherit_eol_type): If PARENT is not nil, be sure to
24747 inherit from it.
24748
24749 2008-02-01 Kenichi Handa <handa@m17n.org>
24750
24751 * alloc.c (NSTATICS): Increas to 0x600.
24752
24753 2008-02-01 Kenichi Handa <handa@m17n.org>
24754
24755 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
24756 (ftfont_list): Don't check :name property.
24757 (ftfont_match): New function.
24758 (ftfont_pattern_entity): If the pattern doesn't contain
24759 FC_SPACING, don't assume FC_MONO.
24760
24761 * font.h (struct font_driver): New member `match'.
24762 (font_update_drivers): Adjust prototype.
24763
24764 * font.c (font_parse_fcname, font_parse_name): Don't change :name
24765 property of FONT.
24766 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring):
24767 Define them unconditionally.
24768 (font_matching_entity): New function.
24769 (font_open_by_name): Try font_matching_entity if exact match is
24770 not found.
24771 (font_update_drivers): Delete the arg FONT. Return a list of
24772 actually used backends. Don't free faces, font caches here.
24773 Don't store data in frame parameters. Don't call x_set_font.
24774 (Ffont_spec): Store :name property as is.
24775 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
24776 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
24777 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
24778 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
24779 Call font->driver->otf_gsub instead of font_otf_gsub.
24780
24781 * frame.c (x_set_font_backend): Do more works that were done in
24782 font_update_drivers before.
24783
24784 * xfont.c (xfont_match): New function.
24785 (xfont_driver): Set xfont_driver.match to xfont_match.
24786 (xfont_draw): Set font in GC if necessary.
24787
24788 * ftxfont.c (ftxfont_match): New function.
24789 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
24790
24791 * xftfont.c (xftfont_match): New function.
24792 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
24793
24794 2008-02-01 Kenichi Handa <handa@m17n.org>
24795
24796 * font.h (struct font): New member scalable.
24797 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
24798 (font_otf_gsub): Adjust prototype.
24799
24800 * font.c (font_otf_capability): Fix handling of the default langsys.
24801 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
24802 Check the contents of SPEC.
24803 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
24804 (check_gstring): New function.
24805 (REPLACEMENT_CHARACTER): New macro.
24806 (font_otf_gsub): New arg alternate_subst. Be sure to set all
24807 glyph codes of GSTRING.
24808 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
24809 (font_prepare_composition): Set cmp->glyph_len.
24810 (font_open_entity): Set font->scalable.
24811 (Ffont_get): Handle :otf property.
24812 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates):
24813 New functions.
24814 (Fquery_font): Use font->font.full_name.
24815 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
24816 Sfont_otf_alternates.
24817
24818 * ftfont.c (ftfont_open): Set font->font.full_name and
24819 font->font.name properly. Fix calculation of font->font.height
24820 and font->min_width.
24821
24822 * ftxfont.c (ftxfont_create_gcs): New function.
24823 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
24824 (ftxfont_draw_backgrond): Fix filling region.
24825 (ftxfont_default_fid): New function.
24826 (ftxfont_open): Set xfont->fid to the return value of
24827 ftxfont_default_fid.
24828 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
24829 (ftxfont_done_face): Free only GCs that are created by
24830 ftxfont_create_gcs.
24831 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
24832
24833 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
24834 Clip to src->width, etc (not src->clip_XXX).
24835
24836 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
24837 FontBackend frame parameter.
24838
24839 2008-02-01 Kenichi Handa <handa@m17n.org>
24840
24841 * font.h (struct font_driver_list): New member `on'.
24842 (Fclear_font_cache): EXFUN it.
24843 (font_update_drivers): Extern it.
24844
24845 * font.c (font_unparse_fcname): Fix typo (swidth->width).
24846 (font_list_entities): Check driver_list->on.
24847 (register_font_driver): Initialize `on' member to 0.
24848 (font_update_drivers): New function.
24849 (Fclear_font_cache): Check driver_list->on.
24850
24851 * frame.h (Qfont_backend): Extern it.
24852 (x_set_font_backend): Extern it.
24853
24854 * frame.c (Qfont_backend): New variable.
24855 (frame_parms): New element for font-backend.
24856 (x_set_font_backend): New function.
24857
24858 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
24859 FontBackend frame parameter.
24860 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
24861 x_set_font_backend.
24862
24863 * xfont.c (xfont_list): Don't try listing by :name property if the
24864 name is not for XLFD.
24865
24866 2008-02-01 Kenichi Handa <handa@m17n.org>
24867
24868 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
24869 (LGLYPH_SET_TO): New macros.
24870 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
24871 element of G is vector or not.
24872 (font_at): Extern it.
24873
24874 * font.c: Include window.h.
24875 (font_lispy_object): New function.
24876 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
24877 end of valid glyph.
24878 (font_close_object): Fix getting (struct font *).
24879 (font_at): New function.
24880 (Ffont_get): If FONT is a font-object, get entity from it.
24881 (Ffont_make_gstring): Initialize elements of glyphs with nil.
24882 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX.
24883 Fix range check.
24884 (Ffont_at): New function.
24885 (syms_of_font): Defsubr Sfont_at.
24886
24887 * xdisp.c (it_props): Move the entry for Qauto_composed to just
24888 before the entry for Qcomposition.
24889 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
24890 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
24891 the font in gstring.
24892 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
24893 LGLYPH_FORM (g) to detect the end of valid glyph.
24894 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
24895 we are composing with gstring.
24896
24897 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
24898 Check if adjustment is vector or not.
24899
24900 * Makefile.in (font.o): Make it depends on window.h.
24901
24902 2008-02-01 Kenichi Handa <handa@m17n.org>
24903
24904 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
24905 adjustment is vector or not.
24906
24907 2008-02-01 Miles Bader <miles@gnu.org>
24908
24909 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
24910
24911 2008-02-01 Kenichi Handa <handa@m17n.org>
24912
24913 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
24914 (LGLYPH_SET_WIDTH): Adjust for the change of LGLYPH format.
24915 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
24916
24917 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
24918 (DEVICE_DELTA): Fix typo.
24919 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
24920 LGLYPH format.
24921
24922 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
24923 the change of LGLYPH format.
24924
24925 2008-02-01 Kenichi Handa <handa@m17n.org>
24926
24927 * ftfont.c (ftfont_list): Fix typo.
24928 (ftfont_build_basic_charsets): Don't include letters with diacritics.
24929
24930 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
24931
24932 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
24933
24934 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
24935 xftface_info is non-NULL.
24936
24937 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
24938
24939 * ftfont.c (ftfont_list): Move misplaced #endif.
24940
24941 2008-02-01 Kenichi Handa <handa@m17n.org>
24942
24943 * ftfont.c (ftfont_list): Pay attention to the case that
24944 FC_CAPABILITY is not defined.
24945
24946 2008-02-01 Kenichi Handa <handa@m17n.org>
24947
24948 * xftfont.c (xftfont_open): Set charset related members to -1.
24949
24950 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
24951 QCname.
24952 (ftfont_open): Set charset related members to -1.
24953
24954 * fontset.c (Votf_script_alist): New variable.
24955 (syms_of_fontset): Initialize it.
24956 (fontset_font): Delete unused variable.
24957
24958 * fontset.h (Votf_script_alist): Extern it.
24959
24960 * font.c (font_find_for_lface): Optimize code.
24961
24962 * font.h (font_close_object, font_merge_old_spec): Extern them.
24963
24964 2008-02-01 Kenichi Handa <handa@m17n.org>
24965
24966 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
24967 (syms_of_font): Initialize them.
24968 (font_pixel_size): Allow float value in dpi.
24969 (font_prop_validate_type): Delete.
24970 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
24971 Change caller.
24972 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
24973 (font_prop_validate_extra): Delete.
24974 (font_prop_validate_spacing): New function.
24975 (font_property_table): Add elements for all known properties.
24976 (get_font_prop_index): Rename from check_font_prop_name.
24977 New argument FROM. Change caller.
24978 (font_prop_validate): Validate all known properties.
24979 (font_put_extra): Delete argument force. Change caller.
24980 (font_expand_wildcards): Make it static. Fix the way of shrinking
24981 the possible range.
24982 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
24983 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
24984 Change caller.
24985 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
24986 (font_parse_fcname): Delete argument merge. Fix parsing of point
24987 size. Don't validate properties values here. Change caller.
24988 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
24989 (font_open_by_name): Delete unused variable.
24990 (Ffont_spec): Likewise. Validate property values.
24991 (Ffont_match_p): New function.
24992
24993 * font.h (QCscalable): Extern it.
24994 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
24995
24996 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
24997
24998 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
24999 (xfont_list_pattern): New function.
25000 (xfont_list): Use xfont_list_pattern.
25001
25002 2008-02-01 Kenichi Handa <handa@m17n.org>
25003
25004 * font.h (Flist_fonts): EXFUN it.
25005
25006 2008-02-01 Jason Rumney <jasonr@gnu.org>
25007
25008 * w32term.c (w32_initialize): Add back smoothing_type and
25009 smoothing_enabled definitions.
25010
25011 2008-02-01 Kenichi Handa <handa@m17n.org>
25012
25013 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
25014 s->face->font on determining underline position.
25015
25016 2008-02-01 Kenichi Handa <handa@m17n.org>
25017
25018 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
25019 (font_has_char): Accept font-object too.
25020 (font_find_for_lface): Try at first with a size specified in face.
25021
25022 2008-02-01 Kenichi Handa <handa@m17n.org>
25023
25024 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
25025 font_open_by_name.
25026
25027 2008-02-01 Kenichi Handa <handa@m17n.org>
25028
25029 * font.h (QCspacing, QCdpi): Extern them.
25030 (enum font_spacing): New enum.
25031 (FONT_PIXEL_SIZE_QUANTUM): New macro.
25032
25033 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
25034 (QCspacing, QCdpi): New variables.
25035 (syms_of_font): Initialize them.
25036 (font_pixel_size): New function.
25037 (font_put_extra): New function.
25038 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
25039 in FONT_EXTRA.
25040 (font_parse_fcname): Handle enumerated values (e.g. bold).
25041 Fix handling font size. Add QCname property that contains only
25042 unknown properties.
25043 (font_score): Change argument. Change caller. Pay attention to
25044 FONT_PIXEL_SIZE_QUANTUM.
25045 (font_sort_entites, font_list_entities, font_find_for_lface)
25046 (font_open_for_lface, font_open_by_name): Fix handling of font size.
25047 (Ffont_spec): Add QCname property that contains only unknown properties.
25048
25049 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq.
25050 Don't include weight in listing pattern, instead check weight of each
25051 listed font. Don't include scalable in pattern. Pay attention to
25052 FONT_PIXEL_SIZE_QUANTUM.
25053
25054 2008-02-01 Kenichi Handa <handa@m17n.org>
25055
25056 * font.c (font_parse_fcname): Fix parsing of point-size.
25057 (font_unparse_fcname): Produce symbolic names for style properties.
25058 (font_list_entities): Handle float size correctly.
25059 (font_open_by_name): Prefer `normal' property values if the name
25060 doesn't specify them.
25061
25062 * fontset.c (Finternal_char_font): Use font_get_name, not
25063 Ffont_xlfd_name.
25064
25065 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
25066 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
25067 pattern. Don't force scalable.
25068
25069 * xftfont.c (xftfont_open): For generating a name, start from
25070 96-byte buffer.
25071
25072 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
25073
25074 * frame.h (x_new_fontset2): Fix prototype.
25075
25076 2008-02-01 Kenichi Handa <handa@m17n.org>
25077
25078 * font.h (struct font_driver): Delete member parse_name.
25079 (font_match_p, font_get_spec, font_parse_fcname)
25080 (font_unparse_fcname): Extern them.
25081 (font_get_name): Adjust prototype.
25082
25083 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
25084 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
25085 (font_expand_wildcards): Fix handling ENCODING field.
25086 Avoid unnecessary checks for weight, slant, and swidth.
25087 (font_parse_fcname): New function.
25088 (font_unparse_fcname): New function.
25089 (font_parse_name): New function.
25090 (font_match_p): New function.
25091 (font_get_name): Change return value to Lisp string.
25092 (font_get_spec): New function.
25093 (Qunspecified, Qignore_defface): Don't extern them.
25094 (font_find_for_lface): Assume that LFACE is fully specified.
25095 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
25096 object, use it for FACE.
25097 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
25098 driver->parse_name.
25099 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
25100
25101 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
25102 prototype.
25103
25104 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
25105 argument F. Don't call Fnew_fontset. Instead, directly call
25106 make_fontset.
25107
25108 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
25109
25110 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
25111 of x_new_fontset2.
25112
25113 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
25114 (Qsans__serif): New variables.
25115 (ftfont_generic_family_list): New variable.
25116 (syms_of_ftfont): Initialize the above variables.
25117 (ftfont_pattern_entity): Delete argument NAME.
25118 (ftfont_list_generic_family): New function.
25119 (ftfont_parse_name): Delete this function.
25120 (ftfont_list): Try generic family only when FcFontList found no font.
25121 (ftfont_list_family): Fix args to FcObjectSetBuild.
25122
25123 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
25124 object in attrs[LFACE_FONT_INDEX].
25125 (set_lface_from_font_name): Cancel all changes for font-backend.
25126 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
25127 function.
25128 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
25129 font object in QCfont attribute.
25130 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
25131 (realize_default_face) [USE_FONT_BACKEND]: Call
25132 set_lface_from_font_and_fontset.
25133
25134 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
25135 "fixed", and signal error here if no suitable font was found.
25136
25137 * xfont.c (xfont_parse_name): Delete this function.
25138
25139 * xftfont.c (xftfont_open): Change coding style of error
25140 handling. Generate fontconfig's fontname pattern.
25141
25142 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
25143 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
25144
25145 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
25146 Both args FONTSET and FONT_OBJECT must be existing ones.
25147
25148 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25149
25150 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
25151
25152 2008-02-01 Kenichi Handa <handa@m17n.org>
25153
25154 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
25155
25156 * font.h (struct font): Fix typo.
25157
25158 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
25159 XLFD_XXX_INDEX.
25160 (enum xlfd_field_mask): New enum.
25161 (intern_font_field): Change argument. Change caller. If digits
25162 are followed by non-digits, return a symbol.
25163 (font_expand_wildcards): New function.
25164 (font_parse_xlfd): Fix wildcard handling.
25165 (Ffont_spec): If :name is specified, reflect the info in the other
25166 properties.
25167
25168 * ftfont.c (ftfont_pattern_entity): Fix typo.
25169 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
25170 locale.
25171
25172 2008-02-01 Kenichi Handa <handa@m17n.org>
25173
25174 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
25175
25176 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
25177 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
25178 registry doesn't specify encoding part.
25179 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
25180 (font_open_by_name): At first try parsing the name.
25181 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
25182 as Lisp symbols.
25183
25184 * fontset.c (reorder_font_vector): Pay attention to the case that
25185 the 3rd element of font_def is nil.
25186 (fontset_font): For the default fontset, append one more fontset
25187 elements for a script-based font specification. Don't add script
25188 attribute on finding a font.
25189 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
25190 font name.
25191 (fontset_ascii_font): If a font can't be opened, return nil.
25192
25193 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
25194 (ftfont_pattern_entity): New function.
25195 (ftfont_get_cache): Assume that freetype_font_cache is already
25196 initialized.
25197 (ftfont_list): Handle the case that a file is specified in font
25198 name. Use ftfont_pattern_entity to generate entities.
25199 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
25200 (syms_of_ftfont): Initialize freetype_font_cache.
25201
25202 * xftfont.c (xftfont_open): Make the font name fontconfig's
25203 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
25204 (xftfont_close): Free font->font.name if not NULL.
25205
25206 * xfont.c (xfont_list): If script is specified for a font, return
25207 null_vector.
25208 (xfont_list_family): Declare argument type.
25209
25210 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
25211 name, set LFACE_FONT (lface) to nil.
25212
25213 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
25214 return Qnil.
25215
25216 2008-02-01 Kenichi Handa <handa@m17n.org>
25217
25218 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
25219 (standard_args): Add "-enable-font-backend".
25220
25221 2008-02-01 Kenichi Handa <handa@m17n.org>
25222
25223 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
25224 (struct xftdraw_list, xftdraw_list): Delete them.
25225 (register_xftdraw, check_xftdraw): Delete them.
25226 (xftfont_prepare_face): Don't call register_xftdraw.
25227 (xftfont_done_face): Don't call check_xftdraw.
25228 (xftfont_draw): Get background color only when with_background is
25229 nonzero.
25230
25231 * xfont.c (xfont_encode_char): Fix calculation of char2b.
25232
25233 2008-02-01 Kenichi Handa <handa@m17n.org>
25234
25235 These changes are for the new font handling codes.
25236
25237 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
25238 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
25239 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
25240 (FONTSRC, FONTOBJ): New variables.
25241 (obj): Add $(FONTOBJ).
25242 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
25243 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
25244 @LIBOTF_LIBS@.
25245 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
25246 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
25247
25248 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
25249
25250 * character.h (Vscript_representative_chars): Extern it.
25251
25252 * character.c (Vscript_representative_chars): New variable.
25253 (syms_of_character): Declare it as a Lisp variable.
25254
25255 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
25256 enable_font_backend is nonzero, accept the composition method
25257 COMPOSITION_WITH_GLYPH_STRING.
25258
25259 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
25260 enumeration COMPOSITION_WITH_GLYPH_STRING.
25261
25262 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
25263 members clip_x, clip_y, clip_width, and clip_height.
25264 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
25265
25266 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
25267 --enable-font-backend. Call syms_of_font.
25268
25269 * fns.c (assoc_no_quit): New function.
25270
25271 * fontset.h (FONT_INFO_FROM_FACE): New macro.
25272 (face_for_font, new_fontset_from_font)
25273 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
25274
25275 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
25276 (fontset_font, fontset_ascii, face_for_char)
25277 (make_fontset_for_ascii_face, Ffont_info)
25278 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
25279 is nonzero, use font-backend mechanism.
25280 (find_font_encoding): Make it non-static.
25281 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
25282 New functions.
25283
25284 * frame.h (struct frame): New members resx and resy.
25285 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
25286 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
25287
25288 * frame.c [USE_FONT_BACKEND]: Include "font.h".
25289 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
25290
25291 * lisp.h (assoc_no_quit): Extern it.
25292
25293 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
25294 Through out the file, use FONT_INFO_FROM_FACE instead of
25295 FONT_INFO_FROM_ID, use get_per_char_metric instead of
25296 rif->per_char_metric.
25297 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
25298 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
25299 (get_glyph_face_and_encoding, fill_composite_glyph_string)
25300 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
25301 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
25302 nonzero, use font-backend mechanism.
25303 (get_per_char_metric): New function.
25304
25305 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
25306 (set_lface_from_font_name)
25307 (set_font_frame_param, free_realized_face)
25308 (prepare_face_for_display, clear_face_gcs)
25309 (Finternal_set_font_selection_order, realize_x_face)
25310 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
25311 font-backend mechanism.
25312 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
25313 (load_face_font) [USE_FONT_BACKEND]: Abort.
25314 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
25315 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
25316
25317 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
25318 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
25319 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
25320 nonzero, register all available font drivers.
25321 Call x_default_font_parameter for deciding a font.
25322 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
25323
25324 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
25325 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
25326 (x_set_glyph_string_clipping_exactly)
25327 (x_compute_glyph_string_overhangs)
25328 (x_draw_glyph_string_foreground)
25329 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
25330 (x_free_frame_resources) [USE_FONT_BACKEND]: If
25331 enable_font_backend is nonzero, use font-backend mechanism.
25332 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
25333
25334 2008-02-01 Kenichi Handa <handa@m17n.org>
25335
25336 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
25337 system_eol_type.
25338 (syms_of_coding): Initialize system_eol_type.
25339
25340 * process.c (Fset_process_coding_system): Inherit system's eol
25341 format if necessary.
25342
25343 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25344
25345 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
25346
25347 2008-02-01 Kenichi Handa <handa@m17n.org>
25348
25349 * coding.c (decode_eol): Pay attention to buffer relocation in
25350 del_range_2.
25351 (decode_coding): Call decode_eol before restoring undo_list.
25352
25353 2008-02-01 Kenichi Handa <handa@m17n.org>
25354
25355 * charset.c (Fdefine_charset_internal): Fix setting of
25356 emacs_mule_bytes.
25357
25358 2008-02-01 Kenichi Handa <handa@m17n.org>
25359
25360 * keyboard.c (read_char): Check if C is a character or not before
25361 looking up Vkeyboard_translate_table.
25362
25363 2008-02-01 Kenichi Handa <handa@m17n.org>
25364
25365 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION):
25366 Fix condition to terminate the loop.
25367
25368 2008-02-01 Kenichi Handa <handa@m17n.org>
25369
25370 * coding.c (produce_composition): Compare charbuf[i] instead of
25371 args[i] against 0.
25372 (Fterminal_coding_system): Use EQ to compare Lisp objects.
25373
25374 2008-02-01 Kenichi Handa <handa@m17n.org>
25375
25376 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
25377 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
25378 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
25379 detect_coding.
25380 (emacs_mule_char): Handle old style (Emacs 20) component character
25381 of a composition.
25382 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
25383 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
25384 composition rule.
25385 (decode_coding_emacs_mule): Handle invalid bytes correctly.
25386
25387 2008-02-01 Kenichi Handa <handa@m17n.org>
25388
25389 * coding.c (encode_coding_ccl): Allocate destination dynamically
25390 when necessary.
25391
25392 2008-02-01 Kenichi Handa <handa@m17n.org>
25393
25394 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
25395 the loop. When quitted, show a proper error message.
25396
25397 2008-02-01 Kenichi Handa <handa@m17n.org>
25398
25399 * xterm.c (x_set_glyph_string_clipping_exactly):
25400 Set src->clip_head and src->clip_tail temporarily instead of src->hl.
25401
25402 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
25403 character sequence.
25404 (Fccl_execute_on_string): Use ASET, not XSET.
25405
25406 2008-02-01 Kenichi Handa <handa@m17n.org>
25407
25408 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
25409
25410 2008-02-01 Kenichi Handa <handa@m17n.org>
25411
25412 * coding.c (decode_coding): Fix the condition of terminating the
25413 decoding loop.
25414
25415 2008-02-01 Kenichi Handa <handa@m17n.org>
25416
25417 * data.c (Faset): On setting a character bigger than 255 in a
25418 unibyte string, signal an error instead of make the string multibyte.
25419
25420 2008-02-01 Kenichi Handa <handa@m17n.org>
25421
25422 * charset.c (map_charset_chars): Fix for ascii-compatible charset
25423 made by a mapping table.
25424
25425 2008-02-01 Kenichi Handa <handa@m17n.org>
25426
25427 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
25428 not.
25429 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
25430 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
25431
25432 * xterm.c (x_draw_composite_glyph_string_foreground):
25433 Check s->face is NULL or not.
25434
25435 2008-02-01 Kenichi Handa <handa@m17n.org>
25436
25437 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
25438 (x_draw_glyph_string): Fix drawing of right_overhang and
25439 left_overhang around/on cursor.
25440
25441 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
25442
25443 2008-02-01 Kenichi Handa <handa@m17n.org>
25444
25445 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
25446
25447 2008-02-01 Kenichi Handa <handa@m17n.org>
25448
25449 * coding.c (Fdefine_coding_system_internal)
25450 (Fdefine_coding_system_alias): Avoid a duplicated element in
25451 Vcoding_system_alist.
25452
25453 2008-02-01 Kenichi Handa <handa@m17n.org>
25454
25455 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
25456
25457 * coding.c (Qcoding_system_define_form): New variable.
25458 (syms_of_coding): Intern and staticpro it.
25459 (Fcoding_system_p): Check Qcoding_system_define_form.
25460 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
25461
25462 * coding.h (CODING_SYSTEM_P): If ID is not available, call
25463 Fcoding_system_p.
25464 (CHECK_CODING_SYSTEM): If ID is not available, call
25465 Fcheck_coding_system.
25466 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
25467 Try also Fcheck_coding_system.
25468
25469 2008-02-01 Kenichi Handa <handa@m17n.org>
25470
25471 * coding.c (code_conversion_restore): GCPRO arg.
25472
25473 2008-02-01 Kenichi Handa <handa@m17n.org>
25474
25475 * character.c (lisp_string_width): Check multibyteness of STRING.
25476
25477 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25478
25479 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
25480 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
25481 (decode_mac_font_name): Use decode_coding_c_string instead of
25482 decode_coding.
25483 (x_load_font): Initialize fontp->fontset to -1.
25484 Set fontp->encoding_type.
25485
25486 2008-02-01 Kenichi Handa <handa@m17n.org>
25487
25488 * search.c (search_buffer): Give up BM search on case-fold-search
25489 if one of a target character has a case-equivalence of different
25490 byte length even if that target character is an ASCII.
25491 (simple_search): Fix calculation of byte length of matched text.
25492 (boyer_moore): Fix handling of case-equivalent multibyte characters.
25493
25494 2008-02-01 Kenichi Handa <handa@m17n.org>
25495
25496 * coding.c (decode_coding): Fix handling of invalid bytes.
25497
25498 2008-02-01 Kenichi Handa <handa@m17n.org>
25499
25500 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
25501 Unicode characters.
25502
25503 2008-02-01 Kenichi Handa <handa@m17n.org>
25504
25505 * coding.c (encode_coding_object): If a pre-write-conversion
25506 function makes a new buffer, kill it.
25507
25508 2008-02-01 Kenichi Handa <handa@m17n.org>
25509
25510 * coding.c (QCascii_compatible_p): New variable.
25511 (syms_of_coding): Initialize it.
25512 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
25513 calling string_char.
25514 (record_conversion_result): Add `default:' case.
25515 (coding_charset_list): Delete unused variable `coding_type'.
25516 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
25517 property in the plist of the coding system.
25518 (Fcoding_system_put): Check QCascii_compatible_p.
25519
25520 2008-02-01 Miles Bader <miles@gnu.org>
25521
25522 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
25523 removed calculation of frame `f', as it's now used.
25524
25525 2008-02-01 Kenichi Handa <handa@m17n.org>
25526
25527 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
25528 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
25529 (UNIDATA): New variable.
25530 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
25531 (bootstrap-emacs${EXEEXT}): Depends on charprop.el.
25532 Run $(RUN_TEMACS) unconditionally.
25533
25534 2008-02-01 Kenichi Handa <handa@m17n.org>
25535
25536 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
25537 (admindir): New variable.
25538 ($(lispsource)international/charprop.el): New target.
25539
25540 2008-02-01 Miles Bader <miles@gnu.org>
25541
25542 * character.c (chars-in-region): Remove obsolete function.
25543 (syms_of_character): Remove its initialization.
25544
25545 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
25546
25547 * w32select.c (validate_coding_system)
25548 (setup_windows_coding_system): New functions.
25549 (convert_to_handle_as_coded, Fw32_get_clipboard_data):
25550 Use setup_windows_coding_system.
25551 (setup_config, Fw32_get_clipboard_data):
25552 Use validate_coding_system.
25553 (Fx_selection_exists): Move call to setup_config to a place
25554 where signals are allowed.
25555
25556 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
25557 (Fcheck_coding_system): Add declarations.
25558
25559 2008-02-01 Kenichi Handa <handa@m17n.org>
25560
25561 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
25562
25563 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25564
25565 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
25566 string as the second argument for x_new_fontset.
25567
25568 2008-02-01 Kenichi Handa <handa@m17n.org>
25569
25570 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
25571 (encode_coding_object): Use safe_call instead of call2.
25572
25573 2008-02-01 Kenichi Handa <handa@m17n.org>
25574
25575 * fontset.c (Fset_fontset_font): Check family element of a given vector.
25576
25577 * Makefile.in (lisp): Include charprop.el.
25578
25579 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25580
25581 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
25582 Not sure if it's unnecessary.
25583
25584 2008-02-01 Steven Tamm <steventamm@mac.com>
25585
25586 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
25587 some possibly unnecessary fontset checking code that crashed
25588 when creating a new frame.
25589
25590 2008-02-01 Kenichi Handa <handa@m17n.org>
25591
25592 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
25593 lookup_face.
25594
25595 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
25596
25597 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
25598
25599 2008-02-01 Kenichi Handa <handa@m17n.org>
25600
25601 * coding.c: Cancel the change done in HEAD on 2008-02-01.
25602 (coding_charset_list): New function.
25603
25604 * coding.h (coding_charset_list): Extern it.
25605
25606 2008-02-01 Kenichi Handa <handa@m17n.org>
25607
25608 * fontset.c (Fset_fontset_font): Call find_font_encoding with
25609 concatenation of family and registry.
25610
25611 2008-02-01 Kenichi Handa <handa@m17n.org>
25612
25613 * character.h (BYTE8_STRING): Fix typo.
25614
25615 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
25616 string to multibyte (sync to HEAD).
25617
25618 * casefiddle.c (casify_region): Handle changes in byte-length
25619 using replace_range_2 (sync to HEAD).
25620
25621 2008-02-01 Andreas Schwab <schwab@suse.de>
25622
25623 * chartab.c (map_char_table): GCPRO table and arg.
25624
25625 2008-02-01 Kenichi Handa <handa@m17n.org>
25626
25627 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
25628 already at limit.
25629
25630 2008-02-01 Kenichi Handa <handa@m17n.org>
25631
25632 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
25633 instead of fast_c_string_match_ignore_case.
25634 (find_font_encoding): Change argument to Lisp_Object.
25635 Use fast_string_match_ignore_case instead of
25636 fast_c_string_match_ignore_case. Change caller.
25637
25638 2008-02-01 Kenichi Handa <handa@m17n.org>
25639
25640 * xdisp.c (get_next_display_element): In unibyte case, decide to
25641 display in octal form by checking a character by
25642 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
25643
25644 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
25645
25646 * character.c (unibyte_has_multibyte_table): New variable.
25647
25648 * character.h (unibyte_has_multibyte_table): Extern it.
25649 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
25650
25651 2008-02-01 Kenichi Handa <handa@m17n.org>
25652
25653 * coding.c (encode_coding_iso_2022): Fix handling of charset
25654 annotation.
25655
25656 2008-02-01 Kenichi Handa <handa@m17n.org>
25657
25658 * coding.c (setup_coding_system): If coding_system is nil, use
25659 Qundecided.
25660 (Fterminal_coding_system): Return nil if terminal coding system is
25661 `undecided'.
25662 (syms_of_coding): Define coding-system `undecided' here.
25663 Setup terminal_coding as `undecided'.
25664
25665 2008-02-01 Kenichi Handa <handa@m17n.org>
25666
25667 * xdisp.c (message_dolog, set_message_1):
25668 Call unibyte_char_to_multibyte with arg type int.
25669
25670 * lread.c (read1): Fix reading of a char-table.
25671
25672 * print.c (print_object): Include sub char-table in circularities
25673 detection.
25674
25675 2008-02-01 Kenichi Handa <handa@m17n.org>
25676
25677 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
25678 Append the found sequences in car of ARGS instead of prepending.
25679
25680 2008-02-01 Kenichi Handa <handa@m17n.org>
25681
25682 * fileio.c (report_file_error): Make a unibyte string from
25683 strerror (errorno).
25684 (Fsubstitute_in_file_name): Fix the arg to
25685 unibyte_char_to_multibyte. It is evaluated twice.
25686
25687 2008-02-01 Kenichi Handa <handa@m17n.org>
25688
25689 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
25690
25691 2008-02-01 Kenichi Handa <handa@m17n.org>
25692
25693 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
25694 BOM is not found.
25695 (detect_coding, detect_coding_system): Optimization for ISO-2022
25696 when no 8-bit data is found.
25697
25698 2008-02-01 Jason Rumney <jasonr@gnu.org>
25699
25700 * w32fns.c (x_to_w32_font): Update to use new coding struct.
25701
25702 2008-02-01 Kenichi Handa <handa@m17n.org>
25703
25704 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
25705 CHARS.
25706
25707 2008-02-01 Steven Tamm <steventamm@mac.com>
25708
25709 * macterm.c (mac_encode_char): Add charset argument and update
25710 to use encoding_type.
25711 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
25712 switch to pure fontset.
25713 (decode_mac_font_name): Temporarily remove decoding.
25714 (x_font_name_to_mac_font_name): Temporarily remove encoding.
25715 (x_load_font): Temporarily remove encoding.
25716
25717 2008-02-01 Kenichi Handa <handa@m17n.org>
25718
25719 * xfaces.c (Fface_font): If frame is not on a window system,
25720 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
25721 refer to face->font.
25722 (split_font_name_into_vector, build_font_name_from_vector)
25723 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
25724 when HAVE_WINDOW_SYSTEM is defined.
25725
25726 2008-02-01 Kenichi Handa <handa@m17n.org>
25727
25728 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
25729 (x_produce_glyphs): Fix setting of members of cmp in case
25730 cmp->glyph_len is zero.
25731
25732 * fontset.c (Fset_fontset_font): Fix docstring.
25733 (Ffontset_info): Make it backward compatible. New arg ALL.
25734
25735 2008-02-01 Kim F. Storm <storm@cua.dk>
25736
25737 * process.c (read_process_output): Grow decoding_buf when needed;
25738 this could cause a crash in allocate_string and compact_small_strings.
25739
25740 2008-02-01 Kenichi Handa <handa@m17n.org>
25741
25742 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
25743
25744 2008-02-01 Kenichi Handa <handa@m17n.org>
25745
25746 * coding.c (setup_coding_system): Set coding->common_flags
25747 correctly for raw-text.
25748 (consume_chars): On encoding unibyte text by raw-text, don't check
25749 multibyte form.
25750 (encode_coding): On encoding by raw-text, never use translation tables.
25751
25752 * fileio.c (e_write): Short cut for the case of no encoding.
25753
25754 2008-02-01 Kenichi Handa <handa@m17n.org>
25755
25756 * coding.c (detect_coding, detect_coding_system): Delete unused
25757 variables.
25758
25759 2008-02-01 Kenichi Handa <handa@m17n.org>
25760
25761 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
25762 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
25763
25764 2008-02-01 Kenichi Handa <handa@m17n.org>
25765
25766 * coding.c (Ffind_coding_systems_region_internal):
25767 Include raw-text and no-conversion in the result.
25768
25769 2008-02-01 Kenichi Handa <handa@m17n.org>
25770
25771 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
25772 (load_font_get_repertory): Delete unnecessary check of ENCODING of
25773 FONT_DEF.
25774 (font_def_arg, add_arg, from_arg, to_arg): New args.
25775 (set_fontset_font): Change argument.
25776 (Fset_fontset_font): Fix for the case that TARGET is a script
25777 name and charset name.
25778 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
25779
25780 2008-02-01 Kenichi Handa <handa@m17n.org>
25781
25782 * fontset.c (fontset_font): Rename from fontset_face. Change return
25783 value.
25784 (face_suitable_for_char_p, face_for_char): Adjust for the change
25785 of fontset_font.
25786 (make_fontset_for_ascii_face): Fix setting of the fontset element
25787 for ASCII.
25788 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
25789 to get a font name.
25790 (Ffontset_info): Adjust for the change of fontset_font.
25791
25792 * coding.c (emacs_mule_char): Check invalid code more rigidly.
25793
25794 * character.h (LEADING_CODE_LATIN_1_MIN)
25795 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
25796
25797 2008-02-01 Kenichi Handa <handa@m17n.org>
25798
25799 * editfns.c (check_translation): New function.
25800 (Ftranslate_region_internal): Handle M:N mapping.
25801
25802 2008-02-01 Kenichi Handa <handa@m17n.org>
25803
25804 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
25805
25806 2008-02-01 Kenichi Handa <handa@m17n.org>
25807
25808 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
25809 goto invalid_code.
25810 (decode_coding_iso_2022): Fix handling of invalid designation.
25811
25812 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
25813 after calling code_conversion_save.
25814
25815 2008-02-01 Kenichi Handa <handa@m17n.org>
25816
25817 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
25818
25819 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
25820
25821 * fontset.c: Include "intervals.h".
25822 (fontset_face): Fix comparing of Lisp_Objects.
25823 (free_face_fontset, new_fontset_from_font_name):
25824 Fix Lisp_Object/int mixup.
25825
25826 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
25827
25828 * coding.c: Add many prototypes for static functions.
25829 (get_translation_table): Allow max_lookup to be NULL.
25830 (decode_coding, Ffind_coding_systems_region_internal)
25831 (Funencodable_char_position, Fcheck_coding_systems_region):
25832 Call get_translation_table with max_lookup NULL.
25833
25834 2008-02-01 Kenichi Handa <handa@m17n.org>
25835
25836 * coding.c (get_translation_table): Declare it as Lisp_Object.
25837 (LOOKUP_TRANSLATION_TABLE): New macro.
25838 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
25839 instead of CHAR_TABLE_REF.
25840
25841 2008-02-01 Kenichi Handa <handa@m17n.org>
25842
25843 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
25844 annotation data format.
25845 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
25846 Change arguments FROM and TO to single argument NCHARS. Change caller.
25847 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
25848 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
25849 (decode_coding_ccl, decode_coding_charset): Pay attention to
25850 coding->charbuf_used.
25851 (get_translation): New function.
25852 (produce_chars): New arguments translation_table and last_block.
25853 Translate characters here. Return number of carryover chars.
25854 Change caller.
25855 (produce_composition): New argument pos. Change caller.
25856 Adjust for the change of annotation data format.
25857 (produce_charset, produce_annotation): Likewise.
25858 (decode_coding, encode_coding): Don't call translate_chars.
25859 (consume_chars): New arg translation_table. Change caller.
25860 (translate_chars): Delete.
25861 (syms_of_coding): Make translation-table's number of extra slots 2.
25862
25863 2008-02-01 Kenichi Handa <handa@m17n.org>
25864
25865 * search.c (simple_search): Fix setting this_pos_byte in backward
25866 search.
25867
25868 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
25869 byte sequence.
25870 (detect_coding_ccl): Fix setting of the variable valids.
25871
25872 2008-02-01 Kenichi Handa <handa@m17n.org>
25873
25874 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
25875
25876 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
25877
25878 * editfns.c (Ftranslate_region_internal): Rename from
25879 Ftranslate_region. Accept a char-table in TABLE.
25880 (syms_of_editfns): Defsubr Stranslate_region_internal.
25881
25882 * xfaces.c (set_lface_from_font_name): If a font is specified for
25883 a frame, generate a fontset from the font.
25884 (build_scalable_font_name): If the scalable font is requested for
25885 a specific size, don't change that size.
25886 (try_font_list): Try a scalable font also in the case that a
25887 pattern string is specified.
25888
25889 2008-02-01 Kenichi Handa <handa@m17n.org>
25890
25891 * xfaces.c (Fface_font): New optional arg CHARACTER.
25892
25893 2008-02-01 Kenichi Handa <handa@m17n.org>
25894
25895 * charset.h (CHARSET_OFFSET): New macro.
25896
25897 2008-02-01 Kenichi Handa <handa@m17n.org>
25898
25899 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
25900
25901 * fontset.c (fontset_face): Handle the case that repertory is a
25902 char-table.
25903 (find_font_encoding): Return nil for unknown encoding.
25904 (Fset_fontset_font): Ignore a font of unknown encoding.
25905
25906 2008-02-01 Kenichi Handa <handa@m17n.org>
25907
25908 * keymap.c (describe_vector): Handle default value of a char table.
25909
25910 * fontset.c (fontset_face): Handle fallback fonts correctly.
25911 (Ffontset_info): Return infomation about fallback fonts.
25912
25913 2008-02-01 Kenichi Handa <handa@m17n.org>
25914
25915 * fontset.c (FONTSET_DEFAULT): New macro.
25916 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
25917 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
25918 the case that it is nil.
25919 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
25920 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
25921
25922 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
25923 subset or superset.
25924
25925 2008-02-01 Kenichi Handa <handa@m17n.org>
25926
25927 * emacs.c (main): Call init_charset after syms_of_XXX.
25928
25929 * charset.c (Vcharset_map_directory): Delete.
25930 (Vcharset_map_path): New variable.
25931 (load_charset_map_from_file): Use Vcharset_map_path instead.
25932 (init_charset): Initialize Vcharset_map_path.
25933 (syms_of_charset): Delete declaration of "charset-map-directory",
25934 add declaration of "charset-map-path".
25935
25936 2008-02-01 Kenichi Handa <handa@m17n.org>
25937
25938 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
25939 ASCII only string.
25940
25941 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
25942
25943 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
25944 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
25945
25946 2008-02-01 Kenichi Handa <handa@m17n.org>
25947
25948 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
25949
25950 * coding.c (QCmnemonic, QCdefalut_char)
25951 (QCdecode_translation_table, QCencode_translation_table)
25952 (QCpost_read_conversion, QCpre_write_conversion): New variables.
25953 (get_translation_table): Return a list of translation tables if
25954 necessary.
25955 (decode_coding): Call get_translation_table with ENCODEP 0.
25956 (char_encodable_p): If translation_table is non-nil, always call
25957 translate_char.
25958 (Fdefine_coding_system_internal): Accept list of translation
25959 tables as :encode-translation-table and :decode-translation-table.
25960 (Fcoding_system_put): New function.
25961 (syms_of_coding): Declare new symbols.
25962 Defsubr Scoding_system_put.
25963 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
25964 typically JISX0212.
25965
25966 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
25967 when the charset is superset type.
25968
25969 * character.c (translate_char): Accept list of translation tables.
25970
25971 2008-02-01 Kenichi Handa <handa@m17n.org>
25972
25973 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
25974 (CODING_ATTR_TRANS_TBL): New macro.
25975
25976 * coding.c (get_translation_table): New function.
25977 (translate_chars): Fix the bug of skipping annotation data.
25978 (decode_coding, encode_coding): Utilize get_translation_table.
25979 (char_encodable_p, Funencodable_char_position): Translate char if
25980 necessary.
25981 (Ffind_coding_systems_region_internal)
25982 (Fcheck_coding_systems_region): Setup translation table for encode
25983 in a coding system attribute vector in advance.
25984 (Fdefine_coding_system_internal): Allow a symbol as translation
25985 table. For shift-jis type coding system, allow 4th charset.
25986
25987 2008-02-01 Kenichi Handa <handa@m17n.org>
25988
25989 * coding.c (decode_coding_sjis): Check the first byte rigidly.
25990
25991 * xdisp.c (get_next_display_element): Pass -1 as POS to
25992 FACE_FOR_CHAR if displaying a C-string.
25993
25994 2008-02-01 Kenichi Handa <handa@m17n.org>
25995
25996 * composite.c (get_composition_id): Handle xoff and yoff in a
25997 composition rule.
25998
25999 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
26000 (struct composition): New member lbearing and rbearing.
26001
26002 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
26003 (x_get_glyph_overhangs): Handle a composition glyph.
26004 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
26005
26006 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
26007 composition glyph.
26008
26009 2008-02-01 Kenichi Handa <handa@m17n.org>
26010
26011 * print.c: Include charset.h.
26012 (Vprint_charset_text_property): New variable.
26013 (Qdefault): Extern it.
26014 (PRINT_STRING_NON_CHARSET_FOUND)
26015 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
26016 (print_check_string_result): New variable.
26017 (print_check_string_charset_prop): New function.
26018 (print_prune_charset_plist): New variable.
26019 (print_prune_string_charset): New function.
26020 (print_object): Call print_prune_string_charset if
26021 Vprint_charset_text_property is not t.
26022 (print_interval): Print nothing if interval->plist is nil.
26023 (syms_of_print): Declare Vprint_charset_text_property as a lisp
26024 variable. Init and staticpro print_prune_charset_plist.
26025
26026 2008-02-01 Kenichi Handa <handa@m17n.org>
26027
26028 * fontset.c (new_fontset_from_font_name): Use the specified font
26029 for all characters in the new fontset.
26030
26031 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
26032 OBJECT args.
26033
26034 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
26035 OBJECT args for composition too.
26036
26037 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
26038 OBJECT args.
26039
26040 2008-02-01 Kenichi Handa <handa@m17n.org>
26041
26042 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
26043
26044 * fontset.c (reorder_font_vector): Adjust for the change of
26045 FONT_DEF format.
26046 (fontset_face): New arg id. Change caller.
26047 (face_for_char): New args pos and object.
26048 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
26049 (fs_query_fontset): Check NAME by Fassoc too.
26050 (Fset_fontset_font): Allow non-XLFD font name.
26051 (Ffontset_info): Adjust for the change of FONT_DEF format.
26052
26053 * fontset.h (face_for_char): Adjust prototype.
26054
26055 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
26056 (append_space, extend_face_to_end_of_line)
26057 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
26058 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
26059
26060 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
26061 POS and OBJECT args.
26062
26063 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
26064 POS and OBJECT args.
26065
26066 2008-02-01 Jason Rumney <jasonr@gnu.org>
26067
26068 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
26069 of GlobalAlloc'ed memory.
26070
26071 2008-02-01 Kenichi Handa <handa@m17n.org>
26072
26073 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
26074
26075 * charset.h (charset_table_used): Delete extern.
26076
26077 * charset.c (charset_table_used): Make it static.
26078 (map_charset_chars): Fix args to c_function with.
26079
26080 * chartab.c (map_sub_char_table_for_charset): Fix args to
26081 c_function with.
26082
26083 * coding.h (enum coding_result_code):
26084 Delete CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
26085
26086 * coding.c (Qinsufficient_source, Qinconsistent_eol)
26087 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
26088 (Vlast_code_conversion_error): New variables.
26089 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
26090 (ONE_MORE_BYTE): Record error if any instead of signaling an
26091 error. If non-ASCII multibyte char is found, return the negative
26092 value of the code. All callers changed to check it.
26093 (ONE_MORE_BYTE_NO_CHECK): Likewise.
26094 (record_conversion_result): New function. Change all codes setting
26095 coding->result to call this function.
26096 (detect_coding_utf_8, decode_coding_utf_8)
26097 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
26098 Don't use the local variable incomplete.
26099 (emacs_mule_char): Change the second arg to `const'.
26100 (decode_coding): Fix of flushing out unprocessed data.
26101 (make_conversion_work_buffer): Fix making of a work buffer.
26102 (decode_coding_object): Return coding->dst_object.
26103
26104 * fontset.c (set_fontset_font): Fix args.
26105
26106 * lisp.h (CHARACTERBITS): Define as 22.
26107
26108 * process.c (send_process): Be sure to set coding->src_multibyte.
26109
26110 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
26111
26112 2008-02-01 Kenichi Handa <handa@m17n.org>
26113
26114 * xdisp.c (handle_auto_composed_prop): Give limit to
26115 Fnext_single_char_property_change.
26116
26117 2008-02-01 Kenichi Handa <handa@m17n.org>
26118
26119 * composite.c (syms_of_composite): Don't make the composition hash
26120 table weak.
26121
26122 * fontset.c (Fset_fontset_font): Fix docstring.
26123
26124 * lisp.h (detect_coding_system): Adjust prototype.
26125
26126 * fileio.c (kill_workbuf_unwind): Delete this function.
26127 (Finsert_file_contents): Adjust the call of detect_coding_system.
26128 Get conversion_buffer by code_conversion_save. Use the macro
26129 CODING_MAY_REQUIRE_DECODING. After decoding, update
26130 coding_system.
26131
26132 * coding.h (make_conversion_work_buffer): Delete extern.
26133 (code_conversion_save): Extern it.
26134
26135 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
26136 (CODING_GET_INFO): Delete argument eol_type. Change callers.
26137 (decode_coding_utf_8): Don't do eol converion.
26138 (detect_coding_utf_16): Check coding->src_chars, not
26139 coding->src_bytes. Add heuristics for those that have no signature.
26140 (decode_coding_emacs_mule, decode_coding_iso_2022)
26141 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
26142 Don't do eol converion.
26143 (adjust_coding_eol_type): Return a new coding system.
26144 (detect_coding): Don't detect eol. Fix for utf-16 detection.
26145 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
26146 each change.
26147 (decode_coding): Pay attention to undo_list. Do eol conversion for
26148 all types of coding-systems (if necessary).
26149 (Vcode_conversion_work_buf_list): Delete it.
26150 (Vcode_conversion_reused_workbuf): Rename from
26151 Vcode_conversion_reused_work_buf.
26152 (Vcode_conversion_workbuf_name): New variable.
26153 (reused_workbuf_in_use): New variable.
26154 (make_conversion_work_buffer): Delete the arg DEPTH.
26155 (code_conversion_restore): Change argument to cons.
26156 (code_conversion_save): Delete the argument BUFFER. Change callers.
26157 (detect_coding_system): New argument src_chars. Change callers.
26158 Fix for utf-16 detection.
26159 (init_coding_once): Don't use ISO_carriage_return.
26160 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
26161 reused_workbuf_in_use.
26162
26163 2008-02-01 Kenichi Handa <handa@m17n.org>
26164
26165 * keymap.c (store_in_keymap): Pay attention to the case that idx
26166 is a cons specifying a character range.
26167
26168 2008-02-01 Kenichi Handa <handa@m17n.org>
26169
26170 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
26171 HANDLED_RECOMPUTE_PROPS.
26172
26173 * coding.c (Fdefine_coding_system_internal): Fix checking of
26174 ascii compatibility.
26175
26176 2008-02-01 Kenichi Handa <handa@m17n.org>
26177
26178 * charset.c (find_charsets_in_text): Delete unused locale variable.
26179 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
26180
26181 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
26182 Resync charset_list to Vemacs_mule_charset_list.
26183
26184 * keymap.c (store_in_keymap): Pay attention to the case that idx
26185 is a cons specifying a character range.
26186
26187 2008-02-01 Kenichi Handa <handa@m17n.org>
26188
26189 * composite.c (update_compositions): Bind inhibit-read-only, etc
26190 to t before calling remove-list-of-text-properties.
26191
26192 * print.c (print_object): Always print ASCII chars as is.
26193
26194 2008-02-01 Kenichi Handa <handa@m17n.org>
26195
26196 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
26197
26198 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
26199 is a char table.
26200
26201 2008-02-01 Kenichi Handa <handa@m17n.org>
26202
26203 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
26204
26205 2008-02-01 Kenichi Handa <handa@m17n.org>
26206
26207 * xfaces.c (set_lface_from_font_name): Fix for the case that
26208 FONTNAME is not fontset name.
26209
26210 2008-02-01 Kenichi Handa <handa@m17n.org>
26211
26212 * fns.c (base64_encode_1): Fix previous change.
26213
26214 2008-02-01 Kenichi Handa <handa@m17n.org>
26215
26216 * fontset.c (set_fontset_font): New function.
26217 (Fset_fontset_font): If a font is specified for a charset, use
26218 map_charset_chars to store the font spec in a fontset.
26219
26220 2008-02-01 Kenichi Handa <handa@m17n.org>
26221
26222 * fontset.c (fontset_face): Create a fallback fontset on demand.
26223 (make_fontset): Don't create a fallback fontset here.
26224 (free_face_fontset): Free a fallback fontset (if any) too.
26225 (n_auto_fontsets): Delete this variable.
26226 (auto_fontset_alist): New variable.
26227 (new_fontset_from_font_name): Check auto_fontset_alist.
26228 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
26229 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
26230 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
26231 Defsubr Sfontset_list_all.
26232
26233 2008-02-01 Kenichi Handa <handa@m17n.org>
26234
26235 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
26236
26237 2008-02-01 Kenichi Handa <handa@m17n.org>
26238
26239 * fontset.c (Fnew_fontset): Check NAME more rigidly.
26240
26241 2008-02-01 Kenichi Handa <handa@m17n.org>
26242
26243 * editfns.c (Fgoto_char): Fix docstring.
26244
26245 2008-02-01 Kenichi Handa <handa@m17n.org>
26246
26247 * insdel.c (insert_from_gap): Adjust intervals correctly.
26248
26249 2008-02-01 Jason Rumney <jasonr@gnu.org>
26250
26251 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
26252 (pfnGetFontUnicodeRanges): New dynamically loaded function.
26253 (w32_initialize): Try to load it.
26254 (x_get_font_repertory): Use it if available.
26255 (w32_encode_char): Add shortcut for unicode output.
26256
26257 * w32fns.c (w32_load_system_font): Default charset to -1.
26258 (x_to_w32_charset): Match all fonts for unicode.
26259 (w32_to_x_charset): New parameter matching. Don't return partial
26260 or wildcard charsets.
26261 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
26262 (w32_codepage_for_font): Return CP_UNICODE for unicode.
26263 (w32_to_x_font): Match charset to real charset.
26264 (enum_font_cb2): Always list unicode versions.
26265
26266 * makefile.w32-in (temacs): Increase EMHEAP.
26267
26268 2008-02-01 Jason Rumney <jasonr@gnu.org>
26269
26270 * w32term.c (w32_encode_char): New charset parameter.
26271 font_info.encoding becomes encoding_type.
26272 (x_get_font_repertory): New function. Warning: stub only!
26273 (x_new_font): Return quickly if font already set.
26274 (x_new_fontset): fontsetname parameter is Lisp_Object.
26275 Use new fs_query_fontset. Try new_fontset_from_font_name.
26276 Use fontset_name for return value.
26277
26278 * w32term.h: Declare x_get_font_repertory.
26279
26280 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
26281 place of find_charset_in_text. Use encode_coding_object in place
26282 of encode_coding.
26283 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
26284 decode_coding.
26285
26286 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
26287 of x_new_fontset.
26288 (w32_load_system_font): Initialize charset as unicode.
26289 font_info.encoding becomes encoding_type.
26290 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
26291 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
26292 (syms_of_w32fns): Set get_font_repertory_func.
26293
26294 * w32console.c: Include character.h. Use terminal_encode_buffer
26295 from term.c.
26296 (write_glyphs): Use new version of encode_terminal_code.
26297 Use encode_coding_object in place of encode_coding.
26298
26299 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
26300 encoding becomes encoding_type.
26301
26302 * term.c (terminal_encode_buffer): Make externally visible.
26303
26304 * makefile.w32-in: Add character.h dependancies.
26305 (character.o, chartab.o): New targets.
26306
26307 2008-02-01 Kenichi Handa <handa@m17n.org>
26308
26309 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
26310 CODING_ID_EOL_TYPE.
26311
26312 2008-02-01 Andreas Schwab <schwab@suse.de>
26313
26314 * coding.c (produce_chars): Revert last change.
26315
26316 2008-02-01 Kenichi Handa <handa@m17n.org>
26317
26318 * charset.h (charset_unicode): Extern it.
26319
26320 * charset.c (string_xstring_p): Check by (C >= 0x100).
26321 (find_charsets_in_text): Change format of the arc CHARSETS.
26322 New arg MULTIBYTE.
26323 (Ffind_charset_region, Ffind_charset_string): Adjust for the
26324 change of find_charsets_in_text.
26325 (Fsplit_char): Fix doc. Never return unknown.
26326
26327 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
26328
26329 * coding.c (Fdefine_coding_system_alias):
26330 Update Vcoding_system_list.
26331
26332 * fontset.c (load_font_get_repertory): Pay attention to the case
26333 that ENCODING of a font is specified by a char-table.
26334
26335 * xterm.c (x_get_font_repertory): Handle the case that the
26336 encoding of font is other than Unicode.
26337
26338 2008-02-01 Kenichi Handa <handa@m17n.org>
26339
26340 * term.c (encode_terminal_code): Don't handle glyph-table.
26341 Check if a character is encodable by the terminal coding system.
26342 If not, produces proper number of `?'s. Update
26343 terminal_encode_buffer and terminal_encode_buf_size if necessary.
26344 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
26345
26346 2008-02-01 Kenichi Handa <handa@m17n.org>
26347
26348 * term.c (terminal_encode_buffer, terminal_encode_buf_size):
26349 New variables.
26350 (encode_terminal_code): Change argument. Encode multiple
26351 characters at once. Store the result of encoding in
26352 terminal_encode_buffer.
26353 (write_glyphs, insert_glyphs): Adjust for the change of
26354 encode_terminal_code.
26355 (term_init): Initialize terminal_encode_buffer and
26356 terminal_encode_buf_size.
26357
26358 * coding.c (consume_chars): If coding->src_object is nil, don't
26359 check annotation.
26360
26361 2008-02-01 Kenichi Handa <handa@m17n.org>
26362
26363 * character.c (char_string): Use ASCII_CHAR_P instead of
26364 SINGLE_BYTE_CHAR_P.
26365
26366 2008-02-01 Kenichi Handa <handa@m17n.org>
26367
26368 * xdisp.c (handle_auto_composed_prop): Check if the last
26369 characters of auto-composed region is newly composed with the
26370 following characters.
26371 (handle_composition_prop): Fix checking of point being inside
26372 composition.
26373
26374 2008-02-01 Kenichi Handa <handa@m17n.org>
26375
26376 * fns.c (concat): Don't change multibyteness of the result by
26377 concatenating an 8-bit character.
26378
26379 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
26380 multibyteness of the result when newelt is an 8-bit character.
26381
26382 2008-02-01 Dave Love <fx@gnu.org>
26383
26384 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
26385 EMACS_INT.
26386
26387 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
26388
26389 * xfaces.c (face_numeric_value): Declare dim size_t.
26390 (Finternal_lisp_face_equal_p): Remove unused f.
26391
26392 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
26393 (MATRIX_ROW): Remove unused vars.
26394 (draw_glyphs, x_insert_glyphs, fast_find_position)
26395 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
26396 byte/char counts.
26397
26398 * regex.c (regex_compile): Remove unused var.
26399
26400 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
26401
26402 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
26403 (Faccessible_keymaps, where_is_internal): Remove unused vars.
26404
26405 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
26406
26407 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
26408
26409 * fileio.c (Fwrite_region): Remove unused var.
26410
26411 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
26412 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
26413
26414 * composite.c (Fremove_list_of_text_properties): Declare.
26415
26416 * coding.c (inhibit_pre_post_conversion): Remove (unused).
26417 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
26418 (coding_inherit_eol_type): Remove unused attrs.
26419 (detect_coding): Cast arg of detect_eol.
26420
26421 * charset.c (syms_of_charset): Remove unused var p.
26422 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
26423 byte/char counts.
26424
26425 * casetab.c (set_case_table): Remove unused var.
26426
26427 * window.c (Fdisplay_buffer, Fframe_selected_window):
26428 Remove unused vars.
26429
26430 2008-02-01 Dave Love <fx@gnu.org>
26431
26432 * xterm.c (x_bitmap_mask): Declare.
26433
26434 2008-02-01 Dave Love <fx@gnu.org>
26435
26436 * xterm.c (x_term_init): Fix type error.
26437
26438 * lisp.h: Add Funibyte_char_to_multibyte.
26439
26440 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
26441 (Fset_coding_system_priority): Doc fix.
26442
26443 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
26444
26445 * indent.c (check_composition): Make start and end EMACS_INT.
26446
26447 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
26448
26449 * xdisp.c (handle_composition_prop, check_point_in_composition):
26450 Make buffer positions EMACS_INT.
26451
26452 * composite.c (find_composition, run_composition_function)
26453 (update_compositions, Ffind_composition_internal): Make buffer
26454 positions EMACS_INT.
26455
26456 * composite.h (find_composition, update_compositions):
26457 Make position args EMACS_INT.
26458
26459 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
26460
26461 * intervals.c (get_property_and_range):
26462 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
26463
26464 * unexalpha.c: Don't include varargs.h.
26465
26466 2008-02-01 Dave Love <fx@gnu.org>
26467
26468 * coding.h (ENCODE_UTF_8): New.
26469
26470 * Makefile.in (gtkutil.o): Depend on coding.h.
26471
26472 * coding.c (Fset_coding_system_priority): Doc fix.
26473
26474 2008-02-01 Kenichi Handa <handa@m17n.org>
26475
26476 * fileio.c (Finsert_file_contents): Call setup_coding_system in
26477 the case of auto saving.
26478
26479 2008-02-01 Andreas Schwab <schwab@suse.de>
26480
26481 * chartab.c (map_char_table, map_char_table_for_charset):
26482 Protect `range' from GC.
26483
26484 2008-02-01 Kenichi Handa <handa@m17n.org>
26485
26486 * coding.c (decode_coding_sjis): Check bytes more rigidly.
26487
26488 2008-02-01 Kenichi Handa <handa@m17n.org>
26489
26490 * fileio.c (choose_write_coding_system): Return a decided coding system.
26491 (Fwrite_region): Set Vlast_coding_system_used to the return value
26492 of choose_write_coding_system.
26493
26494 2008-02-01 Kenichi Handa <handa@m17n.org>
26495
26496 * charset.c (Fset_charset_priority): Pay attention to duplicated
26497 arguments.
26498
26499 * coding.c (QCcategory): New variable.
26500 (syms_of_coding): Defsym it. Set all elements of
26501 Vcoding_category_table and their symbol values.
26502 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
26503 coding-category-XXX, and coding-category-list.
26504 (Fdefine_coding_system_internal): Add category in the plist.
26505
26506 2008-02-01 Kenichi Handa <handa@m17n.org>
26507
26508 * callproc.c (Fcall_process): Handle carryover correctly.
26509
26510 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
26511 (raw_text_coding_system): Check NILP (coding_system).
26512 (coding_inherit_eol_type): Check NILP (coding_system) and
26513 NILP (parent).
26514 (consume_chars): Fix for the case of raw-text.
26515
26516 * process.c (read_process_output): Handle carryover correctly.
26517
26518 2008-02-01 Dave Love <fx@gnu.org>
26519
26520 * regex.c (re_search_2): Fix last change.
26521
26522 2008-02-01 Kenichi Handa <handa@m17n.org>
26523
26524 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
26525 target_multibyte. Even in a unibyte case, return a converted
26526 multibyte char.
26527 (GET_CHAR_AFTER): New macro.
26528 (PATFETCH): Translate via multibyte char.
26529 (HANDLE_UNIBYTE_RANGE): Delete this macro.
26530 (SETUP_MULTIBYTE_RANGE): New macro.
26531 (regex_compile): Setup compiled code so that its multibyteness
26532 matches that of a target. Fix the handling of "[X-YZ]" using
26533 SETUP_MULTIBYTE_RANGE.
26534 (analyse_first) <charset>: For filling fastmap for all multibyte
26535 characters, don't check by BASE_LEADING_CODE_P.
26536 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
26537 the same as RE_MULTIBYTE_P (bufp) now.
26538 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
26539 (TARGET_CHAR_AND_LENGTH): Delete this macro.
26540 (TRANSLATE_VIA_MULTIBYTE): New macro.
26541 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
26542 It is the same as RE_MULTIBYTE_P (bufp) now.
26543 <exactn>: Translate via multibyte.
26544 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH.
26545 Don't translate it.
26546 <charset, charset_not>: Fetch a character by
26547 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
26548 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
26549 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
26550 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
26551 by GET_CHAR_AFTER.
26552 (bcmp_translate): Likewise.
26553
26554 * search.c (compile_pattern): Check the member target_multibyte,
26555 not the member multibyte of buf.
26556
26557 * lread.c (read1): While reading a string, set force_singlebyte
26558 and force_multibyte correctly.
26559
26560 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
26561 up of unibyte_to_multibyte_table.
26562
26563 2008-02-01 Kenichi Handa <handa@m17n.org>
26564
26565 * coding.c (setup_coding_system): If coding has
26566 post-read-conversion or pre-write-conversion, set
26567 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
26568 respectively.
26569 (decode_coding_gap): Run post-read-conversion if any.
26570
26571 * fileio.c (Finsert_file_contents): Even if we read into a
26572 unibyte buffer, check if we must decode the result or not.
26573
26574 2008-02-01 Kenichi Handa <handa@m17n.org>
26575
26576 * coding.c (make_conversion_work_buffer): Change the work buffer
26577 name to the same one as that of Emacs 21.
26578
26579 2008-02-01 Kenichi Handa <handa@m17n.org>
26580
26581 * coding.h (make_conversion_work_buffer): Adjust prototype.
26582 (code_conversion_restore): Don't extern it.
26583
26584 * coding.c (detected_mask): Delete unused variable.
26585 (decode_coding_iso_2022): Pay attention to the byte sequence of
26586 CTEXT extended segment, and retain those bytes as is.
26587 (decode_coding_ccl): Delete unused variable `valids'.
26588 (setup_coding_system): Delete unused variable `category'.
26589 (consume_chars): Delete unused variable `category'. Make it work
26590 for non-multibyte case.
26591 (make_conversion_work_buffer): Change argument.
26592 (saved_coding): Delete unused variable.
26593 (code_conversion_restore): Don't check saved_coding->destination.
26594 (code_conversion_save): New function.
26595 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
26596 instead of record_unwind_protect.
26597 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
26598 (detect_coding_system): Delete unused variable `mask'.
26599 (Fdefine_coding_system_internal): Delete unused variable id.
26600
26601 * fileio.c (kill_workbuf_unwind): New function.
26602 (Finsert_file_contents): On replacing, call
26603 make_conversion_work_buffer with correct args, and call
26604 record_unwind_protect with the first arg kill_workbuf_unwind.
26605
26606 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
26607
26608 2008-02-01 Kenichi Handa <handa@m17n.org>
26609
26610 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
26611 (fontset_add): Fix for the case that TO is less than TO1.
26612 (Ffontset_info): Don't use fallback fontset on checking the
26613 default fontset.
26614 (dump_fontset): New function for debugging.
26615
26616 * coding.c (Fdefine_coding_system_internal): Fix for the case that
26617 coding_type is Qcharset.
26618
26619 2008-02-01 Kenichi Handa <handa@m17n.org>
26620
26621 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
26622 (map_char_table): Don't inherit the value from the parent on
26623 initializing VAL. Adjust for the above change.
26624
26625 2008-02-01 Kenichi Handa <handa@m17n.org>
26626
26627 * coding.c (Qsignature, Qendian): Delete these variables.
26628 (syms_of_coding): Don't initialize them.
26629 (CATEGORY_MASK_UTF_16_AUTO): New macro.
26630 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
26631 detect_info->found.
26632 (decode_coding_utf_16): Don't detect BOM here.
26633 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
26634 is NOT utf_16_without_bom.
26635 (setup_coding_system): For a coding system of type utf-16, check
26636 if the attribute :endian is Qbig or not (not nil or not), and set
26637 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
26638 (detect_coding): If coding type is utf-16 and BOM detection is
26639 required, detect it.
26640 (Fdefine_coding_system_internal): For a coding system of type
26641 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
26642
26643 2008-02-01 Kenichi Handa <handa@m17n.org>
26644
26645 * coding.c (coding_set_source): Fix for the case that the current
26646 buffer is different from coding->src_object.
26647 (decode_coding_object): Don't use the conversion work buffer if
26648 DST_OBJECT is a buffer.
26649
26650 2008-02-01 Dave Love <fx@gnu.org>
26651
26652 * lread.c (read_emacs_mule_char) [len==2]: Index
26653 emacs_mule_charset correctly.
26654
26655 2008-02-01 Dave Love <fx@gnu.org>
26656
26657 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
26658 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
26659 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
26660 treated specially.)
26661 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
26662 (detected_mask): Remove Big5 bits.
26663
26664 2008-02-01 Kenichi Handa <handa@m17n.org>
26665
26666 The following changes are to make the font rescaling facility
26667 compatible with Emacs 21.
26668
26669 * xfaces.c (Vface_font_rescale_alist): Rename from
26670 Vface_resizing_fonts.
26671 (struct font_name): Rename member resizing_ratio to rescale_ratio.
26672 (font_rescale_ratio): Rename from font_resizing_ratio.
26673 (split_font_name): Set font->rescale_ratio.
26674 (better_font_p): Pay attention to font->rescale_ratio.
26675 (build_scalable_font_name): Likewise. Change RESX, and RESY
26676 fields.
26677 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
26678
26679 2008-02-01 Kenichi Handa <handa@m17n.org>
26680
26681 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
26682 (Qutf_16_le): Remove these variables.
26683 (syms_of_coding): Don't DEFSYM them.
26684 (decode_coding_utf_16): Fix handling of BOM.
26685 (encode_coding_utf_16): Fix handling of BOM.
26686
26687 2008-02-01 Kenichi Handa <handa@m17n.org>
26688
26689 * fileio.c (Finsert_file_contents): On replacing, before decoding
26690 the file into the work buffer, set point of the work buffer to the end.
26691
26692 2008-02-01 Dave Love <fx@gnu.org>
26693
26694 * coding.c (Fcheck_coding_systems_region): Fix type errors.
26695
26696 2008-02-01 Dave Love <fx@gnu.org>
26697
26698 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
26699 and fix C types.
26700
26701 2008-02-01 Kenichi Handa <handa@m17n.org>
26702
26703 * xdisp.c (SKIP_GLYPHS): New macro.
26704 (set_cursor_from_row): Pay attention to string display properties.
26705
26706 * category.c (copy_category_entry): Fix for the case that RANGE
26707 is an integer.
26708
26709 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
26710
26711 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
26712
26713 2008-02-01 Kenichi Handa <handa@m17n.org>
26714
26715 * charset.c (Fcharset_id_internal): New function.
26716 (syms_of_charset): Defsubr it.
26717
26718 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
26719 with the last arg charset_list acquired from coding.
26720 (Fdefine_coding_system_internal): For ccl-based coding system, fix
26721 the attribute coding_attr_ccl_valids.
26722
26723 * coding.h (enum define_coding_ccl_arg_index): Set the first
26724 member coding_arg_ccl_decoder to coding_arg_max.
26725
26726 * ccl.h (ccl_driver): Adjust prototype.
26727
26728 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
26729 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
26730 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
26731 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
26732 last arg Qnil.
26733
26734 2008-02-01 Kenichi Handa <handa@m17n.org>
26735
26736 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
26737 call encode_char.
26738
26739 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
26740
26741 2008-02-01 Dave Love <fx@gnu.org>
26742
26743 * composite.c (syms_of_composite): Make composition_hash_table weak.
26744
26745 2008-02-01 Kenichi Handa <handa@m17n.org>
26746
26747 * dispextern.h (check_face_attributes, generate_ascii_font_name)
26748 (font_name_registry): Don't extern them.
26749 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
26750
26751 * fontset.h (Qfontset): Don't extern it.
26752 (new_fontset_from_font_name): Extern it.
26753
26754 * fontset.c: Give 8 extra slots to fontset objects.
26755 (Qfontset_info): New variable.
26756 (syms_of_fontset): Defsym it.
26757 (FONTSET_FALLBACK): New macro.
26758 (fontset_face): Try also the default fontset.
26759 (make_fontset): Realize a fallback fontset from the default fontset.
26760 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
26761 using split_font_name_into_vector and build_font_name_from_vector.
26762 (Fset_fontset_font): Access the elements of font_spec by enum
26763 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
26764 name by using split_font_name_into_vector.
26765 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
26766 generate a proper font name from the fontset name.
26767 Update Vfontset_alias_alist.
26768 (n_auto_fontsets): New variable.
26769 (new_fontset_from_font_name): New function.
26770 (Ffont_info): Store the information about fonts generated from the
26771 default fontset in the first extra slot of the returned char-table.
26772
26773 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
26774 (font_name_registry): Delete function.
26775 (split_font_name_into_vector): New function.
26776 (build_font_name_from_vector): New function.
26777 (font_list): The argument REGISTRY is now a list of registry names.
26778 (choose_face_font): If we are choosing an ASCII font, and ATTRS
26779 specifies an explicit font name, return the name as is. Make a
26780 list of registy names.
26781
26782 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
26783 of x_new_fontset.
26784 (Fx_create_frame): Don't call x_new_fontset here. Just use
26785 x_list_fonts to check the existence of fonts.
26786
26787 * xterm.h (x_new_fontset): Adjust prototype.
26788
26789 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
26790 string. Use new_fontset_from_font_name to create a fontset from a
26791 font name.
26792
26793 2008-02-01 Kenichi Handa <handa@m17n.org>
26794
26795 * syntax.c (Vfind_word_boundary_function_table): New name for
26796 Vnext_word_boundary_function_table.
26797 (find-word-boundary-function-table): New name for
26798 next-word-boundary-function-table.
26799
26800 2008-02-01 Dave Love <fx@gnu.org>
26801
26802 * Makefile.in: Fix some dependencies.
26803
26804 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
26805 set it to nil before returning.
26806
26807 * composite.c (update_compositions): Fix type error.
26808
26809 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
26810
26811 2008-02-01 Kenichi Handa <handa@m17n.org>
26812
26813 * xterm.c (x_new_font): Optimize for the case that the font is
26814 already set for the frame.
26815
26816 2008-02-01 Kenichi Handa <handa@m17n.org>
26817
26818 * chartab.c (char_table_ascii): Check if the char table contents
26819 is sub-char-table or not.
26820 (char_table_set, char_table_set_range): Fix argument to
26821 char_table_ascii.
26822
26823 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
26824 (detect_coding_utf_8, detect_coding_utf_16)
26825 (detect_coding_emacs_mule, detect_coding_iso_2022)
26826 (detect_coding_sjis, detect_coding_big5)
26827 (detect_coding_ccl, detect_coding_charset): Change argument MASK
26828 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
26829 sequence is valid in this coding system. Change callers.
26830 (MAX_ANNOTATION_LENGTH): New macro.
26831 (ADD_ANNOTATION_DATA): New macro.
26832 (ADD_COMPOSITION_DATA): Change argument. Change callers.
26833 Call ADD_ANNOTATION_DATA. Change the format of annotation data.
26834 (ADD_CHARSET_DATA): New macro.
26835 (emacs_mule_char): New argument ID. Change callers.
26836 (decode_coding_emacs_mule, decode_coding_iso_2022)
26837 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
26838 Produce charset annotation data in coding->charbuf.
26839 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
26840 to charset annotation data in coding->charbuf.
26841 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
26842 coding->common_flags if the coding system is iso-2022 based and
26843 uses designation.
26844 (produce_composition): Adjust for the new annotation data format.
26845 (produce_charset): New function.
26846 (produce_annotation): Handle charset annotation.
26847 (handle_composition_annotation, handle_charset_annotation):
26848 New functions.
26849 (consume_chars): Handle charset annotation. Utilize the above two
26850 functions.
26851 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
26852 buffer, get the deleted text as a string and set
26853 coding->src_object to that string.
26854 (detect_coding, detect_coding_system): Use the new struct
26855 coding_detection_info.
26856
26857 * coding.h (struct coding_detection_info): New structure.
26858 (struct coding_system): Adjust prototype of the member `detector'.
26859 (CODING_ANNOTATE_CHARSET_MASK): New macro.
26860
26861 2008-02-01 Kenichi Handa <handa@m17n.org>
26862
26863 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
26864
26865 2008-02-01 Dave Love <fx@gnu.org>
26866
26867 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
26868 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
26869 to new local and nullify apropos_accumulate before returning.
26870 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
26871
26872 2008-02-01 Kenichi Handa <handa@m17n.org>
26873
26874 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
26875 correctly.
26876
26877 2008-02-01 Dave Love <fx@gnu.org>
26878
26879 * fns.c (Flanginfo): Call synchronize_system_time_locale.
26880
26881 2008-02-01 Kenichi Handa <handa@m17n.org>
26882
26883 The following changes are to make character composition happen
26884 automatically on displaying.
26885
26886 * Makefile.in (lisp, shortlisp): Add composite.elc.
26887
26888 * composite.h (Qauto_composed, Vauto_composition_function)
26889 (Qauto_composition_function): Extern them.
26890
26891 * composite.c (Vcomposition_function_table)
26892 (Qcomposition_function_table): Delete variables.
26893 (Qauto_composed, Vauto_composition_function)
26894 (Qauto_composition_function): New variables.
26895 (run_composition_function): Don't call
26896 compose-chars-after-function.
26897 (update_compositions): Clear `auto-composed' text property.
26898 (compose_chars_in_text): Delete this function.
26899 (syms_of_composite): Staticpro Qauto_composed and
26900 Qauto_composition_function. Declare Vauto_composition_function as
26901 a Lisp variable.
26902
26903 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
26904
26905 * xdisp.c (it_props): Add an entry for Qauto_composed.
26906 (handle_auto_composed_prop): New function.
26907
26908 * xselect.c (selection_data_to_lisp_data): Don't call
26909 compose_chars_in_text.
26910
26911 2008-02-01 Dave Love <fx@gnu.org>
26912
26913 * keyboard.c (read_char): Modify checking around use of
26914 Vkeyboard_translate_table.
26915
26916 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
26917 and fix C types.
26918
26919 2008-02-01 Kenichi Handa <handa@m17n.org>
26920
26921 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
26922 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
26923 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
26924 the case that the last byte is '\r' correctly.
26925 (decode_coding): Flush out the unprocessed data correctly.
26926 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
26927
26928 2008-02-01 Dave Love <fx@gnu.org>
26929
26930 * xterm.c (XTread_socket): Fix changes for defined keysyms.
26931 Add XK_ISO... case.
26932 (xaw_scroll_callback): Revert last change.
26933
26934 2008-02-01 Kenichi Handa <handa@m17n.org>
26935
26936 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
26937
26938 2008-02-01 Kenichi Handa <handa@m17n.org>
26939
26940 * xfaces.c (Vface_resizing_fonts): New variable.
26941 (struct font_name): New member `resizing_ratio'.
26942 (font_resizing_ratio): New function.
26943 (split_font_name): Set font->resizing_ratio.
26944 (better_font_p): Pay attention to font->resizing_ratio.
26945 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
26946 RESX, and RESY fields.
26947 (try_alternative_families): Try scalable fonts if
26948 Vscalable_fonts_allowed is not Qt.
26949 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
26950
26951 2008-02-01 Dave Love <fx@gnu.org>
26952
26953 * xterm.c (xaw_scroll_callback): Cast correctly.
26954
26955 2008-02-01 Dave Love <fx@gnu.org>
26956
26957 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
26958 (lispy_kana_keys): Comment out.
26959 (make_lispy_event) [XK_kana_A]: Comment out.
26960
26961 * xterm.c (xaw_scroll_callback): Cast call_data.
26962 (XTread_socket): Deal with ASCII keysyms.
26963 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
26964
26965 2008-02-01 Dave Love <fx@gnu.org>
26966
26967 * xterm.c (Vx_keysym_table): New.
26968 (syms_of_xterm): Initialize it.
26969 (XTread_socket): Use it.
26970 From head: Eliminate incorrect optimization that tried to avoid
26971 decoding the output of X*LookupString.
26972 (x_get_font_repertory): Delete charset declaration.
26973
26974 2008-02-01 Kenichi Handa <handa@m17n.org>
26975
26976 * coding.c (detect_coding_charset): If only ASCII bytes are found,
26977 return 0.
26978 (Fdefine_coding_system_internal):
26979 Setup CODING_ATTR_ASCII_COMPAT (attrs) correctly.
26980
26981 2008-02-01 Dave Love <fx@gnu.org>
26982
26983 * coding.c (Fcheck_coding_system): Doc fix.
26984
26985 * editfns.c (Finsert_byte): Return a proper value.
26986
26987 2008-02-01 Kenichi Handa <handa@m17n.org>
26988
26989 * coding.c (decode_coding): Fix args to translate_chars.
26990 Pay attention to Vstandard_translation_table_for_decode.
26991 (encode_coding): Fix args to translate_chars. Pay attention to
26992 Vstandard_translation_table_for_encode.
26993
26994 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
26995 SINGLE_BYTE_CHAR_P.
26996
26997 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
26998 not by SINGLE_BYTE_CHAR_P.
26999
27000 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
27001 SINGLE_BYTE_CHAR_P.
27002
27003 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
27004 SINGLE_BYTE_CHAR_P.
27005
27006 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
27007 by SINGLE_BYTE_CHAR_P.
27008
27009 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
27010 SINGLE_BYTE_CHAR_P.
27011
27012 2008-02-01 Dave Love <fx@gnu.org>
27013
27014 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
27015
27016 2008-02-01 Dave Love <fx@gnu.org>
27017
27018 * fns.c (Flanginfo): Fix typo.
27019
27020 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
27021
27022 2008-02-01 Kenichi Handa <handa@m17n.org>
27023
27024 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
27025 (detect_coding_emacs_mule, detect_coding_iso_2022)
27026 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
27027 incomplete byte sequence. Don't update *mask when correctly detected.
27028 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
27029 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
27030 (detect_coding, detect_coding_system): Adjust for the changes above.
27031
27032 2008-02-01 Kenichi Handa <handa@m17n.org>
27033
27034 * character.c (char_string): Rename from
27035 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
27036 (string_char): Rename from string_char.
27037
27038 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
27039 if C is greater than MAX_3_BYTE_CHAR.
27040 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE):
27041 Call string_char instead of string_char_with_unification.
27042
27043 2008-02-01 Dave Love <fx@gnu.org>
27044
27045 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
27046
27047 2008-02-01 Kenichi Handa <handa@m17n.org>
27048
27049 * keymap.c (push_key_description): Pay attention to force_multibyte.
27050
27051 * regex.c (re_search_2): Fix for the case of unibyte buffer.
27052
27053 2008-02-01 Dave Love <fx@gnu.org>
27054
27055 * charset.c (define_charset_internal): Rename `supprementary'.
27056
27057 * Makefile.in (lisp, shortlisp): Remove latin-N.
27058
27059 2008-02-01 Dave Love <fx@gnu.org>
27060
27061 * xfns.c (x_window, x_window): Use use_xim.
27062
27063 * xterm.c (use_xim): Initialize.
27064 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
27065 (x_term_init): Maybe set use_xim.
27066
27067 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
27068
27069 2008-02-01 Kenichi Handa <handa@m17n.org>
27070
27071 * search.c (search_buffer): Fix case-fold-search of multibyte
27072 characters.
27073 (boyer_moore): Rename the last argument to char_high_bits.
27074
27075 2008-02-01 Kenichi Handa <handa@m17n.org>
27076
27077 * xdisp.c (display_string): Fix for the case of zero width glyph.
27078
27079 * xfns.c (x_set_font): Change the error message of the case that
27080 x_new_fontset returns Qt.
27081
27082 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
27083 (Finternal_set_lisp_face_attribute): Use signal_error for the
27084 error of invalid fontset.
27085
27086 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
27087 fontset, return Qt.
27088
27089 2008-02-01 Dave Love <fx@gnu.org>
27090
27091 * unexelf.c (unexec): Make .got handling not SGI-specific.
27092
27093 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
27094
27095 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
27096
27097 * keyboard.c (read_key_sequence): Fix type error.
27098
27099 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte):
27100 Fix type error.
27101
27102 * fontset.c (fontset_add): Return Lisp_Object.
27103
27104 2008-02-01 Dave Love <fx@gnu.org>
27105
27106 * charset.h (charset_ordered_list_tick): Declare extern.
27107
27108 2008-02-01 Kenichi Handa <handa@m17n.org>
27109
27110 The following changes (and some of 2008-02-01 changes of mine) are
27111 for handling syntax, category, and case conversion for unibyte
27112 characters by converting them to multibyte on the fly. With these
27113 changes, we don't have to setup syntax and case tables for unibyte
27114 characters in each language environment.
27115
27116 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
27117 multibyte if necessary.
27118
27119 * bytecode.c (Fbyte_code): Likewise.
27120
27121 * character.h (LEADING_CODE_LATIN_1_MIN)
27122 (LEADING_CODE_LATIN_1_MAX): New macros.
27123 (unibyte_to_multibyte_table): Extern it.
27124 (unibyte_char_to_multibyte): New macro.
27125 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
27126 (CHAR_LEADING_CODE): New macro.
27127 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
27128
27129 * character.c (unibyte_to_multibyte_table): New variable.
27130 (unibyte_char_to_multibyte): Move to character.h and define as macro.
27131 (multibyte_char_to_unibyte): If C is an eight-bit character,
27132 convert it to the corresponding byte value.
27133
27134 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
27135 not 1, signals an error. Update the elements of
27136 unibyte_to_multibyte_table.
27137 (init_charset_once): Initialize unibyte_to_multibyte_table.
27138 (syms_of_charset): Define the charset `iso-8859-1'.
27139
27140 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
27141 as is without converting it to unibyte. In a unibyte buffer,
27142 convert C to multibyte before checking the syntax.
27143
27144 * lisp.h (unibyte_char_to_multibyte): Delete extern.
27145
27146 * minibuf.c (Fminibuffer_complete_word): Use the macro
27147 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
27148
27149 * regex.h (struct re_pattern_buffer): New member target_multibyte.
27150
27151 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
27152 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte.
27153 If that is zero, convert an eight-bit char to multibyte.
27154 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
27155 non-emacs case.
27156 (PATFETCH): Convert an eight-bit char to multibyte.
27157 (HANDLE_UNIBYTE_RANGE): New macro.
27158 (regex_compile): Setup the compiled pattern for multibyte chars
27159 even if the given regex string is unibyte. Use PATFETCH_RAW
27160 instead of PATFETCH in many places. To handle `charset'
27161 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
27162 only for ASCII chars.
27163 (analyse_first) <exactn>: Simplify because the compiled pattern
27164 is multibyte.
27165 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
27166 <charset>: Use CHAR_LEADING_CODE to get leading codes.
27167 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
27168 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
27169 multibyte always 1.
27170 (re_search_2): In emacs, set the locale variable multibyte to 1,
27171 otherwise to 0. New local variable target_multibyte. Check it
27172 to decide the multibyteness of STR1 and STR2.
27173 If target_multibyte is zero, convert unibyte chars to multibyte
27174 before translating and checking fastmap.
27175 (TARGET_CHAR_AND_LENGTH): New macro.
27176 (re_match_2_internal): In emacs, set the locale variable multibyte
27177 to 1, otherwise to 0. New local variable target_multibyte.
27178 Check it to decide the multibyteness of STR1 and STR2.
27179 Use TARGET_CHAR_AND_LENGTH to fetch a character from D.
27180 <charset, charset_not>: If multibyte is nonzero, check fastmap
27181 only for ASCII chars. Call bcmp_translate with
27182 target_multibyte, not with multibyte.
27183 <begline>: Declare the local variable C as `unsigned'.
27184 (bcmp_translate): Change the last arg name to target_multibyte.
27185
27186 * search.c (compile_pattern_1): Don't adjust the multibyteness of
27187 the regexp pattern and the matching target. Set cp->buf.multibyte
27188 to the multibyteness of the regexp pattern. Set
27189 cp->but.target_multibyte to the multibyteness of the matching target.
27190 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
27191 FETCH_STRING_CHAR_ADVANCE.
27192 (Freplace_match): Convert unibyte chars to multibyte.
27193
27194 * syntax.c (char_quoted, back_comment, scan_words)
27195 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
27196 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
27197 unibyte chars to multibyte.
27198 (skip_chars): Delete the arg syntaxp, and move the code for
27199 handling syntaxes to skip_syntaxes. Change callers.
27200 Fix the case that the multibyteness of STRING and the current
27201 buffer doesn't match.
27202 (skip_syntaxes): New function.
27203 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
27204 SINGLE_BYTE_CHAR_P.
27205
27206 2008-02-01 Kenichi Handa <handa@m17n.org>
27207
27208 * xfaces.c (QCfontset): New variable.
27209 (LFACE_FONTSET): New macro.
27210 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
27211 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
27212 (Finternal_set_lisp_face_attribute)
27213 (Finternal_get_lisp_face_attribute): Handle QCfontset.
27214 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
27215 check also LFACE_FONTSET_INDEX.
27216 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
27217 attrs[LFACE_FONT_INDEX].
27218 (syms_of_xfaces): Intern and staticpro QCfontset.
27219
27220 * dispextern.h (enum lface_attribute_index): New member
27221 LFACE_FONTSET_INDEX.
27222
27223 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
27224
27225 2008-02-01 Kenichi Handa <handa@m17n.org>
27226
27227 * coding.c (coding_set_destination): Fix coding->destination for
27228 the case converting a region.
27229 (encode_coding_utf_8): Encode eight-bit chars as single byte.
27230 (encode_coding_object): Fix coding->dst_pos and
27231 coding->dst_pos_byte for the case converting a region.
27232
27233 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
27234
27235 * character.h (BYTE8_STRING): New macro.
27236
27237 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
27238
27239 2008-02-01 Kenichi Handa <handa@m17n.org>
27240
27241 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
27242 characters by octal form.
27243
27244 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
27245
27246 * buffer.h (_fetch_multibyte_char_len): Delete extern.
27247 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
27248 _fetch_multibyte_char_len.
27249 (FETCH_CHAR_AS_MULTIBYTE): New macro.
27250
27251 * casetab.c (set_canon, set_identity, shuffle): Simplify.
27252
27253 * casefiddle.c (casify_object): Simplify. Handle the case that
27254 the case conversion change the byte length.
27255 (casify_region): Likewise.
27256
27257 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
27258
27259 * character.c (_fetch_multibyte_char_len): Delete this variable.
27260 (syms_of_character): Setup Vprintable_chars.
27261
27262 * editfns.c (Fchar_equal): Fix for the unibyte case.
27263 (Finsert_byte): New function.
27264 (syms_of_editfns): Defsubr it.
27265
27266 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
27267 of direct code 0x3ffff.
27268
27269 * search.c (Freplace_match): Fix for the unibyte case.
27270
27271 2008-02-01 Kenichi Handa <handa@m17n.org>
27272
27273 * lread.c (safe_to_load_p): Fix the logic.
27274
27275 * syntax.c (scan_words): Don't treat characters belonging to
27276 different scripts as constituting a word.
27277
27278 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27279
27280 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
27281
27282 * emacs.c (main): In the case of --unibyte, instead of aborting on
27283 finding non-empty buffer, make it unibyte.
27284
27285 2008-02-01 Kenichi Handa <handa@m17n.org>
27286
27287 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
27288 to create a fontset.
27289
27290 2008-02-01 Dave Love <fx@gnu.org>
27291
27292 * character.c (Funibyte_char_to_multibyte): Doc fix.
27293
27294 * xfns.c [HAVE_STDLIB_H]: Fix last change.
27295
27296 2008-02-01 Kenichi Handa <handa@m17n.org>
27297
27298 * fontset.c (fontset_add): Make the type `int'.
27299 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
27300
27301 * character.c (unibyte_char_to_multibyte)
27302 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
27303 charset_unibyte, not charset_primary.
27304
27305 * charset.h (charset_unibyte): Extern it instead of charset_primary.
27306
27307 * charset.c (charset_unibyte): Rename from charset_primary.
27308 (Funibyte_charset): Rename from Fprimary_charset.
27309 (Fset_unibyte_charset): Rename from Fset_primary_charset.
27310 (syms_of_charset): Adjust for the above changes.
27311
27312 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
27313 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
27314 it->multibyte_p is zero.
27315
27316 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
27317 Delete extern.
27318
27319 2008-02-01 Kenichi Handa <handa@m17n.org>
27320
27321 * coding.c (Fdefine_coding_system_internal): Fix category setting
27322 for a coding system of type iso-2022.
27323
27324 2008-02-01 Kenichi Handa <handa@m17n.org>
27325
27326 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
27327
27328 2008-02-01 Kenichi Handa <handa@m17n.org>
27329
27330 * syntax.c (Vnext_word_boundary_function_table): New variable.
27331 (next-word-boundary-function-table): Declare it as a Lisp variable
27332 in syms_of_syntax.
27333 (scan_words): Call functions in Vnext_word_boundary_function_table
27334 if any.
27335
27336 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
27337
27338 * fontset.c (fs_load_font): If fontp->charset is not negative,
27339 return fontp without setting its members.
27340
27341 2008-02-01 Dave Love <fx@gnu.org>
27342
27343 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
27344
27345 * m/sparc.h (HAVE_ALLOCA): Delete.
27346
27347 * s/irix6-5.h: Don't include strings.h.
27348 (bcopy, bzero, bcmp): Don't undef.
27349
27350 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
27351
27352 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
27353 (TIOCSIGSEND): Don't test IRIX6.
27354 (bcopy, bzero, bcmp): Define conditionally.
27355
27356 2008-02-01 Kenichi Handa <handa@m17n.org>
27357
27358 * buffer.c (Qas, Qmake, Qto): New variables.
27359 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
27360 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
27361
27362 * callproc.c (Fcall_process): Don't call insert_1_both directly if
27363 we are inserting a process output into a multibyte buffer.
27364
27365 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
27366 multibyte_char_to_unibyte.
27367
27368 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
27369 by the primary charset, make it eight-bit char.
27370 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
27371
27372 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
27373 (charset_8_bit__control, charset_8_bit_graphic)
27374 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
27375 (define_charset_internal): New function.
27376 (syms_of_charset): Call define_charset_internal for pre-defined
27377 charsets.
27378
27379 * charset.h (charset_8_bit): Extern it.
27380
27381 * coding.c (make_conversion_work_buffer): Adjust for the change
27382 of Fset_buffer_multibyte.
27383 (encode_coding_raw_text): Increment p0 in the loop.
27384
27385 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
27386
27387 * xdisp.c (setup_echo_area_for_printing, set_message_1):
27388 Adjust for the change of Fset_buffer_multibyte.
27389
27390 * fns.c (Fstring_to_multibyte): New function.
27391 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
27392
27393 2008-02-01 Dave Love <fx@gnu.org>
27394
27395 * xfns.c (x_put_x_image): Declare args.
27396
27397 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
27398 (try_font_list): Declare an arg.
27399
27400 * xdisp.c (message2_nolog, set_message): Declare an arg.
27401
27402 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
27403
27404 * syntax.c (scan_sexps_forward): Declare an arg.
27405
27406 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
27407 Declare an arg.
27408
27409 * lisp.h (Fnew_fontset): Declare.
27410
27411 * keymap.c (push_key_description): Call CHARACTERP correctly.
27412
27413 * fontset.c (fontset_add): Declare args. Call make_number correctly.
27414 (face_for_char): Delete unused vars.
27415 (Fset_fontset_font): Doc fix. Delete unused vars.
27416
27417 * doc.c (Fsubstitute_command_keys): Delete unused vars.
27418
27419 * composite.c (update_compositions): Declare arg.
27420
27421 * cm.c (calccost, cmgoto): Declare args.
27422
27423 * charset.c: Remove `emacs' conditional. Doc fixes.
27424 (map_char_table_for_charset): Declare.
27425
27426 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
27427
27428 * ccl.c: Remove `emacs' conditional.
27429
27430 2008-02-01 Kenichi Handa <handa@m17n.org>
27431
27432 The following changes are to allow specifying multiple font
27433 patterns for a character range (specified by script or charset).
27434
27435 * Makefile.in (abbrev.o): Depend on syntax.h.
27436 (xfaces.o): Depend on charset.h.
27437
27438 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
27439 SINGLE_BYTE_CHAR_P.
27440
27441 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
27442
27443 * character.h (Vchar_script_table): Extern it.
27444
27445 * character.c (Vscript_alist): Delete.
27446 (Vchar_script_table, Qchar_script_table): New variable.
27447 (syms_of_character): Declare Vchar_script_table as a lisp variable
27448 and initialize it.
27449
27450 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
27451 have property char-table-extra-slots, make no extra slot.
27452
27453 * dispextern.h (struct face): Delete member `charset'.
27454 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
27455 SINGLE_BYTE_CHAR_P.
27456 (choose_face_font, lookup_non_ascii_face, font_name_registry):
27457 Add prototypes.
27458 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
27459 (generate_ascii_font_name): Rename from generate_ascii_font.
27460
27461 * fontset.h (get_font_repertory_func): New prototype.
27462 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
27463 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
27464
27465 * fontset.c (Qprepend, Qappend): New variables.
27466 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
27467 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
27468 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
27469 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
27470 (fontset_ref_and_range, fontset_add, reorder_font_vector)
27471 (load_font_get_repertory): New functions.
27472 (fontset_set): Delete.
27473 (fontset_face): New arg FACE. Return face ID, not face.
27474 Complete re-write to handle new fontset structure. Change caller.
27475 (free_face_fontset): Use ASET istead of AREF (X) = Y.
27476 (face_for_char): Don't call lookup_face.
27477 (make_fontset_for_ascii_face): New arg FACE.
27478 (fs_load_font): New arg CHARSET_ID. Don't check
27479 Vfont_encoding_alist here.
27480 (find_font_encoding): New function.
27481 (list_fontsets): Use STRINGP, not ! NILP.
27482 (accumulate_script_ranges): New function.
27483 (Fset_fontset_font, Fnew_fontset, Ffontset_info):
27484 Completely re-written to handle new fontset structure.
27485 (Ffontset_font): Return a copy of element.
27486 (syms_of_fontset): Define symbols Qprepend and Qappend.
27487 Fix docstring of font-encoding-alist.
27488
27489 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
27490 (Fset_fotset_font): Fix arguments to 5.
27491
27492 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
27493
27494 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
27495 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27496 (highlight_trailing_whitespace): Adjust for the change of
27497 lookup_named_face.
27498
27499 * xfaces.c: Include charset.h.
27500 (load_face_font): Delete argument C. Change caller.
27501 (generate_ascii_font_name): Rename from generate_ascii_font.
27502 (font_name_registry): New function.
27503 (cache_face): Store ascii faces before non-ascii faces in buckets.
27504 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
27505 Lookup only ascii faces.
27506 (lookup_non_ascii_face): New function.
27507 (lookup_named_face): Delete argument C. Change caller.
27508 (lookup_derived_face): Delete argument C. Change caller.
27509 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
27510 a string, just call font_list with it.
27511 (choose_face_font): Delete arguments FACE and C. New arg
27512 FONT_SPEC. Change caller.
27513 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
27514 Change caller.
27515 (realize_non_ascii_face): New function.
27516 (realize_x_face): Call load_face_font here.
27517 (realize_tty_face): Delete argument C. Change caller.
27518 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
27519 get a face ID.
27520 (dump_realized_face): Don't print charset of FACE.
27521
27522 * xfns.c (x_set_font): Always call x_new_fontset and
27523 store_frame_parameter.
27524 (Fx_create_frame): Call x_new_fontset, not x_new_font.
27525 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
27526
27527 * xterm.h (x_get_font_repertory): Extern it.
27528
27529 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
27530 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
27531 it->multibyte_p is zero.
27532 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27533 (x_new_fontset): If FONTSETNAME doesn't match any existing
27534 fontsets, create a new one.
27535 (x_get_font_repertory): New function.
27536
27537 2008-02-01 Kenichi Handa <handa@m17n.org>
27538
27539 * coding.c (Ffind_coding_systems_region_internal): Detect an
27540 ASCII only string correctly.
27541
27542 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
27543 version is 0.
27544
27545 2008-02-01 Kenichi Handa <handa@m17n.org>
27546
27547 * lread.c: Include "coding.h".
27548 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
27549 (load_each_byte, unread_char): New variables.
27550 (readchar_backlog): Delete.
27551 (readchar): Return a character unless load_each_byte is nonzero.
27552 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
27553 cons. If unread_char is not -1, simply return it.
27554 (unreadchar): Handle the case that readcharfun is
27555 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
27556 (read_multibyte): Delete.
27557 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
27558 (read_emacs_mule_char): New functions.
27559 (Fload): Even if the file doesn't have the extension ".elc", if
27560 safe_to_load_p returns a positive version number, assume that the
27561 file contains bytecompiled code. If the version is less than 22,
27562 load the file while decoding multibyte sequences by emacs-mule.
27563 (readevalloop): Don't use readchar_backlog.
27564 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
27565 (Fread_from_string): Pay attention to the case that STREAM is a cons.
27566 (read_escape): Delete the arg BYTEREP.
27567 (read1): Set load_each_byte to 1 temporarily while handling
27568 #@NUMBER. Don't call read_multibyte.
27569 (read_vector): Call Fread with a cons. If readcharfun is
27570 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
27571 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
27572 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
27573 and Qload_force_doc_strings.
27574
27575 2008-02-01 Kenichi Handa <handa@m17n.org>
27576
27577 * xdisp.c (face_before_or_after_it_pos):
27578 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
27579
27580 2008-02-01 Kenichi Handa <handa@m17n.org>
27581
27582 * character.h (TRAILING_CODE_P): New macro.
27583 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
27584 (string_char_with_unification): Fix prototype.
27585 (Vscript_alist): Extern it.
27586
27587 * character.c (Vscript_alist): New variable.
27588 (string_char_with_unification, str_as_unibyte)
27589 (string_escape_byte8): Add `const' to local variables.
27590 (syms_of_character): Declare script-alist as a Lisp variable.
27591
27592 * charset.h (Vcharset_ordered_list): Extern it.
27593 (charset_ordered_list_tick): Extern it.
27594 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
27595 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
27596 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
27597 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
27598 (Funify_charset): Adjust for the change of Funify_charset.
27599
27600 * charset.c (charset_ordered_list_tick): New variable.
27601 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
27602 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
27603 deunify instead of unify a charset.
27604 (string_xstring_p): Add `const' to local variables.
27605 (find_charsets_in_text): Add `const' to arguments and local variables.
27606 (encode_char): Adjust for the change of Funify_charset.
27607 Fix detecting of invalid code.
27608 (Fset_charset_priority): Increment charset_ordered_list_tick.
27609 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
27610 and TO_CODE.
27611
27612 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
27613 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
27614 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
27615 (decode_coding_ccl, consume_chars)
27616 (Ffind_coding_systems_region_internal)
27617 (Fcheck_coding_systems_region): Add `const' to local variables.
27618
27619 * print.c (print_object): Use octal form for printing the
27620 contents of a bool vector.
27621
27622 2008-02-01 Dave Love <fx@gnu.org>
27623
27624 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
27625 <version == 20>: Refuse to load.
27626
27627 2008-02-01 Dave Love <fx@gnu.org>
27628
27629 * fns.c: Move coding.h.
27630 (Qcodeset, Qdays, Qmonths): New.
27631 (concat): Use CHARACTERP instead of INTEGERP.
27632 (Flocale_codeset): Delete.
27633 (Flanginfo): New function.
27634 (syms_of_fns): Change accordingly.
27635
27636 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
27637
27638 2008-02-01 Dave Love <fx@gnu.org>
27639
27640 * casetab.c (init_casetab_once, init_casetab_once):
27641 Fix CHAR_TABLE_SET call.
27642
27643 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
27644
27645 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
27646
27647 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
27648 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
27649 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
27650
27651 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
27652
27653 * coding.c (ENCODE_DESIGNATION, decode_eol)
27654 (make_conversion_work_buffer, code_conversion_restore)
27655 (Fdefine_coding_system_internal): Convert Lisp types.
27656 (code_conversion_restore): Use EQ, not ==.
27657 (Fencode_coding_string): Fix code_convert_string call.
27658
27659 * coding.h (code_convert_region): Fix prototype.
27660
27661 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
27662
27663 * fontset.c (fontset_ref, fontset_set, fs_load_font)
27664 (Ffontset_info): Convert Lisp types.
27665
27666 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
27667
27668 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
27669
27670 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
27671
27672 * chartab.c: Include "...h", not <...h> in some cases.
27673
27674 * callproc.c (Fcall_process): Remove unused variables.
27675
27676 2008-02-01 Dave Love <fx@gnu.org>
27677
27678 * coding.c (Fset_coding_system_priority): Allow null arg list.
27679
27680 2008-02-01 Dave Love <fx@gnu.org>
27681
27682 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
27683 (Fself_insert_and_exit): Use CHARACTERP.
27684
27685 * callproc.c (Fcall_process): Remove unused vars.
27686
27687 * xterm.c (XTread_socket): Add extra dead keysyms.
27688
27689 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
27690
27691 * dispextern.h: Remove prototypes for redraw_frame,
27692 redraw_garbaged_frames.
27693
27694 * cmds.c (Fself_insert_command): Use CHARACTERP.
27695
27696 * chartab.c (make_sub_char_table): Remove unused var.
27697 (Fset_char_table_default, Fmap_char_table): Doc fix.
27698
27699 * keymap.c (access_keymap): Remove generic char code.
27700 (push_key_description): Use CHARACTERP.
27701
27702 2008-02-01 Dave Love <fx@gnu.org>
27703
27704 * charset.c: Doc fixes.
27705 (Funify_charset): Extra checking.
27706
27707 2008-02-01 Dave Love <fx@gnu.org>
27708
27709 * lread.c: Remove some unused variables.
27710 (safe_to_load_p): If safe, return the magic number version byte.
27711 (Fload): Maybe use load-with-code-conversion.
27712
27713 2008-02-01 Kenichi Handa <handa@m17n.org>
27714
27715 * category.c (Fmodify_category_entry): Don't modify the contents
27716 of category_set for characters out of the range.
27717 Avoid unnecessary modification.
27718
27719 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
27720 Vchar_unify_table. The default value of the table is now nil.
27721
27722 * character.c (syms_of_character): Setup Vchar_width_table for
27723 eight-bit-control and raw-byte chars.
27724
27725 * charset.h (enum define_charset_arg_index):
27726 Delete charset_arg_parents and add charset_arg_subset and
27727 charset_arg_superset.
27728 (enum charset_attr_index): Delete charset_parents and add
27729 charset_subset and charset_superset.
27730 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
27731 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
27732 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
27733 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
27734 (CHARSET_SUPERSET): New macros.
27735 (charset_work): Extern it.
27736 (ENCODE_CHAR): Use charset_work.
27737 (CHAR_CHARSET_P): Adjust for the change of encoder format.
27738 (map_charset_chars): Extern it.
27739
27740 * charset.c (load_charset_map): Set the default value of encoder
27741 and deunifier char-tables to nil.
27742 (map_charset_chars): Change argument. Change callers.
27743 Use map_char_table_for_charset instead of map_char_table.
27744 (Fmap_charset_chars): New optional args from_code and to_code.
27745 (Fdefine_charset_internal): Adjust for the change of
27746 `define-charset' (:parents -> :subset or :superset).
27747 (charset_work): New variable.
27748 (encode_char, syms_of_charset): Adjust for the change of
27749 Fdefine_charset_internal.
27750 (Ffind_charset_string): Setup the vector `charsets' correctly.
27751
27752 * chartab.c (sub_char_table_ref_and_range): New arg default.
27753 Fix the previous change.
27754 (char_table_ref_and_range): Adjust for the above change.
27755 (map_sub_char_table_for_charset): New function.
27756 (map_char_table_for_charset): New function.
27757
27758 * keymap.c (describe_vector): Handle a char-table directly here.
27759 (describe_char_table): Delete.
27760
27761 * lisp.h (map_charset_chars): Delete.
27762
27763 2008-02-01 Dave Love <fx@gnu.org>
27764
27765 * fns.c (count_combining): Comment out (unused).
27766 (Flocale_codeset): New.
27767 (syms_of_fns): Defsubr it.
27768
27769 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
27770 (size_t): Remove.
27771
27772 2008-02-01 Dave Love <fx@gnu.org>
27773
27774 * Makefile.in (chartab.o): Depend on charset.h.
27775
27776 2008-02-01 Kenichi Handa <handa@m17n.org>
27777
27778 * character.c (syms_of_character): Set the default value of
27779 Vprintable_chars to Qnil.
27780
27781 2008-02-01 Dave Love <fx@gnu.org>
27782
27783 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
27784
27785 2008-02-01 Kenichi Handa <handa@m17n.org>
27786
27787 * charset.c (load_charset_map): Handle the case that from < to
27788 correctly.
27789
27790 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
27791 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
27792 Pay attention to raw-8-bit chars.
27793
27794 2008-02-01 Kenichi Handa <handa@m17n.org>
27795
27796 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
27797 It is not bytecompiled now.
27798
27799 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
27800 (charset_jisx0208): New variables.
27801 (Fdefine_charset_internal): Setup them if appropriate.
27802 (init_charset_once): Initialize them to -1.
27803
27804 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
27805 (charset_jisx0208): Extern them.
27806
27807 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
27808 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
27809 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
27810 (setup_iso_safe_charsets): Fix arguments to Fassq.
27811 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
27812 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
27813 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
27814 (encode_coding_iso_2022): Change the 1st arg to
27815 ENCODE_ISO_CHARACTER to a variable.
27816
27817 2008-02-01 Kenichi Handa <handa@m17n.org>
27818
27819 * charset.h (enum define_charset_arg_index): New enums
27820 charset_arg_min_code and charset_arg_max_code.
27821 (struct charset): New member char_index_offset.
27822
27823 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
27824 Take charset->char_index_offset into account.
27825 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
27826 args[charset_arg_max_code]. Setup charset.char_index_offset.
27827 (syms_of_charset): Fix args to Fdefine_charset_internal.
27828
27829 2008-02-01 Dave Love <fx@gnu.org>
27830
27831 * coding.c (decode_coding_utf_8): Reject overlong sequences.
27832
27833 2008-02-01 Dave Love <fx@gnu.org>
27834
27835 * coding.c: Doc fixes.
27836 (Fcoding_system_aliases): Fix return value.
27837 (Qmac): Remove (duplicated) definition.
27838
27839 2008-02-01 Dave Love <fx@gnu.org>
27840
27841 * charset.c (Fcharset_priority_list, Fset_charset_priority):
27842 New functions.
27843
27844 * character.c (Fstring): Doc fix.
27845
27846 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
27847
27848 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
27849 (font-encoding-alist): Doc fix.
27850
27851 2008-02-01 Dave Love <fx@gnu.org>
27852
27853 * term.c (costs_set): Declare static, non-initialized for pcc.
27854 (encode_terminal_code): Remove unused var.
27855
27856 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
27857 for K&R.
27858
27859 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
27860
27861 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
27862 (suffixes): Move out of make_subsidiaries for K&R.
27863
27864 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
27865
27866 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
27867
27868 2008-02-01 Dave Love <fx@gnu.org>
27869
27870 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
27871
27872 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
27873
27874 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
27875
27876 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
27877
27878 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
27879
27880 2008-02-01 Kenichi Handa <handa@m17n.org>
27881
27882 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
27883 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
27884
27885 2008-02-01 Kenichi Handa <handa@m17n.org>
27886
27887 * coding.c (decode_coding_charset): Adjust for the change of
27888 Fdefine_coding_system_internal.
27889 (Fdefine_coding_system_internal): For a coding system of
27890 `charset' type, store a list of charset IDs in
27891 `charset_attr_charset_valids' element of coding attributes.
27892
27893 2008-02-01 Kenichi Handa <handa@m17n.org>
27894
27895 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
27896 (emacs_mule_char): New arg src. Delete arg `composition'.
27897 Change caller. Handle 2-byte and 3-byte charsets correctly.
27898 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
27899 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
27900 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
27901 (DECODE_EMACS_MULE_21_COMPOSITION):
27902 Call DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
27903 sequence.
27904 (decode_coding_emacs_mule): Handle composition correctly. Rewind
27905 `src' and `consumed_chars' correctly before calling emacs_mule_char.
27906 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
27907 and alt&rule composition.
27908 (decode_coding_iso_2022): Handle composition correctly.
27909 (init_coding_once): Setup emacs_mule_bytes for private charsets.
27910
27911 * charset.c (Fdefine_charset_internal): Fix bug for the case of
27912 re-defining a charset. If the charset has :emacs-mule-id, setup
27913 emacs_mule_bytes.
27914 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
27915
27916 2008-02-01 Kenichi Handa <handa@m17n.org>
27917
27918 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
27919 (encode_coding_big5, encode_coding_charset): If coding requires safe
27920 encoding, produce a character specified by
27921 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
27922
27923 2008-02-01 Dave Love <fx@gnu.org>
27924
27925 * xterm.c (XSetIMValues): Declare.
27926
27927 * process.c: Conditionally include sys/wait.h, pty.h.
27928
27929 * print.c (print_object): Fix print format for 64-bit systems.
27930
27931 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
27932
27933 * buffer.c (emacs_strerror): Declare.
27934
27935 * fontset.c (Fclear_face_cache): Declare.
27936 (accumulate_font_info): Comment-out (unused).
27937 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
27938 variables.
27939
27940 * character.h (string_escape_byte8): Declare.
27941
27942 * charset.c (load_charset_map, load_charset_map_from_file):
27943 Remove unused vars.
27944 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
27945 (Fmap_charset_chars): Doc fix.
27946
27947 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
27948 (Fset_coding_system_priority, Fset_coding_system_priority)
27949 (Fdefine_coding_system_internal): Doc fix.
27950
27951 2008-02-01 Dave Love <fx@gnu.org>
27952
27953 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
27954
27955 2008-02-01 Kenichi Handa <handa@m17n.org>
27956
27957 * character.c (string_escape_byte8): Make multibyte string with
27958 correct size.
27959
27960 * charset.c (Fmake_char): Delete unnecessary code.
27961
27962 2008-02-01 Kenichi Handa <handa@m17n.org>
27963
27964 * xfns.c (x_encode_text): Allocate coding.destination here, and
27965 call encode_coding_object with dst_object Qnil.
27966
27967 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
27968 multibyte form correctly.
27969
27970 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
27971 against Vfont_encoding_alist.
27972
27973 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
27974 handling of charset list.
27975 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
27976 (decode_coding_object): Move point to coding->dst_pos before
27977 calling post-read-conversion function.
27978 (encode_coding_object): Give correct arguments to
27979 pre-write-conversion. Ignore the return value of
27980 pre-write-conversion function. Pay attention to the case that
27981 pre-write-conversion changes the current buffer. If dst_object is
27982 Qt, even if coding->src_bytes is zero, allocate at least one byte
27983 to coding->destination.
27984
27985 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
27986
27987 * charset.c (Fmake_char): Make it more backward compatible.
27988 (Fmap_charset_chars): Fix docstring.
27989
27990 2008-02-01 Dave Love <fx@gnu.org>
27991
27992 * coding.c: Doc fixes.
27993 (Fdefine_coding_system_alias): Use names, not symbols, in
27994 coding-system-alist.
27995
27996 2008-02-01 Kenichi Handa <handa@m17n.org>
27997
27998 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
27999 of calling free_realized_face.
28000
28001 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
28002
28003 * charset.c (read_hex): Don't treat SPC as a comment starter.
28004 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
28005 (Fdecode_char): Fix typo.
28006
28007 2008-02-01 Kenichi Handa <handa@m17n.org>
28008
28009 * charset.h (struct charset): New member `code_space_mask'.
28010
28011 * coding.c (coding_set_source): Delete the local variable beg_byte.
28012 (encode_coding_charset, Fdefine_coding_system_internal):
28013 Delete the local variable charset.
28014 (Fdefine_coding_system_internal):
28015 Setup attrs[coding_attr_charset_valids] correctly.
28016
28017 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
28018 member to check if CODE is valid or not.
28019 (Fdefine_charset_internal): Initialize `code_space_mask' member.
28020 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
28021 is within the range of charset->min_code and carset->max_code.
28022
28023 2008-02-01 Dave Love <fx@gnu.org>
28024
28025 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
28026
28027 * dispextern.h (generate_ascii_font): Fix return type.
28028
28029 * xfaces.c (generate_ascii_font): Fix arg declaration.
28030
28031 * coding.c (coding_inherit_eol_type)
28032 (Fset_terminal_coding_system_internal)
28033 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
28034
28035 2008-02-01 Kenichi Handa <handa@m17n.org>
28036
28037 * coding.c (decode_coding_charset, encode_coding_charset):
28038 Handle multiple charsets correctly.
28039
28040 2008-02-01 Kenichi Handa <handa@m17n.org>
28041
28042 * search.c (boyer_moore): Fix handling of multibyte character
28043 translation.
28044
28045 * xdisp.c (display_mode_element): When the variable `elt' is
28046 changed, update `this' and `lisp_string'.
28047
28048 2008-02-01 Kenichi Handa <handa@m17n.org>
28049
28050 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
28051
28052 * callproc.c (Fcall_process): Be sure to give the current buffer
28053 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
28054
28055 * charset.c (struct charset_map_entries): New struct.
28056 (load_charset_map): Rename from parse_charset_map. New args
28057 entries and n_entries. Change caller.
28058 (load_charset_map_from_file): Rename from load_charset_map.
28059 Change caller. New arg control_flag. Call load_charset_map at
28060 the tail.
28061 (load_charset_map_from_vector): New function.
28062 (Fdefine_charset_internal): Setup charset.compact_codes_p.
28063 (encode_char): If the charset is compact, change a character index
28064 to a code point.
28065
28066 * coding.c (coding_alloc_by_making_gap): Check the case that the
28067 source and destination are the same correctly.
28068 (decode_coding_raw_text): Set coding->consumed_char and
28069 coding->consumed to 0.
28070 (produce_chars): If coding->chars_at_source is nonzero, update
28071 coding->consumed_char and coding->consumed before calling
28072 alloc_destination.
28073 (Fdefine_coding_system_alias): Register ALIAS in
28074 Vcoding_system_alist.
28075 (syms_of_coding): Define `no-conversion' coding system at the tail.
28076
28077 * fileio.c (Finsert_file_contents): Set coding_system instead of
28078 val. If the current buffer is multibyte, always call
28079 decode_coding_gap.
28080
28081 * xfaces.c (try_font_list): Give higher priority to fontset's
28082 family than face's family.
28083
28084 2008-02-01 Kenichi Handa <handa@m17n.org>
28085
28086 * callproc.c (Fcall_process): Be sure to give the current buffer
28087 to decode_coding_c_string.
28088
28089 * xfaces.c (try_font_list): Give a family specified in a fontset
28090 higher priority than a family specified in a face.
28091
28092 2008-02-01 Kenichi Handa <handa@m17n.org>
28093
28094 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
28095 Fix arguments to insert_from_buffer.
28096
28097 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
28098
28099 2008-02-01 Kenichi Handa <handa@m17n.org>
28100
28101 * coding.c (produce_chars): Set the variable `multibytep' correctly.
28102 (decode_coding_gap): Set coding->dst_multibyte correctly.
28103
28104 2008-02-01 Kenichi Handa <handa@m17n.org>
28105
28106 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
28107 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
28108 (encode_coding_utf_16): Substitute coding->default_char for
28109 non-Unicode characters.
28110 (decode_coding): Don't call record_insert here.
28111 (setup_coding_system): Initialize `surrogate' of
28112 coding->spec.utf_16 to 0.
28113 (EMIT_ONE_BYTE): Fix for multibyte case.
28114
28115 * insdel.c (insert_from_gap): Call record_insert.
28116
28117 2008-02-01 Kenichi Handa <handa@m17n.org>
28118
28119 * casefiddle.c (casify_region): Fix multibyte case.
28120
28121 * character.c (c_string_width): Add return type `int'.
28122 (char_string_with_unification): Delete arg ADVANCED.
28123
28124 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
28125 (CHAR_STRING): Adjust for the change of char_string_with_unification.
28126 (CHAR_STRING_ADVANCE): Make it do-while statement.
28127
28128 * chartab.c (sub_char_table_set_range): Optimize for the case
28129 DEPTH == 3. Add workaround code for a GCC optimization bug.
28130
28131 * charset.c (parse_charset_map): Remove an unused variable.
28132
28133 * coding.c: Delete unused variables.
28134
28135 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
28136 earlier. If inserted is zero and the coding system doesn't
28137 require flushing, don't call decode_coding_gap.
28138
28139 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
28140
28141 2008-02-01 Kenichi Handa <handa@m17n.org>
28142
28143 The following changes are for using Unicode as an internal
28144 character model, and use UTF-8 format for buffer/string
28145 representation.
28146
28147 * .gdbinit (xchartable): Adjust for the change of char table structure.
28148 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
28149
28150 * Makefile.in (obj): Add character.o and chartab.o.
28151 (lisp, shortlisp): Remove utf-8.elc.
28152 (*.o): For many files, change dependency on charset.h to
28153 character.h, and add dependency on character.h.
28154 (character.o, chartab.o): New targets.
28155
28156 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
28157 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
28158 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
28159 of "charset.h".
28160
28161 * dired.c, filelock.c: Include "character.h".
28162
28163 * alloc.c: Include "character.h" instead of "charset.h".
28164 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
28165 (syms_of_alloc): Remove defsubr for Smake_char_table.
28166
28167 * buffer.c: Include "character.h" instead of "charset.h", don't
28168 include "coding.h".
28169 (Fset_buffer_multibyte): Adjust for UTF-8.
28170
28171 * buffer.h: EXFUN Fbuffer_live_p.
28172
28173 * callproc.c: Include "character.h" instead of "charset.h".
28174 (Fcall_process): Big change for the new code-conversion APIs.
28175
28176 * casetab.c: Include "character.h" instead of "charset.h".
28177 (set_canon, set_identity, shuffle): Adjust for the new
28178 map_char_table spec.
28179 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
28180 accessing the char table structure.
28181
28182 * chartab.c: New file that implements char table.
28183
28184 * category.c: Include "character.h".
28185 (copy_category_entry): New function.
28186 (copy_category_table): Call map_char_table and copy_category_entry.
28187 (Fmake_category_table): Initialize all top-level slots.
28188 (char_category_set): New function.
28189 (modify_lower_category_set): Delete.
28190 (Fmodify_category_entry): Call char_table_ref_and_range.
28191
28192 * category.h (CATEGORY_SET): Just call char_category_set.
28193
28194 * ccl.c: Include "character.h".
28195 (Qccl, Qcclp): New variables.
28196 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
28197 it's less than 256.
28198 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
28199 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
28200 and DST type.
28201 (ccl_driver): Change types of argument, adjust code accordingly.
28202 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
28203 ccl_driver.
28204 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
28205
28206 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
28207 New members src_multibyte, dst_multibyte, consumed, and produced.
28208 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
28209 (CODING_SPEC_CCL_PROGRAM): New macro.
28210 (ccl_driver): Update prototype.
28211 (Qccl, Qcclp, Fccl_program_p): Extern them.
28212 (CHECK_CCL_PROGRAM): New macro.
28213
28214 * character.c, character.h, chartab.c: New files.
28215
28216 * charset.c: Mostly re-written. Move character and multibyte sequence
28217 handling codes to character.c.
28218
28219 * charset.h: Mostly re-written. Move character and multibyte sequence
28220 handling codes to character.h.
28221
28222 * coding.c, coding.h: Mostly re-written.
28223
28224 * composite.c: Include "character.h" instead of "charset.h".
28225 (CHAR_WIDTH): Move to character.h.
28226 (HASH_KEY, HASH_VALUE): Delete.
28227
28228 * composite.h (enum composition_method): Change order of enumeration
28229 symbols.
28230
28231 * data.c: Include "character.h" instead of "charset.h".
28232 (Faref): Call CHAR_TABLE_REF for a char table.
28233 (Faset): Call CHAR_TABLE_SET for a char table.
28234
28235 * dispextern.h (free_realized_face, check_face_attribytes)
28236 (generate_ascii_font): Extern them.
28237 (free_realized_multibyte_face): Delete extern.
28238
28239 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
28240 table structure.
28241
28242 * editfns.c: Include "character.h" instead of "charset.h".
28243 (Fchar_to_string): Always call CHAR_STRING.
28244
28245 * emacs.c (main): Call init_charset_once, init_charset,
28246 syms_of_chartab, and syms_of_character.
28247
28248 * fileio.c: Include "character.h" instead of "charset.h".
28249 (Finsert_file_contents): Big change for the new code-conversion API.
28250 (choose_write_coding_system, Fwrite_region): Likewise.
28251 (build_annotations_2): Delete.
28252 (e_write): Big change for the new code-conversion API.
28253
28254 * fns.c: Include "character.h" instead of "charset.h".
28255 (copy_sub_char_table): Move to chartab.c.
28256 (Fcopy_sequence): Call copy_char_table for a char table.
28257 (concat): Delete codes calling count_multibyte.
28258 (string_char_to_byte, string_byte_to_char): Adjust for the new
28259 multibyte form.
28260 (internal_equal): Adjust for the change of char table structure.
28261 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
28262 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
28263 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
28264 (char_table_translate, optimize_sub_char_table)
28265 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
28266 chartab.c.
28267 (char_table_ref_and_index): Delete.
28268 (HASH_KEY, HASH_VALUE): Move to lisp.h.
28269 (Fmd5): Call preferred_coding_system instead of accessing
28270 Vcoding_category_list. Adjust for the new code-conversion API.
28271 (syms_of_fns): Move defsubr for char table related functions to
28272 chartab.c.
28273
28274 * fontset.c: Mostly re-written.
28275
28276 * fontset.h (struct font_info): Change type of the member encoding_type.
28277 (enum FONT_SPEC_INDEX): New enum.
28278 (fontset_font_pattern, fs_load_font): Update prototype.
28279 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
28280
28281 * indent.c: Include "character.h" instead of "charset.h".
28282 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
28283
28284 * insdel.c: Include "character.h" instead of "charset.h".
28285 (copy_text): Don't refer to Vnonascii_translation_table.
28286 (insert_from_gap): New function.
28287
28288 * keyboard.c: Include "character.h" instead of "charset.h".
28289 (command_loop_1): Never call direct_output_forward_char before
28290 a non-ASCII character.
28291 (read_char): If Vkeyboard_translate_table is a char table, always
28292 translate a character.
28293
28294 * keymap.c: Include "character.h".
28295 (store_in_keymap): Handle the case that IDX is a cons.
28296 (Fdefine_key): Handle the case that KEY is a cons and the car part
28297 is also a cons (range).
28298 (push_key_description): Adjust for the new character code.
28299 (describe_vector): Call describe_char_table for a char table.
28300 (describe_char_table): New function.
28301
28302 * keymap.h (describe_char_table): Extern it.
28303
28304 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
28305 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
28306 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
28307 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
28308 Delete.
28309 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
28310 structure.
28311 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
28312 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
28313 (CHARTAB_SIZE_BITS_3): New macros.
28314 (chartab_size): Extern it.
28315 (struct Lisp_Char_Table): Re-design.
28316 (struct Lisp_Sub_Char_Table): New structure.
28317 (HASH_KEY, HASH_VALUE): Move from fns.c.
28318 (CHARACTERBITS): Define as 22.
28319 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
28320 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
28321 (GC_SUB_CHAR_TABLE_P): New macro.
28322 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
28323 (code_convert_string_norecord): Delete extern.
28324 (init_character_once, syms_of_character, init_charset)
28325 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
28326
28327 * lread.c: Include "character.h".
28328 (read_multibyte): New arg NBYTES.
28329 (read_escape): Change the meaning of returned *BYTEREP.
28330 (to_multibyte): Delete.
28331 (read1): Adjust the handling of char table and string.
28332
28333 * print.c: Include "character.h" instead of "charset.h".
28334 (print_string): Convert 8-bit raw bytes to octal form by
28335 string_escape_byte8.
28336 (print_object): Adjust for the new multibyte form. Print 8-bit
28337 raw bytes always in octal form. Handle sub char table correctly.
28338
28339 * process.c: Include "character.h" instead of "charset.h".
28340 (read_process_output, send_process): Adjust for the new
28341 code-conversion API.
28342
28343 * puresize.h (BASE_PURESIZE): Increase.
28344
28345 * regex.c: Include "character.h" instead of "charset.h".
28346 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
28347 (regex_compile): Accept a range whose starting and ending
28348 character have different leading bytes.
28349 (analyse_first): Adjust for the above change.
28350
28351 * search.c: Include "character.h" instead of "charset.h".
28352 (search_buffer, boyer_moore): Adjust for the new multibyte form.
28353 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
28354
28355 * syntax.c: Include "character.h" instead of "charset.h".
28356 (syntax_parent_lookup): Delete.
28357 (Fmodify_syntax_entry): Accept a cons as CHAR.
28358 (skip_chars): Adjust for the new multibyte form.
28359 (init_syntax_once): Call char_table_set_range instead of directly
28360 accessing the structure of a char table.
28361
28362 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
28363 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
28364 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
28365 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
28366
28367 * term.c: Include "buffer.h" and "character.h".
28368 (encode_terminal_code, write_glyphs): Adjust for the new
28369 code-conversion API.
28370 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
28371
28372 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
28373
28374 * xdisp.c: Include "character.h".
28375 (get_next_display_element): Adjust for the new multibyte form.
28376 (disp_char_vector): Adjust for the new char table structure.
28377 (decode_mode_spec_coding): Adjust for the new structure of
28378 coding system.
28379 (decode_mode_spec): Adjust for the new code-conversion API.
28380
28381 * xfaces.c: Include "character.h" instead of "charset.h".
28382 (load_face_font): Adjust for the change of choose_face_font and
28383 FS_LOAD_FONT.
28384 (generate_ascii_font): New function.
28385 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
28386 (set_font_frame_param): Adjust for the change of choose_face_font.
28387 (free_realized_face): Make it public.
28388 (free_realized_faces_for_fontset): Rename from
28389 free_realized_multibyte_face. Free also faces realized for ASCII.
28390 (choose_face_font): Change arguments. Adjust for the change of
28391 fontset_font_pattern and FS_LOAD_FONT.
28392
28393 * xfns.c: Include "character.h".
28394 (x_encode_text): Adjust for the new code-conversion API.
28395
28396 * xselect.c: Don't include "charset.h".
28397 (selection_data_to_lisp_data): Adjust for the new code conversion API.
28398
28399 * xterm.c: Include "character.h".
28400 (x_encode_char): New argument CHARSET. Change caller.
28401 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
28402 Call ENCODE_CHAR instead of SPLIT_CHAR.
28403 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
28404 CHAR_WIDTH instead of CHARSET_WIDTH.
28405 (XTread_socket): Adjust for the new code-conversion API.
28406 (x_new_font): Adjust for the change of FS_LOAD_FONT.
28407 (x_load_font): Adjust for the change of struct font.
28408
28409 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
28410
28411 * xfaces.c (face_at_buffer_position): Remove unused vars.
28412
28413 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
28414
28415 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
28416 Fix overflow checking.
28417
28418 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
28419
28420 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
28421 Cancel previous change.
28422
28423 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
28424
28425 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
28426 ccl->eight_bit_control. Fix check for buffer overflow.
28427 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
28428 (ccl_driver): Initialize extra_bytes to 0.
28429
28430 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
28431
28432 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
28433 return it ORed with ctrl_modifier.
28434
28435 2008-01-29 Miles Bader <miles@gnu.org>
28436
28437 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
28438
28439 2008-01-28 Jason Rumney <jasonr@gnu.org>
28440
28441 * w32.c (stat): Don't double check for networked drive.
28442
28443 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
28444
28445 * window.c (run_window_configuration_change_hook): New function.
28446 Code extracted from set_window_buffer. Set the selected frame.
28447 (set_window_buffer): Use it.
28448 * window.h (run_window_configuration_change_hook): Declare.
28449 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
28450
28451 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
28452
28453 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
28454
28455 * Makefile.in: Remove references to unused macros.
28456
28457 2008-01-26 Eli Zaretskii <eliz@gnu.org>
28458
28459 * w32.c (g_b_init_get_sid_sub_authority)
28460 (g_b_init_get_sid_sub_authority_count): New static variables.
28461 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
28462 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
28463 (init_user_info): Use them to retrieve uid and gid.
28464 Use 500/513, the Windows defaults, as Administrator's uid/gid.
28465 (fstat): Use pw_uid and pw_gid from the_passwd structure for
28466 st_uid and st_gid of the file.
28467
28468 2008-01-26 Jason Rumney <jasonr@gnu.org>
28469
28470 * w32.c (logon_network_drive): New function.
28471 (stat): Use it.
28472
28473 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
28474
28475 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
28476 invisible text covered with an ellipsis.
28477
28478 2008-01-25 Richard Stallman <rms@gnu.org>
28479
28480 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
28481 jump back to beginning. Move some other initializations after that.
28482 (Qwindow_text_change_functions, Vwindow_text_change_functions):
28483 New variables.
28484 (syms_of_xdisp): Init them.
28485
28486 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
28487
28488 * buffer.c (reset_buffer_local_variables):
28489 Implement `permanent-local-hook'.
28490 (Qpermanent_local_hook): New variable.
28491 (syms_of_buffer): Init and staticpro it.
28492
28493 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
28494
28495 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
28496
28497 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
28498
28499 * fns.c (Fclrhash): Return TABLE.
28500
28501 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28502
28503 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
28504 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
28505 is set even without positional changes.
28506 (x_scroll_bar_clear): Set bar->redraw_needed_p.
28507
28508 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
28509
28510 2008-01-23 Jason Rumney <jasonr@gnu.org>
28511
28512 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
28513
28514 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
28515 the unicode range available in MULE by locale-coding-system.
28516 Improve dbcs lead byte detection. Set event timestamp and modifiers
28517 earlier.
28518
28519 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28520
28521 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
28522 [MAC_OSX] (init_mac_osx_environment): Initialize it.
28523 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
28524 when used on child processes.
28525
28526 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
28527
28528 * dbusbind.c (Fdbus_method_return_internal): Rename from
28529 Fdbus_method_return.
28530 (Fdbus_unregister_object): Move to dbus.el.
28531 (Fdbus_call_method, Fdbus_method_return_internal)
28532 (Fdbus_send_signal): Improve debug messages.
28533
28534 2008-01-20 Martin Rudalics <rudalics@gmx.at>
28535
28536 * undo.c (undo_inhibit_record_point): New variable.
28537 (syms_of_undo): Initialize it.
28538 (record_point): Don't record point when undo_inhibit_record_point
28539 is set.
28540
28541 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
28542
28543 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
28544
28545 * xdisp.c (Qauto_hscroll_mode): New var.
28546 (syms_of_xdisp): Initialize it.
28547 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
28548 window's buffer.
28549 (hscroll_windows): Don't check automatic_hscrolling_p here.
28550
28551 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
28552 vscroll if we're setting window-buffer to the value it already has.
28553
28554 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
28555
28556 * m/intel386.h: Remove references to XENIX.
28557
28558 2008-01-17 Andreas Schwab <schwab@suse.de>
28559
28560 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
28561 instead of HAVE_X86_64_LIB64_DIR.
28562 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
28563
28564 2008-01-17 Glenn Morris <rgm@gnu.org>
28565
28566 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
28567 to HAVE_X86_64_LIB64_DIR.
28568
28569 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
28570
28571 * s/irix3-3.h:
28572 * s/irix4-0.h:
28573 * s/386-ix.h:
28574 * s/domain.h:
28575 * s/hpux9-x11r4.h:
28576 * s/hpux9shxr4.h: Remove files for systems no longer supported.
28577
28578 * sysdep.c: Remove code containing references to symbols defined
28579 by unsupported systems.
28580
28581 2008-01-16 Glenn Morris <rgm@gnu.org>
28582
28583 * coding.c (select-safe-coding-system-function): Doc fix.
28584
28585 2008-01-15 Glenn Morris <rgm@gnu.org>
28586
28587 * config.in: Revert 2008-01-13 change: this is a generated file.
28588
28589 2008-01-13 Tom Tromey <tromey@redhat.com>
28590
28591 * lisp.h: Fix typo.
28592
28593 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
28594
28595 * m/sequent-ptx.h:
28596 * m/sequent.h:
28597 * s/ptx.h:
28598 * s/ptx4-2.h:
28599 * s/ptx4.h: Remove files for systems no longer supported.
28600
28601 * callproc.c (Fcall_process): Fix previous change.
28602
28603 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
28604
28605 * unexsunos4.c: Remove file, system not supported anymore.
28606
28607 * m/mips.h:
28608 * m/intel386.h:
28609 * callproc.c:
28610 * config.in:
28611 * ecrt0.c:
28612 * emacs.c:
28613 * fileio.c:
28614 * frame.c:
28615 * getpagesize.h:
28616 * keyboard.c:
28617 * lread.c:
28618 * process.c:
28619 * puresize.h:
28620 * sysdep.c:
28621 * systty.h:
28622 * syswait.h:
28623 * unexec.c:
28624 * xdisp.c:
28625 * alloc.c: Remove code containing references to symbols defined by
28626 unsupported systems.
28627
28628 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
28629
28630 * coding.c (detect_coding_mask): Fix previous change.
28631
28632 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
28633
28634 * coding.c (detect_coding_iso2022): New arg
28635 latin_extra_code_state. Allow Latin extra codes only
28636 when *latin_extra_code_state is nonzero.
28637 (detect_coding_mask): If there is a NULL byte, detect the encoding
28638 as UTF-16 or binary. If Latin extra codes exist, detect the
28639 encoding as ISO-2022 only when there's no other proper encoding is
28640 found.
28641
28642 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28643
28644 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
28645 #ifdef MAC_OS.
28646
28647 2008-01-08 Richard Stallman <rms@gnu.org>
28648
28649 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
28650
28651 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
28652
28653 * keyboard.c (parse_menu_item): Don't enclose key bindings on
28654 menu bar in parentheses.
28655
28656 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
28657
28658 * m/7300.h:
28659 * m/acorn.h:
28660 * m/alliant-2800.h:
28661 * m/alliant.h:
28662 * m/alliant1.h:
28663 * m/alliant4.h:
28664 * m/altos.h:
28665 * m/amdahl.h:
28666 * m/apollo.h:
28667 * m/att3b.h:
28668 * m/aviion-intel.h:
28669 * m/aviion.h:
28670 * m/celerity.h:
28671 * m/clipper.h:
28672 * m/cnvrgnt.h:
28673 * m/convex.h:
28674 * m/cydra5.h:
28675 * m/delta88k.h:
28676 * m/dpx2.h:
28677 * m/dual.h:
28678 * m/elxsi.h:
28679 * m/f301.h:
28680 * m/gould-np1.h:
28681 * m/gould.h:
28682 * m/i860.h:
28683 * m/ibmps2-aix.h:
28684 * m/ibmrt-aix.h:
28685 * m/ibmrt.h:
28686 * m/irist.h:
28687 * m/is386.h:
28688 * m/isi-ov.h:
28689 * m/mega68.h:
28690 * m/mg1.h:
28691 * m/news-r6.h:
28692 * m/news-risc.h:
28693 * m/news.h:
28694 * m/nh3000.h:
28695 * m/nh4000.h:
28696 * m/ns16000.h:
28697 * m/ns32000.h:
28698 * m/nu.h:
28699 * m/orion.h:
28700 * m/orion105.h:
28701 * m/paragon.h:
28702 * m/pfa50.h:
28703 * m/plexus.h:
28704 * m/pyramid.h:
28705 * m/pyrmips.h:
28706 * m/sh3el.h:
28707 * m/sps7.h:
28708 * m/sr2k.h:
28709 * m/stride.h:
28710 * m/sun1.h:
28711 * m/sun2.h:
28712 * m/sun3-68881.h:
28713 * m/sun3-fpa.h:
28714 * m/sun3-soft.h:
28715 * m/sun3.h:
28716 * m/sun386.h:
28717 * m/symmetry.h:
28718 * m/tad68k.h:
28719 * m/tahoe.h:
28720 * m/targon31.h:
28721 * m/tek4300.h:
28722 * m/tekxd88.h:
28723 * m/tower32.h:
28724 * m/tower32v3.h:
28725 * m/ustation.h:
28726 * m/wicat.h:
28727 * m/xps100.h:
28728 * s/cxux.h:
28729 * s/cxux7.h:
28730 * s/dgux.h:
28731 * s/dgux4.h:
28732 * s/dgux5-4-3.h:
28733 * s/dgux5-4r2.h:
28734 * s/esix.h:
28735 * s/esix5r4.h:
28736 * s/hiuxmpp.h:
28737 * s/hiuxwe2.h:
28738 * s/iris3-5.h:
28739 * s/iris3-6.h:
28740 * s/isc2-2.h:
28741 * s/isc3-0.h:
28742 * s/isc4-0.h:
28743 * s/isc4-1.h:
28744 * s/newsos5.h:
28745 * s/newsos6.h:
28746 * s/osf1.h:
28747 * s/osf5-0.h:
28748 * s/riscix1-1.h:
28749 * s/riscix12.h:
28750 * s/sco4.h:
28751 * s/sco5.h:
28752 * s/sunos4-0.h:
28753 * s/sunos4-1.h:
28754 * s/sunos413.h:
28755 * s/sunos4shr.h:
28756 * s/umax.h:
28757 * s/unipl5-2.h:
28758 * s/xenix.h:
28759 * cxux-crt0.s:
28760 * unexapollo.c:
28761 * unexconvex.c:
28762 * unexenix.c:
28763 * unexsni.c: Remove files for systems no longer supported.
28764
28765 * m/intel386.h: Remove references to unsupported systems.
28766
28767 * w32.c (get_emacs_configuration): Remove reference to i860.
28768
28769 * sysdep.c: Remove dead code.
28770
28771 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
28772
28773 * s/rtu.h:
28774 * m/masscomp.h: Remove files. Platform is obsolete.
28775
28776 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
28777
28778 * dbusbind.c (Fdbus_method_return): New function.
28779 (xd_read_message): Add the serial number to the event.
28780 (Fdbus_register_method): Activate the function.
28781
28782 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
28783
28784 * keyboard.c (read_key_sequence): Fix typo.
28785
28786 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
28787
28788 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
28789 (xd_signature, xd_append_arg): Handle element type detection for
28790 empty arrays.
28791 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
28792 SDATA () calls; this must be solved more general.
28793 (Fdbus_register_signal): Use SBYTES instead of strlen.
28794
28795 2008-01-03 Magnus Henoch <magnus@zemdatav>
28796
28797 * dbusbind.c (xd_append_arg): Use unsigned char instead of
28798 unsigned int for byte values (necessary for big-endian platform).
28799 (Fdbus_call_method): Handle the case of no returned arguments.
28800
28801 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
28802
28803 * dbusbind.c (xd_read_message): Use non-static input_event struct.
28804
28805 2007-12-31 Magnus Henoch <mange@freemail.hu>
28806
28807 * dbusbind.c (xd_signature): Signature of variant is just "v".
28808
28809 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
28810
28811 * dbusbind.c: Fix several errors and compiler warnings.
28812 Reported by Tom Tromey <tromey@redhat.com>.
28813 (XD_ERROR, XD_DEBUG_MESSAGE)
28814 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
28815 (xd_append_arg): Part for basic D-Bus types rewritten.
28816 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
28817 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
28818 appropriate.
28819 (xd_read_message): Return Qnil. Don't signal an error; it is not
28820 useful during event reading.
28821 (Fdbus_register_signal): Signal an error if the check for
28822 FUNCTIONP fails.
28823 (Fdbus_register_method): New function. The implementation is not
28824 complete, the call of the function signals an error therefore.
28825 (Fdbus_unregister_object): New function, renamed from
28826 Fdbus_unregister_signal. The initial check signals an error, if
28827 the object is not well formed.
28828
28829 2007-12-30 Richard Stallman <rms@gnu.org>
28830
28831 * textprop.c (get_char_property_and_overlay):
28832 Signal error if POSITION is out of range in a buffer.
28833
28834 2007-12-29 Martin Rudalics <rudalics@gmx.at>
28835
28836 * w32fns.c (Fx_create_frame): Make copy of frame parameters
28837 because the original parameters are in pure storage now.
28838
28839 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28840
28841 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
28842
28843 2007-12-22 Eli Zaretskii <eliz@gnu.org>
28844
28845 * callint.c (syms_of_callint) <command-history>: Add reference to
28846 history-length in the doc string.
28847
28848 2007-12-17 Jason Rumney <jasonr@gnu.org>
28849
28850 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
28851 before passing as wParam.
28852
28853 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
28854
28855 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
28856 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
28857 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
28858 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
28859 as number.
28860 (Fdbus_call_method): Fix docstring.
28861
28862 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
28863
28864 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
28865 New macros.
28866 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
28867 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
28868 Simplify.
28869 (xd_signature): New function.
28870 (xd_append_arg): Compute also signatures. Major rewrite.
28871 (xd_retrieve_arg): Make debug messages friendly.
28872 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
28873 Check for signatures of arguments.
28874
28875 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
28876
28877 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
28878 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
28879 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
28880 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
28881 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
28882 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
28883 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
28884 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
28885 (xd_retrieve_value): Remove. Functionality included in ...
28886 (xd_append_arg): New function.
28887 (Fdbus_call_method, Fdbus_send_signal): Apply it.
28888
28889 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
28890
28891 * dbusbind.c (top): Include <stdio.h>.
28892 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
28893 dbus_message_new_method_call and dbus_message_new_signal.
28894 (Fdbus_register_signal): Rename unique_name to uname.
28895 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
28896 non-existing unique name. Fix typos in matching rule. Return an
28897 object which is useful in Fdbus_unregister_signal.
28898 (Fdbus_unregister_signal): Reimplementation, in order to remove
28899 only the corresponding entry.
28900 (Vdbus_registered_functions_table): Change the order of entries.
28901 Apply these changes in xd_read_message and Fdbus_register_signal.
28902
28903 2007-12-16 Andreas Schwab <schwab@suse.de>
28904
28905 * fileio.c (Finsert_file_contents): Fix overflow check to not
28906 depend on undefined integer overflow.
28907
28908 2007-12-14 Jason Rumney <jasonr@gnu.org>
28909
28910 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
28911 for characters above 127.
28912
28913 2007-12-13 Jason Rumney <jasonr@gnu.org>
28914
28915 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
28916 before dereferencing array.
28917 (lookup_vk_code): Remove zero comparison.
28918
28919 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
28920
28921 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
28922 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
28923 Use `unsigned int' instead of `uint'.
28924 (xd_read_message, Fdbus_register_signal): Split expressions into
28925 multiple lines before operators "&&" and "||", according to the
28926 GNU Coding Standards.
28927
28928 2007-12-14 Eli Zaretskii <eliz@gnu.org>
28929
28930 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
28931
28932 2007-12-12 Juri Linkov <juri@jurta.org>
28933
28934 * buffer.c (Frename_buffer): In interactive spec replace
28935 `read-buffer' with `read-string' that uses `buffer-name-history'
28936 as history, and the current buffer's name as default.
28937
28938 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
28939
28940 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
28941 manipulating the backtrace manually.
28942 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
28943 (struct backtrace, backtrace_list): Remove.
28944 (command_loop_1): Remove dead var `no_direct'.
28945
28946 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
28947 preserve non-built-in buffer-local variables.
28948 (Fkill_all_local_variables): Don't re-create&re-set permanent
28949 buffer-local variables.
28950
28951 2007-12-09 Juri Linkov <juri@jurta.org>
28952
28953 * buffer.c (Frename_buffer): Change interactive spec from "s" to
28954 Lisp code that uses `read-buffer' with current buffer as default.
28955
28956 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
28957
28958 * dbusbind.c (xd_read_message): Generate an event for every
28959 registered handler. There might be several handlers registered
28960 for the same signal.
28961 (Fdbus_register_signal): Don't overwrite a registration for the
28962 same signal. Add a new registration if handlers are different.
28963 (Vdbus_registered_functions_table): Rework doc string.
28964
28965 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
28966
28967 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
28968 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
28969 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
28970 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
28971 Unify argument lists.
28972 (xd_read_message, Fdbus_register_signal): Reorder and extend event
28973 arguments and hash table keys. Use unique name for service.
28974 (Fdbus_unregister_signal): Remove checks.
28975 (Vdbus_registered_functions_table): Fix doc string.
28976
28977 2007-12-05 Magnus Henoch <mange@freemail.hu>
28978
28979 * process.c (make_process): Initialize pty_flag to 0.
28980
28981 2007-12-05 Jason Rumney <jasonr@gnu.org>
28982
28983 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
28984 specified XBMs.
28985
28986 2007-12-05 Richard Stallman <rms@gnu.org>
28987
28988 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
28989
28990 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28991
28992 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
28993 New variable.
28994 (mac_try_close_socket) [MAC_OSX]: New function.
28995 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
28996 Update cfsockets_for_select. Replace invalid CFRunLoop source.
28997
28998 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
28999 Use mac_try_close_socket.
29000
29001 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29002
29003 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
29004 reloc_base.
29005 (copy_dysymtab): Compute relocation base here.
29006 (rebase_reloc_address) [__ppc64__]: New function.
29007 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
29008 changed.
29009
29010 2007-12-05 Jason Rumney <jasonr@gnu.org>
29011
29012 * w32proc.c (sys_spawnve): Quote args with wildcards.
29013
29014 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29015
29016 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
29017 __objc_* sections.
29018 (unrelocate) [_LP64]: Set relocation base to address of data segment.
29019
29020 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
29021
29022 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
29023 Move check for Vdbus_registered_functions_table to
29024 xd_read_queued_messages.
29025 (xd_read_queued_messages): Protect xd_read_message calls by
29026 internal_condition_case_1.
29027
29028 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
29029
29030 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
29031 Qdbus_system_bus and Qdbus_session_bus, respectively.
29032 (Vdbus_intern_symbols): Remove.
29033 (Vdbus_registered_functions_table): New hash table.
29034 (XD_SYMBOL_INTERN_SYMBOL): Remove.
29035 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
29036 Rewrite in order to manage registered functions by hash table
29037 Vdbus_registered_functions_table.
29038
29039 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
29040
29041 * xterm.c: Update URL to Window Manager Specification in comment.
29042
29043 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
29044
29045 * config.in (HAVE_DBUS): Add.
29046
29047 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
29048 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
29049 (obj): Add $(DBUS_OBJ).
29050 (LIBES): Add $(DBUS_LIBS).
29051 (dbusbind.o): New target.
29052
29053 * dbusbind.c: New file.
29054
29055 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
29056
29057 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
29058 (Qdbus_event): New Lisp symbol.
29059 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
29060 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
29061 (keys_of_keyboard): Define dbus-event.
29062
29063 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
29064
29065 2007-12-01 Richard Stallman <rms@gnu.org>
29066
29067 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
29068
29069 2007-11-30 Jason Rumney <jasonr@gnu.org>
29070
29071 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
29072 (w32con_reset_terminal_modes): Clear screen buffer.
29073 (w32_face_attributes): Don't use color indexes that are out of range.
29074 Only reverse the default colors.
29075
29076 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
29077 WINDOWSNT.
29078
29079 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
29080
29081 2007-11-29 Jason Rumney <jasonr@gnu.org>
29082
29083 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
29084 (w32_face_attributes): Use Vtty_defined_color_alist to determine
29085 if the terminal colors are initialized.
29086 (unspecified_fg, unspecified_bg): Remove unused declarations.
29087
29088 2007-11-29 Andreas Schwab <schwab@suse.de>
29089
29090 * keyboard.c (apply_modifiers): Fix typo.
29091
29092 2007-11-29 Richard Stallman <rms@gnu.org>
29093
29094 * keymap.c (Fcurrent_local_map): Doc fix.
29095
29096 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
29097
29098 * s/gnu-kfreebsd.h: New file.
29099
29100 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
29101
29102 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
29103 Don't cast redundantly.
29104
29105 * keyboard.c (KEY_TO_CHAR): New macro.
29106 (parse_modifiers, apply_modifiers): Accept integer arguments.
29107 (read_key_sequence): Use them to unify the "shift->unshift" mapping
29108 for chars and symbol keys.
29109 After doing such remapping, apply function-key-map again.
29110
29111 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
29112
29113 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
29114 compiled anymore.
29115
29116 2007-11-26 Andreas Schwab <schwab@suse.de>
29117
29118 * process.c (list_processes_1): Fix indentation level of the
29119 command column.
29120
29121 2007-11-23 Andreas Schwab <schwab@suse.de>
29122
29123 * editfns.c (Fformat): Handle %c specially since it requires the
29124 argument to be of type int.
29125
29126 2007-11-23 Markus Triska <markus.triska@gmx.at>
29127
29128 * emacs.c (main): Call init_editfns before init_process, since
29129 init_process sets Vprocess_connection_type depending on OS release.
29130
29131 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
29132
29133 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
29134 (find_symbol_value): Use do_symval_forwarding.
29135
29136 * data.c (set_internal): Set the value in the `cons-cell' (for
29137 Buffer_Local_values) not only for frame-local variables.
29138
29139 2007-11-22 Andreas Schwab <schwab@suse.de>
29140
29141 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
29142 values to sprintf.
29143 * keymap.c (Fsingle_key_description): Likewise.
29144 * print.c (print_object): Likewise.
29145
29146 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
29147
29148 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
29149 file for image is nil.
29150
29151 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
29152
29153 * term.c: Include stdarg.h.
29154 (fatal): Implement using varargs.
29155 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
29156
29157 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
29158
29159 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
29160 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
29161 Update call to buffer_slot_type_mismatch.
29162 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
29163 (buffer_slot_type_mismatch): Update.
29164 * buffer.c (buffer_local_types): Remove.
29165 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
29166 (defvar_per_buffer): Set the type in the buffer_objfwd.
29167
29168 2007-11-21 Jason Rumney <jasonr@gnu.org>
29169
29170 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
29171 CreateFileMapping returns NULL on failure.
29172
29173 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
29174
29175 * search.c (Fset_match_data): Remove the `evaporate' feature.
29176 (unwind_set_match_data): Don't use the `evaporate' feature.
29177
29178 2007-11-21 Jason Rumney <jasonr@gnu.org>
29179
29180 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
29181
29182 * w32console.c (w32con_write_glyphs): Remove unused variables.
29183
29184 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
29185
29186 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
29187
29188 * s/darwin.h (MULTI_KBOARD): Remove.
29189
29190 * macfns.c (x_create_tip_frame, Fx_create_frame)
29191 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
29192
29193 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
29194
29195 * buffer.c (Fbuffer_local_value): Remove redundant test.
29196 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
29197 than in `current-buffer' to match the comment.
29198 Do the swap using swap_in_global_binding.
29199
29200 * data.c (store_symval_forwarding, set_internal):
29201 * eval.c (specbind): Remove dead code.
29202
29203 * coding.c (detect_coding, Fupdate_coding_systems_internal):
29204 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
29205 Since we do not want to see internal Lisp_*fwd objects here.
29206
29207 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
29208
29209 * sysdep.c (init_system_name): Use getaddrinfo if available.
29210
29211 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
29212 (x_scroll_bar_note_movement): start, end, with, height in struct
29213 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
29214
29215 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
29216
29217 * puresize.h (BASE_PURESIZE): Increase to 1190000.
29218
29219 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
29220
29221 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
29222 This undoes Richard's change of 14-Oct-2002.
29223
29224 * alloc.c (allocate_other_vector):
29225 * lisp.h (allocate_other_vector): Remove.
29226
29227 * window.c (struct save_window_data): Move non-lisp data to the end
29228 and make it `int' rather than Lisp_Object.
29229 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
29230 Done wrap/unwrap integer values.
29231 (Fset_window_configuration, compare_window_configurations):
29232 Update use of fields to their new types.
29233
29234 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
29235 Turn integer fields into `int'. Merge x_window_low and x_window_high.
29236 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
29237 (SET_SCROLL_BAR_X_WINDOW): Remove.
29238 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
29239 Access the new x_window field directly.
29240 * xterm.c (x_scroll_bar_create): Use a pseudovector.
29241 Don't wrap/unwrap integers into Lisp_Objects.
29242 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
29243 (x_scroll_bar_report_motion):
29244 Don't wrap/unwrap integers into Lisp_Objects.
29245 (x_term_init): Use SDATA.
29246 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
29247 (x_scroll_bar_set_handle, x_scroll_bar_remove)
29248 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
29249 (x_scroll_bar_report_motion, x_scroll_bar_clear):
29250 * xfns.c (x_set_background_color):
29251 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
29252 Access the new x_window field directly.
29253
29254 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
29255 (allocate_pseudovector): Make non-static.
29256
29257 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
29258 (allocate_pseudovector): Declare.
29259 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
29260
29261 2007-11-15 Andreas Schwab <schwab@suse.de>
29262
29263 * editfns.c (Fformat): Correctly format EMACS_INT values.
29264 Also take precision into account when formatting an integer.
29265
29266 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
29267
29268 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
29269
29270 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
29271 (syms_of_keyboard): Defsubr it.
29272
29273 * data.c (swap_in_global_binding): Fix longstanding bug where
29274 store_symval_forwarding was not called with the right second argument,
29275 thus causing objfwd-ing from being dropped.
29276
29277 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
29278
29279 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
29280 (Fx_display_pixel_height, Fx_display_planes)
29281 (Fx_display_color_cells, Fx_server_max_request_size)
29282 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
29283 (Fx_display_visual_class, Fx_display_save_under):
29284 * w32fns.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_screens)
29288 (Fx_display_mm_height, Fx_display_mm_width)
29289 (Fx_display_backing_store, Fx_display_visual_class)
29290 (Fw32_select_font, Fx_display_save_under):
29291 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
29292 (Fx_display_pixel_height, Fx_display_planes)
29293 (Fx_display_color_cells, Fx_server_max_request_size)
29294 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
29295 (Fx_display_save_under): Fix typos in docstrings.
29296
29297 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
29298
29299 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
29300 corresponding to deleted entries; they are an implementation detail.
29301 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
29302 Remove variables.
29303 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
29304 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
29305 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
29306 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
29307 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
29308 (Fw32_define_rgb_color, Fw32_load_color_file)
29309 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
29310 Fix typos in docstrings.
29311 (Fx_server_version): Reflow docstring.
29312 (Fw32_shell_execute): Doc fixes.
29313
29314 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
29315
29316 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
29317 if w32_parse_hot_key returned nil.
29318
29319 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
29320
29321 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
29322
29323 2007-11-09 Jason Rumney <jasonr@gnu.org>
29324
29325 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
29326
29327 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
29328
29329 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
29330 Remove W32_SCROLL_BAR_CLICK_EVENT.
29331
29332 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
29333 Add MULTIMEDIA_KEY_EVENT.
29334
29335 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
29336 (lispy_multimedia_keys) [WINDOWSNT]: New array.
29337 (make_lispy_event) [WINDOWSNT]: Use it to translate
29338 MULTIMEDIA_KEY_EVENT.
29339
29340 * w32term.h (WM_APPCOMMAND): Define if not already.
29341 (GET_APPCOMMAND_LPARAM): Likewise.
29342
29343 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
29344 WM_APPCOMMAND.
29345
29346 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
29347 (syms_of_w32fns): Export and initialize it.
29348 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
29349
29350 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
29351
29352 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
29353 twice.
29354
29355 * xdisp.c (handle_face_prop): Fix last change.
29356
29357 2007-11-09 Richard Stallman <rms@gnu.org>
29358
29359 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
29360 not just for after-strings and before-strings.
29361 Call face_for_overlay_string and pass the overlay to it.
29362 (handle_display_prop): Determine whether property came from an overlay.
29363 Pass OVERLAY arg to handle_single_display_spec.
29364 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
29365 (load_overlay_strings): Fill in it->string_overlays.
29366 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
29367
29368 * xfaces.c (face_for_overlay_string): Function renamed from
29369 face_at_buffer_position_no_overlays, and add arg OVERLAY.
29370
29371 * dispextern.h (struct it): New elt string_overlays.
29372 New elt from_overlay, also in stack.
29373 Rearrange a few elements.
29374 (face_for_overlay_string): Decl renamed from
29375 face_at_buffer_position_no_overlays, and add argument.
29376
29377 2007-11-09 Richard Stallman <rms@gnu.org>
29378
29379 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
29380 to get the base face for an overlay string.
29381
29382 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
29383
29384 * xfaces.c (face_at_buffer_position_no_overlays): New function.
29385
29386 * xdisp.c (handle_stop): Move some code out of loop.
29387
29388 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29389
29390 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
29391 Fix conversion from Lisp object to ATSUFontID.
29392
29393 2007-11-09 Jason Rumney <jasonr@gnu.org>
29394
29395 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
29396
29397 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29398
29399 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
29400 Don't assume regions are aligned to page boundary.
29401 (print_load_command_name): Add LC_UUID if defined.
29402
29403 2007-11-09 Richard Stallman <rms@gnu.org>
29404
29405 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
29406
29407 2007-11-07 Jason Rumney <jasonr@gnu.org>
29408
29409 * s/windows95.h: Remove.
29410
29411 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
29412
29413 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
29414 abort with a message on unhandled store_type values.
29415
29416 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
29417
29418 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
29419 Remove HAVE_X11R5 and HAVE_X11R4.
29420
29421 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
29422
29423 * Makefile.in: Remove references to sunfns.c and sunfns.o.
29424
29425 2007-11-01 Johan Bockgård <bojohan@gnu.org>
29426
29427 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
29428 Don't set s->stippled_p here, since it has already been set by
29429 x_set_glyph_string_gc from x_draw_glyph_string.
29430
29431 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
29432
29433 * sunfns.c: Remove file.
29434
29435 * m/sun386.h:
29436 * m/sun2.h:
29437 * m/sparc.h: Remove Sun windows code.
29438
29439 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
29440
29441 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
29442 (init_keyboard): Set current_kboard's window-system to nil.
29443 (tty_read_avail_input): Typo.
29444 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
29445
29446 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
29447
29448 * s/usg5-4.h:
29449 * s/usg5-3.h:
29450 * s/ptx.h:
29451 * m/is386.h:
29452 * m/ibmps2-aix.h:
29453 * Makefile.in: Remove all mentions of X10.
29454
29455 * dispnew.c (syms_of_display): Don't mention version 10.
29456
29457 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
29458
29459 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
29460 ($(BLD)/abbrev.$(O)): Remove.
29461
29462 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
29463
29464 Rewrite abbrev.c in Elisp.
29465 * image.c (Qcount): Don't declare as extern.
29466 (syms_of_image): Initialize and staticpro `Qcount'.
29467 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
29468 * emacs.c (main): Don't call syms_of_abbrev.
29469 * Makefile.in (obj): Remove abbrev.o.
29470 (abbrev.o): Remove.
29471 * abbrev.c: Remove.
29472
29473 2007-10-26 Martin Rudalics <rudalics@gmx.at>
29474
29475 * window.c (window_min_size_2): Don't count header-line.
29476
29477 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
29478
29479 * frame.h (struct frame): Move all bit fields after the first bit
29480 field to take advantage of the available space. Group all the
29481 chars together to reduce wasted space due to padding.
29482
29483 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
29484
29485 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
29486
29487 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
29488 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
29489 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
29490 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
29491 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
29492 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
29493 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
29494 (last_marked, mark_object_loop_halt): Make static.
29495
29496 * frame.c (syms_of_frame) <delete-frame-functions>:
29497 Fix typo in docstring.
29498
29499 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
29500
29501 * w32.c (init_environment): Fix tiny memory leak.
29502 (w32_get_resource): Remove unused variable `ok'.
29503
29504 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
29505
29506 Make `window-system' into a keyboard-local variable (rather than
29507 frame-local as done originally by multi-tty).
29508
29509 * keyboard.h (struct kboard): Add Vwindow_system.
29510 * keyboard.c (init_kboard): Set a default for Vwindow_system.
29511 (mark_kboards): Mark Vwindow_system.
29512
29513 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
29514 (init_display): Don't set the obsolete `window-system' frame-param.
29515
29516 * xterm.c (x_term_init):
29517 * w32term.c (w32_create_terminal):
29518 * term.c (init_tty): Set Vwindow_system.
29519 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
29520 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
29521
29522 * xfns.c (Fx_create_frame, x_create_tip_frame):
29523 * w32fns.c (Fx_create_frame, x_create_tip_frame):
29524 * macfns.c (Fx_create_frame):
29525 Don't set the obsolete `window-system' frame-param.
29526
29527 * frame.h (Qwindow_system): Remove.
29528 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
29529 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
29530
29531 2007-10-24 Richard Stallman <rms@gnu.org>
29532
29533 * frame.c (x_figure_window_size): For fullscreen case,
29534 set USPosition | PPosition without clobbering rest of window_prompting.
29535
29536 * keyboard.c (Fcurrent_idle_time): Doc fix.
29537
29538 * print.c (Fwith_output_to_temp_buffer): Doc fix.
29539
29540 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
29541
29542 * process.c (unwind_request_sigio): Only define if __ultrix__.
29543
29544 * callproc.c (child_setup): Remove spurious *.
29545
29546 * lisp.h (Fget_text_property): Declare.
29547 (have_menus_p): Declare it here rather than in sys-dep header files.
29548 * macterm.h (have_menus_p):
29549 * msdos.h (have_menus_p):
29550 * xterm.h (have_menus_p): Remove.
29551
29552 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
29553 (Fmake_variable_frame_local): Just check the variable's const-ness
29554 rather than checking nil or t.
29555
29556 2007-10-22 Jason Rumney <jasonr@gnu.org>
29557
29558 * w32fns.c: Include math.h.
29559 (w32_abort): Declaration moved to nt/config.nt.
29560
29561 * s/ms-w32.h (HAVE_STDLIB_H): Define.
29562 (abort): Redefinition moved to nt/config.nt.
29563
29564 * m/windowsnt.h: Remove.
29565
29566 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
29567
29568 * emacs.c (Fdump_emacs): Fix typo in message.
29569 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
29570 <installation-directory>: Reflow docstring.
29571
29572 2007-10-22 Juri Linkov <juri@jurta.org>
29573
29574 * minibuf.c: Allow minibuffer default to be a list of default values.
29575 With empty input use the first element of this list as returned default.
29576 (string_to_object)
29577 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
29578 (read_minibuf): If defalt is cons, set histstring to its car.
29579 (Fread_string): If default_value is cons, set val to its car.
29580 (Fread_buffer): If def is cons, use its car.
29581 (Fcompleting_read): If defalt is cons, set val to its car.
29582
29583 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
29584
29585 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
29586
29587 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
29588
29589 * doc.c (Fdocumentation): Check for advice in all cases.
29590
29591 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
29592
29593 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
29594
29595 2007-10-19 Richard Stallman <rms@gnu.org>
29596
29597 * doc.c (Fdocumentation): Check for and handle an advised function.
29598
29599 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
29600
29601 * process.c (Fset_process_filter): Doc fix.
29602
29603 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
29604
29605 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
29606 which caused key-translation-map to applied repeatedly (thus breaking
29607 double-mode).
29608
29609 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
29610
29611 * xselect.c (x_own_selection, x_handle_selection_clear)
29612 (x_clear_frame_selections):
29613 * w32menu.c (list_of_panes, list_of_items):
29614 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
29615 * textprop.c (validate_plist, interval_has_all_properties)
29616 (interval_has_some_properties, interval_has_some_properties_list)
29617 (add_properties, text_property_list):
29618 * process.c (Fget_buffer_process, list_processes_1, status_notify):
29619 * minibuf.c (Fassoc_string):
29620 * macselect.c (x_own_selection, x_clear_frame_selections)
29621 (Fx_disown_selection_internal):
29622 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
29623 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
29624
29625 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
29626
29627 * process.c: Link to libs for calling res_init() if available.
29628 (Fmake_network_process): Call res_init() before getaddrinfo or
29629 gethostbyname, if possible.
29630
29631 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
29632
29633 * lread.c (read1): Set pvectype for char_tables.
29634
29635 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
29636 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
29637 Add type checks.
29638 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
29639
29640 * alloc.c (free_misc): Use XMISCTYPE.
29641 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
29642
29643 2007-10-17 Glenn Morris <rgm@gnu.org>
29644
29645 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
29646 (syms_of_minibuf): Add Qcompletion_ignore_case.
29647 * dired.c (Qcompletion_ignore_case): Change to external.
29648 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
29649 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
29650 (Fread_file_name): Use it rather than intern'ing.
29651
29652 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
29653 (Fread_coding_system): Ignore case of user input.
29654
29655 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29656
29657 * xdisp.c (handle_display_prop): Ignore display specs after
29658 replacing one when string text is being replaced.
29659 (handle_single_display_spec): Pretend as if characters with display
29660 property haven't been consumed only when buffer text is being replaced.
29661
29662 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
29663
29664 * xfns.c (Fx_create_frame, Fx_display_list):
29665 * window.c (window_fixed_size_p, enlarge_window)
29666 (shrink_window_lowest_first):
29667 * macterm.c (init_font_name_table):
29668 * macfns.c (Fx_create_frame, Fx_display_list):
29669 * lread.c (close_load_descs):
29670 * keyboard.c (read_char_x_menu_prompt):
29671 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
29672 * coding.c (code_convert_region_unwind): Test the type of an object
29673 rather than just !NILP before extracting data from it.
29674
29675 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
29676
29677 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
29678 (XMISCANY): New macro.
29679 (XMISCTYPE): Use it.
29680 (struct Lisp_Misc_Any): New type.
29681 (union Lisp_Misc): Use it.
29682 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
29683 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
29684 (find_symbol_value, set_internal, default_value, Fset_default)
29685 (Fmake_variable_buffer_local, Fmake_local_variable)
29686 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
29687 (Flocal_variable_if_set_p, Fvariable_binding_locus):
29688 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
29689 * alloc.c (allocate_buffer): Set the size and tag.
29690 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
29691 Use XMISCANY.
29692 (die): Follow the GNU convention for error messages.
29693 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
29694 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
29695 tag any more.
29696 (set_buffer_internal_1):
29697 * frame.c (store_frame_param):
29698 * eval.c (specbind):
29699 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
29700
29701 * doc.c (Fsnarf_documentation): Simplify.
29702
29703 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
29704
29705 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
29706 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
29707
29708 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
29709
29710 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
29711
29712 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
29713
29714 * eval.c (do_autoload): Don't save autoloads.
29715
29716 * data.c (Ffset): Save autoload of the function being set.
29717
29718 2007-10-07 John Paul Wallington <jpw@pobox.com>
29719
29720 * xfns.c (x_create_tip_frame): Set the `display-type' frame
29721 parameter before setting up faces.
29722
29723 2007-10-13 Eli Zaretskii <eliz@gnu.org>
29724
29725 * ccl.c (Fregister_code_conversion_map):
29726 * keyboard.c (append_tool_bar_item): Reformat last change.
29727
29728 * lisp.h (eabs): Rename from `abs'. All callers changed.
29729
29730 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
29731
29732 * buffer.c (add_overlay_mod_hooklist):
29733 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
29734 * fontset.c (make_fontset):
29735 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
29736 (append_tool_bar_item):
29737 * macmenu.c (grow_menu_items):
29738 * w32menu.c (grow_menu_items):
29739 * xmenu.c (grow_menu_items): Use larger_vector.
29740
29741 2007-10-13 Eli Zaretskii <eliz@gnu.org>
29742
29743 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
29744 selected frame'' on MSDOS).
29745
29746 2007-10-12 Martin Rudalics <rudalics@gmx.at>
29747
29748 * frame.c (Qexplicit_name): New variable.
29749 (x_report_frame_params): Report it in parameter alist.
29750 (syms_of_frame): Intern and staticpro it.
29751
29752 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
29753
29754 * macfns.c (x_create_tip_frame): Set terminal for frame.
29755
29756 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
29757
29758 * frame.c (Qenvironment): Remove.
29759 (syms_of_frame) <Qenvironment>: Don't initialize.
29760 (Fdelete_frame): Don't treat the `environment' param specially.
29761 * frame.h (Qenvironment): Don't declare.
29762 * callproc.c (set_initial_environment): Don't set unused frame param.
29763
29764 * frame.c (Fframe_with_environment): Remove.
29765 (syms_of_frame) <Sframe_with_environment>: Don't declare.
29766
29767 * lisp.h (Fframe_with_environment): Don't declare.
29768
29769 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
29770
29771 * indent.c (indent_tabs_mode, last_known_column)
29772 (last_known_column_modified): Make static.
29773 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
29774
29775 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
29776
29777 * puresize.h (BASE_PURESIZE): Increase to 1170000.
29778
29779 2007-10-09 Jason Rumney <jasonr@gnu.org>
29780
29781 * w32term.c (x_set_window_size): Disable code that attempts to tell
29782 Lisp code about a size change before it actually happens.
29783
29784 2007-10-09 Richard Stallman <rms@gnu.org>
29785
29786 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
29787 return HANDLED_RETURN.
29788
29789 2007-10-08 Martin Rudalics <rudalics@gmx.at>
29790
29791 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
29792 when there's an unread command event.
29793
29794 * frame.c (focus_follows_mouse): Move here from frame.el to allow
29795 window autoselection act appropriately when leaving selected frame.
29796 (syms_of_frame): Initialize focus_follows_mouse.
29797 * frame.h (focus_follows_mouse): Extern it.
29798 * macterm.c (XTread_socket): When focus_follows_mouse is nil
29799 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
29800 * msdos.c (dos_rawgetc): Likewise.
29801 * w32term.c (w32_read_socket): Likewise.
29802 * xterm.c (handle_one_xevent): Likewise.
29803 * xdisp.c (syms_of_xdisp): In doc-string of
29804 mouse-autoselect-window mention focus-follows-mouse.
29805
29806 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29807
29808 * macterm.c (mac_load_query_font): Fix missing return value.
29809 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
29810 Add BLOCK_INPUT.
29811
29812 2007-10-08 Richard Stallman <rms@gnu.org>
29813
29814 * xdisp.c (get_window_cursor_type): Implement documented behavior
29815 for cursor-in-non-selected-windows = t.
29816
29817 2007-10-08 Jason Rumney <jasonr@gnu.org>
29818
29819 * w32.c (w32_get_resource): Always close registry keys.
29820
29821 2007-10-08 Jason Rumney <jasonr@gnu.org>
29822
29823 * makefile.w32-in (LIBS): Add COMCTL32.
29824
29825 * w32fns.c (globals_of_w32fns): Init common controls.
29826
29827 2007-10-08 Richard Stallman <rms@gnu.org>
29828
29829 * image.c (our_memory_buffer): Rename from omfib_buffer.
29830
29831 2007-10-08 Richard Stallman <rms@gnu.org>
29832
29833 * buffer.c (Foverlays_at): Doc fix.
29834
29835 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
29836
29837 * fns.c (Fplist_put): Preserve uneven tail data.
29838
29839 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
29840
29841 * termhooks.h (enum event_kind): Remove trailing comma.
29842
29843 * frame.h (enum): Remove trailing comma.
29844
29845 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
29846
29847 * w32proc.c (delete_child): Don't terminate threads of zombies.
29848
29849 2007-10-08 Martin Rudalics <rudalics@gmx.at>
29850
29851 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
29852
29853 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
29854 last-repeatable-command.
29855 (init_kboard): Initialize Vlast_repeatable_command.
29856 (command_loop_1): Set it to real_this_command unless that was
29857 bound to an input event.
29858 (mark_kboards): Mark it.
29859
29860 2007-10-08 Richard Stallman <rms@gnu.org>
29861
29862 * eval.c (condition-case): Doc fix.
29863
29864 2007-10-08 Masatake YAMATO <jet@gyve.org>
29865
29866 * xfaces.c (tty_supports_face_attributes_p): Fix code
29867 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
29868 was copied and not edited.
29869
29870 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
29871
29872 Add new `input-decode-map' keymap and use it for terminal
29873 escape sequences.
29874 * keyboard.h (struct kboard): Add Vinput_decode_map.
29875 Remove Vlocal_key_translation_map.
29876 * keyboard.c (read_key_sequence): Add support for input-decode-map.
29877 (init_kboard): Init input-decode-map.
29878 Replace local-key-translation-map back with key-translation-map.
29879 (syms_of_keyboard): Declare input-decode-map.
29880 Remove local-key-translation-map. Update docstrings.
29881 (mark_kboards): Mark Vinput_decode_map.
29882 Don't mark Vlocal_key_translation_map.
29883 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
29884 Replace local-key-translation-map back with key-translation-map.
29885 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
29886 Bind in input-decode-map rather than function-key-map.
29887
29888 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
29889 This was made redundant by the previous introduction of XSETPVECTYPE.
29890
29891 2007-10-09 Richard Stallman <rms@gnu.org>
29892
29893 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
29894
29895 2007-09-29 Richard Stallman <rms@gnu.org>
29896
29897 * eval.c (internal_condition_case_2, internal_condition_case_1)
29898 (internal_condition_case): Reenable abort if x_catching_errors ()
29899 to see if that really happens and why.
29900
29901 2007-10-06 Andreas Schwab <schwab@suse.de>
29902
29903 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
29904
29905 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
29906
29907 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
29908
29909 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
29910
29911 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
29912
29913 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
29914
29915 * window.h (struct window):
29916 * window.c (struct save_window_data, struct saved_window):
29917 * termhooks.h (struct terminal):
29918 * process.h (struct Lisp_Process):
29919 * frame.h (struct frame):
29920 * buffer.h (struct buffer):
29921 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
29922 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
29923 The size field of (pseudo)vectors is now unsigned.
29924 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
29925
29926 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
29927 Turn `count' into an integer.
29928
29929 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
29930 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
29931 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
29932 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
29933 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
29934
29935 * alloc.c (allocate_pseudovector): New fun.
29936 (ALLOCATE_PSEUDOVECTOR): New macro.
29937 (allocate_window, allocate_terminal, allocate_frame)
29938 (allocate_process): Use it.
29939 (mark_vectorlike): New function.
29940 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
29941 (mark_terminals): Use it.
29942 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
29943 (Fmake_byte_code): Use XSETPVECTYPE.
29944
29945 * frame.c (Fframe_parameters): Minor simplification.
29946
29947 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
29948
29949 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
29950
29951 * buffer.c (Fget_buffer_create, init_buffer_once):
29952 * lread.c (defsubr):
29953 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
29954
29955 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
29956 defined differently in the m/*.h files.
29957 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
29958 (XSETPVECTYPE): New macro.
29959 (XSETPSEUDOVECTOR): Use it.
29960
29961 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
29962 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
29963
29964 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
29965 * lread.c (defvar_per_buffer):
29966 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
29967
29968 * window.c (candidate_window_p): Only consider as visible frames that
29969 are on the same terminal.
29970
29971 * m/ibms390x.h (MARKBIT): Remove unused macro.
29972
29973 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
29974
29975 * lread.c (Fload): Fix typo in docstring.
29976
29977 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
29978
29979 * floatfns.c (Fexpt): Manually check for overflows, so that a power
29980 of a non-zero value can't yield zero.
29981
29982 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
29983
29984 * term.c (term_clear_mouse_face, term_mouse_highlight)
29985 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
29986
29987 * print.c (safe_debug_print): Use XHASH.
29988
29989 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
29990 Lisp elements such as tags.
29991 (XHASH): New macro.
29992 (EQ): Use it.
29993 (SREF, SSET, STRING_COPYIN): Use SDATA.
29994 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
29995
29996 * alloc.c (mark_terminal): Remove left-over declaration.
29997 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
29998 (allocate_vectorlike): Remove type argument. Adjust callers.
29999 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
30000 Only handle the one remaining MEM_TYPE_VECTORLIKE.
30001
30002 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
30003 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
30004 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
30005 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
30006 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
30007 Use them.
30008
30009 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
30010 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
30011 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
30012
30013 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
30014
30015 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
30016 loaded by default.
30017
30018 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
30019
30020 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
30021 on this tty.
30022 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
30023
30024 * term.c (mouse_face_window): Rename from Qmouse_face_window.
30025 Update all users.
30026 (handle_one_term_event): Use Gpm_DrawPointer.
30027 (Fgpm_mouse_start): Rename from Fterm_open_connection.
30028 Signal errors instead of returning nil. Always return nil.
30029 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
30030 Make it a noop if gpm-mouse was not activated.
30031 (syms_of_term): Update names.
30032
30033 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
30034
30035 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
30036 (init_sys_modes): Check that gpm_tty is the current tty.
30037
30038 * alloc.c (allocate_terminal): Set the vector size to only count the
30039 lisp fields. Initialize those to nil.
30040 (mark_object): Don't treat terminals specially.
30041 (mark_terminal): Remove.
30042 (mark_terminals): Use mark_object instead.
30043
30044 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
30045 the GC to the beginning.
30046
30047 * indent.h:
30048 * indent.c: Use EMACS_INT for ints coming from Elisp data.
30049
30050 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
30051
30052 2007-09-25 Jason Rumney <jasonr@gnu.org>
30053
30054 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
30055
30056 * w32console.c (create_w32cons_output): Remove.
30057
30058 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
30059
30060 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
30061 (reset_sys_modes): Use reset_terminal_modes_hook.
30062
30063 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
30064
30065 * eval.c (do_autoload): Don't output any message.
30066
30067 2007-09-24 Juri Linkov <juri@jurta.org>
30068
30069 * emacs.c (standard_args): Change priority of "--no-splash"
30070 from 40 to 3. Add "--no-desktop" with the same priority.
30071
30072 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
30073
30074 * alloc.c (gc_sweep): Check cons cell mark bits word by word
30075 and optimize the case where they are all 1.
30076
30077 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
30078
30079 * lisp.h (abs): Define if not defined.
30080 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
30081 Don't define `abs', since it's defined in lisp.h.
30082
30083 2007-09-22 Eli Zaretskii <eliz@gnu.org>
30084
30085 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
30086 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
30087 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
30088 (init_tty): Use DEV_TTY instead of "/dev/tty".
30089 [WINDOWSNT]: No need to protect from NAME arg being null.
30090
30091 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
30092
30093 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
30094 up the tty state.
30095
30096 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
30097
30098 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
30099 (gpm_tty): Change its type.
30100 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
30101 (gpm_tty): Change its type and initialize it.
30102 (Fterm_open_connection): Check the frame is indeed a tty.
30103 Use the new gpm_tty.
30104 (Fterm_close_connection): Use the new gpm_tty.
30105 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
30106 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
30107
30108 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
30109
30110 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
30111 underline_color, to draw strike-through.
30112
30113 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
30114
30115 * lisp.h (allocate_terminal): Declare.
30116
30117 * window.c (candidate_window_p): Consider frames that are being placed
30118 by the user as somewhere between visible and iconified.
30119 (window_loop): Prefer windows on the current frame.
30120 (Fselect_window): Move the use of select-frame to the beginning so we
30121 can just delegate all the work (it'll call us back anyway).
30122
30123 * frame.c (Qdisplay_environment_variable):
30124 * frame.h (Qdisplay_environment_variable): Delete.
30125
30126 * .gdbinit (xbacktrace): Print the arg's address rather than the value
30127 of the first arg, since that value may be a union.
30128
30129 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
30130 parameter rather than Qdisplay_environment_variable. If all else
30131 fails, look for DISPLAY in initial-environment.
30132
30133 2007-09-21 Glenn Morris <rgm@gnu.org>
30134
30135 * Makefile.in (emacstool): Remove target.
30136 (lisp, shortlisp): Remove termdev.elc.
30137
30138 2007-09-21 Markus Triska <markus.triska@gmx.at>
30139
30140 * xterm.c (x_delete_display): Compile session management conditionally.
30141
30142 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
30143
30144 * callproc.c (getenv_internal_1): New function.
30145 (getenv_internal): Use it.
30146 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
30147
30148 * terminal.c (get_terminal): Don't accept ints to represent terminals.
30149 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
30150 (Fset_terminal_parameter): Work with dead terminals as well.
30151 (Fmodify_terminal_parameters): Remove.
30152
30153 * terminal.c (get_terminal): Handle terminals.
30154 Make sure the terminal returned is live.
30155 (create_terminal): Use allocate_terminal.
30156 (mark_terminals): Move to alloc.c.
30157 (delete_terminal): Use terminal->name as liveness status.
30158 NULL out fields after freeing their contents.
30159 Don't deallocate the object.
30160 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
30161 rather than an int.
30162 (Fterminal_live_p): Accept non-integer arguments.
30163 (Fterminal_list): Return terminal objects rather than an ints.
30164
30165 * alloc.c (enum mem_type): New member for `terminal' objects.
30166 (allocate_terminal): New function.
30167 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
30168 Handle terminals.
30169 (mark_terminal): New fun.
30170 (mark_terminals): Move from terminal.c.
30171
30172 * term.c (get_tty_terminal): Don't treat output_initial specially.
30173 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
30174 (delete_tty): Use terminal->name as liveness status.
30175
30176 * termhooks.h (struct terminal): Make it into a pseudovector.
30177 Remove `deleted' replaced by checking `name's nullness.
30178
30179 * print.c (print_object): Handle terminals.
30180
30181 * lisp.h (enum pvec_type): New `terminal' pseudovector.
30182 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
30183
30184 * frame.c (make_terminal_frame):
30185 * keyboard.c (tty_read_avail_input):
30186 * w32term.c (x_delete_terminal):
30187 * xfns.c (Fx_create_frame, x_create_tip_frame):
30188 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
30189
30190 2007-09-20 Glenn Morris <rgm@gnu.org>
30191
30192 * process.c (Fmake_network_process): Doc fix.
30193
30194 2007-09-19 Jason Rumney <jasonr@gnu.org>
30195
30196 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
30197
30198 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
30199
30200 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
30201 Fix a C warning regarding variable constness.
30202
30203 * xterm.c (handle_one_xevent): Fix a C warning.
30204
30205 2007-09-18 Jason Rumney <jasonr@gnu.org>
30206
30207 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
30208
30209 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
30210
30211 * gtkutil.c (gdpy_def): New variable.
30212 (xg_initialize): Initialize gdpy_def.
30213 (xg_display_close): If no other display exists, set gdpy_def to a
30214 new connection.
30215
30216 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
30217
30218 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
30219 when we have no file name for the icon.
30220 (xg_tool_bar_expose_callback): Remove.
30221 (xg_create_tool_bar): Don't connect expose signal to
30222 xg_tool_bar_expose_callback.
30223 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
30224
30225 2007-09-16 Andreas Schwab <schwab@suse.de>
30226
30227 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
30228 values instead of zapping them.
30229
30230 2007-09-14 Glenn Morris <rgm@gnu.org>
30231
30232 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
30233 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
30234 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
30235 scope and rename to omfib_buffer for clarity.
30236 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
30237
30238 2007-09-14 Kenichi Handa <handa@m17n.org>
30239
30240 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
30241
30242 2007-09-13 Jason Rumney <jasonr@gnu.org>
30243
30244 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
30245
30246 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
30247
30248 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
30249 (mac_term_init): Call here instead, passing rif.
30250
30251 2007-09-13 Glenn Morris <rgm@gnu.org>
30252
30253 * s/hpux.h: No longer define `static' as nothing.
30254
30255 2007-09-13 Johan Bockgård <bojohan@gnu.org>
30256
30257 * callint.c (Fcall_interactively): Remove unused var `fun'.
30258
30259 2007-09-12 Romain Francoise <romain@orebokech.com>
30260
30261 * window.c (prefer_window_split_horizontally, display_buffer):
30262 Revert 2007-09-08 change.
30263
30264 2007-09-12 Glenn Morris <rgm@gnu.org>
30265
30266 * alloca.c: Remove file.
30267 * Makefile.in (alloca): Do not undef.
30268 (allocaobj, alloca.o): Remove.
30269 (otherobj): Remove allocaobj.
30270 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
30271 * regex.c (C_ALLOCA): Remove all references and code that was only
30272 used when this was defined.
30273 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
30274 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
30275 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
30276
30277 * Makefile.in (SOURCES, unlock, relock): Delete.
30278
30279 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
30280 (menu_grab_callback): All uses changed.
30281
30282 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
30283 (x_reply_selection_request): All uses changed.
30284
30285 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
30286
30287 * lread.c (load_warn_old_style_backquotes): Change message to look
30288 better when it appears in the middle of byte-compiler messages.
30289
30290 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
30291
30292 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
30293
30294 * xterm.c (x_create_terminal): Add comment.
30295
30296 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
30297
30298 2007-09-10 Richard Stallman <rms@gnu.org>
30299
30300 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
30301
30302 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
30303
30304 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
30305 (DEFUN): Document `intspec', use it instead of `prompt'.
30306
30307 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
30308
30309 * data.c (Finteractive_form): If the interactive specification starts
30310 with a `(', use it as a Lisp form.
30311
30312 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
30313 name and file modes.
30314
30315 * callint.c (Fcall_interactively): Comment fixes.
30316
30317 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
30318
30319 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
30320 and compiled functions.
30321
30322 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
30323
30324 * window.c (prefer_window_split_horizontally): New variable.
30325 (display_buffer): Consider splitting window horizontally depending
30326 on prefer_window_split_horizontally.
30327
30328 2007-09-08 Eli Zaretskii <eliz@gnu.org>
30329
30330 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
30331
30332 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
30333
30334 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
30335
30336 * frame.c (x_set_frame_parameters): Check number is positive before
30337 using XFASTINT.
30338
30339 * window.c (freeze_window_start): Don't presume selected_window holds
30340 a window object.
30341 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
30342
30343 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
30344
30345 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
30346
30347 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
30348
30349 * window.c (Vsplit_window_preferred_function): New var.
30350 (Fdisplay_buffer): Use it.
30351 (syms_of_window): Export, and initialize it.
30352
30353 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
30354
30355 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
30356
30357 2007-09-06 Glenn Morris <rgm@gnu.org>
30358
30359 * gtkutil.c (menu_grab_callback) <cnt>:
30360 * xselect.c (x_reply_selection_request) <cnt>: Move static
30361 variable to file scope.
30362
30363 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
30364
30365 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
30366 consistent values of selected_frame and selected_window.
30367
30368 2007-09-04 Jason Rumney <jasonr@gnu.org>
30369
30370 * w32console.c (initialize_w32_display): Zero unused hooks.
30371
30372 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
30373
30374 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
30375 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
30376
30377 2007-09-04 Jason Rumney <jasonr@gnu.org>
30378
30379 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
30380 in w32console.c. Set up input. Remove XXX comments that have been
30381 confirmed as correct.
30382
30383 * s/ms-w32.h (MULTI_KBOARD): Define.
30384
30385 * w32console.c (one_and_only_w32cons): Remove.
30386 (initialize_w32_display): Take terminal argument.
30387
30388 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
30389 initialize_w32_display.
30390 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
30391
30392 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
30393
30394 * keyboard.c (discard_mouse_events): Discard it.
30395 (make_lispy_event): Translate it to a lisp event.
30396 (lispy_wheel_names): Add wheel-left and right events.
30397 (syms_of_keyboard): Enlarge wheel_syms.
30398
30399 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
30400 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
30401
30402 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
30403
30404 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
30405 from WM_MOUSEHWHEEL.
30406 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
30407
30408 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
30409 terminal.
30410
30411 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
30412 keyboard for the terminal.
30413
30414 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
30415
30416 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
30417 (Vresume_tty_hook): Rename from Vresume_tty_functions.
30418 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
30419 and resume-tty-function to resume-tty-hook.
30420 (Fsuspend_tty, Fresume_tty): Use new names.
30421
30422 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
30423
30424 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
30425 if it starts with "n:".
30426
30427 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
30428
30429 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
30430
30431 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
30432
30433 * frame.h:
30434 * frame.c (Qterm_environment_variable): Remove.
30435 (syms_of_frame): Don't init and staticpro it.
30436
30437 * callproc.c (getenv_internal): Remove special case for $TERM.
30438
30439 * callproc.c (Vinitial_environment): New variable.
30440 (set_initial_environment): Initialize it.
30441 (syms_of_callproc): Declare it.
30442 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
30443 TERM under which a process runs is never related to the TERM in which
30444 Emacs is running.
30445
30446 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
30447
30448 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
30449 * s/darwin.h: ... do it here.
30450
30451 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
30452
30453 * lisp.h (set_initial_environment): Rename from set_global_environment.
30454
30455 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
30456 removed by mistake on the multi-tty branch.
30457
30458 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
30459 (Fmodify_frame_parameters): Return a value.
30460
30461 * image.c (png_load): Comment-out var only used in commented-out code.
30462
30463 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
30464 before passing it to mark_object.
30465
30466 * xfaces.c (internal_resolve_face_name): Return a value.
30467 (internal_resolve_face_name, resolve_face_name_error): Comment out.
30468
30469 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
30470 (x_icon): Comment-out var only used in commented-out code.
30471
30472 2007-08-29 Romain Francoise <romain@orebokech.com>
30473
30474 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
30475 QUIT hasn't been provided.
30476
30477 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
30478
30479 * callproc.c (child_setup, getenv_internal): Use the
30480 display-environment-variable and term-environment-variable frame params.
30481 (set_initial_environment): Initialise Vprocess_environment.
30482
30483 * config.in: Disable multi-keyboard support on a mac.
30484
30485 * frame.c (Qterm_environment_variable)
30486 (Qdisplay_environment_variable): New variables.
30487 (syms_of_frame): Intern and staticpro them.
30488 (Fmake_terminal_frame): Disable output method test.
30489
30490 * frame.h: Declare them here.
30491
30492 * macfns.c (x_set_mouse_color): Get rif from the frame.
30493 (x_set_tool_bar_lines): Don't use updating_frame.
30494 (mac_window): Add 2 new parameters for consistency with other systems.
30495 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
30496 frame parameters following what is done in X11 and w32. Don't use
30497 FRAME_MAC_DISPLAY_INFO.
30498 (Fx_open_connection, start_hourglass): Remove window-system check.
30499 (x_create_tip_frame): Get the keyboard from the terminal.
30500
30501 * macmenu.c: Reorder includes.
30502 (Fx_popup_menu): Use terminal specific mouse_position_hook.
30503
30504 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
30505 terminal parameter.
30506 (x_clear_frame): Add a frame parameter.
30507 (note_mouse_movement): Get rif from the frame.
30508 (mac_term_init): Initialize the terminal.
30509 (mac_initialize): Make static and move terminal initialization ...
30510 (mac_create_terminal): ... to this new function.
30511
30512 * macterm.h (struct mac_display_info): Add terminal.
30513 (mac_initialize): Delete declaration.
30514
30515 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
30516
30517 * sysdep.c: Comment out text after #endif.
30518
30519 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
30520 is defined. Better initialize ttys in windows. Use terminal
30521 specific mouse_position_hook.
30522
30523 * termhooks.h (union display_info): Add mac_display_info.
30524
30525 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
30526 Set the default minibuffer frame, window_system and the rest of the
30527 frame parameters following what is done in X11.
30528
30529 * w32term.c (w32_initialize): Make static.
30530
30531 * xselect.c (x_handle_selection_clear): Only access
30532 terminal->kboard when MULTI_KBOARD is defined.
30533
30534 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
30535 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
30536
30537 2007-08-29 Jason Rumney <jasonr@gnu.org>
30538
30539 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
30540 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
30541
30542 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
30543 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
30544
30545 * keyboard.c (restore_kboard_configuration): Only define when
30546 MULTI_KBOARD defined.
30547
30548 * makefile.w32-in: Update dependancies from Makefile.in.
30549 (OBJ1): Add terminal.$(O)
30550
30551 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
30552 Don't define function body.
30553 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
30554
30555 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
30556
30557 * w32.c (request_sigio, unrequest_sigio): Remove.
30558
30559 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
30560 (w32con_clear_frame, w32con_clear_end_of_line)
30561 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
30562 (w32con_delete_glyphs, w32con_set_terminal_window)
30563 (scroll_line, w32_sys_ring_bell): Add frame arg.
30564 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
30565 Add terminal arg.
30566 (PICK_FRAME): Remove.
30567 (w32con_write_glyphs): Use frame specific terminal coding.
30568 (one_and_only_w32cons): New global variable.
30569 (initialize_w32_display): Use it for storing hooks.
30570 (create_w32cons_output): New function.
30571
30572 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
30573 arg a frame.
30574
30575 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
30576 Set window_system.
30577 (x_set_tool_bar_lines): Don't use updating_frame.
30578 (Fx_create_frame): Set terminal and ref count.
30579 (Fx_open_connection): Remove window-system check.
30580
30581 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
30582
30583 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
30584 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
30585 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
30586 Add frame arg.
30587 (x_delete_terminal, w32_create_terminal): New functions.
30588 (w32_term_init): Create a terminal.
30589 (w32_initialize): Move terminal specific initialization to
30590 w32_create_terminal.
30591
30592 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
30593 (w32_clear_rect, w32_clear_area): Use background from frame.
30594 (w32_display_info): Add terminal.
30595 (w32_sys_ring_bell, x_delete_display): Declare here.
30596
30597 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
30598
30599 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
30600
30601 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
30602
30603 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
30604 Fix get_named_tty calls for the controlling tty.
30605
30606 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
30607
30608 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
30609
30610 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
30611
30612 * term.c (tty_insert_glyphs): Add missing first parameter.
30613
30614 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
30615
30616 * buffer.c (Fbuffer_list, Fbury_buffer):
30617 Take frame->buried_buffer_list into account.
30618
30619 * cm.c (current_tty): New variable, for cmputc().
30620 (cmputc): Use it.
30621 (cmcheckmagic): Add tty parameter, look up terminal streams there.
30622 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
30623 (cmgoto): Add tty parameter. Pass it on to calccost().
30624 Use emacs_tputs() instead of tputs().
30625
30626 * cm.h (emacs_tputs): New macro to set current_tty, and then call
30627 tputs().
30628 (current_tty): New variable, for cmputc().
30629 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
30630
30631 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
30632 (internal_condition_case, internal_condition_case_1)
30633 (internal_condition_case_2): Don't abort when x_catching_errors.
30634
30635 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
30636 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
30637 prevent crashes caused by bogus longjmps in read_char.
30638
30639 * keymap.h (Fset_keymap_parent): Add EXFUN.
30640
30641 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
30642 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
30643 Remove redundant definition.
30644
30645 * macfns.c (x_set_mouse_color, x_make_gc):
30646 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30647
30648 * w32term.c (x_free_frame_resources):
30649 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30650 (w32_initialize): Use the accessor macros for terminal characteristics.
30651
30652 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
30653 Use the accessor macros for terminal characteristics.
30654 * msdos.c (internal_terminal_init): Use the accessor macros for
30655 terminal characteristics.
30656 (ScreenVisualBell, internal_terminal_init):
30657 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30658
30659 * termopts.h (no_redraw_on_reenter): Declare.
30660
30661 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
30662 (mark_terminals, mark_ttys): Declare.
30663 (Fgarbage_collect): Call them.
30664 (mark_object): Mark buried_buffer_list.
30665
30666 * prefix-args.c: Include stdlib.h for exit.
30667
30668 * syssignal.h: Add comment.
30669
30670 * indent.c: Include stdio.h.
30671
30672 * window.h (Vinitial_window_system): Declare.
30673 (Vwindow_system): Delete declaration.
30674
30675 * fontset.c (Finternal_char_font): Use FRAME_RIF.
30676
30677 * image.c (lookup_image): Don't initialize `c' until the xasserts
30678 have been run.
30679
30680 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
30681 FRAME_FOREGROUND_PIXEL.
30682
30683 * print.c (print_preprocess): Don't lose print_depth levels while
30684 iterating.
30685
30686 * widget.c (update_from_various_frame_slots):
30687 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30688
30689 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
30690 frames.
30691 (window_internal_height): Remove bogus make_number call.
30692 (init_window_once): Call make_terminal_frame with two zero parameters.
30693
30694 * fileio.c (Fread_file_name): Update comment.
30695
30696 * callint.c (Fcall_interactively):
30697 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
30698 Make sure it is correctly unwound.
30699
30700 * xsmfns.c (x_session_close): New function.
30701
30702 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
30703 Delete declarations.
30704
30705 * xterm.h: Remove declaration for x_fully_uncatch_errors.
30706 (x_output): Remove background_pixel and foreground_pixel fields.
30707 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
30708 (x_delete_device, x_session_close): Declare.
30709
30710 * lread.c: Include setjmp.h. Update declaration of `read_char'.
30711 (read_filtered_event): Call `read_char' with a local
30712 `wrong_kboard_jmpbuf'.
30713
30714 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
30715 Don't call single_kboard_state. Use FRAME_RIF.
30716
30717 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
30718 systems.
30719
30720 * lisp.h (set_process_environment): Rename to `set_global_environment'.
30721 (Fframe_with_environment, Fset_input_meta_mode)
30722 (Fset_quit_char): EXFUN.
30723 (x_create_device, tty_output, terminal, tty_display_info): Declare.
30724 (init_sys_modes, reset_sys_modes): Update prototypes.
30725 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
30726
30727 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
30728 Vlocal_key_translation_map, and Vkeyboard_translate_table.
30729 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
30730 Delete declarations.
30731 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
30732 (temporarily_switch_to_single_kboard, tty_read_avail_input):
30733 New declarations.
30734
30735 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
30736 already does that during init_display(). Call syms_of_keymap
30737 before syms_of_keyboard. Call `syms_of_terminal'.
30738 Call set_initial_environment, not set_process_environment.
30739 (shut_down_emacs): Call reset_all_sys_modes() instead of
30740 reset_sys_modes().
30741
30742 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
30743 (internal_resolve_face_name, resolve_face_name_error): New functions.
30744 (resolve_face_name): Protect against loops and errors thrown by Fget.
30745 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
30746 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
30747
30748 * scroll.c: Replace CURTTY() with local variables throughout the
30749 file (where applicable).
30750 (calculate_scrolling, calculate_direct_scrolling)
30751 (scrolling_1, scroll_cost): Use the accessor macros for terminal
30752 characteristics.
30753
30754 * keymap.c (Vfunction_key_map): Remove.
30755 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
30756 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
30757 (Vkey_translation_map): Remove.
30758 (syms_of_keymap): Remove DEFVAR for key-translation-map.
30759 (Fdescribe_buffer_bindings)
30760 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
30761 Update for terminal-local key-translation-map.
30762
30763 * Makefile.in (callproc.o): Update dependencies.
30764 (lisp, shortlisp): Add termdev.elc.
30765 (obj): Add terminal.o.
30766 (terminal.o): Add dependencies.
30767 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
30768 (data.o, fns.o): Add termhooks.h dependency.
30769 (SOME_MACHINE_LISP): Add dnd.elc.
30770 (minibuf.o): Fix typo.
30771 Update dependencies.
30772
30773 * data.c (do_symval_forwarding, store_symval_forwarding)
30774 (find_symbol_value): Use the selected frame's keyboard, not
30775 current_kboard.
30776
30777 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
30778 Vwindow_system.
30779
30780 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
30781 Fmenu_bar_open.
30782 (syms_of_xmenu): Update defsubr.
30783 (mouse_position_for_popup, Fx_popup_menu)
30784 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
30785 (set_frame_menubar, free_frame_menubar)
30786 (create_and_show_popup_menu, xmenu_show)
30787 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
30788 an X frame.
30789
30790 * xselect.c (x_own_selection): Abort if not an X frame.
30791 (some_frame_on_display): Check if it is an X frame.
30792 (x_handle_selection_clear): Deal with MULTI_KBOARD.
30793
30794 * coding.c: Include frame.h and termhooks.h.
30795 (terminal_coding, keyboard_coding): Delete.
30796 (Fset_terminal_coding_system_internal)
30797 (Fset_keyboard_coding_system_internal)
30798 (Fkeyboard_coding_system)
30799 (Fterminal_coding_system): Add a terminal parameter.
30800 Get terminal_coding from the terminal.
30801 (init_coding_once): Don't call setup_coding_system here.
30802
30803 * dispextern.h (set_scroll_region, turn_off_insert)
30804 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
30805 (tty_clear_end_of_line, tty_setup_colors)
30806 (delete_tty, updating_frame)
30807 (produce_special_glyphs, produce_glyphs, write_glyphs)
30808 (insert_glyphs): Remove.
30809 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
30810 (tty_turn_off_highlight, get_tty_size): Add declaration.
30811 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
30812
30813 * frame.h (enum output_method): Add output_initial.
30814 (struct x_output): Delete.
30815 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
30816 Access foreground_pixel and background_pixel directly from the frame.
30817 (tty_display): Delete.
30818 (struct frame): Add buried_buffer_list, foreground_pixel,
30819 background_pixel and terminal. Delete kboard.
30820 (union output_data): Add tty.
30821 (FRAME_KBOARD): Get the kboard from the terminal.
30822 (FRAME_INITIAL_P): New macro.
30823 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
30824 (Qterm_environment_variable, Qdisplay_environment_variable)
30825 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
30826 New declarations.
30827
30828 * termchar.h (tty_output, tty_display_info): New structures.
30829 (tty_list): Declare.
30830 (FRAME_TTY, CURTTY): New macros.
30831 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
30832 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
30833 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
30834 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
30835
30836 * callproc.c: Include frame.h and termhooks.h, for terminal
30837 parameters.
30838 (add_env): New function.
30839 (child_setup): Use it.
30840 (child_setup, getenv_internal): Handle the new Vprocess_environment.
30841 (getenv_internal): Fix get_terminal_param call.
30842 (Fgetenv_internal, egetenv): Update doc.
30843 (syms_of_callproc): Initialize Vprocess_environment to nil.
30844 Register and initialize them. Remove obsolete defvars. Update doc
30845 strings.
30846 (child_setup): Handle Vlocal_environment_variables.
30847 (getenv_internal): Add terminal parameter.
30848 Handle Vlocal_environment_variables.
30849 (Fgetenv_internal): Add terminal parameter.
30850 (child_setup, getenv_internal, Fgetenv_internal): Store the local
30851 environment in a frame (not terminal) parameter. Update doc strings.
30852 (set_initial_environment): Rename from set_global_environment.
30853 Store Emacs environment in initial frame parameter.
30854
30855 * xdisp.c (redisplay_internal): Update references to
30856 `previous_terminal_frame'.
30857 (display_mode_line, Fformat_mode_line): Replace calls to
30858 `push_frame_kboard' with `push_kboard'.
30859 (get_glyph_string_clip_rects): Add extra parentheses and
30860 braces to prevent compiler warnings.
30861 (calc_pixel_width_or_height): Add xassert to check that the
30862 frame is alive. Don't call `lookup_image' on a termcap frame.
30863 (message2_nolog, message3_nolog, redisplay_internal)
30864 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
30865 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
30866 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
30867 (Fx_display_pixel_width, Fx_display_pixel_height)
30868 (Fx_display_planes, Fx_display_color_cells)
30869 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
30870 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
30871 (Fx_display_backing_store, Fx_display_visual_class)
30872 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
30873 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
30874
30875 * xfns.c (x_set_foreground_color x_set_background_color)
30876 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
30877 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30878 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
30879 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
30880 terminal that is being deleted.
30881 (Fx_create_frame): Use `store_frame_param' to set `window-system'
30882 frame parameter, and make sure it overrides any user-supplied setting.
30883 (Fx_close_connection, Fx_synchronize): Unify argument names with
30884 the rest of the DEFUNs.
30885
30886 * dispnew.c (Fsend_string_to_terminal): Update call to
30887 `get_tty_terminal'.
30888 (Fredraw_frame, Fsend_string_to_terminal)
30889 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
30890 FRAME_TERMCAP_P and FRAME_TTY.
30891 (window_change_signal): Don't believe width/height values that are
30892 impossibly small.
30893 (Vinitial_window_system): Rename from Vwindow_system.
30894 (termscript, Wcm, rif): Delete.
30895
30896 * termhooks.h (struct terminal): New struct containing the
30897 previously global text display hooks and new members NAME,
30898 DELETED and PARAM_ALIST.
30899 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
30900 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
30901 (FRAME_RIF): New macros.
30902 (get_terminal_param, get_device): New declarations.
30903 (termscript): Delete declaration.
30904
30905 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
30906 (XTflash, x_free_frame_resources, x_scroll_bar_create)
30907 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
30908 FRAME_FOREGROUND_PIXEL.
30909 (x_fully_uncatch_errors): Disable definition.
30910 (x_scroll_bar_expose): Fix reference to foreground pixel.
30911 (XTread_socket): Disable loop on all X displays.
30912 (x_delete_terminal): Don't set terminal->deleted and let
30913 delete_terminal delete the frames on the terminal.
30914 (x_delete_display): Doc update to reflect changes in
30915 delete_terminal.
30916 (x_display_info) <terminal>: Move member earlier in the struct.
30917 (deleting_tty): Remove old variable.
30918 (Fsuspend_tty): Call clear_tty_hooks.
30919 (Fresume_tty, init_tty): Call set_tty_hooks.
30920 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
30921 errors on X frames.
30922 (x_catch_errors_unwind): Abort if x_error_message is NULL.
30923 (handle_one_xevent): Initialize `f' to NULL.
30924 (x_delete_terminal, x_create_terminal): New functions.
30925 (XTset_terminal_modes, XTreset_terminal_modes)
30926 (XTread_socket, x_connection_closed, x_term_init)
30927 (x_term_init, x_delete_display): Add terminal parameter.
30928 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
30929 X connections.
30930
30931 * frame.c: Include termchar.h.
30932 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
30933 (Qwindow_system, Qenvironment, Qterm_environment_variable)
30934 (Qdisplay_environment_variable): New vars.
30935 (Fframep): Deal with output_initial.
30936 (Fframe-live-p): Doc fix.
30937 (Fwindow-system): New function.
30938 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
30939 (make_terminal_frame): Don't create frames on a terminal that is
30940 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30941 (store_frame_param): Check for found_for_frame before calling XFRAME.
30942 (Fmake_terminal_frame): Handle NULL tty names correctly.
30943 (syms_of_frame): Enhance doc string of `default-frame-alist'.
30944 (Fdelete_frame): Remove unused variable `count'. Don't allow other
30945 frames to refer to a deleted frame in their 'environment parameter.
30946 (Fframe_with_environment): New function.
30947 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
30948 (get_future_frame_param): New function.
30949 (Fmake_terminal_frame): Use it.
30950 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
30951
30952 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
30953 * sysdep.c (reset_sys_modes): Update for renames.
30954
30955 * keyboard.c (tty_read_avail_input): New function.
30956 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
30957 (syms_of_keyboard): Defsubr them.
30958 (Fset_input_meta_mode, Fset_quit_char): New functions.
30959 (Fset_input_mode): Split to above functions.
30960 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
30961 parameter. Use it in call to `read_char'.
30962 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
30963 Set wrong_kboard_jmpbuf correctly in recursive calls.
30964 Use current_kboard to access Vkeyboard_translate_table.
30965 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
30966 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
30967 Update longjmp invocations. Remember the original current_kboard,
30968 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
30969 changes it. Comment out unnecessary calls to
30970 `record_single_kboard_state' and `any_kboard_state'.
30971 Update recursive calls.
30972 (wrong_kboard_jmpbuf): Remove global variable.
30973 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
30974 Handle deleted interrupted_kboards correctly; that is a legal
30975 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
30976 and read_char calls. Abort if interrupted_kboard died in read_char.
30977 (any_kboard_state, single_kboard_state)
30978 (push_frame_kboard): Remove function.
30979 (pop_kboard): Switch out of single_kboard mode if the kboard has
30980 been deleted. Remove unused variable. Help debugging by not
30981 changing current_kboard unnecessarily. Set current_kboard to the
30982 kboard of the selected frame when the stored kboard object has
30983 been deleted before pop_kboard.
30984 (temporarily_switch_to_single_kboard): Change first parameter to a
30985 frame pointer. Throw an error when caller wants to change kboards
30986 while in single_kboard mode. Don't push_kboard if we weren't in
30987 single kboard state. Don't pop_kboard if we popped into any
30988 kboard state.
30989 (restore_kboard_configuration): Abort if pop_kboard changed the
30990 kboard in single_kboard mode. Call pop_kboard only after setting
30991 up single_kboard mode.
30992 (Frecursive_edit): Switch to single_kboard mode only in nested
30993 command loops.
30994 (cmd_error, command_loop, command_loop_1, timer_check):
30995 Comment out unnecessary call to `any_kboard_state' and
30996 `record_single_kboard_state'.
30997 (delete_kboard): Exit single_kboard mode if we have just deleted
30998 that kboard. Use FRAME_KBOARD.
30999 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
31000 `fatal_error_signal'.
31001 (record_single_kboard_state): Don't push_kboard if we weren't in
31002 single kboard state. Don't pop_kboard if we popped into any
31003 kboard state.
31004 (push_frame_kboard): Rename to push_kboard.
31005 (kbd_buffer_get_event): Use FRAME_TERMINAL.
31006 (read_avail_input): Read input from all terminals.
31007 (mark_kboards): Also mark Vkeyboard_translate_table.
31008 (kbd_buffer_store_event_hold): Simplify condition.
31009 (read_key_sequence): Reinitialize fkey and keytran at each replay.
31010 (Vkeyboard_translate_table): Move to struct kboard.
31011 (init_kboard): Initialize Vkeyboard_translate_table.
31012 (syms_of_keyboard): Use DEFVAR_KBOARD to define
31013 Vkeyboard_translate_table. Update doc strings. Update docs of
31014 local-function-key-map and function-key-map.
31015
31016 * terminal.c: New file.
31017
31018 * term.c: Include errno.h.
31019 (Vring_bell_function, device_list, initial_device)
31020 (next_device_id, ring_bell, update_begin, update_end)
31021 (set_terminal_window, cursor_to, raw_cursor_to)
31022 (clear_to_end, clear_frame, clear_end_of_line)
31023 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
31024 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
31025 (syms_of_term): Move their initialization to terminal.c.
31026 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
31027 (Ftty_display_color_cells)
31028 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
31029 (clear_tty_hooks, set_tty_hooks)
31030 (init_tty, maybe_fatal): New functions.
31031 (Ftty_type): Return nil if terminal is not on a tty instead of
31032 throwing an error. Doc update.
31033 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
31034 Doc update. Initialize new subrs and variables.
31035 (delete_tty): Use terminal->deleted.
31036 (tty_set_terminal_modes): Rename from set_terminal_modes.
31037 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
31038 (set_scroll_region): Rename to `tty_set_scroll_region'.
31039 (turn_on_insert): Rename to `tty_turn_on_insert'.
31040 (turn_off_insert): Rename to `tty_turn_off_insert'.
31041 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
31042 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
31043 (toggle_highligh): Rename to `tty_toggle_highlight'.
31044 (background_highlight): Rename to `tty_background_highlight'.
31045 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
31046 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
31047 (tty_set_scroll_region, tty_background_highlight)
31048 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
31049 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
31050 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
31051 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
31052 Add static modifier.
31053 (tty_reset_terminal_modes, tty_set_terminal_window)
31054 (tty_set_scroll_region, tty_background_highlight)
31055 (tty_highlight_if_desired, tty_cursor_to)
31056 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
31057 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
31058 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
31059 renames.
31060
31061 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
31062
31063 * keyboard.c: Qrtl is new.
31064 (parse_tool_bar_item): Handle :rtl keyword.
31065 (syms_of_keyboard): Intern :rtl keyword.
31066
31067 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
31068
31069 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
31070 so no Lisp code is executed.
31071 (file_for_image, find_rtl_image): New functions.
31072 (xg_get_image_for_pixmap): Use file_for_image.
31073 (update_frame_tool_bar): If direction is RTL, use RTL image if
31074 defined. Use Gtk stock images if defined.
31075
31076 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31077
31078 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
31079 for nonexistent or zero-width glyph in composition glyph.
31080
31081 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
31082
31083 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
31084
31085 * xdisp.c (Finvisible_p): New function.
31086 (syms_of_xdisp): defsubr it.
31087
31088 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
31089
31090 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
31091 Doc fixes.
31092
31093 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31094
31095 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
31096
31097 2007-08-24 Martin Rudalics <rudalics@gmx.at>
31098
31099 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
31100 whether decoding has modified buffer contents.
31101
31102 2007-08-24 Jason Rumney <jasonr@gnu.org>
31103
31104 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
31105 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
31106 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
31107 (init_svg_functions) [HAVE_NTGUI]: New function.
31108 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
31109 (svg_load_image): Use them.
31110 (svg_load_image) [HAVE_NTGUI]: Implement background.
31111
31112 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31113
31114 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
31115 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
31116 (LIBX): Remove @RSVG_LIBS@.
31117 (LIBES): Add $(RSVG_LIBS).
31118
31119 * image.c (svg_load_image): Blend with specified background if exists.
31120 Use IMAGE_BACKGROUND. Add Mac OS Support.
31121
31122 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
31123 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
31124 Remove macros.
31125 [MAC_OSX] (socket_callback): Do nothing.
31126 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
31127 ReceiveNextEvent.
31128 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
31129 socket_callback.
31130 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
31131
31132 2007-08-22 Glenn Morris <rgm@gnu.org>
31133
31134 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
31135
31136 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
31137
31138 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
31139
31140 * image.c: Add support for SVG images. Some additional comments
31141 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
31142 (svg_image_p): New function to test for SVG image.
31143 (svg_load): New function to load SVG image.
31144 (svg_load_image): New function, helper for svg_load.
31145 (Qsvg): New Lisp_object.
31146 (svg_keyword_index): New enum.
31147 (svg_format): New static `image_keyword' struct.
31148 (svg_type): New static `image_type' struct.
31149 (librsvg/rsvg.h): Include it.
31150
31151 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
31152
31153 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
31154
31155 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
31156
31157 * lread.c (Qold_style_backquotes): New var.
31158 (syms_of_lread): Init and staticpro it.
31159 (load_warn_old_style_backquotes): New fun.
31160 (Fload): Use them to warn about old style backquotes.
31161 (end_of_file_error, Fload): Remove unused vars.
31162
31163 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
31164
31165 * lread.c (Vold_style_backquotes): New var.
31166 (syms_of_lread): Init and export it to Elisp.
31167 (read1): Set it when we find an old-style (back)quote.
31168
31169 2007-08-22 Jason Rumney <jasonr@gnu.org>
31170
31171 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
31172
31173 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
31174
31175 * puresize.h (BASE_PURESIZE): Increase to 1140000.
31176
31177 2007-08-19 Richard Stallman <rms@gnu.org>
31178
31179 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
31180
31181 2007-08-19 Andreas Schwab <schwab@suse.de>
31182
31183 * alloc.c (pure): Round PURESIZE up.
31184
31185 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
31186
31187 * xterm.c (handle_one_xevent): Remove check that mouse click is in
31188 active frame.
31189
31190 2007-08-16 Richard Stallman <rms@gnu.org>
31191
31192 * eval.c (Fcommandp): Add parens to clarify.
31193
31194 * minibuf.c (Fall_completions): Use enum for type of table.
31195
31196 * emacs.c (USAGE2): Improve text.
31197
31198 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
31199
31200 * term.c (tty_default_color_capabilities): Declare static
31201 variables in file scope, to avoid HPUX compiler problem.
31202
31203 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
31204
31205 * gtkutil.c (update_frame_tool_bar): Use -1 as index
31206 to gtk_toolbar_insert.
31207
31208 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
31209
31210 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
31211
31212 * insdel.c (reset_var_on_error): New fun.
31213 (signal_before_change, signal_after_change):
31214 Use it to reset (after|before)-change-functions to nil in case of error.
31215 Bind inhibit-modification-hooks to t.
31216 Don't bind (after|before)-change-functions to nil while they run.
31217
31218 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31219
31220 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
31221 filling pixmap with stippled background.
31222
31223 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31224
31225 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
31226 Don't use invisible frame as parent window for repositioning.
31227
31228 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
31229
31230 * print.c (new_backquote_output): Rename from old_backquote_output.
31231 (print): Inverse its logic (according to its name) so as to match the
31232 behavior of new_backquote_flag in lread.c.
31233
31234 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31235
31236 * gmalloc.c (posix_memalign): New function.
31237
31238 * macterm.c (frame_highlight, frame_unhighlight): Don't call
31239 ActivateControl/DeactivateControl here.
31240 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
31241 frame-notice-user-settings is non-nil.
31242 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
31243 for kEventParamFMFontStyle.
31244 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
31245 mac_pass_command_to_system and mac_pass_control_to_system here.
31246 (XTread_socket): Call ActivateControl/DeactivateControl here.
31247 (XTread_socket) [TARGET_API_MAC_CARBON]:
31248 Check mac_pass_command_to_system and mac_pass_control_to_system here.
31249 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
31250 for window repositioning.
31251
31252 2007-08-08 Glenn Morris <rgm@gnu.org>
31253
31254 * Replace `iff' in doc-strings and comments.
31255
31256 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
31257
31258 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
31259
31260 2007-08-07 Martin Rudalics <rudalics@gmx.at>
31261
31262 * fileio.c (Finsert_file_contents): Run format-decode and
31263 after_insert_file_functions on entire buffer when REPLACE is
31264 non-nil and inhibit modification_hooks and point_motion_hooks.
31265 For consistency, run after_insert_file_functions iff something
31266 got inserted. Move signal_after_change and update_compositions
31267 after code running after_insert_file_functions. Make sure that
31268 undo_list doesn't record intermediate steps of the decoding process.
31269
31270 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31271
31272 * emacs.c (main)
31273 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
31274 Call malloc_enable_thread on interactive startup.
31275
31276 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
31277 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
31278 [USE_PTHREAD]: Conditionalize with it.
31279 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
31280 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
31281 New functions.
31282
31283 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
31284
31285 * xdisp.c (redisplay_window): When restoring original buffer
31286 position, make sure it is still valid.
31287
31288 * image.c (png_load): Ignore png-supplied background color.
31289
31290 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31291
31292 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
31293 Use kCFAbsoluteTimeIntervalSince1970.
31294
31295 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
31296 New variable.
31297 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
31298 event loop should be quit.
31299 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
31300 Quit dialog event loop if quit_dialog_event_loop is set.
31301
31302 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
31303 (Selection): New typedef. Use instead of ScrapRef.
31304 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
31305 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
31306 (mac_clear_selection): Rename from clear_scrap.
31307 (get_flavor_type_from_symbol): New argument SEL and subsume function of
31308 scrap_has_target_type. All uses changed.
31309 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
31310 (mac_selection_has_target_p): New functions.
31311 (mac_put_selection_value): Rename from put_scrap_string.
31312 (mac_get_selection_value): Rename from get_scrap_string.
31313 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
31314 (put_scrap_private_timestamp, scrap_has_target_type)
31315 (get_scrap_private_timestamp): Remove functions.
31316 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
31317 (x_own_selection, x_get_local_selection):
31318 Use mac_valid_selection_value_p.
31319 (x_own_selection): Don't use put_scrap_private_timestamp.
31320 Record OWNERSHIP-INFO into Vselection_alist instead.
31321 (x_get_local_selection): Don't check type if request is local.
31322 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
31323 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
31324
31325 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
31326
31327 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
31328 add comment explaining why.
31329
31330 2007-08-03 Richard Stallman <rms@gnu.org>
31331
31332 * fileio.c (Fvisited_file_modtime): Use make_time.
31333
31334 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
31335
31336 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
31337 build.
31338
31339 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
31340
31341 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
31342
31343 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
31344
31345 * puresize.h (BASE_PURESIZE): Increase to 1130000.
31346
31347 2007-07-30 Richard Stallman <rms@gnu.org>
31348
31349 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
31350
31351 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
31352
31353 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
31354
31355 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
31356
31357 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
31358 remote default-directory.
31359
31360 * buffer.c (mode-line-format): Update doc string.
31361
31362 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31363
31364 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
31365 scroll bar gap.
31366 (x_scroll_bar_create): Set bar->fringe_extended_p.
31367 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
31368 on frame edge. Check fringe background extension. Don't clear
31369 extended fringe background area.
31370
31371 * w32term.h (struct scroll_bar): New member fringe_extended_p.
31372 (w32_fill_area): Enclose multiple statements with do ... while (0).
31373
31374 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
31375 Extend fringe background to scroll bar gap.
31376 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
31377 Set bar->fringe_extended_p.
31378 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
31379 Put leftmost/rightmost scroll bars on frame edge. Check fringe
31380 background extension. Don't clear extended fringe background area.
31381
31382 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
31383 New member fringe_extended_p.
31384
31385 2007-07-25 Glenn Morris <rgm@gnu.org>
31386
31387 * Relicense all FSF files to GPLv3 or later.
31388
31389 * COPYING: Switch to GPLv3.
31390
31391 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
31392
31393 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
31394
31395 * data.c (Finteractive_form): Check for the presence of an
31396 `interactive-form' symbol property more thoroughly.
31397
31398 * data.c (Finteractive_form): Use an `interactive-form' property if
31399 present, analogous to the function-documentation property.
31400
31401 2007-07-24 Jason Rumney <jasonr@gnu.org>
31402
31403 * w32fns.c (x_real_positions): Get real position from OS instead of
31404 calculating it.
31405
31406 2007-07-23 Jason Rumney <jasonr@gnu.org>
31407
31408 * filelock.c (current_lock_owner): Allow for @ sign in username.
31409
31410 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
31411
31412 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
31413 remote default-directory.
31414
31415 * buffer.c (mode-line-format): Describe above case in doc string.
31416
31417 2007-07-20 Eli Zaretskii <eliz@gnu.org>
31418
31419 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
31420 Define if not defined.
31421
31422 2007-07-18 Jason Rumney <jasonr@gnu.org>
31423
31424 * w32proc.c (w32_executable_type): Handle 64 bit executables.
31425
31426 2007-07-18 Richard Stallman <rms@gnu.org>
31427
31428 * data.c (Fsetq_default): Doc fix.
31429
31430 * eval.c (Fsetq): Doc fix.
31431
31432 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
31433
31434 * coding.c (Ffind_operation_coding_system):
31435 * eval.c (For, Fand): Doc fixes.
31436 Reported by Johan Bockgård.
31437
31438 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
31439
31440 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
31441
31442 * xterm.h: Declare x_ewmh_activate_frame.
31443
31444 * xterm.c (x_ewmh_activate_frame): New function.
31445 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
31446
31447 2007-07-17 Martin Rudalics <rudalics@gmx.at>
31448
31449 * window.c (Fdisplay_buffer): If largest or LRU window is the
31450 only window, split it even if it is not eligible for splitting.
31451 This restores the original behavior broken by the 2007-07-15
31452 change.
31453
31454 2007-07-17 Glenn Morris <rgm@gnu.org>
31455
31456 * abbrev.c (abbrev_check_chars): New function.
31457 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
31458 Call abbrev_check_chars to check abbrev characters are word
31459 constituents. Doc fix.
31460
31461 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
31462
31463 * process.c (Fstart_process, Fmake_network_process)
31464 (read_process_output): Fix up last changes.
31465
31466 2007-07-16 Eli Zaretskii <eliz@gnu.org>
31467
31468 * makefile.w32-in (clean): Don't delete *~.
31469
31470 2007-07-16 Andreas Schwab <schwab@suse.de>
31471
31472 * window.c (Fdisplay_buffer): Use NILP.
31473 (Fset_window_scroll_bars): Likewise.
31474
31475 2007-07-15 Martin Rudalics <rudalics@gmx.at>
31476
31477 * window.c (window_min_size_2): New function.
31478 (window_min_size_1, size_window, Fdisplay_buffer)
31479 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
31480 windows without mode- or header-lines when window-min-height is
31481 too small.
31482 (size_window): Reset nodelete_p after testing it, following an
31483 earlier note by Kim F. Storm.
31484 (display_buffer): Do not set split_height_threshold to twice the
31485 value of window_min_height to avoid changing the value of a
31486 customizable variable. Rather explicitly check whether the
31487 height of the window that shall be splitted is at least as large
31488 as split_height_threshold.
31489 (Fwindow_full_width_p): New defun.
31490 (syms_of_window): Defsubr it.
31491
31492 * window.h: Add EXFUN for Fwindow_full_width_p.
31493
31494 2007-07-14 Jason Rumney <jasonr@gnu.org>
31495
31496 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
31497
31498 2007-07-14 Richard Stallman <rms@gnu.org>
31499
31500 * eval.c (maybe_call_debugger): New function.
31501 (find_handler_clause): Use maybe_call_debugger.
31502 Call it when the handler says `debug'.
31503 Eliminate DEBUGGER_VALUE_PTR.
31504 (Fsignal): Eliminate debugger_value.
31505 (Qdebug): New variable.
31506 (syms_of_eval): Initialize it.
31507
31508 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
31509
31510 * eval.c (Fprogn):
31511 * keyboard.c (Ftrack_mouse):
31512 * print.c (Fwith_output_to_temp_buffer):
31513 * window.c (Fsave_window_excursion): Doc fix.
31514
31515 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
31516
31517 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
31518
31519 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
31520
31521 * process.h (struct Lisp_Process): Turn slots infd, outfd,
31522 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
31523 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
31524 read_output_delay, and read_output_skip from Lisp_Objects to ints.
31525 Remove unused encoding_carryover.
31526 * process.c: Adjust all functions accordingly.
31527
31528 2007-07-12 Richard Stallman <rms@gnu.org>
31529
31530 * term.c: Include unistd.h only if HAVE_UNISTD_H.
31531
31532 2007-07-11 Jason Rumney <jasonr@gnu.org>
31533
31534 * makefile.w32-in (LIBS): Include OLE32.
31535
31536 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
31537 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
31538
31539 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
31540
31541 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
31542 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
31543 from a Lisp_Object into a bare pointer.
31544 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
31545 Adjust the code correspondingly.
31546
31547 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
31548
31549 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
31550 (term_show_mouse_face): Remove unused var `j'.
31551 (handle_one_term_event): Remove unused vars `i' and `j'.
31552 Don't cast return value of ttyname since it's not necessary.
31553
31554 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
31555
31556 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
31557 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
31558
31559 * fns.c (map_char_table): Use an array of int for `indices' rather than
31560 an array of Lisp_Objects (which are only ever integers anyway).
31561 (Fmap_char_table): Update caller.
31562 * lisp.h: Update prototype.
31563 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
31564 * fontset.c (Ffontset_info):
31565 * casetab.c (set_case_table): Update callers.
31566
31567 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
31568
31569 * keymap.c (struct accessible_keymaps_data)
31570 (struct where_is_internal_data): New structures.
31571 (accessible_keymaps_1, where_is_internal_1): Use them to change
31572 interface to adhere to the one used by map_keymap.
31573 (Faccessible_keymaps, where_is_internal): Use map_keymap.
31574 (accessible_keymaps_char_table, where_is_internal_2): Remove.
31575
31576 * keymap.h (map_keymap_function_t): More informative prototype.
31577
31578 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
31579
31580 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
31581 (looking_at_1): Don't change search_regs and last_thing_searched
31582 if `inhibit-changing-match-data' is non-nil.
31583 (string_match_1, search_buffer, set_search_regs): Likewise.
31584 (syms_of_search): Add Lisp level definition for
31585 `inhibit-changing-match-data' and set it to nil.
31586 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
31587 start and end of the match, instead of using values in search_regs.
31588
31589 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
31590
31591 * minibuf.c (Fcompleting_read): New value `confirm-only'
31592 for `require-match'.
31593
31594 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
31595
31596 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
31597 part of the 2007-06-27 change to syms_of_fileio.
31598
31599 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31600
31601 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
31602 Check WINDOWP before using XWINDOW. Consolidate return statements.
31603
31604 2007-06-27 Richard Stallman <rms@gnu.org>
31605
31606 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
31607
31608 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
31609
31610 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
31611
31612 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31613
31614 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
31615 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
31616 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
31617 (_free_internal, memalign): Use them.
31618 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
31619 Initialize to PTHREAD_MUTEX_INITIALIZER.
31620 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
31621 (morecore_nolock): Rename from morecore. All uses changed.
31622 Use only nolock versions of internal allocation functions.
31623 (_malloc_internal_nolock, _realloc_internal_nolock)
31624 (_free_internal_nolock): New functions created from
31625 _malloc_internal, _realloc_internal, and _free_internal.
31626 (_malloc_internal, _realloc_internal, _free_internal): Use them.
31627 Copy hook value to automatic variable before its use.
31628 (memalign): Copy hook value to automatic variable before its use.
31629
31630 2007-06-26 Kenichi Handa <handa@m17n.org>
31631
31632 * coding.c (Ffind_operation_coding_system): Docstring improved.
31633 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
31634
31635 2007-06-25 David Kastrup <dak@gnu.org>
31636
31637 * keymap.c (Fcurrent_active_maps): Add `position' argument.
31638 (Fwhere_is_internal): Adjust call to `current-active-maps' to
31639 cater for additional parameter.
31640
31641 * keymap.h: Adjust number of parameters to `current-active-maps'.
31642
31643 * doc.c (Fsubstitute_command_keys): Adjust call of
31644 `current-active-maps'.
31645
31646 2007-06-25 David Kastrup <dak@gnu.org>
31647
31648 * callint.c (Fcall_interactively): Make the parsing of interactive
31649 specs somewhat more readable.
31650
31651 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31652
31653 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
31654 to scroll bar gap also when bitmap fills fringe. Draw only foreground
31655 if extended background has already been filled.
31656
31657 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31658
31659 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
31660 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
31661
31662 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
31663 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
31664 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
31665 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
31666 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
31667 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
31668 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
31669 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
31670 Run timers during dialog popup.
31671 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
31672
31673 2007-06-21 Jason Rumney <jasonr@gnu.org>
31674
31675 * image.c (convert_mono_to_color_image): Swap fore and background.
31676
31677 2007-06-20 Jason Rumney <jasonr@gnu.org>
31678
31679 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
31680 (w32_free_bdf_font): Unmap memory not handle.
31681
31682 2007-06-20 Sam Steingold <sds@gnu.org>
31683
31684 * gmalloc.c (__morecore): Fix the declaration to comply with the
31685 definition.
31686
31687 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
31688
31689 * w32term.c (w32_delete_display): Remove leftover declaration.
31690 (w32_define_cursor, w32_initialize): Make static.
31691
31692 * w32.c (_wsa_errlist): Fix typo in error message.
31693 (init_environment): Ignore any environment variable from the
31694 registry having a null value.
31695
31696 2007-06-20 Glenn Morris <rgm@gnu.org>
31697
31698 * Makefile.in (LIBGIF): Default to -lgif.
31699
31700 2007-06-17 Jason Rumney <jasonr@gnu.org>
31701
31702 * w32menu.c (add_menu_item): Don't use multibyte string functions on
31703 unicode strings.
31704
31705 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
31706
31707 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
31708 Fix typo in docstring.
31709
31710 2007-06-16 Eli Zaretskii <eliz@gnu.org>
31711
31712 * w32menu.c (add_menu_item): Escape `&' characters in menu items
31713 and their keybindings.
31714
31715 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
31716
31717 * composite.c (update_compositions): Fix last fix.
31718
31719 2007-06-14 Jason Rumney <jasonr@gnu.org>
31720
31721 * w32.c (get_process_times_fn): New function pointer.
31722 (globals_of_w32): Intialize it if present in kernel32.dll.
31723 (w32_get_internal_run_time): New function.
31724
31725 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
31726
31727 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
31728
31729 * composite.c (update_compositions): Check the validness of
31730 compositions.
31731
31732 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31733
31734 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
31735 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
31736
31737 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
31738 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
31739
31740 * macgui.h (USE_MAC_TOOLBAR): New define.
31741
31742 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
31743 Return immediately unless popup is activated.
31744
31745 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
31746 background to scroll bar gap.
31747 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
31748 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
31749 scroll bars on frame edge. Check fringe background extension.
31750 Don't clear extended fringe background area.
31751 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
31752 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
31753 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
31754 [USE_MAC_TOOLBAR]: New macros.
31755 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
31756 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
31757 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
31758 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
31759 [USE_MAC_TOOLBAR]: New functions.
31760 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
31761 manually if previous repositioning has failed.
31762 (mac_handle_keyboard_event): Use precomputed event kind.
31763 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
31764 as tool bar item click. Handle mouse movement over tool bar items.
31765
31766 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
31767 toolbar_win_gravity.
31768 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
31769 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
31770 Add externs.
31771
31772 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
31773 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
31774
31775 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
31776
31777 * image.c (search_image_cache): Remove unused variable.
31778
31779 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
31780
31781 * xfns.c, xmenu.c: Link to xaw3d if available.
31782
31783 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31784
31785 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
31786 frame_foreground and frame_background.
31787
31788 * image.c (lookup_image): Save frame foreground and background colors.
31789 (search_image_cache): Check if saved and current frame colors match.
31790
31791 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
31792
31793 * regex.c (regex_compile): Remove the `regnum' counter.
31794 Use bufp->re_nsub instead. Add support for \(?N:RE\).
31795
31796 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
31797
31798 * term.c: Include intervals.h to declare Fget_text_property.
31799
31800 2007-06-10 Jason Rumney <jasonr@gnu.org>
31801
31802 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
31803
31804 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
31805
31806 * callint.c (Fcall_interactively):
31807 * editfns.c (Fdelete_and_extract_region):
31808 * fileio.c (Fread_file_name):
31809 * fns.c (Fmapconcat):
31810 * keyboard.c (cmd_error_internal):
31811 * keymap.c (Fkey_description):
31812 * lread.c (openp):
31813 * minibuf.c (read_minibuf):
31814 * search.c (wordify):
31815 * sunfns.c (sel_read):
31816 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
31817 * xfns.c (x_default_scroll_bar_color_parameter):
31818 * xmenu.c (menu_help_callback):
31819 * xselect.c (Fx_get_atom_name):
31820 * xterm.c (x_term_init): Use empty_unibyte_string.
31821
31822 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
31823
31824 * alloc.c (init_strings): Initialize canonical empty strings.
31825 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
31826 canonical empty string when the requested size is 0.
31827
31828 * emacs.c (empty_unibyte_string): Rename from empty_string.
31829 (empty_multibyte_string): New canonical empty string.
31830 (syms_of_emacs): Don't initialize empty_string.
31831
31832 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
31833 string, if appropriate.
31834 (empty_unibyte_string, empty_multibyte_string): New externs.
31835 (empty_string): Remove extern.
31836
31837 * lread.c (syms_of_lread): Use empty_unibyte_string.
31838
31839 2007-06-07 Jason Rumney <jasonr@gnu.org>
31840
31841 * s/ms-w32.h: Don't define HAVE_TZNAME.
31842
31843 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
31844
31845 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31846
31847 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
31848
31849 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
31850 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
31851
31852 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
31853 Don't call next handler.
31854 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
31855 Remove argument. Install handler to application.
31856 (set_frame_menubar): Don't change deep_p.
31857 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
31858 FRAME_OUTER_TO_INNER_DIFF_Y.
31859 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
31860 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
31861 [HAVE_DIALOGS]: New macros.
31862 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
31863 Use them.
31864 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
31865
31866 * macselect.c [MAC_OSX] (install_service_handler): Rename from
31867 init_service_handler. All callers changed. Return OSStatus value.
31868
31869 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
31870 All callers changed so as not to call SetPortWindowPort.
31871 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
31872 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
31873 mac_draw_string_common.
31874 (mac_draw_image_string_qd): Likewise.
31875 (mac_draw_string_common): Use them. Add INLINE.
31876 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
31877 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
31878 GetGlobalMouse.
31879 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
31880 and FRAME_OUTER_TO_INNER_DIFF_Y.
31881 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
31882 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
31883 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
31884 repositioning window to mac_handle_window_event.
31885 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
31886 saving window location to mac_handle_window_event
31887 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
31888 (install_menu_target_item_handler): Remove argument in extern.
31889 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
31890 Also accept command events.
31891 (do_keystroke): New function created from XTread_socket.
31892 (init_command_handler): Remove functions.
31893 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
31894 and save window location by kEventWindowShowing and kEventWindowHiding
31895 handlers here. Don't call next handler for window state change and
31896 focus events.
31897 (mac_handle_application_event, mac_handle_keyboard_event)
31898 [TARGET_API_MAC_CARBON]: New functions.
31899 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
31900 kEventWindowShowing and kEventWindowHiding events. Move installation
31901 of mouse, font, text input and menu target item handlers to
31902 install_application_handler.
31903 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
31904 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
31905 New function.
31906 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
31907 Register it.
31908 (XTread_socket) [TARGET_API_MAC_CARBON]:
31909 Consolidate SendEventToEventTarget calls.
31910 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
31911 Move application activation handler to mac_handle_application_event.
31912 Move keyboard handler to mac_handle_keyboard_event.
31913 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
31914 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
31915 init_command_handler. Call install_application_handler.
31916
31917 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
31918 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
31919
31920 2007-06-07 Glenn Morris <rgm@gnu.org>
31921
31922 * emacs.c (main): Use `emacs-copyright' in --version output.
31923
31924 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
31925
31926 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
31927
31928 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31929
31930 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
31931
31932 * macgui.h: Replace WindowPtr with WindowRef.
31933
31934 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
31935 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
31936 Replace ControlHandle with ControlRef.
31937 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
31938
31939 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
31940 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
31941 Replace ControlHandle with ControlRef.
31942 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
31943 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
31944
31945 * macterm.h (struct scroll_bar): Rename member control_handle_low
31946 and control_handle_high to control_ref_low and control_ref_high.
31947 All uses changed.
31948 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
31949 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
31950 respectively. All uses changed.
31951 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
31952 (install_window_handler, remove_window_handler): Replace WindowPtr
31953 with WindowRef in externs.
31954
31955 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
31956
31957 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
31958
31959 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
31960
31961 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
31962
31963 * frame.c (Fmouse_position, Fmouse_pixel_position):
31964 Condition on HAVE_GPM too.
31965
31966 * term.c (term_mouse_highlight): Remove unused variables.
31967 (Fterm_open_connection): Set gpm_zerobased to 1.
31968 (term_mouse_movement, term_mouse_click, handle_one_term_event):
31969 Use zero based co-ordinates.
31970 (handle_one_term_event): Report a drag as mouse movement too.
31971
31972 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
31973
31974 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
31975
31976 * image.c (search_image_cache): New function. Require background
31977 color match if background color is unspecified in the image spec.
31978 (uncache_image, lookup_image): Use it.
31979
31980 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
31981
31982 * window.c (Fshrink_window): Reflow docstring.
31983
31984 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
31985
31986 * Version 22.1 released.
31987
31988 2007-06-01 Richard Stallman <rms@gnu.org>
31989
31990 * xfns.c (x_encode_text): Add GCPRO.
31991
31992 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31993
31994 * xfns.c (x_set_name_internal): Save encoded name before
31995 x_encode_text in case string data is relocated.
31996
31997 2007-05-31 Richard Stallman <rms@gnu.org>
31998
31999 * buffer.c (syms_of_buffer): Doc fix.
32000
32001 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
32002
32003 * sysdep.c (init_sys_modes): Add rather than replace with
32004 O_NONBLOCK.
32005
32006 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
32007 term_mouse_moveto.
32008
32009 * termhooks.h (term_mouse_moveto): New extern.
32010
32011 * term.c (mouse_face_window): Rename...
32012 (Qmouse_face_window): ...to this.
32013 (term_show_mouse_face, term_clear_mouse_face)
32014 (term_mouse_highlight): Use Qmouse_face_window.
32015 (term_mouse_moveto): New function.
32016 (term_mouse_position): Make it work.
32017 (syms_of_term): Uncomment assignment to mouse_position_hook.
32018 Staticpro Qmouse_face_window.
32019
32020 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32021
32022 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
32023 around current_column call.
32024
32025 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
32026
32027 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
32028 * xdisp.c (next_element_from_buffer):
32029 * window.c (delete_window):
32030 * term.c (term_mouse_highlight):
32031 * msdos.c (getdefdir):
32032 * macterm.c (mac_create_bitmap_from_bitmap_data)
32033 (init_font_name_table):
32034 * fns.c (Fsxhash):
32035 * data.c (Fmake_local_variable):
32036 * ccl.c (ccl_driver): Likewise.
32037
32038 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32039
32040 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
32041 Call mac_wakeup_from_rne on window size change.
32042
32043 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
32044
32045 * image.c (uncache_image): Fix typo.
32046
32047 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
32048
32049 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
32050
32051 2007-05-22 Richard Stallman <rms@gnu.org>
32052
32053 * xterm.c (x_connection_closed): Remove NO_RETURN.
32054
32055 2007-05-22 Martin Rudalics <rudalics@gmx.at>
32056
32057 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
32058
32059 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
32060
32061 * image.c (uncache_image): New function.
32062 (Fimage_refresh): New function.
32063
32064 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
32065
32066 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
32067
32068 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
32069
32070 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
32071 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
32072
32073 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
32074
32075 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
32076 conditional on [HAVE_GPM_H].
32077
32078 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
32079
32080 * syntax.c (skip_chars): Update syntax-table only after we checked that
32081 the new location is valid.
32082
32083 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32084
32085 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
32086 mac_get_window_bounds.
32087
32088 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
32089
32090 * Makefile.in (LIBGPM): Allow it to be set from configure.
32091 If set then link Emacs with it.
32092
32093 * config.in: Regenerate.
32094
32095 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
32096 New externs.
32097
32098 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
32099 Include gpm.h.
32100 (handle_one_term_event, term_gpm): New externs.
32101
32102 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
32103 and allow it to be interrupted by SIGIO.
32104
32105 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
32106 (wait_reading_process_output): Wait on gpm_fd too.
32107 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
32108 (add_gpm_wait_descriptor_called_flag): New variable.
32109 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
32110
32111 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
32112 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
32113 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
32114 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
32115 (make_lispy_event): Add case GPM_CLICK_EVENT.
32116 (read_avail_input): Handle mouse input.
32117
32118 * term.c (write_glyphs_with_face): New function.
32119 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
32120 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
32121 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
32122 (mouse_face_face_id, term_gpm, pos_x, pos_y)
32123 (last_mouse_x, last_mouse_y): New variables.
32124 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
32125 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
32126 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
32127 (Fterm_close_connection): New functions.
32128 (term_init): Initialise mouse_face_window.
32129
32130 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
32131
32132 * xdisp.c (redisplay_window): If first window line is a
32133 continuation line, recompute the new window start instead of
32134 recentering.
32135
32136 2007-05-18 Glenn Morris <rgm@gnu.org>
32137
32138 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
32139 Suggested by Alfred M. Szmidt <ams@gnu.org>.
32140
32141 2007-05-17 Glenn Morris <rgm@gnu.org>
32142
32143 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
32144
32145 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32146
32147 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
32148 dead key repeat and up events.
32149
32150 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
32151
32152 * image.c (pbm_load): Check image size for monochrome pbm.
32153
32154 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
32155
32156 * xterm.c (XTread_socket): Revert last change.
32157
32158 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
32159
32160 * image.c (pbm_load): Correctly check image size for greyscale pbm.
32161
32162 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
32163
32164 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
32165
32166 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
32167 mixup (YAILOM).
32168
32169 2007-05-07 Andreas Schwab <schwab@suse.de>
32170
32171 * keymap.c (Flookup_key): Fix typo in last change.
32172
32173 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
32174
32175 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
32176 mapping for unibyte strings.
32177
32178 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32179
32180 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
32181 (Fx_popup_dialog) [MAC_OSX]: Likewise.
32182
32183 2007-04-29 Richard Stallman <rms@gnu.org>
32184
32185 * insdel.c (replace_range): For undo, record insertion first.
32186
32187 2007-04-29 Andreas Schwab <schwab@suse.de>
32188
32189 * lisp.h (VECSIZE): Use OFFSETOF.
32190
32191 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
32192
32193 * xdisp.c (try_window_reusing_current_matrix): Fix number of
32194 disabled lines.
32195
32196 2007-04-28 Richard Stallman <rms@gnu.org>
32197
32198 * lread.c (read_escape): In a string, \s is always space.
32199
32200 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
32201
32202 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
32203
32204 * gtkutil.c (xg_update_menubar, create_menus): Create empty
32205 submenu for menu bar items.
32206
32207 See ChangeLog.10 for earlier changes.
32208
32209 ;; Local Variables:
32210 ;; coding: utf-8
32211 ;; End:
32212
32213 Copyright (C) 2007-2011 Free Software Foundation, Inc.
32214
32215 This file is part of GNU Emacs.
32216
32217 GNU Emacs is free software: you can redistribute it and/or modify
32218 it under the terms of the GNU General Public License as published by
32219 the Free Software Foundation, either version 3 of the License, or
32220 (at your option) any later version.
32221
32222 GNU Emacs is distributed in the hope that it will be useful,
32223 but WITHOUT ANY WARRANTY; without even the implied warranty of
32224 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32225 GNU General Public License for more details.
32226
32227 You should have received a copy of the GNU General Public License
32228 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.