]> code.delx.au - gnu-emacs/blob - src/ChangeLog
* s/openbsd.h: Remove support for non-ELF and for systems that do
[gnu-emacs] / src / ChangeLog
1 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * s/openbsd.h: Remove support for non-ELF and for systems that do
4 not support shared libraries.
5 * s/netbsd.h:
6 * s/freebsd.h: Likewise.
7
8 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
9
10 Remove non-working support for lynxos 3.0.
11 * s/lynxos.h: Remove file.
12
13 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
14 COFF_BSD_SYMBOLS, nothing defines it anymore.
15
16 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
17
18 Remove obsolete uses of HAVE_SHM.
19 * emacs.c (standard_args):
20 (Fdump_emacs):
21 (syms_of_emacs): Remove code depending on HAVE_SHM.
22
23 * alloc.c: Remove HAVE_SHM dependent definition.
24
25 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
26
27 2010-03-18 Glenn Morris <rgm@gnu.org>
28
29 * emacs.c (USAGE4): Hard-code bug address.
30 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
31 (bug_reporting_address): Remove.
32 (main): Don't call bug_reporting_address.
33
34 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
35 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
36
37 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
38
39 * xfns.c (Fx_create_frame):
40 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
41 on left.
42
43 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
44
45 * editfns.c (Fformat): Account for string precision when computing
46 field width (Bug#5710).
47
48 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
49
50 * xfns.c (Fx_create_frame): Set default to Qright.
51
52 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
53 all window systems.
54
55 2010-03-12 Eli Zaretskii <eliz@gnu.org>
56
57 These changes remove termcap.c from the build on Posix platforms.
58 * Makefilie.in (termcapobj): Move termcap.o from here...
59 (MSDOS_OBJ): ...to here.
60 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
61 now identical to when LIBS_TERMCAP is defined.
62
63 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
64
65 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
66
67 * config.in: Regenerated. (See top-level ChangeLog.)
68
69 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
70
71 * Branch for 23.2.
72
73 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
74
75 Cleanup setup of gl_state in various parts of the code.
76 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
77 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
78 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
79 (skip_chars):
80 * regex.c (regex_compile): Use it.
81 (re_compile_pattern): Don't set gl_state.current_syntax_table since
82 it's now set in regex_compile when/if we need it.
83
84 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
85
86 Make it possible to C-g in a tight bytecode loop again (bug#5680).
87 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
88 (QUIT): Use it to consolidate code and remove redundancy.
89 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
90
91 * regex.c (regex_compile): Setup gl_state as well.
92
93 * syntax.c (skip_chars): Setup gl_state (bug#3823).
94 (in_classes): Use CONSP before XCAR/XCDR.
95
96 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
97
98 * keymap.c (Fwhere_is_internal): Use Fequal to compare
99 definitions, so that keyboard macros are correctly handled
100 (Bug#5481).
101
102 2010-03-02 Eli Zaretskii <eliz@gnu.org>
103
104 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
105 text that could be relocated inside the call to emacs_mule_char.
106 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
107 (CODING_DECODE_CHAR): Add a comment describing its purpose.
108
109 2010-03-02 Kenichi Handa <handa@m17n.org>
110
111 * character.c (parse_str_as_multibyte): Fix handling of the
112 multibyte form of raw-bytes.
113 (str_as_multibyte): Likewise.
114
115 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
116 form of raw-bytes.
117
118 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
119
120 * charset.c (load_charset_map_from_file)
121 (load_charset_map_from_vector): Zero out allocated
122 charset_map_entries before using them.
123
124 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
125
126 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
127
128 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
129
130 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
131 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
132
133 2010-02-26 Kenichi Handa <handa@m17n.org>
134
135 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
136
137 * xdisp.c (reseat_to_string): Fix previous change.
138
139 2010-02-26 David Reitter <david.reitter@gmail.com>
140
141 * nsfont.m (nsfont_draw): ns_antialias_text should be a
142 Lisp_Object (Bug#4736).
143
144 2010-02-25 Kenichi Handa <handa@m17n.org>
145
146 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
147
148 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
149
150 * xterm.c (XTflash): Move declarations before statements.
151
152 * gtkutil.c (xg_get_gdk_display): Remove (unused).
153 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
154 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
155 (xg_create_tool_bar): Remove unused variables.
156 (x_wm_set_size_hint): Move declarations before statements.
157 (xg_create_frame_widgets): Remove variable grav,
158
159 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
160
161 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
162
163 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
164
165 * term.c (fatal): Add a final \n if needed (bug#5596).
166
167 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
168
169 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
170
171 2010-02-18 Glenn Morris <rgm@gnu.org>
172
173 * callint.c (Finteractive): Doc fix.
174
175 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
176
177 * coding.c (record_conversion_result):
178 Handle CODING_RESULT_INSUFFICIENT_DST.
179 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
180 memory allocation error.
181
182 2010-02-17 Kenichi Handa <handa@m17n.org>
183
184 * coding.c (decode_coding_ccl): Don't setup ccl program here.
185 Fix for the case that the output buffer is fullfilled.
186 (decode_coding): Setup ccl program here. Keep looping when the
187 decoder stopped because the output buffer is
188 fullfilled (bug#5534).
189
190 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
191
192 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
193
194 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
195 bug #5571.
196 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
197 overdrawn.
198
199 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
200
201 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
202 doing_interact here.
203 (ice_connection_closed): New function.
204 (x_session_check_input, smc_die_CB, ice_io_error_handler)
205 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
206 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
207 returns I/O error.
208 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
209 bug #5512.
210
211 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
212
213 * nsfont.m (nsfont_open): The system's value for the font descent
214 is negative, so round it down to avoid clipping.
215
216 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
217
218 * charset.c (load_charset_map_from_file)
219 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
220 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
221
222 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
223
224 * charset.c (load_charset_map_from_file): Allocate large
225 charset_map_entries structure on the heap rather than the stack.
226 (Bug#5526).
227
228 2010-01-31 Kenichi Handa <handa@m17n.org>
229
230 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
231 size in NAME is invalid, return -1 (Bug#5396).
232
233 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
234
235 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
236 <deactivated@gmail.com> (Bug#3605).
237
238 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
239
240 * fileio.c (Frename_file): Correctly rename symlinks to
241 directories (Bug#5496).
242
243 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
244
245 * nsterm.m (ns_ring_bell): Handle visible bell like X.
246
247 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
248
249 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
250
251 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
252
253 * frame.c (DEFAULT_ROWS): Change default to 35.
254
255 * xfns.c (x_default_font_parameter): Change default XFT font to
256 monospace-10 (Bug#3643).
257
258 2010-01-29 Eli Zaretskii <eliz@gnu.org>
259
260 * w32inevt.c (key_event): Remove unnecessary comparison of
261 event->uChar.AsciiChar with 128.
262
263 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
264
265 * fileio.c (Frename_file): Fix last change (Bug#5487).
266
267 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
268
269 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
270
271 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
272
273 * xfns.c (Fx_create_frame): Remove window size matching code from
274 2010-01-15.
275 (x_get_current_desktop, x_get_desktop_workarea): Remove
276
277 2010-01-27 Jason Rumney <jasonr@gnu.org>
278
279 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
280 (key_event): Use unicode for characters 128 and higher (Bug#4567).
281
282 2010-01-27 Kenichi Handa <handa@m17n.org>
283
284 * regex.c (analyse_first): Fix setting of fastmap for unibyte
285 pattern string (Bug#4209).
286
287 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
288
289 * fileio.c (Frename_file): Call copy-directory and
290 delete-directory for directories, in order to handle cross-device
291 renaming (Bug#3353).
292
293 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
294
295 * xfns.c (Fx_create_frame): If frame height is too big, try
296 sizes 24 and 10. Bug #3643.
297
298 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
299
300 Try and fix bug#788, hopefully for real this time.
301 * keymap.c (shadow_lookup): Add `remap' arg.
302 (describe_map, describe_vector): Update calls to shadow_lookup.
303 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
304 `remapped' so this flag is applicable to `sequence'. Be careful to
305 perform remapping during shadow_lookup check of remapped_sequences.
306
307 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
308
309 * image.c (png_load): Use png_sig_cmp instead of the obsolete
310 png_check_sig, which has been removed in libpng 1.4.
311
312 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
313
314 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
315 lacks this header file).
316
317 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
318
319 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
320 as in Emacs 22.
321
322 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
323
324 * lisp.h (make_pure_string): String pointer arg now points to const.
325
326 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
327 args now point to const.
328
329 2010-01-22 Eli Zaretskii <eliz@gnu.org>
330
331 * lread.c (Fload): Don't treat files without .elc extension as
332 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
333 them. (bug#5303)
334
335 2010-01-20 Kenichi Handa <handa@m17n.org>
336
337 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
338 treat the source as actual byte sequence.
339
340 2010-01-19 Alan Mackenzie <acm@muc.de>
341
342 Fix spurious before-change-functions invocation from (insert ?\n).
343 * textprop.c (set_text_properties): rename parameter
344 `signal_after_change_p' to `coherent_change_p', and make the
345 invocation of `modify_region' conditional on it.
346
347 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
348
349 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
350 for debug purpose.
351 (syms_of_xsettings): Declare xft-settings.
352
353 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
354
355 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
356
357 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
358
359 * xterm.c (event_handler_gdk): Block input (Bug#5037).
360
361 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
362
363 * emacs.c (standard_args): Adjust arg priorities to reflect how
364 they are processed in startup.el.
365
366 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
367
368 * Makefile.in (lisp, shortlisp): Update.
369
370 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
371
372 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
373 code, link the new kboard into all_kboard before running Lisp code,
374 and protect the new terminal with GCPRO (Bug#5365).
375 (x_term_init): Remove unused var `atom'.
376 (x_delete_display, x_delete_terminal): Remove unused var `i'.
377
378 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
379
380 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
381 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
382 to find out usable size of the desktop. Don't make frames larger than
383 this. Bug #3643.
384
385 2010-01-15 Kenichi Handa <handa@m17n.org>
386
387 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
388
389 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
390
391 * nsterm.m (Qnone): Define.
392
393 * nsfns.m (Qnone): Move definition to nsterm.m.
394
395 2010-01-14 Kenichi Handa <handa@m17n.org>
396
397 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
398 systems.
399
400 2010-01-14 Kenichi Handa <handa@m17n.org>
401
402 Make auto-composition work on all buffers even if they are
403 fundamental mode.
404
405 * composite.c (Vauto_composition_mode): New variable.
406 (composition_compute_stop_pos): Check Vauto_composition_mode
407 instead of Vauto_composition_function.
408 (composition_adjust_point, Ffind_composition_internal): Likewise.
409 (syms_of_composite): Declare Lisp variable
410 "auto-composition-mode" here.
411
412 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
413
414 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
415 during call to vendor-specific-keysyms (Bug#5365).
416
417 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
418
419 * keyboard.c (input_available_signal) [SYNC_INPUT]:
420 Call SIGNAL_THREAD_CHECK (Bug#5333).
421
422 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
423 Call SIGNAL_THREAD_CHECK.
424
425 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
426
427 Try to fix bug#5314. This is probably not the final word, tho.
428 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
429 recent-auto-save-p as a side-effect.
430 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
431 * buffer.c (Fkill_buffer, reset_buffer):
432 * editfns.c (Fsubst_char_in_region):
433 * fileio.c (Finsert_file_contents, Fdo_auto_save)
434 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
435
436 2010-01-13 Kenichi Handa <handa@m17n.org>
437
438 Display buffer name, etc. in mode line by composing correctly.
439
440 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
441 STRING is not nil.
442 (display_mode_element): Adjust for the change of
443 decode_mode_spec and display_line.
444 (decode_mode_spec): Change arg MULTIBYTE to STRING.
445 (display_string): Handle the case that STRING is non-null and
446 LISP_STRING is not nil.
447
448 * xterm.c (x_draw_composite_glyph_string_foreground):
449 Pay attention to s->face->overstrike.
450
451 * composite.c (composition_reseat_it): Don't check PT if STRING is
452 non nil.
453
454 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
455
456 * keyboard.c (read_char): Don't apply previous change when current
457 buffer is unchanged by command execution.
458
459 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
460
461 * keyboard.c (read_char): Return after executing from special map.
462
463 2010-01-12 Glenn Morris <rgm@gnu.org>
464
465 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
466 bug-gnu-emacs rather than emacs-pretest-bug.
467
468 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
469
470 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
471 initializing the Lisp variables that depend on them.
472
473 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
474
475 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
476 Clear areas that will not be updated after change of menu bar lines.
477 Clear the menu bar window's current matrix when the window gets empty.
478
479 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
480
481 * intervals.h, textprop.c (extend_property_ranges): Return value
482 and args changed. Discard properties that begin at or after the
483 new end (Bug#5306).
484
485 * editfns.c (Fformat): Caller changed.
486
487 * nsterm.m (ns_set_default_prefs): Delete function.
488 (syms_of_nsterm): Initialize ns_command_modifier,
489 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
490 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
491
492 * xdisp.c (pos_visible_p): Check for invisible text at the correct
493 position (Bug#4040).
494
495 2010-01-09 Eli Zaretskii <eliz@gnu.org>
496
497 * editfns.c (Ffloat_time): Doc fix.
498
499 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
500
501 * xfns.c (Fx_create_frame): Don't create frame larger than display
502 by default bug#3643.
503
504 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
505
506 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
507 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
508 windows above internal border.
509
510 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
511 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
512 windows above internal border.
513
514 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
515 tool bar windows specially.
516
517 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
518
519 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
520 specially.
521 (XTflash): Take account of menu bar height.
522
523 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
524 specially.
525
526 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
527
528 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
529 also be true before we can return early (bug #5339).
530
531 2010-01-06 David Reitter <david.reitter@gmail.com>
532
533 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
534 (Fns_display_usable_bounds): Rewrite, computing bounds properly
535 (Bug#3233).
536
537 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
538
539 * font.c (font_open_entity): Enable chache and call cached_font_ok
540 for the driver if defined.
541 (QCuser_spec): New symbol.
542 (font_spec_from_name): Save name as user-spec.
543 (font_load_for_lface): Keep user-spec instead of name.
544 (font_open_by_name): Save name as user-spec.
545 (syms_of_font): Initialize QCuser_spec.
546 (font_clear_prop): Clear name if it exists in font (bug#5157).
547
548 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
549 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
550 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
551
552 * font.h (struct font_driver): Add cached_font_ok.
553
554 * xterm.c (x_clear_frame): Queue draw for scroll bars.
555
556 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
557
558 * xterm.c (x_new_font): Move code for setting rows/cols before
559 resizing ...
560 (x_set_window_size): ... to here. Bug #2568.
561
562 * gtkutil.c (xg_clear_under_internal_border): New function.
563 (xg_frame_resized, xg_frame_set_char_size):
564 Call xg_clear_under_internal_border.
565 (xg_update_scrollbar_pos): Clear under old scroll bar position.
566
567 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
568
569 * keyboard.c (read_key_sequence): Catch keyboard switch after
570 making a new tty frame (Bug#5095).
571
572 2010-01-05 Kenichi Handa <handa@m17n.org>
573
574 * fontset.c (fontset_find_font): Fix getting the frame pointer.
575
576 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
577
578 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
579 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
580 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
581
582 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
583
584 * dbusbind.c (xd_add_watch): Improve debug message.
585 (xd_remove_watch): Improve debug message. If DATA is the session
586 bus, unset D-Bus session environment.
587 (Fdbus_init_bus): Pass the bus as argument to
588 dbus_connection_set_watch_functions. (Bug#5283)
589
590 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
591
592 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
593
594 * lread.c (syms_of_lread): Make it clearer that these are the
595 names of loaded files (Bug#5068).
596
597 * eval.c (run_hook_with_args): Handle the case where the global
598 value has the obsolete single-function form (Bug#5026).
599
600 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
601
602 * minibuf.c (Fall_completions): Minor optimization.
603
604 2009-12-26 Eli Zaretskii <eliz@gnu.org>
605
606 * .gdbinit (pgx): Fix display of composite glyphs.
607 Display cmp.from and cmp.to as well.
608 (pitx): Fix last change.
609
610 2009-12-25 Kenichi Handa <handa@m17n.org>
611
612 * composite.h (composition_adjust_point): Update prototype.
613
614 * composite.c (composition_reseat_it): Don't make a composition
615 spanning over point.
616 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
617 composable characters.
618 (composition_adjust_point): New arg NEW_PT. Callers changed.
619
620 * keyboard.c (command_loop_1): Force redisplay if the last point
621 was within a composition.
622 (adjust_point_for_property): Don't adjust point for automatic
623 composition when called after buffer modification.
624
625 2009-12-19 Eli Zaretskii <eliz@gnu.org>
626
627 * .gdbinit (pitx): Don't use enum names, use their values.
628 Remove reference to non-existing value GET_FROM_COMPOSITION.
629 (pgx): Don't use enum names, use their values.
630 (pitmethod): New helper command.
631 (pitx): Use it to display iteration method.
632 (pgrowit): New command.
633
634 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
635
636 Update dependencies in Makefile.in.
637
638 * Makefile.in (alloc.o): Depend on termhooks.h.
639 (atimer.o): Depend on blockinput.h.
640 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
641 and frame.h.
642 (callint.o): Depend on systime.h, coding.h, and composite.h.
643 (callproc.o): Depend on buffer.h.
644 (casefiddle.o): Don't depend on charset.h.
645 (casetab.o): Depend on character.h.
646 (ccl.o): Depend on composite.h.
647 (chartab.o): Depend on ccl.h.
648 (cm.o): Depend on dispextern.h.
649 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
650 (coding.o): Don't depend on $(INTERVALS_H).
651 (composite.o): Don't depend on dispextern.h explicitly (it's in
652 $(INTERVALS_H)). Depend on ccl.h.
653 (data.o): Depend on systime.h, coding.h, composite.h,
654 dispextern.h, font.h, and ccl.h.
655 (dired.o): Depend on composite.h.
656 (dispnew.o): Depend on coding.h. Don't depend explicitly on
657 composite.h (it's in $(INTERVALS_H)).
658 (doc.o): Depend on systime.h, coding.h, and composite.h.
659 (editfns.o): Don't depend explicitly on dispextern.h.
660 (emacs.o): Depend on frame.h and coding.h.
661 (eval.o): Depend on coding.h, composite.h, and xterm.h.
662 (fileio.o): Depend on frame.h and commands.h. Don't depend
663 explicitly on dispextern.h.
664 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
665 composite.h.
666 (fns.o): Don't depend on termhooks.h.
667 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
668 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
669 coding.h, $(INTERVALS_H), window.h, xterm.h.
670 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
671 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
672 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
673 fontset.h, ccl.h, and ftfont.h.
674 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
675 (gtkutil.o): Depend on dispextern.h and composite.h.
676 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
677 termhooks.h, and ccl.h.
678 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
679 (intervals.o): Depend on systime.h and coding.h.
680 (keyboard.o): Depend on composite.h and coding.h.
681 (keymap.o): Depend on coding.h and frame.h.
682 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
683 (macros.o): Depend on systime.h, coding.h, and composite.h.
684 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
685 and atimer.h.
686 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
687 dispextern.h explicitly.
688 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
689 Don't depend explicitly on dispextern.h and composite.h.
690 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
691 (regex.o): Don't depend on charset.h.
692 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
693 (search.o): Don't depend explicitly on composite.h.
694 (sound.o): Depend on atimer.h and systime.h.
695 (syntax.o): Don't depend explicitly on composite.h.
696 (sysdep.o): Depend on coding.h and composite.h.
697 (term.o): Depend on xterm.h and buffer.h.
698 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
699 (textprop.o): Don't depend on dispextern.h explicitly.
700 (undo.o): Depend on dispextern.h.
701 (window.o): Depend on coding.h and termhooks.h. Don't depend on
702 dispextern.h and composite.h explicitly.
703 (xdisp.o): Depend on ccl.h.
704 (xfaces.o): Depend on coding.h and ccl.h.
705 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
706 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
707 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
708 ftfont.h.
709 (xgselect.o): New dependency.
710 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
711 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
712 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
713 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
714 (xsmfns.o): Depend on frame.h and dispextern.h.
715 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
716 sysselect.h.
717
718 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
719
720 * font.c (Fclear_font_cache): Pass correct cache argument to
721 font_clear_cache.
722
723 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
724
725 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
726 twice.
727
728 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
729
730 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
731 calling file-remote-p. Reported by Jim Meyering.
732
733 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
734
735 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
736 avoid compiler warnings. (Bug #5217)
737
738 2009-12-14 Kenichi Handa <handa@m17n.org>
739
740 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
741 in 8-bit encoding.
742
743 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
744
745 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
746 tooltip windows.
747
748 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
749
750 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
751 Xatom_net_window_type.
752
753 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
754 Xatom_net_window_type.
755
756 * xterm.c (my_log_handler): New function.
757 (x_term_init): Set my_log_handler as log handler during gtk_init
758 so we can filter out buggy messages. (Bug #5120).
759
760 * xterm.c (xg_scroll_callback): Parameter list changed,
761 use parameter GtkScrollType to determine scroll/line/page.
762 Only allow dragging if a button < 4 is grabbed (bug #5177).
763 (xg_end_scroll_callback): New function.
764 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
765 xg_create_scroll_bar.
766
767 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
768 (scroll_end_callback): Remove.
769 (xg_create_scroll_bar): Add parameter end_callback, bind it to
770 button-release-event. Replace value-changed event with change-value,
771 bug #5177,
772 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
773 bug #5177.
774
775 * gtkutil.h (XG_LAST_SB_DATA): Remove.
776 (xg_create_scroll_bar): Add GCallback end_callback.
777
778 * xftfont.c (QClcdfilter): New variable.
779 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
780 (syms_of_xftfont): Initialize QClcdfilter.
781
782 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
783
784 * xsettings.c (struct xsettings): Add member seen.
785 (parse_xft_settings): Update member seen with what we have read.
786 Return non-zero if Xft-settings have been parsed, 0 otherwise.
787 (apply_xft_settings): Only update Xft settings with what member seen
788 indicates as new.
789
790 2009-12-12 Eli Zaretskii <eliz@gnu.org>
791
792 * dispextern.h (struct text_pos): Use EMACS_INT;
793 (struct glyph): Use EMACS_INT for charpos.
794 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
795 region_beg_charpos, region_end_charpos,
796 redisplay_end_trigger_charpos, and also for
797 iterator_stack_entry.end_charpos and
798 iterator_stack_entry.stop_charpos.
799
800 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
801
802 * gtkutil.c (scroll_end_callback): New function (bug #5177).
803 (xg_create_scroll_bar): Call scroll_end_callback on button release
804 event (bug #5177).
805 (xg_event_is_for_scrollbar): != replaced with ==.
806
807 2009-12-12 Kenichi Handa <handa@m17n.org>
808
809 * ftfont.c (struct ftfont_info): New member matrix.
810 (ftfont_open): Setup xftfont_info->matrix.
811 (MFLTFontFT): New member matrix.
812 (FLOOR, CEIL, ROUND): New macros.
813 (ftfont_get_metrics): Handle matrix transformation.
814 (ftfont_shape_by_flt): New arg matrix. Callers changed.
815
816 * xftfont.c (struct xftfont_info): New member matrix.
817 (xftfont_open): Setup xftfont_info->matrix.
818
819 2009-12-10 Kenichi Handa <handa@m17n.org>
820
821 * xdisp.c (append_space_for_newline): Consider face-remapping.
822
823 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
824
825 * xsettings.c: Include "keyboard.h".
826
827 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
828
829 Fix implicit function declarations.
830 * cmds.c: Include "frame.h".
831 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
832 * frame.h: Move declaration of delete_frame outside of
833 HAVE_WINDOW_SYSTEM.
834
835 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
836
837 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
838
839 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
840 GTK builds.
841
842 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
843
844 * unexelf.c (unexec): Don't search for .data twice.
845
846 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
847
848 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
849 if push failed.
850 (handle_line_prefix): Set avoid_cursor_p here. Check return value
851 of push_display_prop (Bug#5000).
852
853 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
854 value of font_list_entities (Bug#5085).
855
856 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
857
858 Fix `string-to-number' to deal consistently with integers and floats.
859 * lread.c (isfloat_string): New argument ignore_trailing to accept all
860 trailing characters, not just whitespace.
861 (read1): Pass new arg 0 to keep old behavior.
862 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
863 trailing chars, as it is already done for integers. Doc fixes.
864 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
865
866 2009-12-04 Eli Zaretskii <eliz@gnu.org>
867
868 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
869 Delete unused enumeration value.
870
871 2009-12-03 Eli Zaretskii <eliz@gnu.org>
872
873 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
874
875 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
876
877 * process.c (Fmake_network_process): Fix up the tests for
878 "connectionless socket", so they DTRT for seqpacket sockets as well.
879
880 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
881
882 * process.c (Qseqpacket): New symbol.
883 (HAVE_SEQPACKET): New macro.
884 (Fmake_network_process): Accept new :type `seqpacket'.
885 (init_process): Add `seqpacket' feature when applicable.
886 (syms_of_process): Initialize Qseqpacket.
887
888 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
889
890 * font.c (font_load_for_lface, font_open_by_name): Don't store name
891 if entity is Qnil.
892
893 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
894
895 * print.c (print_preprocess): Preprocess the key_and_value table of
896 hashtables, even tho they're "hidden" (bug#5082).
897
898 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
899
900 * frame.c (frame_make_pointer_invisible)
901 (frame_make_pointer_visible): Declare f before statements.
902
903 2009-11-28 Eli Zaretskii <eliz@gnu.org>
904
905 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
906 omitted dependencies on lisp.h.
907
908 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
909
910 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
911 is NULL.
912
913 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
914
915 * frame.c (frame_make_pointer_invisible)
916 (frame_make_pointer_visible): Just return if there isn't any selected
917 frame.
918
919 * search.c (simple_search): Remove warning by making *p const.
920
921 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
922
923 * xdisp.c (power_letter): Remove duplicate const.
924
925 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
926
927 * term.c (delete_tty): Remove check for last terminal (bug#4970).
928
929 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
930 defaults (bug #5025).
931
932 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
933
934 * insdel.c (adjust_markers_for_delete): Move it in the
935 right direction! (bug#4803)
936
937 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
938
939 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
940
941 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
942
943 2009-11-24 Glenn Morris <rgm@gnu.org>
944
945 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
946
947 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
948
949 * Makefile.in: Must create deps for ecrt0.o in its rule.
950
951 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
952 because that is what Gtk+ font dialog understands.
953
954 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
955 of Fcopy_sequence.
956 (font_open_by_name): Put name given into QCname for font-object returned.
957
958 * frame.c (x_set_font): Save original font name as frame parameter
959 font-parameter.
960
961 * xsettings.c (set_default_xft_settings): New function.
962 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
963 is found.
964
965 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
966
967 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
968 searching backwards through multibyte buffer.
969
970 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
971
972 * xterm.c: #include xgselect.h.
973 (x_initialize): Call xgselect_initialize.
974
975 * xsettings.c (something_changedCB): C++ comments => C comments.
976 (init_gconf): Do not deal with any GLib file descriptors, xg_select
977 does that now.
978
979 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
980 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
981 (scroll_bar_button_cb): Remove.
982 (create_menus): C++ comments => C comments. Don't bind grab-notify
983 event.
984 (xg_create_scroll_bar): Don't bind button-press-event and
985 button-release-event.
986
987 * process.c: Include xgselect.h if defined (USE_GTK) ||
988 defined (HAVE_GCONF).
989 (wait_reading_process_output): Call xg_select for the same condition.
990
991 * xgselect.c (xg_select): New function to better integrate with
992 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
993
994 * xgselect.h: New file, declare xg_select, xgselect_initialize.
995
996 * Makefile.in (XOBJ): Add xgselect.o.
997
998 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
999
1000 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
1001 Remove ignored second argument. All callers changed.
1002 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
1003 (RE_STRING_CHAR_AND_LENGTH): Likewise.
1004 * xdisp.c (string_char_and_length): Likewise.
1005
1006 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
1007
1008 * xterm.c (x_new_font):
1009 * print.c (print_object):
1010 * cmds.c (Fself_insert_command): Move declarations before statements.
1011
1012 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
1013
1014 * s/cygwin.h: Remove unneeded linker flags.
1015
1016 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
1017
1018 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
1019
1020 * xsettings.h: Declare xsettings_get_system_font.
1021
1022 * xsettings.c (xsettings_get_system_font): New function.
1023 (init_gconf): No use initiating gconf unless we have Xft also.
1024 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
1025 HAVE_GCONF.
1026
1027 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
1028 add a blank entry so it doesn't collapse into nothing.
1029
1030 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
1031
1032 * lread.c (Funintern): Comment out last change.
1033
1034 2009-11-19 Richard Stallman <rms@gnu.org>
1035
1036 * lread.c (Funintern): Error if symbol is t or nil.
1037
1038 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
1039
1040 * insdel.c (make_gap_larger): Don't make as many assumptions about the
1041 representation of Lisp integers.
1042 Reported by MJ Chan <mjchan.inbox@gmail.com>.
1043
1044 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
1045
1046 * lisp.h: Remove declaration of Ffont_get_system_font.
1047 * xfns.c: Move include of "xsettings.h".
1048 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
1049
1050 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
1051
1052 * xsettings.c (something_changedCB, Ffont_get_system_font):
1053 Check use_system_font.
1054 (syms_of_xsettings): DEFVAR font-use-system-font.
1055
1056 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
1057
1058 * xfns.c (x_default_font_parameter): Remove dead assignment.
1059
1060 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
1061
1062 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
1063
1064 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
1065 not have FC_LCD_*. #define them if not there.
1066
1067 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
1068
1069 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
1070
1071 * xterm.c (handle_one_xevent): Call xft_settings_event for
1072 ClientMessage, PropertyNotify and DestroyNotify.
1073 (x_term_init): If we have XFT, get DPI from Xft.dpi.
1074 Call xsettings_initialize.
1075
1076 * xftfont.c (xftfont_fix_match): New function.
1077 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
1078 Call xftfont_fix_match after XftFontMatch.
1079
1080 * xfont.c (xfont_driver): Initialize all members.
1081
1082 * xfns.c (x_default_font_parameter):
1083 Try font from Ffont_get_system_font.
1084 Do not get font from x_default_parameter if we got one from
1085 Ffont_get_system_font.
1086 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
1087
1088 * w32font.c (w32font_driver): Initialize all members.
1089
1090 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
1091
1092 * lisp.h: Declare syms_of_xsettings.
1093
1094 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
1095 Handle CONFIG_CHANGED_EVENT.
1096
1097 * ftfont.c (ftfont_filter_properties): New function.
1098
1099 * frame.c (x_set_font): Remove unused variable lval.
1100
1101 * font.h (struct font_driver): Add filter_properties.
1102
1103 * font.c (font_put_extra): Don't return if val is nil, it means
1104 boolean option is off.
1105 (font_parse_fcname): Collect all extra properties in extra_props
1106 and call filter_properties for all drivers with extra_props and
1107 font as parameter.
1108 (font_open_entity): Do not use cache, it does not pick up new
1109 fontconfig settings like hinting.
1110 (font_load_for_lface): If spec had a name in it, store it in entity.
1111
1112 * emacs.c (main): Call syms_of_xsettings
1113
1114 * config.in: HAVE_GCONF is new.
1115
1116 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
1117 xsettings.o is new.
1118
1119 2009-11-17 Kenichi Handa <handa@m17n.org>
1120
1121 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
1122 back to the default font in case that no suitable font is found.
1123
1124 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
1125
1126 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
1127 Suggested by Chad Brown <yandros@mit.edu>.
1128 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
1129
1130 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
1131
1132 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
1133
1134 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
1135
1136 * Makefile.in: Ignore errors from mkdir when creating deps directory.
1137
1138 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
1139
1140 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
1141 has a parent.
1142
1143 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
1144 dependency files in deps/. Include those files into Makefile.
1145
1146 * config.in: Generated (AUTO_DEPEND).
1147
1148 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
1149
1150 * dbusbind.c (Vdbus_registered_objects_table): Rename from
1151 Vdbus_registered_functions_table, because it contains also
1152 properties. Fix docstring.
1153 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
1154
1155 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
1156
1157 * alloc.c (mark_object): Don't reprocess marked strings.
1158 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
1159 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
1160
1161 2009-11-13 Kenichi Handa <handa@m17n.org>
1162
1163 * category.c (word_boundary_p): Adjust for the change of the
1164 semantics of Vword_combining_categories.
1165 (Vword_combining_categories): Describe the slight change of the
1166 semantics.
1167
1168 2009-11-13 Eli Zaretskii <eliz@gnu.org>
1169
1170 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
1171
1172 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
1173
1174 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
1175
1176 * xdisp.c (syms_of_xdisp): Fix typo in last change.
1177
1178 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
1179
1180 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
1181
1182 2009-11-11 David Reitter <david.reitter@gmail.com>
1183
1184 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
1185 variables to fix 2009-11-09 change.
1186
1187 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
1188
1189 * process.c (ifflag_def): Make flag_sym constant.
1190 (Fnetwork_interface_info): Use a constant pointer.
1191 (ifflag_table):
1192 * xfns.c (cursor_bits):
1193 * xdisp.c (power_letter):
1194 * termcap.c (speeds, esctab):
1195 * sysdep.c (baud_convert):
1196 * keyboard.c (lispy_accent_codes, modifier_names):
1197 * image.c (xbm_format, xpm_format, pbm_format, png_format)
1198 (jpeg_format, tiff_format, gif_format, svg_format)
1199 (interlace_start, interlace_increment, gs_format):
1200 * gtkutil.c (separator_names):
1201 * fringe.c (swap_nibble):
1202 * fns.c (base64_value_to_char, base64_char_to_value):
1203 * fileio.c (make_temp_name_tbl):
1204 * coding.c (suffixes): Make constant.
1205
1206 * frame.c (make_initial_frame):
1207 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
1208 build_string.
1209 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
1210
1211 * s/freebsd.h:
1212 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
1213
1214 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
1215 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
1216
1217 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
1218 * xterm.c (syms_of_xterm):
1219 * xfaces.c (syms_of_xfaces):
1220 * xdisp.c (syms_of_xdisp):
1221 * lread.c (syms_of_lread):
1222 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
1223 build_string.
1224
1225 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
1226
1227 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
1228
1229 * fns.c (Fplist_get): Merge the active and the commented out code.
1230
1231 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
1232
1233 * keyboard.h: Declare timer_check.
1234
1235 * keyboard.c (timer_check_2): New function that does what the old
1236 timer_check did.
1237 (timer_check): Call timer_check_2 until -1 or a non-zero time is
1238 returned, i.e. don't return -1 with timers pending.
1239
1240 * process.c: Remove extern declaration of timer_check.
1241
1242 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
1243 even if timer_check returned -1.
1244
1245 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
1246 xg_dialog_data.
1247 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
1248 the event loop.
1249 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
1250 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
1251 Destroy the dialog after xg_dialog_run.
1252
1253 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
1254
1255 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
1256
1257 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
1258
1259 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
1260
1261 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
1262
1263 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
1264
1265 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1266
1267 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
1268 w32menu.c, and nsmenu.m.
1269 Simplify the obsolete case where position is nil.
1270 (cleanup_popup_menu): New function, moved from nsmenu.m.
1271 (struct skp): Remove slot `notreal'.
1272 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
1273 adjust callers.
1274 (single_menu_item): Adjust call to parse_menu_item.
1275 (syms_of_menu): Defsubr x-popup-menu.
1276 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
1277 (keymap_panes): Don't export any more.
1278 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
1279 (xmenu_show): Declare.
1280 * keyboard.c (parse_menu_item): Remove arg `notreal'.
1281 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
1282 * keyboard.h (parse_menu_item): Update declaration.
1283 * xmenu.c (Fx_popup_menu): Remove.
1284 (syms_of_xmenu): Don't defsubr x-popup-menu.
1285 * w32menu.c (Fx_popup_menu): Remove.
1286 (syms_of_w32menu): Don't defsubr x-popup-menu.
1287 * nsmenu.m (cleanup_popup_menu): Remove.
1288 (ns_menu_show): Rename from ns_popup_menu and remove all the code
1289 moved to menu.c's Fx_popup_menu.
1290 (Fx_popup_menu): Remove.
1291 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
1292 menu_items (it's done in menu.c already).
1293
1294 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1295
1296 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
1297 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
1298
1299 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
1300
1301 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
1302 xmenu_show. Hide any tooltip before opening a menu.
1303 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
1304 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
1305
1306 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
1307
1308 Let integers use up 2 tags to give them one extra bit and thus double
1309 their range.
1310 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
1311 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
1312 New macros.
1313 (enum Lisp_Type): Use them. Give explicit values.
1314 (Lisp_Type_Limit): Remove.
1315 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
1316 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
1317 Pay attention to USE_2_TAGS_FOR_INTS.
1318 (INTEGERP): Use LISP_INT_TAG_P.
1319 * fns.c (internal_equal): Simplify the default case.
1320 (sxhash): Use case_Lisp_Int.
1321 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
1322 any more.
1323 (Ftype_of): Use case_Lisp_Int.
1324 (store_symval_forwarding): Take into account the fact that Ints can
1325 now have more than one tag.
1326 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
1327 buffer_slot_type_mismatch):
1328 * xfaces.c (face_attr_equal_p):
1329 * print.c (print_object):
1330 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
1331 Use case_Lisp_Int.
1332
1333 2009-11-06 Eli Zaretskii <eliz@gnu.org>
1334
1335 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
1336
1337 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
1338 warning.
1339
1340 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
1341
1342 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
1343
1344 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
1345
1346 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
1347 ButtonPressRelease and MotionNotify (bug#4870).
1348
1349 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
1350
1351 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
1352
1353 * xterm.c (syms_of_xterm):
1354 * xselect.c (syms_of_xselect):
1355 * xmenu.c (syms_of_xmenu):
1356 * xfns.c (syms_of_xfns):
1357 * xfaces.c (syms_of_xfaces):
1358 * xdisp.c (syms_of_xdisp):
1359 * window.c (syms_of_window):
1360 * w32fns.c (syms_of_w32fns):
1361 * undo.c (syms_of_undo):
1362 * textprop.c (syms_of_textprop):
1363 * terminal.c (syms_of_terminal):
1364 * syntax.c (syms_of_syntax):
1365 * sound.c (syms_of_sound):
1366 * search.c (syms_of_search):
1367 * print.c (syms_of_print):
1368 * minibuf.c (syms_of_minibuf):
1369 * macros.c (syms_of_macros):
1370 * keymap.c (syms_of_keymap, initial_define_key)
1371 (initial_define_lispy_key):
1372 * keyboard.c (syms_of_keyboard):
1373 * insdel.c (syms_of_insdel):
1374 * image.c (syms_of_image):
1375 * fringe.c (syms_of_fringe):
1376 * frame.c (syms_of_frame):
1377 * fontset.c (syms_of_fontset):
1378 * fns.c (syms_of_fns):
1379 * fns.c (syms_of_fns):
1380 * fileio.c (syms_of_fileio):
1381 * fileio.c (syms_of_fileio):
1382 * eval.c (syms_of_eval):
1383 * doc.c (syms_of_doc):
1384 * dispnew.c (syms_of_display):
1385 * dired.c (syms_of_dired):
1386 * dbusbind.c (syms_of_dbusbind):
1387 * data.c (syms_of_data):
1388 * composite.c (syms_of_composite):
1389 * coding.c (syms_of_coding):
1390 * cmds.c (syms_of_cmds):
1391 * charset.c (define_charset_internal, syms_of_character):
1392 * ccl.c (syms_of_ccl):
1393 * category.c (syms_of_category, init_category_once):
1394 * casetab.c (syms_of_casetab):
1395 * casefiddle.c (syms_of_casefiddle):
1396 * callint.c (syms_of_callint):
1397 * bytecode.c (syms_of_bytecode):
1398 * buffer.c (keys_of_buffer, syms_of_buffer):
1399 * alloc.c (syms_of_alloc):
1400 * process.c (syms_of_process, init_process):
1401 * lread.c (syms_of_lread, init_obarray):
1402 * font.c (build_style_table):
1403 * emacs.c (syms_of_emacs, main): Replace calls to intern with
1404 intern_c_string, calls to make_pure_string with
1405 make_pure_c_string. Use pure_cons instead of Fcons.
1406
1407 * process.c (socket_options): Make it const.
1408 (set_socket_option, init_process): Use a const pointer.
1409
1410 * lread.c (intern_c_string): New function.
1411 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
1412 (defvar_int): Uset it. Make the name const char*.
1413
1414 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
1415 (defvar_int): Update prototypes.
1416 (DEFUN, EXFUN): Support for prototypes is now required.
1417 (intern_c_string): New prototype.
1418 (struct Lisp_Subr): Make symbol_name constant.
1419
1420 * font.c (struct table_entry): Remove unused member. Make NAMES
1421 constant.
1422 (weight_table, slant_table, width_table): Make constant.
1423
1424 * emacs.c (struct standard_args): Make name and longname constant.
1425
1426 * character.h (DEFSYM): Use intern_c_string.
1427
1428 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
1429
1430 * alloc.c (make_pure_c_string): New function.
1431
1432 * eval.c (Fautoload): Purecopy all arguments.
1433
1434 2009-11-05 Kenichi Handa <handa@m17n.org>
1435
1436 * fileio.c (Finsert_file_contents): Be sure set coding-system of
1437 the buffer in case of replace.
1438
1439 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
1440
1441 * puresize.h (BASE_PURESIZE): Increase to 1620000.
1442
1443 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
1444
1445 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
1446 when applicable (bug#4851).
1447
1448 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
1449 (P_): Support for prototypes is now required.
1450
1451 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
1452
1453 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
1454 (Bug#4827).
1455
1456 2009-10-30 Eli Zaretskii <eliz@gnu.org>
1457
1458 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
1459
1460 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
1461
1462 * puresize.h (BASE_PURESIZE): Increase to 1470000.
1463
1464 * lread.c (Fload): Purecopy the file name when building
1465 Vpreloaded_file_list.
1466
1467 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
1468
1469 * w32fns.c (syms_of_w32fns): Change default value of
1470 w32-scroll-lock-modifier to nil. (Bug#2827)
1471
1472 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
1473
1474 * minibuf.c (Fall_completions): Fix typos in docstring.
1475
1476 2009-10-26 Andreas Schwab <schwab@redhat.com>
1477
1478 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
1479
1480 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
1481
1482 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
1483 For delta < 0, skip check that only makes sense when the mini-window
1484 is going to be enlarged. (Bug#4534)
1485
1486 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
1487
1488 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
1489 string in menu maps (Bug#4471).
1490
1491 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
1492
1493 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
1494 FRAME_NS_VIEW on terminal frames (Bug#4765).
1495
1496 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
1497
1498 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
1499 DBUS_TYPE_UINTnn separately to get proper sign extension.
1500
1501 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
1502 can properly handle unsigned types.
1503 (make_uid, make_gid): Remove.
1504
1505 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
1506 types again.
1507
1508 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
1509 (system_process_attributes): Likewise.
1510
1511 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
1512
1513 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
1514
1515 * eval.c (Fautoload): Purecopy the filename. Simplify.
1516
1517 * category.c (Fdefine_category): Purecopy docstring.
1518
1519 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
1520
1521 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
1522
1523 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
1524
1525 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
1526
1527 * window.c (Fwindow_edges, Fwindow_pixel_edges)
1528 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
1529 (Bug#4775).
1530
1531 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1532
1533 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
1534 (init_fileio_once):
1535 * lisp.h (init_fileio_once): Remove.
1536 * emacs.c (main): Don't call init_fileio_once.
1537
1538 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
1539
1540 * puresize.h (BASE_PURESIZE): Increase to 1430000.
1541
1542 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
1543
1544 * doprnt.c (doprnt): Fix overflow check.
1545
1546 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
1547
1548 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
1549
1550 * xterm.h (x_wait_for_event): Declare it.
1551
1552 * xterm.c (pending_event_wait): New variable.
1553 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
1554 see pending_event_wait.eventtype.
1555 (handle_one_xevent): Don't change gravity when parent changes.
1556 (x_new_font): Call change_frame_size with new rows/columns before we
1557 try to resize the frame.
1558 (x_wait_for_event): New function.
1559 (x_set_window_size_1): Don't change gravity unless change_gravity
1560 is set.
1561 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
1562 don't change frame size, instead wait for the ConfigureNotify.
1563 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
1564 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
1565 (x_initialize): Initialize pending_event_wait.
1566
1567 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
1568 size.
1569
1570 * widget.c (EmacsFrameSetValues): Add comment.
1571 (EmacsFrameSetCharSize): Just call x_set_window_size.
1572
1573 * gtkutil.c (xg_frame_set_char_size): Flush events and call
1574 x_wait_for_event.
1575 (flush_and_sync): Remove again.
1576 (xg_get_font_name): Suggest monospace if no previous font is known.
1577
1578 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
1579
1580 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
1581 8th bit, since that only made sense in the ASCII world (bug#4751).
1582
1583 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1584
1585 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
1586 processing pending events when event is filtered for input method.
1587 (Bug#3681)
1588
1589 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
1590
1591 * fns.c: Add #endif accidentally removed in previous change.
1592
1593 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
1594
1595 * fns.c: Remove code for unsupported system: MAC_OS.
1596 * image.c: Likewise. Include setjmp.h.
1597
1598 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
1599
1600 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
1601 pixel -1 (bug #4742).
1602
1603 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
1604
1605 * process.c (create_pty): Remove conditionals for no longer
1606 supported systems: UNIPLUS and RTU.
1607
1608 * xterm.c:
1609 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
1610
1611 * alloc.c: Do not define struct catchtag.
1612 * eval.c: Move struct catchtag definition ...
1613 * lisp.h: ... here.
1614
1615 * image.c: Move png.h #include earlier to avoid warnings.
1616
1617 * xterm.c:
1618 * xsmfns.c:
1619 * xselect.c:
1620 * xrdb.c:
1621 * xmenu.c:
1622 * xftfont.c:
1623 * xfont.c:
1624 * xfns.c:
1625 * xfaces.c:
1626 * xdisp.c:
1627 * window.c:
1628 * widget.c:
1629 * w32xfns.c:
1630 * w32uniscribe.c:
1631 * w32term.c:
1632 * w32select.c:
1633 * w32reg.c:
1634 * w32proc.c:
1635 * w32menu.c:
1636 * w32inevt.c:
1637 * w32heap.c:
1638 * w32font.c:
1639 * w32fns.c:
1640 * w32console.c:
1641 * w32.c:
1642 * w16select.c:
1643 * vm-limit.c:
1644 * unexsol.c:
1645 * unexec.c:
1646 * unexcw.c:
1647 * unexaix.c:
1648 * undo.c:
1649 * tparam.c:
1650 * textprop.c:
1651 * terminfo.c:
1652 * terminal.c:
1653 * termcap.c:
1654 * term.c:
1655 * syntax.c:
1656 * sound.c:
1657 * sheap.c:
1658 * search.c:
1659 * scroll.c:
1660 * region-cache.c:
1661 * regex.c:
1662 * ralloc.c:
1663 * process.c:
1664 * print.c:
1665 * nsterm.m:
1666 * nsselect.m:
1667 * nsmenu.m:
1668 * nsimage.m:
1669 * nsfont.m:
1670 * nsfns.m:
1671 * msdos.c:
1672 * minibuf.c:
1673 * menu.c:
1674 * marker.c:
1675 * macros.c:
1676 * keymap.c:
1677 * keyboard.c:
1678 * intervals.c:
1679 * insdel.c:
1680 * indent.c:
1681 * gtkutil.c:
1682 * ftxfont.c:
1683 * ftfont.c:
1684 * fringe.c:
1685 * frame.c:
1686 * fontset.c:
1687 * font.c:
1688 * fns.c:
1689 * floatfns.c:
1690 * filelock.c:
1691 * fileio.c:
1692 * emacs.c:
1693 * editfns.c:
1694 * dosfns.c:
1695 * doprnt.c:
1696 * doc.c:
1697 * dispnew.c:
1698 * dired.c:
1699 * dbusbind.c:
1700 * data.c:
1701 * composite.c:
1702 * coding.c:
1703 * cmds.c:
1704 * cm.c:
1705 * chartab.c:
1706 * charset.c:
1707 * character.c:
1708 * ccl.c:
1709 * category.c:
1710 * casetab.c:
1711 * casefiddle.c:
1712 * callproc.c:
1713 * callint.c:
1714 * bytecode.c:
1715 * buffer.c:
1716 * atimer.c: Include setjmp.h. (Bug#4643)
1717
1718 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1719
1720 Remove leftover table unibyte_to_multibyte_table.
1721 * character.c (unibyte_to_multibyte_table): Remove.
1722 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
1723 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
1724 * character.h (UNIBYTE_TO_CHAR): New macro.
1725 (MAKE_CHAR_MULTIBYTE): Use it.
1726 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
1727 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
1728 (message_dolog, set_message_1):
1729 * search.c (Freplace_match):
1730 * editfns.c (Fcompare_buffer_substrings):
1731 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
1732 (concat):
1733 * insdel.c (copy_text, count_size_as_multibyte):
1734 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
1735 * term.c (produce_glyphs):
1736 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
1737 * regex.c (RE_CHAR_TO_MULTIBYTE):
1738 * cmds.c (internal_self_insert):
1739 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
1740
1741 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
1742
1743 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
1744
1745 * puresize.h (BASE_PURESIZE): Increase to 1310000.
1746
1747 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
1748
1749 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
1750
1751 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
1752
1753 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
1754 still needed under Tiger.
1755
1756 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
1757
1758 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
1759 __Apple__.
1760
1761 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
1762
1763 2009-10-15 Kenichi Handa <handa@m17n.org>
1764
1765 * print.c (print_object): Escape a symbol like "2E10" too.
1766
1767 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
1768
1769 Cleanups and changes for 64-bit compile under Snow Leopard.
1770 Based on suggestions by Erik Charlebois.
1771
1772 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
1773
1774 * nsfont.m (ns_char_width): Replace deprecated call.
1775 (ns_findfonts, nsfont_list_family): Use long format in printf, and
1776 cast argument.
1777 (nsfont_open): Use ns_char_width() everywhere.
1778 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
1779
1780 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
1781
1782 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
1783 where appropriate.
1784
1785 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
1786 where appropriate.
1787 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
1788 Use stringWithUTF8String.
1789 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
1790
1791 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
1792 Add formal protocol mention to inheritance.
1793 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
1794
1795 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
1796 Fix printf format.
1797 (ns_query_color): Use CGFloat where appropriate.
1798 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
1799 (EmacsScroller-mouseDown:): Use long format in printf, and cast
1800 argument.
1801
1802 * config.in (NS_HAVE_NSINTEGER): Drop.
1803
1804 * dbusbind.c (dbus-method-return-internal)
1805 (dbus-method-error-internal): Use long format in printf, and cast
1806 argument.
1807
1808 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
1809 in printf, and cast argument.
1810
1811 * process.c (list_processes_1): Use long format in printf, and
1812 cast argument.
1813
1814 2009-10-11 Glenn Morris <rgm@gnu.org>
1815
1816 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
1817
1818 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
1819
1820 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
1821 menu bar with a small width so it doesn't enlarge the frame.
1822
1823 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
1824
1825 * fontset.c (Fset_fontset_font): Fix typos in error messages.
1826
1827 2009-10-06 Glenn Morris <rgm@gnu.org>
1828
1829 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
1830 SOME_MACHINE_LISP (this enters indirectly via DOC).
1831
1832 2009-10-05 Eli Zaretskii <eliz@gnu.org>
1833
1834 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
1835
1836 2009-10-04 Eli Zaretskii <eliz@gnu.org>
1837
1838 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
1839 Doc fix.
1840
1841 2009-10-03 Martin Rudalics <rudalics@gmx.at>
1842
1843 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
1844
1845 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
1846
1847 * lisp.h (Qdelete_directory_internal): Remove, because it is not
1848 used anymore outside fileio.c.
1849
1850 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
1851
1852 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
1853
1854 * lisp.h (Qdelete_directory_internal):
1855 Declare, instead of Qdelete_directory.
1856
1857 * w32fns.c (Fsystem_move_file_to_trash): Use it.
1858
1859 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1860
1861 * eval.c (Fcalled_interactively_p): Add `kind' argument.
1862
1863 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
1864
1865 * fileio.c (Fdelete_directory_internal): Rename from
1866 Fdelete_directory. It is not a command anymore. It has no file
1867 name handler.
1868
1869 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1870
1871 * xdisp.c (get_next_display_element): Use an enum in last change.
1872
1873 2009-09-28 Kenichi Handa <handa@m17n.org>
1874
1875 * xdisp.c (get_next_display_element): Pay attention to
1876 unibyte_display_via_language_environment in handling
1877 Vnobreak_char_display.
1878
1879 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
1880
1881 * nsterm.h (ns_app_name): New extern variable.
1882
1883 * nsterm.m (ns_app_name): New variable.
1884 (ns_term_init): Set and use it.
1885 (ns_term_shutdown): Use it.
1886
1887 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
1888 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
1889
1890 * nsfns.m (ns_set_name_iconic, ns_set_name)
1891 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
1892 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
1893
1894 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
1895 Remove double-casting in client_data comparison.
1896
1897 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1898
1899 * keyboard.c (make_lispy_event): Remember last wheel direction.
1900 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
1901
1902 2009-09-26 Glenn Morris <rgm@gnu.org>
1903
1904 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
1905 internal.elc. Add term/pc-win.elc.
1906 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
1907 term/x-win.elc.
1908 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
1909 term/w32-win.elc.
1910 (NS_SUPPORT): New.
1911 (lisp): Add NS_SUPPORT.
1912 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
1913
1914 2009-09-25 David Reitter <david.reitter@gmail.com>
1915
1916 * nsmenu.m (EmacsMenu-clear): Recognize application menu
1917 on Mac OS X 10.6+ (bug#4513).
1918
1919 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
1920
1921 * frame.c (xrdb_get_resource): Return nil for empty string resources;
1922 some parts of Emacs code (like font selection) don't grok them.
1923 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
1924
1925 2009-09-24 Andreas Schwab <schwab@redhat.com>
1926
1927 * coding.c (decode_coding_iso_2022): Fix operator precedence.
1928
1929 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
1930
1931 * dired.c (Fdirectory_files): Fix typo in docstring.
1932
1933 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
1934
1935 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
1936 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
1937 (EmacsScroller-setPosition:portion:whole:): Remove -display call
1938 under GNUstep.
1939 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
1940
1941 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
1942 glyph advancement.
1943
1944 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
1945
1946 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
1947 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
1948
1949 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
1950 deleted (bug #4492).
1951
1952 * nsfont.m (Vns_reg_to_script): New lisp variable.
1953 (syms_of_nsfont): Declare it.
1954 (ns_registry_to_script): New function.
1955 (ns_get_req_script): Call it.
1956 (ns_findfonts): Don't give up on non-unicode registry.
1957
1958 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
1959
1960 2009-09-20 Tom Tromey <tromey@redhat.com>
1961
1962 * eval.c (find_handler_clause): Make stack-trace-on-error work in
1963 batch mode (bug#4228).
1964
1965 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
1966
1967 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
1968 carefully. (Bug #4339)
1969
1970 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
1971
1972 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
1973
1974 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
1975
1976 * emacs.c (inhibit_x_resources): Update doc string for NS.
1977 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
1978 legacy code for -NXHost. Fix error printf in daemon case.
1979
1980 * nsterm.h (ns_no_defaults): Remove.
1981
1982 * nsterm.m (ns_no_defaults): Remove.
1983 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
1984 (ns_use_qd_smoothing): Remove legacy variable.
1985 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
1986 don't update the NSWindow itself.
1987 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
1988 state detection and store user rect ourselves. (Bug #3581)
1989
1990 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
1991 ns_use_qd_smoothing.
1992
1993 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
1994 platform versions. Drop support for emacs-20-style face specs.
1995 (x-close-connection): Drop PSFlush() under OS X.
1996 (x-focus-frame): Activate the app first. (Bug #4180)
1997
1998 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
1999
2000 * emacs.c (inhibit_x_resources): New variable.
2001 (main) [HAVE_NS]: Don't process --quick command line option.
2002 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
2003
2004 * lisp.h (inhibit_x_resources): Declare it extern.
2005
2006 * w32reg.c (x_get_string_resource):
2007 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
2008
2009 2009-09-17 Eli Zaretskii <eliz@gnu.org>
2010
2011 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
2012 Add lisp/term/internal.elc.
2013
2014 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
2015
2016 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
2017 (bug#4461).
2018
2019 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
2020
2021 * puresize.h (BASE_PURESIZE): Increase to 1290000.
2022
2023 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
2024 (OBJECTS_MACHINE): Remove, unused.
2025
2026 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
2027
2028 * frame.c (x_get_resource_string): Remove unused.
2029
2030 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
2031
2032 * xterm.c (x_new_font): Call change_frame_size before calling
2033 x_set_window_size, in case frame size won't change.
2034
2035 * frame.c (x_set_font): Remove dead code.
2036
2037 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
2038
2039 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
2040
2041 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2042
2043 * lread.c (Fload): Don't output a message after loading an obsolete
2044 package any more (done in Lisp now).
2045
2046 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
2047
2048 * fns.c (syms_of_fns): Doc fix (Bug#4227).
2049
2050 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2051
2052 * keymap.c (Fwhere_is_internal): Use nconc2.
2053
2054 2009-09-11 Alan Mackenzie <acm@muc.de>
2055
2056 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
2057 batch mode.
2058
2059 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
2060
2061 * xdisp.c (display_mode_element): Detect cycles.
2062
2063 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2064
2065 * keymap.c (where_is_internal): Don't erroneously return nil right after
2066 filling the cache.
2067 (where_is_internal_1): Fix up typo.
2068
2069 2009-09-11 Glenn Morris <rgm@gnu.org>
2070
2071 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
2072 share a common doc-string.
2073
2074 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2075
2076 * keymap.c (get_keymap): Return the actual keymap symbol rather than
2077 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
2078
2079 * keymap.c (QCadvertised_binding): New constant.
2080 (syms_of_keymap): Initialize it.
2081 (Fwhere_is_internal): Try and use bindings from :advertised-binding
2082 if applicable.
2083
2084 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2085
2086 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
2087 (parse_menu_item): Streamline since bindings are recomputed all the
2088 time anyway. Don't bother checking Vdefine_key_rebound_commands any
2089 more and don't support lmenu's menu-alias any more either.
2090
2091 * keymap.c (where_is_internal_data): Make noindirect a boolean.
2092 (where_is_internal): Strip it down to only traverse the keymaps.
2093 Move the cache handling from Fwhere_is_internal to here.
2094 (Fwhere_is_internal): Move the handling of remapping and the choice of
2095 the best binding from where_is_internal to here.
2096 Unify the cached/noncached paths, so remapping is also handled
2097 correctly when the cache is used, and so the cache can be used to
2098 speed up remap-handling when applicable.
2099 Give preference to non-remapped bindings.
2100 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
2101 non-remapped bindings.
2102 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
2103 command remapping.
2104
2105 * xdisp.c (display_mode_element): Move list length limit from 50 to
2106 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
2107
2108 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
2109
2110 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
2111
2112 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2113
2114 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
2115 (Bug#4334)
2116
2117 * keymap.c (where_is_internal): Filter out shadowed remappings.
2118 Assume that where_is_internal returns unshadowed bindings to simplify
2119 the code and get rid of the gotos. Use ASIZE.
2120
2121 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
2122
2123 * xterm.c (x_focus_changed): If we get a focusout and pointer
2124 is invisible, make it visible.
2125
2126 * xterm.h: Remove condition for declaration of
2127 x_*_window_to_frame.
2128
2129 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2130
2131 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
2132 initial terminal as well.
2133
2134 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
2135
2136 * xterm.h: Rename x_non_menubar_window_to_frame to
2137 x_menubar_window_to_frame.
2138
2139 * xterm.c: Remove declarations also in xterm.h
2140 (XTmouse_position): Do not return valid positions
2141 for clicks in the menubar and the toolbar for Gtk+.
2142
2143 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
2144 if the widget for the event has the same top level as a frame,
2145 return the frame.
2146 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
2147 internal windows, bug #4122.
2148 (x_non_menubar_window_to_frame): Remove.
2149
2150 2009-09-02 Glenn Morris <rgm@gnu.org>
2151
2152 * buffer.c (default-major-mode): Move most of the doc from here...
2153 (major-mode): ... to here.
2154
2155 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
2156
2157 * process.c (wait_reading_process_output): Keep the descriptor
2158 when pty is used by a non-child process, e.g., in I/O buffer of
2159 GDB this allows inferior to be restarted.
2160
2161 2009-08-29 Eli Zaretskii <eliz@gnu.org>
2162
2163 * xdisp.c (redisplay_internal): Remove redundant test and collapse
2164 both branches into one.
2165
2166 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2167
2168 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
2169 (main): Use enable-multibyte-characters rather than
2170 default-enable-multibyte-characters. Output a warning message when
2171 running a unibyte session.
2172
2173 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2174
2175 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
2176 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
2177 (copy_data_segment): Also copy __program_vars section.
2178 (copy_dyld_info) [LC_DYLD_INFO]: New function.
2179 (dump_it) [LC_DYLD_INFO]: Use it.
2180
2181 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
2182
2183 2009-08-28 Eli Zaretskii <eliz@gnu.org>
2184
2185 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
2186 $(SRC)/buildobj.h.
2187 (buildobj.h): Renamed from $(SRC)/buildobj.h.
2188 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
2189 $(SRC)/buildobj.h.
2190 (clean): Add buildobj.h.
2191
2192 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
2193
2194 * print.c (print_object): Set escapeflag to 1 when printing
2195 hashtable keys and values.
2196
2197 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
2198
2199 * lread.c (read_integer): Use doubles (and potentially return a float
2200 number) as we do in string-to-number.
2201 (read1): Use strtol to read integers, signal errors on strtol's
2202 overflow and use floats if strtol's output is too large for
2203 Elisp integers.
2204
2205 2009-08-27 Eli Zaretskii <eliz@gnu.org>
2206
2207 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
2208 (make-buildobj-SH): Fix last change.
2209 (SRC): Move to before where it's first used.
2210
2211 2009-08-27 Kenichi Handa <handa@m17n.org>
2212
2213 * process.c (send_process): Use encode_coding_object instead of
2214 encode_coding_string to perform eol-conversion even if the string
2215 is unibyte.
2216
2217 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
2218 character.
2219
2220 * cmds.c (Fself_insert_command): Avoid unnecessay
2221 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
2222
2223 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
2224
2225 * callproc.c (Fcall_process): Remove always true #if.
2226
2227 * lisp.h: Replace #if 0 code for checking with text pointing to
2228 the --enable-checking configure flag.
2229
2230 * emacs.c (main): Mention the --enable-profiling configure flag
2231 instead of using CFLAGS.
2232
2233 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
2234
2235 * Makefile.in (buildobj.h): New target.
2236 (doc.o): Depend on it.
2237 (temacs${EXEEXT}): Don't generate buildobj.lst.
2238 (mostlyclean): Delete buildobj.h, not buildobj.lst.
2239 * makefile.w32-in ($(SRC)/buildobj.h): New target.
2240 ($(BLD)/doc.$(O)): Depend on it.
2241 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
2242 provided by Eli Zaretskii.)
2243 ($(TEMACS)): Don't generate buildobj.lst.
2244 * doc.c: Include buildobj.h.
2245 (buildobj): New static variable.
2246 (Fsnarf_documentation): Use it, instead of opening and reading
2247 buildobj.lst.
2248
2249 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
2250
2251 * dbusbind.c (Fdbus_call_method)
2252 (Fdbus_call_method_asynchronously): Use English numeric format for
2253 timeout values in doc string.
2254
2255 2009-08-25 Kenichi Handa <handa@m17n.org>
2256
2257 * alloc.c (mark_char_table): New function.
2258 (mark_object): Use mark_char_table for a char-table.
2259
2260 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
2261 (CHAR_TABLE_REF): Use it.
2262
2263 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
2264
2265 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
2266 before invoking the newly build emacs to check for load-path
2267 shadowing.
2268
2269 2009-08-22 Glenn Morris <rgm@gnu.org>
2270
2271 * Makefile.in (bootstrap_exe): New variable.
2272 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
2273 Use ${bootstrap_exe}.
2274
2275 2009-08-22 Eli Zaretskii <eliz@gnu.org>
2276
2277 * coding.h (encode_coding_string): Don't encode unibyte strings.
2278 (Bug#4047)
2279
2280 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
2281
2282 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
2283
2284 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
2285 intended as hotfix only.
2286 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
2287
2288 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
2289
2290 * nsterm.m (ns_get_color): Update documentation properly for last
2291 change, and clean up loose ends in the code left by it. Fix
2292 longstanding bug with 16-bit hex parsing, and add support for
2293 yet another X11 format (rgb:r/g/b) for compatibility.
2294 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
2295 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
2296
2297 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2298
2299 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
2300
2301 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
2302
2303 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
2304 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
2305 (xd_initialize, xd_pending_messages): Check, whether
2306 $DBUS_SESSION_BUS_ADDRESS is set.
2307
2308 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2309
2310 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
2311
2312 * nsterm.m (ns_get_color): Remove incompatible color formats again.
2313
2314 2009-08-20 Glenn Morris <rgm@gnu.org>
2315
2316 * emacs.c (system-type): Doc fix.
2317
2318 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
2319
2320 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
2321 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
2322
2323 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
2324
2325 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
2326 New functions.
2327 (xd_initialize): Revert change from 2009-08-16.
2328
2329 2009-08-18 Kenichi Handa <handa@m17n.org>
2330
2331 * fontset.c (Ffontset_font): If a nil element is found in a
2332 font-group vector, return nil.
2333
2334 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
2335
2336 * process.c (status_notify): Don't perform redisplay.
2337 (Fdelete_process, list_processes_1, process_send_signal):
2338 Expliticly perform redisplay.
2339 (wait_reading_process_output): Always check process status, but
2340 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
2341
2342 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
2343
2344 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
2345 (XFLOAT_INIT): New macro for storing a float value.
2346 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
2347 * fns.c (sxhash): Copy out the value of a float in order to
2348 examine its bytes.
2349 * dbusbind.c (xd_append_arg): Likewise.
2350
2351 * emacs.c (main): Don't call syms_of_data twice.
2352
2353 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
2354
2355 * dbusbind.c (xd_initialize): Add connection file descriptor to
2356 input_wait_mask, in order to let select() detect, whether a new
2357 message has been arrived.
2358 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
2359
2360 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
2361
2362 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
2363 New functions.
2364
2365 * lisp.h (xd_pending_messages): Declare.
2366
2367 * keyboard.c (readable_events): Call xd_pending_messages.
2368
2369 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
2370
2371 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
2372
2373 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
2374
2375 * buffer.c (set_buffer_internal_1)
2376 (swap_out_buffer_local_variables): Check for unbound local
2377 variables (Bug#4138).
2378
2379 2009-08-14 Eli Zaretskii <eliz@gnu.org>
2380
2381 * process.c (create_pty): Fix last change.
2382
2383 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
2384
2385 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
2386 (xbm_load_image): Caller changed.
2387 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
2388
2389 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
2390
2391 * process.c (create_pty): New function.
2392 (Fstart_process): Use it to allow Emacs to just associate a pty
2393 with the buffer. See associated change in gdb-mi.el.
2394 (list_processes_1): Deal with no program name.
2395 (start_process_unwind): Use pid == -2 to mean no process.
2396
2397 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
2398
2399 * cmds.c (nonundocount): New global variable.
2400 (keys_of_cmds): Initialize it.
2401 (Fself_insert_command): Use it to combine upto 20 sequential chars
2402 into a single undo entry, just like the Qself_insert_command code in
2403 keyboard.c does.
2404 Call frame_make_pointer_invisible, also like the Qself_insert_command
2405 code in keyboard.c does.
2406 * keyboard.c (command_loop_1): Use the new global nonundocount rather
2407 than its own local replacement for it.
2408
2409 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
2410
2411 * fns.c (concat): Don't re-set string length to its current value.
2412
2413 * coding.h (decode_coding_string, encode_coding_string):
2414 Use SBYTES macro.
2415
2416 * doprnt.c (doprnt_lisp): Delete unused function.
2417 (doprnt): Merge with doprnt1, discarding lispstrings code.
2418 * lisp.h (doprnt_lisp): Don't declare.
2419
2420 2009-08-07 Juri Linkov <juri@jurta.org>
2421
2422 * puresize.h (BASE_PURESIZE): Increase to 1270000.
2423
2424 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
2425
2426 * print.c (syms_of_print): Undo previous change.
2427
2428 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
2429
2430 * lread.c (read1, syms_of_lread): Read hashtables back from the
2431 readable format.
2432
2433 * print.c (print_preprocess, print_object): Print hashtables fully
2434 and readably.
2435 (syms_of_print): Provide 'hashtable-print-readable.
2436
2437 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
2438
2439 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
2440 no family set.
2441 (nsfont_open): Handle case when entity has no family.
2442
2443 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
2444
2445 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
2446 element, not a list, for match case.
2447
2448 2009-07-28 Kenichi Handa <handa@m17n.org>
2449
2450 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
2451 rigidly.
2452
2453 * xfont.c (xfont_list_pattern): Don't ignore the return value of
2454 font_parse_xlfd. Check font properties more rigidly.
2455
2456 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
2457
2458 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
2459 bsd-common.h.
2460
2461 2009-07-27 Kenichi Handa <handa@m17n.org>
2462
2463 * xfaces.c (face_with_height): Call font_clear_prop.
2464
2465 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
2466
2467 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
2468
2469 * xterm.c (x_term_init): Use Qx.
2470
2471 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
2472
2473 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
2474 (ns_get_color): Revert 2009-07-16 change.
2475
2476 2009-07-25 Eli Zaretskii <eliz@gnu.org>
2477
2478 * lread.c (syms_of_lread) <force_load_messages>: New variable.
2479 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
2480
2481 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
2482
2483 * coding.h (decode_coding_string, encode_coding_string):
2484 Use SCHARS macro.
2485
2486 * lread.c: Rewrite 2009-07-21 changes.
2487 (load_depth): Delete.
2488 (Qload_in_progress): New variable.
2489 (load_unwind): Don't reference load_depth or load_in_progress.
2490 (Fload): Likewise; specbind Qload_in_progress instead.
2491 (init_lread): Don't initialize load_depth.
2492 (syms_of_lread): Initialize and protect Qload_in_progress.
2493
2494 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
2495
2496 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
2497
2498 2009-07-23 Yavor Doganov <yavor@gnu.org>
2499
2500 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
2501
2502 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
2503
2504 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
2505 Bugs 3792, 3720, 2402.
2506 (ns_lookup_indexed_color): Check for bad index.
2507 (ns_index_color): Init unused slot to 0.
2508 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
2509 Bug 3714, possibly 3082.
2510
2511 2009-07-22 Jason Rumney <jasonr@gnu.org>
2512
2513 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
2514 Position IME window at cursor (Bug#2570).
2515 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
2516 (globals_of_w32fns): Dynamically load functions required above.
2517
2518 * w32term.c (w32_draw_window_cursor): Send message to reposition
2519 any IME window.
2520
2521 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
2522
2523 * fileio.c: Revert 2009-07-16 changes.
2524 (Vauto_save_include_big_deletions): New variable.
2525 (Fdo_auto_save): Disable auto-save only if
2526 auto-save-include-big-deletions is nil.
2527
2528 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
2529
2530 * xdisp.c (move_it_to): For continued lines ending in a tab, take
2531 the overflowed pixels into account (Bug#3879).
2532
2533 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
2534
2535 * lread.c (load_depth): New variable.
2536 (Fload, load_unwind, init_lread): Set it to the load recursion
2537 depth; set load_in_progress as a simple boolean based on the
2538 current load_depth. (Bug#3892)
2539
2540 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
2541
2542 * nsfont.m (ns_has_attribute): Remove.
2543 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
2544
2545 2009-07-18 Juri Linkov <juri@jurta.org>
2546
2547 * process.c (Fset_process_query_on_exit_flag): Mention killing
2548 a buffer in docstring.
2549
2550 2009-07-17 Kenichi Handa <handa@m17n.org>
2551
2552 * casetab.c (shuffle): Fix the logic of setting up the cycle.
2553
2554 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2555
2556 * nsfns.m (Fns_set_alpha): Remove function.
2557 (syms_of_nsfns): Don't defsubr it.
2558
2559 * nsterm.m (ns_get_color): Remove incompatible color formats.
2560 (ns_color_to_lisp): Generate #rrggbb color format string.
2561
2562 2009-07-16 Richard Stallman <rms@gnu.org>
2563
2564 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
2565 (Fset_buffer_auto_saved): Handle save_length = -2.
2566
2567 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
2568
2569 * xterm.c (Qx_gtk_map_stock): New var.
2570
2571 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
2572 of calling intern each time.
2573
2574 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2575
2576 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
2577 does tiling.
2578
2579 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
2580
2581 2009-07-14 Kenichi Handa <handa@m17n.org>
2582
2583 * font.c (font_vconcat_entity_vectors): New function.
2584 (struct font_sort_data): New member font_driver_preference.
2585 (font_compare): Check font_driver_preference.
2586 (font_sort_entities): The format of the first argument changed.
2587 (font_delete_unmatched): Likewise.
2588 (font_list_entities): The return type changed.
2589 (font_select_entity): The format of the second argument changed.
2590 (font_find_for_lface): Adjuste for the above changes.
2591 Don't suppress the checking of C even if the repertory supports it.
2592 (Flist_fonts): Adjust for the above changes.
2593
2594 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
2595 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
2596 Reject a font who has adstyle property that is different from a
2597 langname derived from registry property.
2598 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
2599
2600 2009-07-13 Eli Zaretskii <eliz@gnu.org>
2601
2602 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
2603 local copy of dirfilename.
2604
2605 2009-07-13 Kenichi Handa <handa@m17n.org>
2606
2607 * chartab.c (sub_char_table_ref_and_range): Fix the range check
2608 against max_char.
2609
2610 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
2611 calling XSYMBOL (sym).
2612
2613 2009-07-11 Eli Zaretskii <eliz@gnu.org>
2614
2615 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
2616 New function.
2617 (directory_files_internal) [WINDOWSNT]:
2618 Bind w32-get-true-file-attributes to either t or nil, depending whether
2619 the filesystem of the directory is fast or slow.
2620
2621 * w32.c (logon_network_drive): Don't assume PATH is an absolute
2622 file name.
2623 (is_slow_fs): New function.
2624 (stat): Use it to determine whether to issue more system calls to
2625 get accurate file attributes, when w32-get-true-file-attributes is
2626 `local'.
2627
2628 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
2629
2630 * xfns.c (Fx_select_font): Remember last font selected in
2631 x_last_font_name and use that the next time. Also try the frame
2632 parameter font-parameter as default to the font dialog.
2633
2634 2009-07-10 Kenichi Handa <handa@m17n.org>
2635
2636 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
2637
2638 2009-07-09 Eli Zaretskii <eliz@gnu.org>
2639
2640 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
2641
2642 * w32.c (stat): Treat UNC file names as residing on remote
2643 drives. (Bug#3542)
2644
2645 2009-07-09 Kenichi Handa <handa@m17n.org>
2646
2647 * fontset.c (fontset_find_font): Fix previous change.
2648
2649 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
2650
2651 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
2652 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
2653 error flag.
2654
2655 2009-07-08 Kenichi Handa <handa@m17n.org>
2656
2657 * fontset.c (fontset_find_font): Fix the logic of handling
2658 charset_matched.
2659 (font_for_char): Delete unused var.
2660 (generate_ascii_font_name): Delete it.
2661
2662 * coding.h (JIS_TO_SJIS2): Fix the code range check.
2663
2664 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
2665 (encode_coding_sjis): Fix the code range check.
2666
2667 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
2668
2669 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
2670 (Fexpand_file_name): Copy string data properly (Bug#3772).
2671
2672 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
2673
2674 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
2675 first MapNotify.
2676
2677 2009-07-07 Kenichi Handa <handa@m17n.org>
2678
2679 * character.h (unibyte_has_multibyte_table): Delete extern.
2680 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
2681
2682 * charset.c (Fset_charset_priority): Update charset_unibyte.
2683 (syms_of_charset): Initialize charset_unibyte.
2684
2685 * character.c (unibyte_has_multibyte_table): Delete it.
2686 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
2687 charset_unibyte.
2688 (multibyte_char_to_unibyte_safe): Likewise.
2689 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
2690
2691 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
2692 (x_produce_glyphs): Likewise.
2693
2694 * .gdbinit (xcharset): Fix the treating $arg0.
2695
2696 2009-07-04 Eli Zaretskii <eliz@gnu.org>
2697
2698 Emulation of `getloadavg' on MS-Windows.
2699 * w32.c: Include float.h
2700 (g_b_init_get_native_system_info, g_b_init_get_system_times)
2701 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
2702 (get_native_system_info, get_system_times): New functions.
2703 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
2704 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
2705 (globals_of_w32): Initialize g_b_init_get_native_system_info,
2706 g_b_init_get_system_times, and num_of_processors.
2707
2708 2009-07-03 Jason Rumney <jasonr@gnu.org>
2709
2710 * w32term.c (w32_initialize): Use standard types.
2711
2712 2009-07-03 Eli Zaretskii <eliz@gnu.org>
2713
2714 * dired.c (Ffile_attributes): Decode user and group names by the
2715 locale's encoding. (Bug#3443)
2716
2717 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
2718
2719 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
2720 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
2721
2722 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
2723
2724 * term.c (init_tty): Remove spurious #ifdef.
2725
2726 * m/mips.h: Mention this file is also used for netbsd.
2727 * m/pmax.h: Remove file.
2728
2729 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
2730
2731 * xterm.h (struct x_display_info): Add invisible_cursor.
2732 (struct x_output): Add current_cursor.
2733
2734 * xterm.c (XTtoggle_invisible_pointer): New function.
2735 (x_define_frame_cursor): Don't define cursor if invisible or the
2736 same as before. Set current_cursor.
2737 (x_create_terminal): Set toggle_invisible_pointer_hook.
2738
2739 * xfns.c (make_invisible_cursor): New function.
2740 (x_set_mouse_color): Call make_invisible_cursor.
2741 Set current_cursor.
2742 (x_window): Set current_cursor.
2743
2744 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
2745
2746 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
2747 inserting a character.
2748 (read_avail_input): Call frame_make_pointer_visible.
2749
2750 * frame.c (Vmake_pointer_invisible): New variable.
2751 (frame_make_pointer_invisible, frame_make_pointer_visible):
2752 New functions.
2753 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
2754
2755 * frame.h: Declare frame_make_pointer_invisible and
2756 frame_make_pointer_visible.
2757 (struct frame): Add pointer_invisible.
2758
2759 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
2760
2761 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
2762 frame isn't visible.
2763 (xg_frame_resized): If width/height is -1, get size of window
2764 from X server.
2765
2766 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
2767 for MapNotify.
2768
2769 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
2770 here or call change_frame_size. Just call flush_and_sync.
2771 (flush_and_sync): Reintroduce.
2772
2773 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
2774
2775 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
2776
2777 * xterm.c (x_handle_net_wm_state): Also look for sticky.
2778 (x_term_init): Initialize Xatom_net_wm_state_sticky.
2779
2780 * frame.h: Declare Qsticky.
2781
2782 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
2783
2784 * nsfns.m (ns_frame_parm_handlers): Ditto.
2785
2786 * frame.c: Declare Qsticky.
2787 (frame_parms): Add sticky.
2788
2789 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
2790
2791 * xterm.h: Declare x_set_sticky.
2792
2793 * xterm.c (x_set_sticky): New function.
2794
2795 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
2796 (xg_tool_bar_menu_proxy): Attach enter/leave events to
2797 xg_tool_bar_proxy_help_callback.
2798
2799 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
2800
2801 * frame.c: Qmaximized is new.
2802 (x_set_frame_parameters): Do not handle fullscreen specially.
2803 Only set width and height if explicitly set.
2804 (x_set_fullscreen): Handle Qmaximized.
2805 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
2806 (syms_of_frame): Initialize Qmaximized.
2807
2808 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
2809 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
2810
2811 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
2812 for Expose event. Add call to x_check_fullscreen for MapNotify event.
2813 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
2814 set gravity to NorthWestGravity when USE_GTK.
2815 (set_wm_state): New function.
2816 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
2817 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
2818 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
2819 or the case when no window manager is running. That means remove calls
2820 to x_real_positions and x_fullscreen_adjust.
2821
2822 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
2823 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
2824 flush_and_sync.
2825 (xg_height_changed): New function.
2826 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
2827 and gtk_window_set_policy. Set frame gravity after parsing the
2828 geometry string.
2829 (xg_update_frame_menubar, free_frame_menubar)
2830 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
2831 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
2832 Remove calls to xg_frame_set_char_size.
2833
2834 2009-07-01 Kenichi Handa <handa@m17n.org>
2835
2836 * keyboard.c (decode_keyboard_code): New function.
2837 (tty_read_avail_input): Decode the input bytes if necessary.
2838
2839 * coding.c (setup_coding_system):
2840 Initialize coding->carryover_bytes to 0.
2841 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
2842 use Qno_conversion.
2843
2844 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2845
2846 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
2847
2848 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
2849
2850 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
2851
2852 2009-06-30 Jason Rumney <jasonr@gnu.org>
2853
2854 * w32term.c (w32_initialize): Use GetModuleHandle for library that
2855 is already loaded.
2856 Set user model ID if supported (bug#1849).
2857
2858 2009-06-29 Jim Meyering <meyering@redhat.com>
2859
2860 Remove useless if-before-xfree test.
2861 * nsfont.m (nsfont_close): Remove useless test.
2862 * term.c (delete_tty): Likewise.
2863 * w32.c (system_process_attributes): Likewise.
2864 * w32font.c (w32font_close): Likewise.
2865 * xfaces.c (x_free_gc): Likewise.
2866 * xselect.c (buffer): Likewise.
2867
2868 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
2869
2870 * process.c (send_process): Keep decoded string in a local
2871 variable and protect it from GC. (Bug#3521)
2872
2873 2009-06-28 Eli Zaretskii <eliz@gnu.org>
2874
2875 * term.c (create_tty_output) [MSDOS]: #ifdef away.
2876 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
2877
2878 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
2879
2880 * xdisp.c (start_display, handle_face_prop)
2881 (move_it_vertically_backward, cursor_row_fully_visible_p)
2882 (redisplay_window, try_window_id, produce_image_glyph):
2883 Delete some #ifdef-ed out code chunks that are now obsolete.
2884
2885 * xterm.c (x_update_window_begin, x_new_focus_frame)
2886 (x_scroll_bar_handle_click, handle_one_xevent)
2887 (handle_one_xevent, XTread_socket, x_focus_on_frame)
2888 (x_make_frame_visible, x_make_frame_invisible)
2889 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
2890 code chunks that are now obsolete.
2891
2892 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
2893
2894 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
2895 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
2896 for hours, when optimzation is enabled.
2897 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
2898 (xd_read_message): Make them static.
2899
2900 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
2901
2902 * term.c (turn_on_face): Allow simultaneously bold and dim
2903 terminal faces (Bug#3530).
2904
2905 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
2906
2907 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
2908
2909 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
2910 truncation glyphs (Bug#3686).
2911
2912 2009-06-27 Glenn Morris <rgm@gnu.org>
2913
2914 * m/pmax.h: Restore file, with only netbsd portions.
2915
2916 2009-06-26 David Reitter <david.reitter@gmail.com>
2917
2918 * nsterm.m (keydown): Avoid infinite loop.
2919
2920 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
2921
2922 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
2923 the arg FORCE_SYMBOL.
2924
2925 2009-06-25 Kenichi Handa <handa@m17n.org>
2926
2927 * fontset.c (fontset_find_font): When a usable rfont_def is found
2928 in a fallback font-group, make it the first element of the group.
2929
2930 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
2931
2932 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
2933
2934 2009-06-24 Kenichi Handa <handa@m17n.org>
2935
2936 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
2937 set for C.
2938 (fontset_font): Record the availability of a font for C both in
2939 the realized fontsets of the current one and the default one.
2940
2941 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
2942
2943 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
2944 conditional, it is always defined on AIX.
2945
2946 2009-06-23 Miles Bader <miles@gnu.org>
2947
2948 * window.c (Vrecenter_redisplay): New variable.
2949 (syms_of_window): Initialize it.
2950 (Qtty): New extern declaration.
2951 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
2952
2953 2009-06-23 Jim Meyering <meyering@redhat.com>
2954
2955 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
2956 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
2957 pointer dereferences are guaranteed to be valid.
2958
2959 2009-06-23 Kenichi Handa <handa@m17n.org>
2960
2961 * emacs.c (main): Call init_font ().
2962
2963 * font.h (Vfont_log): Extern it.
2964 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
2965
2966 * font.c (font_sort_entities, font_list_entities)
2967 (font_matching_entity, font_open_entity)
2968 (font_close_object): Change font_add_log to FONT_ADD_LOG.
2969 (Vfont_log): Delete static.
2970 (font_log_env_checked): Delete this variable.
2971 (font_add_log): Don't check font_log_env_checked.
2972 (font_deferred_log): Check Vfont_log.
2973 (init_font): New function.
2974
2975 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
2976
2977 * w32font.c: Change font_add_log to FONT_ADD_LOG.
2978
2979 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
2980
2981 * xfont.c: Change font_add_log to FONT_ADD_LOG.
2982
2983 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
2984 (face_for_char): Don't call font_deferred_log here.
2985 (font_for_char): Likewise.
2986
2987 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
2988
2989 * w32term.c (x_draw_glyph_string): Use the glyph string's width
2990 rather than its background_width for drawing the overline and
2991 underline (Bug#489).
2992
2993 * xterm.c (x_draw_glyph_string): Use the glyph string's width
2994 rather than its background_width for drawing the overline and
2995 underline (Bug#489).
2996 (xg_default_icon_file): New variable.
2997 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
2998 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
2999
3000 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
3001 (load_overlay_strings): Remove externs.
3002 (fast_find_position): Function deleted.
3003 (mouse_face_from_buffer_pos): New function, based on
3004 fast_find_position. Correctly handle before-strings,
3005 display-strings, and after-strings (Bug#1220).
3006 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
3007
3008 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
3009
3010 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
3011 (move_it_in_display_line_to, move_it_in_display_line_to)
3012 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
3013
3014 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
3015
3016 * Branch for 23.1.
3017
3018 2009-06-21 Jason Rumney <jasonr@gnu.org>
3019
3020 * w32term.c (keyboard_codepage): New static variable.
3021 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
3022 (w32_read_socket) [WM_CHAR]: Use it to decode character
3023 input (bug#3237).
3024 (w32_initialize): Initialize it.
3025 (codepage_for_locale): New function.
3026
3027 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
3028
3029 * process.c (status_message): Pass Faset index argument as a lisp
3030 object, so as to work with USE_LISP_UNION_TYPE.
3031
3032 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3033
3034 * coding.c (Ffind_coding_systems_region_internal):
3035 Cache checked characters.
3036
3037 2009-06-18 Kenichi Handa <handa@m17n.org>
3038
3039 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
3040
3041 2009-06-18 Andreas Schwab <aschwab@redhat.com>
3042
3043 * xdisp.c (redisplay_internal): Check that the frame is still
3044 live after redisplay of its windows.
3045 (redisplay_windows): Check that the window is still live.
3046
3047 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
3048
3049 * coding.c (detect_coding_utf_16): Fix previous change.
3050
3051 2009-06-16 Kenichi Handa <handa@m17n.org>
3052
3053 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
3054 UTF-16 by checking the dispersion of Eth and Oth bytes.
3055
3056 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
3057
3058 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
3059
3060 2009-06-15 Kenichi Handa <handa@m17n.org>
3061
3062 * process.c (status_message): Fix previous change. Be sure to
3063 decode a localized string.
3064
3065 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3066
3067 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
3068 add comment explaining why.
3069
3070 2009-06-14 Sidney Markowitz <sidney@sidney.com>
3071
3072 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
3073
3074 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
3075
3076 * nsfont.m (ns_attribute_value): Remove.
3077 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
3078 (ns_has_attribute): Shrink the normal range.
3079 (ns_findfonts): Don't worry about requested spec in determining
3080 need for synthItal.
3081 (ns_get_covering_families): Retain scriptToFamilies.
3082
3083 2009-06-14 Seiji Zenitani <zenitani@mac.com>
3084
3085 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
3086
3087 2009-06-11 Kenichi Handa <handa@m17n.org>
3088
3089 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
3090 overhang for the static composition case.
3091
3092 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3093
3094 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
3095 overhang for the automatic composition case.
3096
3097 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
3098 composition case.
3099
3100 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
3101
3102 * xdisp.c (get_next_display_element): When handling wrap-prefix
3103 and line-prefix, treat \n as a control character (bug#3502).
3104
3105 2009-06-10 Kenichi Handa <handa@m17n.org>
3106
3107 * font.c (font_parse_family_registry): Fix for one-char foundry.
3108 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
3109
3110 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
3111
3112 * process.c (status_message): Fix handling of multibyte signal
3113 string (Bug#3499).
3114
3115 2009-06-09 Jim Meyering <meyering@redhat.com>
3116
3117 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
3118 color name is missing.
3119
3120 2009-06-09 Kenichi Handa <handa@m17n.org>
3121
3122 * charset.c (Fmap_charset_chars): In docstring, state clearly that
3123 FROM-CODE and TO-CODE are codepoints of CHARSET.
3124
3125 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
3126
3127 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
3128
3129 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
3130
3131 Changes to support :script/:lang/:otf in NS font driver.
3132 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
3133 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
3134 indicate not part of font driver interface, and change callers.
3135 (ns_get_family): Remove pointless null check.
3136 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
3137 ns_spec_to_descriptor, ns_descriptor_to_entity.
3138 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
3139 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
3140 (ns_spec_to_descriptor, ns_descriptor_to_entity)
3141 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
3142 (ns_get_req_script, ns_accumulate_script_ranges)
3143 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
3144 New functions.
3145 (nsfont_list, nsfont_match): Use ns_findfonts.
3146 (nsfont_open): Use font descriptor instead of traits.
3147 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
3148 (dump_glyphstring): Rename to ns_dump_glyphstring.
3149
3150 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
3151
3152 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
3153
3154 * fontset.c (fontset_from_font): Remove NS-specific code.
3155
3156 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
3157
3158 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
3159 nonactive windows.
3160
3161 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
3162
3163 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
3164
3165 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
3166
3167 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
3168
3169 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
3170
3171 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
3172 account for the overflowing of newlines into the last glyph on the
3173 display line (Bug#3482).
3174
3175 2009-06-05 David Reitter <david.reitter@gmail.com>
3176
3177 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
3178 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
3179 Fns_selection_exists_p, Fns_selection_owner_p.
3180
3181 2009-06-03 Jason Rumney <jasonr@gnu.org>
3182
3183 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
3184 available. (Bug#3379)
3185
3186 2009-05-29 Kenichi Handa <handa@m17n.org>
3187
3188 * coding.c (get_translation_table):
3189 Check Venable_character_translation.
3190
3191 2009-05-26 David Reitter <david.reitter@gmail.com>
3192
3193 * nsterm.m (ns_raise_frame): Only raise frame if visible.
3194 (x_make_frame_visible): Move frame to front rather than calling
3195 ns_raise_frame().
3196 (keyDown:): Do not swallow events that aren't re-sent if frame
3197 isn't key window.
3198 (drawRect:): Do not set visibility/iconified flags because
3199 drawRect may be called by NSView even if the frame is hidden.
3200
3201 * nsfns.m (Fx_create_frame): Follow other ports in
3202 determining visibility; default to t. Ensure async_visible is set.
3203
3204 2009-05-23 Eli Zaretskii <eliz@gnu.org>
3205
3206 * dired.c (Ffile_attributes): Doc fix.
3207
3208 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
3209
3210 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
3211
3212 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
3213
3214 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
3215 and xfont_scratch_props.
3216 (syms_of_xfont): Do it here instead.
3217 (xfont_find_ccl_program): Delete, unused.
3218 (xfont_open): Delete unused var `i'.
3219
3220 2009-05-21 Kenichi Handa <handa@m17n.org>
3221
3222 * fontset.c (Qlatin): Don't make it static.
3223
3224 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
3225 New functions.
3226 (xfont_scripts_cache, xfont_scratch_props): New variables.
3227 (Qlatin, Vscalable_fonts_allowed): Extern it.
3228 (xfont_list_pattern): Argument changed. Callers changed.
3229 Check Vscalable_fonts_allowed. Check the support of a script.
3230 (xfont_list): Don't reject a font spec with :script property.
3231 (xfont_has_char): Fix setting of encoding.
3232 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
3233 xfont_scratch_props.
3234
3235 2009-05-19 Kenichi Handa <handa@m17n.org>
3236
3237 * font.c (font_sort_entities): Rename from font_sort_entites.
3238 Callers changed.
3239
3240 2009-05-18 Kenichi Handa <handa@m17n.org>
3241
3242 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
3243
3244 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
3245
3246 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
3247 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
3248
3249 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3250
3251 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
3252 (x_delete_terminal): Dissociate resource database from display and
3253 then call XrmDestroyDatabase before closing display.
3254
3255 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
3256
3257 * nsterm.m (ns_read_socket): Remove unused variable.
3258 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
3259 whether selected frame is viable before raising it (based on patch
3260 by David Reitter), and improve commentary.
3261 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
3262
3263 2009-05-15 Kenichi Handa <handa@m17n.org>
3264
3265 * font.c (Ffont_spec): Check arguments.
3266
3267 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
3268
3269 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
3270 weight when testing attributes (Bug#3282).
3271
3272 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3273
3274 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
3275 what we expect to get in the next ConfigureNotify event.
3276
3277 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
3278 before Xft one (Bug#1696).
3279
3280 2009-05-07 David Reitter <david.reitter@gmail.com>
3281
3282 * nsfns.m (Fx_display_planes): Compute bitplanes using
3283 NSBitsPerPixelFromDepth (Bug#3207).
3284
3285 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
3286
3287 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
3288
3289 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
3290
3291 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
3292
3293 2009-05-07 David Reitter <david.reitter@gmail.com>
3294
3295 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
3296 Respect mouse face background.
3297
3298 2009-05-07 David Reitter <david.reitter@gmail.com>
3299
3300 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
3301 Mouse movement/highlight: bracket drawing operations
3302 in ns_update_begin and ns_update_end.
3303
3304 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
3305
3306 * nsfns.m (ns_get_screen): Rewrite.
3307 Don't presume selected-frame is of type `ns'.
3308
3309 * font.c (font_update_drivers): Sanity fallback to avoid disabling
3310 all drivers.
3311
3312 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
3313
3314 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3315
3316 * keyboard.h (add_user_signal): Fix typo in extern.
3317
3318 * lisp.h (add_user_signal): Remove extern.
3319
3320 * unexelf.c (unexec): Consider a section to precede the .bss section
3321 if its addresses overlap that of .bss.
3322 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
3323 instead of dumping process.
3324
3325 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
3326
3327 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
3328
3329 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3330
3331 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
3332
3333 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
3334
3335 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
3336 any statements.
3337
3338 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
3339
3340 * process.c (read_process_output): Make sure the current buffer is
3341 always restored.
3342
3343 * coding.c (record_conversion_result): Don't modify
3344 Vlast_code_conversion_error for successful result.
3345 (alloc_destination): Don't clobber conversion result. (Bug#1650)
3346
3347 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
3348
3349 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
3350 (load_charset_map): Remove unnecessary code.
3351
3352 2009-04-30 David Reitter <david.reitter@gmail.com>
3353
3354 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
3355 through f24.
3356
3357 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
3358
3359 * xfaces.c (face_at_buffer_position): New arg base_face_id.
3360
3361 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
3362 face_at_buffer_position.
3363 (face_before_or_after_it_pos, get_next_display_element)
3364 (note_mouse_highlight): Update face_at_buffer_position call.
3365
3366 * term.c (term_mouse_highlight):
3367 * msdos.c (IT_note_mouse_highlight):
3368 * fontset.c (Finternal_char_font):
3369 * font.c (font_at, font_range): Update face_at_buffer_position call.
3370
3371 * dispextern.h (face_at_buffer_position): Update prototype.
3372
3373 2009-04-30 Kenichi Handa <handa@m17n.org>
3374
3375 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
3376
3377 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
3378
3379 * callproc.c (Fcall_process): Fix GC protection. Make sure
3380 current buffer is always restored.
3381
3382 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3383
3384 * atimer.c (init_atimer): Also clear stopped_atimers.
3385
3386 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
3387
3388 * process.c (create_process): Clean up merger residues of
3389 2008-07-17 change.
3390
3391 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
3392
3393 * lread.c (Vread_circle): New variable.
3394 (read1): Disable recursive read if Vread_circle is nil.
3395
3396 2009-04-29 Kenichi Handa <handa@m17n.org>
3397
3398 * fontset.h (set_default_ascii_font): Delete extern.
3399
3400 * fontset.c (set_default_ascii_font): Delete this unused function.
3401
3402 * frame.c (x_set_font): When ARG is a font-object, check if the
3403 font-object matches with the ASCII font-spec of the frame's
3404 fontset. If not, create a new fontset for the frame. (Bug #3075)
3405
3406 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
3407
3408 * fns.c (Flocale_info): Protect vector from GC during decoding.
3409
3410 * process.c (Fstart_process): Protect argv strings from GC during
3411 encoding.
3412
3413 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
3414
3415 * sysdep.c: Include <ctype.h>.
3416
3417 2009-04-27 David Reitter <david.reitter@gmail.com>
3418
3419 * nsfont.m (nsfont_open): Remove unused variable shrink.
3420 Remove commented-out code.
3421
3422 2009-04-26 Johan Bockgård <bojohan@gnu.org>
3423
3424 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
3425
3426 2009-04-25 Jason Rumney <jasonr@gnu.org>
3427
3428 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
3429
3430 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3431
3432 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
3433 Swap bytes in short integer if fringe bitmap width > 8.
3434
3435 2009-04-23 Kenichi Handa <handa@m17n.org>
3436
3437 * xfaces.c (Fx_list_fonts): If a font size is specified in
3438 PATTERN, set it in returned scalable fonts.
3439
3440 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
3441
3442 * keyboard.c (Fset_input_meta_mode): Doc fix.
3443
3444 * dispnew.c (Fsend_string_to_terminal): Doc fix.
3445
3446 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
3447
3448 * coding.c (Fterminal_coding_system): Doc fix.
3449
3450 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
3451 (Fx_display_pixel_height, Fx_display_planes)
3452 (Fx_display_color_cells, Fx_server_max_request_size)
3453 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
3454 (Fx_display_mm_height, Fx_display_mm_width)
3455 (Fx_display_backing_store, Fx_display_visual_class)
3456 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
3457 Doc fixes, replacing "terminal id" with "terminal object".
3458 (check_x_display_info): Handle terminal objects instead of
3459 terminal ids.
3460
3461 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
3462 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
3463 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
3464 Doc fixes, replacing "terminal id" with "terminal object".
3465
3466 2009-04-21 Kenichi Handa <handa@m17n.org>
3467
3468 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
3469 (font_score): Check AVGWIDTH too.
3470
3471 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
3472 worst case.
3473 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
3474 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
3475
3476 2009-04-19 Jason Rumney <jasonr@gnu.org>
3477
3478 The following changes fix Bug#3005 for wide glyphs on each platform,
3479 without reintroducing Bug#1258 for stretch glyphs.
3480
3481 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
3482 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
3483 get_phys_cursor_geometry.
3484
3485 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
3486 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
3487 using get_phys_cursor_geometry.
3488
3489 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
3490 correctly calculated.
3491
3492 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
3493
3494 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
3495 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
3496 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
3497 is deprecated.
3498
3499 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
3500
3501 * font.c (font_put_frame_data): Use xfree instead of free.
3502
3503 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
3504
3505 * w32font.c (Qja, Qko): Remove declarations.
3506 (syms_of_w32font): Don't DEFSYM them.
3507
3508 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
3509
3510 * font.c (Qja, Qko): Move definitions here from ftfont.c.
3511
3512 * font.h (Qja, Qko): Extern them.
3513
3514 * ftfont.c (Qja, Qko): Remove declarations.
3515
3516 * xfont.c (Qja, Qko): Remove declarations.
3517
3518 2009-04-17 Kenichi Handa <handa@m17n.org>
3519
3520 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
3521 string from a vector to handle Latin-1 characters correctly.
3522
3523 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
3524 entity even if the cache hits.
3525
3526 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
3527
3528 * search.c (boyer_moore): Use zero as marker value for a possible
3529 match instead of depending on overflow behavior. (Bug#2844)
3530
3531 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
3532 * lisp.h: Adjust prototypes.
3533
3534 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
3535
3536 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
3537 change (Bug#3003).
3538
3539 2009-04-16 Kenichi Handa <handa@m17n.org>
3540
3541 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
3542
3543 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
3544 adstyle.
3545
3546 * ftfont.c (Qja, Qko): Don't make them static.
3547 (enum ftfont_cache_for): New enum.
3548 (fc_charset_table): Undo the previous change.
3549 (ftfont_get_latin1_charset): Delete it.
3550 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
3551 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
3552 non-scarable font, try to get AVERAGE_WIDTH.
3553 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
3554 Change ft_face_cache from a list of a hash-table. Don't check
3555 `ja' and `ko' adstyle here.
3556 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
3557 FTFONT_CACHE_FOR_CHARET.
3558 (ftfont_get_charset): Undo the previous change.
3559 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
3560 (ftfont_close): Likewise.
3561 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
3562
3563 * font.c (font_sort_entites): Change the meaning of the arg
3564 BEST-ONLY. Don't optimize for VEC of lenght 1.
3565 (font_select_entity): Just return the value of font_sort_entites.
3566
3567 * xfaces.c (merge_face_vectors): Reflect font properties in
3568 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
3569 font_clear_prop if a face attribute doesn't change.
3570
3571 * charset.h (charset_ksc5601): Extern it.
3572
3573 * charset.c (charset_ksc5601): New variable.
3574 (Fdefine_charset_internal): Set charset_ksc5601.
3575 (init_charset_once): Initialize charset_ksc5601 to -1.
3576
3577 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
3578
3579 * fileio.c (history_delete_duplicates): Remove unused declaration.
3580
3581 * callint.c (history_delete_duplicates): New declaration.
3582 (Fcall_interactively): Remove command history duplicates when
3583 history_delete_duplicates is true.
3584
3585 2009-04-14 Eli Zaretskii <eliz@gnu.org>
3586
3587 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
3588
3589 2009-04-14 Kenichi Handa <handa@m17n.org>
3590
3591 * font.c (Ffont_info): Fix docstring. Fix the second element of
3592 the returned value (bug#2949).
3593
3594 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
3595
3596 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
3597
3598 2009-04-14 Kenichi Handa <handa@m17n.org>
3599
3600 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
3601 encoding charset is ascii_compatible.
3602
3603 * charset.c (Fdefine_charset_internal): Make charset
3604 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
3605 code_offset is 0, and covers all ASCII characters.
3606
3607 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
3608
3609 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
3610 (ns_string_to_pasteboard_internal):
3611 * nsmenu.m (process_dialog):
3612 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
3613 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
3614 * lisp.h (Fx_load_color_file): Declare.
3615
3616 2009-04-13 Kenichi Handa <handa@m17n.org>
3617
3618 * font.c (font_delete_unmatched): Preserve the order of list elements.
3619 (font_select_entity): Suppress the code to optimize for the same
3620 kind of fonts.
3621 (font_load_for_lface): Get a font that supports at least ASCII
3622 characters.
3623
3624 * ftfont.c (Qja, Qko): New variables.
3625 (fc_charset_table): Delete uniquifier data for iso8859-1.
3626 (ftfont_get_latin1_charset): New function.
3627 (get_adstyle_property): New function.
3628 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
3629 bitmap fonts.
3630 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
3631 Delete iso-8859-1 range from the charset of fonts whose adstyle is
3632 `ko' or `ja'.
3633 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
3634 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
3635 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
3636 property.
3637 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
3638 (syms_of_ftfont): DEFSYM Qja and Qko.
3639
3640 2009-04-09 Kenichi Handa <handa@m17n.org>
3641
3642 * charset.c (map_charset_chars): For a charset of `superset'
3643 method, fix calculation of code range.
3644
3645 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
3646 from the list of extra properties.
3647 (font_clear_prop): Be sure to delete `:name' font property.
3648
3649 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3650
3651 * dispnew.c (redraw_overlapping_rows): Fix detection of
3652 overlapping for topmost and bottommost rows.
3653
3654 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
3655
3656 2009-04-06 Jason Rumney <jasonr@gnu.org>
3657
3658 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
3659
3660 2009-04-06 Kenichi Handa <handa@m17n.org>
3661
3662 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
3663
3664 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
3665
3666 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3667
3668 * ftfont.c (ftfont_open): Fix checking of the return value of
3669 FT_Load_Char. Fix setting font->underline_thickness.
3670
3671 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
3672
3673 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
3674 (Fterminal_parameters, Fterminal_parameter)
3675 (Fset_terminal_parameter): In doc string, refer to terminal
3676 objects rather than terminal ids.
3677
3678 2009-04-04 Eli Zaretskii <eliz@gnu.org>
3679
3680 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
3681 ret_lim_data. (Bug#2867)
3682
3683 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
3684
3685 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
3686 so they don't get wider than the window, matching 2006-01-23
3687 change to the partner function in xdisp.c (Bug#2800).
3688
3689 2009-04-03 Kenichi Handa <handa@m17n.org>
3690
3691 * print.c (print_object): Make each lowest sub_char_table start a
3692 new line (Bug#2866).
3693
3694 2009-04-02 Kenichi Handa <handa@m17n.org>
3695
3696 * fontset.c (fontset_font): Record no-font when a fontset
3697 explicitly tells not to try another font-specs.
3698
3699 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
3700
3701 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
3702
3703 2009-03-30 Kenichi Handa <handa@m17n.org>
3704
3705 * fontset.c (fontset_from_font): Specify only registry in a
3706 font-spec for all characters supported by that registry.
3707
3708 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
3709 even if HAVE_M17N_FLT is not defined.
3710
3711 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
3712
3713 * ftfont.c: Conditionalize prototyping and use of
3714 ftfont_variation_glyphs.
3715
3716 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
3717
3718 * frame.c (delete_frame): Work around compiler bug.
3719
3720 * editfns.c (general_insert_function): Adjust to insdel.c changes.
3721 * insdel.c (prepare_to_modify_buffer, signal_before_change):
3722 Some more EMACS_INT.
3723 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
3724
3725 * xdisp.c (dump_glyph): Fix typo.
3726
3727 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
3728 (adjust_markers_gap_motion, adjust_markers_for_delete)
3729 (adjust_markers_for_insert, adjust_point)
3730 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
3731 (make_gap, copy_text, count_size_as_multibyte, insert)
3732 (insert_and_inherit, insert_before_markers)
3733 (insert_before_markers_and_inherit, insert_1)
3734 (count_combining_before, count_combining_after, insert_1_both)
3735 (insert_from_string, insert_from_string_before_markers)
3736 (insert_from_string_1, insert_from_gap, insert_from_buffer)
3737 (insert_from_buffer_1, adjust_after_replace)
3738 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
3739 (replace_range_2, del_range, del_range_1, del_range_byte)
3740 (del_range_both, del_range_2, modify_region)
3741 (prepare_to_modify_buffer, signal_before_change)
3742 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
3743 for buffer positions and sizes.
3744 * lisp.h: Adjust prototypes accordingly.
3745
3746 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
3747 (non_regular_inserted, non_regular_nbytes, read_non_regular)
3748 (Finsert_file_contents): Use EMACS_INT for buffer positions.
3749
3750 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
3751
3752 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
3753
3754 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
3755 lines and columns so we keep the same pixel height and width.
3756
3757 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
3758 the property _NET_WM_STATE has changed.
3759 (x_handle_net_wm_state): New function to update frame parameter
3760 fullscreen.
3761 (x_term_init): Initialize atoms for _NET_WM_STATE.
3762
3763 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
3764
3765 2009-03-27 Kevin Ryde <user42@zip.com.au>
3766
3767 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
3768 Gpm_GetEvent as an error that justifies closing the filedescriptor.
3769 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
3770 (Fgpm_mouse_stop): Pass that new parameter.
3771 * termhooks.h (close_gpm): Adjust prototype.
3772
3773 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3774
3775 * lisp.h (Fx_focus_frame): Declare.
3776
3777 * callint.c (Fcall_interactively): For '^' just delegate the work to
3778 handle-shift-selection.
3779 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
3780
3781 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
3782
3783 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
3784
3785 * data.c (Qinteractive_form): New variable.
3786 (Finteractive_form): Use it.
3787
3788 * eval.c (Fcommandp): Use Qinteractive_form.
3789
3790 2009-03-24 Jason Rumney <jasonr@gnu.org>
3791
3792 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
3793 Calculate total size precisely. Decode environment variables
3794 before substituting. (Bug#38)
3795
3796 2009-03-24 Kenichi Handa <handa@m17n.org>
3797
3798 * font.c (find_font_encoding): Return Qnil for unsupported
3799 encoding (Bug#2722).
3800
3801 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
3802
3803 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
3804 that gdpy is set.
3805
3806 2009-03-22 Alan Mackenzie <acm@muc.de>
3807
3808 * callint.c (Finteractive): Clarify the doc string - even
3809 promptless elements need \n separators.
3810
3811 2009-03-22 Jason Rumney <jasonr@gnu.org>
3812
3813 * w32term.c (syms_of_w32term): Doc fix for
3814 x-use-underline-position-properties.
3815
3816 2009-03-21 Eli Zaretskii <eliz@gnu.org>
3817
3818 * w32.c (getpwuid): Change argument type to unsigned.
3819 (struct w32_id): Change type of `rid' member to unsigned.
3820 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
3821 argument ID to unsigned. All callers changed.
3822 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
3823
3824 2009-03-20 Eli Zaretskii <eliz@gnu.org>
3825
3826 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
3827 negative, produce a float value.
3828
3829 * dired.c (make_uid, make_gid): New functions.
3830 (Ffile_attributes): Use them to avoid negative UID and GID.
3831
3832 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
3833
3834 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
3835 (syms_of_keyboard) <command-hook-internal, input-method-function>:
3836 Fix typos in docstrings.
3837
3838 2009-03-19 Kenichi Handa <handa@m17n.org>
3839
3840 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
3841 changed, use font_load_for_lface to get a new font object.
3842 Call free_realized_fontset after handling ASCII font change.
3843
3844 * frame.c (x_set_font): Handle the case that ARG is a cons.
3845
3846 2009-03-19 Glenn Morris <rgm@gnu.org>
3847
3848 * fileio.c (Fsubstitute_in_file_name): Doc fix.
3849
3850 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
3851
3852 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
3853
3854 2009-03-19 Kenichi Handa <handa@m17n.org>
3855
3856 * charset.c (load_charset_map_from_file): When a mapfile can't be
3857 loaded, signal an error.
3858
3859 2009-03-18 Eli Zaretskii <eliz@gnu.org>
3860
3861 * dired.c (Ffile_attributes): Make sure UID and GID are always
3862 positive, even if the value is too large for a positive EMACS_INT.
3863 Doc fix.
3864
3865 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
3866
3867 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3868
3869 * xmenu.c (xdialog_show): Move Fredisplay call ...
3870 (Fx_popup_dialog): ... here.
3871
3872 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
3873
3874 * dired.c (file_name_completion): Disable the first optimization just
3875 installed, since it is not implemented correctly.
3876
3877 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
3878
3879 * dired.c (file_name_completion): Check completion-ignored-extensions
3880 only if the entry can affect bestmatch.
3881 Stop the search early, as Ftry_completion already does.
3882
3883 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
3884
3885 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
3886
3887 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
3888
3889 * keyboard.c (parse_menu_item): Don't display remappings as menu
3890 equivalent bindings (Bug#788).
3891
3892 2009-03-15 Jason Rumney <jasonr@gnu.org>
3893
3894 * w32term.h (WM_EMACS_PAINT): New message.
3895 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
3896 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
3897 before passing to lisp thread. (Bug#950)
3898
3899 2009-03-14 David Reitter <david.reitter@gmail.com>
3900
3901 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
3902 variable as it was never reset.
3903 (ns_term_init): Remove initialization of Lisp-settable defaults
3904 and ns_expand_space.
3905 (-setPanelFromDefaultValues): Remove ns_expand_space.
3906 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
3907 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
3908 i.e. no additional spacing, similar to Carbon port.
3909
3910 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
3911 * nsfns.m (ns-popup-prefs-panel): Remove.
3912
3913 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
3914
3915 * sound.c (alsa_configure): Remove call to deprecated
3916 snd_pcm_sw_params_set_xfer_align.
3917
3918 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
3919
3920 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
3921 after clicking in a detached tool bar.
3922 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
3923
3924 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
3925
3926 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
3927 int/Lisp_Object mixup).
3928
3929 2009-03-13 Kenichi Handa <handa@m17n.org>
3930
3931 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
3932 Handle NAME nil and t correctly. Callers changed.
3933 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
3934 (set_fontset_font): Change ARG to a vector. Handle range_list in
3935 ARG correctly.
3936 (Fset_fontset_font): Fix the case that TARGET is both a script
3937 name and charset name. Adjust the arg to set_fontset_font for
3938 the above change.
3939 (fontset_from_font): Fix previous change.
3940 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
3941 entry. If FONTSET is the default fontset, don't set the extra
3942 slot of the returning char-table.
3943
3944 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
3945
3946 * nsfns.m (Fx_close_connection): Doc fix.
3947 (Fns_do_applescript): Reflow docstring.
3948 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
3949 (Fx_display_pixel_width, Fx_display_pixel_height)
3950 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
3951 Fix typos in docstrings.
3952 (Fns_set_alpha): Fix typos in error messages.
3953
3954 2009-03-12 David Reitter <david.reitter@gmail.com>
3955
3956 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
3957 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
3958 were used for such events.
3959
3960 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
3961 (toggleToolbar, performDragOperation, runHelp): Use it.
3962
3963 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
3964 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
3965
3966 2009-03-11 Kenichi Handa <handa@m17n.org>
3967
3968 * font.h (font_open_by_spec): Extern it.
3969
3970 * font.c (font_open_by_spec): New function.
3971 (font_open_by_name): Use font_open_by_spec.
3972
3973 * frame.c (x_set_font): When ARG is a font-object, don't alter the
3974 fontset of the frame.
3975
3976 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
3977 modify the default font of frames that use this fontset.
3978 (num_auto_fontsets): New variable.
3979 (fontset_from_font): Use num_auto_fontsets to decide a fontset
3980 name. Be sure to set FONTSET_ASCII to the correct font name.
3981 (update_auto_fontset_alist): New function.
3982
3983 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
3984
3985 * makefile.w32-in: Update dependencies.
3986
3987 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
3988
3989 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
3990
3991 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
3992
3993 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
3994
3995 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
3996
3997 * lread.c (Feval_buffer): Doc fix.
3998
3999 2009-03-09 Kenichi Handa <handa@m17n.org>
4000
4001 * charset.c (Qfile_name_handler_alist): Extern it.
4002 (load_charset_map_from_file): Temporarily bind
4003 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
4004
4005 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
4006
4007 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
4008 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
4009
4010 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
4011
4012 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
4013 (x_set_window_size): Change back to calculated method of setting
4014 toolbar height under Cocoa. (Bug#2546)
4015 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
4016 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
4017
4018 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
4019
4020 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
4021 accelerator in parens under GNUstep.
4022
4023 2009-03-06 Kenichi Handa <handa@m17n.org>
4024
4025 These changes are to detect incorrect composition sequence without
4026 looking ahead the source. (Bug#2370)
4027
4028 * coding.h: Include "composite.h".
4029 (enum compisition_state): New enum.
4030 (struct compisition_status): New struct.
4031 (struct iso_2022_spec): New member cmp_status.
4032 (struct emacs_mule_spec): New struct.
4033 (struct coding_system): New members ctext_extended_segment_len and
4034 embedded_utf_8. Change the union member
4035 spec.emacs_mule_full_support to spec.emacs_mule.
4036
4037 * coding.c (CODING_ISO_CMP_STATUS): New macro.
4038 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
4039 (MAX_ANNOTATION_LENGTH): Define to 5.
4040 (ADD_COMPOSITION_DATA): New arg nbytes.
4041 (emacs_mule_char): New arg cmp_status.
4042 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
4043 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
4044 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
4045 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
4046 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
4047 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
4048 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
4049 (EMACS_MULE_COMPOSITION_END): New macro.
4050 (emacs_mule_finish_composition): New function.
4051 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
4052 (decode_coding_emacs_mule): Avoid long looking ahead while
4053 handling composition.
4054 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
4055 (ENCODE_COMPOSITION_RULE): New macro.
4056 (finish_composition): New function.
4057 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
4058 (DECODE_COMPOSITION_START): New implementation.
4059 (DECODE_COMPOSITION_END): Likewise.
4060 (STORE_COMPOSITION_RULE): New macro.
4061 (decode_coding_iso_2022): Avoid long looking ahead while handling
4062 composition, CTEXT extended segment, and embedded UTF-8.
4063 (setup_coding_system): For a coding of type iso-2022, reset
4064 CODING_ISO_EXTSEGMENT_LEN (coding) and
4065 CODING_ISO_EMBEDDED_UTF_8 (coding).
4066 (get_translation): Delete arguments last_block, from_nchars,
4067 to_nchars. Callers changed.
4068 (produce_chars): Don't modify charbuf. Adjusted for the change of
4069 get_translation.
4070 (produce_composition): Adjust for the new annotation sequence.
4071 (handle_composition_annotation): Likewise.
4072 (consume_chars): Adjust for the change of get_translation.
4073
4074 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
4075
4076 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
4077
4078 2009-03-05 Kenichi Handa <handa@m17n.org>
4079
4080 * font.c (font_select_entity): New function.
4081 (font_find_for_lface): Use font_select_entity to select a font.
4082
4083 * fontset.c (fontset_find_font): If a font found without
4084 restricting to the characters C doesn't support C, try to find a
4085 font with C restriction.
4086
4087 2009-03-04 Nikolaj Schumacher <me@nschum.de>
4088
4089 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
4090
4091 2009-03-04 Jason Rumney <jasonr@gnu.org>
4092
4093 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
4094 characters that have already been read. (Bug#2569)
4095
4096 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
4097 Log an error message if check_image_size failed.
4098 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
4099 (gs_load): Mention max-image-size in size error message. (Bug#2560)
4100
4101 2009-03-02 Eli Zaretskii <eliz@gnu.org>
4102
4103 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
4104 when decoding process output.
4105
4106 2009-03-01 Richard M Stallman <rms@gnu.org>
4107
4108 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
4109
4110 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
4111
4112 2009-02-28 Eli Zaretskii <eliz@gnu.org>
4113
4114 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
4115 (decode_coding_emacs_mule, decode_coding_iso_2022)
4116 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
4117 (decode_coding_raw_text, decode_coding_charset)
4118 (setup_coding_system, decode_eol, decode_coding, consume_chars):
4119 Honor inhibit-eol-conversion. (Bug #2186)
4120
4121 2009-02-28 Jason Rumney <jasonr@gnu.org>
4122
4123 * coding.c (detect_coding_charset): If not checking latin extra,
4124 fail on characters between 0x80 and 0xA0. (Bug#2354)
4125
4126 2009-02-28 Eli Zaretskii <eliz@gnu.org>
4127
4128 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
4129 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
4130
4131 2009-02-27 Glenn Morris <rgm@gnu.org>
4132
4133 * callint.c (Finteractive): Doc fix.
4134
4135 2009-02-27 Kenichi Handa <handa@m17n.org>
4136
4137 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
4138
4139 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
4140
4141 * font.c (font_style_to_value): Set value for unknown symbols to
4142 100 instead of 255.
4143 (weight_table, slant_table, width_table): Treat "unspecified" as
4144 the default value.
4145
4146 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
4147
4148 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
4149
4150 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
4151
4152 * lread.c (Fload): Stop checking Vloads_in_progress and signal
4153 error as soon as a recursive load is detected.
4154
4155 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
4156
4157 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
4158 before caching.
4159
4160 2009-02-24 Kenichi Handa <handa@m17n.org>
4161
4162 * fontset.c (fontset_find_font): Fix the condition for checking
4163 unavailable font.
4164
4165 2009-02-24 Glenn Morris <rgm@gnu.org>
4166
4167 * xfaces.c (Finternal_set_font_selection_order): Remove leading
4168 whitespace that confuses documentation.
4169
4170 2009-02-23 Miles Bader <miles@gnu.org>
4171
4172 * process.c (Flist_system_processes, Fprocess_attributes)
4173 (syms_of_process): Rename `system-process-attributes' to
4174 `process-attributes'.
4175
4176 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
4177
4178 * coding.h (struct coding_system): Make safe_charsets a pointer to
4179 unsigned char.
4180 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
4181 being 255.
4182 (SAFE_CHARSET_P): Likewise.
4183 (setup_iso_safe_charsets): Properly setup safe_charsets.
4184 (Fdefine_coding_system_internal): Likewise.
4185 (setup_coding_system): Likewise. Remove unneeded casts.
4186 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
4187 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
4188 unneeded casts.
4189
4190 * insdel.c (del_range_2): Don't modify gap contents when called
4191 from decode_coding_object. (Bug#1809)
4192
4193 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
4194
4195 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
4196 Qfont_object.
4197 (Ftype_of): Recognize font objects.
4198
4199 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
4200
4201 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
4202 moved to data.c.
4203
4204 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
4205
4206 * nsterm.m (x_make_frame_invisible): Unset async_visible,
4207 async_iconified. Based on a patch by Christian Lynbech
4208 <christian.lynbech@tieto.com>.
4209 (EmacsView-windowDidMiniaturize:): Unset async_visible.
4210
4211 2009-02-20 Glenn Morris <rgm@gnu.org>
4212
4213 * syntax.c (Fskip_chars_forward): Fix doc typo.
4214
4215 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
4216
4217 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
4218
4219 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
4220
4221 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
4222
4223 2009-02-19 Kenichi Handa <handa@m17n.org>
4224
4225 * coding.c (detect_coding): Preserve coding->mode.
4226 Don't overflow coding->carryover. (Bug#2370)
4227
4228 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
4229
4230 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
4231
4232 2009-02-18 Kenichi Handa <handa@m17n.org>
4233
4234 * font.c (font_check_otf_features): Fix handling of `nil' element.
4235 (Ffont_spec): Describe :lang and :otf in the docstring.
4236
4237 2009-02-16 Andreas Schwab <schwab@suse.de>
4238
4239 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
4240 string.
4241
4242 2009-02-16 Kenichi Handa <handa@m17n.org>
4243
4244 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
4245 (Bug#1723)
4246
4247 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
4248
4249 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
4250
4251 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
4252 (handle_line_prefix): Suppress wrapping of wrap prefixes.
4253
4254 2009-02-14 Eli Zaretskii <eliz@gnu.org>
4255
4256 * msdos.c (MAX_SCREEN_BUF): New macro.
4257 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
4258 Encode the entire run of glyphs sharing the same face, instead of
4259 doing that one glyph at a time (fixes a bug with displaying
4260 double-size characters).
4261
4262 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
4263
4264 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
4265
4266 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
4267 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
4268 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
4269
4270 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
4271 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
4272
4273 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
4274
4275 * keyboard.c (adjust_point_for_property): Allow stopping between two
4276 invisible areas.
4277
4278 2009-02-12 Jason Rumney <jasonr@gnu.org>
4279
4280 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
4281 (add_font_entity_to_list): Call check_face_name even when family
4282 is unspecified.
4283
4284 * w32term.c (x_display_pixel_height, x_display_pixel_width):
4285 Release DC when finished. Use NULL window to refer to desktop.
4286 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
4287
4288 * w32font.c (add_font_entity_to_list): Fix check for substituted
4289 raster fonts. (Bug#2219)
4290
4291 2009-02-12 Kenichi Handa <handa@m17n.org>
4292
4293 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
4294 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
4295 (autocmp_chars): Use fast_looking_at. Don't compose more
4296 characters than MAX_COMPOSITION_COMPONENTS.
4297 (find_automatic_composition): While looking forward and backward,
4298 check static composition. Fix where to stop looking forward.
4299 (composition_adjust_point): Fix checking of static composition.
4300 (Fcomposition_get_gstring): Pay attention to
4301 MAX_COMPOSITION_COMPONENTS.
4302
4303 * lisp.h (fast_looking_at): Extern it.
4304
4305 * search.c (fast_looking_at): New function.
4306
4307 * term.c (encode_terminal_code): Adjust for the change of
4308 <struct glyph>.u.cmp.to.
4309 (append_composite_glyph): Likewise.
4310
4311 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
4312 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
4313 composition.
4314 (append_composite_glyph): Adjust for the change of
4315 <strcut glyph>.u.cmp.to.
4316
4317 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
4318
4319 * casetab.c (init_casetab_once):
4320 * coding.c (ALLOC_CONVERSION_WORK_AREA):
4321 * font.c (font_update_lface):
4322 * fontset.c (Fnew_fontset):
4323 * ftfont.c (ftfont_drive_otf):
4324 * xfont.c (xfont_open):
4325 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
4326
4327 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
4328
4329 * fileio.c (Fwrite_region): !NILP -> CONSP.
4330
4331 2009-02-10 Andreas Schwab <schwab@suse.de>
4332
4333 * process.c (send_process): Properly relocate pointer into data
4334 when using encoded data. (Bug#2272)
4335
4336 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
4337
4338 * coding.c (detect_coding_charset): Fix previous change.
4339
4340 2009-02-08 Jason Rumney <jasonr@gnu.org>
4341
4342 * w32fns.c (w32_hide_hourglass): Handle case where frame
4343 disappeared while hourglass was displayed. (Bug #2193)
4344
4345 2009-02-07 Andreas Schwab <schwab@suse.de>
4346
4347 * unexelf.c (unexec): Fix error message.
4348
4349 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
4350
4351 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
4352 when modal window is active. (Bug #2152)
4353 (applicationShouldTerminate:): Remove now-unneeded while loop
4354 around NSRunAlertPanel.
4355
4356 * nsmenu.m (popupSession): New file-global variable.
4357 (pop_down_menu): End the popupSession before closing dialog.
4358 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
4359 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
4360 don't query NSApp for events (just sleep instead).
4361
4362 2009-02-07 Eli Zaretskii <eliz@gnu.org>
4363
4364 * coding.c (syms_of_coding) <translation-table-for-input>:
4365 Modify doc string to discourage use for character code unification.
4366
4367 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4368
4369 * atimer.c (run_timers): Update pending_atimers.
4370
4371 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
4372
4373 * image.c (svg_load_image): Fix last change.
4374
4375 * xfns.c (Fx_create_frame): Signal an error if no font is
4376 found (Bug#2147).
4377
4378 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
4379
4380 * character.c (syms_of_character) <script-representative-chars>:
4381 Fix typo in docstring.
4382
4383 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
4384
4385 * nsmenu.m (pop_down_menu): New function.
4386 (ns_popup_dialog): Call it on unwind.
4387 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
4388 call timer_check() (Bug#2154).
4389 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
4390 handling_signal is set.
4391 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
4392
4393 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
4394
4395 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
4396
4397 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
4398
4399 * keyboard.c (poll_for_input_1, handle_async_input):
4400 Set handling_signal under HAVE_NS.
4401
4402 2009-02-04 Glenn Morris <rgm@gnu.org>
4403
4404 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
4405
4406 2009-02-04 Kenichi Handa <handa@m17n.org>
4407
4408 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
4409
4410 * charset.c (Fchar_charset): New optional arg restriction.
4411
4412 * coding.h (coding_system_charset_list): Extern it.
4413
4414 * coding.c (coding_system_charset_list): New function.
4415
4416 * composite.c: Include coding.h and termhooks.h.
4417 (composition_gstring_p): Fix for the terminal case.
4418 (composition_gstring_width): Likewise.
4419 (fill_gstring_body): Likewise.
4420 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
4421 the frame.
4422 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
4423 is within a composition.
4424 (Fcomposition_get_gstring): Fix the terminal case.
4425
4426 * term.c (encode_terminal_code): Fix handling of composition.
4427 (produce_composite_glyph): For static composition, get pixel_width
4428 from struct composition.
4429
4430 2009-02-02 Andreas Schwab <schwab@suse.de>
4431
4432 * unexelf.c (unexec): Handle unaligned bss offset.
4433
4434 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
4435
4436 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
4437 XT,w32read_socket changes to ns_read_socket.
4438
4439 * keyboard.c (handle_interrupt): Don't call
4440 quit_throw_to_read_char() under NS.
4441
4442 * blockinput.h: Remove NS-specific code.
4443
4444 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
4445
4446 * dispnew.c (window_change_signal): Don't try to get the size of a
4447 suspended tty frame.
4448 * term.c (Fresume_tty): Resize if the size has changed while the
4449 tty was suspended.
4450
4451 * alloc.c (mark_stack): Properly conditionalize previous change.
4452
4453 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
4454
4455 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
4456 * w32term.c (w32_read_socket) [SYNC_INPUT]:
4457 Remove; this code is not used on Windows.
4458
4459 2009-01-30 Eli Zaretskii <eliz@gnu.org>
4460
4461 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
4462 EOLs that also has stray ^M characters.
4463
4464 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
4465
4466 * atimer.c (run_timers, alarm_signal_handler):
4467 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
4468 * w32inevt.c (w32_console_read_socket):
4469 * w32term.c (w32_read_socket):
4470 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
4471
4472 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
4473
4474 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
4475 Initialize it as a relative filename pattern.
4476 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
4477 (Fcall_process_region): Simplify temp file creation using
4478 temporary-file-directory.
4479
4480 2009-01-29 Eli Zaretskii <eliz@gnu.org>
4481
4482 * msdos.c: Rename pending_signals to msdos_pending_signals.
4483 (sig_suspender, sigprocmask): Adjust.
4484
4485 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
4486
4487 * keyboard.c (pending_signals): New var.
4488 (poll_for_input, input_available_signal, init_keyboard): Set it.
4489 (process_pending_signals): New function.
4490
4491 * lisp.h (QUIT): Check pending_signals instead of
4492 interrupt_input_pending. Use process_pending_signals.
4493
4494 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
4495
4496 * process.c (wait_reading_process_output): Use process_pending_signals.
4497
4498 * sysdep.c (emacs_write): Use process_pending_signals.
4499
4500 * xterm.c (XTread_socket): Update pending_signals.
4501
4502 * w32term.c (w32_read_socket): Update pending_signals.
4503
4504 * w32inevt.c (w32_console_read_socket): Update pending_signals.
4505
4506 2009-01-29 Kenichi Handa <handa@m17n.org>
4507
4508 * xftfont.c (xftfont_has_char): New function.
4509 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
4510
4511 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
4512
4513 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
4514 under GNUstep.
4515 (ns_query_color): New declaration.
4516
4517 * nsterm.m (ns_confirm_quit): New variable.
4518 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
4519 (EmacsApp-applicationShouldTerminate:): Use it.
4520 (EmacsPrefsController): Let user set it.
4521 (ns_query_color): New function.
4522 (ns_defined_color): Use it.
4523 (ns_initialize): Drop.
4524 (ns_term_init): Add two lines from ns_initialize(), and set
4525 input_interrupt_mode to nil.
4526
4527 * image.c (svg_load_image): Don't right-shift background RGB when
4528 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
4529
4530 2009-01-28 Kenichi Handa <handa@m17n.org>
4531
4532 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
4533 (fontset_get_font_group): Remember that no font-group is specified
4534 for C.
4535
4536 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
4537
4538 * fns.c (concat): Check for string overflow (bug#1787).
4539
4540 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
4541 Quadruple undo limits (bug#1501).
4542
4543 2009-01-27 Kenichi Handa <handa@m17n.org>
4544
4545 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
4546 directly use GT_Get_Char_index.
4547
4548 * xftfont.c (struct xftfont_info): New member `index'.
4549
4550 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
4551 (Ffontset_font): Adjust for the change of fontset entry.
4552
4553 2009-01-26 Kenichi Handa <handa@m17n.org>
4554
4555 * fontset.c (fontset_find_font): Fix handling of non-cons return
4556 value of fontset_get_font_group.
4557 (fontset_font): Revert last change.
4558
4559 2009-01-26 Jason Rumney <jasonr@gnu.org>
4560
4561 * w32font.c (w32font_list_internal): Return quickly if registry is
4562 unknown. Simplify final return.
4563 (add_font_entity_to_list): Break complex logic down into more
4564 manageable chunks. Move unknown registry check to
4565 w32font_list_internal.
4566
4567 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
4568
4569 Changes to remove Feval calls from GUI under NS.
4570
4571 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
4572 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
4573 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
4574
4575 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
4576 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
4577 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
4578 instead of NON_ASCII_KEYSTROKE_EVENT.
4579 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
4580 (EmacsApp-applicationShouldTerminate:): Query user.
4581 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
4582 instead of Feval.
4583
4584 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
4585
4586 * keyboard.c (kbd_buffer_get_event): Check for it.
4587 (keys_of_keyboard): Define lispy keys for
4588 ns-put/unput-working-text.
4589
4590 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
4591 versions.
4592 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
4593
4594 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
4595
4596 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
4597 setting current_buffer directly. (Bug#2044)
4598
4599 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
4600
4601 * fontset.c (fontset_font): If we know there is no font, don't do
4602 any work. (Bug#1952, bug#1990).
4603
4604 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
4605
4606 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
4607
4608 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
4609 (ns_no_defaults): New declaration.
4610 (main): Use it.
4611
4612 * nsterm.h (ns_no_defaults): New declaration.
4613
4614 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
4615
4616 * nsterm.m (ns_no_defaults): New variable.
4617 (ns_initialize): Don't read defaults when ns_no_defaults.
4618 (EmacsView-readSelectionFromPasteboard:)
4619 (writeSelectionToPasteboard:types:): New stubbed-out methods for
4620 NSServicesRequests protocol. (Bug#1435)
4621 (ns_dumpglyphs_stretch): New function.
4622 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
4623 of 2008-11-15 to other terms. (Bug#615)
4624
4625 * nsimage.m (setPixmapData:): Set to ignore image DPI.
4626
4627 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
4628
4629 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
4630 call for Sparc64.
4631
4632 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
4633
4634 * nsfns.m:
4635 * nsgui.h:
4636 * nsmenu.m:
4637 * nsselect.m:
4638 * nsterm.h:
4639 * nsterm.m: Remove '23' comments that indicated code added during
4640 update from emacs-20 -> emacs-23.
4641
4642 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
4643
4644 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
4645 ns_alternate_modifier. (Bug#1217)
4646
4647 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
4648 Display all shortcuts, including those w/o super modifier.
4649
4650 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
4651
4652 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
4653
4654 * fileio.c (Vwrite_region_post_annotation_function)
4655 (Vwrite_region_annotation_buffers): New vars.
4656 (build_annotations_unwind): Just reset
4657 Vwrite_region_annotation_buffers.
4658 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
4659 Call write-region-post-annotation-function.
4660 (build_annotations): Add to Vwrite_region_annotation_buffers if
4661 buffer changes.
4662
4663 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
4664
4665 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
4666 Tiger.
4667 * nsfns.m (ns_do_applescript):
4668 Conditionalize typeUTF16ExternalRepresentation on Tiger.
4669
4670 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
4671
4672 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
4673
4674 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
4675
4676 * nsmenu.m (NSMENUPROFILE): Change #if style.
4677
4678 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
4679
4680 * nsterm.m (x_set_frame_alpha): Add prototype.
4681 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
4682 handle Ctrl-tab. (Bug#1841)
4683 (ns_get_color): Use unsigned long long for scanned hex string value.
4684 (ns_term_shutdown): Abort on non SIGTERM signals.
4685 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
4686 (EmacsPrefsController-setPanelFromDefaultValues): New function.
4687 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
4688 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
4689 (ns_defined_color): Fix settings of the XColor variable fields:
4690 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
4691
4692 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
4693 DPI. (Bug#1316)
4694 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
4695 values in onTiger section.
4696
4697 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
4698
4699 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
4700 Check return value of font_spec_from_name.
4701 (Fx_list_fonts): Doc fix. (Bug#1951)
4702
4703 * font.c (font_spec_from_name): Return Qnil if font name could not
4704 be parsed.
4705 (font_parse_name): Treat a `?' character as part of an XLFD.
4706
4707 * fns.c (Fsubstring): Doc fix.
4708
4709 2009-01-19 Kenichi Handa <handa@m17n.org>
4710
4711 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
4712 (ftfont_list): Likewise.
4713
4714 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
4715
4716 * dbusbind.c (Fdbus_register_signal):
4717 * process.c (conv_sockaddr_to_lisp):
4718 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
4719
4720 * callproc.c (Fgetenv_internal): Doc fix.
4721
4722 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
4723
4724 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
4725 it is not even used.
4726
4727 2009-01-16 Glenn Morris <rgm@gnu.org>
4728
4729 * font.c (Ffont_variation_glyphs): Silence compiler.
4730
4731 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
4732
4733 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
4734 Reported by David Robinow <drobinow@gmail.com>.
4735
4736 2009-01-15 Kenichi Handa <handa@m17n.org>
4737
4738 * coding.c (detect_coding_system): Fix handling of null_byte_found.
4739
4740 2009-01-14 Jason Rumney <jasonr@gnu.org>
4741
4742 * frame.c (x_set_font): Always store a font to the font parameter,
4743 never a fontset. (Bug#1562)
4744
4745 2009-01-14 Kenichi Handa <handa@m17n.org>
4746
4747 * coding.c (TWO_MORE_BYTES): New macro.
4748 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
4749
4750 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
4751
4752 * font.c (font_clear_prop): If clearing the family, clear the font
4753 width index too.
4754
4755 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
4756
4757 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
4758
4759 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
4760 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
4761 functions, use sizeof.
4762
4763 2009-01-12 Martin Rudalics <rudalics@gmx.at>
4764
4765 * keyboard.c (read_char): Fix case where last_nonmenu_event
4766 returned a bad value with submenus. (Bug#447)
4767
4768 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
4769
4770 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
4771 family, clear the font width index too.
4772
4773 2009-01-11 Jason Rumney <jasonr@gnu.org>
4774
4775 * keyboard.c (cmd_error_internal): Exit when errors occur before
4776 frame creation and not in daemon mode. (Bug#1836)
4777
4778 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
4779
4780 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
4781 of a display vector, backtrack.
4782 (try_window_reusing_current_matrix): Check glyph type before
4783 referencing charpos member.
4784
4785 2009-01-10 Eli Zaretskii <eliz@gnu.org>
4786
4787 Fix Bug #876:
4788
4789 * coding.c (inhibit_null_byte_detection): New variable.
4790 (detect_coding, detect_coding_system): Don't pay attention to null
4791 bytes if inhibit_null_byte_detection is non-zero.
4792 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
4793 <inhibit-iso-escape-detection>: Doc fix.
4794
4795 2009-01-09 Jason Rumney <jasonr@gnu.org>
4796
4797 * w32font.c (add_font_entity_to_list): Don't report unknown
4798 Windows charset as any unrecognized registry. (Bug#1548)
4799 Only report Unicode Plane 2 fonts as unicode-sip.
4800
4801 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
4802
4803 * xfaces.c (Fx_font_family_list): Delete function.
4804 Move compatibility version to faces.el.
4805
4806 * font.c (Ffont_family_list): Return a list of strings, not symbols.
4807
4808 2009-01-09 Martin Rudalics <rudalics@gmx.at>
4809
4810 * frame.c (x_set_frame_parameters): Remember requested value for
4811 fullscreen before it's reset by the parameter handler.
4812
4813 2009-01-09 Glenn Morris <rgm@gnu.org>
4814
4815 * keyboard.c (last_command_char): For clarity, rename to...
4816 (last_command_event): ... and update all users.
4817 (last_input_char): For clarity, rename to...
4818 (last_input_event): ... and update all users.
4819 (last-command-char, last-input-char): Move to subr.el as aliases.
4820 * cmds.c, commands.h: Update for last_command_char rename.
4821
4822 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
4823
4824 * font.c (font_open_for_lface): Handle unspecified height attribute.
4825
4826 2009-01-08 Jason Rumney <jasonr@gnu.org>
4827
4828 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
4829 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
4830 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
4831 Don't declare.
4832 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
4833 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
4834
4835 2009-01-07 Kenichi Handa <handa@m17n.org>
4836
4837 * fileio.c (Finsert_file_contents): In the case of replace,
4838 remember the coding system used for decoding in
4839 coding_system (Bug#1039).
4840
4841 * coding.c (decode_coding_utf_8): Check byte_after_cr before
4842 breaking the loop. (Bug#870)
4843 (decode_coding_utf_16, decode_coding_emacs_mule)
4844 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
4845 (decode_coding_charset): Likewise.
4846
4847 2009-01-05 Martin Rudalics <rudalics@gmx.at>
4848
4849 * frame.c (x_set_frame_parameters): Make sure height (width) get
4850 applied when fullwidth (fullheight) is set. (Bug#1522)
4851
4852 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
4853
4854 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
4855 (utc_base): Declare as ULONGLONG, not long double.
4856 (convert_time_raw): Delete.
4857 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
4858 (initialize_utc_base): New function.
4859 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
4860 (convert_from_time_t): Use initialize_utc_base; compute result with
4861 64-bit arithmetic.
4862 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
4863
4864 2009-01-03 Eli Zaretskii <eliz@gnu.org>
4865
4866 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
4867 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
4868 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
4869 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
4870 [!subprocesses]: Define.
4871 (syms_of_process) [!subprocesses]: Intern and staticpro them.
4872 (Flist_system_processes, Fsystem_process_attributes)
4873 [!subprocesses]: Call list_system_processes and
4874 system_process_attributes instead of returning Qnil.
4875
4876 * dosfns.c (system_process_attributes, list_system_processes):
4877 New functions.
4878
4879 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
4880
4881 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
4882 Don't use the default (no-op) implementation.
4883
4884 2009-01-03 Jason Rumney <jasonr@gnu.org>
4885
4886 * keyboard.c (parse_modifiers_uncached): Wheel events are
4887 clicks (bug#687).
4888
4889 * w32term.c (x_query_colors, x_query_color): New functions.
4890
4891 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
4892 (svg_load_image): Cast returned pointers from dynamically loaded
4893 functions. Eliminate W32 specific code.
4894
4895 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
4896
4897 * nsfns.m (x_set_foreground_color, x_set_background_color)
4898 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
4899 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
4900 x_ prefix instead of ns_. Update references.
4901 (syms_of_nsfns): Add a FIXME comment.
4902
4903 * nsterm.m (x_set_cursor_type): New prototype.
4904 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
4905
4906 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
4907 for Solaris instead of incorrectly providing Qutime and Qcutime.
4908
4909 2009-01-02 Eli Zaretskii <eliz@gnu.org>
4910
4911 * w32.c (process_times): Compute sum of utime and stime.
4912 (system_process_attributes): Add Qtime to the alist.
4913
4914 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
4915 and add them to the alist.
4916
4917 * process.c (top level) <Qtime, Qctime>: New variables.
4918 (syms_of_process): staticpro them.
4919 (Fsystem_process_attributes): Add their documentation to the doc
4920 string.
4921
4922 * process.h: Declare Qtime and Qctime.
4923
4924 2009-01-02 Jason Rumney <jasonr@gnu.org>
4925
4926 * image.c (Qgobject): New symbol.
4927 (syms_of_image): Initialize it.
4928 (init_svg_functions): Load some functions from gobject library.
4929
4930 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
4931
4932 * frame.c (make_terminal_frame): Remove redundant code and useless
4933 block.
4934
4935 2009-01-01 Andreas Schwab <schwab@suse.de>
4936
4937 * process.c (conv_sockaddr_to_lisp): Add workaround for
4938 getsockname bug on BSD.
4939
4940 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
4941
4942 * xfns.c (x_create_tip_frame): Set border width of the X window.
4943
4944 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
4945
4946 2009-01-01 Jason Rumney <jasonr@gnu.org>
4947
4948 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
4949 Don't block input, as per earlier xterm.c changes.
4950
4951 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
4952
4953 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
4954 (ns_appkit_version_int): New function.
4955 (x-server-version): Use ns_appkit_version_int and follow 21+
4956 convention of returning 3 integers.
4957
4958 2008-12-30 Kenichi Handa <handa@m17n.org>
4959
4960 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
4961 (CHAR_SURROGATE_PAIR_P): New macro.
4962
4963 * font.h (struct font_driver): New member get_variation_glyphs.
4964
4965 * font.c (font_range): Don't require a font for a variation selector.
4966 (Ffont_variation_glyphs): New function.
4967 (syms_of_font): Defsubr it.
4968
4969 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
4970 ftfont_variation_glyphs.
4971 (setup_otf_gstring): New function.
4972 (ftfont_drive_otf): Use it.
4973 (ftfont_shape_by_flt): Handle variation selector.
4974 (ftfont_variation_glyphs): New function.
4975
4976 2008-12-30 Martin Rudalics <rudalics@gmx.at>
4977
4978 * frame.c (Vemacs_iconified): Remove.
4979
4980 2008-12-30 Jason Rumney <jasonr@gnu.org>
4981
4982 * frame.c (store_frame_param, x_get_arg): Enable newer code on
4983 WINDOWSNT too, as related changes have already been synced. (Bug#117)
4984
4985 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
4986
4987 * indent.c (Fvertical_motion): Don't advance iterator if we have
4988 reseated to the desired position.
4989
4990 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
4991 checking for pos match.
4992
4993 2008-12-30 Kenichi Handa <handa@m17n.org>
4994
4995 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
4996 just get the low 8-bit of the code.
4997
4998 * font.c (font_intern_prop): Validate str as multibyte.
4999
5000 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
5001
5002 * dispextern.h (struct face): Move lface and hash from the middle
5003 of bitfields.
5004
5005 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
5006
5007 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
5008
5009 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
5010 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
5011 instead of intervals.h.
5012
5013 2008-12-26 Andreas Schwab <schwab@suse.de>
5014
5015 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
5016 cons.
5017
5018 2008-12-26 Martin Rudalics <rudalics@gmx.at>
5019
5020 * textprop.c (Qminibuffer_prompt): New variable.
5021 (syms_of_textprop): Initialize it.
5022 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
5023 in minibuffer-prompt face. (Bug#1662)
5024
5025 2008-12-25 Jason Rumney <jasonr@gnu.org>
5026
5027 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
5028
5029 2008-12-24 Jason Rumney <jasonr@gnu.org>
5030
5031 * ralloc.c (r_alloc_reset_variable): New function.
5032
5033 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
5034 record of what points where. (Bug#716)
5035
5036 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
5037
5038 * minibuf.c (read_minibuf): Follow the non-interactive case when
5039 running as a daemon, before detaching.
5040
5041 2008-12-22 Andreas Schwab <schwab@suse.de>
5042
5043 * buffer.c (init_buffer): Use realloc instead of xrealloc.
5044 * gtkutil.c (free_widget_value): Use xfree instead of free.
5045
5046 2008-12-22 Martin Rudalics <rudalics@gmx.at>
5047
5048 * frame.c (delete_frame): New function derived from
5049 Fdelete_frame to handle Qnoelisp value for FORCE argument.
5050 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
5051 (Fdelete_frame): Call delete_frame. Remove line from doc-string
5052 saying that FORCE non-nil doesn't run `delete-frame-functions'.
5053 * frame.h: Extern delete_frame.
5054 * window.c (window_loop):
5055 * terminal.c (delete_terminal):
5056 * xterm.c (x_connection_closed):
5057 * xfns.c (Fx_hide_tip):
5058 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
5059
5060 2008-12-21 Jason Rumney <jasonr@gnu.org>
5061
5062 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
5063 when character maps to .notdef character.
5064
5065 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
5066
5067 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
5068
5069 2008-12-20 Jason Rumney <jasonr@gnu.org>
5070
5071 * frame.c (Fmake_terminal_frame): Raise an error when called from
5072 a graphical frame on Windows. (Bug#1325)
5073
5074 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
5075
5076 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
5077
5078 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
5079
5080 * minibuf.c (Fread_buffer): Doc fix.
5081
5082 2008-12-20 Jason Rumney <jasonr@gnu.org>
5083
5084 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
5085 server name in UNC paths. (Bug#719)
5086
5087 * coding.c (decode_coding): Clear chars_at_source flag when using
5088 charbuf. (Bug#1035)
5089
5090 2008-12-19 Daniel Engeler <engeler@gmail.com>
5091
5092 * sysdep.c (serial_configure): Fix typo.
5093
5094 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
5095
5096 * sysdep.c: Include alloca.h.
5097 (system_process_attributes): Add implementation for Solaris.
5098
5099 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
5100
5101 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
5102
5103 Reorganize implementation of Flist_system_processes and
5104 Fsystem_process_attributes. No functional changes.
5105 * process.c: Don't #include pwd.h, grp.h and limits.h.
5106 (Flist_system_processes): Just call list_system_processes.
5107 (Fsystem_process_attributes): Just call system_process_attributes.
5108 (procfs_list_system_processes, time_from_jiffies)
5109 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
5110 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
5111
5112 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
5113 (list_system_processes): Rename from
5114 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
5115 Provide a do nothing implementation.
5116 (system_process_attributes): Rename from
5117 procfs_list_system_processes.
5118 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
5119 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
5120
5121 * w32.c (list_system_processes): Rename from
5122 w32_list_system_processes.
5123 (system_process_attributes): Rename from
5124 w32_system_process_attributes.
5125
5126 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
5127
5128 * process.h (w32_list_system_processes)
5129 (w32_system_process_attributes): Remove.
5130 (list_system_processes, system_process_attributes):
5131 New prototypes.
5132
5133 2008-12-19 Kenichi Handa <handa@m17n.org>
5134
5135 * xfont.c (xfont_decode_coding_xlfd): New function.
5136 (xfont_encode_coding_xlfd): New function.
5137 (xfont_list_pattern): Decode XLFD by iso-8859-1.
5138 (xfont_list): Decode and encode XLFD by iso-8859-1.
5139 (xfont_match): Likewise.
5140 (xfont_list_family): Likewise.
5141 (xfont_open): Likewise.
5142
5143 * ftfont.c (ftfont_open): Generate a multibyte string if given
5144 names are utf-8.
5145
5146 * xftfont.c (xftfont_open): Generate a multibyte string if given
5147 names are utf-8.
5148
5149 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
5150
5151 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
5152 changed.
5153 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
5154 clicked on a detached tool bar button.
5155
5156 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
5157
5158 * emacs.c (main): Print and error and exit when no data is read
5159 from the pipe.
5160
5161 2008-12-17 Jason Rumney <jasonr@gnu.org>
5162
5163 * w32font.c (w32font_has_char): Always return -1.
5164
5165 2008-12-16 Kenichi Handa <handa@m17n.org>
5166
5167 * font.c (font_open_entity): Fix previous change.
5168
5169 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
5170
5171 * process.c: Include <limits.h>.
5172
5173 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
5174
5175 * font.c (font_update_drivers): Fix mistake in reconstructing the
5176 driver list.
5177
5178 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
5179
5180 * font.c (font_clear_cache): Fix format of font cache data.
5181
5182 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
5183
5184 * xftfont.c (xftfont_open): Free Xft font pattern if
5185 XftFontOpenPattern fails.
5186
5187 * xterm.c (x_free_frame_resources): Remove extraneous call to
5188 free_frame_faces.
5189
5190 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
5191
5192 * xterm.c (x_delete_display): Move xim_close_dpy call to
5193 x_delete_terminal.
5194 (x_delete_terminal): Call xim_close_dpy.
5195
5196 2008-12-13 Jason Rumney <jasonr@gnu.org>
5197
5198 * w32font.c (intern_font_name): New function.
5199 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
5200 (w32font_open_internal, Fx_select_font): Decode font name.
5201 (fill_in_logfont, list_all_matching_fonts): Encode font name.
5202
5203 * w32font.h (intern_font_name): Declare new function.
5204
5205 * w32uniscribe.c (add_opentype_font_name_to_list):
5206 Use intern_font_name.
5207
5208 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
5209
5210 * frame.c (Fdelete_frame): Call free_font_driver_list.
5211
5212 * font.c (free_font_driver_list): Implement missing function.
5213
5214 * w32term.c (w32_term_init): Don't initialize the image cache
5215 here; it will be done in init_frame_faces.
5216
5217 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
5218 (struct x_display_info): Remove unused member null_pixel. New
5219 member xim_callback_data.
5220
5221 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
5222 (xim_initialize): Save pointer to callback function data.
5223 (xim_close_dpy): Free callback function data. Call XCloseIM,
5224 reverting 2008-11-04 change by David Smith.
5225 (x_term_init): Don't initialize the image cache here; it will be
5226 done in init_frame_faces. Remove ancient "null_pixel" cruft.
5227 (x_delete_display): Free x_dnd_atoms member.
5228
5229 2008-12-13 Kenichi Handa <handa@m17n.org>
5230
5231 * font.c (font_rescale_ratio): Moved from xfaces.c.
5232 Argument type changed. Handle a font-spec too.
5233 (font_score): Check Vface_font_rescale_alist.
5234 (font_open_entity): Likewise. (Bug#1547)
5235
5236 * xfaces.c (font_rescale_ratio): Moved to font.c.
5237
5238 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
5239
5240 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
5241
5242 2008-12-12 Jason Rumney <jasonr@gnu.org>
5243
5244 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
5245 Vwindow_system_version to the real w32 major version.
5246
5247 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
5248
5249 * term.c (init_tty): Move setting the terminal name before the
5250 potential user: maybe_fatal.
5251
5252 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
5253
5254 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
5255 all callers changed. Call free_frame_faces to free the face cache.
5256
5257 2008-12-11 Jason Rumney <jasonr@gnu.org>
5258
5259 * w32font.c (fill_in_logfont): Don't assume symbol script means
5260 SYMBOL_CHARSET. (Bug#547)
5261
5262 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
5263 size for surrogates. (Bug#1096, bug#872)
5264
5265 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
5266
5267 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
5268
5269 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
5270
5271 * process.c (Fsystem_process_attributes, syms_of_process):
5272 Fix typo in name of Ssystem_process_attributes.
5273 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
5274
5275 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
5276
5277 * syntax.c (Fmodify_syntax_entry): Doc fix.
5278
5279 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
5280
5281 * font.c (Ffont_spec): Move usage to end of docstring.
5282
5283 2008-12-10 Jason Rumney <jasonr@gnu.org>
5284
5285 * w32font.c (Qcham): New symbol.
5286 (font_supported_scripts): Add cham, and comments for other new
5287 scripts in bitfield from OpenType spec.
5288 (add_font_entity_to_list): Limit unicode-sip fonts to those that
5289 contain characters beyond the bmp.
5290
5291 2008-12-10 Kenichi Handa <handa@m17n.org>
5292
5293 * ftfont.c (fc_charset_table): Add "unicode-sip".
5294 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
5295 Qunicode_sip.
5296
5297 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
5298
5299 * coding.c (QCdefault_char): Rename from QCdefalut_char.
5300 (Fcoding_system_put): Use QCdefault_char.
5301 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
5302
5303 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
5304
5305 * xftfont.c (syms_of_xftfont): Fix typo.
5306
5307 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
5308
5309 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
5310
5311 * emacs.c (main): Close daemon_pipe on exec.
5312
5313 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
5314
5315 * termchar.h (struct tty): New members termcap_term_buffer and
5316 termcap_strings_buffer.
5317
5318 * term.c (encode_terminal_code): Free any previous memory blocks
5319 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
5320 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
5321 All callers changed.
5322 (init_tty): Store termcap data and string buffers in new struct
5323 tty members termcap_term_buffer and termcap_strings_buffer.
5324 (delete_tty): Free them.
5325 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
5326
5327 2008-12-07 Seiji Zenitani <zenitani@mac.com>
5328
5329 * nsfns.m (ns_set_background_color): Remove code duplication.
5330 It was a substitute for face-transparency on OS X 10.3.
5331
5332 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
5333
5334 * coding.c (make_conversion_work_buffer): Disable buffer
5335 modification hooks in the work buffer.
5336
5337 2008-12-05 Eli Zaretskii <eliz@gnu.org>
5338
5339 * process.c (procfs_system_process_attributes): If `nread' has a
5340 negative value, assign zero to it.
5341
5342 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
5343
5344 * eval.c (Vdebug_on_error): Doc fix.
5345
5346 2008-12-05 Kenichi Handa <handa@m17n.org>
5347
5348 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
5349 second character is a combining character.
5350
5351 2008-12-05 Eli Zaretskii <eliz@gnu.org>
5352
5353 * process.c (procfs_system_process_attributes): Don't use cmd,
5354 cmdsize, and q without initializing them first.
5355
5356 2008-12-04 Jason Rumney <jasonr@gnu.org>
5357
5358 * w32font.c (w32font_draw): Initialize orig_clip before getting
5359 it, and delete it when finished.
5360
5361 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
5362
5363 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
5364 case when running as a daemon before detaching.
5365
5366 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
5367
5368 * w32.c (init_environment): Don't unload library shell32.dll.
5369
5370 2008-12-03 Kenichi Handa <handa@m17n.org>
5371
5372 * font.c (font_at): Set `multibyte' at first.
5373
5374 * coding.c (decode_coding_charset): Check type of an element of
5375 vector VALIDS.
5376 (encode_coding_emacs_mule): Be sure to set `code'.
5377
5378 * fontset.c (face_for_char): Handle invalid charset property correctly.
5379 (font_for_char): Likewise.
5380
5381 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
5382
5383 * font.c (Fopen_font): Compute pixel size correctly.
5384 (font_update_lface): Handle fonts with corrupted size specs,
5385 i.e. non-int and non-float.
5386
5387 * ftfont.c (ftfont_match): Initialize entity variable.
5388 (ftfont_resolve_generic_family): Avoid using uninitialized var.
5389 (ftfont_list_family): Initialize list var earlier.
5390
5391 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
5392
5393 * xterm.c (x_draw_glyph_string): Fall back on
5394 underline_minimum_offset for underline position.
5395
5396 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
5397
5398 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
5399
5400 * character.c (c_string_width): Specify the type for LEN.
5401
5402 2008-12-03 Kenichi Handa <handa@m17n.org>
5403
5404 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
5405 (decode_coding_utf_8): Likewise.
5406 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
5407 (produce_chars): Initialize consumed_chars to 0.
5408
5409 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
5410
5411 * keyboard.c (make_lispy_position): Only use PT if the selected
5412 window is current.
5413
5414 2008-12-02 Andreas Schwab <schwab@suse.de>
5415
5416 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
5417
5418 * doprnt.c (doprnt1): Fix size of charbuf.
5419
5420 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
5421
5422 * keyboard.c (timer_check): Revert last change.
5423
5424 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
5425
5426 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
5427
5428 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
5429
5430 * makefile.w32-in: Update dependencies.
5431 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
5432
5433 2008-12-01 Andreas Schwab <schwab@suse.de>
5434
5435 * font.c (register_font_driver): Use xmalloc.
5436 (font_put_frame_data): Likewise.
5437
5438 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
5439
5440 * xfaces.c (realize_x_face): Make abort condition clearer.
5441
5442 * gtkutil.c (update_frame_tool_bar): Initialize variable.
5443
5444 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
5445
5446 * keyboard.c (timer_check): After a timer runs, ensure that the
5447 selected window's buffer is current.
5448
5449 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
5450
5451 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
5452 It was accidentally restored by the Unicode merge.
5453
5454 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
5455
5456 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
5457
5458 * w32proc.c: Include "coding.h".
5459 (Fw32_short_file_name): Encode filename passed to Windows API.
5460 (Fw32_long_file_name): Encode filename passed to Windows API and
5461 decode back the result. (Bug#1433)
5462
5463 2008-11-29 Kenichi Handa <handa@m17n.org>
5464
5465 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
5466 not before accessing it.
5467
5468 * charset.c (Fdefine_charset_internal): After calculating
5469 min_char, max_char, and fastmap, copy the charset structure again.
5470 (encode_char): Fix the previous change.
5471
5472 2008-11-28 Seiji Zenitani <zenitani@mac.com>
5473
5474 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
5475
5476 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
5477
5478 * nsterm.m (x_set_frame_alpha): New function.
5479
5480 2008-11-27 Eli Zaretskii <eliz@gnu.org>
5481
5482 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
5483
5484 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
5485
5486 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
5487 pointer to check_face_name.
5488
5489 2008-11-27 Kenichi Handa <handa@m17n.org>
5490
5491 * category.h (SET_CATEGORY_SET): Call set_category_set.
5492 (set_category_set): Extern it.
5493
5494 * category.c (hash_get_category_set): New function.
5495 (Fmodify_category_entry): Adjusted for the change of
5496 char_table_ref_and_range. Call hash_get_category_set to get a
5497 category set to store in the table.
5498
5499 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
5500 Funify_charset.
5501
5502 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
5503 (DECODE_CHAR): Check if the decoder vector is ready.
5504 (ENCODE_CHAR): Check if the encoder char-table is ready.
5505 (maybe_unify_char): Extern it.
5506
5507 * charset.c (Vchar_unified_charset_table): Delete it.
5508 (inhibit_load_charset_map): New variable.
5509 (temp_charset_work): New variable.
5510 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
5511 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
5512 New macros.
5513 (load_charset_map): Meaning of control_flag changed. If
5514 inhibit_load_charset_map is nonzero, setup a table in
5515 temp_charset_work.
5516 (load_charset): New argument control_flag.
5517 (map_charset_for_dump): New function.
5518 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
5519 map_charset_for_dump.
5520 (Fdefine_charset_internal): If the charset method is MAP, load
5521 mapping tables by calling load_charset.
5522 (Funify_charset): Don't load a mapping table but directly set
5523 Vchar_unify_table.
5524 (maybe_unify_char): New function.
5525 (decode_char): Don't handle the deleted method MAP_DEFERRED.
5526 Handle the case of inhibit_load_charset_map being nonzero.
5527 (encode_char): Don't handle the deleted method MAP_DEFERRED.
5528 Handle the case of inhibit_load_charset_map being nonzero.
5529 (Fclear_charset_maps): Just free temp_charset_work.
5530 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
5531 variable.
5532
5533 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
5534 change of char_table_ref_and_range.
5535 (char_table_ref_and_range): Change the meaning of argument FROM
5536 and TO. Now the caller must provide initial values for *FROM
5537 and *TO.
5538
5539 * fontset.c (fontset_add): Adjusted for the change of
5540 char_table_ref_and_range.
5541 (fontset_get_font_group): Likewise.
5542 (Ffontset_info): Likewise.
5543
5544 * keymap.c (describe_vector): Adjusted for the change of
5545 char_table_ref_and_range. For char-table, put boundary between
5546 non-ASCII and 8-bit characters.
5547
5548 * print.c (print_object): For bool-vector, delete unnecessary
5549 check of ASCII_BYTE_P.
5550
5551 2008-11-26 Jason Rumney <jasonr@gnu.org>
5552
5553 * w32font.c (w32font_open_internal): Don't include external
5554 leading in font height. (Bug#879)
5555
5556 2008-11-26 Glenn Morris <rgm@gnu.org>
5557
5558 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
5559 redefinition with ifdef. (Bug#1383)
5560
5561 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
5562
5563 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
5564
5565 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
5566
5567 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
5568 New EmacsView methods.
5569 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
5570 Fixes bug #1048,1357,1414.
5571
5572 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
5573
5574 Fix bug #1362.
5575 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
5576 is not an indexed color.
5577 * nsterm.m (free_indexed_color): Add argument checking.
5578 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
5579
5580 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
5581
5582 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
5583 Document confirm-after-completion value for
5584 minibuffer-completion-confirm.
5585
5586 2008-11-24 Jason Rumney <jasonr@gnu.org>
5587
5588 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
5589 warning.
5590
5591 2008-11-23 Jason Rumney <jasonr@gnu.org>
5592
5593 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
5594 restored before returning.
5595
5596 * w32font.c (check_face_name): New function.
5597 (add_font_entity_to_list): Use it to filter out common substituted
5598 fonts. (Bug#642)
5599
5600 2008-11-22 Martin Rudalics <rudalics@gmx.at>
5601
5602 * buffer.c (Fswitch_to_buffer): Reword and mention new option
5603 confirm-nonexistent-file-or-buffer in doc-string.
5604
5605 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
5606
5607 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
5608 Fix copy/paste typo. Add checks.
5609
5610 2008-11-21 Kenichi Handa <handa@m17n.org>
5611
5612 * coding.c (detect_coding_iso_2022): Reject invalid composition
5613 sequence.
5614 (DECODE_COMPOSITION_START): If the current source is the last
5615 block, and the current composition doesn't end, regard this
5616 sequence as invalid.
5617 (decode_coding_iso_2022): Handle invalid composition sequence.
5618
5619 2008-11-20 Martin Rudalics <rudalics@gmx.at>
5620
5621 * window.c (coordinates_in_window): Don't return
5622 ON_VERTICAL_BORDER for the rightmost position of a mode/header
5623 line when the window is not the rightmost one. (Bug#1372)
5624
5625 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
5626
5627 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
5628
5629 2008-11-15 Eli Zaretskii <eliz@gnu.org>
5630
5631 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
5632 and bright_bg if noninteractive is non-zero.
5633
5634 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5635
5636 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
5637 x_draw_glyph_string_background.
5638
5639 * w32term.c (x_draw_glyph_string): Likewise.
5640
5641 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
5642
5643 * xterm.c (x_draw_glyph_string): Stop drawing the background of
5644 the next glyph string once past the overhang width.
5645
5646 * nsterm.m (ns_draw_glyph_string): Likewise.
5647
5648 * w32term.c (x_draw_glyph_string): Likewise.
5649
5650 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
5651
5652 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
5653 double file close.
5654
5655 2008-11-14 Martin Rudalics <rudalics@gmx.at>
5656
5657 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
5658 dedicated status of window before attempting to display another
5659 buffer in it.
5660
5661 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
5662
5663 * msdos.c (Fmsdos_long_file_names):
5664 (syms_of_msdos) <dos-unsupported-char-glyph>:
5665 * dosfns.c (Fint86): Fix typos in docstrings.
5666
5667 2008-11-14 Eli Zaretskii <eliz@gnu.org>
5668
5669 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
5670
5671 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
5672
5673 * puresize.h (BASE_PURESIZE): Increase to 1260000.
5674
5675 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
5676
5677 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
5678
5679 * frame.h: Negative alpha means "don't touch".
5680
5681 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
5682
5683 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
5684
5685 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
5686
5687 * hftctl.c:
5688 * chpdef.h:
5689 * acldef.h: Remove files used only for systems no longer supported.
5690
5691 * Makefile.in: Fix .o alphabetical ordering.
5692 (hftctl.o): Remove dependency, file removed.
5693 (keymap.o, print.o): Depend on charset.h.
5694
5695 2008-11-10 Kenichi Handa <handa@m17n.org>
5696
5697 * character.c (Fget_byte): Fix and make it faster for unibyte target.
5698
5699 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
5700
5701 * dired.c (file_name_completion): If completion_ignore_case is
5702 enabled, ignore case when checking completion-regexp-list.
5703
5704 2008-11-08 Eli Zaretskii <eliz@gnu.org>
5705
5706 * vm-limit.c (get_lim_data): Fix last change.
5707
5708 2008-11-08 Kenichi Handa <handa@m17n.org>
5709
5710 * character.c (Fget_byte): New function.
5711 (syms_of_character): Defsubr Fget_byte.
5712
5713 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
5714
5715 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
5716 cursor position is valid after scrolling.
5717
5718 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
5719
5720 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
5721
5722 2008-11-06 Glenn Morris <rgm@gnu.org>
5723
5724 * xterm.c (handle_one_xevent): Don't let popup menus cause
5725 mouse-autoselect-window related window switching. (Bug#1261)
5726
5727 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
5728
5729 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
5730
5731 2008-11-04 Andreas Schwab <schwab@suse.de>
5732
5733 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
5734
5735 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
5736
5737 * xfns.c (Fx_wm_set_size_hint): New function.
5738
5739 2008-11-03 Martin Rudalics <rudalics@gmx.at>
5740
5741 * textprop.c (Fprevious_single_char_property_change): Return 0
5742 when there's no change in a string. (Bug#1301)
5743
5744 2008-11-02 Martin Rudalics <rudalics@gmx.at>
5745
5746 * frame.c (do_switch_frame): New argument NORECORD passed to
5747 Fselect_window.
5748 (Fselect_frame): New argument NORECORD passed to
5749 do_switch_frame.
5750 (Fset_frame_selected_window): New argument NORECORD passed to
5751 Fselect_frame.
5752 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
5753 in call of do_switch_frame.
5754 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
5755 Handle NORECORD argument in call of Fselect_frame.
5756 * lisp.h (do_switch_frame, Fselect_frame)
5757 (Fset_frame_selected_window): Adjust declarations.
5758 * window.c (select_frame_norecord): New function.
5759 (run_window_configuration_change_hook): Use it and call
5760 Fselect_frame with NORECORD set.
5761 (Fselect_window): Pass NORECORD to Fselect_frame.
5762 (Fset_window_configuration): Handle NORECORD argument in call of
5763 do_switch_frame.
5764 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
5765 Fset_frame_selected_window.
5766 * keyboard.c (command_loop_1): Handle NORECORD in call of
5767 Fselect_frame (currently ifdefd).
5768
5769 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
5770
5771 * emacs.c (USAGE2): Untabify.
5772
5773 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
5774
5775 * composite.c (fill_gstring_header): Fix copy/paste typo.
5776
5777 2008-10-31 Martin Rudalics <rudalics@gmx.at>
5778
5779 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
5780 (Fother_window): Rename argument and rewrite doc-string.
5781 (select_window_norecord): Fix return value. (Bug#1276)
5782
5783 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
5784
5785 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
5786 new frames overriding foreground for tooltips. Based on similar patch
5787 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
5788
5789 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
5790
5791 * emacs.c (Fdaemon_initialized): Initialize nfd.
5792
5793 2008-10-29 Martin Rudalics <rudalics@gmx.at>
5794
5795 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
5796 (Fwindow_text_height): Clarify doc-strings.
5797 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
5798 doc-string of window-scroll-functions.
5799
5800 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
5801
5802 * category.c (syms_of_category): Fix typo in docstring.
5803
5804 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
5805
5806 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
5807 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
5808 Fix typos in docstrings.
5809
5810 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
5811
5812 * emacs.c (daemon_pipe): Make non-static.
5813 (IS_DAEMON): Move definition ...
5814 * lisp.h (IS_DAEMON): ... here.
5815 (daemon_pipe): Declare.
5816 (is_daemon): Remove.
5817 * dispnew.c (init_display): Use IS_DAEMON.
5818
5819 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5820
5821 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
5822 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
5823
5824 * emacs.c (is_daemon): Remove.
5825 (main): Don't set is_daemon.
5826 (IS_DAEMON): New macro.
5827 (Fdaemonp, Fdaemon_initialized): Use it.
5828 (Fdaemon_initialized): Write a char into the pipe to make sure the
5829 parent exits.
5830 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
5831
5832 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
5833
5834 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
5835 over-sized glyph, draw it with the default glyph width.
5836
5837 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
5838 glyph, draw it with the default glyph width.
5839
5840 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
5841 glyph, draw it with the default glyph width.
5842
5843 * xdisp.c (try_scrolling): When computing the distance from the
5844 scroll margin to PT, try moving some distance past the window
5845 bottom before giving up.
5846
5847 2008-10-27 Martin Rudalics <rudalics@gmx.at>
5848
5849 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
5850 (Fset_window_buffer): Explain in doc-string that a window can be
5851 "strongly" dedicated to its buffer.
5852
5853 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
5854
5855 * emacs.c (daemon_name): New variable.
5856 (main): Deal with --daemon=SERVER_NAME.
5857 (Fdaemonp): Return a name if one was passed to --daemon.
5858
5859 2008-10-26 Romain Francoise <romain@orebokech.com>
5860
5861 * emacs.c (daemon_pipe): New variable.
5862 (main): Create a pipe before forking, make the parent exit only after
5863 the child has closed its end of the pipe. Move closing the
5864 descriptors ...
5865 (Fdaemon_initialized): ... here. New function.
5866
5867 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
5868
5869 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
5870 the previous unoptimized table.
5871
5872 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
5873 the distinction between non-nil and non-t value of `dedicated'.
5874
5875 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
5876
5877 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
5878 read_char_minibuf_menu_text is large enough to hold the menu string.
5879
5880 2008-10-25 Martin Rudalics <rudalics@gmx.at>
5881
5882 * window.c (Fget_buffer_window, Fdelete_windows_on)
5883 (Freplace_buffer_in_windows): Make buffer argument optional and
5884 rename to buffer_or_name.
5885
5886 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
5887
5888 * xdisp.c (handle_single_display_spec, handle_display_prop):
5889 Undo 2005-05-16 change.
5890 (handle_stop): Pop iterator if it's loaded with an empty string.
5891 (get_overlay_strings_1): Don't save iterator if it's loaded with
5892 an empty string (bug#1201).
5893
5894 2008-10-24 Kenichi Handa <handa@m17n.org>
5895
5896 * ftfont.c (ftfont_otf_features): Fix previous change.
5897 (ftfont_otf_capability): Check FeatureList.FeatureCount before
5898 calling ftfont_otf_features.
5899
5900 2008-10-24 Kenichi Handa <handa@m17n.org>
5901
5902 * font.c (font_match_p): Fix for the case that a vector of
5903 characters is in script-representative-chars.
5904
5905 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
5906
5907 * dbusbind.c (xd_in_read_queued_messages): New variable.
5908 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
5909 (xd_read_queued_messages): Catch Qdbus_error from the macros.
5910 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
5911 macro. (Bug#1186)
5912
5913 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
5914
5915 * s/sol2-10.h: New file.
5916
5917 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
5918
5919 * xdisp.c (fill_glyph_string): Fix typo in source (though the
5920 poor beast has survived 9+ years and the jump from xterm.c!).
5921
5922 2008-10-23 Martin Rudalics <rudalics@gmx.at>
5923
5924 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
5925 Reword doc-string.
5926 (Fbury_buffer): In doc-string say what happens to the buffer's window.
5927
5928 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
5929
5930 * character.c (syms_of_character) <script-representative-chars>:
5931 <unicode-category-table>: Doc fixes.
5932
5933 2008-10-23 Noah Friedman <friedman@splode.com>
5934
5935 * coding.c (make_conversion_work_buffer): Check that
5936 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
5937 Fget_buffer_create.
5938
5939 2008-10-23 Kenichi Handa <handa@m17n.org>
5940
5941 * font.c (font_add_log): Check the values of extra properties.
5942
5943 2008-10-22 Martin Rudalics <rudalics@gmx.at>
5944
5945 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
5946 Reword doc-string.
5947 (Fset_window_parameter): Use NILP.
5948 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
5949 (Frecenter): Use "selected" instead of "current" window in doc-strings.
5950
5951 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
5952
5953 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
5954
5955 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
5956
5957 * nsfns.m (ns_appkit_version): New function.
5958 (x-server-version): Use it.
5959 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
5960 (x-server-vendor): Don't check_ns().
5961
5962 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
5963
5964 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
5965
5966 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
5967 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
5968
5969 2008-10-22 Kenichi Handa <handa@m17n.org>
5970
5971 * syntax.c (scan_words): Call word_boundary_p instead of comparing
5972 scripts.
5973
5974 * category.c (word_boundary_p): Check scripts instead of charset.
5975 Handle nil value in word-separating-categories and
5976 word-combining-categories.
5977 (syms_of_category): Fix docstrings of word-separating-categories
5978 and word-combining-categories.
5979
5980 2008-10-21 Eli Zaretskii <eliz@gnu.org>
5981
5982 * coding.c (Fencode_coding_region, Fdecode_coding_region)
5983 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
5984
5985 2008-10-21 Martin Rudalics <rudalics@gmx.at>
5986
5987 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
5988 Rename arg "buffer" to "buffer_or_name".
5989 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
5990 it optional.
5991 (no_switch_window): Remove since the return value is not used.
5992 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
5993 Consider window as dedicated when Fwindow_dedicated_p returns a
5994 non-nil value.
5995 * lisp.h: Remove prototype for no_switch_window.
5996
5997 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
5998
5999 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
6000 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
6001
6002 2008-10-21 Kenichi Handa <handa@m17n.org>
6003
6004 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
6005 check Vlatin_extra_code_table.
6006
6007 2008-10-20 Eli Zaretskii <eliz@gnu.org>
6008
6009 * fileio.c (Fset_file_modes): Doc fix.
6010
6011 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
6012
6013 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
6014 in arrays.
6015
6016 2008-10-19 Martin Rudalics <rudalics@gmx.at>
6017
6018 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
6019 Mention kill-buffer in doc-string.
6020 (Fset_window_buffer): Reinsert tem check removed in last commit.
6021 (Fenlarge_window, Fshrink_window): Have argument names and
6022 doc-string follow Elisp manual more closely.
6023
6024 2008-10-18 Eli Zaretskii <eliz@gnu.org>
6025
6026 * fileio.c (Fset_file_modes): Doc fix.
6027
6028 2008-10-18 Martin Rudalics <rudalics@gmx.at>
6029
6030 * window.c (Fwindow_width, Fset_window_start)
6031 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
6032 (Fdelete_windows_on, Freplace_buffer_in_windows):
6033 Make doc-strings follow code and Elisp manual more closely.
6034 (Fwindow_dedicated_p): Make window argument optional.
6035 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
6036 (Fset_window_buffer): Respect any non-nil dedicated value for
6037 window. Rename "buffer" argument to "buffer_or_name".
6038
6039 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
6040
6041 * m/sh3.h: New file, machine description for SuperH.
6042
6043 2008-10-17 Martin Rudalics <rudalics@gmx.at>
6044
6045 * window.c (Fsplit_window): Rename arg horflag to horizontal.
6046
6047 2008-10-17 Kenichi Handa <handa@m17n.org>
6048
6049 * ftfont.c (ftfont_otf_features): Fix indexing
6050 gsub_gpos->FeatureList.Feature. Check the validity of indices.
6051
6052 2008-10-16 Magnus Henoch <mange@freemail.hu>
6053
6054 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
6055 (Fdbus_call_method_asynchronously): Ditto.
6056 This change makes C-h f display the argument list.
6057
6058 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
6059
6060 * fileio.c (Fexpand_file_name): Doc fix.
6061
6062 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
6063 of :foreground and :background equivalent to unspecified (20.x
6064 compatibility).
6065
6066 2008-10-15 Eli Zaretskii <eliz@gnu.org>
6067
6068 * buffer.c (syms_of_buffer): Doc fix.
6069
6070 2008-10-14 Kenichi Handa <handa@m17n.org>
6071
6072 * font.c (font_clear_prop): When clearing font width, clear the
6073 average width field too.
6074
6075 2008-10-12 Andreas Schwab <schwab@suse.de>
6076
6077 * ftfont.c (ftfont_shape_by_flt): Make static.
6078 * ftfont.h (ftfont_shape_by_flt): Don't declare.
6079
6080 * font.c: Don't include <m17n-flt.h>.
6081
6082 2008-10-10 Eli Zaretskii <eliz@gnu.org>
6083
6084 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
6085
6086 2008-10-09 Eli Zaretskii <eliz@gnu.org>
6087
6088 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
6089 away code.
6090
6091 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
6092
6093 * dispnew.c (update_text_area): Avoid looping due to large glyph
6094 overhangs (bug#1070).
6095
6096 2008-10-09 Kenichi Handa <handa@m17n.org>
6097
6098 * fontset.c (face_for_char): If face->fontset is negative, just
6099 return ascii_face.
6100
6101 * font.c (font_delete_unmatched): Fix previous change.
6102 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
6103
6104 2008-10-09 Martin Rudalics <rudalics@gmx.at>
6105
6106 * frame.c (Fraise_frame): On text-only terminals select frame in
6107 order to make it visible. (Bug#1061)
6108
6109 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
6110
6111 * fontset.c (fontset_find_font): Check frame validity.
6112
6113 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
6114
6115 * gtkutil.c (xg_display_open): Reset default display if none exists.
6116 (xg_display_close): Allow Emacs to close all displays (bug#985).
6117
6118 2008-10-06 Andreas Schwab <schwab@suse.de>
6119
6120 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
6121
6122 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
6123
6124 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
6125
6126 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
6127
6128 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
6129 during initialization.
6130
6131 2008-10-04 Eli Zaretskii <eliz@gnu.org>
6132
6133 * xdisp.c (redisplay_internal): If frame switched, redisplay the
6134 whole thing on MSDOS frames as well as on a TTY.
6135
6136 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
6137 well as for TTY.
6138 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
6139 well as on a TTY.
6140
6141 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
6142 as well as for TTY.
6143
6144 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
6145
6146 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
6147 MSDOS frames as well.
6148
6149 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
6150
6151 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
6152 correct arguments.
6153 * menu.c (find_and_return_menu_selection): Add cast.
6154
6155 2008-10-03 Glenn Morris <rgm@gnu.org>
6156
6157 * emacs.c (USAGE1): Add --daemon.
6158
6159 2008-10-02 Eli Zaretskii <eliz@gnu.org>
6160
6161 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
6162 100, so it's in percents as advertised.
6163
6164 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
6165
6166 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
6167 (ns_output.current_cursor, ns_output.desired_cursor)
6168 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
6169 (FRAME_NEW_CURSOR_COLOR): Remove.
6170
6171 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
6172 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
6173 enumeration (HOLLOW_BOX_CURSOR, etc.).
6174
6175 * nsterm.m (ns_frame_rehighlight): Remove commented code.
6176 (draw_window_cursor): Simplify code.
6177 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
6178 Don't change cursor type. In latter, call rehighlight instead of doing
6179 updates manually.
6180 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
6181 Use core Emacs cursor types.
6182
6183 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
6184
6185 2008-10-02 Martin Rudalics <rudalics@gmx.at>
6186
6187 * process.c (Faccept_process_output): Fix doc-string.
6188
6189 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
6190
6191 * gmalloc.c (__sbrk): Also define for uClibc.
6192
6193 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
6194 for uClibc.
6195
6196 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
6197
6198 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
6199 styles.
6200 (nsfont_open): Reenable the cache.
6201
6202 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
6203
6204 * font.c (font_matching_entity): Reflect ATTRS in font selection.
6205 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
6206
6207 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6208
6209 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
6210 a suspended terminal.
6211
6212 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
6213
6214 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
6215
6216 2008-09-30 Eli Zaretskii <eliz@gnu.org>
6217
6218 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
6219
6220 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
6221
6222 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
6223 in a continued line coincides with a line beginning.
6224
6225 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
6226
6227 * nsfont.m (nsfont_trait_distance): Fix bug.
6228 (nsfont_list): Return a list rather than a vector (syncs with Handa
6229 changes of 2008-05-14).
6230 (nsfont_open): Improve logging.
6231
6232 2008-09-29 Andreas Schwab <schwab@suse.de>
6233
6234 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
6235
6236 2008-09-28 Martin Rudalics <rudalics@gmx.at>
6237
6238 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
6239 name as char-resolve-modifiers.
6240 Reported by: Markus Triska <markus.triska@gmx.at>
6241
6242 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
6243
6244 * dispnew.c (init_display): Return earlier when running as a daemon.
6245
6246 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
6247
6248 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
6249
6250 2008-09-27 Eli Zaretskii <eliz@gnu.org>
6251
6252 * composite.c (Fcomposition_get_gstring)
6253 (Fcompose_region_internal, Fcompose_string_internal)
6254 (Ffind_composition_internal): Doc fix.
6255 (syms_of_composite) <compose-chars-after-function>: Doc fix.
6256 (syms_of_composite) <auto-composition-function>: Doc fix.
6257 (syms_of_composite) <composition-function-table>: Doc fix.
6258
6259 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
6260
6261 * search.c (wordify): New argument for lax word-ends.
6262 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
6263
6264 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
6265
6266 * lisp.h (is_daemon): Declare.
6267 * dispnew.c (init_display): Do not try to initialize the terminal
6268 when running as a daemon.
6269
6270 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
6271
6272 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
6273 x_display_pixel_height.
6274
6275 2008-09-22 Martin Rudalics <rudalics@gmx.at>
6276
6277 * undo.c (record_point): Don't call Fundo_boundary for first
6278 change. (Bug#731)
6279
6280 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
6281
6282 * emacs.c (Fdaemonp): Doc fix.
6283
6284 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
6285
6286 * emacs.c (main): Place #ifdef in the proper place.
6287
6288 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
6289
6290 * emacs.c (standard_args): Add --daemon.
6291 (main): Disconnect from the terminal when --daemon is passed.
6292 (is_daemon): New variable.
6293 (Fdaemonp): New function.
6294 (syms_of_emacs): Defsubr it.
6295
6296 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
6297
6298 * xdisp.c (get_next_display_element): Handle string display
6299 correctly when checking for the end of a box run.
6300
6301 2008-09-20 Glenn Morris <rgm@gnu.org>
6302
6303 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
6304 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
6305 (Frename_file): Avoid copying to trash if a rename involves
6306 a delete. (Bug#964).
6307
6308 2008-09-20 Eli Zaretskii <eliz@gnu.org>
6309
6310 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
6311 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
6312 frames as well as termcap frames.
6313 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
6314 get_named_tty.
6315
6316 2008-09-19 Eli Zaretskii <eliz@gnu.org>
6317
6318 * process.c (procfs_system_process_attributes): Fix cmdline in
6319 case /proc/PID/cmdline is empty.
6320
6321 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
6322 x_display_pixel_height.
6323
6324 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
6325
6326 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
6327
6328 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
6329 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
6330
6331 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
6332
6333 * dispextern.h (struct it): Move line_wrap away from the middle of
6334 bitfields. Move voffset in struct iterator_stack_entry after the
6335 bitfields. Move tab_width near after another short.
6336
6337 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
6338
6339 * frame.h (struct frame): Move alpha from the middle of bitfields.
6340
6341 * window.h (struct window): Move frozen_window_start_p after the
6342 rest of the bitfields to reduce padding.
6343
6344 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
6345
6346 * xterm.h (x_display_info): Remove `height' and `width' members.
6347
6348 * nsterm.h (ns_display_info): Remove `height' and `width' members.
6349
6350 * w32term.h (w32_display_info): Remove `height', `width',
6351 `height_in', and `width_in' members.
6352
6353 * xterm.c (x_display_pixel_height, x_display_pixel_width):
6354 New functions.
6355 (x_calc_absolute_position): Use them.
6356 (x_term_init): Omit removed `height' and `width' members.
6357
6358 * w32term.c (x_display_pixel_height, x_display_pixel_width):
6359 New functions.
6360 (w32_read_socket, x_calc_absolute_position): Use them.
6361 (w32_initialize_display_info, w32_term_init): Omit removed members
6362 of w32_display_info.
6363
6364 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
6365 New functions.
6366 (ns_initialize_display_info): Omit removed members of ns_display_info.
6367
6368 * xterm.c (x_display_pixel_height, x_display_pixel_width):
6369 New functions.
6370 (x_calc_absolute_position): Use them.
6371 (x_term_init): Omit removed `height' and `width' members.
6372
6373 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
6374 (compute_tip_xy):
6375 * frame.c (x_fullscreen_adjust):
6376 * xmenu.c (menu_position_func): Use x_display_pixel_height and
6377 x_display_pixel_width.
6378
6379 2008-09-18 Kenichi Handa <handa@m17n.org>
6380
6381 * composite.c (fill_gstring_header): Don't check FROM and TO here.
6382 (composition_compute_stop_pos): Fix handling of static composition.
6383 (Fcomposition_get_gstring): Check FROM and TO at first.
6384
6385 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
6386
6387 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
6388 mixup (YAILOM).
6389
6390 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
6391
6392 * indent.c (Fvertical_motion): Use position reported by iterator
6393 instead of PT for determining screen motion (bug#943).
6394
6395 2008-09-17 Romain Francoise <romain@orebokech.com>
6396
6397 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
6398
6399 2008-09-17 Kenichi Handa <handa@m17n.org>
6400
6401 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
6402
6403 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
6404 if necessary.
6405
6406 2008-09-16 Kenichi Handa <handa@m17n.org>
6407
6408 * coding.c (make_conversion_work_buffer): Avoid calling
6409 Fget_buffer_create if it is not necessary.
6410
6411 2008-09-15 Martin Rudalics <rudalics@gmx.at>
6412
6413 * window.c (Fselect_window): Don't update window_select_count and
6414 use_time when norecord is not nil.
6415
6416 2008-09-14 Kenichi Handa <handa@m17n.org>
6417
6418 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
6419 specpdl_ptr.
6420
6421 2008-09-12 Kenichi Handa <handa@m17n.org>
6422
6423 * indent.c (scan_for_column): Don't handle automatic composition
6424 if the current buffer is not associated with a window.
6425
6426 * composite.c (composition_reseat_it): If the current buffer is
6427 not associated with a window, ignore the automatic composition.
6428 (find_automatic_composition): Likewise.
6429
6430 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6431
6432 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
6433 (Fgpm_mouse_stop): Use it.
6434 * termhooks.h (close_gpm): Declare.
6435 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
6436 connection if Gpm_GetEvent fails.
6437
6438 * window.c (set_window_buffer): Always preserve current-buffer.
6439
6440 2008-09-12 Glenn Morris <rgm@gnu.org>
6441
6442 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
6443
6444 2008-09-11 Glenn Morris <rgm@gnu.org>
6445
6446 * charset.c (charset-map-path): Doc fix.
6447
6448 2008-09-10 Kenichi Handa <handa@m17n.org>
6449
6450 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
6451
6452 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
6453 compose a grapheme cluster with the preceding base glyph.
6454
6455 * composite.c (composition_compute_stop_pos): Fix previous change.
6456 Reset cmp_it->id to -1 at first.
6457
6458 2008-09-10 Glenn Morris <rgm@gnu.org>
6459
6460 * Makefile.in (character.o, chartab.o): Fix config.h typo.
6461
6462 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
6463
6464 * keyboard.c (read_key_sequence): Reapply translation maps when
6465 switching keyboards.
6466
6467 2008-09-09 Kenichi Handa <handa@m17n.org>
6468
6469 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
6470 characters.
6471
6472 * composite.c (FORWARD_CHAR): Fix calculation
6473 of (POSITION).pos_byte.
6474 (composition_compute_stop_pos): Limit the search of composition to
6475 at most 500 characters ahead. If we reach the limit or find a
6476 newline, set cmp_it->ch to -2 and return 0.
6477 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
6478
6479 2008-09-08 Kenichi Handa <handa@m17n.org>
6480
6481 * indent.c (Fvertical_motion): Be sure to set
6482 it_overshoot_expected if it.cmp_it.id is non-negative.
6483
6484 2008-09-07 Andreas Schwab <schwab@suse.de>
6485
6486 * callproc.c (Fcall_process): Don't hold references to string data
6487 across garbage collection. Move initialisation of new_argv down
6488 to avoid compiler bug.
6489
6490 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6491
6492 * process.c (Fsystem_process_attributes): Doc fix.
6493
6494 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
6495
6496 * callproc.c (Fcall_process): Canonicalize current directory name.
6497
6498 * xdisp.c (move_it_to): When moving by vpos, ensure that the
6499 iterator advances to the next line if the current line ends in a
6500 continued tab.
6501
6502 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
6503
6504 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
6505 member to point to cmp_from.
6506
6507 * xdisp.c: Doc fix for references to gidx data member.
6508
6509 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
6510
6511 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
6512
6513 2008-09-07 Kenichi Handa <handa@m17n.org>
6514
6515 * composite.c (FORWARD_CHAR): Check STOP after
6516 incrementing (POSITION).pos.
6517
6518 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6519
6520 * process.c (Fsystem_process_attributes): Doc fix.
6521
6522 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
6523
6524 * keyboard.c (Ftop_level): Doc fix.
6525
6526 2008-09-06 Eli Zaretskii <eliz@gnu.org>
6527
6528 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
6529 minibuffer, don't let lower part of menu invade the echo area.
6530
6531 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
6532 "char *q" to access menu text and advance through it. Revert the
6533 change that displayed ">" instead of ASCII character 0x10.
6534
6535 2008-09-05 Eli Zaretskii <eliz@gnu.org>
6536
6537 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
6538 toggle boxes and radio buttons on MS-DOS as well.
6539
6540 2008-09-05 Kenichi Handa <handa@m17n.org>
6541
6542 * composite.c (autocmp_chars): Check lookback count.
6543 (composition_compute_stop_pos): Set cmp_it->lookback.
6544 (composition_reseat_it): Check lookback count.
6545 (struct position_record): New struct.
6546 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
6547 (find_automatic_composition): New function.
6548 (composition_adjust_point): Use find_automatic_composition.
6549
6550 * dispextern.h (struct composition_it): New member lookback.
6551
6552 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
6553
6554 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
6555 if moving by a single line.
6556
6557 2008-09-02 Andreas Schwab <schwab@suse.de>
6558
6559 * xterm.c (x_delete_display): Fix merge error.
6560
6561 * fileio.c (Fexpand_file_name): Remove unused variables.
6562
6563 2008-09-02 Eli Zaretskii <eliz@gnu.org>
6564
6565 * fileio.c (Fexpand_file_name): Copy argument `name' into local
6566 storage on all platforms, not just on DOS_NT.
6567
6568 2008-09-02 Jason Rumney <jasonr@gnu.org>
6569
6570 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
6571 Ensure mouse is not grabbed after menu is finished.
6572
6573 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
6574
6575 * xfaces.c (Finternal_set_alternative_font_family_alist)
6576 (Finternal_set_alternative_font_registry_alist): Properly copy
6577 entire alist structure.
6578
6579 2008-09-01 Kenichi Handa <handa@m17n.org>
6580
6581 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
6582 representative chars of the script is a vector.
6583 (ftfont_list): Handle the case where the representative chars of
6584 the script is a vector.
6585
6586 * character.c (syms_of_character): Docstring of
6587 script-representative-chars fixed.
6588
6589 2008-08-31 Eli Zaretskii <eliz@gnu.org>
6590
6591 * msdos.c (BUILD_CHAR_GLYPH): New macro.
6592 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
6593 the menu. Allocate larger buffer for `text', to account for
6594 possible ^C characters.
6595
6596 2008-08-31 Martin Rudalics <rudalics@gmx.at>
6597
6598 * xdisp.c (prepare_menu_bars): Don't call
6599 Vwindow_size_change_functions with arg Qt.
6600
6601 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
6602
6603 * font.h (font_range):
6604 * fileio.c (report_file_error):
6605 * composite.c (composition_update_it): Yet another int/Lisp_Object
6606 mixup (YAILOM).
6607
6608 2008-08-30 Glenn Morris <rgm@gnu.org>
6609
6610 * data.c (Fmake_variable_frame_local): Doc fix.
6611
6612 * frame.c (Fmodify_frame_parameters): Doc fix.
6613
6614 2008-08-30 Eli Zaretskii <eliz@gnu.org>
6615
6616 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
6617 needed by GetTokenInformation.
6618 (w32_system_process_attributes): Check return values of all system
6619 APIs.
6620
6621 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
6622 only when the state changes.
6623 (IT_update_begin, IT_update_end): Add termscript trace.
6624
6625 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
6626 clipboard is unavailable. Set dst to NULL if it doesn't point to
6627 malloc'ed data.
6628 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
6629 passing random values to xfree.
6630
6631 * dispnew.c (init_display): Set `tty's association in frame's
6632 parameters alist to the name of the terminal device, if that is known.
6633
6634 2008-08-29 Jason Rumney <jasonr@gnu.org>
6635
6636 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
6637
6638 2008-08-29 Eli Zaretskii <eliz@gnu.org>
6639
6640 * composite.c (fill_gstring_body): Avoid compiler warnings.
6641
6642 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
6643 LGLYPH_SET_CODE to avoid compiler warnings.
6644
6645 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
6646
6647 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
6648
6649 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
6650 LGLYPH_SET_CODE.
6651
6652 2008-08-29 Kenichi Handa <handa@m17n.org>
6653
6654 * fileio.c (report_file_error): Don't downcase the first character
6655 of errstring if it is still unibyte.
6656
6657 2008-08-29 Kenichi Handa <handa@m17n.org>
6658
6659 These changes are to re-implement the automatic composition so
6660 that it doesn't use text properties.
6661
6662 * Makefile.in (ftfont.o): Depend on composite.h.
6663 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
6664
6665 * character.h (Vunicode_category_table): Extern it.
6666
6667 * character.c (Vunicode_category_table): New variable.
6668 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
6669
6670 * chartab.c (optimize_sub_char_table): Perform more greedy
6671 optimization.
6672
6673 * composite.h (enum composition_method):
6674 Delete COMPOSITION_WITH_GLYPH_STRING.
6675 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
6676 (Vcomposition_function_table): Extern it.
6677 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
6678 (composition_gstring_put_cache, composition_gstring_from_id)
6679 (composition_gstring_p, composition_gstring_width)
6680 (composition_compute_stop_pos, composition_reseat_it)
6681 (composition_update_it, composition_adjust_point): Extern them.
6682 (Fcomposition_get_gstring): EXFUN it.
6683
6684 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
6685 (Vcomposition_function_table)
6686 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
6687 (gstring_hash_table, gstring_work, gstring_work_headers):
6688 New variables.
6689 (gstring_lookup_cache, composition_gstring_put_cache)
6690 (composition_gstring_from_id, composition_gstring_p)
6691 (composition_gstring_width, fill_gstring_header)
6692 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
6693 (composition_reseat_it, composition_update_it)
6694 (composition_adjust_point, Fcomposition_get_gstring): New functions.
6695 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
6696 and gstring_work_headers. DEFVAR_LISP composition-function-table.
6697 Defsubr compostion_get_gstring.
6698
6699 * dispextern.h (struct glyph): New union u.cmp. Delete the member
6700 cmp_id.
6701 (struct glyph_string): Delete the member gidx. New members
6702 cmp_id, cmp_from, and cmp_to.
6703 (enum it_method): Delete GET_FROM_COMPOSITION.
6704 (struct composition_it): New struct.
6705 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
6706 Delete c, len, cmp_id, cmp_len in u.comp.
6707
6708 * font.h (enum lgstring_indices): Delete it.
6709 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
6710 (enum lglyph_indices): Likewise.
6711 (font_range): Adjust extern.
6712 (font_fill_lglyph_metrics): Extern it.
6713
6714 * font.c (QCf): New variable.
6715 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
6716 (font_prepare_composition): Delete this function.
6717 (font_range): Type and arguments changed.
6718 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
6719 (font_fill_lglyph_metrics): New function.
6720 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
6721 (syms_of_font): DEFSYM QCf. Delete defsubr for
6722 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
6723 Defsubr Sfont_shape_gstring.
6724
6725 * fontset.h (font_for_char): Extern it.
6726
6727 * fontset.c (font_for_char): New function.
6728
6729 * ftfont.c: Include composite.h.
6730 (ftfont_resolve_generic_family): Add langset "en" to pattern.
6731 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
6732
6733 * indent.c: Include composite.h and dispextern.h.
6734 (check_composition): Delete this function.
6735 (scan_for_column): Handle composition by
6736 composition_compute_stop_pos, composition_reseat_it, and
6737 composition_update_it.
6738 (compute_motion): Likewise.
6739 (Fvertical_motion): Fix checking of composition.
6740
6741 * keyboard.c (adjust_point_for_property): Check composition by
6742 composition_adjust_point.
6743
6744 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
6745 struct glyph_string.
6746
6747 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
6748 (append_composite_glyph): Adjust for the change of struct it and
6749 struct glyph.
6750 (produce_composite_glyph): Likewise.
6751
6752 * w32term.c (x_draw_composite_glyph_string_foreground):
6753 Adjust for the change of struct glyph_string.
6754 (x_draw_glyph_string): Likewise.
6755
6756 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
6757 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
6758
6759 * xdisp.c: Include font.h.
6760 (it_props): Delete the entry for Qauto_composed.
6761 (init_iterator): Initialize it->cmp_it.id to -1.
6762 (compute_stop_pos): Call composition_compute_stop_pos.
6763 (face_before_or_after_it_pos): Adjust for the change of struct it.
6764 (handle_auto_composed_prop): Delete it.
6765 (handle_composition_prop): Handle only static composition.
6766 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
6767 from xassert. Initialize it->cmp_it.stop_pos.
6768 (push_it): Adjust for the change of struct it.
6769 (pop_it): Likewise.
6770 (get_next_element): Delete next_element_from_composition.
6771 (CHAR_COMPOSED_P): New macro.
6772 (get_next_display_element): For automatic composition, get a face
6773 from the font in the glyph-string.
6774 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
6775 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
6776 (next_element_from_string): Check if the character at the current
6777 position is composed by CHAR_COMPOSED_P.
6778 (next_element_from_buffer): Likewise.
6779 (next_element_from_composition): Adjust for the change of struct it.
6780 Update it->cmp_it.
6781 (dump_glyph): Adjust for the change of struct glyph.
6782 (fill_composite_glyph_string): Adjust for the change of struct
6783 it and struct glyph. Don't handle automatic composition here.
6784 (fill_gstring_glyph_string): New function.
6785 (x_get_glyph_overhangs): Handle automatic composition.
6786 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
6787 (BUILD_GSTRING_GLYPH_STRING): New macro.
6788 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
6789 automatic composition.
6790 (append_composite_glyph): Adjust for the change of struct it and
6791 struct glyph.
6792 (x_produce_glyphs): Adjust for the change of struct it.
6793
6794 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
6795 the change of struct glyph_string.
6796 (x_draw_glyph_string): Likewise.
6797
6798 2008-08-29 Glenn Morris <rgm@gnu.org>
6799
6800 * buffer.c (word-wrap): Doc fix.
6801 * xdisp.c (truncate-partial-width-windows): Doc fix.
6802 Increase default to 50.
6803
6804 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
6805
6806 * xdisp.c (update_tool_bar_unwind): New function.
6807 (update_tool_bar): Temporarily set selected frame before building
6808 tool-bar items.
6809
6810 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
6811
6812 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
6813 snprintf, respectively.
6814 (xd_append_arg): Convert strings with Fstring_make_unibyte.
6815
6816 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
6817
6818 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
6819 LDFLAGS to GNUstep CC invocation.
6820
6821 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
6822
6823 * indent.c (Fvertical_motion): Revert last change. Handle the
6824 general case where we are moving forward, and PT spans multiple
6825 screen lines.
6826
6827 * eval.c (find_handler_clause): Temporarily increase
6828 max-lisp-eval-depth while printing the backtrace buffer, to
6829 guarantee that help-mode code can run.
6830
6831 2008-08-27 Eli Zaretskii <eliz@gnu.org>
6832
6833 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
6834 colors under -rv.
6835 (IT_set_frame_parameters): Don't swap foreground and background
6836 colors if `(reverse . t)' is present in the frame properties.
6837 (internal_terminal_init): Call init_frame_faces only for the
6838 initial frame.
6839
6840 2008-08-27 Andreas Schwab <schwab@suse.de>
6841
6842 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
6843
6844 2008-08-27 Andreas Schwab <schwab@suse.de>
6845
6846 * search.c (search_buffer): Set char_base to zero only at the end.
6847
6848 2008-08-27 Kenichi Handa <handa@m17n.org>
6849
6850 * fileio.c (report_file_error): Fix handling of multibyte error string.
6851
6852 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
6853
6854 * xterm.c (x_term_init): Temporarily hide the partially
6855 initialized terminal while calling vendor-specific-keysyms.
6856
6857 2008-08-26 Eli Zaretskii <eliz@gnu.org>
6858
6859 * msdos.c (internal_terminal_init): Most initializations done only
6860 once, especially initial_screen_colors[] and termscript open.
6861
6862 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
6863
6864 * eval.c (Fcondition_case): Doc fix.
6865
6866 * widgetprv.h (EmacsFramePart): Change font member to the new font
6867 struct.
6868
6869 * widget.c: Include character.h and font.h for XSETFONT.
6870 (setup_frame_gcs): Compute X font id from font struct, just once.
6871
6872 2008-08-26 Eli Zaretskii <eliz@gnu.org>
6873
6874 * term.c (get_named_tty): Fix last change.
6875
6876 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
6877
6878 * indent.c (Fvertical_motion): If moving forward starting from a
6879 multi-line string, move the iterator to the last line of that string.
6880
6881 2008-08-25 Eli Zaretskii <eliz@gnu.org>
6882
6883 * frame.c (do_switch_frame): Mark previously displayed frame as
6884 obscured for FRAME_MSDOS_P frames as well.
6885
6886 2008-08-24 Eli Zaretskii <eliz@gnu.org>
6887
6888 * frame.c (make_terminal_frame): Initialize f->terminal,
6889 f->terminal->reference_count, and scroll bars on MS-DOS as well.
6890 Set the top frame to newly created frame.
6891 (Fmake_terminal_frame): Reuse the_only_display_info.
6892
6893 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
6894 estimating available memory.
6895
6896 2008-08-23 David Reitter <david.reitter@gmail.com>
6897
6898 * nsterm.m (ns_draw_window_cursor): Don't call
6899 NSDisableScreenUpdates and NSEnableScreenUpdates on
6900 non-NS_IMPL_COCOA systems.
6901
6902 2008-08-23 Andreas Schwab <schwab@suse.de>
6903
6904 * process.c (procfs_system_process_attributes): Fix use of
6905 uninitialized variables.
6906
6907 2008-08-23 Eli Zaretskii <eliz@gnu.org>
6908
6909 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
6910
6911 * dispnew.c (init_display): Remove MS-DOS specific conditions for
6912 calling tty-set-up-initial-frame-faces.
6913
6914 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
6915 Allow MSDOS frames along with X frames.
6916
6917 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
6918 addition to output_termcap.
6919
6920 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
6921
6922 * termchar.h (FRAME_TTY): Support output_msdos_raw.
6923 (struct tty_display_info) [MSDOS]: Add fields related to mouse
6924 highlight.
6925
6926 * process.c [!subprocesses]: Define QCname.
6927 (syms_of_process): Intern and staticpro it.
6928
6929 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
6930 Adjust for changes in encoding/decoding routines.
6931 Use encode_coding_object and decode_coding_object instead of
6932 encode_coding and decode_coding.
6933
6934 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
6935
6936 * dosfns.c: Include frame.h before termhooks.h.
6937 (dos_cleanup): Use CURTTY ()->termscript instead of a global
6938 variable termscript.
6939
6940 * s/msdos.h (USER_FULL_NAME): Define.
6941 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
6942
6943 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
6944 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
6945 pw->pw_gecos.
6946
6947 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
6948 SELECTED_FRAME as additional (1st) argument.
6949 (tty_read_avail_input): Handle output_msdos_raw in
6950 addition to output_termcap.
6951
6952 * msdos.c: Include frame.h before termhooks.h.
6953 (mouse_on, mouse_off, mouse_moveto, mouse_init)
6954 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
6955 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
6956 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
6957 (IT_set_terminal_modes, IT_reset_terminal_modes)
6958 (IT_set_frame_parameters): Use tty->termscript instead of a global
6959 variable termscript.
6960 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
6961 global variable terminal_coding. Don't refer to
6962 Vnonascii_translation_table.
6963 (internal_terminal_init): Set Vwindow_system in current_kboard.
6964 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
6965 Announce date and time of session start, if termscript is open.
6966 Don't zero out the_only_display_info (it is done in
6967 term.c:init_tty). Open termscript only of not already open.
6968 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
6969 here instead of dos_ttraw. Don't initialize display if this is an
6970 initial tty. Don't set FRAME_FONT.
6971 (Vwindow_system_version): Bump to 23.
6972 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
6973 is available, set up mouse_position_hook.
6974 (dos_ttraw, IT_set_terminal_modes): If called with initial
6975 terminal, do nothing.
6976 (IT_set_frame_parameters): Handle the Qtty_type frame
6977 parameter by calling internal_terminal_init.
6978 (dos_set_window_size, show_mouse_face)
6979 (clear_mouse_face, IT_note_mode_line_highlight)
6980 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
6981 (dos_rawgetc): Use tty_display_info instead of x_display_info.
6982 (initialize_msdos_display): New function.
6983 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
6984 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
6985 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
6986 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
6987 Accept additional argument: a pointer to a frame. Update all callers.
6988 (request_sigio, unrequest_sigio): Don't define, now defined on
6989 sysdep.c.
6990 (IT_write_glyphs): Rewrite to use encode_terminal_code.
6991
6992 * term.c [MSDOS]: Include msdos.h.
6993 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
6994 conditional to DOS_NT. Allow only one call to this function in a
6995 session. Don't allocate a new struct tty_display_info; instead,
6996 reuse the_only_display_info. Call get_tty_size to get screen
6997 dimensions. Call init_baud_rate to set bad_rate.
6998 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
6999 (Fsuspend_tty) [MSDOS]: Don't close input and output.
7000 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
7001 (get_tty_terminal, get_named_tty, Ftty_type)
7002 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
7003 output_termcap.
7004 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
7005 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
7006 only when subprocesses are supported.
7007
7008 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
7009 f->output_data.x.
7010 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
7011 terminal devices.
7012
7013 * msdos.h: Remove definition of struct x_display_info and struct
7014 x_output.
7015 (FRAME_FONT): Use output_data.tty.
7016 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
7017 (struct x_display_info): Rename from display_info. Update all users in
7018 msdos.c.
7019 (struct x_output): Remove background_pixel and foreground_pixel.
7020 (the_only_display_info): Rename from the_only_x_display.
7021 (dos_ttraw): Update prototype.
7022
7023 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
7024 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
7025
7026 2008-08-23 Jason Rumney <jasonr@gnu.org>
7027
7028 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
7029 (fn_TIFFSetDirectory): New library function used.
7030 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
7031 (tiff_load): Use :index to select among multiple images. Set count
7032 property when multiple images exist.
7033 (gif_format): Use :index, not :image.
7034
7035 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
7036
7037 * xdisp.c (try_scrolling): Check INT_MAX instead of
7038 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
7039 to obtain INT_MAX.
7040
7041 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
7042
7043 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
7044
7045 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
7046
7047 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
7048 GNUstep library location.
7049
7050 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
7051
7052 * xfaces.c (x_update_menu_appearance): Check validity of menu font
7053 before using it.
7054
7055 * puresize.h (BASE_PURESIZE): Increase to 1250000.
7056
7057 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
7058
7059 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
7060 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
7061 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
7062 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
7063 (EmacsApp-cursor_blink_handler): Remove declaration.
7064 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
7065 match 01 Feb 2008 changes in xterm.c.
7066 (ns_read_socket): Add cast to avoid warning.
7067 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
7068 GNUstep.
7069
7070 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
7071
7072 * xselect.c (x_get_foreign_selection): Return nil if desired
7073 selection could not be obtained, instead of signalling an error.
7074
7075 2008-08-20 David Reitter <david.reitter@gmail.com>
7076
7077 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
7078 * nsterm.m: Remove ns-specific code for cursor blinking.
7079 (ns_draw_window_cursor): Clear cursor properly rather than
7080 redrawing the area. Respect width of bar cursors.
7081 These changes enable the use of generic blink-cursor-mode and
7082 generic cursor types in NS and support smooth cursor movements (do
7083 not blink off after command).
7084 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
7085 Nextstep, too.
7086
7087 2008-08-19 Kenichi Handa <handa@m17n.org>
7088
7089 * font.c (Vfont_log_deferred): New variable.
7090 (font_add_log): Check Vfont_log_deferred.
7091 (font_deferred_log): New function.
7092
7093 * font.h (font_deferred_log): Extern it.
7094
7095 * fontset.c (reorder_font_vector): Use encoding charset of fonts
7096 for sorting.
7097 (face_for_char): Use deferred log.
7098
7099 2008-08-18 Kenichi Handa <handa@m17n.org>
7100
7101 * fontset.c (face_for_char): Add font log.
7102
7103 * font.c (font_add_log): Add the font properties :script, :lang,
7104 and :otf in the log.
7105
7106 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
7107
7108 * xdisp.c: Remove dead code.
7109 (handle_invisible_prop, next_overlay_string): Defer call to
7110 setup_for_ellipsis.
7111 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
7112
7113 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
7114
7115 * xfaces.c (lookup_derived_face): Properly handle possible zero
7116 return value of get_lface_attributes.
7117 (merge_faces): Don't tell lookup_derived_face to signal an error
7118 if face is not found.
7119
7120 * dired.c (Fdirectory_files): Doc fix.
7121
7122 * process.c (make_process): Initialize kill_without_query struct
7123 member.
7124
7125 2008-08-15 Eli Zaretskii <eliz@gnu.org>
7126
7127 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
7128 Alternative calculation of totphys for Visual Studio 6.
7129
7130 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
7131
7132 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
7133 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
7134 All users changed.
7135 (stat): Only root directory passed to GetDriveType. Allow RAM
7136 disk as well as local fixed disk when w32-get-true-file-attributes
7137 is set to `local'.
7138 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
7139 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
7140 (w32_cached_id, w32_add_to_cache): New functions.
7141 (get_name_and_id): Look account names in the cache before calling
7142 lookup_account_sid.
7143 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
7144 New initialization flags.
7145 (globals_of_w32): Initialize them to zero.
7146 (w32_system_process_attributes): Use w32_cached_id and
7147 w32_add_to_cache.
7148
7149 2008-08-14 Lawrence Mitchell <wence@gmx.li>
7150
7151 * lread.c (Fread_char, Fread_char_exclusive): If no character
7152 event is read before timeout is reached, return nil, rather than
7153 converting to a number.
7154
7155 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
7156
7157 * fns.c (use_dialog_box): Doc fix.
7158
7159 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
7160 on OS X.
7161
7162 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
7163
7164 * frame.c (Qns_parse_geometry): New var.
7165 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
7166
7167 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
7168
7169 * xdisp.c (x_produce_glyphs): Handle the case when font has no
7170 space character in calculating tabs.
7171
7172 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
7173
7174 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
7175
7176 2008-08-10 Glenn Morris <rgm@gnu.org>
7177
7178 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
7179 silence gcc "limited range of data type" warnings in some
7180 make_fixnum_or_float calls.
7181
7182 2008-08-09 Eli Zaretskii <eliz@gnu.org>
7183
7184 * w32.c (w32_system_process_attributes): If the process does not
7185 exist, return nil.
7186
7187 * w32.c: Include thelp32.h, psapi.h and coding.h.
7188 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
7189 declarations.
7190 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
7191 (Process32Next_Proc): New typedefs.
7192 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
7193 (g_b_init_process32_next, g_b_init_open_thread_token)
7194 (g_b_init_impersonate_self, g_b_init_revert_to_self)
7195 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
7196 (g_b_init_get_process_working_set_size)
7197 (g_b_init_global_memory_status_ex): New static variables.
7198 (globals_of_w32): Initialize them.
7199 (create_toolhelp32_snapshot, process32_first, process32_next)
7200 (open_thread_token, impersonate_self, revert_to_self)
7201 (get_process_memory_info, get_process_working_set_size)
7202 (global_memory_status, global_memory_status_ex): New wrapper
7203 functions.
7204 (w32_list_system_processes, w32_system_process_attributes)
7205 (enable_privilege, restore_privilege, ltime, process_times):
7206 New functions.
7207 (convert_time_raw): New function.
7208 (convert_time): Remove conversion of FILETIME into time in 100
7209 nsec units, call convert_time_raw instead.
7210
7211 * process.h (w32_list_system_processes, w32_system_process_attributes):
7212 Add prototypes.
7213 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
7214 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
7215 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
7216 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
7217
7218 * process.c (Fsystem_process_attributes): Doc fix.
7219
7220 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
7221
7222 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
7223 a continued multi-char glyph; if so, advance to the actual glyph.
7224
7225 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
7226
7227 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
7228
7229 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
7230 (.m.o): Use it.
7231 * config.in: Regenerate.
7232
7233 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
7234
7235 * xdisp.c (redisplay_window): Revert last change.
7236 (try_window): Check bottom scroll margin too.
7237
7238 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
7239
7240 * config.in: Regenerate.
7241
7242 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
7243 -list-load-path-shadows'.
7244 (nsgui.h): Reduce number of things depending on it.
7245
7246 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
7247
7248 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
7249 instead of window-end which does the wrong thing at eob.
7250 (try_cursor_movement): Minor optimization.
7251 (redisplay_window): If scroll margin is defined, don't assume
7252 window doesn't need scrolling.
7253
7254 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
7255
7256 * config.in: Regenerate.
7257
7258 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
7259 (mostlyclean): Don't delete *.d under NS.
7260
7261 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
7262
7263 2008-08-06 Kenichi Handa <handa@m17n.org>
7264
7265 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
7266
7267 2008-08-06 Andreas Schwab <schwab@suse.de>
7268
7269 * config.in: Regenerate.
7270
7271 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
7272
7273 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
7274 forcing a window start.
7275
7276 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
7277 (auto_save_1): Update modtime when auto-save-list-file-name is on.
7278
7279 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
7280
7281 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
7282 argument.
7283
7284 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
7285
7286 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
7287 <scroll-down-aggressively, before-change-functions>:
7288 <after-change-functions>: Reflow docstrings.
7289
7290 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
7291 Ken Raeburn <raeburn@gnu.org>
7292
7293 Dock menu customization, based on a patch by Ken Raeburn, plus some
7294 other fixes.
7295 * nsmenu.m (dockMenu): New variable.
7296 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
7297
7298 * nsterm.h (dockMenu): Declare.
7299
7300 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
7301 (ns_term_init): Initialize dockMenu.
7302 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
7303 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
7304 left.
7305
7306 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
7307
7308 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
7309
7310 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
7311
7312 * config.in: Regenerate.
7313
7314 2008-08-04 Seiji Zenitani <zenitani@mac.com>
7315
7316 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
7317
7318 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
7319
7320 * nsterm.h (find_and_call_menu_selection): Fix prototype.
7321
7322 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
7323
7324 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
7325
7326 * keyboard.h: Comment an #endif.
7327
7328 * lisp.h (have_menus_p): Adjust comment.
7329
7330 * menu.c (find_and_return_menu_selection): Fix comparison with
7331 client_data.
7332
7333 * nsmenu.m (popup_activated_flag): New variable.
7334 (popup_activated): New function.
7335 (menu-or-popup-active-p): New exported lisp definition.
7336 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
7337 when popup done.
7338 (ns_popup_dialog): Set popup_activated_flag.
7339
7340 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
7341 version for GNUstep (handled by conditional typedef in nsterm.m).
7342 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
7343 in rgb.txt).
7344
7345 * process.c (init_process): Use DARWIN_OS, not DARWIN.
7346
7347 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
7348
7349 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
7350
7351 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
7352 shortcircuit if popup_activated like GTK and X toolkit.
7353
7354 * m/inter386.h: Change DARWIN to DARWIN_OS.
7355
7356 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
7357 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
7358 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
7359 comment on NO_SOCK_SIGIO.
7360
7361 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
7362
7363 * nsterm.m (windowDidResize): Remove stopModal call.
7364
7365 2008-08-03 Andreas Schwab <schwab@suse.de>
7366
7367 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
7368 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
7369
7370 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
7371
7372 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
7373 Don't use uninitialized pointer variable when using getrlimit.
7374
7375 2008-08-02 Jason Rumney <jasonr@gnu.org>
7376
7377 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
7378
7379 2008-08-02 Eli Zaretskii <eliz@gnu.org>
7380
7381 * alloc.c (NSTATICS): Bump to 0x640.
7382
7383 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
7384
7385 * lisp.h: Add prototype for directory_files_internal.
7386
7387 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
7388 New functions.
7389 (syms_of_process): Defsubr them. Add initializations for various
7390 Q* symbols used in procfs_system_process_attributes.
7391 (procfs_list_system_processes, procfs_system_process_attributes)
7392 [HAVE_PROCFS]: New functions.
7393 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
7394 (procfs_get_total_memory): New functions.
7395
7396 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
7397
7398 * xfaces.c (Fx_load_color_file): Fix previous change;
7399 it is #ifdef WINDOWSNT, not WINDOWS_NT.
7400
7401 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
7402
7403 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
7404
7405 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
7406
7407 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
7408
7409 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
7410
7411 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
7412
7413 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
7414 define NSApplicationDelegateReplySuccess.
7415 (EmacsView -converstationIdentifier): Use long instead of
7416 NSInteger for GNUstep, since it doesn't have NSInteger.
7417
7418 * xmenu.c: Revert last change.
7419
7420 * keyboard.h: Fix last change.
7421
7422 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
7423
7424 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
7425 on Windows.
7426
7427 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
7428
7429 Warning clearing and clean-up in NS port.
7430 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
7431 Add prototypes.
7432 * nsgui.h (FACE_DEFAULT): Remove, unused.
7433 (XGCValues): Change colors to unsigned long.
7434 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
7435 nsterm.m.
7436 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
7437 (ns_list_fonts): Remove, unused.
7438 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
7439 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
7440 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
7441 (nsfont_draw): Compare face colors to 0, not nil.
7442 * nsmenu.m (struct widget_value): Drop unneeded declaration.
7443 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
7444 (-addSubmenuWithTitle:): Use NSMenuItem class.
7445 (ns_popup_menu): Use NO, not NULL, for enabled setting.
7446 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
7447 (ns_clip_to_row): Make gc arg a BOOL.
7448 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
7449 ns_clip_to_row() call.
7450 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
7451 used). Cast FRAME_FONT assignments.
7452 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
7453 (ns_string_to_lispmod): Change arg to const char.
7454 (ns_term_init): Use NSMenuItem class.
7455 (EmacsApp -openFile:): Move to different section of file.
7456 (EmacsApp -application:openFiles:): Don't return a value, call
7457 -replyToOpenOrPrint:.
7458 (EmacsView -keyDown:): Fix up cast.
7459 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
7460 (EmacsView -menuDown:): Cast tag in call to
7461 find_and_call_menu_selection().
7462 (ns_list_fonts): Remove, unused.
7463 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
7464 (ns_fontname_to_xlfd): Make static.
7465 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
7466 Remove prototypes (now in keyboard.h).
7467 (next_menubar_widget_id): Remove, unused.
7468 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
7469 Remove prototypes (now in keyboard.h).
7470 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
7471
7472 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
7473
7474 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
7475 (floatfns.o): Depend on syssignal.h.
7476 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
7477
7478 * systty.h: Fix previous change that removed BSD_TERMIOS.
7479 Add comments to #ifdefs.
7480
7481 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
7482
7483 * w32fns.c (w32-load-color-file): Remove.
7484 (x-open-connection): Use renamed Fx_load_color_file.
7485 * xfaces.c (x-load-color-file): Add.
7486 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
7487 Emacs.clr.
7488 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
7489
7490 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
7491
7492 * dbusbind.c (Fdbus_call_method_asynchronously)
7493 (Fdbus_method_error_internal): New defuns.
7494 (xd_read_message): Handle also reply messages.
7495 (Vdbus_registered_functions_table): Extend docstring.
7496
7497 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
7498
7499 * keyboard.c (gobble_input): Fix previous change.
7500
7501 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
7502
7503 * bitmaps/README:
7504 * xfns.c:
7505 * termcap.c:
7506 * term.c:
7507 * syswait.h:
7508 * systty.h:
7509 * systime.h:
7510 * syssignal.h:
7511 * sysdep.c:
7512 * process.h:
7513 * process.c:
7514 * print.c:
7515 * ndir.h:
7516 * lread.c:
7517 * keyboard.c:
7518 * getpagesize.h:
7519 * floatfns.c:
7520 * fileio.c:
7521 * emacs.c:
7522 * doc.c:
7523 * dispnew.c:
7524 * dired.c:
7525 * data.c:
7526 * callproc.c:
7527 * buffer.c:
7528 * README:
7529 * Makefile.in:
7530 * s/template.h:
7531 * s/msdos.h:
7532 * m/vax.h: Remove VMS support.
7533 * s/vms.h:
7534 * vlimit.h:
7535 * uaf.h:
7536 * temacs.opt:
7537 * param.h:
7538 * ioctl.h: Remove file.
7539
7540 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
7541
7542 * s/ms-w32.h (MULTI_KBOARD): Remove.
7543 * xterm.c:
7544 * xselect.c:
7545 * xfns.c:
7546 * window.c:
7547 * w32term.c:
7548 * w32fns.c:
7549 * terminal.c:
7550 * termhooks.h:
7551 * term.c:
7552 * sysdep.c:
7553 * keyboard.h:
7554 * keyboard.c:
7555 * frame.h:
7556 * frame.c:
7557 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
7558 * config.in: Regenerate.
7559
7560 2008-07-30 Jason Rumney <jasonr@gnu.org>
7561
7562 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
7563
7564 * w32font.c (w32font_encode_char): Leave as unicode if in range.
7565 (w32font_open_internal): Get unicode version of textmetrics.
7566 Don't enable or disable glyph indices here.
7567 (w32font_open): Disable use of glyph indices.
7568
7569 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
7570
7571 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
7572
7573 * minibuf.c (Vread_buffer_function): Doc fix.
7574
7575 2008-07-30 John Paul Wallington <jpw@pobox.com>
7576
7577 * minibuf.c (read_buffer_completion_ignore_case): New var.
7578 (Fread_buffer): Use it.
7579
7580 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
7581
7582 * systty.h (sensemode): Remove empty #if. Remove reference to
7583 BSD_TERMIOS, unused.
7584
7585 * sysdep.c: Remove reference to DGUX.
7586 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
7587
7588 * config.in: Regenerate.
7589
7590 2008-07-30 Jason Rumney <jasonr@gnu.org>
7591
7592 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
7593
7594 2008-07-29 Jason Rumney <jasonr@gnu.org>
7595
7596 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
7597 is populated.
7598 (uniscribe_encode_char): Always use uniscribe.
7599 Avoid using context if cache is populated.
7600
7601 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
7602
7603 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
7604 open menu.
7605
7606 * gtkutil.c (menu_nav_ended): Remove.
7607 (create_menus): Remove signal connect for menu_nav_ended.
7608
7609 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
7610
7611 * xdisp.c (redisplay_window): Check return value of
7612 compute_window_start_on_continuation_line before forcing a window
7613 start.
7614
7615 2008-07-28 Jason Rumney <jasonr@gnu.org>
7616
7617 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
7618
7619 * w32term.c (w32_enable_unicode_output, cleartype_active):
7620 Remove obsolete display options.
7621 (x_draw_glyph_string_background): Don't use old cleartype_active
7622 workaround.
7623 (w32_initialize): Remove cleartype_active initialization.
7624 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
7625
7626 2008-07-28 Andreas Schwab <schwab@suse.de>
7627
7628 * lisp.h (init_weak_hash_tables, syms_of_font)
7629 (xd_read_queued_messages, syms_of_dbusbind): Declare.
7630 (remove_hash_entry): Don't declare.
7631 * eval.c (maybe_call_debugger): Make static and move before use.
7632 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
7633 * xdisp.c: Include "gtkutil.h" if USE_GTK.
7634 * xterm.h (x_set_frame_alpha): Declare.
7635
7636 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
7637
7638 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
7639 (create_menus): Connect selection-done to menu_nav_ended.
7640
7641 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
7642
7643 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
7644 Set Vx_resource_name to a fallback. Replace read of 'buffered'
7645 parameter with read of 'alpha' one.
7646 (Qns_frame_parameter): Remove.
7647 * nsselect.m (selection-coding-system)
7648 (next-selection-coding-system, Vselection_coding_system)
7649 (Vnext_selection_coding_system): Drop.
7650
7651 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
7652
7653 * nsfns.m (do-applescript, do_applescript): Rename to
7654 ns-do-applescript, ns_do_applescript, and move within file.
7655
7656 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
7657
7658 Remove support for Mac Carbon.
7659 * mactoolbox.c:
7660 * macterm.h:
7661 * macterm.c:
7662 * macselect.c:
7663 * macmenu.c:
7664 * macgui.h:
7665 * macfns.c:
7666 * mac.c: Remove file.
7667 * s/darwin.h:
7668 * m/intel386.h:
7669 * xfaces.c:
7670 * xdisp.c:
7671 * window.c:
7672 * tparam.c:
7673 * termhooks.h:
7674 * termcap.c:
7675 * term.c:
7676 * syssignal.h:
7677 * sysselect.h:
7678 * sysdep.c:
7679 * process.c:
7680 * lread.c:
7681 * lisp.h:
7682 * keyboard.c:
7683 * image.c:
7684 * fringe.c:
7685 * frame.h:
7686 * frame.c:
7687 * fontset.c:
7688 * font.h:
7689 * font.c:
7690 * fns.c:
7691 * fileio.c:
7692 * emacs.c:
7693 * dispnew.c:
7694 * dispextern.h:
7695 * config.in:
7696 * atimer.c:
7697 * Makefile.in: Remove code for Carbon.
7698
7699 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7700
7701 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
7702
7703 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7704
7705 * macterm.h (kCGBitmapByteOrder32Host): New define for
7706 non-universal SDKs.
7707
7708 * image.c (mac_create_cg_image_from_image, image_load_image_io)
7709 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
7710
7711 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
7712 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
7713
7714 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
7715
7716 * w32inevt.c: Include dispextern.h.
7717
7718 2008-07-26 Andreas Schwab <schwab@suse.de>
7719
7720 * print.c (print_object): Fix off-by-one in last change.
7721
7722 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
7723
7724 * term.c (syms_of_term): Don't initialize default_orig_pair,
7725 default_set_foreground and default_set_background on Windows.
7726
7727 2008-07-25 Jason Rumney <jasonr@gnu.org>
7728
7729 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
7730 ScriptItemize. Clean up return value checking. Remove unused
7731 variables.
7732 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
7733 shaping engine.
7734
7735 * w32font.c (w32font_has_char): Handle the case where we can't
7736 determine the script for a character.
7737
7738 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
7739
7740 * term.c (syms_of_term): Initialize default_orig_pair,
7741 default_set_foreground, and default_set_background.
7742
7743 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
7744 clash (bug#86).
7745 (getloadavg): Callers changed.
7746
7747 * image.c (svg_load_image): Fix last change.
7748 (svg_load_image): Use rsvg_handle_get_dimensions to check that
7749 image size is valid. Use g_object_unref instead of deprecated
7750 rsvg_handle_free to free rsvg handle.
7751 (x_from_xcolors): Don't initialize pixmap (silence compiler).
7752
7753 2008-07-25 Jason Rumney <jasonr@gnu.org>
7754
7755 * w32font.c (w32font_encode_char): Encode characters outside BMP as
7756 surrogates before looking up glyph index.
7757 (w32font_text_extents): Encode as surrogates if falling back to
7758 functions that need UTF-16 wide chars.
7759
7760 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
7761 BMP as surrogates before looking up glyph index.
7762
7763 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
7764
7765 * image.c (svg_load_image): Check for failure in return value of
7766 rsvg_handle_get_pixbuf. Free rsvg handle when done.
7767
7768 2008-07-25 Jason Rumney <jasonr@gnu.org>
7769
7770 * w32font.c (Fx_select_font): Reverse sense of second arg.
7771
7772 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
7773
7774 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
7775 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
7776
7777 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
7778 (PURESIZE): Use it.
7779
7780 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
7781
7782 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
7783 * m/alpha.h (TEXT_END):
7784 * m/ibmrs6000.h (TEXT_END):
7785 * m/macppc.h (TEXT_END):
7786 * s/darwin.h (TEXT_END):
7787 * s/msdos.h (TEXT_END): Remove, unused.
7788 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
7789 * s/cygwin.h: Remove comment.
7790
7791 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
7792 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
7793 * m/intel386.h (DOT_GLOBAL_START):
7794 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
7795 (USG): Remove, file not used on USG platforms.
7796
7797 * Makefile.in (HAVE_X11): Remove empty #else.
7798
7799 2008-07-24 Andreas Schwab <schwab@suse.de>
7800
7801 * fileio.c (Finsert_file_contents): Properly adjust undo list
7802 after format conversion.
7803
7804 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
7805
7806 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
7807 (menu_nav_ended): Remove.
7808 (create_menus): Remove signal connect for menu_nav_ended.
7809 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
7810 create_menus.
7811 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
7812
7813 2008-07-23 Jason Rumney <jasonr@gnu.org>
7814
7815 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
7816 with opened font.
7817 (w32font_open): Set font type to gdi.
7818
7819 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
7820
7821 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
7822
7823 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
7824 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
7825 defines it.
7826 * unexec.c (ADDR_CORRECT): Define unconditionally.
7827
7828 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
7829
7830 * unexec.c: Remove code depending on !COFF and USG, the file is
7831 not used for such systems.
7832
7833 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
7834 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
7835 (LD_SWITCH_SYSTEM_1): Remove, update users.
7836
7837 * s/darwin.h (DATA_END):
7838 * m/intel386.h (DATA_END):
7839 * m/ibmrs6000.h (DATA_END):
7840 * m/alpha.h (DATA_END): Remove, unused.
7841
7842 * config.in: Regenerate.
7843 * s/ms-w32.h (subprocesses): Define unconditionally.
7844 * s/template.h (subprocesses): Update comment.
7845 * s/vms.h (subprocesses):
7846 * s/usg5-4.h (subprocesses):
7847 * s/hpux10-20.h (subprocesses):
7848 * s/gnu-linux.h (subprocesses):
7849 * s/cygwin.h (subprocesses):
7850 * s/bsd-common.h (subprocesses):
7851 * s/aix4-2.h (subprocesses):
7852 * s/darwin.h (subprocesses): Do not define, defined by default now.
7853
7854 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
7855 Remove all references.
7856 (temacs): Add GNUstep specific ld flags.
7857
7858 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
7859 similarly to what X does.
7860
7861 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
7862
7863 * nsfns.m (x-list-fonts): Remove.
7864 (syms_of_nsfns): Drop the x-list-fonts declaration.
7865 * nsterm.m: Get rid of remaining "//" comments.
7866
7867 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
7868
7869 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
7870
7871 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
7872 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
7873 (Fns_own_selection_internal, Fx_disown_selection_internal)
7874 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
7875
7876 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
7877 ... */' style of docstrings. Doc fixes.
7878
7879 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
7880
7881 * terminfo.c (UP, BC, PC): Undo previous change.
7882
7883 * nsfns.m: Rename ns prefixed functions/variables to the
7884 corresponding x versions. Update references.
7885
7886 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
7887
7888 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
7889
7890 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
7891
7892 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
7893 Remove forwarding functions.
7894 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
7895 non-static.
7896 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
7897 non-static.
7898 (ns_frame_parm_handlers): Use the new names.
7899 (syms_of_nsfns): Move to the end of file.
7900
7901 * nsterm.m (syms_of_nsterm): Move to the end of file.
7902
7903 * dispnew.c (init_display): Remove code for X10.
7904
7905 2008-07-22 Jason Rumney <jasonr@gnu.org>
7906
7907 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
7908 bare drive.
7909
7910 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
7911
7912 * nsterm.m (syms_of_nsterm): Remove debugging println.
7913
7914 2008-07-22 David Reitter <david.reitter@gmail.com>
7915
7916 * nsfns.m (do_applescript, F_do_applescript): NS version of the
7917 Carbon implementation of the same functionality: execute arbitrary
7918 AppleScript code.
7919
7920 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
7921
7922 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
7923 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
7924 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
7925 (Fx_display_mm_height, Fx_display_mm_width)
7926 (Fx_display_backing_store, Fx_display_visual_class)
7927 (Fx_display_save_under, Fx_open_connection)
7928 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
7929 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
7930 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
7931 (Fx_display_pixel_width, Fx_display_pixel_height)
7932 (Fx_display_usable_bounds, Fx_display_planes)
7933 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
7934 ... */' style of docstrings.
7935
7936 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
7937
7938 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
7939 on this platform.
7940 (mips):
7941 * m/iris4d.h (mips): Do not define.
7942 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
7943
7944 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
7945
7946 * image.c:
7947 * nsfns.m:
7948 * nsselect.m:
7949 * nsterm.h:
7950 * nsterm.m: Rename ns prefixed functions/variables to the
7951 corresponding x versions. Update references.
7952
7953 * m/ibms390x.h (NO_REMAP): Do not undefine.
7954
7955 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
7956
7957 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
7958
7959 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
7960 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
7961 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
7962 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
7963 (Fns_display_mm_height, Fns_display_mm_width)
7964 (Fns_display_backing_store, Fns_display_visual_class)
7965 (Fns_display_save_under, Fns_open_connection)
7966 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
7967 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
7968 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
7969 (Fns_display_pixel_width, Fns_display_pixel_height)
7970 (Fns_display_usable_bounds, Fx_display_planes)
7971 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
7972
7973 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
7974
7975 * print.c (print_object): Check print_depth before searching for
7976 circularities.
7977
7978 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
7979
7980 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
7981 only sprintf.
7982
7983 2008-07-21 Kenichi Handa <handa@m17n.org>
7984
7985 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
7986
7987 2008-07-20 Andreas Schwab <schwab@suse.de>
7988
7989 * syntax.c (find_start_pos, find_start_value)
7990 (find_start_value_byte, find_start_begv, find_defun_start)
7991 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
7992
7993 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
7994
7995 * s/sol2-3.h: Insert contents of s/sol2.h.
7996 (LD_SWITCH_SYSTEM): Remove redundant definition.
7997 * s/sol2.h: Remove, unused.
7998
7999 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
8000
8001 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
8002
8003 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
8004
8005 * Makefile.in (ns_appdir): Fix typo in find command.
8006
8007 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
8008
8009 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
8010
8011 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
8012 added not supported anymore.
8013
8014 * s/usg5-4-2.h (LIBS_SYSTEM):
8015 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
8016
8017 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
8018 * s/lynxos.h (GETPGRP_NO_ARG):
8019 * s/hpux10-20.h (NO_SIOCTL_H):
8020 * s/gnu.h (GETPGRP_NO_ARG):
8021 * s/gnu-linux.h (NO_SIOCTL_H):
8022 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
8023 * s/cygwin.h (GETPGRP_NO_ARG):
8024 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
8025 (C_DEBUG_SWITCH): Remove duplicate definition.
8026
8027 * m/ibms390.h: Remove boilerplate comments.
8028
8029 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
8030
8031 * process.c (HAVE_SERIAL): Consolidate ifdefs.
8032 (wait_reading_process_output): Remove code for SunOS, platform not
8033 supported anymore. Use SOLARIS2 instead of sun.
8034
8035 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8036
8037 * font.c (font_open_by_name): Under NS, default lface height to zero.
8038 (font_open_for_lface): Under NS, set size based on frame fontsize.
8039 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
8040 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
8041
8042 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8043
8044 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
8045 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
8046 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
8047 YES/NO.
8048 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
8049 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
8050 * Makefile.in (clean): Clear out build destination dir.
8051
8052 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8053
8054 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
8055 xterm, xselect.
8056 * lisp.h: Remove declaration of hash_remove.
8057 * nsgui.h: Remove redefinitions of hash_remove.
8058 * fns.c (hash_remove): Rename to hash_remove_from_table.
8059
8060 2008-07-19 Seiji Zenitani <zenitani@mac.com>
8061
8062 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
8063 strdup() the family UTF8String before modifying it.
8064
8065 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8066
8067 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
8068 NS_FACE_BACKGROUND with 0 instead of nil.
8069 * nsfont.m (nsfont_draw): Same.
8070
8071 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
8072
8073 * nsfns.m (ns_set_background_color): Fix crash.
8074
8075 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
8076
8077 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
8078
8079 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
8080
8081 * puresize.h (BASE_PURESIZE): Increase to 1240000.
8082
8083 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8084
8085 * gtkutil.c: Include <config.h> instead of "config.h".
8086
8087 * lisp.h (Foverlay_buffer): Add EXFUN.
8088
8089 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
8090 child process to complete child_setup. Undo 2005-09-21 change.
8091
8092 * s/darwin.h: Mention setsid after vfork.
8093
8094 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8095
8096 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
8097 Depend on macgui.h.
8098
8099 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
8100 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
8101
8102 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
8103 and f19.
8104 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
8105
8106 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
8107 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
8108 Remove enumerators.
8109
8110 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
8111 Check if FACE_FROM_ID returns NULL.
8112
8113 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
8114
8115 * w32inevt.c (change_frame_size): Remove extern declaration.
8116 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
8117 change_frame_size.
8118
8119 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
8120
8121 * getloadavg.c: Revert last change (2008-07-15).
8122
8123 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
8124
8125 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
8126 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
8127 from configure.
8128
8129 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
8130
8131 * s/sol2.h:
8132 * s/sol2-4.h: Reorganize conditionals.
8133
8134 * ecrt0.c: Remove code depending on m68000, not used anymore.
8135
8136 * fns.c (hash_remove): Make static.
8137 * lisp.h (hash_remove): Don't prototype.
8138
8139 * m/ibmrs6000.h:
8140 * m/ibms390x.h:
8141 * m/macppc.h: Remove boilerplate comments.
8142
8143 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
8144 Solaris, which does not need them.
8145
8146 * m/vax.h: Remove comments about unsupported systems.
8147
8148 * s/darwin.h: Reorganize ifdefs.
8149
8150 2008-07-17 Andreas Schwab <schwab@suse.de>
8151
8152 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
8153
8154 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
8155
8156 Use SDATA. Follow coding convention of placing operators at
8157 beginning of next line rather than end of previous line, and placing
8158 spaces around infix operators.
8159
8160 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
8161 in case it was defined already.
8162 USE @GNUSTEP_MAKEFILES@ rather than envvars.
8163 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
8164 ns_default.
8165 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
8166 Lisp_Objects.
8167 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
8168 (ns_defined_color, ns_color_to_lisp): Declare.
8169 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
8170 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
8171 it's accepted even with USE_LISP_UNION_TYPE.
8172 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
8173 (update_frame_tool_bar): Remove apparently obsolete tests for
8174 non-integerness of f->tool_bar_lines.
8175 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
8176 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
8177 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
8178 (nsfont_open): Don't confuse NULL for Qnil.
8179 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
8180 * menu.h (find_and_call_menu_selection):
8181 * menu.c (find_and_call_menu_selection): Use just int for vector size.
8182 (find_and_return_menu_selection): Always return something.
8183 * frame.h: Include dispextern.h for Display_Info.
8184 (display_x_get_resource): Declare.
8185
8186 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
8187
8188 * syntax.c: Remove stdio.h include accidentally introduced in
8189 Emacs.app commit.
8190 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
8191 NS_IMPL_COCOA.
8192 * keyboard.c (handle_async_input, input_available_signal): Remove
8193 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
8194
8195 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
8196
8197 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
8198 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
8199 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
8200 Use SDATA.
8201
8202 * keymap.c: Remove all NS-specific code.
8203 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
8204 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
8205 where_is_preferred_modifier, return a different value depending on how
8206 preferred is the binding.
8207 (where_is_internal): Adjust accordingly.
8208 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
8209 Adjust to new preferred_sequence_p.
8210 (syms_of_keymap): Declare `where-is-preferred-modifier'.
8211 * keyboard.c (parse_solitary_modifier): Not static any more.
8212 * keyboard.h (parse_solitary_modifier): Declare.
8213
8214 2008-07-16 Andreas Schwab <schwab@suse.de>
8215
8216 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
8217 of easymenu.
8218
8219 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
8220
8221 * xdisp.c (move_it_in_display_line): Account for word wrap, so
8222 that we don't move off the line.
8223
8224 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
8225
8226 * keyboard.c (Qsuper): Remove.
8227 (parse_menu_item): Don't call where_is_internal specially for NS.
8228
8229 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
8230
8231 * s/gnu-linux.h: Remove boilerplate comments.
8232
8233 * m/alpha.h (__ELF__): Consolidate conditions.
8234
8235 * m/m68k.h (linux): Use GNU_LINUX instead.
8236 Remove boilerplate comments.
8237
8238 * m/intel386.h: Undo refactoring from previous change.
8239 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
8240 too, remove dead code.
8241 (linux): Use GNU_LINUX instead.
8242
8243 2008-07-16 Jason Rumney <jasonr@gnu.org>
8244
8245 * w32gui.h: Repeat 26 June changes lost by last change.
8246
8247 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
8248
8249 * systty.h: Remove code for Aix on 386, unsupported platform.
8250
8251 * s/ms-w32.h: Remove boilerplate comments.
8252 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
8253
8254 * s/gnu-linux.h (TERM): Remove support.
8255 (HAVE_SYSVIPC): Remove, unused.
8256 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
8257 for this system.
8258
8259 * process.c: Remove support for IRIS, unused.
8260 Remove support for TERM, not relevant anymore.
8261
8262 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
8263 used with the definition.
8264
8265 * s/aix4-2.h (static): Do not undef.
8266
8267 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
8268 only used on Aix.
8269 (HAVE_SYSVIPC): Remove, unused.
8270
8271 * m/hp800.h (CANNOT_DUMP): Do not undef.
8272
8273 * m/alpha.h: Fix comment.
8274
8275 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
8276 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
8277 used by this configuration.
8278 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
8279 * unexec.c: Remove code depending on HPUX and
8280 USG_SHARED_LIBRARIES, not used with this file. Remove code
8281 depending on IRIS, unused. Remove if 0-ed code.
8282
8283 * s/template.h: Remove comments about static.
8284
8285 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
8286 Remove if 0-ed code.
8287 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
8288 were the same as the default.
8289 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
8290 Remove boilerplate comments.
8291 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
8292 (HAVE_SYSVIPC): Remove, unused.
8293 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
8294
8295 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
8296 Remove boilerplate comments.
8297 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
8298 Remove boilerplate comments.
8299 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
8300 Remove boilerplate comments.
8301 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
8302
8303 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
8304 USG systems which do not use DATA_SEG_BITS.
8305 Refactor code. Remove boilerplate comments.
8306
8307 * m/ibms390.h:
8308 * m/m68k.h:
8309 * s/bsd-common.h:
8310 * s/cygwin.h:
8311 * s/darwin.h:
8312 * s/freebsd.h:
8313 * s/gnu.h:
8314 * s/msdos.h: Remove boilerplate comments.
8315
8316 * m/iris4d.h: Remove boilerplate comments and code for systems that
8317 do not use this file.
8318 (IRIS_4D): Remove, unused.
8319
8320 * m/mips.h: Remove boilerplate comments and code for systems that
8321 do not use this file.
8322 (SIGN_EXTEND_CHAR):
8323 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
8324 * unexmips.c: Remove file, unused.
8325
8326 * editfns.c (Fuser_full_name): Replace the only use of
8327 USER_FULL_NAME with its value.
8328 * config.in: Regenerate.
8329
8330 2008-07-16 David Reitter <david.reitter@gmail.com>
8331
8332 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
8333 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
8334
8335 2008-07-16 Glenn Morris <rgm@gnu.org>
8336
8337 * emacs.c (system-type): Doc fix.
8338
8339 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
8340
8341 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
8342 If the cache doesn't work, let's fix it, rather than work around it.
8343
8344 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
8345
8346 * Makefile.in: Correct additions for nsfont.o in last commit.
8347 * nsfont.m: New file (forgot last commit).
8348
8349 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
8350
8351 * callproc.c (set_initial_environment): Initialize
8352 Vprocess_environment under CANNOT_DUMP (fixes crash when
8353 batch-compiling for bootstrap).
8354
8355 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
8356 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8357
8358 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
8359 fix crash due to different init order.
8360
8361 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
8362
8363 Changes and additions for NeXTstep windowing system (Cocoa and
8364 GNUstep) support.
8365
8366 * Makefile.in:
8367 * config.in: Support defines and build commands for NS port.
8368 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
8369 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
8370 * dispextern.h: Include nsgui.h and add needed typedefs under NS
8371 windowing.
8372 (struct face): Add synth_ital field.
8373 * dispnew.c: Include nsterm.h when compiling under NS windowing.
8374 (init_display): Initialize Vinitial_window_system to "ns" when so
8375 compiled.
8376 * emacs.c: Include GSConfig.h when compiling under GNUstep.
8377 (display_arg): Use under NS.
8378 (main): Under NS, allocate autorelease pool and handle command line
8379 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
8380 (standard_args): Add NS-specific args.
8381 (shut_down_emacs): Shut down NS terminal if compiled under NS.
8382 * font.c (DEFAULT_ENCODING): New variable.
8383 (font_find_for_lface): Use it.
8384 (syms_of_font): Load syms_of_nsfont under NS.
8385 * font.h: Declare nsfont_driver when compiled under NS.
8386 * fontset.c: When compiling under NS, include nsterm.h.
8387 (fontset_from_font): Autoconstruct fontset under NS.
8388 * frame.c (various): Under NS, include nsterm.h, add Qns window system
8389 symbol, document and use it.
8390 (do_switch_frame): When for_deletion under Cocoa, add
8391 Fraise_frame(Qnil).
8392 (x_set_frame_parameters): Ensure font attribute changes are picked up.
8393 (x_get_arg): Allow "yes" and "no" as boolean values.
8394 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
8395 Qright under Cocoa.
8396 (focus-follows-mouse): Default to 0 under NS.
8397 * frame.h (enum output_method): Add output_ns.
8398 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
8399 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
8400 (FRAME_WINDOW_P): NS-specific definition.
8401 * fringe.c (max_used_fringe_bitmap): Make public.
8402 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
8403 (getloadavg): Use NeXT code under descendant OS's.
8404 * image.c (includes and header section, x_create_bitmap_from_data)
8405 (x_create_bitmap_from_file, free_bitmap_record, image_background)
8406 (image_background_transparent, x_clear_image_1)
8407 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
8408 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
8409 (x_to_xcolors, x_from_xcolors, x_disable_image)
8410 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
8411 other GUIs, including XPM support using code originally written for
8412 Carbon GUI.
8413 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
8414 using NS API.
8415 (image_ascent): Use font metrics macros instead of direct struct field
8416 access.
8417 * keyboard.c (includes): Add nsterm.h when compiling under NS.
8418 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
8419 Also, handle NS as GTK for menu bar purposes.
8420 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
8421 toolkit where they differ.
8422 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
8423 use cachelist, still needed under NS.
8424 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
8425 (struct widget_value): Define it here for menu.c.
8426 * keymap.c (includes): Include modifier internals.
8427 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
8428 NS.
8429 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
8430 support for preferring sequences using certain modifiers, specified by
8431 the FIRSTONLY argument.
8432 * lisp.h (hash_remove): Rename to avoid name clash when compiling
8433 under NS GNUstep implementation.
8434 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
8435 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
8436 * menu.c: Include nsterm.h under NS.
8437 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
8438 (free_menubar_widget_tree_value, update_submenu_strings)
8439 (find_and_call_menu_selection): Treat NS as X and NT.
8440 (find_and_return_menu_selection): New function, used for popup menus.
8441 * nsgui.h:
8442 * nsterm.h:
8443 * nsfns.m:
8444 * nsimage.m:
8445 * nsmenu.m:
8446 * nsselect.m:
8447 * nsterm.m: New files.
8448 * process.c (wait_reading_process_output): Under NS, call ns_select()
8449 instead of plain select().
8450 * syntax.c (char_quoted): Under NS, avoid a crash when called near
8451 beginning of buffer.
8452 * sysselect.h (init_process): Rename when compiling under Cocoa to
8453 avoid name conflict.
8454 * termhooks.h (display_info): Add ns_display_info to union.
8455 * terminal.c (Fterminal_live_p): Add ns to terminal types.
8456 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
8457 COCOA environment.
8458 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
8459 unexec() signature. (Note, this will dump, but the resulting file
8460 crashes; unexosx is used instead; keeping around for reference and
8461 possible aid in getting dump working under GNUstep.)
8462 * w32gui.h (button_type, widget_value): Remove definitions (now in
8463 keyboard.h).
8464 * window.c: Include nsterm.h when compiling under NS.
8465 * xdisp.c (includes): Include nsterm.h when compiling under NS.
8466 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
8467 other GUI windowing systems.
8468 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
8469 GTK.
8470 (x_consider_frame_title): Under NS, set icon type and frame
8471 modified-state indicator; use ns_set_name_as_filename() when using
8472 formatted title.
8473 (update_window_cursor): Make public when compiling under NS.
8474 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
8475 (hourglass_atimer, Vhourglass_delay
8476 * xfaces.c (header section, init_frame_faces, clear_font_table)
8477 (defined_color, unload_color, x_face_list_fonts)
8478 (prepare_face_for_display): Add NS support parallel to other GUIs.
8479 Emulate GCs like other non-X GUIs.
8480 (split_font_name): Don't lowercase font name under NS.
8481 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
8482 under NS.
8483 * s/darwin.h: Add support for compilation under NS.
8484
8485 2008-07-15 Jason Rumney <jasonr@gnu.org>
8486
8487 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
8488 (w32_show_hourglass): Rename from show_hourglass.
8489 (w32_hide_hourglass): Rename from hide_hourglass.
8490 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
8491 (Vhourglass_delay): Declare extern.
8492 (hourglass_started): Remove.
8493
8494 * xdisp.c (Vhourglass_delay): Remove static.
8495 (hourglass_started, start_hourglass, cancel_hourglass):
8496 Don't include these versions on WINDOWSNT.
8497
8498 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
8499
8500 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
8501 variables (formerly in xfns.c).
8502 (show_hourglass, hide_hourglass): New prototypes (same).
8503 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
8504 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
8505 in xfns.c).
8506 (syms_of_xdisp): Declare/initialize display-hourglass,
8507 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
8508 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
8509 formerly in xfns.c.
8510 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
8511 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
8512 (start_hourglass, cancel_hourglass): Remove.
8513 (show_hourglass, hide_hourglass): Remove prototypes and static
8514 modifiers.
8515 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
8516 hourglass_atimer, hourglass_shown_p declaration/initialization.
8517 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
8518 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
8519 (start_hourglass, cancel_hourglass): Remove.
8520 (show_hourglass, hide_hourglass): Remove prototypes and static
8521 modifiers.
8522 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
8523 hourglass_atimer, hourglass_shown_p declaration/initialization.
8524 * w32fns.c (display_hourglass_p, Vhourglass_delay)
8525 (DEFAULT_HOURGLASS_DELAY): Remove.
8526 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
8527 hourglass_shown_p declaration/initialization.
8528
8529 2008-07-14 Jason Rumney <jasonr@gnu.org>
8530
8531 * w32fns.c (w32_get_arg): Remove wrapper function.
8532 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
8533 directly.
8534 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
8535
8536 2008-07-14 Kenichi Handa <handa@m17n.org>
8537
8538 * xfont.c (xfont_open): Add workaround for X's bug.
8539
8540 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
8541
8542 * fontset.c: Include <stdio.h> unconditionally.
8543
8544 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
8545
8546 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
8547 for filtering.
8548
8549 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
8550
8551 * s/vms.h: Use __GNUC__ instead of _GNUC_.
8552
8553 * m/macppc.h:
8554 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
8555
8556 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
8557 (SPECIAL_EMACS_INT):
8558 * m/ia64.h (SPECIAL_EMACS_INT):
8559 * m/amdx86-64.h (SPECIAL_EMACS_INT):
8560 * s/gnu.h (NLIST_STRUCT):
8561 * s/aix4-2.h (X11R5_INHIBIT_I18N):
8562 * s/gnu-linux.h (LINUX):
8563 * s/msdos.h (HAVE_FACES):
8564 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
8565
8566 * systty.h:
8567 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
8568 anymore.
8569
8570 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
8571
8572 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
8573 always defined as int.
8574
8575 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
8576 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
8577 * s/gnu-linux.h (HAVE_WAIT_HEADER):
8578 * s/freebsd.h (HAVE_WAIT_HEADER):
8579 * s/bsd-common.h (HAVE_UNION_WAIT):
8580 * s/aix4-2.h (HAVE_WAIT_HEADER):
8581 * m/mips.h (HAVE_UNION_WAIT):
8582 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
8583 (COFF, static): Do not define, they are undefined later in the file.
8584
8585 * process.c (update_status): Don't use a union.
8586 (status_convert):
8587 (sigchld_handler): Use int instead of WAITTYPE.
8588
8589 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
8590
8591 * indent.c (Fvertical_motion): Restore hscroll before moving to
8592 goal column.
8593
8594 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
8595
8596 * lisp.h: Remove left over code.
8597
8598 2008-07-11 Andreas Schwab <schwab@suse.de>
8599
8600 * lisp.h: Fix logic in last change.
8601
8602 * menu.h: New file.
8603 * menu.c: Include it.
8604 * xmenu.c: Likewise.
8605 * Makefile.in: Update dependencies.
8606
8607 2008-07-11 Kenichi Handa <handa@m17n.org>
8608
8609 * fontset.c (fontset_from_font): Cancel the previous change.
8610
8611 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
8612
8613 * lisp.h:
8614 * w32heap.c:
8615 * emacs.c:
8616 * alloc.c: Replace all references of NO_UNION_TYPE with
8617 USE_LISP_UNION_TYPE.
8618
8619 * m/xtensa.h (NO_UNION_TYPE):
8620 * m/vax.h (NO_UNION_TYPE):
8621 * m/template.h (NO_UNION_TYPE):
8622 * m/sparc.h (NO_UNION_TYPE):
8623 * m/mips.h (NO_UNION_TYPE):
8624 * m/macppc.h (NO_UNION_TYPE):
8625 * m/m68k.h (NO_UNION_TYPE):
8626 * m/iris4d.h (NO_UNION_TYPE):
8627 * m/intel386.h (NO_UNION_TYPE):
8628 * m/ibms390x.h (NO_UNION_TYPE):
8629 * m/ibms390.h (NO_UNION_TYPE):
8630 * m/ibmrs6000.h (NO_UNION_TYPE):
8631 * m/ia64.h (NO_UNION_TYPE):
8632 * m/hp800.h (NO_UNION_TYPE):
8633 * m/arm.h (NO_UNION_TYPE):
8634 * m/amdx86-64.h (NO_UNION_TYPE):
8635 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
8636 defining it the same.
8637
8638 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
8639
8640 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
8641
8642 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
8643
8644 * fileio.c:
8645 * sysdep.c
8646 * systty.h:
8647 * m/ibmrs6000.h:
8648 * m/iris4d.h:
8649 * s/aix4-2.h:
8650 * s/freebsd.h:
8651 * s/gnu-linux.h:
8652 * s/hpux10-20.h:
8653 * s/hpux11.h:
8654 * s/netbsd.h:
8655 * s/sol2-3.h:
8656 * s/sol2-4.h:
8657 * s/sol2.h:
8658 * s/usg5-4.h:
8659 * s/vms.h: Remove references to unused variables.
8660
8661 2008-07-10 Andreas Schwab <schwab@suse.de>
8662
8663 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
8664 pattern before matching the generic family.
8665
8666 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
8667
8668 * unexec.c:
8669 * s/vms.h:
8670 * s/usg5-4-2.h:
8671 * s/sol2-5.h:
8672 * s/freebsd.h:
8673 * s/darwin.h: Remove dead code.
8674
8675 * m/template.h:
8676 * m/sparc.h:
8677 * m/mips.h:
8678 * m/m68k.h:
8679 * m/iris4d.h:
8680 * m/intel386.h:
8681 * m/ibms390x.h:
8682 * m/ibms390.h:
8683 * m/ia64.h:
8684 * m/hp800.h:
8685 * m/arm.h:
8686 * m/amdx86-64.h: Remove dead code and references to unused
8687 and compiler defined symbols.
8688
8689 * unexmips.c:
8690 * unexelf.c: Remove references to desupported systems.
8691
8692 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
8693
8694 * m/powermac.h: Remove boilerplate comments.
8695 (NO_REMAP): Remove unused definition.
8696
8697 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
8698 define them.
8699
8700 2008-07-10 Kenichi Handa <handa@m17n.org>
8701
8702 * xfont.c (xfont_open): Log the reason of failure.
8703
8704 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
8705
8706 * fontset.c (fontset_get_font_group):
8707 * font.c (font_check_otf): Specify argument types.
8708
8709 2008-07-09 Kenichi Handa <handa@m17n.org>
8710
8711 * coding.c (detect_coding_utf_8): Set detect_info->found only when
8712 non-ASCII char is found.
8713
8714 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
8715 (reorder_font_vector): Change the arg preferred_family to font.
8716 Prefer the spec matching with font.
8717 (fontset_get_font_group): New function.
8718 (fontset_find_font): Change the format of an element of a realized
8719 fontset. Use fontset_get_font_group.
8720 (fontset_font): Try the current fontset, the default fontset, the
8721 fallbacks of the current fontset, and the fallbacks of the default
8722 fontset in this order.
8723 (face_for_char): Delete the shortcut to use the current font.
8724 (fontset_from_font): Don't set fonts for Latin in the fontset.
8725
8726 * font.h (font_make_object, font_match_p): Adjust prototypes.
8727
8728 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
8729
8730 * font.c (font_make_object): New arg entity and pixelsize.
8731 (font_check_otf_features, font_check_otf): New functions.
8732 (font_match_p): Check :lang, :script, and :otf properties.
8733
8734 * xfont.c (xfont_open): Adjust it for the change of
8735 font_make_object.
8736 (xfont_text_extents): Fix initial setting of metrics.
8737
8738 * ftfont.c (struct ftfont_info): New member index, delete member
8739 fc_charset_idx. Make the member order compatible with struct
8740 xftfont_info.
8741 (fc_charset_table): Change charset names to registry names.
8742 (ftfont_pattern_entity): Delete the args registry and
8743 fc_charset_idx. Change the value of :font-entity property
8744 to (FONTNAME . INDEX). Always set :registry property to
8745 `iso10646-1'.
8746 (struct ftfont_cache_data): New struct.
8747 (ftfont_lookup_cache): New arg for_face.
8748 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
8749 (ftfont_driver): Set the member otf_capability.
8750 (ftfont_get_charset): Adjust it for the change of
8751 fc_charset_table.
8752 (OTF_TAG_SYM): New macro.
8753 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
8754 for the change of fc_charset_table.
8755 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
8756 ftfont_pattern_entity. Add FC_INDEX to objset.
8757 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
8758 and ftfont_pattern_entity.
8759 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
8760 font_make_object, struct ftfont_info.
8761 (ftfont_has_char): Use ftfont_get_fc_charset.
8762 (ftfont_otf_features, ftfont_otf_capability): New functions.
8763 (ftfont_shape): Use ftfont_get_otf.
8764 (ftfont_text_extents): Fix initial setting of metrics.
8765
8766 * xftfont.c (struct xftfont_info): New member ft_size. Make the
8767 member order compatible with struct ftfont_info.
8768 (xftfont_open): Add FC_CHARSET to the pattern. Set
8769 xftfont_info->ft_size. Don't unlock the face. Check BDF
8770 properties if appropriate.
8771 (xftfont_close): Unlock the face.
8772 (xftfont_anchor_point, xftfont_shape): Deleted.
8773 (syms_of_xftfont): Don't set members anchor_point and shape of
8774 xftfont_driver.
8775
8776 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
8777 font_make_object.
8778
8779 * w32font.c (w32font_open): Adjust it for the change of
8780 font_make_object.
8781 (w32font_open_internal): Don't set properties of font_object here.
8782
8783 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
8784
8785 * macfns.c (x_create_tip_frame):
8786 * w32fns.c (x_create_tip_frame):
8787 * xfns.c (x_create_tip_frame): Pass parameter argument to
8788 face-set-after-frame-default.
8789
8790 * xfaces.c (Finternal_merge_in_global_face): Save merged
8791 attributes for the default face back into the face vector.
8792
8793 2008-07-08 Andreas Schwab <schwab@suse.de>
8794
8795 * fontset.h: Declare fontset_from_font. Don't declare
8796 new_fontset_from_font and fontset_from_font_name.
8797 * xterm.c: Include "fontset.h".
8798 * Makefile.in (xterm.o): Update dependencies.
8799
8800 2008-07-08 Glenn Morris <rgm@gnu.org>
8801
8802 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
8803 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
8804
8805 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
8806
8807 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
8808 (x_set_frame_parameters): Don't bind it.
8809
8810 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
8811
8812 * w32fns.c (map_w32_filename): Declare extern.
8813
8814 2008-07-07 Jason Rumney <jasonr@gnu.org>
8815
8816 * w32term.c (WS_EX_LAYERED): Define if not already.
8817
8818 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
8819
8820 * xfaces.c (set_font_frame_param): Don't try to set the font
8821 parameter if it is still unspecified in the lface.
8822
8823 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
8824
8825 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
8826 face if it didn't already exist.
8827
8828 * xdisp.c (try_window_id): Give up if word-wrapping is on.
8829
8830 2008-07-05 Andreas Schwab <schwab@suse.de>
8831
8832 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
8833
8834 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
8835
8836 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
8837 word-wrapping.
8838 (IT_DISPLAYING_WHITESPACE): New macro.
8839 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
8840 when word-wrapping. Simplify word-wrapping logic. Use correct
8841 pixel positions when saving copies of the iterator.
8842 (display_line): Use proper wrap point if the last character on a
8843 line was preceded by whitespace.
8844
8845 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8846
8847 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
8848
8849 2008-07-04 Kenichi Handa <handa@m17n.org>
8850
8851 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
8852
8853 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
8854
8855 2008-07-02 Jason Rumney <jasonr@gnu.org>
8856
8857 * xfns.c (syms_of_xfns): Only define x-select-font when both
8858 HAVE_FREETYPE and USE_GTK.
8859
8860 * xdisp.c (next_element_from_display_vector): Move assignment out
8861 of if statement.
8862
8863 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
8864
8865 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
8866
8867 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
8868 (syms_of_fileio): Initialize and export them.
8869 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
8870
8871 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
8872 (Fsystem_move_file_to_trash): New function.
8873 (syms_of_w32fns): Export it to lisp.
8874
8875 2008-07-01 Jason Rumney <jasonr@gnu.org>
8876
8877 * w32font.c (w32font_text_extents): Don't count overhang as part
8878 of width.
8879
8880 2008-06-30 Miles Bader <miles@gnu.org>
8881
8882 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
8883 Add `avoid_cursor_p' field.
8884
8885 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
8886 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
8887 (append_glyph, append_composite_glyph, produce_image_glyph)
8888 (append_stretch_glyph): Initialize avoid_cursor_p.
8889 (get_it_property): Rename from `get_line_height_property'.
8890 (x_produce_glyphs): Use get_it_property.
8891 (handle_line_prefix, push_display_prop): New functions.
8892 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
8893 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
8894 New variables.
8895 (syms_of_xdisp): Initialize them.
8896
8897 2008-06-30 Kenichi Handa <handa@m17n.org>
8898
8899 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
8900 XftDefaultSubstitute (they are called in XftFontMatch).
8901 (xftfont_open): Fix args to ftfont_font_format.
8902
8903 * ftfont.c (fc_charset_table): New member lang.
8904 (ftfont_resolve_generic_family): New arg pattern.
8905 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
8906 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
8907 (ftfont_open): Fix args to ftfont_font_format.
8908 (ftfont_font_format): New arg filename.
8909
8910 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
8911
8912 * xfaces.c (Finternal_merge_in_global_face): If default face was
8913 modified, realize it again. Update the font face attribute.
8914
8915 2008-06-29 Jason Rumney <jasonr@gnu.org>
8916
8917 * w32term.c (x_set_frame_alpha): Fix logic.
8918
8919 2008-06-29 Kenichi Handa <handa@m17n.org>
8920
8921 * fontset.c (Finternal_char_font): Return font-object instead of
8922 font-name.
8923
8924 * composite.c (get_composition_id): Fix the width calculation for TAB.
8925
8926 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8927
8928 * indent.c (Fvertical_motion): Properly handle float column arg.
8929
8930 2008-06-28 Jason Rumney <jasonr@gnu.org>
8931
8932 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
8933 (pfnSetLayeredWindowAttributes): New function pointer.
8934 (w32_initialize): Initialize it when supported.
8935 (x_set_frame_alpha): New function.
8936
8937 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
8938 (w32_frame_parm_handlers): Set alpha handler.
8939
8940 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
8941
8942 2008-06-27 Jason Rumney <jasonr@gnu.org>
8943
8944 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
8945 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
8946 (w32_to_x_charset, x_to_w32_charset)
8947 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
8948 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
8949 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
8950 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
8951 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
8952 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
8953 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
8954 (Qw32_charset_unicode): Remove.
8955 (syms_of_w32fns): Update for above changes.
8956
8957 * w32font.c (w32_to_x_charset, x_to_w32_charset)
8958 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
8959 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
8960 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
8961 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
8962 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
8963 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
8964 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
8965 (syms_of_w32font): Update for above changes.
8966
8967 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
8968
8969 * s/usg5-4.h: Fix previous change: keep the correct branch of a
8970 removed #if.
8971 (USG_SHARED_LIBRARIES): Remove duplicate definition.
8972
8973 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
8974 Eli Zaretskii <eliz@gnu.org>
8975
8976 * makefile.w32-in (LOCAL_FLAGS):
8977 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
8978
8979 * sysdep.c (_spawnlp, _getpid):
8980 Declare with explicit _cdecl instead of _CRTAPI1.
8981
8982 * editfns.c (Fget_internal_run_time):
8983 Check for WINDOWSNT with #ifdef, not #if.
8984
8985 2008-06-26 Jason Rumney <jasonr@gnu.org>
8986
8987 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
8988
8989 * w32term.c (x_draw_glyph_string_foreground)
8990 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
8991 Use FONT_HANDLE macro.
8992 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
8993
8994 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
8995 (uniscribe_encode_char): Use FONT_HANDLE macro.
8996
8997 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
8998 (w32font_text_extents): Use precast w32_font.
8999 (w32font_close): Free cached metrics.
9000 (w32font_open_internal): Allocate space for name on stack.
9001
9002 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
9003
9004 * xdisp.c (extend_face_to_end_of_line): Fix last change.
9005
9006 2008-06-26 Jason Rumney <jasonr@gnu.org>
9007
9008 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
9009 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
9010
9011 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
9012
9013 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
9014
9015 2008-06-26 Jason Rumney <jasonr@gnu.org>
9016
9017 * w32bdf.c, w32bdf.h: Remove obsolete files.
9018
9019 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
9020
9021 * w32gui.h: Don't include w32bdf.h.
9022 (XCharStruct, enum w32_char_font_type, W32FontStruct):
9023 Remove obsolete font support.
9024
9025 * w32font.h (struct w32font_info): Remove compat_w32_font.
9026 Add hfont member.
9027 (FONT_COMPAT): Remove obsolete macro.
9028
9029 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
9030 (w32font_encode_char, w32font_text_extents): Use new hfont member.
9031 (w32font_open_internal): Remove compat code. Set new hfont member.
9032 (Fx_select_font): Use new hfont member.
9033
9034 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
9035 (uniscribe_encode_char): Use new hfont member.
9036
9037 * w32term.c (x_draw_glyph_string_foreground)
9038 (x_draw_composite_glyph_string_foreground): Use new hfont member.
9039 (x_draw_glyph_string): Use metrics in w32font_info.
9040
9041 2008-06-26 Kenichi Handa <handa@m17n.org>
9042
9043 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
9044
9045 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
9046
9047 * unexnext.c:
9048 * m/ews4800.h:
9049 * m/hp9000s300.h:
9050 * m/ibm370aix.h:
9051 * m/mips-siemens.h:
9052 * m/ncr386.h:
9053 * m/next.h:
9054 * m/pmax.h:
9055 * m/powerpcle.h:
9056 * m/tandem-s2.h:
9057 * s/386bsd.h:
9058 * s/bsd386.h:
9059 * s/bsd4-1.h:
9060 * s/bsd4-2.h:
9061 * s/bsdos2-1.h:
9062 * s/bsdos2.h:
9063 * s/bsdos3.h:
9064 * s/bsdos4.h:
9065 * s/nextstep.h:
9066 * s/ultrix4-3.h:
9067 * s/usg5-0.h:
9068 * s/usg5-2-2.h:
9069 * s/usg5-2.h:
9070 * s/usg5-4-3.h:
9071 * s/ux4800.h:
9072 * s/uxpds.h:
9073 * s/uxpv.h: Remove support for obsolete systems.
9074 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
9075 Remove, insert contents in s/hpux10-20.h.
9076 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
9077 Remove, insert contents in s/aix4-2.h.
9078 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
9079 * s/bsd4-3.h: Rename to ...
9080 * s/bsd-common.h: ... this.
9081 * data.c:
9082 * doc.c:
9083 * ecrt0.c:
9084 * emacs.c:
9085 * fileio.c:
9086 * floatfns.c:
9087 * keyboard.c:
9088 * mem-limits.h:
9089 * print.c:
9090 * process.c:
9091 * sysdep.c:
9092 * syssignal.h:
9093 * systty.h:
9094 * syswait.h:
9095 * term.c:
9096 * unexec.c:
9097 * unexelf.c:
9098 * unexhp9k800.c:
9099 * m/hp800.h:
9100 * m/ibmrs6000.h:
9101 * m/mips.h:
9102 * m/vax.h:
9103 * s/darwin.h:
9104 * s/freebsd.h:
9105 * s/gnu.h:
9106 * s/ms-w32.h:
9107 * s/msdos.h:
9108 * s/netbsd.h:
9109 * s/template.h: Remove references to obsolete variables.
9110
9111 * Makefile.in: Add dependencies for all unexec files.
9112 (admindir): Remove unused variable.
9113 (UNEXEC_SRC): Remove references.
9114
9115 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
9116
9117 * xfns.c (x_default_font_parameter): If Xft is available, first
9118 try Monospace-12 for the default font.
9119
9120 2008-06-25 Jason Rumney <jasonr@gnu.org>
9121
9122 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
9123
9124 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
9125
9126 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
9127
9128 * buffer.c (syms_of_buffer): Remove default-word-wrap.
9129
9130 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
9131
9132 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
9133 <scroll-conservatively>: Fix typo in docstring.
9134
9135 * xselect.c (Fx_send_client_event): Doc fix.
9136
9137 2008-06-25 Kenichi Handa <handa@m17n.org>
9138
9139 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
9140
9141 * font.c (font_parse_fcname): Remove unused variables.
9142 (font_sort_entites): Delete the arg SPEC. Caller changed.
9143 Fix for the case of ! best_only.
9144 (font_delete_unmatched): Check DPI and AVGWIDTH too.
9145
9146 * lisp.h (Fstring_to_unibyte): EXFUN it.
9147
9148 * character.h (str_to_unibyte): Extern it.
9149
9150 * character.c (str_to_unibyte): New function.
9151
9152 * fns.c (Fstring_to_unibyte): New function.
9153 (syms_of_fns): Defsubr it.
9154
9155 2008-06-24 Kenichi Handa <handa@m17n.org>
9156
9157 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
9158 DPI too.
9159 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
9160
9161 2008-06-24 Andreas Schwab <schwab@suse.de>
9162
9163 * Makefile.in (${lispsource}loaddefs.el): Rename from
9164 ../lisp/loaddefs.el.
9165 (bootstrap-clean): Do what distclean does but don't remove
9166 Makefile.
9167 (distclean): Depend on bootstrap-clean and remove Makefile.
9168
9169 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
9170
9171 * buffer.h (struct buffer): New member word_wrap.
9172
9173 * buffer.c (syms_of_buffer): New variables default-word-wrap and
9174 word-wrap.
9175 (init_buffer_once): Initialize them.
9176
9177 * dispextern.h (struct it): Replace bool truncate_lines_p with a
9178 line_wrap enum possessing three possible values.
9179
9180 * termopts.h: Replace truncate_partial_width_windows with
9181 Vtruncate_partial_width_windows.
9182
9183 * dispnew.c (direct_output_for_insert): Avoid direct output when
9184 inserting a space with word wrap on.
9185
9186 * indent.c (compute_motion): Obey integer values of
9187 truncate-partial-width-windows.
9188
9189 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
9190 replacing truncate_partial_width_windows.
9191 (init_iterator): If Vtruncate_partial_width_windows is an integer,
9192 truncate only if the window width is below that integer.
9193 (start_display, resize_mini_window, produce_stretch_glyph)
9194 (display_string, move_it_in_display_line_to): Use line_wrap.
9195 (back_to_previous_visible_line_start, reseat_1): Reset
9196 string_from_display_prop_p.
9197 (display_line): Extend default face to end of line when wrapping.
9198
9199 2008-06-24 Kim F. Storm <storm@cua.dk>
9200
9201 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
9202 to wrap continued lines at word boundaries.
9203
9204 2008-06-24 Jason Rumney <jasonr@gnu.org>
9205
9206 * font.c (Ffont_face_attributes): Multiply pixel size before point
9207 conversion to avoid multiplying rounding error.
9208
9209 2008-06-23 Jason Rumney <jasonr@gnu.org>
9210
9211 * w32term.c (x_draw_glyph_string_background)
9212 (x_draw_glyph_string): Remove old bdf font code.
9213
9214 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
9215
9216 2008-06-22 Kenichi Handa <handa@m17n.org>
9217
9218 * font.c (font_find_for_lface): Try the adstyle specified in
9219 the property of LFACE_FONT of LFACE (if any).
9220
9221 2008-06-21 Seiji Zenitani <zenitani@mac.com>
9222 Ryo Yoshitake <ryo@shiftmode.net>
9223
9224 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
9225
9226 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9227
9228 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
9229 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
9230 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
9231 (witness-emacs): Remove.
9232 (lisp, shortlisp): Move loaddefs.el earlier.
9233 (mostlyclean): Forget about witness-emacs.
9234
9235 2008-06-22 Glenn Morris <rgm@gnu.org>
9236
9237 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
9238 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
9239
9240 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9241
9242 * Makefile.in (PRECOMP): Remove.
9243 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
9244 (witness-emacs): Run `compile-first'.
9245 (.el.elc): Use the new compile-onefile target.
9246
9247 2008-06-21 Kenichi Handa <handa@m17n.org>
9248
9249 * xftfont.c (xftfont_open): Handle QCembolden only when
9250 FC_EMBOLDEN is defined.
9251
9252 2008-06-21 Andreas Schwab <schwab@suse.de>
9253
9254 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
9255 (.el.elc): Likewise.
9256
9257 2008-06-21 Miles Bader <miles@gnu.org>
9258
9259 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
9260 build dir, not the lisp source dir.
9261
9262 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9263
9264 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
9265 (bootstrapclean): Remove.
9266 (.el.elc): New rule.
9267 (PRECOMP): New var.
9268 (../lisp/subdirs.el): Remove.
9269 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
9270 (witness-emacs): New target.
9271 (mostlyclean): Remove witness-emacs as well.
9272 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
9273 Add witness-emacs dependency.
9274
9275 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
9276
9277 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
9278 defined by the font.
9279
9280 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
9281
9282 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
9283 (bootstrap-clean): New target that keeps TAGS around.
9284 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
9285 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
9286
9287 2008-06-20 Jason Rumney <jasonr@gnu.org>
9288
9289 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
9290 Remove obsolete font code.
9291
9292 * w32font.c (font_matches_spec): Use csb bitfield from font signature
9293 to determine language support.
9294
9295 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
9296
9297 * sysdep.c (cfsetspeed): New fun extracted from the code.
9298 (cfmakeraw): Move before first use.
9299
9300 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
9301
9302 * sysdep.c (cfmakeraw): Provide fallback implementation.
9303 (serial_configure): Provide fallback implementation of cfsetspeed.
9304
9305 2008-06-20 Kenichi Handa <handa@m17n.org>
9306
9307 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
9308 the pattern.
9309
9310 * fontset.c (fontset_from_font): Copy font_spec before changing
9311 the elements.
9312
9313 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
9314
9315 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
9316
9317 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
9318 for explicit `font' parameters.
9319
9320 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
9321
9322 2008-06-19 Kenichi Handa <handa@m17n.org>
9323
9324 * frame.c: Include <ctype.h>.
9325 (x_set_font_backend): Allow spacing characters in the X resource
9326 for FontBackend.
9327
9328 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
9329
9330 * w32fns.c, xfns.c (Qfont_param): New var.
9331 (syms_of_w32fns): Initialize it.
9332 (x_default_font_parameter): Record explicit `font' into
9333 `font-parameter'.
9334
9335 2008-06-18 Kenichi Handa <handa@m17n.org>
9336
9337 * font.c (font_parse_xlfd): Fix previous change.
9338 (font_parse_fcname): Don't use :fc-unknown-spec.
9339 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
9340 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
9341 (font_add_log): Prepend the driver name to the resulting fonts.
9342
9343 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
9344 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
9345 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
9346
9347 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
9348 (QCembolden): New variables.
9349 (syms_of_xftfont): DEFSYM them.
9350 (xftfont_open): Call XftFontMatch. Don't trust the result of
9351 XftTextExtents8 if the pixel_size is less than 5.
9352
9353 2008-06-18 Andreas Schwab <schwab@suse.de>
9354
9355 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
9356 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
9357
9358 2008-06-18 Jason Rumney <jasonr@gnu.org>
9359
9360 * w32font.c (w32font_list, w32font_match): Add logging.
9361
9362 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
9363
9364 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
9365
9366 * font.c (font_parse_fcname): Store divider characters for
9367 unknown-spec list. For known key symbols, intern using correct
9368 symbol name.
9369
9370 2008-06-17 Kenichi Handa <handa@m17n.org>
9371
9372 * xfaces.c (realize_default_face): If the frame is not on window
9373 system, set the fontset of face to nil.
9374
9375 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
9376
9377 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
9378
9379 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
9380
9381 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
9382 (build_font_name_from_vector): Delete externs.
9383
9384 * xfaces.c (struct font_name): Don't declare.
9385
9386 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
9387
9388 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
9389
9390 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
9391
9392 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
9393
9394 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
9395
9396 * font.c (Ffont_spec): Fix usage in docstring.
9397 (Ffont_face_attributes): Doc fix.
9398
9399 2008-06-16 Andreas Schwab <schwab@suse.de>
9400
9401 * font.c (Ffont_face_attributes): Fix definition.
9402
9403 2008-06-16 Jason Rumney <jasonr@gnu.org>
9404
9405 * font.h (font_style_symbolic_from_value): Remove.
9406
9407 * font.c (font_style_symbolic_from_value): Remove.
9408 (font_style_symbolic): Revert to pre 2008-06-13 version.
9409
9410 * w32font.c (w32_to_fc_weight): New function.
9411 (w32font_full_name, logfont_to_fcname): Use it.
9412
9413 2008-06-16 Kenichi Handa <handa@m17n.org>
9414
9415 * font.c (font_check_object): Delete it.
9416 (font_clear_cache): Check if a font-object is alive.
9417 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
9418 font-object to nil.
9419 (font_close_object): Don't check FONT_CLOSE_OBJECT.
9420 (font_at): Don't call font_check_object.
9421 (Ffont_get): Return a symbol for :weight, :slant, and :width.
9422
9423 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
9424
9425 * puresize.h (BASE_PURESIZE): Increase to 1230000.
9426
9427 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
9428
9429 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
9430
9431 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
9432
9433 * font.c (font_parse_fcname): Only one decimal point.
9434 (font_unparse_fcname): Handle data in family and foundry indices
9435 as symbols, not strings.
9436 (font_unparse_gtkname, Ffont_face_attributes): New functions.
9437
9438 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
9439
9440 * font.h (font_unparse_gtkname): Add prototype.
9441
9442 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
9443
9444 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
9445
9446 2008-06-15 Andreas Schwab <schwab@suse.de>
9447
9448 * font.c (font_update_drivers): Fix crash when no drivers match.
9449
9450 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9451
9452 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
9453 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
9454
9455 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
9456
9457 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
9458
9459 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9460
9461 * process.c (Fserial_process_configure, Fprocess_send_eof):
9462 Use EQ to compare Lisp_Objects.
9463
9464 2008-06-13 Jason Rumney <jasonr@gnu.org>
9465
9466 * w32fns.c (Fw32_select_font): Remove old font API function.
9467
9468 * w32font.c (logfont_to_fcname): New function.
9469 (Fx_select_font): New font dialog function compatible with
9470 GTK/fontconfig version.
9471
9472 * font.c (font_style_symbolic_from_value): New function.
9473 (font_style_symbolic): Use it.
9474
9475 * font.h (font_style_symbolic_from_value): Declare new function.
9476
9477 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
9478
9479 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
9480 <font-width-table>: Fix typos in docstrings.
9481
9482 2008-06-13 Daniel Engeler <engeler@gmail.com>
9483
9484 These changes add serial port access.
9485 * process.c: Add HAVE_SERIAL.
9486 (Fdelete_process, Fprocess_status, Fset_process_buffer)
9487 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
9488 (list_processes_1, select_wrapper, Fstop_process)
9489 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
9490 (status_notify): Modify to handle serial processes.
9491 [HAVE_SERIAL] (Fserial_process_configure)
9492 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
9493 New functions.
9494 * process.h (struct Lisp_Process): Add `type'.
9495 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
9496 New functions.
9497 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
9498 serial ports.
9499 (serial_open, serial_configure): New functions.
9500 * w32.h: Add FILE_SERIAL.
9501 (struct _child_process): Add ovl_read, ovl_write.
9502
9503 2008-06-13 Kenichi Handa <handa@m17n.org>
9504
9505 * dispextern.h (enum lface_attribute_index): New member
9506 LFACE_FOUNDRY_INDEX.
9507
9508 * font.c (font_score): Delete arg alternate_families. Check only
9509 weight, slant, width, and size. Ignore the difference of alias
9510 style symbols.
9511 (font_sort_entites): Adjust for the above change. Reflect the
9512 order of font-driver to scores.
9513 (font_list_entities): Don't check alternate_familes here.
9514 (font_clear_prop): Handle foundry.
9515 (font_update_lface): Don't parse "foundry-family" form here.
9516 Handle FONT_FOUNDRY_INDEX.
9517 (font_find_for_lface): Likewise. Handle alternate families here.
9518 If registry is nil, try iso8859-1 and ascii-0.
9519 (font_open_for_lface): Pay attention to size in ENTITY.
9520 (font_open_by_name): Simplify by calling font_load_for_lface.
9521 (free_font_driver_list): Delete it.
9522 (font_update_drivers): Preserve the order of backends.
9523 (syms_of_font): Setting of sort_shift_bits adjusted for the change
9524 of font_score and font_sort_entites.
9525 (font_update_sort_order): Likewise.
9526
9527 * xfaces.c (LFACE_FOUNDRY): New macro.
9528 (check_lface_attrs): Check foundry.
9529 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
9530 (merge_face_vectors): Check foundry.
9531 (merge_face_ref): Likewise.
9532 (Finternal_set_lisp_face_attribute): Likewise.
9533 (x_update_menu_appearance): Likewise.
9534 (Finternal_get_lisp_face_attribute): Likewise.
9535 (lface_hash): Likewise.
9536 (lface_same_font_attributes_p): Likewise.
9537 (x_supports_face_attributes_p): Likewise.
9538 (tty_supports_face_attributes_p): Likewise.
9539 (Finternal_set_alternative_font_family_alist): Intern strings.
9540 (Finternal_set_alternative_font_registry_alist): Downcase strings.
9541 (realize_default_face): Set LFACE_FOUNDRY (lface).
9542
9543 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
9544 font-driver at first.
9545
9546 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
9547
9548 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
9549
9550 * lread.c (Fload): Use xfree, not free on saved_doc_string.
9551
9552 2008-06-12 Jim Meyering <meyering@redhat.com>
9553
9554 Make unexec_free handle NULL the same way free does.
9555 * unexmacosx.c (unexec_free): Ignore a NULL argument.
9556
9557 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
9558
9559 * character.h (CHAR_TO_BYTE_SAFE): New macro.
9560 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
9561 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
9562 (WEAK_ALIAS): Simplify.
9563 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
9564 when searching a unibyte buffer.
9565
9566 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
9567
9568 * xfns.c (Fx_select_font): Rename from x-font-dialog.
9569
9570 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
9571
9572 * w32font.c: Include ctype.h.
9573
9574 2008-06-11 Jason Rumney <jasonr@gnu.org>
9575
9576 * w32font.c (w32font_encode_char): Detect missing glyphs that are
9577 misreported as space.
9578 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
9579 as aliases for registry iso10646-1.
9580
9581 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9582
9583 * buffer.c (clone_per_buffer_values): Skip `name'.
9584
9585 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
9586
9587 * font.c (font_parse_fcname): Fix last change; accept decimal
9588 points in font size.
9589
9590 2008-06-10 Jason Rumney <jasonr@gnu.org>
9591
9592 * w32uniscribe.c (add_opentype_font_name_to_list):
9593 Skip non unicode fonts.
9594
9595 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
9596
9597 * xfns.c (Fx_font_dialog): New function.
9598
9599 * gtkutil.c (xg_dialog_response_cb): Rename from
9600 xg_file_response_callback.
9601 (pop_down_dialog): Rename from pop_down_file_dialog.
9602 (xg_get_file_name): Callers changed.
9603 (xg_get_font_name): New function.
9604
9605 * gtkutil.h (xg_get_font_name): Insert prototype.
9606
9607 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
9608
9609 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
9610 x_underline_minimum_display_offset.
9611 (syms_of_xdisp): Declare it here rather than in xterm.c.
9612 * dispextern.h (underline_minimum_offset): Declare it.
9613 * w32term.c (x_draw_glyph_string): Use it.
9614 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
9615 (syms_of_xterm): Don't declare it any more.
9616 (x_draw_glyph_string): Adjust to the new name.
9617
9618 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
9619
9620 * xterm.c (x_underline_minimum_display_offset): New var.
9621 (x_draw_glyph_string): Use it.
9622 (syms_of_xterm): Declare it.
9623
9624 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
9625
9626 * font.c (font_parse_fcname): Accept GTK-style font names too.
9627
9628 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
9629
9630 * dired.c (file_name_completion): Don't return t if the match is exact
9631 but with different capitalization.
9632 * minibuf.c (Ftry_completion): Simplify.
9633
9634 * window.c (Vwindow_point_insertion_type): New var.
9635 (set_window_buffer): Use it.
9636 (syms_of_window): Init and export it to Lisp.
9637
9638 2008-06-10 Kenichi Handa <handa@m17n.org>
9639
9640 * font.h (font_intern_prop): Prototype adjusted.
9641
9642 * font.c (font_intern_prop): New arg force_symbol.
9643 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
9644 Adjust for the change of font_intern_prop.
9645
9646 * ftfont.c (ftfont_pattern_entity):
9647 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
9648 (w32_registry):
9649 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
9650 the change of font_intern_prop.
9651
9652 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
9653
9654 * w32menu.c (digest_single_submenu): Declare extern.
9655
9656 2008-06-09 Jason Rumney <jasonr@gnu.org>
9657
9658 * w32term.c (x_make_frame_visible): Use alternate restore flags.
9659
9660 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
9661 (parse_single_submenu): Remove.
9662 (digest_single_submenu): Remove.
9663 (syms_of_w32menu): Don't initialise variables that have moved
9664 to menu.c.
9665 (set_frame_menubar): Sync with version in xmenu.c.
9666 (w32_menu_show): Sync with xmenu_show in xmenu.c.
9667
9668 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
9669 Make static again.
9670
9671 2008-06-09 Jason Rumney <jasonr@gnu.org>
9672
9673 Changes to w32 files related to the move of common menu code
9674 to menu.c on 2008-06-08 by Chong Yidong.
9675
9676 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
9677 defs to w32gui.h.
9678 (single_keymap_panes, push_menu_item, push_menu_pane):
9679 Make globally visible.
9680
9681 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
9682 (local_free, malloc_widget_value, free_widget_value)
9683 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
9684 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
9685 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
9686 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
9687 (menu_items, menu_items_allocated, menu_items_used)
9688 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
9689 (init_menu_items, finish_menu_items, discard_menu_items)
9690 (grow_menu_items, push_submenu_start, push_submenu_end)
9691 (push_left_right_boundary, push_menu_pane, push_menu_item)
9692 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
9693 (free_menubar_widget_tree_value, parse_single_submenu)
9694 (update_submenu_strings): Remove functions.
9695 (xmalloc_widget_value): Remove and declare extern.
9696
9697 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
9698 (OBJ1): Build it.
9699
9700 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
9701 (local_heap, local_alloc, local_free, malloc_widget_value)
9702 (free_widget_value): Define here.
9703
9704 2008-06-09 Kenichi Handa <handa@m17n.org>
9705
9706 * font.h (Qascii_0): Extern it.
9707
9708 * font.c (Qascii_0): New variable.
9709 (syms_of_font): DEFSYM it.
9710 (font_open_by_name): If the registry "iso8859-1" fails, try also
9711 "ascii-0".
9712
9713 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
9714
9715 2008-06-08 Kenichi Handa <handa@m17n.org>
9716
9717 * .gdbinit (xfont): New command.
9718
9719 2008-06-08 Andreas Schwab <schwab@suse.de>
9720
9721 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
9722 * Makefile.in (menu.o): Update dependencies.
9723
9724 * Makefile.in (obj): Always add menu.o.
9725 * emacs.c (main): Always call syms_of_menu.
9726 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
9727
9728 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
9729
9730 * Makefile.in: Compile menu.c.
9731
9732 * lisp.h: Declare syms_of_menu.
9733
9734 * emacs.c (main): Call syms_of_menu.
9735
9736 * keyboard.h: Relocate platform-independent menu definitions from
9737 xmenu.c.
9738
9739 * menu.c: New file. Relocate platform-independent menu
9740 definitions from xmenu.c. Suggested by Adrian Robert.
9741
9742 * xmenu.c: Remove platform-independent menu definitions.
9743 (menu_items menu_items_inuse, menu_items_allocated)
9744 (menu_items_used, menu_items_n_panes)
9745 (menu_items_submenu_depth): Move to keyboard.h.
9746 (init_menu_items, finish_menu_items, unuse_menu_items)
9747 (discard_menu_items, restore_menu_items, save_menu_items)
9748 (grow_menu_items, push_submenu_start, push_submenu_end)
9749 (push_left_right_boundary, push_menu_pane, push_menu_item)
9750 (keymap_panes, single_keymap_panes, single_menu_item)
9751 (list_of_panes, list_of_items, find_and_call_menu_selection)
9752 (xmalloc_widget_value, free_menubar_widget_value_tree)
9753 (parse_single_submenu, digest_single_submenu)
9754 (update_submenu_strings): Move to menu.c.
9755
9756 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9757
9758 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
9759
9760 2008-06-06 Miles Bader <miles@gnu.org>
9761
9762 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
9763 face, not frame default.
9764
9765 2008-06-05 Martin Rudalics <rudalics@gmx.at>
9766
9767 * window.c (pop_up_windows, pop_up_frames)
9768 (display_buffer_reuse_frames, Vpop_up_frame_function)
9769 (Vdisplay_buffer_function, Veven_window_heights)
9770 (Vspecial_display_buffer_names, Vspecial_display_regexps)
9771 (Vspecial_display_function, Vsame_window_buffer_names)
9772 (Vsame_window_regexps, split_height_threshold)
9773 (Vsplit_window_preferred_function): Move those vars to window.el.
9774 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
9775 (Fdisplay_buffer): Move those functions to window.el.
9776 (syms_of_window): Remove corresponding declarations.
9777 (display_buffer): New function.
9778 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
9779 * dispnew.c (Flast_nonminibuf_frame): New function.
9780 * buffer.c (Fpop_to_buffer): Move to window.el.
9781
9782 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
9783
9784 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
9785
9786 2008-06-05 Kenichi Handa <handa@m17n.org>
9787
9788 * coding.c (detect_coding): Fix previous change.
9789 (detect_coding_system): Likewise.
9790
9791 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
9792
9793 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
9794
9795 * keymap.c (Vminibuffer_local_filename_must_match_map):
9796 Rename from Vminibuffer_local_must_match_filename_map.
9797 (syms_of_keymap):
9798 * minibuf.c (Fcompleting_read): Adjust accordingly.
9799 * commands.h: Rename declaration as well.
9800
9801 2008-06-05 Kenichi Handa <handa@m17n.org>
9802
9803 * font.c (Ffont_spec): Don't use font_parse_family_registry for
9804 family name.
9805 (Ffont_put): Likewise.
9806
9807 * fontset.c (fontset_find_font): Call font_open_for_lface with the
9808 current font-spec.
9809
9810 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
9811 is unspecified.
9812
9813 * xfaces.c (realize_x_face): If the font-related face attributes
9814 are the same as those of default face, realize a new fontset from
9815 default->fontset.
9816 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
9817
9818 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
9819
9820 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
9821 (move_it_in_display_line): New wrapper.
9822
9823 * window.c (window_scroll_pixel_based_preserve_x)
9824 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
9825 (window_scroll_pixel_based, window_scroll_line_based):
9826 Use them to preserve column positions.
9827 (syms_of_window): Initialize them.
9828
9829 * indent.c (Fvertical_motion): Extend first arg to allow passing an
9830 (HPOS . VPOS) pair.
9831
9832 * dispextern.h (move_it_in_display_line): Declare.
9833
9834 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
9835
9836 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
9837 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
9838 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
9839
9840 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
9841
9842 * window.c (Fset_window_parameter): Doc fix.
9843 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
9844
9845 2008-06-04 Joakim Verona <joakim@verona.se>
9846
9847 * window.h (struct window): Add new member window_parameters.
9848
9849 * window.c (Fwindow_parameters, Fwindow_parameter)
9850 (Fset_window_parameter): New defuns.
9851 (syms_of_window): Defsubr the new defuns.
9852 (make_window): Initialize window_parameters to nil.
9853
9854 2008-06-04 John Paul Wallington <jpw@pobox.com>
9855
9856 * eval.c (Fdefmacro): Doc fix.
9857
9858 2008-06-04 Kenichi Handa <handa@m17n.org>
9859
9860 * coding.c (detect_coding): Fix handling of coding->head_ascii.
9861 Be sure to call setup_coding_system when we find a proper coding system.
9862 (detect_coding_system): Fix handling of coding->head_ascii.
9863
9864 2008-06-03 Andreas Schwab <schwab@suse.de>
9865
9866 * font.c (font_prop_validate_spacing): Fix last change.
9867
9868 2008-06-03 Kenichi Handa <handa@m17n.org>
9869
9870 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
9871 (font_parse_fcname): Fix handling of unknown key.
9872
9873 * xfont.c (xfont_list): Try an alias.
9874
9875 * charset.c (char_charset): Return NULL if the arg charset_list is
9876 specified and C doesn't belong to any of them.
9877
9878 2008-06-02 Chip Coldwell <coldwell@redhat.com>
9879
9880 * font.c (font_pixel_size): Don't take cdr of an integer.
9881
9882 2008-06-02 Jim Meyering <meyering@redhat.com>
9883
9884 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
9885 * alloc.c (xfree): Return right away for a NULL arg.
9886 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
9887 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
9888 * mac.c (create_apple_event_from_event_ref): Likewise.
9889 (create_apple_event_from_drag_ref, cfstring_create_normalized):
9890 Likewise.
9891 * doprnt.c (doprnt1): Likewise.
9892 * frame.c (frame): Likewise.
9893 * keyboard.c (wipe_kboard): Likewise.
9894 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
9895 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
9896 * term.c (tty_default_color_capabilities, maybe_fatal)
9897 (delete_tty): Likewise.
9898 * w16select.c (string): Likewise.
9899 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
9900 * w32bdf.c (w32_free_bdf_font): Likewise.
9901 * w32fns.c (w32_unload_font): Likewise.
9902 * w32font.c (w32font_close): Likewise.
9903 * window.c (size_window): Likewise.
9904 * xselect.c (receive_incremental_selection): Likewise.
9905 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
9906 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
9907 * w32.c (stat): Likewise.
9908
9909 Remove useless if-before-free tests.
9910 * editfns.c (Fset_time_zone_rule): Likewise.
9911 * lread.c (nosuffix): Likewise.
9912 * ralloc.c (get_bloc): Likewise.
9913 * regex.c (reg_free): Likewise.
9914 * xftfont.c (xftfont_open, xftfont_close): Likewise.
9915 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
9916 * xsmfns.c (smc_save_yourself_CB): Likewise.
9917
9918 2008-06-02 Kenichi Handa <handa@m17n.org>
9919
9920 * font.c (font_find_for_lface): Handle float font size.
9921 (font_open_for_lface): Likewise.
9922
9923 * xfaces.c (x_supports_face_attributes_p): Check face->font before
9924 comparing the properties.
9925
9926 2008-06-01 Jason Rumney <jasonr@gnu.org>
9927
9928 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
9929 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
9930 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
9931 Don't add empty script list.
9932 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
9933
9934 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
9935
9936 * Makefile.in (dot, dotdot): Remove, update users.
9937 ".." has been used elsewhere in the file for a long time.
9938 (LIBXT_STATIC): Remove conditional based on unused variable.
9939
9940 2008-06-01 Miles Bader <miles@gnu.org>
9941
9942 * xfaces.c (Vface_remapping_alist): New variable.
9943 (syms_of_xfaces): Initialize it.
9944 (enum named_merge_point_kind): New type.
9945 (struct named_merge_point): Add `named_merge_point_kind' field.
9946 (push_named_merge_point): Make cycle detection respect different
9947 named-merge-point kinds.
9948 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
9949 Remove face-name alias resolution.
9950 (lface_from_face_name): New definition using
9951 `lface_from_face_name_no_resolve'.
9952 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
9953 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
9954 (get_lface_attributes): New definition that layers face-remapping on
9955 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
9956 (lookup_basic_face): New function.
9957 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
9958 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
9959 `get_lface_attributes'.
9960 (face_at_buffer_position): Use `lookup_basic_face' to lookup
9961 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
9962 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
9963
9964 * xdisp.c (init_iterator): Pass base_face_id through
9965 `lookup_basic_face' when we actually use it as a face-id.
9966 (handle_single_display_prop): Use `lookup_basic_face' to lookup
9967 DEFAULT_FACE_ID.
9968
9969 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
9970 lookup the initial face-id.
9971
9972 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
9973
9974 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
9975
9976 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
9977 (Fremove_text_properties): Fix typos in docstrings.
9978
9979 2008-05-31 Kenichi Handa <handa@m17n.org>
9980
9981 * font.c (font_list_entities): Fix the car part of data to be
9982 stored in the cache.
9983
9984 * ftfont.c (ftfont_font_format): Don't use strcasestr.
9985
9986 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
9987
9988 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
9989 Add a `test' argument so another predicate than `equal' can be used.
9990 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
9991 (map_char_table): Remove unused vars `c' and `i'.
9992 * lisp.h (Foptimize_char_table): Adjust declaration.
9993 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
9994
9995 2008-05-30 Kenichi Handa <handa@m17n.org>
9996
9997 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
9998 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
9999 defined.
10000
10001 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10002
10003 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
10004 (Fmake_variable_frame_local): Disallow mixing buffer-local and
10005 frame-local settings for the same variable.
10006
10007 2008-05-30 Kenichi Handa <handa@m17n.org>
10008
10009 * fontset.c (Ffont_info): Move to font.c.
10010 (syms_of_fontset): Delete defsubr of Sfont_info.
10011
10012 * font.c (font_style_to_value, font_score): Delete casting of the
10013 args to xstcasecmp.
10014 (register_font_driver): Increment num_font_drivers only when
10015 registering the driver globally.
10016 (Ffont_info): Move from fontset.c. Handle a font object too.
10017 (syms_of_font): Defsubr Sfont_info.
10018
10019 2008-05-29 Kenichi Handa <handa@m17n.org>
10020
10021 * coding.h (enum define_coding_utf8_arg_index): New enum.
10022 (enum coding_attr_index): Change coding_attr_utf_16_bom to
10023 coding_attr_utf_bom.
10024 (enum utf_bom_type): Rename from utf_16_bom_type.
10025 (struct utf_16_spec): Adjust for the above change.
10026 (struct coding_system): Add utf_8_bom in `spec' union.
10027
10028 * coding.c (CODING_UTF_8_BOM): New macro.
10029 (enum coding_category): Delete coding_category_utf_8, add
10030 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
10031 coding_category_utf_8_sig.
10032 (CATEGORY_MASK_UTF_8): Delete it.
10033 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
10034 (CATEGORY_MASK_UTF_8_SIG): New macros.
10035 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
10036 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
10037 CATEGORY_MASK_UTF_8_SIG.
10038 (CATEGORY_MASK_UTF_8): New macro.
10039 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
10040 (detect_coding_utf_8): Check BOM.
10041 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
10042 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
10043 (encode_coding_utf_16): Likewise.
10044 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
10045 (detect_coding, detect_coding_system): Handle utf-8-auto.
10046 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
10047 (syms_of_coding): Fix setting up of Vcoding_category_table.
10048
10049 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
10050
10051 * process.c (Faccept_process_output): If `millisec' is non-nil,
10052 `seconds' default to 0.
10053 (wait_reading_process_output): Also return non-nil if we read output
10054 from a non-running process.
10055
10056 2008-05-29 Jason Rumney <jasonr@gnu.org>
10057
10058 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
10059 `raster' specified.
10060 (add_font_entity_to_list): Allow non-opentype truetype fonts back
10061 in the uniscribe backend, but disallow any font that has no
10062 unicode subrange support.
10063
10064 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
10065
10066 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
10067 Fix typos in docstrings.
10068
10069 2008-05-29 Kenichi Handa <handa@m17n.org>
10070
10071 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
10072 (Fx_family_fonts): Set frame correctly.
10073
10074 2008-05-28 Jason Rumney <jasonr@gnu.org>
10075
10076 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
10077
10078 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10079
10080 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
10081 calling build_annotations.
10082
10083 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
10084
10085 * coding.c (Fdecode_coding_region, Fencode_coding_region)
10086 (Fencode_coding_string):
10087 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
10088 <latin-extra-code-table>: Fix typos in docstrings.
10089 (syms_of_coding) <coding-system-alist>: Doc fix.
10090 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
10091
10092 2008-05-28 Kenichi Handa <handa@m17n.org>
10093
10094 * fontset.c (Ffont_info): Don't call font_close_object.
10095
10096 * font.c (font_parse_family_registry): Use Ffont_put to validate
10097 foundry and family.
10098 (font_delete_unmatched): Don't check spacing.
10099 (font_list_entities): Add spacing to the spec to list fonts.
10100
10101 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
10102 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
10103
10104 * coding.c (encode_coding_raw_text): Fix previous change.
10105 (encode_coding_object): When the dst_object is a buffer and is
10106 different from src_object, move gap to PT.
10107
10108 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
10109
10110 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
10111
10112 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
10113
10114 * coding.c (encode_coding_raw_text): Set coding->produced_char for
10115 all branches. Compute it differently.
10116
10117 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
10118
10119 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
10120
10121 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
10122 into "else if () ... else ...".
10123
10124 2008-05-27 Jason Rumney <jasonr@gnu.org>
10125
10126 * w32font.c (w32font_open_internal): Determine if glyph indices
10127 are likely to work here.
10128
10129 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
10130
10131 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
10132 draw overlap glyphs with appropriate highlighting.
10133
10134 2008-05-27 Kenichi Handa <handa@m17n.org>
10135
10136 * xfont.c (xfont_open): Fix calculation of font->average_width.
10137
10138 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
10139
10140 * casefiddle.c (casify_object): Try to guess better whether the
10141 argument is a byte or a char.
10142
10143 2008-05-26 Andreas Schwab <schwab@suse.de>
10144
10145 * xselect.c (x_reply_selection_request): Properly handle format == 32.
10146 Always send multiples of format size.
10147
10148 * xterm.c (x_set_frame_alpha): Fix type mismatch.
10149
10150 2008-05-26 Jason Rumney <jasonr@gnu.org>
10151
10152 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
10153 (compute_metrics): Don't set failure if we just cleared the cache.
10154 (w32_weight_table): Remove unused variable.
10155 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
10156 backwards compatibility.
10157
10158 2008-05-25 Kenichi Handa <handa@m17n.org>
10159
10160 * w32term.c (x_draw_glyph_string):
10161 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
10162
10163 * xfaces.c: Delete unused function prototypes.
10164 (xstrlwr, font_frame): Delete them.
10165 (clear_face_cache): Delete unused variable.
10166
10167 * xftfont.c (xftfont_open): Delete unused variable.
10168 If underline_thickness is not 1, adjust underline_position.
10169
10170 * ftxfont.c (ftxfont_open): Delete unused variable.
10171
10172 * fontset.c (face_for_char): Optimize for the case of no charset
10173 property.
10174
10175 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
10176 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
10177 (otf_open, font_otf_capability, generate_otf_features)
10178 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
10179 Comment out by surrounding "#if 0" and "#endif" for the moment.
10180 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
10181 (syms_of_font): Codes for accessing above commented out.
10182
10183 2008-05-24 Eli Zaretskii <eliz@gnu.org>
10184
10185 * w32proc.c: Include dispextern.h.
10186
10187 * w32.c: Include dispextern.h.
10188
10189 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
10190
10191 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
10192 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
10193 Fix typos in docstrings.
10194
10195 2008-05-23 Jason Rumney <jasonr@gnu.org>
10196
10197 * xsmfns.c: Remove includes that are already included by config.h.
10198
10199 2008-05-23 Kenichi Handa <handa@m17n.org>
10200
10201 * charset.c (Qemacs, charset_emacs): New variables.
10202 (char_charset): Fix for non-Unicode characters.
10203 (syms_of_charset): Define charset_emacs.
10204
10205 * w32term.c (x_draw_glyph_string): Be sure to update
10206 s->underline_thickness and s->underline_position. Be sure to draw
10207 underline within the current line area.
10208
10209 * xterm.c (x_draw_glyph_string): Be sure to update
10210 s->underline_thickness and s->underline_position. Be sure to draw
10211 underline within the current line area.
10212
10213 * fontset.c: Delete unused variables and add casting for char *
10214 throughout the file.
10215 (fontset_font): Try the fallback fonts of the current fontset
10216 before consulting the default fontset.
10217
10218 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
10219
10220 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
10221
10222 2008-05-22 Jason Rumney <jasonr@gnu.org>
10223
10224 * font.c: Don't include strings.h.
10225
10226 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
10227
10228 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
10229 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
10230 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
10231 to call xstrcasecmp.
10232
10233 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
10234
10235 * fontset.c (fs_query_fontset): Use xstrcasecmp.
10236
10237 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
10238
10239 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
10240
10241 2008-05-22 Kenichi Handa <handa@m17n.org>
10242
10243 * puresize.h (BASE_PURESIZE): Increase to 1220000.
10244
10245 * font.c (font_prop_validate_style): Adjust for the format
10246 change of font_style_table.
10247
10248 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
10249 two args.
10250
10251 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
10252 two args.
10253
10254 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
10255
10256 * minibuf.c (keys_of_minibuf): Delete.
10257 * lisp.h (keys_of_minibuf): Delete.
10258 * emacs.c (main): Don't call keys_of_minibuf.
10259
10260 2008-05-22 Kenichi Handa <handa@m17n.org>
10261
10262 * ftfont.c (ftfont_resolve_generic_family): Rename from
10263 ftfont_list_generic_family. Return a single family for each
10264 generic family.
10265 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
10266 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
10267 Call font_add_log.
10268 (ftfont_match): Call font_add_log.
10269
10270 * font.h (Ffont_xlfd_name): EXFUN adjusted.
10271 (FONT_DEBUG): Define it.
10272 (font_add_log): Extern it.
10273 (font_assert): Rename from xassert.
10274
10275 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
10276 (xfont_list_family): Call font_add_log.
10277 (xfont_match): Likewise.
10278 (memq_no_quit): Delete.
10279
10280 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
10281 call of Ffont_xlfd_name.
10282
10283 * xfaces.c (struct table_entry, slant_table, weight_table)
10284 (swidth_table): Move to font.c.
10285
10286 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
10287 xassert are changed to font_assert. Delete many unused variables.
10288 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
10289 New variables.
10290 (struct table_entry): Move from xfaces.c and modified.
10291 (weight_table, slant_table, width_table): Move from xfaces.c and
10292 contents adjusted for the change of struct table_entry.
10293 (font_style_to_value, font_style_symbolic): Adjust for the
10294 format change of font_style_table.
10295 (font_parse_family_registry): Don't overwrite existing foundry and
10296 family of font_spec.
10297 (font_score): Fix calculation of diff for sizes.
10298 (font_sort_entites): Call font_add_log.
10299 (font_delete_unmatched): Return a newly created list.
10300 (font_list_entities): Fix previous change. Call font_add_log.
10301 (font_matching_entity, font_open_entity, font_close_entity):
10302 Call font_add_log.
10303 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
10304 (Finternal_set_font_style_table): Delete.
10305 (BUILD_STYLE_TABLE): New macro.
10306 (build_style_table): New function.
10307 (Vfont_log, font_log_env_checked): New variables.
10308 (font_add_log): New function.
10309 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
10310 Declare Lisp variables "font-weight-table", "font-slant-table",
10311 "font-width-table", and "font-log". Initialize font_style_table.
10312
10313 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
10314
10315 * xterm.c (x_set_frame_alpha): Move declarations before statements.
10316
10317 2008-05-21 Seiji Zenitani <zenitani@mac.com>
10318 Ryo Yoshitake <ryo@shiftmode.net>
10319
10320 * frame.c (Qalpha): Add a new frame parameter `alpha'.
10321 (Vframe_alpha_lower_limit): New variable.
10322 (x_set_alpha): New function.
10323
10324 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
10325
10326 * xfns.c (x-create-frame, Qalpha):
10327 Initialize the frame parameter `alpha'.
10328 * xterm.c (OPAQUE, OPACITY): New.
10329 (x_set_frame_alpha): New function.
10330 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
10331
10332 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
10333 * w32fns.c (w32_frame_parm_handlers): Likewise.
10334
10335 2008-05-20 Jason Rumney <jasonr@gnu.org>
10336
10337 * w32font.c (add_font_entity_to_list): Don't add non-opentype
10338 truetype fonts to opentype list.
10339
10340 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
10341
10342 * fontset.c (Ffontset_info): Doc fix.
10343 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
10344 <ignore-relative-composition>: Fix typos in docstrings.
10345
10346 * font.c (syms-of-font) <font-encoding-alist>:
10347 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
10348 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
10349 (Ffont_otf_alternates): Doc fixes.
10350
10351 2008-05-20 Kenichi Handa <handa@m17n.org>
10352
10353 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
10354 font.h through out the file.
10355 (FONT_DRIVERS): Rename from FONTOBJ.
10356 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
10357 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
10358
10359 * emacs.c (main): Call syms_of_font unconditionally.
10360
10361 * font.h (find_font_encoding): Extern it.
10362
10363 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
10364 fontset.c.
10365 (font_pixel_size)[! HAVE_WINDOW_SYSTEM]: Return 1.
10366 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
10367 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
10368 only when HAVE_WINDOW_SYSTEM is defined.
10369 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
10370 when HAVE_WINDOW_SYSTEM is defined.
10371
10372 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
10373 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
10374
10375 * xfaces.c: Include font.h unconditionally.
10376 (merge_face_ref, merge_face_vectors)
10377 (Finternal_set_lisp_face_attribute): Cancel the previous change.
10378
10379 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
10380
10381 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
10382 indirect_variable.
10383 * eval.c (lisp_indirect_variable): New fun.
10384 (Fuser_variable_p): Use it.
10385
10386 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
10387
10388 * lisp.h (indirect_variable):
10389 * data.c (indirect_variable, let_shadows_buffer_binding_p):
10390 Use Lisp_Symbol pointers rather than Lisp_Object.
10391 Adjust callers.
10392 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
10393 To this end, change calling-convention.
10394
10395 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
10396 if some non-hidden buffers are selected by string&pred.
10397
10398 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
10399
10400 * process.c (wait_reading_process_output): Always check status
10401 when in batch mode.
10402
10403 2008-05-19 Kenichi Handa <handa@m17n.org>
10404
10405 * font.c (font_list_entities): Fix handling of cache.
10406 (font_matching_entity): Likewise.
10407
10408 * ftfont.c (cs_iso8859_1): Delete.
10409 (ft_face_cache): New variable.
10410 (struct ftfont_info): New member fc_charset_idx.
10411 (ftfont_build_basic_charsets): Delete.
10412 (fc_charset_table): New variable.
10413 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
10414 . FC_CHARSET_IDX) as :font-entity property in the font entity.
10415 Callers changed.
10416 (ftfont_lookup_cache, ftfont_get_charset): New functions.
10417 (ftfont_spec_pattern): New argument fc_charset_idx.
10418 Check registry more rigidly. Change callers.
10419 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
10420 change of :font-entity property of the font.
10421
10422 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
10423 property of the font.
10424
10425 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
10426
10427 * coding.c (Fcoding_system_p): Rename argument to match docstring.
10428 (Funencodable_char_position, Fcheck_coding_systems_region)
10429 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
10430 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
10431 (Ffind_operation_coding_system, Fset_coding_system_priority)
10432 (Fcoding_system_eol_type): Doc fixes.
10433
10434 2008-05-17 Glenn Morris <rgm@gnu.org>
10435
10436 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
10437
10438 2008-05-16 Eli Zaretskii <eliz@gnu.org>
10439
10440 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
10441 and st_gid.
10442
10443 * frame.c (Fdelete_frame): Don't call font_update_drivers if
10444 HAVE_WINDOW_SYSTEM is not defined.
10445
10446 * xfaces.c (merge_face_ref, merge_face_vectors)
10447 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
10448 HAVE_WINDOW_SYSTEM is defined.
10449 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
10450
10451 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
10452
10453 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
10454
10455 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10456
10457 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
10458
10459 2008-05-15 Kenichi Handa <handa@m17n.org>
10460
10461 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
10462 preference.
10463
10464 2008-05-15 Glenn Morris <rgm@gnu.org>
10465
10466 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
10467
10468 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
10469
10470 * fns.c (init_fns): Don't initialize weak_hash_tables here.
10471 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
10472
10473 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
10474
10475 2008-05-15 Kenichi Handa <handa@m17n.org>
10476
10477 * ftfont.c (ftfont_list): Downcase family name to check generic
10478 families.
10479
10480 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
10481 font-spec for QCfont value.
10482
10483 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
10484 buffer. Check the return value of it.
10485
10486 2008-05-14 Jason Rumney <jasonr@gnu.org>
10487
10488 * w32term.c (w32_get_glyph_overhangs): Remove.
10489 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
10490
10491 2008-05-14 Kenichi Handa <handa@m17n.org>
10492
10493 * font.c (font_prop_validate): Make nil a valid value.
10494 (font_clear_cache): Check if the cached vector of entities is nil
10495 or not.
10496
10497 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10498
10499 * emacs.c (main_thread): Conditionalize on
10500 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
10501 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
10502
10503 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
10504 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
10505 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
10506
10507 2008-05-14 Kenichi Handa <handa@m17n.org>
10508
10509 * coding.c (detect_coding_iso_2022): Ignore a coding category that
10510 has no corresponding coding system.
10511
10512 2008-05-14 Jason Rumney <jasonr@gnu.org>
10513
10514 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
10515
10516 * w32font.h (w32font_open_internal): Update declaration.
10517
10518 * w32font.c (w32font_open_internal): Change last argument from
10519 w32font_info struct to font object. Fill in font object from
10520 font_entity. Get Outline metrics if possible. Use them to
10521 calculate underline position and thickness. Use xlfd name as name
10522 property. Don't set codepage.
10523 (w32font_open): Pass font_object to w32font_open_internal. Don't
10524 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
10525 (w32font_draw): Use s->font.
10526 (clear_cached_metrics): Don't clear non-existent blocks.
10527
10528 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
10529 font was not found.
10530 (x_draw_glyph_string): Use underline position and thickness from font.
10531
10532 * w32uniscribe.c (uniscribe_open): Pass font_object to
10533 w32font_open_internal.
10534
10535 2008-05-14 Kenichi Handa <handa@m17n.org>
10536
10537 These changes are to delete all legacy font-handling codes, and
10538 make Emacs use only font-backends.
10539
10540 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
10541 (frame.o, image.o, print.o): Depend on $(FONTSRC).
10542
10543 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
10544
10545 * charset.h (Vcharset_non_preferred_head)
10546 (Vcurrent_iso639_language): Extern them.
10547
10548 * charset.c (Vcharset_non_preferred_head): New variable.
10549 (Vcurrent_iso639_language): New variable.
10550 (syms_of_charset): Declare it as a Lisp variable.
10551 (char_charset): Don't check non preferred charsets. As a last
10552 resort, return charset_unicode.
10553 (Fset_charset_priority): Update Vcharset_non_preferred_head.
10554
10555 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
10556 conditionals. Don't check enable_font_backend. Delete all codes
10557 used only when USE_FONT_BACKEND is not defined.
10558
10559 * dispextern.h (struct glyph_string): Change type of `font' to
10560 `struct font *'.
10561 (struct glyph_string): New member underline_position and
10562 underline_thickness.
10563 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
10564 (struct face): Change type of `font' to `struct font *'. Remove
10565 members `font_name', `font_info_id'.
10566 (per_char_metric, encode_char): Delete externs.
10567 (calc_pixel_width_or_height): Adjust the prototype.
10568
10569 * emacs.c (enable_font_backend): Delete extern.
10570 (main): Don't set enable_font_backend. Don't check the command
10571 line argument "-disable-font-backend".
10572
10573 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
10574 (enum font_property_index): New members FONT_DPI_INDEX,
10575 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
10576 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
10577 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
10578 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
10579 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
10580 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
10581 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
10582 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
10583 (struct font_spec, struct font_entity): New structs.
10584 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
10585 (struct font): Many members from old "struct font_info" moved to
10586 here. Members font and entity deleted.
10587 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
10588 the new font-related objects.
10589 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
10590 (CHECK_FONT_GET_OBJECT): Likewise.
10591 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
10592 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
10593 (struct font_driver): New members case_sensitive anc check. Type
10594 of the member list and open changed.
10595 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
10596 (font_symbolic_width, font_find_object, font_get_spec)
10597 (font_set_lface_from_name): Delete extern.
10598 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
10599
10600 * font.c: Include <strings.h>.
10601 (enable_font_backend): Delete it.
10602 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
10603 (CHECK_VALIDATE_FONT_SPEC): Delete it.
10604 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
10605 (null_string): Delete it.
10606 (null_vector): Make it static.
10607 (font_family_alist): Delete it.
10608 (Qnormal): Extern it.
10609 (QCextra, QClanguage): Delete it.
10610 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
10611 (font_make_spec, font_make_entity, font_make_object)
10612 (font_intern_prop): Renamed from intern_downcase. Don't downcase
10613 the string. Callers changed.
10614 (font_pixel_size): Adjusted for the format change of font-related
10615 objects.
10616 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
10617 (font_style_to_value, font_style_symbolic): New function.
10618 (build_font_family_alist): Delete it.
10619 (font_registry_charsets): Use Fassoc_string instead of
10620 assq_no_quit.
10621 (font_prop_validate_symbol): Don't return null_string.
10622 (font_prop_validate_style): Adjusted for the change of
10623 style-related values in a font vector.
10624 (font_property_table): Delete entries for QClanguage and
10625 QCantialias, add entries for QCavgwidth.
10626 (get_font_prop_index): Delete the 2nd argument FROM.
10627 (font_prop_validate): Arguments changed.
10628 (font_put_extra): Adjusted for the change of font-related objects.
10629 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
10630 (font_parse_fcname, font_unparse_fcname)
10631 (font_prepare_composition): Likewise.
10632 (font_parse_family_registry): Renamed from font_merge_old_spec.
10633 (otf_open): Delete the 1st arg entity.
10634 (font_otf_capability): Adjusted for the above change.
10635 (font_score): New arg alternate_families. Adjusted for the change
10636 of font-related objects.
10637 (font_sort_entites): New arg best_only.
10638 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
10639 Delete them.
10640 (font_match_p): Check alternate families.
10641 (font_find_object): Delete it.
10642 (font_check_object): New function.
10643 (font_clear_cache): Adjusted for the change of font-related objects.
10644 (font_delete_unmatched): New arg.
10645 (font_list_entities): Call font_driver->list with a spec that
10646 doesn't specify style-related properties.
10647 (font_matching_entity): Arguments changed. Caller changed.
10648 (font_open_entity): Adjusted for the change of font-related objects.
10649 (font_close_object, font_has_char, font_encode_char)
10650 (font_get_name, font_get_spec): Likewise.
10651 (font_spec_from_name, font_clear_prop, font_update_lface):
10652 New functions.
10653 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
10654 (font_prepare_for_face, font_done_for_face, font_open_by_name)
10655 (font_at): Adjusted for the change of font-related objects.
10656 (font_range): New function.
10657 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
10658 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
10659 (Fcopy_font_spec, Fmerge_font_spec): New function.
10660 (Ffont_family_list): Renamed from list-families.
10661 (Finternal_set_font_style_table): Arguments changed.
10662 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
10663 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
10664 change of font-related objects.
10665 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
10666
10667 * fontset.h (struct font_info): Delete it. Most members go to
10668 struct font.
10669 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
10670 (enum FONT_SPEC_INDEX): Delete it.
10671 (font_info, list_fonts_func, load_font_func, query_font_func)
10672 (set_frame_fontset_func, find_ccl_program_func)
10673 (get_font_repertory_func, new_fontset_from_font_name): Delete
10674 externs.
10675 (fontset_from_font_name): Extern it.
10676 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
10677 (FONT_INFO_FROM_FACE): Deleted.
10678 (face_for_font): Adjust prototype.
10679
10680 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
10681 conditionals. Don't check enable_font_backend. Delete all codes
10682 used only when USE_FONT_BACKEND is not defined.
10683 (get_font_info_func, list_font_func, load_font_func)
10684 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
10685 (get_font_repertory_func): Delete them.
10686 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
10687 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
10688 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
10689 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
10690 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
10691 (fontset_compare_rfontdef): New function.
10692 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
10693 rfont-defs by qsort. Adjusted for the change of font-group vector.
10694 (load_font_get_repertory): Deleted.
10695 (fontset_find_font): Use new macros to ref/set elements of
10696 font-def and rfont-def.
10697 (fontset_font): Fix the timing of remembering that no font for C.
10698 (free_face_fontset): Do nothing if the face has no fontset.
10699 (face_suitable_for_char_p): Use new macros to ref/set elements of
10700 rfont-def.
10701 (face_for_char): Likewise. Call face_for_char with font_object.
10702 (fs_load_font): Delete. Delete #pragma surrounding it.
10703 (fs_query_fontset): Use strcasecmp instead of strcmp.
10704 (generate_ascii_font_name): Adjusted for the format change of
10705 font-spec.
10706 (Fset_fontset_font): Likewise. Use new macros to set elements of
10707 font-def.
10708 (Fnew_fontset): Use font_unparse_xlfd to generate
10709 FONTSET_ASCII (fontset).
10710 (new_fontset_from_font_name): Deleted.
10711 (fontset_from_font): Renamed from new_fontset_from_font. Check if
10712 a fontset is already created for the font. FIx updating of
10713 Vfontset_alias_alist.
10714 (fontset_ascii_font): Deleted.
10715 (Ffont_info): Adjusted for the format change of font-spec.
10716 (Finternal_char_font): Likewise.
10717 (Ffontset_info): Likewise.
10718 (syms_of_fontset): Don't check load_font_func.
10719
10720 * fns.c (internal_equal): Handle PREV_FONT.
10721
10722 * frame.h: Delete USE_FONT_BACKEND conditional.
10723
10724 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
10725 conditionals. Don't check enable_font_backend. Delete all codes
10726 used only when USE_FONT_BACKEND is not defined.
10727 (x_set_font): Call x_new_font, not x_new_fontset2.
10728 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
10729 already set for the frame.
10730
10731 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
10732 a font-entity by font_make_entity. Use font_intern_prop instead
10733 of intern_downcase. Use FONT_SET_STYLE to set a style-related
10734 font property. If a font is scalable, set avgwidth property to 0.
10735 Set font-entity property by font_put_extra.
10736 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
10737 (ffont_driver): Adjusted for the change of struct font_driver.
10738 (ftfont_spec_pattern): New function.
10739 (ftfont_list): Return a list, not vector.
10740 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
10741 (ftfont_list_family): Don't downcase names.
10742 (ftfont_free_entity): Deleted.
10743 (ftfont_open): Return a font-object. Adjusted for the change of
10744 struct font. Get underline_thickness and underline_position from
10745 font property. Don't update dpyinfo->smallest_font_height and
10746 dpyinfo->smallest_char_width.
10747 (ftfont_close): Don't free `struct font'.
10748 (ftfont_has_char): Adjusted for the format change of font-entity.
10749 (ftfont_encode_char, ftfont_text_extents): Likewise.
10750
10751 * ftxfont.c (ftxfont_list): Return a list, not vector.
10752 (ftxfont_open): Return a font-object. Adjusted for the change of
10753 struct font. Get underline_thickness and underline_position from
10754 font property. Don't update dpyinfo->smallest_font_height and
10755 dpyinfo->smallest_char_width.
10756 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
10757 (ftxfont_draw): Adjusted for the change of struct font.
10758
10759 * image.c (image_ascent): Don't include "charset.h". Include
10760 "character.h" and "font.h".
10761
10762 * lisp.h (enum pvec_type): New member PREV_FONT.
10763 (Fassoc_string): EXFUN it.
10764
10765 * print.c: Include font.h.
10766 (print_object): Handle font-related objects.
10767
10768 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
10769 conditionals. Don't check enable_font_backend. Delete all codes
10770 used only when USE_FONT_BACKEND is not defined.
10771 (handle_auto_composed_prop): Do nothing if it->f is not on a
10772 window system. Check how many following characters can be
10773 displayed by the same font.
10774 (calc_pixel_width_or_height): Type of the 4th arg is changed to
10775 'struct font *'.
10776 (get_char_face_and_encoding): Assign the whole encoding task to
10777 the `encode-char' method of a font driver.
10778 (fill_composite_glyph_string): Adjusted for the change of `struct
10779 face' and `struct glyph_string'.
10780 (fill_glyph_string): Likewise.
10781 (get_per_char_metric): Arguments changed.
10782 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
10783 and `struct glyph_string'.
10784 (produce_stretch_glyph, calc_line_height_property)
10785 (x_produce_glyphs): Likewise.
10786
10787 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
10788 conditionals. Don't check enable_font_backend. Delete all codes
10789 used only when USE_FONT_BACKEND is not defined. Use
10790 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
10791 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
10792 (Qp): Extern them.
10793 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
10794 Deleted.
10795 (struct font_name): Deleted.
10796 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
10797 (compare_fonts_by_sort_order): New function.
10798 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
10799 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
10800 Deleted.
10801 (Fx_family_fonts): Use font_list_entities, and sort fonts by
10802 compare_fonts_by_sort_order.
10803 (Fx_font_family_list): Call Ffont_family_list.
10804 (face_numeric_value, face_numeric_weight, face_numeric_slant)
10805 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
10806 (face_symbolic_slant, face_symbolic_swidth)
10807 (split_font_name_into_vector, build_font_name_from_vector)
10808 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
10809 (font_rescale_ratio, split_font_name, build_font_name)
10810 (free_font_names, sort_fonts, x_face_list_fonts)
10811 (face_font_available_p, sorted_font_list, cmp_font_names)
10812 (font_list_1, concat_font_list, font_list, remove_duplicates):
10813 Deleted.
10814 (Fx_list_fonts): Use Ffont_list.
10815 (LFACE_AVGWIDTH): Deleted.
10816 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
10817 by FONTP.
10818 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
10819 (set_lface_from_font_name): Delete it.
10820 (set_lface_from_font): Renamed from
10821 set_lface_from_font_and_fontset. Caller changed. Don't set
10822 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
10823 for face.
10824 (merge_face_vectors): Copy font-spec if necessary.
10825 Clear properties of the font-spec if necessary.
10826 (merge_face_ref): Clear properties of the font-spec if necessary.
10827 (Finternal_set_lisp_face_attribute): Likewise.
10828 (set_font_frame_param): Use font_load_for_lface to load a
10829 font-object, and call Fmodify_frame_parameters with it.
10830 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
10831 font name by Ffont_xlfd_name.
10832 (Finternal_lisp_face_attribute_values): Don't check QCweight,
10833 QCslant, and QCwidth.
10834 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
10835 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
10836 Compare fonts by EQ.
10837 (lookup_non_ascii_face): Deleted.
10838 (face_for_font): The 2nd argument changed.
10839 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
10840 Check atomic font properties by case insensitive.
10841 (realize_non_ascii_face): Set face->overstrike correctly.
10842 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
10843 (dump_realized_face): Get font name from
10844 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
10845
10846 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
10847 conditionals. Don't check enable_font_backend. Delete all codes
10848 used only when USE_FONT_BACKEND is not defined.
10849 (xic_create_xfontset): Original code deleted and renamed from
10850 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
10851 (x_make_gc): Don't set GCFont in GCs.
10852 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
10853 opened by "fixed".
10854 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
10855 find_ccl_program_func, query_font_func, set_frame_fontset_func,
10856 get_font_repertory_func.
10857
10858 * xfont.c: Include <stdlib.h> and "ccl.h".
10859 (struct xfont_info): New structure.
10860 (xfont_query_font): Deleted.
10861 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
10862 moved from xterm.c.
10863 (xfont_driver): Adjusted for the change of struct font_driver.
10864 (compare_font_names): New function.
10865 (xfont_list_pattern): Sort font names case insensitively. Make
10866 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
10867 (xfont_list): Return a list, not vector.
10868 (xfont_match): If the font doesn't have QCname property, generate
10869 a name from the other font properties.
10870 (xfont_open): Return a font-object. Adjusted for the change of
10871 struct font. Get underline_thickness and underline_position from
10872 font property. Don't update dpyinfo->smallest_font_height and
10873 dpyinfo->smallest_char_width.
10874 (xfont_close): Don't free struct font.
10875 (xfont_prepare_face): Adjusted for the change of struct font.
10876 (xfont_done_face): Deleted.
10877 (xfont_has_char): Adjusted for the change of struct font.
10878 (xfont_encode_char, xfont_draw): Likewise.
10879 (xfont_check): New function.
10880
10881 * xftfont.c (xftfont_list): Adjusted for the change of `list'
10882 callback function.
10883 (xftfont_match): Adjusted for the format change of font-entity.
10884 (xftfont_open): Adjusted for the format change of font-entity and
10885 font-object. Adjusted for the change of struct font. Return a
10886 font-object. Don't update dpyinfo->smallest_font_height and
10887 dpyinfo->smallest_char_width.
10888 (xftfont_close): Block input while calling XftFontClose.
10889 (xftfont_prepare_face): Don't block input while calling
10890 xftfont_get_colors. Adjusted for the change of struct font.
10891 (xftfont_shape): Return value of error case fixed.
10892
10893 * xrdb.c (x_load_resources): Don't setup a fontset resource.
10894
10895 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
10896 conditionals.
10897 (FONT_WIDTH): Return (f)->max_width.
10898 (struct x_display_info): Delete member `font'.
10899 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
10900 (x_find_ccl_program, x_get_font_repertory): Delete externs.
10901 (struct x_output): Change type of `font' to `struct font *'.
10902
10903 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
10904 conditionals. Don't check enable_font_backend. Delete all codes
10905 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
10906 (x_per_char_metric, x_encode_char): Deleted.
10907 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
10908 (x_compute_glyph_string_overhangs): Adjusted for the change of
10909 `struct face'.
10910 (x_draw_glyph_string_foreground)
10911 (x_draw_composite_glyph_string_foreground): Likewise.
10912 (x_draw_glyph_string): Likewise. Use font->underline_position and
10913 font->underline_thickness.
10914 (x_new_font): Renamed from x_new_fontset2.
10915 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
10916 (x_check_font): Call `check' method of a font driver.
10917 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
10918 (x_query_font, x_get_font_repertory): Deleted.
10919 (x_find_ccl_program): Renamed and moved to xfont.c.
10920 (x_redisplay_interface): Adjusted for the change of `struct
10921 redisplay_interface'.
10922
10923 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
10924 conditionals. Don't check enable_font_backend. Delete all codes
10925 used only when USE_FONT_BACKEND is not defined. Surround non-used
10926 code by "#ifdef OLD_FONT" and "endif".
10927 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
10928
10929 * w32font.h (struct w32font_info): New member.
10930 (FONT_COMPAT): New macro.
10931 (w32font_open_internal): Prototype adjusted.
10932
10933 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
10934 OLD_FONT" and "endif".
10935
10936 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
10937 conditionals. Don't check enable_font_backend. Delete all codes
10938 used only when USE_FONT_BACKEND is not defined.
10939 (w32font_open): Return a font-object. Make a font-object by
10940 font_make_object. Adjusted for the change of struct w32font_info.
10941 (w32font_close): Don't free struct font. Adjusted for the change
10942 of struct w32font_info.
10943 (w32font_encode_char, w32font_text_extents, w32font_draw):
10944 Adjusted for the change of struct w32font_info.
10945 (w32font_draw): Likewise.
10946 (w32font_list_internal): Return a list, not vector.
10947 (w32font_open_internal): Change the 4th arg to font-object.
10948 Adjusted for the change of struct w32font_info and font-object format.
10949 (add_font_name_to_list): Don't downcase names.
10950 (w32_enumfont_pattern_entity): Make a font-entity by
10951 font_make_entity. Adjusted for the format change of font-entity.
10952 Use FONT_SET_STYLE to set a style-related font property. If a
10953 font is scalable, set avgwidth property to 0. Set font-entity
10954 property by font_put_extra.
10955 (font_matches_spec): Adjusted for the format change of font-entity.
10956 (w32_weight_table, w32_decode_weight): New variables.
10957 (w32_encode_weight): New function.
10958 (fill_in_logfont): Adjusted for the format change of font-spec.
10959 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
10960 weight value.
10961 (w32font_driver): Adjusted for the change of struct font_driver.
10962
10963 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
10964 conditionals. Don't check enable_font_backend. Surround non-used
10965 code by "#ifdef OLD_FONT" and "endif".
10966 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
10967 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
10968
10969 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
10970 conditionals. Don't check enable_font_backend. Delete all codes
10971 used only when USE_FONT_BACKEND is not defined. Surround non-used
10972 code by "#ifdef OLD_FONT" and "endif".
10973
10974 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
10975 (uniscribe_open): Return value changed to font-object.
10976 Adjusted for the format change of font-object.
10977 (uniscribe_otf_capability): Adjusted for the change of struct font.
10978 (add_opentype_font_name_to_list): Don't downcase names.
10979 (uniscribe_font_driver): Adjusted for the change of struct
10980 font_driver.
10981
10982 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
10983
10984 * dispnew.c (update_frame_1): Check if tty output is still valid
10985 before flushing it.
10986
10987 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
10988
10989 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
10990 to Gtk+ menus.
10991
10992 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
10993
10994 * dired.c (file_name_completion): Tweak the code so as to always do it
10995 in a single pass. Tighten the scope of some variables.
10996
10997 * dired.c (Qdefault_directory): New var.
10998 (file_name_completion): Use it instead of Fexpand_file_name.
10999 (syms_of_dired): Initialize it.
11000
11001 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
11002
11003 * fileio.c (double_dollars): Remove dead code.
11004
11005 2008-05-10 Eli Zaretskii <eliz@gnu.org>
11006
11007 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
11008 Mention w32-get-true-file-attributes in doc string.
11009
11010 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
11011
11012 2008-05-09 Glenn Morris <rgm@gnu.org>
11013
11014 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
11015 2008-04-23.
11016
11017 2008-05-09 Eli Zaretskii <eliz@gnu.org>
11018
11019 Support for reporting owner and group of each file on MS-Windows:
11020 * dired.c (stat_uname, stat_gname): New functions, with special
11021 implementation for w32.
11022 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
11023
11024 * w32.c: Rename the_passwd_* to dflt_passwd_*.
11025 (dflt_group_name): New static variable.
11026 (dflt_group): Rename from the_group.
11027 (init_user_info): Init dflt_group fields. Get user's group name
11028 from LookupAccountSid.
11029 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
11030 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
11031 New initialization states.
11032 (globals_of_w32): Initialize them to zero. Initialize the default
11033 group name to "None".
11034 (GetFileSecurity_Name): New global var, the name of the function
11035 to call for GetFileSecurity.
11036 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
11037 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
11038 (get_file_security, get_security_descriptor_owner)
11039 (get_security_descriptor_group, is_valid_sid)
11040 (get_file_security_desc, get_rid, get_name_and_id)
11041 (get_file_owner_and_group): New functions.
11042 (stat): Use get_file_security_desc and get_file_owner_and_group to
11043 report the owner and primary group of each file. Don't ignore the
11044 high 32 bits of file's size, now that st_size is 64-bit wide.
11045 Fix test when to get true file attributes.
11046 (init_user_info): Use get_rid instead of equivalent inline code.
11047 (fstat): Don't ignore the high 32 bits of file's size.
11048
11049 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
11050
11051 * image.c (png_load): Use correct bit-depth for setting background
11052 color.
11053
11054 2008-05-08 Eli Zaretskii <eliz@gnu.org>
11055
11056 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
11057 epa-hook.elc.
11058
11059 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
11060
11061 * font.c (Ffont_match_p): Don't use `iff' in docstring.
11062
11063 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
11064
11065 * macfns.c (Fx_create_frame): Make a copy of frame parameters
11066 because the original parameters are in pure storage now.
11067 (mac_window): Remove unused params. Update callers.
11068
11069 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11070
11071 * lread.c (substitute_object_recurse): Use lower-level primitives.
11072 Don't signal errors when traversing sub-char-tables.
11073 Don't loop over all the possible characters when traversing char-tables.
11074
11075 * print.c (print_preprocess): Add sub-char-tables to the print-table,
11076 just like we do in print.c.
11077
11078 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11079
11080 * minibuf.c (Ftry_completion): Remove code left over from when we used
11081 scmp instead of Fcompare_strings.
11082
11083 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
11084
11085 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
11086
11087 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11088
11089 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
11090 Create bitmap context in native byte order.
11091
11092 * macterm.c (XDrawLine)
11093 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
11094 context in native byte order.
11095
11096 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11097
11098 * config.in: Regenerate.
11099
11100 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
11101 New definitions for Image I/O support.
11102 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
11103 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
11104 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
11105 (mac_data_provider_release_data, image_load_image_io)
11106 [USE_MAC_IMAGE_IO]: New functions.
11107 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
11108 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
11109 (init_image_func_pointer) [MAC_OSX]: Remove function.
11110 (image_load_quartz2d) [MAC_OSX]: Check availability of
11111 CGImageCreateWithPNGDataProvider at compile time.
11112 Use lowercase `false' for boolean constant.
11113 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
11114 Use image_load_image_io.
11115 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
11116 Don't check MyCGImageCreateWithPNGDataProvider.
11117 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
11118 Don't call init_image_func_pointer.
11119
11120 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
11121
11122 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
11123 Make variable non-static.
11124 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
11125 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
11126
11127 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
11128 (RED_FROM_ULONG): Mask off higher bits.
11129 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
11130
11131 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
11132 Include AvailabilityMacros.h.
11133 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
11134 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
11135
11136 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11137
11138 * chartab.c (Fset_char_table_range): If range is t, really set all
11139 chars to that value.
11140
11141 2008-05-03 Eli Zaretskii <eliz@gnu.org>
11142
11143 * dired.c (Ffile_attributes): Don't allow the device number become
11144 negative.
11145
11146 2008-05-02 Daiki Ueno <ueno@unixuser.org>
11147
11148 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
11149
11150 2008-05-02 Juri Linkov <juri@jurta.org>
11151
11152 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
11153 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
11154 DEFAULT argument as a list of default values in docstrings.
11155
11156 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
11157
11158 * puresize.h (BASE_PURESIZE): Increase to 1210000.
11159
11160 2008-05-01 Martin Rudalics <rudalics@gmx.at>
11161
11162 * dispnew.c (change_frame_size_1): Preserve small windows when
11163 shrinking frames by calling set_window_height|width with third
11164 arg 2.
11165
11166 * window.h (struct window): Replace field too_small_ok by field
11167 resize_proportionally.
11168
11169 * window.c (make_window): Initialize resize_proportionally.
11170 (enlarge_window): Temporarily set resize_proportionally to make
11171 sure that shrink_windows does scale the window proportionally.
11172 (shrink_windows): When window has resize_proportionally set try
11173 to shrink it proportionally by stealing from other windows.
11174 (struct saved_window, Fset_window_configuration)
11175 (compare_window_configurations): Handle resize_proportionally.
11176 (WINDOW_TOTAL_SIZE): New macro.
11177 (window_min_size, shrink_windows, size_window): Use it.
11178 (check_min_window_sizes): Remove. Invalid values of
11179 window-min-height|width are handled by window_min_size_2 now.
11180 (size_window, Fsplit_window, enlarge_window)
11181 (adjust_window_trailing_edge, grow_mini_window): Don't call
11182 check_min_window_sizes.
11183 (window_min_size_2, window_min_size_1, window_min_size):
11184 New argument safe_p for retrieving "safe" minimum sizes.
11185 (Fdisplay_buffer, Fsplit_window, enlarge_window)
11186 (adjust_window_trailing_edge, grow_mini_window):
11187 Adjust arguments of window_min_size... functions.
11188 (shrink_windows): Argument min_size removed. New argument
11189 safe_p allows shrinking windows to their safe minimum sizes.
11190 Calculate minimum size and decide whether a window shall be
11191 deleted for each window individually.
11192 (size_window): When nodelete_p equals 2, tell shrink_windows to
11193 delete windows only if their new minimum size is no more safe.
11194 (shrink_window_lowest_first): Call window_min_size_1 to make
11195 sure to preserve modeline of bottom-most window when resizing
11196 the minibuffer.
11197 (Fset_window_configuration, Fcurrent_window_configuration)
11198 (compare_window_configurations): Do not handle
11199 window-min-height|width any more.
11200 (syms_of_window): Clarify window-min-height|width doc-strings.
11201
11202 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
11203
11204 * dired.c (file_name_completion): Fix up the encoding/decoding issue
11205 some more. Copy some of the code from Ftry_completions.
11206 Remove special case code that dates back to initial revision when the
11207 slash was only added when necessary and that can't trigger nowadays.
11208
11209 2008-04-27 Kenichi Handa <handa@m17n.org>
11210
11211 * font.c (font_prop_validate): Signal `error' instead of `font'.
11212
11213 2008-04-29 Jason Rumney <jasonr@gnu.org>
11214
11215 * w32fns.c (Fw32_battery_status): New defun.
11216 (syms_of_w32fns): Defsubr it.
11217
11218 2008-04-28 Andreas Schwab <schwab@suse.de>
11219
11220 * dired.c (file_name_completion): Fix another mixing of encoded
11221 and decoded names.
11222
11223 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
11224
11225 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
11226
11227 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
11228
11229 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
11230
11231 2008-04-27 Andreas Schwab <schwab@suse.de>
11232
11233 * dired.c (file_name_completion): Fix inappropriate mixing of
11234 encoded and decoded names.
11235
11236 * xterm.c (XTread_socket): Fix use of uninitialized variable.
11237
11238 * puresize.h (BASE_PURESIZE): Increase to 1200000.
11239
11240 2008-04-26 Eli Zaretskii <eliz@gnu.org>
11241
11242 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
11243 2008-03-31, it's not needed anymore with `struct stat' definition
11244 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
11245 for the same reasons.
11246
11247 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
11248
11249 * m/sparc.h: Additional redefinitions for GNU/Linux.
11250
11251 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11252
11253 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
11254 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
11255 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
11256 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
11257 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
11258 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
11259 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
11260 Likewise.
11261
11262 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
11263 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
11264 (mac_ax_number_of_characters): Add externs.
11265 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
11266 [USE_MAC_TSM]: Likewise.
11267 (mac_handle_text_input_event) [MAC_OSX]:
11268 Handle kEventTextInputOffsetToPos for no active input area case.
11269 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
11270 (mac_handle_document_access_event)
11271 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
11272 (install_application_handler) [MAC_OSX]: Register handlers for
11273 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
11274 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
11275 Register mac_handle_document_access_event.
11276
11277 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
11278 Make functions non-static.
11279
11280 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
11281
11282 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
11283 (read_file_name_completion_ignore_case, insert_default_directory)
11284 (Qdefault_directory): Move to minibuffer.el.
11285 (Fread_file_name): Call the new `read-file-name' instead.
11286
11287 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11288
11289 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
11290 Make function non-static.
11291 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
11292 Remove function.
11293 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
11294 Move to mactoolbox.c.
11295 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
11296
11297 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
11298 (mac_rect_make): New macro.
11299
11300 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
11301 instead of float.
11302 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
11303 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
11304 (XSetBackground) [USE_CG_DRAWING]: Likewise.
11305 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
11306 CGRectMake.
11307 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
11308 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
11309 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
11310 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
11311 instead of WindowRef in argument type.
11312 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
11313 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
11314 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
11315 instead of DISPLAY. All uses changed.
11316 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
11317 (x_calc_absolute_position): Simplify so as not to use
11318 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
11319
11320 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
11321 instead of WindowRef in argument type.
11322 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
11323 [TARGET_API_MAC_CARBON]: Remove externs.
11324 (create_apple_event, mac_event_parameters_to_lisp)
11325 [TARGET_API_MAC_CARBON]: Add externs.
11326
11327 * mactoolbox.c (Vmac_ts_script_language_on_focus)
11328 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
11329 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
11330 is clicked.
11331 (x_activate_menubar): Remove extern for saved_menu_event_location.
11332 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
11333 Move from mac.c.
11334
11335 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11336
11337 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
11338 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
11339
11340 2008-04-23 Jason Rumney <jasonr@gnu.org>
11341
11342 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
11343 attributes only for local files.
11344
11345 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
11346 default to Qlocal.
11347
11348 2008-04-22 Juri Linkov <juri@jurta.org>
11349
11350 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
11351 read-buffer-to-switch instead of using the letter "B".
11352
11353 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
11354
11355 * fileio.c (Qdefault_directory): New variable.
11356 (Fread_file_name): Use it to pass `dir' to the completion functions.
11357
11358 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
11359
11360 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
11361
11362 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
11363
11364 * keyboard.c (Vpre_help_message): Remove.
11365 (show_help_echo): Remove default C code.
11366
11367 * dired.c (directory_files_internal, file_name_completion):
11368 Only call ENCODE_FILE if the string is indeed decoded.
11369
11370 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
11371
11372 * Makefile.in (TOOLKIT_DEFINES): Remove.
11373 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
11374
11375 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11376
11377 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
11378 (mactoolbox.o): New target.
11379
11380 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
11381 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
11382
11383 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
11384 Use mac_set_frame_window_background instead of XSetWindowBackground.
11385 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
11386 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
11387 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
11388 instead of SetWindowTitleWithCFString.
11389 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
11390 Move function to mactoolbox.c.
11391 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
11392 Use mac_set_window_modified instead of SetWindowModified.
11393 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
11394 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
11395 (Fx_focus_frame): Use mac_front_non_floating_window instead of
11396 FrontNonFloatingWindow. Use mac_activate_window instead of
11397 ActivateWindow. Use mac_active_non_floating_window instead of
11398 ActiveNonFloatingWindow.
11399 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
11400 Use mac_show_hourglass and mac_hide_hourglass.
11401 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
11402 instead of GetGlobalMouse.
11403 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
11404 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
11405 Use mac_bring_window_to_front instead of BringToFront.
11406 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
11407 mactoolbox.c.
11408 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
11409 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
11410 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
11411 mactoolbox.c.
11412
11413 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
11414 (XtPointer): Move typedef from macmenu.c.
11415 (enum button_type): Move enum from macmenu.c.
11416 (widget_value): Move typedef from macmenu.c.
11417 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
11418 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
11419 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
11420 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
11421 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
11422 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
11423 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
11424 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
11425 (Selection): Move typedef from macselect.c.
11426 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
11427 macterm.c.
11428 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
11429 (mac_is_window_collapsed, mac_bring_window_to_front)
11430 (mac_send_window_behind, mac_hide_window, mac_show_window)
11431 (mac_collapse_window, mac_front_non_floating_window)
11432 (mac_active_non_floating_window, mac_activate_window)
11433 (mac_move_window_structure, mac_move_window, mac_size_window)
11434 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
11435
11436 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
11437 (enum mac_menu_kind): Move enum to mactoolbox.c.
11438 (min_menu_id): Move variable to mactoolbox.c.
11439 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
11440 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
11441 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
11442 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
11443 [TARGET_API_MAC_CARBON]: Likewise.
11444 (XtPointer): Move typedef to macgui.h.
11445 (enum button_type): Move enum to macgui.h.
11446 (widget_value): Move typedef to macgui.h.
11447 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
11448 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
11449 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
11450 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
11451 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
11452 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
11453 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
11454 (popup_activated_flag): Make variable non-static.
11455 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
11456 (add_menu_item, fill_menu, dispose_menus):
11457 Move functions to mactoolbox.c.
11458 (restore_show_help_function, menu_target_item_handler)
11459 (install_menu_target_item_handler, mac_handle_dialog_event)
11460 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
11461 [TARGET_API_MAC_CARBON]: Likewise.
11462 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
11463 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
11464 (find_and_call_menu_selection, name_is_separator): Make function
11465 non-static.
11466 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
11467 to mactoolbox.c.
11468 (set_frame_menubar): Don't call install_menu_quit_handler.
11469 (menu_item_selection): New variable.
11470 (mac_menu_show): Use create_and_show_popup_menu.
11471 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
11472 selection but set variable menu_item_selection. All uses changed.
11473 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
11474 Call install_menu_quit_handler. Move to mactoolbox.c.
11475
11476 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
11477 (Selection): Move typedef to macgui.h.
11478 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
11479 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
11480 Make variables non-static.
11481 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
11482 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
11483 Make functions non-static.
11484 (Vmac_service_selection) [MAC_OSX]: Likewise.
11485 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
11486 (mac_valid_selection_target_p, mac_clear_selection)
11487 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
11488 (mac_put_selection_value, mac_selection_has_target_p)
11489 (mac_get_selection_value, mac_get_selection_target_list)
11490 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
11491 Move functions to mactoolbox.c.
11492 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
11493 Likewise.
11494 (copy_scrap_flavor_data, mac_handle_service_event)
11495 (install_service_handler) [MAC_OSX]: Likewise.
11496 (syms_of_macselect) <Vmac_dnd_known_types>:
11497 Use mac_dnd_default_known_types.
11498
11499 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
11500 Move to mactoolbox.c.
11501 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
11502 (Fx_selection_owner_p): Add EXFUN.
11503 (install_window_handler, remove_window_handler, XSetWindowBackground):
11504 Remove externs.
11505 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
11506 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
11507 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
11508 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
11509 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
11510 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
11511 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
11512 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
11513 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
11514 (create_and_show_popup_menu, mac_get_selection_from_symbol)
11515 (mac_valid_selection_target_p, mac_clear_selection)
11516 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
11517 (mac_put_selection_value, mac_selection_has_target_p)
11518 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
11519 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
11520 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
11521 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
11522 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
11523 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
11524 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
11525 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
11526 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
11527
11528 * mactoolbox.c: New file.
11529
11530 2008-04-18 Jason Rumney <jasonr@gnu.org>
11531
11532 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
11533
11534 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
11535
11536 * character.c (Fmultibyte_char_to_unibyte):
11537 Return latin1 chars unchanged.
11538
11539 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
11540 relocated if it points to `name'.
11541
11542 2008-04-17 Kenichi Handa <handa@m17n.org>
11543
11544 * data.c (Faset): Allow setting a multibyte character in an
11545 ASCII-only unibyte string.
11546
11547 * lisp.h (STRING_SET_MULTIBYTE): New macro.
11548
11549 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
11550
11551 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
11552 done in config.h.
11553
11554 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
11555
11556 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
11557 (Fchar_direction): Add usage in the docstring.
11558
11559 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
11560
11561 * keyboard.c (read_key_sequence): Remove always-true checks.
11562
11563 2008-04-14 Jason Rumney <jasonr@gnu.org>
11564
11565 * w32font.c (w32font_open_internal): Set max_bounds.descent in
11566 compatibility struct, for better underline positioning.
11567
11568 2008-04-13 David Hansen <david.hansen@gmx.net>
11569
11570 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
11571 string.
11572
11573 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
11574
11575 * m/hp800.h (XUINT, XSET): Remove.
11576
11577 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
11578
11579 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
11580 previous change.
11581
11582 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
11583
11584 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
11585 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
11586
11587 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11588
11589 * keymap.h (map_keymap_canonical): Declare.
11590 * xmenu.c (single_keymap_panes): Use it.
11591
11592 2008-04-11 Glenn Morris <rgm@gnu.org>
11593
11594 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
11595 set the target's value to that of the alias.
11596
11597 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11598
11599 * term.c (set_tty_color_mode): Left over typo.
11600
11601 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
11602
11603 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
11604 only after check for file name handler functions. Signal, when
11605 native functionality is not supported.
11606 (syms_of_fileio): Declare it unconditionally.
11607
11608 2008-04-10 Jason Rumney <jasonr@gnu.org>
11609
11610 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
11611 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
11612
11613 * w32.c (logon_network_drive): Also logon to remote drives that
11614 are mapped to drive letters.
11615
11616 2008-04-10 Glenn Morris <rgm@gnu.org>
11617
11618 * xdisp.c (truncate-partial-width-windows): Doc fix.
11619
11620 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
11621
11622 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
11623 Move functions to minibuffer.el.
11624 (syms_of_fileio): Don't declare them.
11625
11626 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
11627
11628 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
11629 (syms_of_minibuf): Remove its initialization.
11630
11631 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
11632
11633 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
11634
11635 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
11636
11637 2008-04-09 Jason Rumney <jasonr@gnu.org>
11638
11639 * makefile.w32-in (distclean): Delete makefile too.
11640 (maintainer-clean): New target.
11641
11642 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
11643
11644 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
11645 for new font backend and composite cases.
11646
11647 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
11648
11649 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
11650 Most of the code moved to run_timers.
11651 (do_pending_atimers): Call run_timers.
11652 (run_timers): New function.
11653
11654 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
11655 run atimers.
11656
11657 * process.c (wait_reading_process_output): The same as above.
11658
11659 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
11660
11661 * minibuf.c (last_exact_completion): Remove variable.
11662 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
11663 (complete_and_exit_1, complete_and_exit_2)
11664 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
11665 (Fdisplay_completion_list, display_completion_list_1)
11666 (Fminibuffer_completion_help, Fself_insert_and_exit)
11667 (Fexit_minibuffer, Fminibuffer_message): Move functions to
11668 minibuffer.el.
11669 (syms_of_minibuf): Remove corresponding initializations.
11670
11671 * keyboard.c (Qdeactivate_mark): New var.
11672 (command_loop_1): Use it to call `deactivate-mark'.
11673 (syms_of_keyboard): Initialize it.
11674
11675 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
11676 to another frame.
11677 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
11678 Don't call set_tty_color_mode.
11679 (store_frame_param): Reset previous_frame rather than call
11680 set_tty_color_mode.
11681 * term.c (set_tty_color_mode): Rewrite.
11682 * dispextern.h (set_tty_color_mode): New type.
11683 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
11684
11685 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
11686
11687 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
11688 for generic chars, which do not exist any more in emacs-unicode.
11689
11690 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
11691
11692 * coding.c (detect_coding_emacs_mule)
11693 (Ffind_operation_coding_system): Fix typo.
11694
11695 2008-04-08 Jason Rumney <jasonr@gnu.org>
11696
11697 * w32uniscribe.c (SNAME): Extract only symbol name.
11698
11699 * w32font.h (struct w32_metric_cache): New struct.
11700 (w32font_info): Use it.
11701 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
11702 (CACHE_BLOCKSIZE): New constants.
11703
11704 * w32font.c (Qja, Qko, Qzh): New symbols.
11705 (syms_of_w32font): Initialise them.
11706 (font_matches_spec): Use them to filter by language.
11707 (recompute_cached_metrics): Remove function.
11708 (compute_metrics, clear_cached_metrics): New functions.
11709 (w32font_encode_char): Use them to manage metric cache.
11710 (w32font_text_extents): Cache metrics for all glyphs on demand.
11711 Delay converting glyph indices to WORD until needed.
11712 (w32font_open_internal): Initialize metric cache to empty.
11713 (registry_to_w32_charset): Charset should always be a symbol.
11714 (fill_in_logfont, list_all_matching_fonts): Family should
11715 always be a symbol.
11716
11717 2008-04-06 Jason Rumney <jasonr@gnu.org>
11718
11719 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
11720 Give up if glyph indices not supported. Use uniscribe obtained
11721 ABC widths for individual metrics. Map glyph clusters back to
11722 characters using fClusterStart flag. Return number of glyphs
11723 produced, not chars processed.
11724 (uniscribe_shape): Map char at FROM to current glyph.
11725
11726 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11727
11728 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
11729 Use SetMenuItemHierarchicalMenu.
11730
11731 2008-04-05 Jason Rumney <jasonr@gnu.org>
11732
11733 * image.c (pbm_load): Allow color values up to 65535.
11734 Throw an error if max_color_idx is outside the supported range.
11735 Report an error when image size is invalid.
11736 Read two bytes at a time when raw images have max_color_idx above 255.
11737
11738 2008-04-05 Eli Zaretskii <eliz@gnu.org>
11739
11740 * w32.c (readdir): If FindFirstFile/FindNextFile return in
11741 cFileName a file name that includes `?' characters, use the 8+3
11742 alias in cAlternateFileName instead.
11743
11744 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
11745
11746 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
11747 append "CCL: Quitted" when the CCL program is quitted.
11748 (setup_ccl_program): Initialize ccl->quit_silently to zero.
11749
11750 * ccl.h (struct ccl_program): New member quit_silently.
11751
11752 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
11753
11754 * search.c (compile_pattern_1): Treat non-nil and non-string of
11755 search-spaces-regexp as nil.
11756
11757 * minibuf.c (Fassoc_string): Tweak docstring.
11758
11759 2008-04-05 Eli Zaretskii <eliz@gnu.org>
11760
11761 * dired.c (Ffile_attributes): Support inode numbers wider than 32
11762 bits. Remove ugly WINDOWSNT-specific kludge introduced on
11763 2008-03-14 to force inode be positive.
11764
11765 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
11766 _S_* ones, since we now use our own sys/stat.h.
11767 (stat, fstat): Don't mangle the inode number.
11768 (init_user_info): Don't restrict UID and GID to 0-60000 range.
11769
11770 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
11771
11772 * frame.h (struct frame): Give one more bit to `visible' since we use
11773 values larger than 1 to indicate obscured frames on ttys.
11774
11775 * keymap.c (Qkeymap_canonicalize): New var.
11776 (Fmap_keymap_internal): New fun.
11777 (describe_map): Use keymap-canonicalize.
11778
11779 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
11780 (Fundo_boundary): Set them.
11781 (syms_of_undo): Initialize them.
11782 (record_point): Use them instead of last_point_position*.
11783 (last_undo_buffer): Change type.
11784
11785 2008-04-04 Jason Rumney <jasonr@gnu.org>
11786
11787 * w32font.c (w32font_text_extents): Use font's ascent and descent.
11788 (recompute_cached_metrics): Don't set ascent and descent per char.
11789
11790 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
11791 (uniscribe_check_otf): Add GC protection before consing.
11792 Rearrange loop for counting features.
11793
11794 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
11795
11796 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
11797 buffer with byte-size of source buffer.
11798
11799 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
11800
11801 * callint.c (Fcall_interactively): Handle temporary region even
11802 when shift-select-mode is off.
11803
11804 2008-04-03 Jason Rumney <jasonr@gnu.org>
11805
11806 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
11807
11808 2008-04-03 Kenichi Handa <handa@m17n.org>
11809
11810 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
11811 (CATEGORY_MASK_UTF_16): Likewise.
11812 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
11813 binary file.
11814 (detect_coding): Add null-byte detection for a binary file.
11815 (detect_coding_system): Likewise.
11816
11817 2008-04-03 Jason Rumney <jasonr@gnu.org>
11818
11819 * w32uniscribe.c: New file.
11820
11821 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
11822
11823 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
11824
11825 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
11826 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
11827 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
11828 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
11829 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
11830 (Qphonetic): New symbols.
11831 (syms_of_w32font): Initialize them.
11832 (font_supported_scripts): Use them.
11833 (w32font_list_family): List all charsets.
11834 (w32font_text_extents, recompute_cached_metrics): Fix metric
11835 calculations.
11836 (w32_enumfont_pattern_entity): Make full_type a DWORD.
11837 Give opentype fonts their own format.
11838 (font_matches_spec): New arguments backend and logfont.
11839 Handle :otf spec for uniscribe backend.
11840 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
11841 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
11842
11843 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
11844 font backend.
11845 (globals_of_w32fns): Initialize uniscribe font backend.
11846
11847 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
11848 dependencies.
11849 (w32uniscribe.$(O)): New file to build.
11850 (FONT_OBJ): Include w32uniscribe.$(O).
11851 (LIBS): Add uniscribe libraries.
11852
11853 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
11854
11855 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
11856
11857 * callint.c (Vshift_select_mode): New var.
11858 (Finteractive): Document new ^ spec.
11859 (Fcall_interactively): Call handle-shift-selection if the ^ spec
11860 is present.
11861
11862 * keyboard.c (Vthis_command_keys_shift_translated): New var.
11863 (command_loop_1): Avoid running the direct display versions of
11864 forward-char and backward-char if shift-selection may occur.
11865 (read_key_sequence): Set Vthis_command_keys_shift_translated if
11866 shift-translation takes place.
11867
11868 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
11869 avoid clobbering by define-minor-mode.
11870
11871 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
11872 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
11873
11874 * syntax.c (Fforward_word): Add ^ interactive spec.
11875
11876 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
11877 (Fscroll_right): Add ^ interactive spec.
11878
11879 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
11880
11881 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
11882
11883 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
11884
11885 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
11886
11887 2008-03-31 Juri Linkov <juri@jurta.org>
11888
11889 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
11890
11891 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
11892
11893 * gtkutil.c (xg_set_geometry): Fix indentation.
11894 (xg_resize_outer_widget): Remove.
11895 (x_wm_size_hint_off): Fix indentation.
11896 (xg_frame_set_char_size): Call flush_and_sync after
11897 gtk_window_resize.
11898 (x_wm_set_size_hint): Pass NULL as geometry window to
11899 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
11900 Add menu bar and tool bar height to base height.
11901 (xg_update_frame_menubar, free_frame_menubar)
11902 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
11903 (update_frame_tool_bar, free_frame_tool_bar):
11904 Change xg_resize_outer_widget to xg_frame_set_char_size.
11905
11906 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
11907
11908 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
11909 (Fdbus_call_method): New parameter TIMEOUT.
11910 (dbus-send-signal): Optimize UNGCPRO call.
11911
11912 2008-03-29 Juri Linkov <juri@jurta.org>
11913
11914 * window.c (Fdisplay_buffer): Move call to
11915 Vsplit_window_preferred_function out of conditions that check
11916 if window is eligible for vertical splitting.
11917 When Vsplit_window_preferred_function is non-nil, call it and use
11918 its non-nil return value as window. Otherwise, continue doing
11919 vertical splitting using Fsplit_window with arg horflag=nil.
11920 (syms_of_window) <Vsplit_window_preferred_function>: Change the
11921 default value from `split-window' to nil.
11922
11923 2008-03-29 Juri Linkov <juri@jurta.org>
11924
11925 * callint.c (Fcall_interactively): Revert 2008-03-16 change
11926 for interactive code letters 'b' and 'B'.
11927
11928 2008-03-29 Eli Zaretskii <eliz@gnu.org>
11929
11930 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
11931 multibyte string.
11932
11933 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
11934
11935 * keyboard.c (pending_funcalls): New var.
11936 (timer_check): Run it.
11937 (syms_of_keyboard): Initialize it.
11938 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
11939 (Vdelete_terminal_functions): New vars.
11940 (syms_of_terminal): Initialize them.
11941 (Fdelete_terminal): Run delete-terminal-functions.
11942 * xdisp.c (safe_eval): Rewrite.
11943 (safe_call2): New fun.
11944 * frame.c (Qdelete_frame_functions): New var.
11945 (syms_of_frame): Initialize it.
11946 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
11947 * lisp.h (safe_call2, pending_funcalls): Declare.
11948
11949 2008-03-28 Andreas Schwab <schwab@suse.de>
11950
11951 * indent.c (Fmove_to_column): Move declaration before statements.
11952
11953 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
11954
11955 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
11956 (struct frame): Use bit fields for boolean vars.
11957
11958 * process.c (server_accept_connection): Simplify naming.
11959 (emacs_get_tty_pgrp): Use SDATA.
11960
11961 * coding.c (decode_coding_object): Fix last change.
11962
11963 2008-03-27 Jason Rumney <jasonr@gnu.org>
11964
11965 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
11966
11967 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
11968
11969 * charset.c (Fdefine_charset_internal): Change the way of
11970 registering charsets in Vcharset_order_list.
11971 (syms_of_charset): Make the charset `eight-bit' supplementary.
11972
11973 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
11974
11975 * regex.c (EXTEND_BUFFER): Change order of pointer addition
11976 operations, to avoid having the difference between pointers
11977 overflow.
11978
11979 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11980
11981 * indent.c (check_display_width): New fun.
11982 (scan_for_column): Use it.
11983
11984 * data.c (syms_of_data): Mark most-positive-fixnum and
11985 most-negative-fixnum as constants.
11986
11987 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
11988
11989 * indent.c (scan_for_column): Extract from current_column_1.
11990 Merge with the same code from Fmove_to_column.
11991 (current_column_1, Fmove_to_column): Use it.
11992
11993 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
11994
11995 * keymap.c (map_keymap_internal): New fun.
11996 (map_keymap): Use it.
11997 (Fmap_keymap_internal): New fun.
11998 (Fmap_keymap): Remove left-out test from before make_save_value.
11999
12000 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
12001
12002 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
12003 Use XCAR/XCDR.
12004
12005 * process.h (struct Lisp_Process): Remove filter_multibyte.
12006 * process.c (QCfilter_multibyte): Remove.
12007 (setup_process_coding_systems): Don't use filter_multibyte.
12008 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
12009 (read_process_output): Don't adjust multibyteness to filter_multibyte.
12010 (Fset_process_filter_multibyte): Change the coding-system to
12011 approximate the previous behavior.
12012 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
12013 coding-system.
12014
12015 * coding.c (decode_coding_object): When not decoding into a buffer,
12016 obey the coding system's preference of (uni|multi)byte.
12017
12018 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
12019
12020 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
12021 every char is changed and has a different byte-length.
12022 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
12023 Fix int -> EMACS_INT.
12024
12025 2008-03-23 David Hansen <david.hansen@gmx.net>
12026
12027 * dbusbind.c (xd_read_message): Remove extra copying of message
12028 strings. Check for NULL `interface' or `member'.
12029
12030 2008-03-22 Eli Zaretskii <eliz@gnu.org>
12031
12032 * w32.c (readdir): If FindFirstFile/FindNextFile return in
12033 cFileName a file name that includes `?' characters, use the 8+3
12034 alias in cAlternateFileName instead.
12035
12036 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12037
12038 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
12039
12040 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12041
12042 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
12043 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
12044 work on current_buffer only instead (that was already the case
12045 for some of the code anyway).
12046 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
12047 (temp_set_point, temp_set_point_both): Use EMACS_INT.
12048 (SET_PT, SET_PT_BOTH): Adjust.
12049 * intervals.h (set_point, temp_set_point, set_point_both)
12050 (temp_set_point_both): Remove redundant declarations.
12051
12052 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12053
12054 * fileio.c (Finsert_file_contents):
12055 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
12056 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
12057 when buffer != current_buffer anyway.
12058
12059 2008-03-20 Andreas Schwab <schwab@suse.de>
12060
12061 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
12062 as default.
12063
12064 2008-03-19 Jason Rumney <jasonr@gnu.org>
12065
12066 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
12067 (syms_of_w32fns): Initialize them.
12068 (HOURGLASS_ID): New constant.
12069 (x_window_to_frame): Don't check hourglass_window.
12070 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
12071 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
12072 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
12073 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
12074 Only change the cursor if hourglass is not active.
12075 (Fx_create_frame): Initialize frame's current_cursor.
12076 (hourglass_atimer): Remove.
12077 (hourglass_started): New function.
12078 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
12079 (show_hourglass): Adapt to w32, changing argument to frame.
12080
12081 * w32term.h (struct w32_output): Remove hourglass_window.
12082 Add current_cursor.
12083
12084 * eval.c (call_debugger, Fsignal):
12085 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
12086 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
12087 (Fexecute_extended_command, cancel_hourglass_unwind):
12088 * minibuf.c (read_minibuf):
12089 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
12090
12091 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
12092
12093 * window.c (run_funs): New fun.
12094 (run_window_configuration_change_hook): Use it to run the buffer-local
12095 and the global part of the hook.
12096
12097 * xdisp.c (format_mode_line_unwind_data): Add window argument.
12098 (unwind_format_mode_line): Restore selected window.
12099 (x_consider_frame_title, Fformat_mode_line): Set selected window.
12100
12101 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
12102
12103 * editfns.c (Fchar_equal): Check they are valid characters.
12104
12105 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
12106
12107 2008-03-17 Andreas Schwab <schwab@suse.de>
12108
12109 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
12110 against a charset.
12111
12112 * lisp.h (Fbuffer_list): Declare.
12113
12114 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
12115
12116 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
12117 handlebox_widget is != 0.
12118
12119 2008-03-16 Juri Linkov <juri@jurta.org>
12120
12121 * callint.c (Fcall_interactively): For interactive code letters
12122 'b' and 'B' put the buffer list into the list of default "future"
12123 values of the minibuffer.
12124
12125 2008-03-16 Andreas Schwab <schwab@suse.de>
12126
12127 * keyboard.c (read_key_sequence): Fix downcasing of letters with
12128 modifiers.
12129
12130 * regex.c (re_match_2_internal): Correct matching of a charset
12131 against latin-1 characters.
12132
12133 2008-03-16 Kenichi Handa <handa@m17n.org>
12134
12135 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
12136 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
12137 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
12138 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
12139 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
12140 CHAR_STRING_ADVANCE.
12141 (produce_chars): Fix for the case that the source and the
12142 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
12143 instead of CHAR_STRING_ADVANCE.
12144 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
12145 STRING_CHAR_ADVANCE.
12146
12147 2008-03-15 Andreas Schwab <schwab@suse.de>
12148
12149 * regex.c (re_match_2_internal): Correct matching of eight bit
12150 characters in unibyte strings.
12151
12152 2008-03-15 Martin Rudalics <rudalics@gmx.at>
12153
12154 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
12155 at end of range when it coincides with the end of the buffer.
12156
12157 2008-03-14 Eli Zaretskii <eliz@gnu.org>
12158
12159 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
12160
12161 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
12162
12163 2008-03-14 Jason Rumney <jasonr@gnu.org>
12164
12165 * editfns.c (initial_tz): New variable.
12166 (syms_of_editfns): Initialize it.
12167 (Fset_time_zone_rule): Set it when first called.
12168 Use it when TZSTRING is nil.
12169
12170 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
12171 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
12172 (monitor_from_point_fn, get_monitor_info_fn): New globals.
12173 (globals_of_w32fns): Initialize them.
12174 (compute_tip_xy): Use them to position tooltips.
12175
12176 2008-03-14 Glenn Morris <rgm@gnu.org>
12177
12178 * emacs.c (main): Revert previous change.
12179 (standard_args): Revert -internal-script back to -scriptload,
12180 and remove the long-option form.
12181
12182 2008-03-13 Glenn Morris <rgm@gnu.org>
12183
12184 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
12185 Remove option -enable-font-backend.
12186
12187 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
12188
12189 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
12190
12191 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
12192
12193 * xterm.c (x_connection_closed): For GTK: If this is the last
12194 terminal just exit without closing the display.
12195
12196 2008-03-11 Jason Rumney <jasonr@gnu.org>
12197
12198 * w32font.c (w32font_full_name): Use floor to round.
12199
12200 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
12201
12202 * sound.c (alsa_configure): Declare vol at beginning of block.
12203
12204 * fontset.c (Ffontset_info): Remove extra semicolon.
12205
12206 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
12207
12208 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
12209 size of resulting string.
12210
12211 2008-03-10 Jason Rumney <jasonr@gnu.org>
12212
12213 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
12214
12215 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12216
12217 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
12218 Don't pretend as if characters with display property haven't been
12219 consumed for string-replacing-string case.
12220
12221 2008-03-08 Kim F. Storm <storm@cua.dk>
12222
12223 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
12224 (get_next_display_element, next_element_from_string)
12225 (next_element_from_ellipsis, next_element_from_buffer): Use it.
12226
12227 2008-03-08 Andreas Schwab <schwab@suse.de>
12228
12229 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
12230
12231 2008-03-06 Jason Rumney <jasonr@gnu.org>
12232
12233 * w32font.c (w32_registry): Take font_type argument. Use ANSI
12234 when charset not specified. Only translate ANSI to unicode when
12235 font_type is truetype.
12236 (w32font_coverage_ok): New function.
12237 (add_font_entity_to_list): Use it to filter unsuitable fonts.
12238
12239 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
12240
12241 * lread.c (Fread_char): Resolve modifiers.
12242 (Fread_char_exclusive): Likewise.
12243
12244 * character.c (char_resolve_modifier_mask): New function.
12245 (char_string): Use char_resolve_modifier_mask.
12246 (Fchar_resolve_modifiers): New function.
12247 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
12248 function.
12249
12250 2008-03-04 Jason Rumney <jasonr@gnu.org>
12251
12252 * makefile.w32-in: Always include w32font.c in the build.
12253 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
12254
12255 2008-03-04 Andreas Schwab <schwab@suse.de>
12256
12257 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
12258 (versionclean): Likewise.
12259
12260 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
12261
12262 * .cvsignore: Add oo.
12263
12264 2008-03-03 Andreas Schwab <schwab@suse.de>
12265
12266 * coding.c (decode_coding_object): Inhibit gap shrinking while
12267 decoding in place.
12268
12269 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
12270
12271 * w32term.c: Remove unused include "gnu.h".
12272 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
12273
12274 * gnu.h: Rename to ...
12275 * emacs-icon.h: ... this.
12276 * xterm.c: Use emacs-icon.h instead of gnu.h.
12277 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
12278
12279 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
12280
12281 * w32font.c: Include math.h.
12282
12283 2008-03-03 Jason Rumney <jasonr@gnu.org>
12284
12285 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
12286 Compute options separately.
12287 (w32font_open_internal): Set glyph_idx before caching metrics.
12288
12289 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
12290 Define if system headers don't.
12291 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
12292 (w32font_encode_char): Don't declare here.
12293
12294 * w32font.c (Quniscribe, QCformat): New symbols.
12295 (syms_of_w32font): Define them.
12296 (w32font_has_char): Indicate uncertainty.
12297 (w32font_encode_char): Encode as glyph point. Make static.
12298 (recompute_cached_metrics): New function.
12299 (w32font_open_internal): Use it. Set font to use glyph points
12300 initially. Set format based on type of font.
12301 (w32font_text_extents, w32font_draw): Optionally use glyph points.
12302 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
12303 on it. Set format based on information available here.
12304 (add_font_entity_to_list): Identify backend based on opentype_only.
12305
12306 2008-03-02 Andreas Schwab <schwab@suse.de>
12307
12308 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
12309
12310 * coding.c (decode_coding_big5, produce_chars):
12311 Fix typos in last change.
12312
12313 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
12314
12315 * gnu.h: New icon.
12316
12317 2008-03-02 Kenichi Handa <handa@m17n.org>
12318
12319 * coding.c (decode_coding_utf_8): When eol-type of CODING is
12320 `dos', don't decode '\r' if that is the last in the source.
12321 (decode_coding_utf_16, decode_coding_emacs_mule)
12322 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
12323 (decode_coding_raw_text, decode_coding_charset): Likewise.
12324 (produce_chars): Don't decode EOL here. Use EMACS_INT.
12325
12326 2008-03-01 Jason Rumney <jasonr@gnu.org>
12327
12328 * w32font.c (w32font_full_name): Report point size for scalable fonts.
12329
12330 2008-03-01 Kim F. Storm <storm@cua.dk>
12331
12332 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
12333
12334 2008-03-01 Jason Rumney <jasonr@gnu.org>
12335
12336 * w32font.c (w32font_full_name): New function.
12337 (w32font_open_internal): Use it.
12338
12339 2008-03-01 Kim F. Storm <storm@cua.dk>
12340
12341 * dispnew.c (line_draw_cost): Fix invalid glyph check.
12342
12343 2008-03-01 Jason Rumney <jasonr@gnu.org>
12344
12345 * font.c (font_unparse_fcname): Increase len when style is a symbol.
12346
12347 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
12348
12349 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
12350 xg_frame_resized when the event is for the edit widget.
12351
12352 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
12353
12354 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
12355 set_char_size.
12356 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
12357 operations on widgets here. Just set frame size if needed.
12358 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
12359 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
12360 (x_wm_set_size_hint): Set size hints on the edit widget only, not
12361 the whole frame.
12362 (xg_create_tool_bar): Move attachment of the tool bar to
12363 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
12364 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
12365
12366 2008-03-01 Jason Rumney <jasonr@gnu.org>
12367
12368 * w32fns.c (w32_msg_pump): Disable debug code.
12369
12370 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12371
12372 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
12373
12374 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
12375
12376 * xdisp.c (next_overlay_string): Don't set
12377 overlay_strings_at_end_processed_p if we're currently reading from
12378 a display string.
12379
12380 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
12381
12382 * xdisp.c (get_overlay_strings_1): Fix typo.
12383
12384 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
12385
12386 * xdisp.c (get_overlay_strings_1): Add missing argument type.
12387
12388 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
12389
12390 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
12391
12392 * xdisp.c (display_mode_element): Cancel the previous change.
12393 (decode_mode_spec): Likewise.
12394 (handle_auto_composed_prop): Don't make composition if it->string
12395 is a string.
12396
12397 2008-02-27 Kim F. Storm <storm@cua.dk>
12398
12399 * lisp.h (GLYPH): Change type from int to struct with separate char
12400 and face_id members.
12401 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
12402 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
12403 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
12404 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
12405 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
12406 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
12407 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
12408 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
12409 handle new Lisp glyph code encoding, either an integer or a cons.
12410
12411 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
12412 (GLYPH_ALIAS): Delete.
12413 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
12414 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
12415 (GLYPH_FROM_CHAR): Replace macro by ...
12416 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
12417
12418 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
12419 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
12420 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
12421 (GLYPH_INVALID_P): New macro.
12422 (spec_glyph_lookup_face): Update prototype.
12423
12424 * dispnew.c (line_draw_cost): Adapt to new glyph type.
12425 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
12426 new glyph code encoding.
12427 (spec_glyph_lookup_face): No return value; update passed glyph instead.
12428 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
12429
12430 * xdisp.c (get_next_display_element, next_element_from_display_vector):
12431 Adapt to new glyph type and new glyph code encoding.
12432
12433 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
12434
12435 * indent.c (current_column, current_column_1, Fmove_to_column)
12436 (compute_motion): Adapt to new glyph code encoding.
12437
12438 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
12439
12440 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
12441
12442 * process.c (wait_reading_process_output): Check for window
12443 changes caused by timers.
12444 Suggested by Johan Bockgård.
12445
12446 2008-02-27 Glenn Morris <rgm@gnu.org>
12447
12448 * emacs.c (USAGE1): Add `--disable-font-backend'.
12449
12450 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
12451
12452 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
12453 is made to the buffer.
12454
12455 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
12456
12457 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
12458 (face_at_string_position):
12459 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
12460 (face_at_string_position):
12461 * xdisp.c (display_string, next_overlay_change):
12462 * buffer.h (overlays_at):
12463 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
12464 Update callers.
12465
12466 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
12467
12468 * editfns.c (Fformat): Doc fix.
12469
12470 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
12471
12472 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
12473 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
12474 (Ffont_otf_alternates, Fquery_font): Doc fixes.
12475
12476 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
12477
12478 * buffer.c (Fbuffer_swap_text): New function.
12479 (syms_of_buffer): Defsubr it.
12480
12481 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
12482
12483 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
12484
12485 2008-02-25 Jason Rumney <jasonr@gnu.org>
12486
12487 * w32font.c (w32font_draw): Draw one character at a time when padding.
12488
12489 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
12490
12491 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
12492 Handle a nil arg. Use run_window_configuration_change_hook.
12493 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
12494 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
12495 Use run_window_configuration_change_hook.
12496
12497 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
12498
12499 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
12500 1-pixel width.
12501
12502 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
12503
12504 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
12505 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
12506 if the glyph in the font is zero pixel with.
12507
12508 * dispextern.h (struct glyph_string): New member padding_p.
12509
12510 * w32font.c (w32font_draw): Pay attention to s->padding_p.
12511
12512 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
12513
12514 * xfont.c (xfont_draw): Pay attention to s->padding_p.
12515
12516 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
12517
12518 * font.c: If the font driver doesn't have `shape' function, return Qnil.
12519
12520 2008-02-25 Jason Rumney <jasonr@gnu.org>
12521
12522 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
12523
12524 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
12525
12526 Allow fine-grained image-cache flushing.
12527 * dispextern.h (struct image): Add `dependencies' field.
12528 (clear_image_caches): Change arg to Lisp_Object.
12529 * image.c (make_image): Initialize `dependencies' field.
12530 (clear_image_cache): Change arg to allow fine-grained flushing.
12531 Perform the flush even if image-cache-eviction-delay is nil.
12532 (clear_image_caches): Change arg to Lisp_Object.
12533 (Fclear_image_cache): Expand meaning of the argument.
12534 (mark_image): Mark `dependencies' field.
12535 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
12536 (lface_hash): Use XHASH rather than XFASTINT.
12537 (face_at_buffer_position): Fix int -> EMACS_INT position.
12538 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
12539 (select_frame_for_redisplay): Remove code duplication.
12540 (redisplay_internal): Adapt arg to call to clear_image_caches.
12541
12542 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
12543
12544 * s/vms4-0.h:
12545 * s/vms4-2.h:
12546 * s/vms4-4.h:
12547 * s/vms5-5.h: Remove, unused.
12548
12549 * s/irix5-2.h:
12550 * s/irix6-0.h:
12551 * s/riscos5.h:
12552 * s/mach-bsd4-3.h:
12553 * m/mips4.h: Remove files for obsolete systems.
12554
12555 * Makefile.in:
12556 * filelock.c:
12557 * unexmips.c:
12558 * m/hp9000s300.h:
12559 * m/iris4d.h:
12560 * s/aix3-1.h:
12561 * s/hpux.h:
12562 * s/msdos.h:
12563 * s/usg5-0.h:
12564 * s/usg5-2-2.h:
12565 * s/usg5-2.h:
12566 * s/usg5-3.h: Remove references to obsolete variables.
12567
12568 * s/irix5-0.h: Remove, move all the contents ...
12569 * s/irix6-5.h: ... here. Simplify.
12570 * config.in: Regenerate.
12571
12572 2008-02-24 Jason Rumney <jasonr@gnu.org>
12573
12574 * w32term.c (x_draw_glyph_string_background): Clear the background
12575 manually when cleartype is in use.
12576 (x_draw_glyph_string_foreground): Draw text transparently when
12577 cleartype is in use.
12578
12579 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
12580 a font into it unless we have to.
12581
12582 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
12583
12584 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
12585 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
12586
12587 2008-02-18 Jason Rumney <jasonr@gnu.org>
12588
12589 * w32fns.c (Fw32_shell_execute): Encode parameters.
12590
12591 2008-02-09 Eli Zaretskii <eliz@gnu.org>
12592
12593 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
12594
12595 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
12596
12597 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
12598
12599 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
12600
12601 * xterm.c (x_set_offset): Don't change the gravity if
12602 CHANGE_GRAVITY is -1.
12603
12604 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
12605
12606 * fileio.c (auto_save_error_occurred): New var.
12607 (auto_save_error): Set it.
12608 (Fdo_auto_save): Don't overwrite the error message if an auto-save
12609 error occurred.
12610
12611 2008-02-23 Eli Zaretskii <eliz@gnu.org>
12612
12613 * w32.c (globals_of_w32): Add initializations for
12614 g_b_init_get_sid_sub_authority and
12615 g_b_init_get_sid_sub_authority_count.
12616
12617 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
12618
12619 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
12620 (font_parse_xlfd): Use them for sanity check.
12621 (Finternal_set_font_style_table): Make sure the table is bijective.
12622
12623 Consolidate the image_cache to the terminal struct.
12624 * termhooks.h (P_): Remove redundant def.
12625 (struct terminal): New field `image_cache'.
12626 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
12627 of FRAME_X_IMAGE_CACHE.
12628 * xterm.h (struct x_display_info): Remove image_cache field.
12629 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
12630 * w32term.h (struct w32_display_info): Remove image_cache field.
12631 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
12632 * macterm.h (struct mac_display_info): Remove image_cache field.
12633 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
12634 * xterm.c (x_term_init):
12635 * w32term.c (w32_term_init):
12636 * macterm.c (mac_term_init): Set the image_cache in the terminal.
12637 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
12638 Remove declarations.
12639 (clear_image_caches, mark_image_cache): New declarations.
12640 * xfaces.c (clear_face_cache):
12641 * xdisp.c (redisplay_internal): Use clear_image_caches.
12642 * image.c (clear_image_cache): Don't check that a frame is on
12643 a window-system before checking if it shares the same cache.
12644 (clear_image_caches): New function.
12645 (Fclear_image_cache): Use it.
12646 (mark_image): Move from allo.c.
12647 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
12648 * alloc.c (mark_image, mark_image_cache): Move to image.c.
12649 (mark_object): Don't call mark_image_cache for frames.
12650 (mark_terminals): Call mark_image_cache.
12651
12652 * lisp.h (Fdelete_terminal): Declare.
12653
12654 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
12655 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
12656 wrong_type_argument.
12657
12658 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
12659
12660 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
12661 malayalam.el, and tamil.el. Add sinhala.el.
12662
12663 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
12664
12665 * xterm.c (x_connection_closed): Consolidate identical tests.
12666 (x_delete_terminal): Don't crash if called via x_connection_closed.
12667
12668 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
12669
12670 * xdisp.c (decode_mode_spec): New arg string.
12671 (display_mode_element): Adjust for the above change.
12672
12673 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
12674
12675 * callint.c (Fcall_interactively): Use AREF.
12676
12677 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
12678
12679 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
12680
12681 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
12682
12683 * xfns.c (Fx_show_tip): Set string to " " if empty.
12684
12685 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
12686
12687 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
12688 with Qt.
12689
12690 2008-02-17 Kenichi Handa <handa@m17n.org>
12691
12692 * ftfont.c (ftfont_shape): Return Lispy number.
12693
12694 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
12695 for GCs.
12696 (Finternal_set_font_selection_order): Call font_update_sort_order
12697 only when enable_font_backend is set.
12698 (realize_x_face): Set face->font_info to that of default face only
12699 when enable_font_backend is set.
12700
12701 * xdisp.c (handle_composition_prop): Set it->c to the fist
12702 character of the composed region.
12703 (fill_composite_glyph_string): Set base_face->font_info to
12704 s->font_info. Get a face for ascii from base_face->ascii_face.
12705 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
12706 with a face already decided.
12707 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
12708 non-negative.
12709 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
12710 call font_prepare_composition unconditionally.
12711
12712 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
12713
12714 * xterm.h (struct x_display_info): New member font.
12715
12716 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
12717 (x_set_mouse_face_gc, x_new_font): Likewise.
12718 (x_term_init): Setup display_info->font.
12719 (x_delete_terminal): Free display_info->font.
12720
12721 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
12722
12723 * ftxfont.c (ftxfont_default_fid): Delete it.
12724 (ftxfont_open): Set xfont->fid to 0.
12725 (ftxfont_end_for_frame): Clear data specific to the frame and the
12726 font-driver.
12727
12728 * xftfont.c (xftfont_default_fid): Delete it.
12729 (xftfont_open): Set xfont->fid to 0.
12730
12731 * fontset.c (FONTSET_OBJLIST): New macro.
12732 (fontset_find_font): Update font-object list of the fontset.
12733 (free_realized_fontset): New function.
12734 (free_face_fontset): Call free_realized_fontset.
12735 (Ffont_info): Call font_close_object only when enable_font_backend
12736 is set.
12737
12738 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
12739 [HAVE_NTGUI]: Include w32term.h.
12740 [MAC_OS]: Include macterm.ch.
12741 (font_otf_ValueRecord): Use make_number.
12742 (font_finish_cache): Fix handling of reference count.
12743 (font_clear_cache): Update num_fonts.
12744 (font_open_entity): Update smallest_char_width and
12745 smallest_font_height of the frame.
12746 (font_close_object): Update num_fonts.
12747 (Fclear_font_cache): Fix finding the target cache data.
12748
12749 2008-02-16 Glenn Morris <rgm@gnu.org>
12750
12751 * fontset.c (Finternal_char_font): Fix compilation warning.
12752
12753 2008-02-16 Eli Zaretskii <eliz@gnu.org>
12754
12755 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
12756 instead of char arrays. Enlarge the size of array passed to
12757 get_token_information.
12758
12759 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
12760 warnings.
12761
12762 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
12763
12764 * .gdbinit: Don't set `args', it breaks gdb --args.
12765
12766 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
12767
12768 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
12769 within a narrowed buffer.
12770
12771 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
12772
12773 * coding.c (decode_coding_object, encode_coding_object):
12774 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
12775
12776 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
12777
12778 * coding.c (coding_set_destination): Use BEG_BYTE rather than
12779 hardcoding 1.
12780 (detect_coding_system):
12781 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
12782 (string_char_to_byte, string_byte_to_char, insert_from_gap):
12783 * insdel.c (insert_from_gap):
12784 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
12785 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
12786 (string_to_multibyte):
12787 * character.c (chars_in_text, multibyte_chars_in_text):
12788 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
12789
12790 * character.h (FETCH_STRING_CHAR_ADVANCE)
12791 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
12792 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
12793 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
12794
12795 * casefiddle.c (casify_region): Only call after-change and composition
12796 functions on the part of the region that was changed.
12797
12798 * keyboard.c (read_avail_input):
12799 * frame.c (Fdelete_frame): Call Fdelete_terminal.
12800
12801 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
12802
12803 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
12804 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
12805
12806 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
12807
12808 * w32menu.c (push_submenu_start, push_submenu_end)
12809 (push_left_right_boundary, push_menu_pane, push_menu_item):
12810 * keyboard.c (read_key_sequence): Don't pass args with side effects
12811 to AREF, it fails when compiling with -DENABLE_CHECKING.
12812
12813 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
12814
12815 * Makefile.in (${lispsource}international/charprop.el):
12816 Delete this target.
12817
12818 * search.c (boyer_moore): Fix incorrect synching of the trunk and
12819 emacs-unicode-2.
12820
12821 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
12822
12823 * terminal.c (Fdelete_terminal): Clean up the `force' path.
12824
12825 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
12826
12827 * frame.c (Qnoelisp): New symbol.
12828 (syms_of_frame): Initialize it.
12829 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
12830 harmless Elisp code, from a strong `force' from x_connection_closed.
12831 * frame.h (Qnoelisp): Declare.
12832 * xterm.c (x_connection_closed): Pass `noelisp'.
12833
12834 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
12835 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
12836 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
12837 rather than `int' for the type of `type'.
12838
12839 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
12840
12841 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
12842
12843 * Makefile.in (GNUC): Remove support for gcc-1.x.
12844
12845 2008-02-10 Richard Stallman <rms@gnu.org>
12846
12847 * lisp.h (ASET): Use AREF, not ASLOT.
12848
12849 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
12850
12851 * lisp.h (ASET): Check bounds.
12852
12853 2008-02-10 Glenn Morris <rgm@gnu.org>
12854
12855 * buffer.c (mode-name): Doc fix.
12856
12857 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
12858
12859 * Makefile.in:
12860 * emacs.c:
12861 * gmalloc.c:
12862 * keyboard.c:
12863 * lisp.h:
12864 * m/ibm370aix.h:
12865 * process.c:
12866 * regex.c:
12867 * s/hpux.h:
12868 * sysdep.c:
12869 * sysselect.h:
12870 * systty.h:
12871 * unexec.c:
12872 * w32term.c:
12873 * xsmfns.c:
12874 * xterm.c: Remove code that deals with obsolete variables.
12875
12876 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
12877
12878 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
12879 nothing else needs it anymore.
12880
12881 2008-02-09 Eli Zaretskii <eliz@gnu.org>
12882
12883 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
12884 instead of unibyte_char_to_multibyte.
12885
12886 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
12887
12888 * s/gnu-linux.h: Remove commented out code.
12889
12890 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
12891
12892 * Makefile.in: Update what RMS says about using autoconf.
12893 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
12894 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
12895 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
12896 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
12897
12898 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
12899
12900 * keymap.c (Fkey_description): Move side effect outside of macro call.
12901
12902 * xfaces.c (Finternal_make_lisp_face):
12903 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
12904
12905 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
12906 (syms_of_fontset): Use ASET.
12907
12908 * fns.c (concat): Move side effect outside of macro call.
12909 (hash_clear): Use ASET.
12910
12911 2008-02-08 Richard Stallman <rms@gnu.org>
12912
12913 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
12914 If FORCE, and frame has a surrogate minibuffer for another frame,
12915 delete the other frame first.
12916
12917 2008-02-07 Timo Savola <timo.savola@iki.fi>
12918
12919 * xterm.c (x_detect_focus_change): Handle embed client message.
12920 (handle_one_xevent): Ditto.
12921 (handle_one_xevent): If embedded and we get a button press/release,
12922 request focus.
12923 (xembed_set_info, xembed_send_message): New functions.
12924 (x_make_frame_visible): Call xembed_set_info if embedded.
12925 (x_make_frame_invisible): Call xembed_set_info if embedded.
12926 (x_term_init): Initialize Xatom_XEMBED.
12927 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
12928 (x_iconify_frame): Ditto.
12929
12930 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
12931 (enum xembed_info, enum xembed_message, enum xembed_focus)
12932 (enum xembed_modifier, enum xembed_accelerator): New.
12933 (xembed_set_info, xembed_send_message): Declare.
12934 (FRAME_X_EMBEDDED_P): New.
12935
12936 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
12937 gtk_plug_new.
12938
12939 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
12940 window ID of a frame.
12941 (x_window): Reparent frame if embedded.
12942 (Fx_create_frame): Don't set border width if embedded.
12943
12944 * emacs.c (USAGE3): Add --parent-id.
12945 (standard_args): Ditto.
12946
12947 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
12948
12949 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
12950
12951 2008-02-07 Jim Meyering <meyering@redhat.com>
12952
12953 Use "do...while (0)", not "if (1)...else" in macro definitions.
12954 The latter provokes a warning from gcc about the empty else, when
12955 followed by ";". Also, without that trailing semicolon, it would
12956 silently swallow up any following statement.
12957 * syntax.h (SETUP_SYNTAX_TABLE)
12958 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
12959 * buffer.h (DECODE_POSITION): Likewise.
12960 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
12961 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
12962 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
12963 (FETCH_CHAR_ADVANCE): Likewise.
12964 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
12965
12966 2008-02-07 Jim Meyering <meyering@redhat.com>
12967
12968 * lread.c [lint]: Don't include <sys/inode.h>.
12969
12970 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
12971
12972 * xselect.c (x_handle_dnd_message):
12973 * xmenu.c (digest_single_submenu, xmenu_show):
12974 * xdisp.c (with_echo_area_buffer_unwind_data)
12975 (format_mode_line_unwind_data, unwind_format_mode_line)
12976 (display_menu_bar):
12977 * eval.c (Ffetch_bytecode):
12978 * doc.c (store_function_docstring):
12979 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
12980 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
12981 * buffer.c (add_overlay_mod_hooklist): Use ASET.
12982
12983 2008-02-07 Kenichi Handa <handa@m17n.org>
12984
12985 * ftxfont.c (ftxfont_open): Don't set
12986 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
12987
12988 * ftfont.c (ftfont_open): Fix previous change.
12989
12990 2008-02-06 Jason Rumney <jasonr@gnu.org>
12991
12992 * w32font.c (w32font_text_extents): Fill in lbearing metric.
12993 Use cached metrics for ASCII characters.
12994 (w32font_open_internal): Don't set font's owning_frame.
12995 Cache metrics for ASCII characters.
12996
12997 * w32font.h (struct w32font_info): Add ascii_metrics.
12998 Remove owning_frame.
12999
13000 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
13001
13002 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
13003 to negative value.
13004
13005 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
13006
13007 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
13008
13009 * charset.c (syms_of_charset): Set QCtest and Qeq.
13010
13011 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
13012
13013 * process.c (Fstart_process):
13014 * callproc.c (Fcall_process): Handle the case where
13015 Funhandled_file_name_directory returns nil.
13016
13017 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
13018 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
13019 * font.c (check_gstring): Use them and AREF to access the vector before
13020 we know it's really a gstring.
13021 (Ffont_shape_text): Fix typo.
13022 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
13023
13024 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
13025 Declare.
13026
13027 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
13028
13029 2008-02-05 Jason Rumney <jasonr@gnu.org>
13030
13031 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
13032 Set smallest_font_height and smallest_char_width in display info.
13033
13034 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
13035
13036 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
13037
13038 2008-02-05 Miles Bader <miles@gnu.org>
13039
13040 * xfaces.c (get_lface_attributes, merge_named_face)
13041 (lookup_named_face, lookup_derived_face, realize_named_face):
13042 Revert 2008-02-01 change by cyd@stupidchicken.com.
13043
13044 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
13045
13046 * fontset.c (Ffontset_info): Handle the case of inhibitting the
13047 fallback fonts.
13048 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
13049
13050 2008-02-04 Jason Rumney <jasonr@gnu.org>
13051
13052 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
13053 set full_name.
13054 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
13055
13056 2008-02-03 Jason Rumney <jasonr@gnu.org>
13057
13058 * makefile.w32-in (OBJ1): Include font.o here.
13059 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
13060
13061 2008-02-02 Jason Rumney <jasonr@gnu.org>
13062
13063 * makefile.w32-in (temacs): Bump EMHEAP to 21.
13064
13065 2008-02-01 Jason Rumney <jasonr@gnu.org>
13066
13067 * s/cygwin.h: Define VIRT_ADDR_VARIES.
13068
13069 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
13070
13071 2008-02-01 Andreas Schwab <schwab@suse.de>
13072
13073 * Makefile.in (shortlisp, lisp): Update for rename of
13074 ../lisp/language/myanmar.el.
13075
13076 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
13077
13078 * xfaces.c (get_lface_attributes): Delete function.
13079 (merge_named_face, lookup_named_face, lookup_derived_face)
13080 (realize_named_face): Call lface_from_face_name directly, and use
13081 the fact that merge_face_vectors does not alter its FROM argument.
13082
13083 2008-02-01 Jason Rumney <jasonr@gnu.org>
13084
13085 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
13086 input in the default locale. Handle non-Unicode multibyte input.
13087
13088 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13089
13090 * fontset.c (reorder_font_vector): Exclude nil elements from the
13091 font group. Don't try multiple fonts.
13092 (fontset_font): Adjust for the above change.
13093 (Finternal_char_font): Return nil if the found font doesn't
13094 contain the character ch.
13095
13096 * Makefile.in (lisp, shortlisp): Add cham.el.
13097
13098 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13099
13100 * font.h (FONTP): Make it return 1 also for a font-object.
13101
13102 * .gdbinit (xfontset): New function.
13103
13104 * font.c (font_find_for_lface): Check if the character C is
13105 supported or not only for the first font.
13106
13107 * fontset.c (reorder_font_vector): Fix typo.
13108 (fontset_find_font): Don't add a font-spec specifying a script.
13109 Use 0 (not Qt) for the indication of empty font-group. Change the
13110 format of RFONT-DEF. Return Qt if no font in the font-group
13111 support the character.
13112 (fontset_font): Adjust for the above change. If no font was
13113 found the character, remember that.
13114 (face_for_char): Adjust for the change of RFONT-DEF.
13115 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
13116 no font for the target.
13117 (Finternal_char_font): Adjust for the change of RFONT-DEF.
13118
13119 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13120
13121 * font.c (font_load_for_face): Handle the case that the font in
13122 face->lface is a string.
13123
13124 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13125
13126 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
13127
13128 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13129
13130 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
13131 Fix previous change. If the frame is not on a window system,
13132 signal an error.
13133
13134 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13135
13136 * coding.c (decode_coding_object, encode_coding_object): Adjust
13137 marker positions after conversion.
13138
13139 * lisp.h (struct Lisp_Marker): New member need_adjustment.
13140
13141 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13142
13143 * font.c (font_find_for_lface): Fix the handling of the return
13144 value of font_has_char.
13145 (Ffont_shape_text): Fix previous change.
13146
13147 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
13148 (fontset_ref_and_range): Delete it.
13149 (fontset_find_font): Call char_table_ref_and_range instead of
13150 FONTSET_REF_AND_RANGE.
13151 (make_fontset): Don't setup font groups of Latin here.
13152 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
13153 (new_fontset_from_font): Make the specified font the default for
13154 all Latin characters.
13155
13156 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13157
13158 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
13159 is on a window system before accessing the fontset of the frame.
13160
13161 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13162
13163 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
13164
13165 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
13166 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
13167
13168 * font.c (Ffont_shape_text): If the font driver doesn't have a
13169 shaper function, make zero-width glyphs to have at least one-pixel
13170 width. Fix setting of `to' field of glyphs.
13171
13172 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13173
13174 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
13175 glyphs.
13176
13177 * font.h (struct font_driver): Improve docstring of member `shape'.
13178
13179 2008-02-01 Kenichi Handa <handa@m17n.org>
13180
13181 * composite.c (syms_of_composite): Fix docstring of
13182 auto-composition-function.
13183
13184 * font.h (LGLYPH_SIZE): New macro.
13185
13186 * font.c (Ffont_fill_gstring): Stop filling when a character not
13187 supported by the font is found.
13188 (Ffont_shape_text): When a shape callback function returns nil,
13189 try at most two more times with larger gstring.
13190 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
13191
13192 * xdisp.c (handle_auto_composed_prop): Change the argument to
13193 auto-composition-function.
13194
13195 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
13196 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
13197 Lispy glyph and store it in the lgstring.
13198
13199 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
13200
13201 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
13202
13203 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13204
13205 * font.c (Ffont_shape_text): Avoid unnecessary composition.
13206
13207 * fontset.c (Vfont_encoding_charset_alist): New variable.
13208 (syms_of_fontset): DEFVAR it.
13209 (reorder_font_vector, fontset_find_font): Optimize for the case of
13210 no need of reordering.
13211 (face_for_char): Map the charset property by
13212 Vfont_encoding_charset_alist.
13213
13214 2008-02-01 Jason Rumney <jasonr@gnu.org>
13215
13216 * w32font.c (logfonts_match): Don't check adstyle here.
13217 (font_matches_spec): Check here against physical font instead.
13218 (add_font_entity_to_list): Avoid some substitutions.
13219
13220 * font.c (font_parse_fcname): Default weight and slant to normal.
13221 (font_score): Prefer normal fonts if weight or slant unspecified.
13222 (font_score) [WINDOWSNT]: Scale weight difference down to closer
13223 match freetype scores.
13224
13225 2008-02-01 Jason Rumney <jasonr@gnu.org>
13226
13227 * w32font.c (w32font_text_extents): Don't use the frame stored in the
13228 font, as it may have been deleted.
13229 (w32_enumfont_pattern_entity): Map generic family to adstyle using
13230 most common hyphenless variation.
13231 (logfonts_match): Check generic family.
13232 (font_matches_spec): Don't check generic family here.
13233 (fill_in_logfont): Set generic family based on adstyle.
13234
13235 * w32font.h (w32font_get_cache): Update declaration.
13236
13237 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13238
13239 * ftfont.c (ftfont_get_cache): Adjust the argument type.
13240
13241 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
13242 If none of the new drivers are available, call font_update_drivers
13243 with the old drivers.
13244
13245 * w32font.c (w32font_get_cache): Adjust the argument type.
13246
13247 * xfont.c (xfont_get_cache): Adjust the argument type.
13248
13249 * font.h (struct font_driver): Change argument type of get_cache.
13250
13251 * xftfont.c (xftfont_start_for_frame): Delete prototype.
13252
13253 * font.c (Ffont_get): Fix arguments to Fassoc.
13254 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
13255 (font_clear_cache): New function.
13256 (font_list_entities, font_matching_entity): Use font_get_cache.
13257 (font_update_drivers): Call font_clear_cache when finishing a driver.
13258
13259 * fontset.c (fontset_find_font): Fix previous change.
13260
13261 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13262
13263 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
13264 dpyinfo->font_table.
13265 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
13266 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
13267
13268 * font.c (font_at): Handle the case that the arg C is negative.
13269 Handle the unibyte case.
13270 (Ffont_at): Call font_at with the arg C -1.
13271
13272 * xdisp.c (handle_auto_composed_prop): Don't get a character at
13273 the position here, and call font_at with the arg C -1.
13274 Don't check the range of the existing composition at the point.
13275
13276 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13277
13278 * fontset.c (fontset_add): New args charset_id and family.
13279 Change caller.
13280 (load_font_get_repertory, fontset_find_font): Assume that
13281 font_spec is always a font-spec object.
13282 (Fset_fontset_font): Always store a font-spec object in a fontset.
13283
13284 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
13285 instead of get_property_and_range.
13286
13287 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13288
13289 * xftfont.c (struct xftfont_info): Delete the member ft_face.
13290 (xftfont_open): Don't keep locking face.
13291 (xftfont_close): Don't unlock face.
13292 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
13293
13294 * fontset.c (fontset_find_font): Don't prefer a font of
13295 supplementary charset.
13296
13297 2008-02-01 Kenichi Handa <handa@m17n.org>
13298
13299 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
13300 script, langsys_tag to langsys, new member script.
13301 (OTF_TAG_STR): Terminate by '\0'.
13302 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
13303 listing to the script specified in that property. Fix arg to
13304 OTF_check_features.
13305
13306 2008-02-01 Jason Rumney <jasonr@gnu.org>
13307
13308 * w32font.h: New file.
13309
13310 * w32font.c: Include it.
13311 (struct w32font_info): Add owning_frame field. Move to w32font.h.
13312 (w32font_open): Set owning_frame.
13313 (w32font_text_extents): Use owning_frame.
13314 (struct font_callback_data): Add opentype_only field.
13315 (add_font_entity_to_list): Use it to filter fonts.
13316 Don't check against full name.
13317 (w32font_list_internal): New function.
13318 (w32font_list): Use it.
13319 (w32font_match_internal): New function.
13320 (w32font_match): Use it.
13321 (w32font_open_internal): New function.
13322 (w32font_open): Use it.
13323 (w32font_get_cache, w32font_close, w32font_has_char)
13324 (w32font_encode_char, w32font_text_extents, w32font_draw):
13325 Make non-static.
13326
13327 * makefile.w32-in (w32font.o): Depend on w32font.h.
13328
13329 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13330
13331 * charset.c (Fdefine_charset_internal): Record a supplementary
13332 charset at the tail of Vcharset_order_list.
13333
13334 * font.c (Ffont_shape_text): Fix the return value.
13335
13336 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
13337
13338 * xdisp.c (handle_auto_composed_prop): Fix previous change.
13339
13340 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13341
13342 * ftfont.c (struct OpenTypeSpec): New struct.
13343 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
13344 (ftfont_get_open_type_spec): New function.
13345 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
13346
13347 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
13348
13349 2008-02-01 Jason Rumney <jasonr@gnu.org>
13350
13351 * w32font.c (add_font_entity_to_list): Compare only the beginning
13352 of full name.
13353
13354 2008-02-01 Kenichi Handa <handa@m17n.org>
13355
13356 * xdisp.c (handle_auto_composed_prop): Simplify the code.
13357 Never return HANDLED_RECOMPUTE_PROPS.
13358
13359 2008-02-01 Kenichi Handa <handa@m17n.org>
13360
13361 * font.c (font_gstring_produce): Delete it.
13362
13363 * composite.h (COMPOSITION_METHOD):
13364 Handle COMPOSITION_WITH_GLYPH_STRING.
13365
13366 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13367
13368 * xfont.c (Qx): Delete.
13369 (syms_of_xfont): Don't initialize Qx.
13370
13371 * composite.h (enum composition_method):
13372 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
13373
13374 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13375
13376 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
13377 (choose_face_font): Accept new form of font-spec.
13378
13379 * frame.h (font_driver_list): Declare it unconditionally.
13380 (struct frame): Define members font_driver_list and font_data_list
13381 unconditionally.
13382
13383 * fontset.c: Include "font.h" unconditionally.
13384 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
13385 (Fset_fontset_font): Accept a font-spec object.
13386
13387 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
13388 PIXEL_SIZE part a wild card.
13389
13390 * dispextern.h (struct glyph_string): Define members clip and
13391 num_clips unconditionally.
13392 (struct face): Define members font_info and extra unconditionally.
13393
13394 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
13395 ftfont_info only when HAVE_LIBOTF is defined.
13396
13397 2008-02-01 Andreas Schwab <schwab@suse.de>
13398
13399 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
13400 and end.
13401
13402 2008-02-01 Jason Rumney <jasonr@gnu.org>
13403
13404 * w32font.c (w32font_driver): Add new fields.
13405
13406 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13407
13408 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
13409 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
13410 (LIBES): Add @M17N_FLT_CFLAGS@.
13411
13412 * composite.c (compose_text): Don't treat the new style
13413 composition specially.
13414
13415 * emacs.c (main): Call syms_of_font unconditionally.
13416
13417 * font.h (FONT_ENTITY_NOT_LOADABLE)
13418 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
13419 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
13420 (struct font_driver): New member shape.
13421 (font_registry_charsets): Extern it.
13422 (font_find_for_lface, font_prepare_composition): Adjust prototype.
13423 (font_otf_capability, font_drive_otf): Delete their externs.
13424
13425 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
13426 (font_charset_alist, font_registry_charsets): Move from xfont.c
13427 and rename.
13428 (font_prop_validate_otf): New function.
13429 (font_property_table): Register it for QCotf.
13430 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
13431 (font_drive_otf): Delete.
13432 (font_prepare_composition): New arg F. Adjust for the change of
13433 lispy gstring.
13434 (font_find_for_lface): New arg C.
13435 (font_load_for_face): Adjust for the change of font_find_for_lface.
13436 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
13437 lispy gstring.
13438 (Ffont_shape_text): New function.
13439 (Fopen_font): If the font size is not given, use 12-pixel.
13440 (Ffont_at): New arg STRING.
13441 (syms_of_font): Initalize font_charset_alist.
13442 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
13443 conditionally.
13444
13445 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
13446 fonts of the same font-spec. Change the format of RFONT-DEF.
13447 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
13448 Adjust for the change of RFONT-DEF.
13449 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
13450
13451 * ftfont.h: New file.
13452
13453 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
13454 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
13455 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
13456 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
13457 font_otf_capability and font_drive_otf, set ftfont_shape.
13458 (ftfont_list): Adjust for the change of :otf property value.
13459 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
13460 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
13461 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
13462 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
13463 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
13464 (otf_gstring, gstring, m17n_flt_initialized): New variables.
13465
13466 * w32term.c (x_draw_composite_glyph_string_foreground):
13467 Adjust for the change of lispy gstring.
13468
13469 * xdisp.c (handle_composition_prop): Adjust for the change of
13470 lispy gstring. Call a function for auto-composition with the
13471 third arg it->window.
13472 (fill_composite_glyph_string): Adjust for the change of lispy string.
13473 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
13474
13475 * xfaces.c (set_font_frame_param): Adjust for the change of
13476 font_find_for_lface.
13477
13478 * xfont.c (x_font_charset_alist): Move to font.c and rename.
13479 (xfont_registry_charsets): Likewise. Change caller.
13480 (syms_of_xfont): Don't handle x_font_charset_alist.
13481
13482 * xftfont.c: Include "ftfont.h".
13483 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
13484 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
13485 (xftfont_close) [HAVE_LIBOTF]: Close otf.
13486 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
13487 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
13488 Set xftfont_driver.shape to xftfont_shape.
13489
13490 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
13491 the change of lispy gstring.
13492
13493 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13494
13495 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
13496
13497 2008-02-01 Jason Rumney <jasonr@gnu.org>
13498
13499 * w32font.c (w32font_draw): Fill background manually.
13500
13501 2008-02-01 Jason Rumney <jasonr@gnu.org>
13502
13503 * font.c (Qfontp): Remove unused symbol.
13504 (QCantialias): New symbol.
13505 (syms_of_font): Define it.
13506 (font_property_table): Set a validator for QCantialias.
13507
13508 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
13509 Define if not already.
13510 (QCfamily): Share with xfaces.c.
13511 (Qstandard, Qsubpixel, Qnatural): New symbols.
13512 (syms_of_w32font): Define them. Don't define QCfamily here.
13513 (w32_antialias_type, lispy_antialias_type): New functions.
13514 (w32_enumfont_pattern_entity): New arg requested_font.
13515 Set antialias parameter if non-default was requested.
13516 (fill_in_logfont): Fill in lfQuality if :antialias specified.
13517
13518 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13519
13520 * lread.c (read1): Undo the previous change.
13521
13522 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
13523
13524 * frame.c (Fdelete_frame): Call font_update_drivers only when
13525 USE_FONT_BACKEND is defined.
13526
13527 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13528
13529 * font.h (struct font_bitmap): New member bits_per_pixel.
13530 (struct font_driver): New members start_for_frame and end_for_frame.
13531 (struct font_data_list): New struct.
13532 (font_put_frame_data, font_get_frame_data): Extern them.
13533
13534 * frame.h (struct frame): New member font_data_list.
13535
13536 * font.c (font_update_drivers): Call driver->start_for_frame and
13537 driver->end_for_frame at proper timings.
13538 (font_put_frame_data, font_get_frame_data): New functions.
13539 (Ffont_spec): Add usage in the docstring.
13540
13541 * frame.c (make_frame): Initialize f->font_data_list to NULL.
13542 (Fdelete_frame): Call font_update_drivers.
13543
13544 * xftfont.c (struct xftface_info): Delete the member xft_draw.
13545 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
13546 (xftfont_get_xft_draw): New function.
13547 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
13548 (xftfont_end_for_frame): New function.
13549 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
13550
13551 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
13552 Change argument. Cache GCs in the per-frame data.
13553 (struct ftxfont_frame_data): New struct.
13554 (ftxfont_draw_bitmap): New arg gc_fore and flush.
13555 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
13556 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
13557 (ftxfont_end_for_frame): New function.
13558 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
13559
13560 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
13561
13562 2008-02-01 Kenichi Handa <handa@m17n.org>
13563
13564 * xselect.c (Vselection_coding_system)
13565 (Vnext_selection_coding_system): Delete them.
13566 (syms_of_xselect): Don't declare selection-coding-system and
13567 next-selection-coding-system. They are declared in select.el.
13568
13569 2008-02-01 Jason Rumney <jasonr@gnu.org>
13570
13571 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
13572
13573 * w32fns.c: Include imm.h.
13574 (get_composition_string_fn, get_ime_context_fn): New optional
13575 system functions.
13576 (globals_of_w32fns): Load them from imm32.dll.
13577 (ignore_ime_char): New flag.
13578 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
13579 WM_IME_ENDCOMPOSITION messages.
13580
13581 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
13582 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
13583
13584 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13585
13586 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
13587 (READCHAR_REPORT_MULTIBYTE): New macro.
13588 (readchar): New 2nd arg MULTIBYTE.
13589 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
13590 Make symbol's name multibyte according to the multibyteness of the
13591 source.
13592
13593 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13594
13595 * xfaces.c (face_for_overlay_string): Call lookup_face with
13596 correct arguments (fix of synching with the trunk).
13597
13598 2008-02-01 Kenichi Handa <handa@m17n.org>
13599
13600 * font.c (font_prop_validate_symbol, font_prop_validate_style)
13601 (font_prop_validate_non_neg, font_prop_validate_spacing):
13602 Delete argument prop_index.
13603 (font_property_table): Change arguments to validater. Change Callers.
13604 (font_lispy_object): Delete.
13605 (font_at): Use font_find_object instead fo font_lispy_object.
13606
13607 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13608
13609 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
13610 and file names.
13611
13612 2008-02-01 Jason Rumney <jasonr@gnu.org>
13613
13614 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
13615 (font_matches_spec): Remove debug output.
13616 (add_font_entity_to_list): Avoid using substituted fonts.
13617
13618 2008-02-01 Jason Rumney <jasonr@gnu.org>
13619
13620 * doc.c (Fsnarf_documentation):
13621 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
13622
13623 2008-02-01 Miles Bader <miles@gnu.org>
13624
13625 * dispextern.h (struct glyph_row): Only define "clip" field if
13626 HAVE_WINDOW_SYSTEM is defined.
13627
13628 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
13629
13630 Fix up multi-tty merge.
13631
13632 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
13633 and indentation.
13634
13635 * xfaces.c (free_realized_face, clear_face_gcs):
13636 Include font_done_for_face in the input_blocked section, just in case.
13637
13638 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
13639 (get_char_face_and_encoding): Undo last change and remove the *other*
13640 duplicate definition (i.e. keep the one that's better scoped and that
13641 includes code for the font-backend).
13642
13643 * terminal.c (create_terminal): Default keyboard_coding to
13644 `no-conversion' and terminal_coding to `undecided'.
13645
13646 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
13647
13648 * fontset.c (free_realized_fontsets): Check that the table entry does
13649 contain a fontset before trying to compare it to `base'.
13650
13651 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
13652 syms_of_charset, and syms_of_coding earlier because init_window_once
13653 now needs Vcoding_system_hash_table to be setup.
13654
13655 * coding.h (default_buffer_file_coding): Remove.
13656
13657 * coding.c (default_buffer_file_coding): Remove.
13658 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
13659 than ->symbol, and use the terminal-local coding system.
13660 (syms_of_coding): Don't setup the coding-systems that are not
13661 terminal-local.
13662 (Fdefine_coding_system_internal): Use XCAR/XCDR.
13663
13664 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
13665 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
13666
13667 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
13668 in chartab.c and were re-added here by mistake.
13669 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
13670
13671 * doc.c (Fsnarf_documentation):
13672 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
13673 src to etc.
13674
13675 * ChangeLog.10: Add mistakenly removed entry.
13676
13677 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
13678
13679 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
13680
13681 2008-02-01 Miles Bader <miles@gnu.org>
13682
13683 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
13684 Add extra args to FACE_FOR_CHAR.
13685
13686 2008-02-01 Kenichi Handa <handa@m17n.org>
13687
13688 * keymap.c (where_is_internal_1): If key is a cons, store the copy
13689 in sequence.
13690
13691 * chartab.c (map_sub_char_table, map_char_table): If the range
13692 contains just one character, call the function with that character
13693 even if the depth is not 3.
13694
13695 2008-02-01 Jason Rumney <jasonr@gnu.org>
13696
13697 * w32font.c (w32font_text_extents): Calculate metrics for the
13698 whole string.
13699
13700 2008-02-01 Jason Rumney <jasonr@gnu.org>
13701
13702 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
13703
13704 2008-02-01 Jason Rumney <jasonr@gnu.org>
13705
13706 * w32term.c (x_set_glyph_string_clipping): Use
13707 get_glyph_string_clip_rects.
13708 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
13709 Adjust for the change of struct glyph_string.
13710
13711 * w32font.c (w32font_draw): Do clipping here.
13712
13713 2008-02-01 Kenichi Handa <handa@m17n.org>
13714
13715 * xftfont.c (xftfont_draw): Adjust for the change of struct
13716 glyph_string.
13717
13718 * xterm.c (x_set_glyph_string_clipping): Use
13719 get_glyph_string_clip_rects.
13720 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
13721 Adjust for the change of struct glyph_string.
13722
13723 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
13724 the resulting clip(s}.
13725 (expose_overlaps): Add arg r. Change callers. Set it to
13726 row->clip temporarily.
13727 (expose_window): Redraw rows overlapping the exposed area.
13728
13729 * dispextern.h (struct glyph_row): New member clip.
13730 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
13731 clip_height, new member clip, and num_clips.
13732
13733 2008-02-01 Kenichi Handa <handa@m17n.org>
13734
13735 * data.c (Fchar_or_string_p): Fix docstring.
13736
13737 2008-02-01 Kenichi Handa <handa@m17n.org>
13738
13739 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
13740 create a temporary XftDraw object.
13741
13742 2008-02-01 Kenichi Handa <handa@m17n.org>
13743
13744 * font.c (Ffontp): Fix docstring.
13745
13746 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
13747 strong evidence of ISO-2022.
13748
13749 2008-02-01 Kenichi Handa <handa@m17n.org>
13750
13751 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
13752 SYNTAX_ENTRY_FOLLOW_PARENT.
13753
13754 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
13755
13756 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
13757 its type.
13758 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
13759 Update to the new type of weak_hash_tables and next_weak.
13760
13761 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
13762 a plain C pointer to Lisp_Hash_Table.
13763
13764 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
13765 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
13766 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
13767 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
13768 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
13769 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
13770 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
13771 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
13772 (GC_EQ): Remove since they've been identical to their non-GC_
13773 alter-egos ever since the markbit was eradicated.
13774
13775 * alloc.c:
13776 * buffer.c:
13777 * buffer.h:
13778 * data.c:
13779 * fileio.c:
13780 * filelock.c:
13781 * fns.c:
13782 * frame.h:
13783 * lisp.h:
13784 * macterm.c:
13785 * print.c:
13786 * process.c:
13787 * w32fns.c:
13788 * w32menu.c:
13789 * w32term.c:
13790 * xfns.c:
13791 * xmenu.c:
13792 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
13793
13794 2008-02-01 Kenichi Handa <handa@m17n.org>
13795
13796 * chartab.c (map_sub_char_table): Make it work for the top-level
13797 char-table. Fix handling of parent char-table.
13798 (map_char_table): Adjust for the above change.
13799
13800 2008-02-01 Jason Rumney <jasonr@gnu.org>
13801
13802 * w32font.c (Qgdi): Rename from Qw32.
13803
13804 2008-02-01 Jason Rumney <jasonr@gnu.org>
13805
13806 * w32bdf.c (get_quoted_string): Make function static.
13807
13808 2008-02-01 Kenichi Handa <handa@m17n.org>
13809
13810 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
13811 bigger ascent and descent than those of the font, use them as
13812 font's ascent and descent.
13813
13814 2008-02-01 Kenichi Handa <handa@m17n.org>
13815
13816 * Makefile.in (${lispsource}international/charprop.el): Move this
13817 target within "#ifdef HAVE_UNIDATA" and "#endif".
13818
13819 2008-02-01 Kenichi Handa <handa@m17n.org>
13820
13821 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
13822 (shortlisp): Add ../lisp/language/tai-viet.el.
13823
13824 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
13825
13826 * Makefile.in (${lispsource}international/charprop.el): Depend on
13827 temacs${EXEEXT}.
13828
13829 2008-02-01 Jason Rumney <jasonr@gnu.org>
13830
13831 * w32font.c (w32font_close): Delete the GDI font object.
13832
13833 * w32menu.c: Include character.h.
13834
13835 * w32proc.c: Likewise.
13836
13837 * w32select.c: Likewise.
13838
13839 * makefile.w32-in (w32proc.o): Depend on character.h.
13840
13841 2008-02-01 Jason Rumney <jasonr@gnu.org>
13842
13843 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
13844
13845 * w32menu.c (syms_of_w32menu): Likewise.
13846
13847 * w32proc.c (syms_of_ntproc): Likewise.
13848
13849 * w32select.c (syms_of_w32select): Likewise.
13850
13851 * w32term.c (syms_of_w32term): Likewise.
13852
13853 2008-02-01 Jason Rumney <jasonr@gnu.org>
13854
13855 * w32font.c (w32font_draw): Delete brush after using it.
13856
13857 2008-02-01 Jason Rumney <jasonr@gnu.org>
13858
13859 * w32font.c (w32font_open): Don't set font_idx.
13860 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
13861 to font settings.
13862 (w32font_draw): Fill background explicitly.
13863
13864 2008-02-01 Jason Rumney <jasonr@gnu.org>
13865
13866 * w32term.c (w32_initialize): Don't call w32font_initialize.
13867
13868 * w32font.c (w32font_info): Remove subranges.
13869 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
13870 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
13871 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
13872 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
13873 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
13874 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
13875 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
13876 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
13877 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
13878 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
13879 New symbols.
13880 (font_callback_data): New struct.
13881 (w32font_list, w32font_match): Use it.
13882 (w32font_open): Don't populate subranges.
13883 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
13884 (w32font_encode_char): Always return unicode code-point as-is.
13885 (w32font_text_extents): Supply a transformation matrix to
13886 GetGlyphOutline. Never look up by glyph index. Avoid looping
13887 twice. Use unicode version of GetTexExtentPoint32 instead of
13888 glyph index version.
13889 (set_fonts_frame): Remove.
13890 (w32_enumfont_pattern_entity): Add frame parameter, use it to
13891 set frame parameter. Use backward compatible fake foundries.
13892 Save generic family in extra slot under QCfamily. Make width slot
13893 constant. Save QCspacing value. Save list of scripts instead of
13894 binary subranges.
13895 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
13896 (add_font_entity_to_list): Use font_callback_data struct. Filter
13897 unwanted fonts.
13898 (add_one_font_entity_to_list): Use font_callback_data struct.
13899 (w32_registry): Default to iso10646_1.
13900 (fill_in_logfont): Use dpi from extra slot. Don't bother with
13901 string font registries. Don't fill in font name if it is a generic
13902 family name, fill family instead. Use spacing, family and script
13903 extra info to fill pitch, family and charset fields.
13904 (list_all_matching_fonts): Use font_callback_data struct.
13905 (unicode_range_for_char): Remove.
13906 (font_supported_scripts): New function.
13907 (w32font_initialize): Remove.
13908 (syms_of_w32font): Update which symbols are defined.
13909
13910 2008-02-01 Jason Rumney <jasonr@gnu.org>
13911
13912 * font.c (font_pixel_size): Reverse assq_no_quit args.
13913
13914 * w32term.h (FONT_WIDTH): Report max width, not average.
13915 (FONT_MAX_WIDTH): Remove.
13916 (FONT_AVG_WIDTH): New macro.
13917
13918 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
13919 redefinition of FONT_WIDTH.
13920
13921 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
13922 (w32_cache_char_metrics): Use FONT_WIDTH.
13923
13924 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
13925
13926 2008-02-01 Jason Rumney <jasonr@gnu.org>
13927
13928 * w32font.c (w32font_open): Make lfHeight negative.
13929
13930 * w32fns.c (x_default_font_parameter): Use new style font name.
13931 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
13932
13933 2008-02-01 Jason Rumney <jasonr@gnu.org>
13934
13935 * w32font.c (QCsubranges): New symbol.
13936 (w32font_open, w32font_has_char): Get subranges from subproperty
13937 of extra.
13938 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
13939 (syms_of_w32font): Define :subranges symbol.
13940
13941 * font.c (font_put_extra): Expose externally.
13942
13943 * font.h (font_put_extra): Move declaration from font.c.
13944
13945 * font.c (Ffont_get): Use font driver to determine otf capability.
13946 (adjust_anchor): Check if driver defines anchor_point before using.
13947
13948 * w32font.c (w32font_open): Handle size, height and pixel_size better.
13949 (w32font_draw): Use options.
13950 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
13951 Fix detection of truetype fonts.
13952 (registry_to_w32_charset): Handle charsets other than iso8859-1
13953 expressed as lisp symbols.
13954 (w32_registry): Express charset as lisp symbol.
13955 (fill_in_logfont): Reverse pixel and point height logic.
13956 Don't set width here. Set quality to default.
13957
13958 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
13959 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
13960
13961 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
13962 Remove redundant loop and allocation.
13963
13964 * makefile.w32-in (font.o, w32font.o): New objects.
13965 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
13966 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
13967
13968 * xdisp.c (fill_composite_glyph_string): Make the first arg to
13969 STORE_XCHARB a valid l-value.
13970
13971 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
13972 calculations for non-Truetype fonts.
13973 (x_draw_glyph_string): Sync with xterm.c.
13974 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
13975 Remove redundant code.
13976 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
13977
13978 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
13979 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
13980
13981 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
13982 (x_to_w32_charset, w32_to_x_charset): Expose externally.
13983
13984 * w32font.c: New file for w32 font backend.
13985
13986 2008-02-01 Kenichi Handa <handa@m17n.org>
13987
13988 * term.c: Don't include "buffer.h" twice.
13989
13990 2008-02-01 Kenichi Handa <handa@m17n.org>
13991
13992 * character.c (Funibyte_string): New function.
13993 (syms_of_character): Defsubr it.
13994
13995 2008-02-01 Jason Rumney <jasonr@gnu.org>
13996
13997 * w32term.c [USE_FONT_BACKEND]:
13998 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
13999 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
14000 (x_draw_glyph_string, x_draw_glyph_string_foreground)
14001 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
14002 (x_free_frame_resources): Sync with xterm.c.
14003
14004 2008-02-01 Andreas Schwab <schwab@suse.de>
14005
14006 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
14007 char-table size.
14008
14009 2008-02-01 Kenichi Handa <handa@m17n.org>
14010
14011 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
14012
14013 2008-02-01 Kenichi Handa <handa@m17n.org>
14014
14015 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
14016 font_otf_gpos, add font_drive_otf.
14017
14018 * fontset.c (fontset_find_font): Pay attention to font size
14019 specified for a font.
14020 (reorder_font_vector): Check contents of font_def.
14021
14022 * font.c (struct otf_list): Delete it.
14023 (otf_list): Make it a lisp variable.
14024 (otf_open): Use lispy otf_list.
14025 (generate_otf_features): Rename from parse_gsub_gpos_spec.
14026 (check_otf_features): New function.
14027 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
14028 New functions.
14029 (font_drive_otf): New function merging font_otf_gsub and
14030 font_otf_gpos.
14031 (font_open_for_lface): New arg spec. Change argument order.
14032 (font_load_for_face): Adjust for the change of font_open_for_lface.
14033 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
14034 Ffont_otf_gpos.
14035 (syms_of_font): Staticpro otf_list. Delete defsubr of
14036 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
14037
14038 * xfaces.c (set_font_frame_param): Adjust for the change of
14039 font_open_for_lface.
14040
14041 * font.h (font_open_for_lface): Adjust prototype.
14042 (struct font_driver): Delete members otf_gsub and otf_gpos, add
14043 member otf_drive.
14044 (font_otf_gsub, font_otf_gpos): Delete externs.
14045 (font_drive_otf): Extern it.
14046
14047 2008-02-01 Kenichi Handa <handa@m17n.org>
14048
14049 * font.c (font_at): If the window W is not on a window system,
14050 return Qnil.
14051
14052 * coding.c (produce_chars, encode_coding): Don't call
14053 insert_from_gap if no characters to produce.
14054
14055 2008-02-01 Kenichi Handa <handa@m17n.org>
14056
14057 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
14058 Fclear_face_cache.
14059
14060 * xfaces.c (face_for_font): Check also face->font==font->font.font.
14061
14062 2008-02-01 Miles Bader <miles@gnu.org>
14063
14064 * emacs.c (main): Change default value of `enable_font_backend' to 1.
14065 Parse "--disable-font-backend" option.
14066 (standard_args): Add "--disable-font-backend" option.
14067
14068 2008-02-01 Kenichi Handa <handa@m17n.org>
14069
14070 * fontset.c (fontset_find_font): New function.
14071 (fontset_font): Use fontset_find_font.
14072 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
14073 Register the specified font for all Latin characters.
14074 (new_fontset_from_font): Register the specified font for all Latin
14075 characters.
14076 (dump_fontset): For a realized fontset, include the base fontset
14077 name in the returned vector.
14078
14079 2008-02-01 Kenichi Handa <handa@m17n.org>
14080
14081 * character.h (CHAR_STRING): Cast C to unsigned on calling
14082 char_string.
14083
14084 * character.c (char_string): Type of arg C changed to unsigned.
14085 Signal an error if C is an invalid character code.
14086
14087 * editfns.c (general_insert_function, Fchar_to_string):
14088 Use CHARACTERP, not INTEGERP.
14089
14090 2008-02-01 Kenichi Handa <handa@m17n.org>
14091
14092 * character.h (MIN_MULTIBYTE_LEADING_CODE)
14093 (MAX_MULTIBYTE_LEADING_CODE): New macros.
14094
14095 * regex.c (analyse_first): Fix for multibyte characters in "case
14096 charset:" and "case categoryspec:".
14097
14098 2008-02-01 Andreas Schwab <schwab@suse.de>
14099
14100 * Makefile.in (LIBES): Move standard libraries to the end.
14101
14102 2008-02-01 Kenichi Handa <handa@m17n.org>
14103
14104 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
14105 nonzero, don't shrink the buffer nextb.
14106
14107 * buffer.h (struct buffer_text): New member inhibit_shrinking.
14108
14109 * coding.c (coding_alloc_by_making_gap): New arg offset.
14110 (alloc_destination): Call coding_alloc_by_making_gap with the arg
14111 offset.
14112 (decode_coding_iso_2022): Update coding->safe_charsets.
14113 (decode_coding_gap): Temporarily set
14114 current_buffer->text->inhibit_shrinking to 1.
14115
14116 2008-02-01 Kenichi Handa <handa@m17n.org>
14117
14118 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
14119 indexing into elements of s->cmp and s->char2b.
14120
14121 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
14122
14123 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
14124
14125 2008-02-01 Kenichi Handa <handa@m17n.org>
14126
14127 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
14128 target_multibyte instead of multibyte.
14129 (re_match_2_internal): Call bcmp_translate with target_multibyte.
14130 (bcmp_translate): Change the argument name from multibyte to
14131 target_multibyte.
14132
14133 2008-02-01 Kenichi Handa <handa@m17n.org>
14134
14135 These changes are to compile a regexp into a pattern that can be
14136 used both for multibyte and unibyte targets.
14137
14138 * Makefile.in (search.o): Depend on charset.h.
14139
14140 * character.c (multibyte_char_to_unibyte_safe): New function.
14141
14142 * search.c: Include "charset.h".
14143 (compile_pattern_1): Delete argument multibyte. Don't set
14144 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
14145 (compile_pattern): Don't compare cp->buf.target_multibyte.
14146 Compare cp->buf.charset_unibyte.
14147 (compile_pattern): Set cp->buf.target_multibyte.
14148
14149 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
14150
14151 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
14152
14153 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
14154 multibyte. Change callers.
14155 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
14156 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
14157 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
14158 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
14159 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
14160 (regex_compile): Make the compiled pattern usable both for
14161 multibyte and unibyte targets.
14162 (analyse_first): Make the fastmap usable both for multibyte and
14163 unibyte targets.
14164 (TRANSLATE_VIA_MULTIBYTE): Delete.
14165 (re_match_2_internal): Pay attention to the case that the
14166 multibyteness of bufp and target may be different.
14167
14168 2008-02-01 Kenichi Handa <handa@m17n.org>
14169
14170 * xdisp.c (x_produce_glyphs): When a font is not found, make the
14171 empty box occupy at least one column width.
14172
14173 2008-02-01 Miles Bader <miles@gnu.org>
14174
14175 * Makefile.in: Remove redundant HAVE_XFT clause.
14176
14177 2008-02-01 Kenichi Handa <handa@m17n.org>
14178
14179 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
14180
14181 2008-02-01 Kenichi Handa <handa@m17n.org>
14182
14183 * fontset.c (Finternal_char_font): Fix for the case of POSITION
14184 being nil.
14185
14186 2008-02-01 Kenichi Handa <handa@m17n.org>
14187
14188 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
14189
14190 2008-02-01 Kenichi Handa <handa@m17n.org>
14191
14192 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
14193
14194 2008-02-01 Kenichi Handa <handa@m17n.org>
14195
14196 * search.c (simple_search): Fix previous change.
14197
14198 2008-02-01 Kenichi Handa <handa@m17n.org>
14199
14200 * xftfont.c (ftfont_font_format): Extern declaration.
14201
14202 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
14203
14204 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
14205 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
14206
14207 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
14208 (ftfont_font_format): Fix previous change.
14209
14210 * font.h (Ffont_xlfd_name): EXFUN it.
14211
14212 * font.c (font_parse_xlfd): Fix the array size of `f'.
14213 (register_font_driver): Use EQ to compare driver->type.
14214
14215 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
14216 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
14217 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
14218
14219 2008-02-01 Kenichi Handa <handa@m17n.org>
14220
14221 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
14222 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
14223
14224 2008-02-01 Kenichi Handa <handa@m17n.org>
14225
14226 * xfont.c (xfont_open): Set font->format.
14227
14228 * xftfont.c (xftfont_open): Set font->format.
14229
14230 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
14231 (ftfont_list): Include FC_FONTFORMAT in FcObject.
14232 (ftfont_open): Set font->format.
14233 (ftfont_font_format): New function.
14234
14235 * font.h (struct font): New member format.
14236
14237 * font.c (Qopentype): New variable.
14238 (syms_of_font): Defsym it.
14239 (Fquery_font): Change the format of the last element of the return
14240 value.
14241
14242 2008-02-01 Kenichi Handa <handa@m17n.org>
14243
14244 * xfns.c (xic_create_xfontset): Try the default fontset name as a
14245 last resort.
14246
14247 2008-02-01 Kenichi Handa <handa@m17n.org>
14248
14249 * coding.c (detect_coding_charset): Fix detection of multi-byte
14250 charset.
14251
14252 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
14253
14254 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
14255
14256 2008-02-01 Kenichi Handa <handa@m17n.org>
14257
14258 * xdisp.c (get_next_display_element): Set it->face_id for the
14259 first component of a composition.
14260 (x_produce_glyphs): Check if the font is changed or not for composition.
14261
14262 2008-02-01 Kenichi Handa <handa@m17n.org>
14263
14264 * fontset.c (Qlatin): New variable.
14265 (syms_of_fontset): Define it as a lisp symbol.
14266 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
14267
14268 2008-02-01 Kenichi Handa <handa@m17n.org>
14269
14270 * font.c (font_unparse_fcname): Pay attention to the case that
14271 some of font property is a null string.
14272
14273 2008-02-01 Kenichi Handa <handa@m17n.org>
14274
14275 * term.c: Include "composite.h".
14276 (encode_terminal_code): Output all components of composition.
14277 Check the size of encode_terminal_src.
14278 (produce_glyphs): For composition, call produce_composite_glyph.
14279 (append_composite_glyph, produce_composite_glyph): New functions.
14280
14281 * xdisp.c (x_produce_glyphs): In handling composition, if a font
14282 is not found, get font_info from the current ascii face.
14283
14284 2008-02-01 Kenichi Handa <handa@m17n.org>
14285
14286 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
14287 buffer-file-name to Qnil before calling insert_from_buffer.
14288
14289 * font.c (font_unparse_fcname): Pay attention to the case that
14290 foundry is a null string.
14291
14292 2008-02-01 Kenichi Handa <handa@m17n.org>
14293
14294 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
14295
14296 * font.c (Qunicode_sip): New variable.
14297 (syms_of_font): Declare it as a Lisp symbol.
14298
14299 * font.h (Qunicode_sip): Extern it.
14300
14301 2008-02-01 Kenichi Handa <handa@m17n.org>
14302
14303 * composite.c (get_composition_id): Pay attention to TAB component.
14304
14305 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
14306 TAB. Adjust for the change of s->char2b which always points to
14307 the first element of allocated memory.
14308
14309 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
14310
14311 * xdisp.c (handle_composition_prop): Set it->c to the first
14312 non-TAB component.
14313 (fill_composite_glyph_string): Change argument.
14314 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
14315 (x_produce_glyphs): Fix handling of left/right padding.
14316
14317 2008-02-01 Kenichi Handa <handa@m17n.org>
14318
14319 * coding.c (detect_coding_system): Fix for handling off
14320 inhibit_iso_escape_detection. Fix for the case that no coding
14321 system is defined for a specific coding category.
14322
14323 2008-02-01 Kenichi Handa <handa@m17n.org>
14324
14325 * font.c (font_matching_entity): Delete unused local var.
14326
14327 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
14328 opening a font.
14329
14330 * fileio.c (Finsert_file_contents): On recovering a file, assume
14331 Unix-like eol.
14332 (choose_write_coding_system): On auto-saving a file, force
14333 Unix-like eol.
14334
14335 * coding.c (setup_coding_system): Fix setting of
14336 coding->common_flags based on eol_type.
14337 (coding_inherit_eol_type): If PARENT is not nil, be sure to
14338 inherit from it.
14339
14340 2008-02-01 Kenichi Handa <handa@m17n.org>
14341
14342 * alloc.c (NSTATICS): Increas to 0x600.
14343
14344 2008-02-01 Kenichi Handa <handa@m17n.org>
14345
14346 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
14347 (ftfont_list): Don't check :name property.
14348 (ftfont_match): New function.
14349 (ftfont_pattern_entity): If the pattern doesn't contain
14350 FC_SPACING, don't assume FC_MONO.
14351
14352 * font.h (struct font_driver): New member `match'.
14353 (font_update_drivers): Adjust prototype.
14354
14355 * font.c (font_parse_fcname, font_parse_name): Don't change :name
14356 property of FONT.
14357 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
14358 them unconditionally.
14359 (font_matching_entity): New function.
14360 (font_open_by_name): Try font_matching_entity if exact match is
14361 not found.
14362 (font_update_drivers): Delete the arg FONT. Return a list of
14363 actually used backends. Don't free faces, font caches here.
14364 Don't store data in frame parameters. Don't call x_set_font.
14365 (Ffont_spec): Store :name property as is.
14366 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
14367 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
14368 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
14369 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
14370 Call font->driver->otf_gsub instead of font_otf_gsub.
14371
14372 * frame.c (x_set_font_backend): Do more works that were done in
14373 font_update_drivers before.
14374
14375 * xfont.c (xfont_match): New function.
14376 (xfont_driver): Set xfont_driver.match to xfont_match.
14377 (xfont_draw): Set font in GC if necessary.
14378
14379 * ftxfont.c (ftxfont_match): New function.
14380 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
14381
14382 * xftfont.c (xftfont_match): New function.
14383 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
14384
14385 2008-02-01 Kenichi Handa <handa@m17n.org>
14386
14387 * font.h (struct font): New member scalable.
14388 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
14389 (font_otf_gsub): Adjust prototype.
14390
14391 * font.c (font_otf_capability): Fix handling of the default langsys.
14392 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
14393 Check the contents of SPEC.
14394 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
14395 (check_gstring): New function.
14396 (REPLACEMENT_CHARACTER): New macro.
14397 (font_otf_gsub): New arg alternate_subst. Be sure to set all
14398 glyph codes of GSTRING.
14399 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
14400 (font_prepare_composition): Set cmp->glyph_len.
14401 (font_open_entity): Set font->scalable.
14402 (Ffont_get): Handle :otf property.
14403 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
14404 functions.
14405 (Fquery_font): Use font->font.full_name.
14406 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
14407 Sfont_otf_alternates.
14408
14409 * ftfont.c (ftfont_open): Set font->font.full_name and
14410 font->font.name properly. Fix calculation of font->font.height
14411 and font->min_width.
14412
14413 * ftxfont.c (ftxfont_create_gcs): New function.
14414 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
14415 (ftxfont_draw_backgrond): Fix filling region.
14416 (ftxfont_default_fid): New function.
14417 (ftxfont_open): Set xfont->fid to the return value of
14418 ftxfont_default_fid.
14419 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
14420 (ftxfont_done_face): Free only GCs that are created by
14421 ftxfont_create_gcs.
14422 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
14423
14424 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
14425 Clip to src->width, etc (not src->clip_XXX).
14426
14427 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
14428 FontBackend frame parameter.
14429
14430 2008-02-01 Kenichi Handa <handa@m17n.org>
14431
14432 * font.h (struct font_driver_list): New member `on'.
14433 (Fclear_font_cache): EXFUN it.
14434 (font_update_drivers): Extern it.
14435
14436 * font.c (font_unparse_fcname): Fix typo (swidth->width).
14437 (font_list_entities): Check driver_list->on.
14438 (register_font_driver): Initalize `on' member to 0.
14439 (font_update_drivers): New function.
14440 (Fclear_font_cache): Check driver_list->on.
14441
14442 * frame.h (Qfont_backend): Extern it.
14443 (x_set_font_backend): Extern it.
14444
14445 * frame.c (Qfont_backend): New variable.
14446 (frame_parms): New element for font-backend.
14447 (x_set_font_backend): New function.
14448
14449 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
14450 FontBackend frame parameter.
14451 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
14452 x_set_font_backend.
14453
14454 * xfont.c (xfont_list): Don't try listing by :name property if the
14455 name is not for XLFD.
14456
14457 2008-02-01 Kenichi Handa <handa@m17n.org>
14458
14459 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
14460 (LGLYPH_SET_TO): New macros.
14461 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
14462 element of G is vector or not.
14463 (font_at): Extern it.
14464
14465 * font.c: Include window.h.
14466 (font_lispy_object): New function.
14467 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
14468 end of valid glyph.
14469 (font_close_object): Fix getting (struct font *).
14470 (font_at): New function.
14471 (Ffont_get): If FONT is a font-object, get entity from it.
14472 (Ffont_make_gstring): Initialize elements of glyphs with nil.
14473 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
14474 range check.
14475 (Ffont_at): New function.
14476 (syms_of_font): Defsubr Sfont_at.
14477
14478 * xdisp.c (it_props): Move the entry for Qauto_composed to just
14479 before the entry for Qcomposition.
14480 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
14481 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
14482 the font in gstring.
14483 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
14484 LGLYPH_FORM (g) to detect the end of valid glyph.
14485 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
14486 we are composing with gstring.
14487
14488 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
14489 Check if adjustment is vector or not.
14490
14491 * Makefile.in (font.o): Make it depends on window.h.
14492
14493 2008-02-01 Kenichi Handa <handa@m17n.org>
14494
14495 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
14496 adjustment is vector or not.
14497
14498 2008-02-01 Miles Bader <miles@gnu.org>
14499
14500 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
14501
14502 2008-02-01 Kenichi Handa <handa@m17n.org>
14503
14504 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
14505 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
14506 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
14507
14508 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
14509 (DEVICE_DELTA): Fix typo.
14510 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
14511 LGLYPH format.
14512
14513 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
14514 the change of LGLYPH format.
14515
14516 2008-02-01 Kenichi Handa <handa@m17n.org>
14517
14518 * ftfont.c (ftfont_list): Fix typo.
14519 (ftfont_build_basic_charsets): Don't include letters with diacritics.
14520
14521 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
14522
14523 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
14524
14525 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
14526 xftface_info is non-NULL.
14527
14528 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
14529
14530 * ftfont.c (ftfont_list): Move misplaced #endif.
14531
14532 2008-02-01 Kenichi Handa <handa@m17n.org>
14533
14534 * ftfont.c (ftfont_list): Pay attention to the case that
14535 FC_CAPABILITY is not defined.
14536
14537 2008-02-01 Kenichi Handa <handa@m17n.org>
14538
14539 * xftfont.c (xftfont_open): Set charset related members to -1.
14540
14541 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
14542 QCname.
14543 (ftfont_open): Set charset related members to -1.
14544
14545 * fontset.c (Votf_script_alist): New variable.
14546 (syms_of_fontset): Initialize it.
14547 (fontset_font): Delete unused variable.
14548
14549 * fontset.h (Votf_script_alist): Extern it.
14550
14551 * font.c (font_find_for_lface): Optimize code.
14552
14553 * font.h (font_close_object, font_merge_old_spec): Extern them.
14554
14555 2008-02-01 Kenichi Handa <handa@m17n.org>
14556
14557 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
14558 (syms_of_font): Initialize them.
14559 (font_pixel_size): Allow float value in dpi.
14560 (font_prop_validate_type): Delete.
14561 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
14562 Change caller.
14563 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
14564 (font_prop_validate_extra): Delete.
14565 (font_prop_validate_spacing): New function.
14566 (font_property_table): Add elements for all known properties.
14567 (get_font_prop_index): Rename from check_font_prop_name. New
14568 argument FROM. Change caller.
14569 (font_prop_validate): Validate all known properties.
14570 (font_put_extra): Delete argument force. Change caller.
14571 (font_expand_wildcards): Make it static. Fix the way of shrinking
14572 the possible range.
14573 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
14574 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
14575 Change caller.
14576 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
14577 (font_parse_fcname): Delete argument merge. Fix parsing of point
14578 size. Don't validate properties values here. Change caller.
14579 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
14580 (font_open_by_name): Delete unused variable.
14581 (Ffont_spec): Likewise. Validate property values.
14582 (Ffont_match_p): New function.
14583
14584 * font.h (QCscalable): Extern it.
14585 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
14586
14587 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
14588
14589 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
14590 (xfont_list_pattern): New function.
14591 (xfont_list): Use xfont_list_pattern.
14592
14593 2008-02-01 Kenichi Handa <handa@m17n.org>
14594
14595 * font.h (Flist_fonts): EXFUN it.
14596
14597 2008-02-01 Jason Rumney <jasonr@gnu.org>
14598
14599 * w32term.c (w32_initialize): Add back smoothing_type and
14600 smoothing_enabled definitions.
14601
14602 2008-02-01 Kenichi Handa <handa@m17n.org>
14603
14604 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
14605 s->face->font on determining underline position.
14606
14607 2008-02-01 Kenichi Handa <handa@m17n.org>
14608
14609 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
14610 (font_has_char): Accept font-object too.
14611 (font_find_for_lface): Try at first with a size specified in face.
14612
14613 2008-02-01 Kenichi Handa <handa@m17n.org>
14614
14615 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
14616 font_open_by_name.
14617
14618 2008-02-01 Kenichi Handa <handa@m17n.org>
14619
14620 * font.h (QCspacing, QCdpi): Extern them.
14621 (enum font_spacing): New enum.
14622 (FONT_PIXEL_SIZE_QUANTUM): New macro.
14623
14624 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
14625 (QCspacing, QCdpi): New variables.
14626 (syms_of_font): Initialize them.
14627 (font_pixel_size): New function.
14628 (font_put_extra): New function.
14629 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
14630 in FONT_EXTRA.
14631 (font_parse_fcname): Handle enumerated values (e.g. bold).
14632 Fix handling font size. Add QCname property that contains only
14633 unknown properties.
14634 (font_score): Change argument. Change caller. Pay attention to
14635 FONT_PIXEL_SIZE_QUANTUM.
14636 (font_sort_entites, font_list_entities, font_find_for_lface)
14637 (font_open_for_lface, font_open_by_name): Fix handling of font size.
14638 (Ffont_spec): Add QCname property that contains only unknown properties.
14639
14640 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
14641 include weight in listing pattern, instead check weight of each
14642 listed font. Don't include scalable in pattern. Pay attention to
14643 FONT_PIXEL_SIZE_QUANTUM.
14644
14645 2008-02-01 Kenichi Handa <handa@m17n.org>
14646
14647 * font.c (font_parse_fcname): Fix parsing of point-size.
14648 (font_unparse_fcname): Produce symbolic names for style properties.
14649 (font_list_entities): Handle float size correctly.
14650 (font_open_by_name): Prefer `normal' property values if the name
14651 doesn't specify them.
14652
14653 * fontset.c (Finternal_char_font): Use font_get_name, not
14654 Ffont_xlfd_name.
14655
14656 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
14657 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
14658 pattern. Don't force scalable.
14659
14660 * xftfont.c (xftfont_open): For generating a name, start from
14661 96-byte buffer.
14662
14663 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
14664
14665 * frame.h (x_new_fontset2): Fix prototype.
14666
14667 2008-02-01 Kenichi Handa <handa@m17n.org>
14668
14669 * font.h (struct font_driver): Delete member parse_name.
14670 (font_match_p, font_get_spec, font_parse_fcname)
14671 (font_unparse_fcname): Extern them.
14672 (font_get_name): Adjust prototype.
14673
14674 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
14675 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
14676 (font_expand_wildcards): Fix handling ENCODING field. Avoid
14677 unnecessary checks for weight, slant, and swidth.
14678 (font_parse_fcname): New function.
14679 (font_unparse_fcname): New function.
14680 (font_parse_name): New function.
14681 (font_match_p): New function.
14682 (font_get_name): Change return value to Lisp string.
14683 (font_get_spec): New function.
14684 (Qunspecified, Qignore_defface): Don't extern them.
14685 (font_find_for_lface): Assume that LFACE is fully specified.
14686 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
14687 object, use it for FACE.
14688 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
14689 driver->parse_name.
14690 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
14691
14692 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
14693 prototype.
14694
14695 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
14696 argument F. Don't call Fnew_fontset. Instead, directly call
14697 make_fontset.
14698
14699 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
14700
14701 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
14702 of x_new_fontset2.
14703
14704 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
14705 (Qsans__serif): New variables.
14706 (ftfont_generic_family_list): New variable.
14707 (syms_of_ftfont): Initialize the above variables.
14708 (ftfont_pattern_entity): Delete argument NAME.
14709 (ftfont_list_generic_family): New function.
14710 (ftfont_parse_name): Delete this function.
14711 (ftfont_list): Try generic family only when FcFontList found no font.
14712 (ftfont_list_family): Fix args to FcObjectSetBuild.
14713
14714 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
14715 object in attrs[LFACE_FONT_INDEX].
14716 (set_lface_from_font_name): Cancel all changes for font-backend.
14717 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
14718 function.
14719 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
14720 font object in QCfont attribute.
14721 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
14722 (realize_default_face) [USE_FONT_BACKEND]: Call
14723 set_lface_from_font_and_fontset.
14724
14725 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
14726 "fixed", and signal error here if no suitable font was found.
14727
14728 * xfont.c (xfont_parse_name): Delete this function.
14729
14730 * xftfont.c (xftfont_open): Change coding style of error
14731 handling. Generate fontconfig's fontname pattern.
14732
14733 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
14734 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
14735
14736 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
14737 Both args FONTSET and FONT_OBJECT must be existing ones.
14738
14739 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14740
14741 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
14742
14743 2008-02-01 Kenichi Handa <handa@m17n.org>
14744
14745 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
14746
14747 * font.h (struct font): Fix typo.
14748
14749 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
14750 XLFD_XXX_INDEX.
14751 (enum xlfd_field_mask): New enum.
14752 (intern_font_field): Changed argument. Change caller. If digits
14753 are followed by non-digits, return a symbol.
14754 (font_expand_wildcards): New function.
14755 (font_parse_xlfd): Fix wildcard handling.
14756 (Ffont_spec): If :name is specified, reflect the info in the other
14757 properties.
14758
14759 * ftfont.c (ftfont_pattern_entity): Fix typo.
14760 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
14761 locale.
14762
14763 2008-02-01 Kenichi Handa <handa@m17n.org>
14764
14765 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
14766
14767 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
14768 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
14769 registry doesn't specify encoding part.
14770 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
14771 (font_open_by_name): At first try parsing the name.
14772 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
14773 as Lisp symbols.
14774
14775 * fontset.c (reorder_font_vector): Pay attention to the case that
14776 the 3rd element of font_def is nil.
14777 (fontset_font): For the default fontset, append one more fontset
14778 elements for a script-based font specification. Don't add script
14779 attribute on finding a font.
14780 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
14781 font name.
14782 (fontset_ascii_font): If a font can't be opened, return nil.
14783
14784 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
14785 (ftfont_pattern_entity): New function.
14786 (ftfont_get_cache): Assume that freetype_font_cache is already
14787 initialized.
14788 (ftfont_list): Handle the case that a file is specified in font
14789 name. Use ftfont_pattern_entity to generate entities.
14790 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
14791 (syms_of_ftfont): Initialize freetype_font_cache.
14792
14793 * xftfont.c (xftfont_open): Make the font name fontconfig's
14794 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
14795 (xftfont_close): Free font->font.name if not NULL.
14796
14797 * xfont.c (xfont_list): If script is specified for a font, return
14798 null_vector.
14799 (xfont_list_family): Declare argument type.
14800
14801 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
14802 name, set LFACE_FONT (lface) to nil.
14803
14804 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
14805 return Qnil.
14806
14807 2008-02-01 Kenichi Handa <handa@m17n.org>
14808
14809 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
14810 (standard_args): Add "-enable-font-backend".
14811
14812 2008-02-01 Kenichi Handa <handa@m17n.org>
14813
14814 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
14815 (struct xftdraw_list, xftdraw_list): Delete them.
14816 (register_xftdraw, check_xftdraw): Delete them.
14817 (xftfont_prepare_face): Don't call register_xftdraw.
14818 (xftfont_done_face): Don't call check_xftdraw.
14819 (xftfont_draw): Get background color only when with_background is
14820 nonzero.
14821
14822 * xfont.c (xfont_encode_char): Fix calculation of char2b.
14823
14824 2008-02-01 Kenichi Handa <handa@m17n.org>
14825
14826 These changes are for the new font handling codes.
14827
14828 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
14829 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
14830 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
14831 (FONTSRC, FONTOBJ): New variables.
14832 (obj): Add $(FONTOBJ).
14833 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
14834 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
14835 @LIBOTF_LIBS@.
14836 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
14837 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
14838
14839 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
14840
14841 * character.h (Vscript_representative_chars): Extern it.
14842
14843 * character.c (Vscript_representative_chars): New variable.
14844 (syms_of_character): Declare it as a Lisp variable.
14845
14846 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
14847 enable_font_backend is nonzero, accept the composition method
14848 COMPOSITION_WITH_GLYPH_STRING.
14849
14850 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
14851 enumeration COMPOSITION_WITH_GLYPH_STRING.
14852
14853 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
14854 members clip_x, clip_y, clip_width, and clip_height.
14855 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
14856
14857 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
14858 --enable-font-backend. Call syms_of_font.
14859
14860 * fns.c (assoc_no_quit): New function.
14861
14862 * fontset.h (FONT_INFO_FROM_FACE): New macro.
14863 (face_for_font, new_fontset_from_font)
14864 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
14865
14866 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
14867 (fontset_font, fontset_ascii, face_for_char)
14868 (make_fontset_for_ascii_face, Ffont_info)
14869 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
14870 is nonzero, use font-backend mechanism.
14871 (find_font_encoding): Make it non-static.
14872 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
14873 New functions.
14874
14875 * frame.h (struct frame): New members resx and resy.
14876 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
14877 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
14878
14879 * frame.c [USE_FONT_BACKEND]: Include "font.h".
14880 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
14881
14882 * lisp.h (assoc_no_quit): Extern it.
14883
14884 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
14885 Through out the file, use FONT_INFO_FROM_FACE instead of
14886 FONT_INFO_FROM_ID, use get_per_char_metric instead of
14887 rif->per_char_metric.
14888 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
14889 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
14890 (get_glyph_face_and_encoding, fill_composite_glyph_string)
14891 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
14892 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
14893 nonzero, use font-backend mechanism.
14894 (get_per_char_metric): New function.
14895
14896 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
14897 (set_lface_from_font_name)
14898 (set_font_frame_param, free_realized_face)
14899 (prepare_face_for_display, clear_face_gcs)
14900 (Finternal_set_font_selection_order, realize_x_face)
14901 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
14902 font-backend mechanism.
14903 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
14904 (load_face_font) [USE_FONT_BACKEND]: Abort.
14905 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
14906 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
14907
14908 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
14909 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
14910 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
14911 nonzero, register all available font drivers. Call
14912 x_default_font_parameter for deciding a font.
14913 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
14914
14915 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
14916 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
14917 (x_set_glyph_string_clipping_exactly)
14918 (x_compute_glyph_string_overhangs)
14919 (x_draw_glyph_string_foreground)
14920 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
14921 (x_free_frame_resources) [USE_FONT_BACKEND]: If
14922 enable_font_backend is nonzero, use font-backend mechanism.
14923 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
14924
14925 2008-02-01 Kenichi Handa <handa@m17n.org>
14926
14927 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
14928 system_eol_type.
14929 (syms_of_coding): Initialize system_eol_type.
14930
14931 * process.c (Fset_process_coding_system): Inherit system's eol
14932 format if necessary.
14933
14934 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14935
14936 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
14937
14938 2008-02-01 Kenichi Handa <handa@m17n.org>
14939
14940 * coding.c (decode_eol): Pay attention to buffer relocation in
14941 del_range_2.
14942 (decode_coding): Call decode_eol before restoring undo_list.
14943
14944 2008-02-01 Kenichi Handa <handa@m17n.org>
14945
14946 * charset.c (Fdefine_charset_internal): Fix setting of
14947 emacs_mule_bytes.
14948
14949 2008-02-01 Kenichi Handa <handa@m17n.org>
14950
14951 * keyboard.c (read_char): Check if C is a character or not before
14952 looking up Vkeyboard_translate_table.
14953
14954 2008-02-01 Kenichi Handa <handa@m17n.org>
14955
14956 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
14957 condition to terminate the loop.
14958
14959 2008-02-01 Kenichi Handa <handa@m17n.org>
14960
14961 * coding.c (produce_composition): Compare charbuf[i] instead of
14962 args[i] against 0.
14963 (Fterminal_coding_system): Use EQ to compare Lisp objects.
14964
14965 2008-02-01 Kenichi Handa <handa@m17n.org>
14966
14967 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
14968 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
14969 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
14970 detect_coding.
14971 (emacs_mule_char): Handle old style (Emacs 20) component character
14972 of a composition.
14973 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
14974 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
14975 composition rule.
14976 (decode_coding_emacs_mule): Handle invalid bytes correctly.
14977
14978 2008-02-01 Kenichi Handa <handa@m17n.org>
14979
14980 * coding.c (encode_coding_ccl): Allocate destination dynamically
14981 when necessary.
14982
14983 2008-02-01 Kenichi Handa <handa@m17n.org>
14984
14985 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
14986 the loop. When quitted, show a proper error message.
14987
14988 2008-02-01 Kenichi Handa <handa@m17n.org>
14989
14990 * xterm.c (x_set_glyph_string_clipping_exactly): Set
14991 src->clip_head and src->clip_tail temporarily instead of src->hl.
14992
14993 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
14994 character sequence.
14995 (Fccl_execute_on_string): Use ASET, not XSET.
14996
14997 2008-02-01 Kenichi Handa <handa@m17n.org>
14998
14999 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
15000
15001 2008-02-01 Kenichi Handa <handa@m17n.org>
15002
15003 * coding.c (decode_coding): Fix the condition of terminating the
15004 decoding loop.
15005
15006 2008-02-01 Kenichi Handa <handa@m17n.org>
15007
15008 * data.c (Faset): On setting a character bigger than 255 in a
15009 unibyte string, signal an error instead of make the string multibyte.
15010
15011 2008-02-01 Kenichi Handa <handa@m17n.org>
15012
15013 * charset.c (map_charset_chars): Fix for ascii-compatible charset
15014 made by a mapping table.
15015
15016 2008-02-01 Kenichi Handa <handa@m17n.org>
15017
15018 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
15019 not.
15020 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
15021 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
15022
15023 * xterm.c (x_draw_composite_glyph_string_foreground): Check
15024 s->face is NULL or not.
15025
15026 2008-02-01 Kenichi Handa <handa@m17n.org>
15027
15028 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
15029 (x_draw_glyph_string): Fix drawing of right_overhang and
15030 left_overhang around/on cursor.
15031
15032 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
15033
15034 2008-02-01 Kenichi Handa <handa@m17n.org>
15035
15036 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
15037
15038 2008-02-01 Kenichi Handa <handa@m17n.org>
15039
15040 * coding.c (Fdefine_coding_system_internal)
15041 (Fdefine_coding_system_alias): Avoid a duplicated element in
15042 Vcoding_system_alist.
15043
15044 2008-02-01 Kenichi Handa <handa@m17n.org>
15045
15046 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
15047
15048 * coding.c (Qcoding_system_define_form): New variable.
15049 (syms_of_coding): Intern and staticpro it.
15050 (Fcoding_system_p): Check Qcoding_system_define_form.
15051 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
15052
15053 * coding.h (CODING_SYSTEM_P): If ID is not available, call
15054 Fcoding_system_p.
15055 (CHECK_CODING_SYSTEM): If ID is not available, call
15056 Fcheck_coding_system.
15057 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
15058 Try also Fcheck_coding_system.
15059
15060 2008-02-01 Kenichi Handa <handa@m17n.org>
15061
15062 * coding.c (code_conversion_restore): GCPRO arg.
15063
15064 2008-02-01 Kenichi Handa <handa@m17n.org>
15065
15066 * character.c (lisp_string_width): Check multibyteness of STRING.
15067
15068 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15069
15070 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
15071 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
15072 (decode_mac_font_name): Use decode_coding_c_string instead of
15073 decode_coding.
15074 (x_load_font): Initialize fontp->fontset to -1. Set
15075 fontp->encoding_type.
15076
15077 2008-02-01 Kenichi Handa <handa@m17n.org>
15078
15079 * search.c (search_buffer): Give up BM search on case-fold-search
15080 if one of a target character has a case-equivalence of different
15081 byte length even if that target charcter is an ASCII.
15082 (simple_search): Fix calculation of byte length of matched text.
15083 (boyer_moore): Fix handling of case-equivalent multibyte characters.
15084
15085 2008-02-01 Kenichi Handa <handa@m17n.org>
15086
15087 * coding.c (decode_coding): Fix handling of invalid bytes.
15088
15089 2008-02-01 Kenichi Handa <handa@m17n.org>
15090
15091 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
15092 Unicode characters.
15093
15094 2008-02-01 Kenichi Handa <handa@m17n.org>
15095
15096 * coding.c (encode_coding_object): If a pre-write-conversion
15097 function makes a new buffer, kill it.
15098
15099 2008-02-01 Kenichi Handa <handa@m17n.org>
15100
15101 * coding.c (QCascii_compatible_p): New variable.
15102 (syms_of_coding): Initialize it.
15103 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
15104 calling string_char.
15105 (record_conversion_result): Add `default:' case.
15106 (coding_charset_list): Delete unused variable `coding_type'.
15107 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
15108 property in the plist of the coding system.
15109 (Fcoding_system_put): Check QCascii_compatible_p.
15110
15111 2008-02-01 Miles Bader <miles@gnu.org>
15112
15113 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
15114 removed calculation of frame `f', as it's now used.
15115
15116 2008-02-01 Kenichi Handa <handa@m17n.org>
15117
15118 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
15119 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
15120 (UNIDATA): New variable.
15121 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
15122 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
15123 $(RUN_TEMACS) unconditionally.
15124
15125 2008-02-01 Kenichi Handa <handa@m17n.org>
15126
15127 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
15128 (admindir): New variable.
15129 ($(lispsource)international/charprop.el): New target.
15130
15131 2008-02-01 Miles Bader <miles@gnu.org>
15132
15133 * character.c (chars-in-region): Remove obsolete function.
15134 (syms_of_character): Remove its initialization.
15135
15136 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
15137
15138 * w32select.c (validate_coding_system)
15139 (setup_windows_coding_system): New functions.
15140 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
15141 setup_windows_coding_system.
15142 (setup_config, Fw32_get_clipboard_data): Use
15143 validate_coding_system.
15144 (Fx_selection_exists): Move call to setup_config to a place
15145 where signals are allowed.
15146
15147 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
15148 (Fcheck_coding_system): Add declarations.
15149
15150 2008-02-01 Kenichi Handa <handa@m17n.org>
15151
15152 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
15153
15154 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15155
15156 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
15157 string as the second argument for x_new_fontset.
15158
15159 2008-02-01 Kenichi Handa <handa@m17n.org>
15160
15161 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
15162 (encode_coding_object): Use safe_call instead of call2.
15163
15164 2008-02-01 Kenichi Handa <handa@m17n.org>
15165
15166 * fontset.c (Fset_fontset_font): Check family element of a given vector.
15167
15168 * Makefile.in (lisp): Include charprop.el.
15169
15170 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15171
15172 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
15173 Not sure if it's unnecessary.
15174
15175 2008-02-01 Steven Tamm <steventamm@mac.com>
15176
15177 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
15178 some possibly unnecessary fontset checking code that crashed
15179 when creating a new frame.
15180
15181 2008-02-01 Kenichi Handa <handa@m17n.org>
15182
15183 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
15184 lookup_face.
15185
15186 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
15187
15188 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
15189
15190 2008-02-01 Kenichi Handa <handa@m17n.org>
15191
15192 * coding.c: Cancel the change done in HEAD on 2008-02-01.
15193 (coding_charset_list): New function.
15194
15195 * coding.h (coding_charset_list): Extern it.
15196
15197 2008-02-01 Kenichi Handa <handa@m17n.org>
15198
15199 * fontset.c (Fset_fontset_font): Call find_font_encoding with
15200 concatenation of family and registry.
15201
15202 2008-02-01 Kenichi Handa <handa@m17n.org>
15203
15204 * character.h (BYTE8_STRING): Fix typo.
15205
15206 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
15207 string to multibyte (sync to HEAD).
15208
15209 * casefiddle.c (casify_region): Handle changes in byte-length
15210 using replace_range_2 (sync to HEAD).
15211
15212 2008-02-01 Andreas Schwab <schwab@suse.de>
15213
15214 * chartab.c (map_char_table): GCPRO table and arg.
15215
15216 2008-02-01 Kenichi Handa <handa@m17n.org>
15217
15218 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
15219 already at limit.
15220
15221 2008-02-01 Kenichi Handa <handa@m17n.org>
15222
15223 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
15224 instead of fast_c_string_match_ignore_case.
15225 (find_font_encoding): Change argument to Lisp_Object. Use
15226 fast_string_match_ignore_case instead of
15227 fast_c_string_match_ignore_case. Change caller.
15228
15229 2008-02-01 Kenichi Handa <handa@m17n.org>
15230
15231 * xdisp.c (get_next_display_element): In unibyte case, decide to
15232 display in octal form by checking a character by
15233 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
15234
15235 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
15236
15237 * character.c (unibyte_has_multibyte_table): New variable.
15238
15239 * character.h (unibyte_has_multibyte_table): Extern it.
15240 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
15241
15242 2008-02-01 Kenichi Handa <handa@m17n.org>
15243
15244 * coding.c (encode_coding_iso_2022): Fix handling of charset
15245 annotation.
15246
15247 2008-02-01 Kenichi Handa <handa@m17n.org>
15248
15249 * coding.c (setup_coding_system): If coding_system is nil, use
15250 Qundecided.
15251 (Fterminal_coding_system): Return nil if terminal coding system is
15252 `undecided'.
15253 (syms_of_coding): Define coding-system `undecided' here. Setup
15254 terminal_coding as `undecided'.
15255
15256 2008-02-01 Kenichi Handa <handa@m17n.org>
15257
15258 * xdisp.c (message_dolog, set_message_1): Call
15259 unibyte_char_to_multibyte with arg type int.
15260
15261 * lread.c (read1): Fix reading of a char-table.
15262
15263 * print.c (print_object): Include sub char-table in circularities
15264 detection.
15265
15266 2008-02-01 Kenichi Handa <handa@m17n.org>
15267
15268 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
15269 Append the found sequences in car of ARGS instead of prepending.
15270
15271 2008-02-01 Kenichi Handa <handa@m17n.org>
15272
15273 * fileio.c (report_file_error): Make a unibyte string from
15274 strerror (errorno).
15275 (Fsubstitute_in_file_name): Fix the arg to
15276 unibyte_char_to_multibyte. It is evaluated twice.
15277
15278 2008-02-01 Kenichi Handa <handa@m17n.org>
15279
15280 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
15281
15282 2008-02-01 Kenichi Handa <handa@m17n.org>
15283
15284 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
15285 BOM is not found.
15286 (detect_coding, detect_coding_system): Optimization for ISO-2022
15287 when no 8-bit data is found.
15288
15289 2008-02-01 Jason Rumney <jasonr@gnu.org>
15290
15291 * w32fns.c (x_to_w32_font): Update to use new coding struct.
15292
15293 2008-02-01 Kenichi Handa <handa@m17n.org>
15294
15295 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
15296 CHARS.
15297
15298 2008-02-01 Steven Tamm <steventamm@mac.com>
15299
15300 * macterm.c (mac_encode_char): Add charset argument and update
15301 to use encoding_type.
15302 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
15303 switch to pure fontset.
15304 (decode_mac_font_name): Temporarily remove decoding.
15305 (x_font_name_to_mac_font_name): Temporarily remove encoding.
15306 (x_load_font): Temporarily remove encoding.
15307
15308 2008-02-01 Kenichi Handa <handa@m17n.org>
15309
15310 * xfaces.c (Fface_font): If frame is not on a window system,
15311 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
15312 refer to face->font.
15313 (split_font_name_into_vector, build_font_name_from_vector)
15314 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
15315 when HAVE_WINDOW_SYSTEM is defined.
15316
15317 2008-02-01 Kenichi Handa <handa@m17n.org>
15318
15319 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
15320 (x_produce_glyphs): Fix setting of members of cmp in case
15321 cmp->glyph_len is zero.
15322
15323 * fontset.c (Fset_fontset_font): Fix docstring.
15324 (Ffontset_info): Make it backward compatible. New arg ALL.
15325
15326 2008-02-01 Kim F. Storm <storm@cua.dk>
15327
15328 * process.c (read_process_output): Grow decoding_buf when needed;
15329 this could cause a crash in allocate_string and compact_small_strings.
15330
15331 2008-02-01 Kenichi Handa <handa@m17n.org>
15332
15333 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
15334
15335 2008-02-01 Kenichi Handa <handa@m17n.org>
15336
15337 * coding.c (setup_coding_system): Set coding->common_flags
15338 correctly for raw-text.
15339 (consume_chars): On encoding unibyte text by raw-text, don't check
15340 multibyte form.
15341 (encode_coding): On encoding by raw-text, never use translation tables.
15342
15343 * fileio.c (e_write): Short cut for the case of no encoding.
15344
15345 2008-02-01 Kenichi Handa <handa@m17n.org>
15346
15347 * coding.c (detect_coding, detect_coding_system): Delete unused
15348 variables.
15349
15350 2008-02-01 Kenichi Handa <handa@m17n.org>
15351
15352 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
15353 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
15354
15355 2008-02-01 Kenichi Handa <handa@m17n.org>
15356
15357 * coding.c (Ffind_coding_systems_region_internal): Include
15358 raw-text and no-conversion in the result.
15359
15360 2008-02-01 Kenichi Handa <handa@m17n.org>
15361
15362 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
15363 (load_font_get_repertory): Delete unnecessary check of ENCODING of
15364 FONT_DEF.
15365 (font_def_arg, add_arg, from_arg, to_arg): New args.
15366 (set_fontset_font): Change argument.
15367 (Fset_fontset_font): Fix for the case that TARGET is a script
15368 name and charset name.
15369 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
15370
15371 2008-02-01 Kenichi Handa <handa@m17n.org>
15372
15373 * fontset.c (fontset_font): Rename from fontset_face. Change return
15374 value.
15375 (face_suitable_for_char_p, face_for_char): Adjust for the change
15376 of fontset_font.
15377 (make_fontset_for_ascii_face): Fix setting of the fontset element
15378 for ASCII.
15379 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
15380 to get a font name.
15381 (Ffontset_info): Adjust for the change of fontset_font.
15382
15383 * coding.c (emacs_mule_char): Check invalid code more rigidly.
15384
15385 * character.h (LEADING_CODE_LATIN_1_MIN)
15386 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
15387
15388 2008-02-01 Kenichi Handa <handa@m17n.org>
15389
15390 * editfns.c (check_translation): New function.
15391 (Ftranslate_region_internal): Handle M:N mapping.
15392
15393 2008-02-01 Kenichi Handa <handa@m17n.org>
15394
15395 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
15396
15397 2008-02-01 Kenichi Handa <handa@m17n.org>
15398
15399 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
15400 goto invalid_code.
15401 (decode_coding_iso_2022): Fix handling of invalid designation.
15402
15403 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
15404 after calling code_conversion_save.
15405
15406 2008-02-01 Kenichi Handa <handa@m17n.org>
15407
15408 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
15409
15410 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
15411
15412 * fontset.c: Include "intervals.h".
15413 (fontset_face): Fix comparing of Lisp_Objects.
15414 (free_face_fontset, new_fontset_from_font_name): Fix
15415 Lisp_Object/int mixup.
15416
15417 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
15418
15419 * coding.c: Add many prototypes for static functions.
15420 (get_translation_table): Allow max_lookup to be NULL.
15421 (decode_coding, Ffind_coding_systems_region_internal)
15422 (Funencodable_char_position, Fcheck_coding_systems_region): Call
15423 get_translation_table with max_lookup NULL.
15424
15425 2008-02-01 Kenichi Handa <handa@m17n.org>
15426
15427 * coding.c (get_translation_table): Declare it as Lisp_Object.
15428 (LOOKUP_TRANSLATION_TABLE): New macro.
15429 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
15430 instead of CHAR_TABLE_REF.
15431
15432 2008-02-01 Kenichi Handa <handa@m17n.org>
15433
15434 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
15435 annotation data format.
15436 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
15437 Change arguments FROM and TO to single argument NCHARS. Change caller.
15438 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
15439 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
15440 (decode_coding_ccl, decode_coding_charset): Pay attention to
15441 coding->charbuf_used.
15442 (get_translation): New function.
15443 (produce_chars): New arguments translation_table and last_block.
15444 Translate characters here. Return number of carryover chars.
15445 Change caller.
15446 (produce_composition): New argument pos. Change caller.
15447 Adjust for the change of annotation data format.
15448 (produce_charset, produce_annotation): Likewise.
15449 (decode_coding, encode_coding): Don't call translate_chars.
15450 (consume_chars): New arg translation_table. Change caller.
15451 (translate_chars): Delete.
15452 (syms_of_coding): Make translation-table's number of extra slots 2.
15453
15454 2008-02-01 Kenichi Handa <handa@m17n.org>
15455
15456 * search.c (simple_search): Fix setting this_pos_byte in backward
15457 search.
15458
15459 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
15460 byte sequence.
15461 (detect_coding_ccl): Fix setting of the variable valids.
15462
15463 2008-02-01 Kenichi Handa <handa@m17n.org>
15464
15465 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
15466
15467 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
15468
15469 * editfns.c (Ftranslate_region_internal): Rename from
15470 Ftranslate_region. Accept a char-table in TABLE.
15471 (syms_of_editfns): Defsubr Stranslate_region_internal.
15472
15473 * xfaces.c (set_lface_from_font_name): If a font is specified for
15474 a frame, generate a fontset from the font.
15475 (build_scalable_font_name): If the scalable font is requested for
15476 a specific size, don't change that size.
15477 (try_font_list): Try a scalable font also in the case that a
15478 pattern string is specified.
15479
15480 2008-02-01 Kenichi Handa <handa@m17n.org>
15481
15482 * xfaces.c (Fface_font): New optional arg CHARACTER.
15483
15484 2008-02-01 Kenichi Handa <handa@m17n.org>
15485
15486 * charset.h (CHARSET_OFFSET): New macro.
15487
15488 2008-02-01 Kenichi Handa <handa@m17n.org>
15489
15490 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
15491
15492 * fontset.c (fontset_face): Handle the case that repertory is a
15493 char-table.
15494 (find_font_encoding): Return nil for unknown encoding.
15495 (Fset_fontset_font): Ignore a font of unknown encoding.
15496
15497 2008-02-01 Kenichi Handa <handa@m17n.org>
15498
15499 * keymap.c (describe_vector): Handle default value of a char table.
15500
15501 * fontset.c (fontset_face): Handle fallback fonts correctly.
15502 (Ffontset_info): Return infomation about fallback fonts.
15503
15504 2008-02-01 Kenichi Handa <handa@m17n.org>
15505
15506 * fontset.c (FONTSET_DEFAULT): New macro.
15507 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
15508 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
15509 the case that it is nil.
15510 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
15511 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
15512
15513 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
15514 subset or superset.
15515
15516 2008-02-01 Kenichi Handa <handa@m17n.org>
15517
15518 * emacs.c (main): Call init_charset after syms_of_XXX.
15519
15520 * charset.c (Vcharset_map_directory): Delete.
15521 (Vcharset_map_path): New variable.
15522 (load_charset_map_from_file): Use Vcharset_map_path instead.
15523 (init_charset): Initialize Vcharset_map_path.
15524 (syms_of_charset): Delete declaration of "charset-map-directory",
15525 add declaration of "charset-map-path".
15526
15527 2008-02-01 Kenichi Handa <handa@m17n.org>
15528
15529 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
15530 ASCII only string.
15531
15532 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
15533
15534 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
15535 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
15536
15537 2008-02-01 Kenichi Handa <handa@m17n.org>
15538
15539 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
15540
15541 * coding.c (QCmnemonic, QCdefalut_char)
15542 (QCdecode_translation_table, QCencode_translation_table)
15543 (QCpost_read_conversion, QCpre_write_conversion): New variables.
15544 (get_translation_table): Return a list of translation tables if
15545 necessary.
15546 (decode_coding): Call get_translation_table with ENCODEP 0.
15547 (char_encodable_p): If translation_table is non-nil, always call
15548 translate_char.
15549 (Fdefine_coding_system_internal): Accept list of translation
15550 tables as :encode-translation-table and :decode-translation-table.
15551 (Fcoding_system_put): New function.
15552 (syms_of_coding): Declare new symbols. Defsubr
15553 Scoding_system_put.
15554 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
15555 typically JISX0212.
15556
15557 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
15558 when the charset is superset type.
15559
15560 * character.c (translate_char): Accept list of translation tables.
15561
15562 2008-02-01 Kenichi Handa <handa@m17n.org>
15563
15564 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
15565 (CODING_ATTR_TRANS_TBL): New macro.
15566
15567 * coding.c (get_translation_table): New function.
15568 (translate_chars): Fix the bug of skipping annotation data.
15569 (decode_coding, encode_coding): Utilize get_translation_table.
15570 (char_encodable_p, Funencodable_char_position): Translate char if
15571 necessary.
15572 (Ffind_coding_systems_region_internal)
15573 (Fcheck_coding_systems_region): Setup translation table for encode
15574 in a coding system attribute vector in advance.
15575 (Fdefine_coding_system_internal): Allow a symbol as translation
15576 table. For shift-jis type coding system, allow 4th charset.
15577
15578 2008-02-01 Kenichi Handa <handa@m17n.org>
15579
15580 * coding.c (decode_coding_sjis): Check the first byte rigidly.
15581
15582 * xdisp.c (get_next_display_element): Pass -1 as POS to
15583 FACE_FOR_CHAR if displaying a C-string.
15584
15585 2008-02-01 Kenichi Handa <handa@m17n.org>
15586
15587 * composite.c (get_composition_id): Handle xoff and yoff in a
15588 composition rule.
15589
15590 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
15591 (struct composition): New member lbearing and rbearing.
15592
15593 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
15594 (x_get_glyph_overhangs): Handle a composition glyph.
15595 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
15596
15597 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
15598 composition glyph.
15599
15600 2008-02-01 Kenichi Handa <handa@m17n.org>
15601
15602 * print.c: Include charset.h.
15603 (Vprint_charset_text_property): New variable.
15604 (Qdefault): Extern it.
15605 (PRINT_STRING_NON_CHARSET_FOUND)
15606 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
15607 (print_check_string_result): New variable.
15608 (print_check_string_charset_prop): New function.
15609 (print_prune_charset_plist): New variable.
15610 (print_prune_string_charset): New function.
15611 (print_object): Call print_prune_string_charset if
15612 Vprint_charset_text_property is not t.
15613 (print_interval): Print nothing if interval->plist is nil.
15614 (syms_of_print): Declare Vprint_charset_text_property as a lisp
15615 variable. Init and staticpro print_prune_charset_plist.
15616
15617 2008-02-01 Kenichi Handa <handa@m17n.org>
15618
15619 * fontset.c (new_fontset_from_font_name): Use the specified font
15620 for all characters in the new fontset.
15621
15622 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
15623 OBJECT args.
15624
15625 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
15626 OBJECT args for composition too.
15627
15628 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
15629 OBJECT args.
15630
15631 2008-02-01 Kenichi Handa <handa@m17n.org>
15632
15633 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
15634
15635 * fontset.c (reorder_font_vector): Adjust for the change of
15636 FONT_DEF format.
15637 (fontset_face): New arg id. Change caller.
15638 (face_for_char): New args pos and object.
15639 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
15640 (fs_query_fontset): Check NAME by Fassoc too.
15641 (Fset_fontset_font): Allow non-XLFD font name.
15642 (Ffontset_info): Adjust for the change of FONT_DEF format.
15643
15644 * fontset.h (face_for_char): Adjust prototype.
15645
15646 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
15647 (append_space, extend_face_to_end_of_line)
15648 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
15649 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
15650
15651 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
15652 POS and OBJECT args.
15653
15654 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
15655 POS and OBJECT args.
15656
15657 2008-02-01 Jason Rumney <jasonr@gnu.org>
15658
15659 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
15660 of GlobalAlloc'ed memory.
15661
15662 2008-02-01 Kenichi Handa <handa@m17n.org>
15663
15664 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
15665
15666 * charset.h (charset_table_used): Delete extern.
15667
15668 * charset.c (charset_table_used): Make it static.
15669 (map_charset_chars): Fix args to c_function with.
15670
15671 * chartab.c (map_sub_char_table_for_charset): Fix args to
15672 c_function with.
15673
15674 * coding.h (enum coding_result_code): Delete
15675 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
15676
15677 * coding.c (Qinsufficient_source, Qinconsistent_eol)
15678 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
15679 (Vlast_code_conversion_error): New variables.
15680 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
15681 (ONE_MORE_BYTE): Record error if any instead of signaling an
15682 error. If non-ASCII multibyte char is found, return the negative
15683 value of the code. All callers changed to check it.
15684 (ONE_MORE_BYTE_NO_CHECK): Likewise.
15685 (record_conversion_result): New function. Change all codes setting
15686 coding->result to call this function.
15687 (detect_coding_utf_8, decode_coding_utf_8)
15688 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
15689 Don't use the local variable incomplete.
15690 (emacs_mule_char): Change the second arg to `const'.
15691 (decode_coding): Fix of flushing out unprocessed data.
15692 (make_conversion_work_buffer): Fix making of a work buffer.
15693 (decode_coding_object): Return coding->dst_object.
15694
15695 * fontset.c (set_fontset_font): Fix args.
15696
15697 * lisp.h (CHARACTERBITS): Define as 22.
15698
15699 * process.c (send_process): Be sure to set coding->src_multibyte.
15700
15701 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
15702
15703 2008-02-01 Kenichi Handa <handa@m17n.org>
15704
15705 * xdisp.c (handle_auto_composed_prop): Give limit to
15706 Fnext_single_char_property_change.
15707
15708 2008-02-01 Kenichi Handa <handa@m17n.org>
15709
15710 * composite.c (syms_of_composite): Don't make the composition hash
15711 table weak.
15712
15713 * fontset.c (Fset_fontset_font): Fix docstring.
15714
15715 * lisp.h (detect_coding_system): Adjust prototype.
15716
15717 * fileio.c (kill_workbuf_unwind): Delete this function.
15718 (Finsert_file_contents): Adjust the call of detect_coding_system.
15719 Get conversion_buffer by code_conversion_save. Use the macro
15720 CODING_MAY_REQUIRE_DECODING. After decoding, update
15721 coding_system.
15722
15723 * coding.h (make_conversion_work_buffer): Delete extern.
15724 (code_conversion_save): Extern it.
15725
15726 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
15727 (CODING_GET_INFO): Delete argument eol_type. Change callers.
15728 (decode_coding_utf_8): Don't do eol converion.
15729 (detect_coding_utf_16): Check coding->src_chars, not
15730 coding->src_bytes. Add heuristics for those that have no signature.
15731 (decode_coding_emacs_mule, decode_coding_iso_2022)
15732 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
15733 Don't do eol converion.
15734 (adjust_coding_eol_type): Return a new coding system.
15735 (detect_coding): Don't detect eol. Fix for utf-16 detection.
15736 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
15737 each change.
15738 (decode_coding): Pay attention to undo_list. Do eol conversion for
15739 all types of coding-systems (if necessary).
15740 (Vcode_conversion_work_buf_list): Delete it.
15741 (Vcode_conversion_reused_workbuf): Rename from
15742 Vcode_conversion_reused_work_buf.
15743 (Vcode_conversion_workbuf_name): New variable.
15744 (reused_workbuf_in_use): New variable.
15745 (make_conversion_work_buffer): Delete the arg DEPTH.
15746 (code_conversion_restore): Change argument to cons.
15747 (code_conversion_save): Delete the argument BUFFER. Change callers.
15748 (detect_coding_system): New argument src_chars. Change callers.
15749 Fix for utf-16 detection.
15750 (init_coding_once): Don't use ISO_carriage_return.
15751 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
15752 reused_workbuf_in_use.
15753
15754 2008-02-01 Kenichi Handa <handa@m17n.org>
15755
15756 * keymap.c (store_in_keymap): Pay attention to the case that idx
15757 is a cons specifying a character range.
15758
15759 2008-02-01 Kenichi Handa <handa@m17n.org>
15760
15761 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
15762 HANDLED_RECOMPUTE_PROPS.
15763
15764 * coding.c (Fdefine_coding_system_internal): Fix checking of
15765 ascii compatibility.
15766
15767 2008-02-01 Kenichi Handa <handa@m17n.org>
15768
15769 * charset.c (find_charsets_in_text): Delete unused locale variable.
15770 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
15771
15772 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
15773 Resync charset_list to Vemacs_mule_charset_list.
15774
15775 * keymap.c (store_in_keymap): Pay attention to the case that idx
15776 is a cons specifying a character range.
15777
15778 2008-02-01 Kenichi Handa <handa@m17n.org>
15779
15780 * composite.c (update_compositions): Bind inhibit-read-only, etc
15781 to t before calling remove-list-of-text-properties.
15782
15783 * print.c (print_object): Always print ASCII chars as is.
15784
15785 2008-02-01 Kenichi Handa <handa@m17n.org>
15786
15787 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
15788
15789 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
15790 is a char table.
15791
15792 2008-02-01 Kenichi Handa <handa@m17n.org>
15793
15794 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
15795
15796 2008-02-01 Kenichi Handa <handa@m17n.org>
15797
15798 * xfaces.c (set_lface_from_font_name): Fix for the case that
15799 FONTNAME is not fontset name.
15800
15801 2008-02-01 Kenichi Handa <handa@m17n.org>
15802
15803 * fns.c (base64_encode_1): Fix previous change.
15804
15805 2008-02-01 Kenichi Handa <handa@m17n.org>
15806
15807 * fontset.c (set_fontset_font): New function.
15808 (Fset_fontset_font): If a font is specified for a charset, use
15809 map_charset_chars to store the font spec in a fontset.
15810
15811 2008-02-01 Kenichi Handa <handa@m17n.org>
15812
15813 * fontset.c (fontset_face): Create a fallback fontset on demand.
15814 (make_fontset): Don't create a fallback fontset here.
15815 (free_face_fontset): Free a fallback fontset (if any) too.
15816 (n_auto_fontsets): Delete this variable.
15817 (auto_fontset_alist): New variable.
15818 (new_fontset_from_font_name): Check auto_fontset_alist.
15819 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
15820 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
15821 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
15822 Defsubr Sfontset_list_all.
15823
15824 2008-02-01 Kenichi Handa <handa@m17n.org>
15825
15826 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
15827
15828 2008-02-01 Kenichi Handa <handa@m17n.org>
15829
15830 * fontset.c (Fnew_fontset): Check NAME more rigidly.
15831
15832 2008-02-01 Kenichi Handa <handa@m17n.org>
15833
15834 * editfns.c (Fgoto_char): Fix docstring.
15835
15836 2008-02-01 Kenichi Handa <handa@m17n.org>
15837
15838 * insdel.c (insert_from_gap): Adjust intervals correctly.
15839
15840 2008-02-01 Jason Rumney <jasonr@gnu.org>
15841
15842 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
15843 (pfnGetFontUnicodeRanges): New dynamically loaded function.
15844 (w32_initialize): Try to load it.
15845 (x_get_font_repertory): Use it if available.
15846 (w32_encode_char): Add shortcut for unicode output.
15847
15848 * w32fns.c (w32_load_system_font): Default charset to -1.
15849 (x_to_w32_charset): Match all fonts for unicode.
15850 (w32_to_x_charset): New parameter matching. Don't return partial
15851 or wildcard charsets.
15852 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
15853 (w32_codepage_for_font): Return CP_UNICODE for unicode.
15854 (w32_to_x_font): Match charset to real charset.
15855 (enum_font_cb2): Always list unicode versions.
15856
15857 * makefile.w32-in (temacs): Increase EMHEAP.
15858
15859 2008-02-01 Jason Rumney <jasonr@gnu.org>
15860
15861 * w32term.c (w32_encode_char): New charset parameter.
15862 font_info.encoding becomes encoding_type.
15863 (x_get_font_repertory): New function. Warning: stub only!
15864 (x_new_font): Return quickly if font already set.
15865 (x_new_fontset): fontsetname parameter is Lisp_Object.
15866 Use new fs_query_fontset. Try new_fontset_from_font_name.
15867 Use fontset_name for return value.
15868
15869 * w32term.h: Declare x_get_font_repertory.
15870
15871 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
15872 place of find_charset_in_text. Use encode_coding_object in place
15873 of encode_coding.
15874 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
15875 decode_coding.
15876
15877 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
15878 of x_new_fontset.
15879 (w32_load_system_font): Initialize charset as unicode.
15880 font_info.encoding becomes encoding_type.
15881 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
15882 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
15883 (syms_of_w32fns): Set get_font_repertory_func.
15884
15885 * w32console.c: Include character.h. Use terminal_encode_buffer
15886 from term.c.
15887 (write_glyphs): Use new version of encode_terminal_code. Use
15888 encode_coding_object in place of encode_coding.
15889
15890 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
15891 encoding becomes encoding_type.
15892
15893 * term.c (terminal_encode_buffer): Make externally visible.
15894
15895 * makefile.w32-in: Add character.h dependancies.
15896 (character.o, chartab.o): New targets.
15897
15898 2008-02-01 Kenichi Handa <handa@m17n.org>
15899
15900 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
15901 CODING_ID_EOL_TYPE.
15902
15903 2008-02-01 Andreas Schwab <schwab@suse.de>
15904
15905 * coding.c (produce_chars): Revert last change.
15906
15907 2008-02-01 Kenichi Handa <handa@m17n.org>
15908
15909 * charset.h (charset_unicode): Extern it.
15910
15911 * charset.c (string_xstring_p): Check by (C >= 0x100).
15912 (find_charsets_in_text): Change format of the arc CHARSETS. New
15913 arg MULTIBYTE.
15914 (Ffind_charset_region, Ffind_charset_string): Adjust for the
15915 change of find_charsets_in_text.
15916 (Fsplit_char): Fix doc. Never return unknown.
15917
15918 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
15919
15920 * coding.c (Fdefine_coding_system_alias): Update
15921 Vcoding_system_list.
15922
15923 * fontset.c (load_font_get_repertory): Pay attention to the case
15924 that ENCODING of a font is specified by a char-table.
15925
15926 * xterm.c (x_get_font_repertory): Handle the case that the
15927 encoding of font is other than Unicode.
15928
15929 2008-02-01 Kenichi Handa <handa@m17n.org>
15930
15931 * term.c (encode_terminal_code): Don't handle glyph-table. Check
15932 if a character is encodable by the terminal coding system. If
15933 not, produces proper number of `?'s. Update
15934 terminal_encode_buffer and terminal_encode_buf_size if necessary.
15935 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
15936
15937 2008-02-01 Kenichi Handa <handa@m17n.org>
15938
15939 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
15940 variables.
15941 (encode_terminal_code): Change argument. Encode multiple
15942 characters at once. Store the result of encoding in
15943 terminal_encode_buffer.
15944 (write_glyphs, insert_glyphs): Adjust for the change of
15945 encode_terminal_code.
15946 (term_init): Initialize terminal_encode_buffer and
15947 terminal_encode_buf_size.
15948
15949 * coding.c (consume_chars): If coding->src_object is nil, don't
15950 check annotation.
15951
15952 2008-02-01 Kenichi Handa <handa@m17n.org>
15953
15954 * character.c (char_string): Use ASCII_CHAR_P instead of
15955 SINGLE_BYTE_CHAR_P.
15956
15957 2008-02-01 Kenichi Handa <handa@m17n.org>
15958
15959 * xdisp.c (handle_auto_composed_prop): Check if the last
15960 characters of auto-composed region is newly composed with the
15961 following characters.
15962 (handle_composition_prop): Fix checking of point being inside
15963 composition.
15964
15965 2008-02-01 Kenichi Handa <handa@m17n.org>
15966
15967 * fns.c (concat): Don't change multibyteness of the result by
15968 concatenating an 8-bit character.
15969
15970 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
15971 multibyteness of the result when newelt is an 8-bit character.
15972
15973 2008-02-01 Dave Love <fx@gnu.org>
15974
15975 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
15976 EMACS_INT.
15977
15978 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
15979
15980 * xfaces.c (face_numeric_value): Declare dim size_t.
15981 (Finternal_lisp_face_equal_p): Remove unused f.
15982
15983 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
15984 (MATRIX_ROW): Remove unused vars.
15985 (draw_glyphs, x_insert_glyphs, fast_find_position)
15986 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
15987 byte/char counts.
15988
15989 * regex.c (regex_compile): Remove unused var.
15990
15991 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
15992
15993 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
15994 (Faccessible_keymaps, where_is_internal): Remove unused vars.
15995
15996 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
15997
15998 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
15999
16000 * fileio.c (Fwrite_region): Remove unused var.
16001
16002 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
16003 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
16004
16005 * composite.c (Fremove_list_of_text_properties): Declare.
16006
16007 * coding.c (inhibit_pre_post_conversion): Remove (unused).
16008 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
16009 (coding_inherit_eol_type): Remove unused attrs.
16010 (detect_coding): Cast arg of detect_eol.
16011
16012 * charset.c (syms_of_charset): Remove unused var p.
16013 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
16014 byte/char counts.
16015
16016 * casetab.c (set_case_table): Remove unused var.
16017
16018 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
16019 unused vars.
16020
16021 2008-02-01 Dave Love <fx@gnu.org>
16022
16023 * xterm.c (x_bitmap_mask): Declare.
16024
16025 2008-02-01 Dave Love <fx@gnu.org>
16026
16027 * xterm.c (x_term_init): Fix type error.
16028
16029 * lisp.h: Add Funibyte_char_to_multibyte.
16030
16031 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
16032 (Fset_coding_system_priority): Doc fix.
16033
16034 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
16035
16036 * indent.c (check_composition): Make start and end EMACS_INT.
16037
16038 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
16039
16040 * xdisp.c (handle_composition_prop, check_point_in_composition):
16041 Make buffer positions EMACS_INT.
16042
16043 * composite.c (find_composition, run_composition_function)
16044 (update_compositions, Ffind_composition_internal): Make buffer
16045 positions EMACS_INT.
16046
16047 * composite.h (find_composition, update_compositions): Make
16048 position args EMACS_INT.
16049
16050 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
16051
16052 * intervals.c (get_property_and_range):
16053 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
16054
16055 * unexalpha.c: Don't include varargs.h.
16056
16057 2008-02-01 Dave Love <fx@gnu.org>
16058
16059 * coding.h (ENCODE_UTF_8): New.
16060
16061 * Makefile.in (gtkutil.o): Depend on coding.h.
16062
16063 * coding.c (Fset_coding_system_priority): Doc fix.
16064
16065 2008-02-01 Kenichi Handa <handa@m17n.org>
16066
16067 * fileio.c (Finsert_file_contents): Call setup_coding_system in
16068 the case of auto saving.
16069
16070 2008-02-01 Andreas Schwab <schwab@suse.de>
16071
16072 * chartab.c (map_char_table, map_char_table_for_charset): Protect
16073 `range' from GC.
16074
16075 2008-02-01 Kenichi Handa <handa@m17n.org>
16076
16077 * coding.c (decode_coding_sjis): Check bytes more rigidly.
16078
16079 2008-02-01 Kenichi Handa <handa@m17n.org>
16080
16081 * fileio.c (choose_write_coding_system): Return a decided coding system.
16082 (Fwrite_region): Set Vlast_coding_system_used to the return value
16083 of choose_write_coding_system.
16084
16085 2008-02-01 Kenichi Handa <handa@m17n.org>
16086
16087 * charset.c (Fset_charset_priority): Pay attention to duplicated
16088 arguments.
16089
16090 * coding.c (QCcategory): New variable.
16091 (syms_of_coding): Defsym it. Set all elements of
16092 Vcoding_category_table and their symbol values.
16093 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
16094 coding-category-XXX, and coding-category-list.
16095 (Fdefine_coding_system_internal): Add category in the plist.
16096
16097 2008-02-01 Kenichi Handa <handa@m17n.org>
16098
16099 * callproc.c (Fcall_process): Handle carryover correctly.
16100
16101 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
16102 (raw_text_coding_system): Check NILP (coding_system).
16103 (coding_inherit_eol_type): Check NILP (coding_system) and
16104 NILP (parent).
16105 (consume_chars): Fix for the case of raw-text.
16106
16107 * process.c (read_process_output): Handle carryover correctly.
16108
16109 2008-02-01 Dave Love <fx@gnu.org>
16110
16111 * regex.c (re_search_2): Fix last change.
16112
16113 2008-02-01 Kenichi Handa <handa@m17n.org>
16114
16115 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
16116 target_multibyte. Even in a unibyte case, return a converted
16117 multibyte char.
16118 (GET_CHAR_AFTER): New macro.
16119 (PATFETCH): Translate via multibyte char.
16120 (HANDLE_UNIBYTE_RANGE): Delete this macro.
16121 (SETUP_MULTIBYTE_RANGE): New macro.
16122 (regex_compile): Setup compiled code so that its multibyteness
16123 matches that of a target. Fix the handling of "[X-YZ]" using
16124 SETUP_MULTIBYTE_RANGE.
16125 (analyse_first) <charset>: For filling fastmap for all multibyte
16126 characters, don't check by BASE_LEADING_CODE_P.
16127 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
16128 the same as RE_MULTIBYTE_P (bufp) now.
16129 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
16130 (TARGET_CHAR_AND_LENGTH): Delete this macro.
16131 (TRANSLATE_VIA_MULTIBYTE): New macro.
16132 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
16133 It is the same as RE_MULTIBYTE_P (bufp) now.
16134 <exactn>: Translate via multibyte.
16135 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
16136 translate it.
16137 <charset, charset_not>: Fetch a character by
16138 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
16139 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
16140 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
16141 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
16142 by GET_CHAR_AFTER.
16143 (bcmp_translate): Likewise.
16144
16145 * search.c (compile_pattern): Check the member target_multibyte,
16146 not the member multibyte of buf.
16147
16148 * lread.c (read1): While reading a string, set force_singlebyte
16149 and force_multibyte correctly.
16150
16151 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
16152 up of unibyte_to_multibyte_table.
16153
16154 2008-02-01 Kenichi Handa <handa@m17n.org>
16155
16156 * coding.c (setup_coding_system): If coding has
16157 post-read-conversion or pre-write-conversion, set
16158 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
16159 respectively.
16160 (decode_coding_gap): Run post-read-conversion if any.
16161
16162 * fileio.c (Finsert_file_contents): Even if we read into a
16163 unibyte buffer, check if we must decode the result or not.
16164
16165 2008-02-01 Kenichi Handa <handa@m17n.org>
16166
16167 * coding.c (make_conversion_work_buffer): Change the work buffer
16168 name to the same one as that of Emacs 21.
16169
16170 2008-02-01 Kenichi Handa <handa@m17n.org>
16171
16172 * coding.h (make_conversion_work_buffer): Adjust prototype.
16173 (code_conversion_restore): Don't extern it.
16174
16175 * coding.c (detected_mask): Delete unused variable.
16176 (decode_coding_iso_2022): Pay attention to the byte sequence of
16177 CTEXT extended segment, and retain those bytes as is.
16178 (decode_coding_ccl): Delete unused variable `valids'.
16179 (setup_coding_system): Delete unused variable `category'.
16180 (consume_chars): Delete unused variable `category'. Make it work
16181 for non-multibyte case.
16182 (make_conversion_work_buffer): Change argument.
16183 (saved_coding): Delete unused variable.
16184 (code_conversion_restore): Don't check saved_coding->destination.
16185 (code_conversion_save): New function.
16186 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
16187 instead of record_unwind_protect.
16188 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
16189 (detect_coding_system): Delete unused variable `mask'.
16190 (Fdefine_coding_system_internal): Delete unused variable id.
16191
16192 * fileio.c (kill_workbuf_unwind): New function.
16193 (Finsert_file_contents): On replacing, call
16194 make_conversion_work_buffer with correct args, and call
16195 record_unwind_protect with the first arg kill_workbuf_unwind.
16196
16197 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
16198
16199 2008-02-01 Kenichi Handa <handa@m17n.org>
16200
16201 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
16202 (fontset_add): Fix for the case that TO is less than TO1.
16203 (Ffontset_info): Don't use fallback fontset on checking the
16204 default fontset.
16205 (dump_fontset): New function for debugging.
16206
16207 * coding.c (Fdefine_coding_system_internal): Fix for the case that
16208 coding_type is Qcharset.
16209
16210 2008-02-01 Kenichi Handa <handa@m17n.org>
16211
16212 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
16213 (map_char_table): Don't inherit the value from the parent on
16214 initializing VAL. Adjust for the above change.
16215
16216 2008-02-01 Kenichi Handa <handa@m17n.org>
16217
16218 * coding.c (Qsignature, Qendian): Delete these variables.
16219 (syms_of_coding): Don't initialize them.
16220 (CATEGORY_MASK_UTF_16_AUTO): New macro.
16221 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
16222 detect_info->found.
16223 (decode_coding_utf_16): Don't detect BOM here.
16224 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
16225 is NOT utf_16_without_bom.
16226 (setup_coding_system): For a coding system of type utf-16, check
16227 if the attribute :endian is Qbig or not (not nil or not), and set
16228 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
16229 (detect_coding): If coding type is utf-16 and BOM detection is
16230 required, detect it.
16231 (Fdefine_coding_system_internal): For a coding system of type
16232 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
16233
16234 2008-02-01 Kenichi Handa <handa@m17n.org>
16235
16236 * coding.c (coding_set_source): Fix for the case that the current
16237 buffer is different from coding->src_object.
16238 (decode_coding_object): Don't use the conversion work buffer if
16239 DST_OBJECT is a buffer.
16240
16241 2008-02-01 Dave Love <fx@gnu.org>
16242
16243 * lread.c (read_emacs_mule_char) [len==2]: Index
16244 emacs_mule_charset correctly.
16245
16246 2008-02-01 Dave Love <fx@gnu.org>
16247
16248 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
16249 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
16250 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
16251 treated specially.)
16252 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
16253 (detected_mask): Remove Big5 bits.
16254
16255 2008-02-01 Kenichi Handa <handa@m17n.org>
16256
16257 The following changes are to make the font rescaling facility
16258 compatible with Emacs 21.
16259
16260 * xfaces.c (Vface_font_rescale_alist): Rename from
16261 Vface_resizing_fonts.
16262 (struct font_name): Rename member resizing_ratio to rescale_ratio.
16263 (font_rescale_ratio): Rename from font_resizing_ratio.
16264 (split_font_name): Set font->rescale_ratio.
16265 (better_font_p): Pay attention to font->rescale_ratio.
16266 (build_scalable_font_name): Likewise. Change RESX, and RESY
16267 fields.
16268 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
16269
16270 2008-02-01 Kenichi Handa <handa@m17n.org>
16271
16272 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
16273 (Qutf_16_le): Remove these variables.
16274 (syms_of_coding): Don't DEFSYM them.
16275 (decode_coding_utf_16): Fix handling of BOM.
16276 (encode_coding_utf_16): Fix handling of BOM.
16277
16278 2008-02-01 Kenichi Handa <handa@m17n.org>
16279
16280 * fileio.c (Finsert_file_contents): On replacing, before decoding
16281 the file into the work buffer, set point of the work buffer to the end.
16282
16283 2008-02-01 Dave Love <fx@gnu.org>
16284
16285 * coding.c (Fcheck_coding_systems_region): Fix type errors.
16286
16287 2008-02-01 Dave Love <fx@gnu.org>
16288
16289 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
16290 and fix C types.
16291
16292 2008-02-01 Kenichi Handa <handa@m17n.org>
16293
16294 * xdisp.c (SKIP_GLYPHS): New macro.
16295 (set_cursor_from_row): Pay attention to string display properties.
16296
16297 * category.c (copy_category_entry): Fix for the case that RANGE
16298 is an integer.
16299
16300 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
16301
16302 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
16303
16304 2008-02-01 Kenichi Handa <handa@m17n.org>
16305
16306 * charset.c (Fcharset_id_internal): New function.
16307 (syms_of_charset): Defsubr it.
16308
16309 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
16310 with the last arg charset_list acquired from coding.
16311 (Fdefine_coding_system_internal): For ccl-based coding system, fix
16312 the attribute coding_attr_ccl_valids.
16313
16314 * coding.h (enum define_coding_ccl_arg_index): Set the first
16315 member coding_arg_ccl_decoder to coding_arg_max.
16316
16317 * ccl.h (ccl_driver): Adjust prototype.
16318
16319 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
16320 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
16321 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
16322 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
16323 last arg Qnil.
16324
16325 2008-02-01 Kenichi Handa <handa@m17n.org>
16326
16327 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
16328 call encode_char.
16329
16330 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
16331
16332 2008-02-01 Dave Love <fx@gnu.org>
16333
16334 * composite.c (syms_of_composite): Make composition_hash_table weak.
16335
16336 2008-02-01 Kenichi Handa <handa@m17n.org>
16337
16338 * dispextern.h (check_face_attributes, generate_ascii_font_name)
16339 (font_name_registry): Don't extern them.
16340 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
16341
16342 * fontset.h (Qfontset): Don't extern it.
16343 (new_fontset_from_font_name): Extern it.
16344
16345 * fontset.c: Give 8 extra slots to fontset objects.
16346 (Qfontset_info): New variable.
16347 (syms_of_fontset): Defsym it.
16348 (FONTSET_FALLBACK): New macro.
16349 (fontset_face): Try also the default fontset.
16350 (make_fontset): Realize a fallback fontset from the default fontset.
16351 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
16352 using split_font_name_into_vector and build_font_name_from_vector.
16353 (Fset_fontset_font): Access the elements of font_spec by enum
16354 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
16355 name by using split_font_name_into_vector.
16356 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
16357 generate a proper font name from the fontset name. Update
16358 Vfontset_alias_alist.
16359 (n_auto_fontsets): New variable.
16360 (new_fontset_from_font_name): New function.
16361 (Ffont_info): Store the information about fonts generated from the
16362 default fontset in the first extra slot of the returned char-table.
16363
16364 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
16365 (font_name_registry): Delete function.
16366 (split_font_name_into_vector): New function.
16367 (build_font_name_from_vector): New function.
16368 (font_list): The argument REGISTRY is now a list of registry names.
16369 (choose_face_font): If we are choosing an ASCII font, and ATTRS
16370 specifies an explicit font name, return the name as is. Make a
16371 list of registy names.
16372
16373 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
16374 of x_new_fontset.
16375 (Fx_create_frame): Don't call x_new_fontset here. Just use
16376 x_list_fonts to check the existence of fonts.
16377
16378 * xterm.h (x_new_fontset): Adjust prototype.
16379
16380 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
16381 string. Use new_fontset_from_font_name to create a fontset from a
16382 font name.
16383
16384 2008-02-01 Kenichi Handa <handa@m17n.org>
16385
16386 * syntax.c (Vfind_word_boundary_function_table): New name for
16387 Vnext_word_boundary_function_table.
16388 (find-word-boundary-function-table): New name for
16389 next-word-boundary-function-table.
16390
16391 2008-02-01 Dave Love <fx@gnu.org>
16392
16393 * Makefile.in: Fix some dependencies.
16394
16395 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
16396 set it to nil before returning.
16397
16398 * composite.c (update_compositions): Fix type error.
16399
16400 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
16401
16402 2008-02-01 Kenichi Handa <handa@m17n.org>
16403
16404 * xterm.c (x_new_font): Optimize for the case that the font is
16405 already set for the frame.
16406
16407 2008-02-01 Kenichi Handa <handa@m17n.org>
16408
16409 * chartab.c (char_table_ascii): Check if the char table contents
16410 is sub-char-table or not.
16411 (char_table_set, char_table_set_range): Fix argument to
16412 char_table_ascii.
16413
16414 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
16415 (detect_coding_utf_8, detect_coding_utf_16)
16416 (detect_coding_emacs_mule, detect_coding_iso_2022)
16417 (detect_coding_sjis, detect_coding_big5)
16418 (detect_coding_ccl, detect_coding_charset): Change argument MASK
16419 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
16420 sequence is valid in this coding system. Change callers.
16421 (MAX_ANNOTATION_LENGTH): New macro.
16422 (ADD_ANNOTATION_DATA): New macro.
16423 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
16424 ADD_ANNOTATION_DATA. Change the format of annotation data.
16425 (ADD_CHARSET_DATA): New macro.
16426 (emacs_mule_char): New argument ID. Change callers.
16427 (decode_coding_emacs_mule, decode_coding_iso_2022)
16428 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
16429 Produce charset annotation data in coding->charbuf.
16430 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
16431 to charset annotation data in coding->charbuf.
16432 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
16433 coding->common_flags if the coding system is iso-2022 based and
16434 uses designation.
16435 (produce_composition): Adjust for the new annotation data format.
16436 (produce_charset): New function.
16437 (produce_annotation): Handle charset annotation.
16438 (handle_composition_annotation, handle_charset_annotation): New
16439 functions.
16440 (consume_chars): Handle charset annotation. Utilize the above two
16441 functions.
16442 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
16443 buffer, get the deleted text as a string and set
16444 coding->src_object to that string.
16445 (detect_coding, detect_coding_system): Use the new struct
16446 coding_detection_info.
16447
16448 * coding.h (struct coding_detection_info): New structure.
16449 (struct coding_system): Adjust prototype of the member `detector'.
16450 (CODING_ANNOTATE_CHARSET_MASK): New macro.
16451
16452 2008-02-01 Kenichi Handa <handa@m17n.org>
16453
16454 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
16455
16456 2008-02-01 Dave Love <fx@gnu.org>
16457
16458 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
16459 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
16460 to new local and nullify apropos_accumulate before returning.
16461 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
16462
16463 2008-02-01 Kenichi Handa <handa@m17n.org>
16464
16465 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
16466 correctly.
16467
16468 2008-02-01 Dave Love <fx@gnu.org>
16469
16470 * fns.c (Flanginfo): Call synchronize_system_time_locale.
16471
16472 2008-02-01 Kenichi Handa <handa@m17n.org>
16473
16474 The following changes are to make character composition happen
16475 automatically on displaying.
16476
16477 * Makefile.in (lisp, shortlisp): Add composite.elc.
16478
16479 * composite.h (Qauto_composed, Vauto_composition_function)
16480 (Qauto_composition_function): Extern them.
16481
16482 * composite.c (Vcomposition_function_table)
16483 (Qcomposition_function_table): Delete variables.
16484 (Qauto_composed, Vauto_composition_function)
16485 (Qauto_composition_function): New variables.
16486 (run_composition_function): Don't call
16487 compose-chars-after-function.
16488 (update_compositions): Clear `auto-composed' text property.
16489 (compose_chars_in_text): Delete this function.
16490 (syms_of_composite): Staticpro Qauto_composed and
16491 Qauto_composition_function. Declare Vauto_composition_function as
16492 a Lisp variable.
16493
16494 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
16495
16496 * xdisp.c (it_props): Add an entry for Qauto_composed.
16497 (handle_auto_composed_prop): New function.
16498
16499 * xselect.c (selection_data_to_lisp_data): Don't call
16500 compose_chars_in_text.
16501
16502 2008-02-01 Dave Love <fx@gnu.org>
16503
16504 * keyboard.c (read_char): Modify checking around use of
16505 Vkeyboard_translate_table.
16506
16507 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
16508 and fix C types.
16509
16510 2008-02-01 Kenichi Handa <handa@m17n.org>
16511
16512 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
16513 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
16514 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
16515 the case that the last byte is '\r' correctly.
16516 (decode_coding): Flush out the unprocessed data correctly.
16517 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
16518
16519 2008-02-01 Dave Love <fx@gnu.org>
16520
16521 * xterm.c (XTread_socket): Fix changes for defined keysyms.
16522 Add XK_ISO... case.
16523 (xaw_scroll_callback): Revert last change.
16524
16525 2008-02-01 Kenichi Handa <handa@m17n.org>
16526
16527 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
16528
16529 2008-02-01 Kenichi Handa <handa@m17n.org>
16530
16531 * xfaces.c (Vface_resizing_fonts): New variable.
16532 (struct font_name): New member `resizing_ratio'.
16533 (font_resizing_ratio): New function.
16534 (split_font_name): Set font->resizing_ratio.
16535 (better_font_p): Pay attention to font->resizing_ratio.
16536 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
16537 RESX, and RESY fields.
16538 (try_alternative_families): Try scalable fonts if
16539 Vscalable_fonts_allowed is not Qt.
16540 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
16541
16542 2008-02-01 Dave Love <fx@gnu.org>
16543
16544 * xterm.c (xaw_scroll_callback): Cast correctly.
16545
16546 2008-02-01 Dave Love <fx@gnu.org>
16547
16548 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
16549 (lispy_kana_keys): Comment out.
16550 (make_lispy_event) [XK_kana_A]: Comment out.
16551
16552 * xterm.c (xaw_scroll_callback): Cast call_data.
16553 (XTread_socket): Deal with ASCII keysyms.
16554 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
16555
16556 2008-02-01 Dave Love <fx@gnu.org>
16557
16558 * xterm.c (Vx_keysym_table): New.
16559 (syms_of_xterm): Initialize it.
16560 (XTread_socket): Use it.
16561 From head: Eliminate incorrect optimization that tried to avoid
16562 decoding the output of X*LookupString.
16563 (x_get_font_repertory): Delete charset declaration.
16564
16565 2008-02-01 Kenichi Handa <handa@m17n.org>
16566
16567 * coding.c (detect_coding_charset): If only ASCII bytes are found,
16568 return 0.
16569 (Fdefine_coding_system_internal): Setup
16570 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
16571
16572 2008-02-01 Dave Love <fx@gnu.org>
16573
16574 * coding.c (Fcheck_coding_system): Doc fix.
16575
16576 * editfns.c (Finsert_byte): Return a proper value.
16577
16578 2008-02-01 Kenichi Handa <handa@m17n.org>
16579
16580 * coding.c (decode_coding): Fix args to translate_chars. Pay
16581 attention to Vstandard_translation_table_for_decode.
16582 (encode_coding): Fix args to translate_chars. Pay attention to
16583 Vstandard_translation_table_for_encode.
16584
16585 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
16586 SINGLE_BYTE_CHAR_P.
16587
16588 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
16589 not by SINGLE_BYTE_CHAR_P.
16590
16591 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
16592 SINGLE_BYTE_CHAR_P.
16593
16594 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
16595 SINGLE_BYTE_CHAR_P.
16596
16597 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
16598 by SINGLE_BYTE_CHAR_P.
16599
16600 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
16601 SINGLE_BYTE_CHAR_P.
16602
16603 2008-02-01 Dave Love <fx@gnu.org>
16604
16605 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
16606
16607 2008-02-01 Dave Love <fx@gnu.org>
16608
16609 * fns.c (Flanginfo): Fix typo.
16610
16611 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
16612
16613 2008-02-01 Kenichi Handa <handa@m17n.org>
16614
16615 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
16616 (detect_coding_emacs_mule, detect_coding_iso_2022)
16617 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
16618 incomplete byte sequence. Don't update *mask when correctly detected.
16619 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
16620 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
16621 (detect_coding, detect_coding_system): Adjust for the changes above.
16622
16623 2008-02-01 Kenichi Handa <handa@m17n.org>
16624
16625 * character.c (char_string): Rename from
16626 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
16627 (string_char): Rename from string_char.
16628
16629 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
16630 if C is greater than MAX_3_BYTE_CHAR.
16631 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
16632 string_char instead of string_char_with_unification.
16633
16634 2008-02-01 Dave Love <fx@gnu.org>
16635
16636 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
16637
16638 2008-02-01 Kenichi Handa <handa@m17n.org>
16639
16640 * keymap.c (push_key_description): Pay attention to force_multibyte.
16641
16642 * regex.c (re_search_2): Fix for the case of unibyte buffer.
16643
16644 2008-02-01 Dave Love <fx@gnu.org>
16645
16646 * charset.c (define_charset_internal): Rename `supprementary'.
16647
16648 * Makefile.in (lisp, shortlisp): Remove latin-N.
16649
16650 2008-02-01 Dave Love <fx@gnu.org>
16651
16652 * xfns.c (x_window, x_window): Use use_xim.
16653
16654 * xterm.c (use_xim): Initialize.
16655 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
16656 (x_term_init): Maybe set use_xim.
16657
16658 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
16659
16660 2008-02-01 Kenichi Handa <handa@m17n.org>
16661
16662 * search.c (search_buffer): Fix case-fold-search of multibyte
16663 characters.
16664 (boyer_moore): Rename the last argument to char_high_bits.
16665
16666 2008-02-01 Kenichi Handa <handa@m17n.org>
16667
16668 * xdisp.c (display_string): Fix for the case of zero width glyph.
16669
16670 * xfns.c (x_set_font): Change the error message of the case that
16671 x_new_fontset returns Qt.
16672
16673 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
16674 (Finternal_set_lisp_face_attribute): Use signal_error for the
16675 error of invalid fontset.
16676
16677 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
16678 fontset, return Qt.
16679
16680 2008-02-01 Dave Love <fx@gnu.org>
16681
16682 * unexelf.c (unexec): Make .got handling not SGI-specific.
16683
16684 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
16685
16686 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
16687
16688 * keyboard.c (read_key_sequence): Fix type error.
16689
16690 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
16691 type error.
16692
16693 * fontset.c (fontset_add): Return Lisp_Object.
16694
16695 2008-02-01 Dave Love <fx@gnu.org>
16696
16697 * charset.h (charset_ordered_list_tick): Declare extern.
16698
16699 2008-02-01 Kenichi Handa <handa@m17n.org>
16700
16701 The following changes (and some of 2008-02-01 changes of mine) are
16702 for handling syntax, category, and case conversion for unibyte
16703 characters by converting them to multibyte on the fly. With these
16704 changes, we don't have to setup syntax and case tables for unibyte
16705 characters in each language environment.
16706
16707 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
16708 multibyte if necessary.
16709
16710 * bytecode.c (Fbyte_code): Likewise.
16711
16712 * character.h (LEADING_CODE_LATIN_1_MIN)
16713 (LEADING_CODE_LATIN_1_MAX): New macros.
16714 (unibyte_to_multibyte_table): Extern it.
16715 (unibyte_char_to_multibyte): New macro.
16716 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
16717 (CHAR_LEADING_CODE): New macro.
16718 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
16719
16720 * character.c (unibyte_to_multibyte_table): New variable.
16721 (unibyte_char_to_multibyte): Move to character.h and define as macro.
16722 (multibyte_char_to_unibyte): If C is an eight-bit character,
16723 convert it to the corresponding byte value.
16724
16725 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
16726 not 1, signals an error. Update the elements of
16727 unibyte_to_multibyte_table.
16728 (init_charset_once): Initialize unibyte_to_multibyte_table.
16729 (syms_of_charset): Define the charset `iso-8859-1'.
16730
16731 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
16732 as is without converting it to unibyte. In a unibyte buffer,
16733 convert C to multibyte before checking the syntax.
16734
16735 * lisp.h (unibyte_char_to_multibyte): Delete extern.
16736
16737 * minibuf.c (Fminibuffer_complete_word): Use the macro
16738 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
16739
16740 * regex.h (struct re_pattern_buffer): New member target_multibyte.
16741
16742 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
16743 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
16744 that is zero, convert an eight-bit char to multibyte.
16745 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
16746 non-emacs case.
16747 (PATFETCH): Convert an eight-bit char to multibyte.
16748 (HANDLE_UNIBYTE_RANGE): New macro.
16749 (regex_compile): Setup the compiled pattern for multibyte chars
16750 even if the given regex string is unibyte. Use PATFETCH_RAW
16751 instead of PATFETCH in many places. To handle `charset'
16752 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
16753 only for ASCII chars.
16754 (analyse_first) <exactn>: Simplify because the compiled pattern
16755 is multibyte.
16756 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
16757 <charset>: Use CHAR_LEADING_CODE to get leading codes.
16758 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
16759 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
16760 multibyte always 1.
16761 (re_search_2): In emacs, set the locale variable multibyte to 1,
16762 otherwise to 0. New local variable target_multibyte. Check it
16763 to decide the multibyteness of STR1 and STR2. If
16764 target_multibyte is zero, convert unibyte chars to multibyte
16765 before translating and checking fastmap.
16766 (TARGET_CHAR_AND_LENGTH): New macro.
16767 (re_match_2_internal): In emacs, set the locale variable multibyte
16768 to 1, otherwise to 0. New local variable target_multibyte. Check
16769 it to decide the multibyteness of STR1 and STR2. Use
16770 TARGET_CHAR_AND_LENGTH to fetch a character from D.
16771 <charset, charset_not>: If multibyte is nonzero, check fastmap
16772 only for ASCII chars. Call bcmp_translate with
16773 target_multibyte, not with multibyte.
16774 <begline>: Declare the local variable C as `unsigned'.
16775 (bcmp_translate): Change the last arg name to target_multibyte.
16776
16777 * search.c (compile_pattern_1): Don't adjust the multibyteness of
16778 the regexp pattern and the matching target. Set cp->buf.multibyte
16779 to the multibyteness of the regexp pattern. Set
16780 cp->but.target_multibyte to the multibyteness of the matching target.
16781 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
16782 FETCH_STRING_CHAR_ADVANCE.
16783 (Freplace_match): Convert unibyte chars to multibyte.
16784
16785 * syntax.c (char_quoted, back_comment, scan_words)
16786 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
16787 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
16788 unibyte chars to multibyte.
16789 (skip_chars): Delete the arg syntaxp, and move the code for
16790 handling syntaxes to skip_syntaxes. Change callers.
16791 Fix the case that the multibyteness of STRING and the current
16792 buffer doesn't match.
16793 (skip_syntaxes): New function.
16794 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
16795 SINGLE_BYTE_CHAR_P.
16796
16797 2008-02-01 Kenichi Handa <handa@m17n.org>
16798
16799 * xfaces.c (QCfontset): New variable.
16800 (LFACE_FONTSET): New macro.
16801 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
16802 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
16803 (Finternal_set_lisp_face_attribute)
16804 (Finternal_get_lisp_face_attribute): Handle QCfontset.
16805 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
16806 check also LFACE_FONTSET_INDEX.
16807 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
16808 attrs[LFACE_FONT_INDEX].
16809 (syms_of_xfaces): Intern and staticpro QCfontset.
16810
16811 * dispextern.h (enum lface_attribute_index): New member
16812 LFACE_FONTSET_INDEX.
16813
16814 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
16815
16816 2008-02-01 Kenichi Handa <handa@m17n.org>
16817
16818 * coding.c (coding_set_destination): Fix coding->destination for
16819 the case converting a region.
16820 (encode_coding_utf_8): Encode eight-bit chars as single byte.
16821 (encode_coding_object): Fix coding->dst_pos and
16822 coding->dst_pos_byte for the case converting a region.
16823
16824 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
16825
16826 * character.h (BYTE8_STRING): New macro.
16827
16828 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
16829
16830 2008-02-01 Kenichi Handa <handa@m17n.org>
16831
16832 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
16833 characters by octal form.
16834
16835 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
16836
16837 * buffer.h (_fetch_multibyte_char_len): Delete extern.
16838 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
16839 _fetch_multibyte_char_len.
16840 (FETCH_CHAR_AS_MULTIBYTE): New macro.
16841
16842 * casetab.c (set_canon, set_identity, shuffle): Simplify.
16843
16844 * casefiddle.c (casify_object): Simplify. Handle the case that
16845 the case conversion change the byte length.
16846 (casify_region): Likewise.
16847
16848 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
16849
16850 * character.c (_fetch_multibyte_char_len): Delete this variable.
16851 (syms_of_character): Setup Vprintable_chars.
16852
16853 * editfns.c (Fchar_equal): Fix for the unibyte case.
16854 (Finsert_byte): New function.
16855 (syms_of_editfns): Defsubr it.
16856
16857 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
16858 of direct code 0x3ffff.
16859
16860 * search.c (Freplace_match): Fix for the unibyte case.
16861
16862 2008-02-01 Kenichi Handa <handa@m17n.org>
16863
16864 * lread.c (safe_to_load_p): Fix the logic.
16865
16866 * syntax.c (scan_words): Don't treat characters belonging to
16867 different scripts as constituting a word.
16868
16869 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
16870
16871 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
16872
16873 * emacs.c (main): In the case of --unibyte, instead of aborting on
16874 finding non-empty buffer, make it unibyte.
16875
16876 2008-02-01 Kenichi Handa <handa@m17n.org>
16877
16878 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
16879 to create a fontset.
16880
16881 2008-02-01 Dave Love <fx@gnu.org>
16882
16883 * character.c (Funibyte_char_to_multibyte): Doc fix.
16884
16885 * xfns.c [HAVE_STDLIB_H]: Fix last change.
16886
16887 2008-02-01 Kenichi Handa <handa@m17n.org>
16888
16889 * fontset.c (fontset_add): Make the type `int'.
16890 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
16891
16892 * character.c (unibyte_char_to_multibyte)
16893 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
16894 charset_unibyte, not charset_primary.
16895
16896 * charset.h (charset_unibyte): Extern it instead of charset_primary.
16897
16898 * charset.c (charset_unibyte): Rename from charset_primary.
16899 (Funibyte_charset): Rename from Fprimary_charset.
16900 (Fset_unibyte_charset): Rename from Fset_primary_charset.
16901 (syms_of_charset): Adjust for the above changes.
16902
16903 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
16904 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
16905 it->multibyte_p is zero.
16906
16907 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
16908 Delete extern.
16909
16910 2008-02-01 Kenichi Handa <handa@m17n.org>
16911
16912 * coding.c (Fdefine_coding_system_internal): Fix category setting
16913 for a coding system of type iso-2022.
16914
16915 2008-02-01 Kenichi Handa <handa@m17n.org>
16916
16917 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
16918
16919 2008-02-01 Kenichi Handa <handa@m17n.org>
16920
16921 * syntax.c (Vnext_word_boundary_function_table): New variable.
16922 (next-word-boundary-function-table): Declare it as a Lisp variable
16923 in syms_of_syntax.
16924 (scan_words): Call functions in Vnext_word_boundary_function_table
16925 if any.
16926
16927 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
16928
16929 * fontset.c (fs_load_font): If fontp->charset is not negative,
16930 return fontp without setting its members.
16931
16932 2008-02-01 Dave Love <fx@gnu.org>
16933
16934 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
16935
16936 * m/sparc.h (HAVE_ALLOCA): Delete.
16937
16938 * s/irix6-5.h: Don't include strings.h.
16939 (bcopy, bzero, bcmp): Don't undef.
16940
16941 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
16942
16943 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
16944 (TIOCSIGSEND): Don't test IRIX6.
16945 (bcopy, bzero, bcmp): Define conditionally.
16946
16947 2008-02-01 Kenichi Handa <handa@m17n.org>
16948
16949 * buffer.c (Qas, Qmake, Qto): New variables.
16950 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
16951 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
16952
16953 * callproc.c (Fcall_process): Don't call insert_1_both directly if
16954 we are inserting a process output into a multibyte buffer.
16955
16956 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
16957 multibyte_char_to_unibyte.
16958
16959 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
16960 by the primary charset, make it eight-bit char.
16961 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
16962
16963 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
16964 (charset_8_bit__control, charset_8_bit_graphic)
16965 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
16966 (define_charset_internal): New function.
16967 (syms_of_charset): Call define_charset_internal for pre-defined
16968 charsets.
16969
16970 * charset.h (charset_8_bit): Extern it.
16971
16972 * coding.c (make_conversion_work_buffer): Adjust for the change
16973 of Fset_buffer_multibyte.
16974 (encode_coding_raw_text): Increment p0 in the loop.
16975
16976 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
16977
16978 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
16979 for the change of Fset_buffer_multibyte.
16980
16981 * fns.c (Fstring_to_multibyte): New function.
16982 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
16983
16984 2008-02-01 Dave Love <fx@gnu.org>
16985
16986 * xfns.c (x_put_x_image): Declare args.
16987
16988 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
16989 (try_font_list): Declare an arg.
16990
16991 * xdisp.c (message2_nolog, set_message): Declare an arg.
16992
16993 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
16994
16995 * syntax.c (scan_sexps_forward): Declare an arg.
16996
16997 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
16998 Declare an arg.
16999
17000 * lisp.h (Fnew_fontset): Declare.
17001
17002 * keymap.c (push_key_description): Call CHARACTERP correctly.
17003
17004 * fontset.c (fontset_add): Declare args. Call make_number correctly.
17005 (face_for_char): Delete unused vars.
17006 (Fset_fontset_font): Doc fix. Delete unused vars.
17007
17008 * doc.c (Fsubstitute_command_keys): Delete unused vars.
17009
17010 * composite.c (update_compositions): Declare arg.
17011
17012 * cm.c (calccost, cmgoto): Declare args.
17013
17014 * charset.c: Remove `emacs' conditional. Doc fixes.
17015 (map_char_table_for_charset): Declare.
17016
17017 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
17018
17019 * ccl.c: Remove `emacs' conditional.
17020
17021 2008-02-01 Kenichi Handa <handa@m17n.org>
17022
17023 The following changes are to allow specifying multiple font
17024 patterns for a character range (specified by script or charset).
17025
17026 * Makefile.in (abbrev.o): Depend on syntax.h.
17027 (xfaces.o): Depend on charset.h.
17028
17029 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
17030 SINGLE_BYTE_CHAR_P.
17031
17032 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
17033
17034 * character.h (Vchar_script_table): Extern it.
17035
17036 * character.c (Vscript_alist): Delete.
17037 (Vchar_script_table, Qchar_script_table): New variable.
17038 (syms_of_character): Declare Vchar_script_table as a lisp variable
17039 and initialize it.
17040
17041 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
17042 have property char-table-extra-slots, make no extra slot.
17043
17044 * dispextern.h (struct face): Delete member `charset'.
17045 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
17046 SINGLE_BYTE_CHAR_P.
17047 (choose_face_font, lookup_non_ascii_face, font_name_registry):
17048 Add prototypes.
17049 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
17050 (generate_ascii_font_name): Rename from generate_ascii_font.
17051
17052 * fontset.h (get_font_repertory_func): New prototype.
17053 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
17054 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
17055
17056 * fontset.c (Qprepend, Qappend): New variables.
17057 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
17058 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
17059 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
17060 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
17061 (fontset_ref_and_range, fontset_add, reorder_font_vector)
17062 (load_font_get_repertory): New functions.
17063 (fontset_set): Delete.
17064 (fontset_face): New arg FACE. Return face ID, not face.
17065 Complete re-write to handle new fontset structure. Change caller.
17066 (free_face_fontset): Use ASET istead of AREF (X) = Y.
17067 (face_for_char): Don't call lookup_face.
17068 (make_fontset_for_ascii_face): New arg FACE.
17069 (fs_load_font): New arg CHARSET_ID. Don't check
17070 Vfont_encoding_alist here.
17071 (find_font_encoding): New function.
17072 (list_fontsets): Use STRINGP, not ! NILP.
17073 (accumulate_script_ranges): New function.
17074 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
17075 re-written to handle new fontset structure.
17076 (Ffontset_font): Return a copy of element.
17077 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
17078 docstring of font-encoding-alist.
17079
17080 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
17081 (Fset_fotset_font): Fix arguments to 5.
17082
17083 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
17084
17085 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
17086 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
17087 (highlight_trailing_whitespace): Adjust for the change of
17088 lookup_named_face.
17089
17090 * xfaces.c: Include charset.h.
17091 (load_face_font): Delete argument C. Change caller.
17092 (generate_ascii_font_name): Rename from generate_ascii_font.
17093 (font_name_registry): New function.
17094 (cache_face): Store ascii faces before non-ascii faces in buckets.
17095 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
17096 Lookup only ascii faces.
17097 (lookup_non_ascii_face): New function.
17098 (lookup_named_face): Delete argument C. Change caller.
17099 (lookup_derived_face): Delete argument C. Change caller.
17100 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
17101 a string, just call font_list with it.
17102 (choose_face_font): Delete arguments FACE and C. New arg
17103 FONT_SPEC. Change caller.
17104 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
17105 Change caller.
17106 (realize_non_ascii_face): New function.
17107 (realize_x_face): Call load_face_font here.
17108 (realize_tty_face): Delete argument C. Change caller.
17109 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
17110 get a face ID.
17111 (dump_realized_face): Don't print charset of FACE.
17112
17113 * xfns.c (x_set_font): Always call x_new_fontset and
17114 store_frame_parameter.
17115 (Fx_create_frame): Call x_new_fontset, not x_new_font.
17116 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
17117
17118 * xterm.h (x_get_font_repertory): Extern it.
17119
17120 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
17121 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
17122 it->multibyte_p is zero.
17123 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
17124 (x_new_fontset): If FONTSETNAME doesn't match any existing
17125 fontsets, create a new one.
17126 (x_get_font_repertory): New function.
17127
17128 2008-02-01 Kenichi Handa <handa@m17n.org>
17129
17130 * coding.c (Ffind_coding_systems_region_internal): Detect an
17131 ASCII only string correctly.
17132
17133 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
17134 version is 0.
17135
17136 2008-02-01 Kenichi Handa <handa@m17n.org>
17137
17138 * lread.c: Include "coding.h".
17139 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
17140 (load_each_byte, unread_char): New variables.
17141 (readchar_backlog): Delete.
17142 (readchar): Return a character unless load_each_byte is nonzero.
17143 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
17144 cons. If unread_char is not -1, simply return it.
17145 (unreadchar): Handle the case that readcharfun is
17146 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
17147 (read_multibyte): Delete.
17148 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
17149 (read_emacs_mule_char): New functions.
17150 (Fload): Even if the file doesn't have the extension ".elc", if
17151 safe_to_load_p returns a positive version number, assume that the
17152 file contains bytecompiled code. If the version is less than 22,
17153 load the file while decoding multibyte sequences by emacs-mule.
17154 (readevalloop): Don't use readchar_backlog.
17155 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
17156 (Fread_from_string): Pay attention to the case that STREAM is a cons.
17157 (read_escape): Delete the arg BYTEREP.
17158 (read1): Set load_each_byte to 1 temporarily while handling
17159 #@NUMBER. Don't call read_multibyte.
17160 (read_vector): Call Fread with a cons. If readcharfun is
17161 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
17162 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
17163 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
17164 and Qload_force_doc_strings.
17165
17166 2008-02-01 Kenichi Handa <handa@m17n.org>
17167
17168 * xdisp.c (face_before_or_after_it_pos): Call
17169 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
17170
17171 2008-02-01 Kenichi Handa <handa@m17n.org>
17172
17173 * character.h (TRAILING_CODE_P): New macro.
17174 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
17175 (string_char_with_unification): Fix prototype.
17176 (Vscript_alist): Extern it.
17177
17178 * character.c (Vscript_alist): New variable.
17179 (string_char_with_unification, str_as_unibyte)
17180 (string_escape_byte8): Add `const' to local variables.
17181 (syms_of_character): Declare script-alist as a Lisp variable.
17182
17183 * charset.h (Vcharset_ordered_list): Extern it.
17184 (charset_ordered_list_tick): Extern it.
17185 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
17186 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
17187 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
17188 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
17189 (Funify_charset): Adjust for the change of Funify_charset.
17190
17191 * charset.c (charset_ordered_list_tick): New variable.
17192 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
17193 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
17194 deunify intead of unify a charset.
17195 (string_xstring_p): Add `const' to local variables.
17196 (find_charsets_in_text): Add `const' to arguments and local variables.
17197 (encode_char): Adjust for the change of Funify_charset. Fix
17198 detecting of invalid code.
17199 (Fset_charset_priority): Increment charset_ordered_list_tick.
17200 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
17201 and TO_CODE.
17202
17203 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
17204 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
17205 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
17206 (decode_coding_ccl, consume_chars)
17207 (Ffind_coding_systems_region_internal)
17208 (Fcheck_coding_systems_region): Add `const' to local variables.
17209
17210 * print.c (print_object): Use octal form for printing the
17211 contents of a bool vector.
17212
17213 2008-02-01 Dave Love <fx@gnu.org>
17214
17215 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
17216 <version == 20>: Refuse to load.
17217
17218 2008-02-01 Dave Love <fx@gnu.org>
17219
17220 * fns.c: Move coding.h.
17221 (Qcodeset, Qdays, Qmonths): New.
17222 (concat): Use CHARACTERP instead of INTEGERP.
17223 (Flocale_codeset): Delete.
17224 (Flanginfo): New function.
17225 (syms_of_fns): Change accordingly.
17226
17227 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
17228
17229 2008-02-01 Dave Love <fx@gnu.org>
17230
17231 * casetab.c (init_casetab_once, init_casetab_once): Fix
17232 CHAR_TABLE_SET call.
17233
17234 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
17235
17236 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
17237
17238 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
17239 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
17240 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
17241
17242 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
17243
17244 * coding.c (ENCODE_DESIGNATION, decode_eol)
17245 (make_conversion_work_buffer, code_conversion_restore)
17246 (Fdefine_coding_system_internal): Convert Lisp types.
17247 (code_conversion_restore): Use EQ, not ==.
17248 (Fencode_coding_string): Fix code_convert_string call.
17249
17250 * coding.h (code_convert_region): Fix prototype.
17251
17252 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
17253
17254 * fontset.c (fontset_ref, fontset_set, fs_load_font)
17255 (Ffontset_info): Convert Lisp types.
17256
17257 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
17258
17259 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
17260
17261 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
17262
17263 * chartab.c: Include "...h", not <...h> in some cases.
17264
17265 * callproc.c (Fcall_process): Remove unused variables.
17266
17267 2008-02-01 Dave Love <fx@gnu.org>
17268
17269 * coding.c (Fset_coding_system_priority): Allow null arg list.
17270
17271 2008-02-01 Dave Love <fx@gnu.org>
17272
17273 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
17274 (Fself_insert_and_exit): Use CHARACTERP.
17275
17276 * callproc.c (Fcall_process): Remove unused vars.
17277
17278 * xterm.c (XTread_socket): Add extra dead keysyms.
17279
17280 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
17281
17282 * dispextern.h: Remove prototypes for redraw_frame,
17283 redraw_garbaged_frames.
17284
17285 * cmds.c (Fself_insert_command): Use CHARACTERP.
17286
17287 * chartab.c (make_sub_char_table): Remove unused var.
17288 (Fset_char_table_default, Fmap_char_table): Doc fix.
17289
17290 * keymap.c (access_keymap): Remove generic char code.
17291 (push_key_description): Use CHARACTERP.
17292
17293 2008-02-01 Dave Love <fx@gnu.org>
17294
17295 * charset.c: Doc fixes.
17296 (Funify_charset): Extra checking.
17297
17298 2008-02-01 Dave Love <fx@gnu.org>
17299
17300 * lread.c: Remove some unused variables.
17301 (safe_to_load_p): If safe, return the magic number version byte.
17302 (Fload): Maybe use load-with-code-conversion.
17303
17304 2008-02-01 Kenichi Handa <handa@m17n.org>
17305
17306 * category.c (Fmodify_category_entry): Don't modify the contents
17307 of category_set for characters out of the range. Avoid
17308 unnecessary modification.
17309
17310 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
17311 Vchar_unify_table. The default value of the table is now nil.
17312
17313 * character.c (syms_of_character): Setup Vchar_width_table for
17314 eight-bit-control and raw-byte chars.
17315
17316 * charset.h (enum define_charset_arg_index): Delete
17317 charset_arg_parents and add charset_arg_subset and
17318 charset_arg_superset.
17319 (enum charset_attr_index): Delete charset_parents and add
17320 charset_subset and charset_superset.
17321 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
17322 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
17323 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
17324 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
17325 (CHARSET_SUPERSET): New macros.
17326 (charset_work): Extern it.
17327 (ENCODE_CHAR): Use charset_work.
17328 (CHAR_CHARSET_P): Adjust for the change of encoder format.
17329 (map_charset_chars): Extern it.
17330
17331 * charset.c (load_charset_map): Set the default value of encoder
17332 and deunifier char-tables to nil.
17333 (map_charset_chars): Change argument. Change callers. Use
17334 map_char_table_for_charset instead of map_char_table.
17335 (Fmap_charset_chars): New optional args from_code and to_code.
17336 (Fdefine_charset_internal): Adjust for the change of
17337 `define-charset' (:parents -> :subset or :superset).
17338 (charset_work): New variable.
17339 (encode_char, syms_of_charset): Adjust for the change of
17340 Fdefine_charset_internal.
17341 (Ffind_charset_string): Setup the vector `charsets' correctly.
17342
17343 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
17344 the previous change.
17345 (char_table_ref_and_range): Adjust for the above change.
17346 (map_sub_char_table_for_charset): New function.
17347 (map_char_table_for_charset): New function.
17348
17349 * keymap.c (describe_vector): Handle a char-table directly here.
17350 (describe_char_table): Delete.
17351
17352 * lisp.h (map_charset_chars): Delete.
17353
17354 2008-02-01 Dave Love <fx@gnu.org>
17355
17356 * fns.c (count_combining): Comment out (unused).
17357 (Flocale_codeset): New.
17358 (syms_of_fns): Defsubr it.
17359
17360 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
17361 (size_t): Remove.
17362
17363 2008-02-01 Dave Love <fx@gnu.org>
17364
17365 * Makefile.in (chartab.o): Depend on charset.h.
17366
17367 2008-02-01 Kenichi Handa <handa@m17n.org>
17368
17369 * character.c (syms_of_character): Set the default value of
17370 Vprintable_chars to Qnil.
17371
17372 2008-02-01 Dave Love <fx@gnu.org>
17373
17374 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
17375
17376 2008-02-01 Kenichi Handa <handa@m17n.org>
17377
17378 * charset.c (load_charset_map): Handle the case that from < to
17379 correctly.
17380
17381 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
17382 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
17383 Pay attention to raw-8-bit chars.
17384
17385 2008-02-01 Kenichi Handa <handa@m17n.org>
17386
17387 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
17388 It is not bytecompiled now.
17389
17390 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
17391 (charset_jisx0208): New variables.
17392 (Fdefine_charset_internal): Setup them if appropriate.
17393 (init_charset_once): Initialize them to -1.
17394
17395 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
17396 (charset_jisx0208): Extern them.
17397
17398 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
17399 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
17400 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
17401 (setup_iso_safe_charsets): Fix arguments to Fassq.
17402 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
17403 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
17404 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
17405 (encode_coding_iso_2022): Change the 1st arg to
17406 ENCODE_ISO_CHARACTER to a variable.
17407
17408 2008-02-01 Kenichi Handa <handa@m17n.org>
17409
17410 * charset.h (enum define_charset_arg_index): New enums
17411 charset_arg_min_code and charset_arg_max_code.
17412 (struct charset): New member char_index_offset.
17413
17414 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
17415 Take charset->char_index_offset into account.
17416 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
17417 args[charset_arg_max_code]. Setup charset.char_index_offset.
17418 (syms_of_charset): Fix args to Fdefine_charset_internal.
17419
17420 2008-02-01 Dave Love <fx@gnu.org>
17421
17422 * coding.c (decode_coding_utf_8): Reject overlong sequences.
17423
17424 2008-02-01 Dave Love <fx@gnu.org>
17425
17426 * coding.c: Doc fixes.
17427 (Fcoding_system_aliases): Fix return value.
17428 (Qmac): Remove (duplicated) definition.
17429
17430 2008-02-01 Dave Love <fx@gnu.org>
17431
17432 * charset.c (Fcharset_priority_list, Fset_charset_priority):
17433 New functions.
17434
17435 * character.c (Fstring): Doc fix.
17436
17437 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
17438
17439 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
17440 (font-encoding-alist): Doc fix.
17441
17442 2008-02-01 Dave Love <fx@gnu.org>
17443
17444 * term.c (costs_set): Declare static, non-initialized for pcc.
17445 (encode_terminal_code): Remove unused var.
17446
17447 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
17448 for K&R.
17449
17450 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
17451
17452 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
17453 (suffixes): Move out of make_subsidiaries for K&R.
17454
17455 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
17456
17457 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
17458
17459 2008-02-01 Dave Love <fx@gnu.org>
17460
17461 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
17462
17463 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
17464
17465 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
17466
17467 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
17468
17469 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
17470
17471 2008-02-01 Kenichi Handa <handa@m17n.org>
17472
17473 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
17474 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
17475
17476 2008-02-01 Kenichi Handa <handa@m17n.org>
17477
17478 * coding.c (decode_coding_charset): Adjust for the change of
17479 Fdefine_coding_system_internal.
17480 (Fdefine_coding_system_internal): For a coding system of
17481 `charset' type, store a list of charset IDs in
17482 `charset_attr_charset_valids' element of coding attributes.
17483
17484 2008-02-01 Kenichi Handa <handa@m17n.org>
17485
17486 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
17487 (emacs_mule_char): New arg src. Delete arg `composition'. Change
17488 caller. Handle 2-byte and 3-byte charsets correctly.
17489 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
17490 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
17491 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
17492 (DECODE_EMACS_MULE_21_COMPOSITION): Call
17493 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
17494 sequence.
17495 (decode_coding_emacs_mule): Handle composition correctly. Rewind
17496 `src' and `consumed_chars' correctly before calling emacs_mule_char.
17497 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
17498 and alt&rule composition.
17499 (decode_coding_iso_2022): Handle composition correctly.
17500 (init_coding_once): Setup emacs_mule_bytes for private charsets.
17501
17502 * charset.c (Fdefine_charset_internal): Fix bug for the case of
17503 re-defining a charset. If the charset has :emacs-mule-id, setup
17504 emacs_mule_bytes.
17505 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
17506
17507 2008-02-01 Kenichi Handa <handa@m17n.org>
17508
17509 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
17510 (encode_coding_big5, encode_coding_charset): If coding requires safe
17511 encoding, produce a character specified by
17512 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
17513
17514 2008-02-01 Dave Love <fx@gnu.org>
17515
17516 * xterm.c (XSetIMValues): Declare.
17517
17518 * process.c: Conditionally include sys/wait.h, pty.h.
17519
17520 * print.c (print_object): Fix print format for 64-bit systems.
17521
17522 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
17523
17524 * buffer.c (emacs_strerror): Declare.
17525
17526 * fontset.c (Fclear_face_cache): Declare.
17527 (accumulate_font_info): Comment-out (unused).
17528 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
17529 variables.
17530
17531 * character.h (string_escape_byte8): Declare.
17532
17533 * charset.c (load_charset_map, load_charset_map_from_file): Remove
17534 unused vars.
17535 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
17536 (Fmap_charset_chars): Doc fix.
17537
17538 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
17539 (Fset_coding_system_priority, Fset_coding_system_priority)
17540 (Fdefine_coding_system_internal): Doc fix.
17541
17542 2008-02-01 Dave Love <fx@gnu.org>
17543
17544 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
17545
17546 2008-02-01 Kenichi Handa <handa@m17n.org>
17547
17548 * character.c (string_escape_byte8): Make multibyte string with
17549 correct size.
17550
17551 * charset.c (Fmake_char): Delete unnecessary code.
17552
17553 2008-02-01 Kenichi Handa <handa@m17n.org>
17554
17555 * xfns.c (x_encode_text): Allocate coding.destination here, and
17556 call encode_coding_object with dst_object Qnil.
17557
17558 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
17559 multibyte form correctly.
17560
17561 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
17562 against Vfont_encoding_alist.
17563
17564 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
17565 handling of charset list.
17566 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
17567 (decode_coding_object): Move point to coding->dst_pos before
17568 calling post-read-conversion function.
17569 (encode_coding_object): Give correct arguments to
17570 pre-write-conversion. Ignore the return value of
17571 pre-write-conversion function. Pay attention to the case that
17572 pre-write-conversion changes the current buffer. If dst_object is
17573 Qt, even if coding->src_bytes is zero, allocate at least one byte
17574 to coding->destination.
17575
17576 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
17577
17578 * charset.c (Fmake_char): Make it more backward compatible.
17579 (Fmap_charset_chars): Fix docstring.
17580
17581 2008-02-01 Dave Love <fx@gnu.org>
17582
17583 * coding.c: Doc fixes.
17584 (Fdefine_coding_system_alias): Use names, not symbols, in
17585 coding-system-alist.
17586
17587 2008-02-01 Kenichi Handa <handa@m17n.org>
17588
17589 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
17590 of calling free_realized_face.
17591
17592 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
17593
17594 * charset.c (read_hex): Don't treat SPC as a comment starter.
17595 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
17596 (Fdecode_char): Fix typo.
17597
17598 2008-02-01 Kenichi Handa <handa@m17n.org>
17599
17600 * charset.h (struct charset): New member `code_space_mask'.
17601
17602 * coding.c (coding_set_source): Delete the local variable beg_byte.
17603 (encode_coding_charset, Fdefine_coding_system_internal):
17604 Delete the local variable charset.
17605 (Fdefine_coding_system_internal): Setup
17606 attrs[coding_attr_charset_valids] correctly.
17607
17608 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
17609 member to check if CODE is valid or not.
17610 (Fdefine_charset_internal): Initialize `code_space_mask' member.
17611 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
17612 is within the range of charset->min_code and carset->max_code.
17613
17614 2008-02-01 Dave Love <fx@gnu.org>
17615
17616 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
17617
17618 * dispextern.h (generate_ascii_font): Fix return type.
17619
17620 * xfaces.c (generate_ascii_font): Fix arg declaration.
17621
17622 * coding.c (coding_inherit_eol_type)
17623 (Fset_terminal_coding_system_internal)
17624 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
17625
17626 2008-02-01 Kenichi Handa <handa@m17n.org>
17627
17628 * coding.c (decode_coding_charset, encode_coding_charset): Handle
17629 multiple charsets correctly.
17630
17631 2008-02-01 Kenichi Handa <handa@m17n.org>
17632
17633 * search.c (boyer_moore): Fix handling of multibyte character
17634 translation.
17635
17636 * xdisp.c (display_mode_element): When the variable `elt' is
17637 changed, update `this' and `lisp_string'.
17638
17639 2008-02-01 Kenichi Handa <handa@m17n.org>
17640
17641 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
17642
17643 * callproc.c (Fcall_process): Be sure to give the current buffer
17644 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
17645
17646 * charset.c (struct charset_map_entries): New struct.
17647 (load_charset_map): Rename from parse_charset_map. New args
17648 entries and n_entries. Change caller.
17649 (load_charset_map_from_file): Rename from load_charset_map.
17650 Change caller. New arg control_flag. Call load_charset_map at
17651 the tail.
17652 (load_charset_map_from_vector): New function.
17653 (Fdefine_charset_internal): Setup charset.compact_codes_p.
17654 (encode_char): If the charset is compact, change a character index
17655 to a code point.
17656
17657 * coding.c (coding_alloc_by_making_gap): Check the case that the
17658 source and destination are the same correctly.
17659 (decode_coding_raw_text): Set coding->consumed_char and
17660 coding->consumed to 0.
17661 (produce_chars): If coding->chars_at_source is nonzero, update
17662 coding->consumed_char and coding->consumed before calling
17663 alloc_destination.
17664 (Fdefine_coding_system_alias): Register ALIAS in
17665 Vcoding_system_alist.
17666 (syms_of_coding): Define `no-conversion' coding system at the tail.
17667
17668 * fileio.c (Finsert_file_contents): Set coding_system instead of
17669 val. If the current buffer is multibyte, always call
17670 decode_coding_gap.
17671
17672 * xfaces.c (try_font_list): Give higher priority to fontset's
17673 family than face's family.
17674
17675 2008-02-01 Kenichi Handa <handa@m17n.org>
17676
17677 * callproc.c (Fcall_process): Be sure to give the current buffer
17678 to decode_coding_c_string.
17679
17680 * xfaces.c (try_font_list): Give a family specified in a fontset
17681 higher priority than a family specified in a face.
17682
17683 2008-02-01 Kenichi Handa <handa@m17n.org>
17684
17685 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
17686 Fix arguments to insert_from_buffer.
17687
17688 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
17689
17690 2008-02-01 Kenichi Handa <handa@m17n.org>
17691
17692 * coding.c (produce_chars): Set the variable `multibytep' correctly.
17693 (decode_coding_gap): Set coding->dst_multibyte correctly.
17694
17695 2008-02-01 Kenichi Handa <handa@m17n.org>
17696
17697 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
17698 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
17699 (encode_coding_utf_16): Substitute coding->default_char for
17700 non-Unicode characters.
17701 (decode_coding): Don't call record_insert here.
17702 (setup_coding_system): Initialize `surrogate' of
17703 coding->spec.utf_16 to 0.
17704 (EMIT_ONE_BYTE): Fix for multibyte case.
17705
17706 * insdel.c (insert_from_gap): Call record_insert.
17707
17708 2008-02-01 Kenichi Handa <handa@m17n.org>
17709
17710 * casefiddle.c (casify_region): Fix multibyte case.
17711
17712 * character.c (c_string_width): Add return type `int'.
17713 (char_string_with_unification): Delete arg ADVANCED.
17714
17715 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
17716 (CHAR_STRING): Adjust for the change of char_string_with_unification.
17717 (CHAR_STRING_ADVANCE): Make it do-while statement.
17718
17719 * chartab.c (sub_char_table_set_range): Optimize for the case
17720 DEPTH == 3. Add workaround code for a GCC optimization bug.
17721
17722 * charset.c (parse_charset_map): Remove an unused variable.
17723
17724 * coding.c: Delete unused variables.
17725
17726 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
17727 earlier. If inserted is zero and the coding system doesn't
17728 require flushing, don't call decode_coding_gap.
17729
17730 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
17731
17732 2008-02-01 Kenichi Handa <handa@m17n.org>
17733
17734 The following changes are for using Unicode as an internal
17735 character model, and use UTF-8 format for buffer/string
17736 representation.
17737
17738 * .gdbinit (xchartable): Adjust for the change of char table structure.
17739 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
17740
17741 * Makefile.in (obj): Add character.o and chartab.o.
17742 (lisp, shortlisp): Remove utf-8.elc.
17743 (*.o): For many files, change dependency on charset.h to
17744 character.h, and add dependency on character.h.
17745 (character.o, chartab.o): New targets.
17746
17747 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
17748 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
17749 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
17750 of "charset.h".
17751
17752 * dired.c, filelock.c: Include "character.h".
17753
17754 * alloc.c: Include "character.h" instead of "charset.h".
17755 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
17756 (syms_of_alloc): Remove defsubr for Smake_char_table.
17757
17758 * buffer.c: Include "character.h" instead of "charset.h", don't
17759 include "coding.h".
17760 (Fset_buffer_multibyte): Adjust for UTF-8.
17761
17762 * buffer.h: EXFUN Fbuffer_live_p.
17763
17764 * callproc.c: Include "character.h" instead of "charset.h".
17765 (Fcall_process): Big change for the new code-conversion APIs.
17766
17767 * casetab.c: Include "character.h" instead of "charset.h".
17768 (set_canon, set_identity, shuffle): Adjust for the new
17769 map_char_table spec.
17770 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
17771 accessing the char table structure.
17772
17773 * chartab.c: New file that implements char table.
17774
17775 * category.c: Include "character.h".
17776 (copy_category_entry): New function.
17777 (copy_category_table): Call map_char_table and copy_category_entry.
17778 (Fmake_category_table): Initialize all top-level slots.
17779 (char_category_set): New function.
17780 (modify_lower_category_set): Delete.
17781 (Fmodify_category_entry): Call char_table_ref_and_range.
17782
17783 * category.h (CATEGORY_SET): Just call char_category_set.
17784
17785 * ccl.c: Include "character.h".
17786 (Qccl, Qcclp): New variables.
17787 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
17788 it's less than 256.
17789 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
17790 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
17791 and DST type.
17792 (ccl_driver): Change types of argument, adjust code accordingly.
17793 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
17794 ccl_driver.
17795 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
17796
17797 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
17798 New members src_multibyte, dst_multibyte, consumed, and produced.
17799 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
17800 (CODING_SPEC_CCL_PROGRAM): New macro.
17801 (ccl_driver): Update prototype.
17802 (Qccl, Qcclp, Fccl_program_p): Extern them.
17803 (CHECK_CCL_PROGRAM): New macro.
17804
17805 * character.c, character.h, chartab.c: New files.
17806
17807 * charset.c: Mostly re-written. Move character and multibyte sequence
17808 handling codes to character.c.
17809
17810 * charset.h: Mostly re-written. Move character and multibyte sequence
17811 handling codes to character.h.
17812
17813 * coding.c, coding.h: Mostly re-written.
17814
17815 * composite.c: Include "character.h" instead of "charset.h".
17816 (CHAR_WIDTH): Move to character.h.
17817 (HASH_KEY, HASH_VALUE): Delete.
17818
17819 * composite.h (enum composition_method): Change order of enumeration
17820 symbols.
17821
17822 * data.c: Include "character.h" instead of "charset.h".
17823 (Faref): Call CHAR_TABLE_REF for a char table.
17824 (Faset): Call CHAR_TABLE_SET for a char table.
17825
17826 * dispextern.h (free_realized_face, check_face_attribytes)
17827 (generate_ascii_font): Extern them.
17828 (free_realized_multibyte_face): Delete extern.
17829
17830 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
17831 table structure.
17832
17833 * editfns.c: Include "character.h" instead of "charset.h".
17834 (Fchar_to_string): Always call CHAR_STRING.
17835
17836 * emacs.c (main): Call init_charset_once, init_charset,
17837 syms_of_chartab, and syms_of_character.
17838
17839 * fileio.c: Include "character.h" instead of "charset.h".
17840 (Finsert_file_contents): Big change for the new code-conversion API.
17841 (choose_write_coding_system, Fwrite_region): Likewise.
17842 (build_annotations_2): Delete.
17843 (e_write): Big change for the new code-conversion API.
17844
17845 * fns.c: Include "character.h" instead of "charset.h".
17846 (copy_sub_char_table): Move to chartab.c.
17847 (Fcopy_sequence): Call copy_char_table for a char table.
17848 (concat): Delete codes calling count_multibyte.
17849 (string_char_to_byte, string_byte_to_char): Adjust for the new
17850 multibyte form.
17851 (internal_equal): Adjust for the change of char table structure.
17852 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
17853 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
17854 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
17855 (char_table_translate, optimize_sub_char_table)
17856 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
17857 chartab.c.
17858 (char_table_ref_and_index): Delete.
17859 (HASH_KEY, HASH_VALUE): Move to lisp.h.
17860 (Fmd5): Call preferred_coding_system instead of accessing
17861 Vcoding_category_list. Adjust for the new code-conversion API.
17862 (syms_of_fns): Move defsubr for char table related functions to
17863 chartab.c.
17864
17865 * fontset.c: Mostly re-written.
17866
17867 * fontset.h (struct font_info): Change type of the member encoding_type.
17868 (enum FONT_SPEC_INDEX): New enum.
17869 (fontset_font_pattern, fs_load_font): Update prototype.
17870 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
17871
17872 * indent.c: Include "character.h" instead of "charset.h".
17873 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
17874
17875 * insdel.c: Include "character.h" instead of "charset.h".
17876 (copy_text): Don't refer to Vnonascii_translation_table.
17877 (insert_from_gap): New function.
17878
17879 * keyboard.c: Include "character.h" instead of "charset.h".
17880 (command_loop_1): Never call direct_output_forward_char before
17881 a non-ASCII character.
17882 (read_char): If Vkeyboard_translate_table is a char table, always
17883 translate a character.
17884
17885 * keymap.c: Include "character.h".
17886 (store_in_keymap): Handle the case that IDX is a cons.
17887 (Fdefine_key): Handle the case that KEY is a cons and the car part
17888 is also a cons (range).
17889 (push_key_description): Adjust for the new character code.
17890 (describe_vector): Call describe_char_table for a char table.
17891 (describe_char_table): New function.
17892
17893 * keymap.h (describe_char_table): Extern it.
17894
17895 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
17896 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
17897 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
17898 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
17899 Delete.
17900 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
17901 structure.
17902 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
17903 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
17904 (CHARTAB_SIZE_BITS_3): New macros.
17905 (chartab_size): Extern it.
17906 (struct Lisp_Char_Table): Re-design.
17907 (struct Lisp_Sub_Char_Table): New structure.
17908 (HASH_KEY, HASH_VALUE): Move from fns.c.
17909 (CHARACTERBITS): Define as 22.
17910 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
17911 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
17912 (GC_SUB_CHAR_TABLE_P): New macro.
17913 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
17914 (code_convert_string_norecord): Deleted extern.
17915 (init_character_once, syms_of_character, init_charset)
17916 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
17917
17918 * lread.c: Include "character.h".
17919 (read_multibyte): New arg NBYTES.
17920 (read_escape): Change the meaning of returned *BYTEREP.
17921 (to_multibyte): Delete.
17922 (read1): Adjust the handling of char table and string.
17923
17924 * print.c: Include "character.h" instead of "charset.h".
17925 (print_string): Convert 8-bit raw bytes to octal form by
17926 string_escape_byte8.
17927 (print_object): Adjust for the new multibyte form. Print 8-bit
17928 raw bytes always in octal form. Handle sub char table correctly.
17929
17930 * process.c: Include "character.h" instead of "charset.h".
17931 (read_process_output, send_process): Adjust for the new
17932 code-conversion API.
17933
17934 * puresize.h (BASE_PURESIZE): Increase.
17935
17936 * regex.c: Include "character.h" instead of "charset.h".
17937 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
17938 (regex_compile): Accept a range whose starting and ending
17939 character have different leading bytes.
17940 (analyse_first): Adjust for the above change.
17941
17942 * search.c: Include "character.h" instead of "charset.h".
17943 (search_buffer, boyer_moore): Adjust for the new multibyte form.
17944 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
17945
17946 * syntax.c: Include "character.h" instead of "charset.h".
17947 (syntax_parent_lookup): Delete.
17948 (Fmodify_syntax_entry): Accept a cons as CHAR.
17949 (skip_chars): Adjust for the new multibyte form.
17950 (init_syntax_once): Call char_table_set_range instead of directly
17951 accessing the structure of a char table.
17952
17953 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
17954 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
17955 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
17956 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
17957
17958 * term.c: Include "buffer.h" and "character.h".
17959 (encode_terminal_code, write_glyphs): Adjust for the new
17960 code-conversion API.
17961 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
17962
17963 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
17964
17965 * xdisp.c: Include "character.h".
17966 (get_next_display_element): Adjust for the new multibyte form.
17967 (disp_char_vector): Adjust for the new char table structure.
17968 (decode_mode_spec_coding): Adjust for the new structure of
17969 coding system.
17970 (decode_mode_spec): Adjust for the new code-conversion API.
17971
17972 * xfaces.c: Include "character.h" instead of "charset.h".
17973 (load_face_font): Adjust for the change of choose_face_font and
17974 FS_LOAD_FONT.
17975 (generate_ascii_font): New function.
17976 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
17977 (set_font_frame_param): Adjust for the change of choose_face_font.
17978 (free_realized_face): Make it public.
17979 (free_realized_faces_for_fontset): Rename from
17980 free_realized_multibyte_face. Free also faces realized for ASCII.
17981 (choose_face_font): Change arguments. Adjust for the change of
17982 fontset_font_pattern and FS_LOAD_FONT.
17983
17984 * xfns.c: Include "character.h".
17985 (x_encode_text): Adjust for the new code-conversion API.
17986
17987 * xselect.c: Don't include "charset.h".
17988 (selection_data_to_lisp_data): Adjust for the new code conversion API.
17989
17990 * xterm.c: Include "character.h".
17991 (x_encode_char): New argument CHARSET. Change caller.
17992 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
17993 Call ENCODE_CHAR instead of SPLIT_CHAR.
17994 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
17995 CHAR_WIDTH instead of CHARSET_WIDTH.
17996 (XTread_socket): Adjust for the new code-conversion API.
17997 (x_new_font): Adjust for the change of FS_LOAD_FONT.
17998 (x_load_font): Adjust for the change of struct font.
17999
18000 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
18001
18002 * xfaces.c (face_at_buffer_position): Remove unused vars.
18003
18004 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
18005
18006 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
18007 Fix overflow checking.
18008
18009 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
18010
18011 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
18012 Cancel previous change.
18013
18014 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
18015
18016 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
18017 ccl->eight_bit_control. Fix check for buffer overflow.
18018 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
18019 (ccl_driver): Initialize extra_bytes to 0.
18020
18021 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
18022
18023 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
18024 return it ORed with ctrl_modifier.
18025
18026 2008-01-29 Miles Bader <miles@gnu.org>
18027
18028 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
18029
18030 2008-01-28 Jason Rumney <jasonr@gnu.org>
18031
18032 * w32.c (stat): Don't double check for networked drive.
18033
18034 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
18035
18036 * window.c (run_window_configuration_change_hook): New function.
18037 Code extracted from set_window_buffer. Set the selected frame.
18038 (set_window_buffer): Use it.
18039 * window.h (run_window_configuration_change_hook): Declare.
18040 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
18041
18042 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
18043
18044 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
18045
18046 * Makefile.in: Remove references to unused macros.
18047
18048 2008-01-26 Eli Zaretskii <eliz@gnu.org>
18049
18050 * w32.c (g_b_init_get_sid_sub_authority)
18051 (g_b_init_get_sid_sub_authority_count): New static variables.
18052 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
18053 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
18054 (init_user_info): Use them to retrieve uid and gid.
18055 Use 500/513, the Windows defaults, as Administrator's uid/gid.
18056 (fstat): Use pw_uid and pw_gid from the_passwd structure for
18057 st_uid and st_gid of the file.
18058
18059 2008-01-26 Jason Rumney <jasonr@gnu.org>
18060
18061 * w32.c (logon_network_drive): New function.
18062 (stat): Use it.
18063
18064 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
18065
18066 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
18067 invisible text covered with an ellipsis.
18068
18069 2008-01-25 Richard Stallman <rms@gnu.org>
18070
18071 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
18072 jump back to beginning. Move some other initializations after that.
18073 (Qwindow_text_change_functions, Vwindow_text_change_functions):
18074 New variables.
18075 (syms_of_xdisp): Init them.
18076
18077 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
18078
18079 * buffer.c (reset_buffer_local_variables):
18080 Implement `permanent-local-hook'.
18081 (Qpermanent_local_hook): New variable.
18082 (syms_of_buffer): Init and staticpro it.
18083
18084 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
18085
18086 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
18087
18088 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
18089
18090 * fns.c (Fclrhash): Return TABLE.
18091
18092 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18093
18094 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
18095 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
18096 is set even without positional changes.
18097 (x_scroll_bar_clear): Set bar->redraw_needed_p.
18098
18099 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
18100
18101 2008-01-23 Jason Rumney <jasonr@gnu.org>
18102
18103 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
18104
18105 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
18106 the unicode range available in MULE by locale-coding-system.
18107 Improve dbcs lead byte detection. Set event timestamp and modifiers
18108 earlier.
18109
18110 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18111
18112 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
18113 [MAC_OSX] (init_mac_osx_environment): Initialize it.
18114 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
18115 when used on child processes.
18116
18117 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
18118
18119 * dbusbind.c (Fdbus_method_return_internal): Rename from
18120 Fdbus_method_return.
18121 (Fdbus_unregister_object): Move to dbus.el.
18122 (Fdbus_call_method, Fdbus_method_return_internal)
18123 (Fdbus_send_signal): Improve debug messages.
18124
18125 2008-01-20 Martin Rudalics <rudalics@gmx.at>
18126
18127 * undo.c (undo_inhibit_record_point): New variable.
18128 (syms_of_undo): Initialize it.
18129 (record_point): Don't record point when undo_inhibit_record_point
18130 is set.
18131
18132 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
18133
18134 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
18135
18136 * xdisp.c (Qauto_hscroll_mode): New var.
18137 (syms_of_xdisp): Initialize it.
18138 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
18139 window's buffer.
18140 (hscroll_windows): Don't check automatic_hscrolling_p here.
18141
18142 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
18143 vscroll if we're setting window-buffer to the value it already has.
18144
18145 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
18146
18147 * m/intel386.h: Remove references to XENIX.
18148
18149 2008-01-17 Andreas Schwab <schwab@suse.de>
18150
18151 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
18152 instead of HAVE_X86_64_LIB64_DIR.
18153 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
18154
18155 2008-01-17 Glenn Morris <rgm@gnu.org>
18156
18157 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
18158 to HAVE_X86_64_LIB64_DIR.
18159
18160 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
18161
18162 * s/irix3-3.h:
18163 * s/irix4-0.h:
18164 * s/386-ix.h:
18165 * s/domain.h:
18166 * s/hpux9-x11r4.h:
18167 * s/hpux9shxr4.h: Remove files for systems no longer supported.
18168
18169 * sysdep.c: Remove code containing references to symbols defined
18170 by unsupported systems.
18171
18172 2008-01-16 Glenn Morris <rgm@gnu.org>
18173
18174 * coding.c (select-safe-coding-system-function): Doc fix.
18175
18176 2008-01-15 Glenn Morris <rgm@gnu.org>
18177
18178 * config.in: Revert 2008-01-13 change: this is a generated file.
18179
18180 2008-01-13 Tom Tromey <tromey@redhat.com>
18181
18182 * lisp.h: Fix typo.
18183
18184 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
18185
18186 * m/sequent-ptx.h:
18187 * m/sequent.h:
18188 * s/ptx.h:
18189 * s/ptx4-2.h:
18190 * s/ptx4.h: Remove files for systems no longer supported.
18191
18192 * callproc.c (Fcall_process): Fix previous change.
18193
18194 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
18195
18196 * unexsunos4.c: Remove file, system not supported anymore.
18197
18198 * m/mips.h:
18199 * m/intel386.h:
18200 * callproc.c:
18201 * config.in:
18202 * ecrt0.c:
18203 * emacs.c:
18204 * fileio.c:
18205 * frame.c:
18206 * getpagesize.h:
18207 * keyboard.c:
18208 * lread.c:
18209 * process.c:
18210 * puresize.h:
18211 * sysdep.c:
18212 * systty.h:
18213 * syswait.h:
18214 * unexec.c:
18215 * xdisp.c:
18216 * alloc.c: Remove code containing references to symbols defined by
18217 unsupported systems.
18218
18219 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
18220
18221 * coding.c (detect_coding_mask): Fix previous change.
18222
18223 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
18224
18225 * coding.c (detect_coding_iso2022): New arg
18226 latin_extra_code_state. Allow Latin extra codes only
18227 when *latin_extra_code_state is nonzero.
18228 (detect_coding_mask): If there is a NULL byte, detect the encoding
18229 as UTF-16 or binary. If Latin extra codes exist, detect the
18230 encoding as ISO-2022 only when there's no other proper encoding is
18231 found.
18232
18233 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18234
18235 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
18236 #ifdef MAC_OS.
18237
18238 2008-01-08 Richard Stallman <rms@gnu.org>
18239
18240 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
18241
18242 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
18243
18244 * keyboard.c (parse_menu_item): Don't enclose key bindings on
18245 menu bar in parentheses.
18246
18247 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
18248
18249 * m/7300.h:
18250 * m/acorn.h:
18251 * m/alliant-2800.h:
18252 * m/alliant.h:
18253 * m/alliant1.h:
18254 * m/alliant4.h:
18255 * m/altos.h:
18256 * m/amdahl.h:
18257 * m/apollo.h:
18258 * m/att3b.h:
18259 * m/aviion-intel.h:
18260 * m/aviion.h:
18261 * m/celerity.h:
18262 * m/clipper.h:
18263 * m/cnvrgnt.h:
18264 * m/convex.h:
18265 * m/cydra5.h:
18266 * m/delta88k.h:
18267 * m/dpx2.h:
18268 * m/dual.h:
18269 * m/elxsi.h:
18270 * m/f301.h:
18271 * m/gould-np1.h:
18272 * m/gould.h:
18273 * m/i860.h:
18274 * m/ibmps2-aix.h:
18275 * m/ibmrt-aix.h:
18276 * m/ibmrt.h:
18277 * m/irist.h:
18278 * m/is386.h:
18279 * m/isi-ov.h:
18280 * m/mega68.h:
18281 * m/mg1.h:
18282 * m/news-r6.h:
18283 * m/news-risc.h:
18284 * m/news.h:
18285 * m/nh3000.h:
18286 * m/nh4000.h:
18287 * m/ns16000.h:
18288 * m/ns32000.h:
18289 * m/nu.h:
18290 * m/orion.h:
18291 * m/orion105.h:
18292 * m/paragon.h:
18293 * m/pfa50.h:
18294 * m/plexus.h:
18295 * m/pyramid.h:
18296 * m/pyrmips.h:
18297 * m/sh3el.h:
18298 * m/sps7.h:
18299 * m/sr2k.h:
18300 * m/stride.h:
18301 * m/sun1.h:
18302 * m/sun2.h:
18303 * m/sun3-68881.h:
18304 * m/sun3-fpa.h:
18305 * m/sun3-soft.h:
18306 * m/sun3.h:
18307 * m/sun386.h:
18308 * m/symmetry.h:
18309 * m/tad68k.h:
18310 * m/tahoe.h:
18311 * m/targon31.h:
18312 * m/tek4300.h:
18313 * m/tekxd88.h:
18314 * m/tower32.h:
18315 * m/tower32v3.h:
18316 * m/ustation.h:
18317 * m/wicat.h:
18318 * m/xps100.h:
18319 * s/cxux.h:
18320 * s/cxux7.h:
18321 * s/dgux.h:
18322 * s/dgux4.h:
18323 * s/dgux5-4-3.h:
18324 * s/dgux5-4r2.h:
18325 * s/esix.h:
18326 * s/esix5r4.h:
18327 * s/hiuxmpp.h:
18328 * s/hiuxwe2.h:
18329 * s/iris3-5.h:
18330 * s/iris3-6.h:
18331 * s/isc2-2.h:
18332 * s/isc3-0.h:
18333 * s/isc4-0.h:
18334 * s/isc4-1.h:
18335 * s/newsos5.h:
18336 * s/newsos6.h:
18337 * s/osf1.h:
18338 * s/osf5-0.h:
18339 * s/riscix1-1.h:
18340 * s/riscix12.h:
18341 * s/sco4.h:
18342 * s/sco5.h:
18343 * s/sunos4-0.h:
18344 * s/sunos4-1.h:
18345 * s/sunos413.h:
18346 * s/sunos4shr.h:
18347 * s/umax.h:
18348 * s/unipl5-2.h:
18349 * s/xenix.h:
18350 * cxux-crt0.s:
18351 * unexapollo.c:
18352 * unexconvex.c:
18353 * unexenix.c:
18354 * unexsni.c: Remove files for systems no longer supported.
18355
18356 * m/intel386.h: Remove references to unsupported systems.
18357
18358 * w32.c (get_emacs_configuration): Remove reference to i860.
18359
18360 * sysdep.c: Remove dead code.
18361
18362 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
18363
18364 * s/rtu.h:
18365 * m/masscomp.h: Remove files. Platform is obsolete.
18366
18367 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
18368
18369 * dbusbind.c (Fdbus_method_return): New function.
18370 (xd_read_message): Add the serial number to the event.
18371 (Fdbus_register_method): Activate the function.
18372
18373 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
18374
18375 * keyboard.c (read_key_sequence): Fix typo.
18376
18377 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
18378
18379 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
18380 (xd_signature, xd_append_arg): Handle element type detection for
18381 empty arrays.
18382 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
18383 SDATA () calls; this must be solved more general.
18384 (Fdbus_register_signal): Use SBYTES instead of strlen.
18385
18386 2008-01-03 Magnus Henoch <magnus@zemdatav>
18387
18388 * dbusbind.c (xd_append_arg): Use unsigned char instead of
18389 unsigned int for byte values (necessary for big-endian platform).
18390 (Fdbus_call_method): Handle the case of no returned arguments.
18391
18392 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
18393
18394 * dbusbind.c (xd_read_message): Use non-static input_event struct.
18395
18396 2007-12-31 Magnus Henoch <mange@freemail.hu>
18397
18398 * dbusbind.c (xd_signature): Signature of variant is just "v".
18399
18400 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
18401
18402 * dbusbind.c: Fix several errors and compiler warnings.
18403 Reported by Tom Tromey <tromey@redhat.com>.
18404 (XD_ERROR, XD_DEBUG_MESSAGE)
18405 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
18406 (xd_append_arg): Part for basic D-Bus types rewritten.
18407 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
18408 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
18409 appropriate.
18410 (xd_read_message): Return Qnil. Don't signal an error; it is not
18411 useful during event reading.
18412 (Fdbus_register_signal): Signal an error if the check for
18413 FUNCTIONP fails.
18414 (Fdbus_register_method): New function. The implementation is not
18415 complete, the call of the function signals an error therefore.
18416 (Fdbus_unregister_object): New function, renamed from
18417 Fdbus_unregister_signal. The initial check signals an error, if
18418 the object is not well formed.
18419
18420 2007-12-30 Richard Stallman <rms@gnu.org>
18421
18422 * textprop.c (get_char_property_and_overlay):
18423 Signal error if POSITION is out of range in a buffer.
18424
18425 2007-12-29 Martin Rudalics <rudalics@gmx.at>
18426
18427 * w32fns.c (Fx_create_frame): Make copy of frame parameters
18428 because the original parameters are in pure storage now.
18429
18430 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18431
18432 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
18433
18434 2007-12-22 Eli Zaretskii <eliz@gnu.org>
18435
18436 * callint.c (syms_of_callint) <command-history>: Add reference to
18437 history-length in the doc string.
18438
18439 2007-12-17 Jason Rumney <jasonr@gnu.org>
18440
18441 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
18442 before passing as wParam.
18443
18444 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
18445
18446 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
18447 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
18448 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
18449 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
18450 as number.
18451 (Fdbus_call_method): Fix docstring.
18452
18453 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
18454
18455 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
18456 New macros.
18457 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
18458 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
18459 Simplify.
18460 (xd_signature): New function.
18461 (xd_append_arg): Compute also signatures. Major rewrite.
18462 (xd_retrieve_arg): Make debug messages friendly.
18463 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
18464 Check for signatures of arguments.
18465
18466 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
18467
18468 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
18469 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
18470 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
18471 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
18472 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
18473 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
18474 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
18475 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
18476 (xd_retrieve_value): Remove. Functionality included in ...
18477 (xd_append_arg): New function.
18478 (Fdbus_call_method, Fdbus_send_signal): Apply it.
18479
18480 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
18481
18482 * dbusbind.c (top): Include <stdio.h>.
18483 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
18484 dbus_message_new_method_call and dbus_message_new_signal.
18485 (Fdbus_register_signal): Rename unique_name to uname.
18486 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
18487 non-existing unique name. Fix typos in matching rule. Return an
18488 object which is useful in Fdbus_unregister_signal.
18489 (Fdbus_unregister_signal): Reimplementation, in order to remove
18490 only the corresponding entry.
18491 (Vdbus_registered_functions_table): Change the order of entries.
18492 Apply these changes in xd_read_message and Fdbus_register_signal.
18493
18494 2007-12-16 Andreas Schwab <schwab@suse.de>
18495
18496 * fileio.c (Finsert_file_contents): Fix overflow check to not
18497 depend on undefined integer overflow.
18498
18499 2007-12-14 Jason Rumney <jasonr@gnu.org>
18500
18501 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
18502 for characters above 127.
18503
18504 2007-12-13 Jason Rumney <jasonr@gnu.org>
18505
18506 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
18507 before dereferencing array.
18508 (lookup_vk_code): Remove zero comparison.
18509
18510 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
18511
18512 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
18513 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
18514 Use `unsigned int' instead of `uint'.
18515 (xd_read_message, Fdbus_register_signal): Split expressions into
18516 multiple lines before operators "&&" and "||", according to the
18517 GNU Coding Standards.
18518
18519 2007-12-14 Eli Zaretskii <eliz@gnu.org>
18520
18521 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
18522
18523 2007-12-12 Juri Linkov <juri@jurta.org>
18524
18525 * buffer.c (Frename_buffer): In interactive spec replace
18526 `read-buffer' with `read-string' that uses `buffer-name-history'
18527 as history, and the current buffer's name as default.
18528
18529 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
18530
18531 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
18532 manipulating the backtrace manually.
18533 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
18534 (struct backtrace, backtrace_list): Remove.
18535 (command_loop_1): Remove dead var `no_direct'.
18536
18537 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
18538 preserve non-built-in buffer-local variables.
18539 (Fkill_all_local_variables): Don't re-create&re-set permanent
18540 buffer-local variables.
18541
18542 2007-12-09 Juri Linkov <juri@jurta.org>
18543
18544 * buffer.c (Frename_buffer): Change interactive spec from "s" to
18545 Lisp code that uses `read-buffer' with current buffer as default.
18546
18547 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
18548
18549 * dbusbind.c (xd_read_message): Generate an event for every
18550 registered handler. There might be several handlers registered
18551 for the same signal.
18552 (Fdbus_register_signal): Don't overwrite a registration for the
18553 same signal. Add a new registration if handlers are different.
18554 (Vdbus_registered_functions_table): Rework doc string.
18555
18556 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
18557
18558 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
18559 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
18560 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
18561 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
18562 Unify argument lists.
18563 (xd_read_message, Fdbus_register_signal): Reorder and extend event
18564 arguments and hash table keys. Use unique name for service.
18565 (Fdbus_unregister_signal): Remove checks.
18566 (Vdbus_registered_functions_table): Fix doc string.
18567
18568 2007-12-05 Magnus Henoch <mange@freemail.hu>
18569
18570 * process.c (make_process): Initialize pty_flag to 0.
18571
18572 2007-12-05 Jason Rumney <jasonr@gnu.org>
18573
18574 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
18575 specified XBMs.
18576
18577 2007-12-05 Richard Stallman <rms@gnu.org>
18578
18579 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
18580
18581 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18582
18583 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
18584 New variable.
18585 (mac_try_close_socket) [MAC_OSX]: New function.
18586 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
18587 Update cfsockets_for_select. Replace invalid CFRunLoop source.
18588
18589 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
18590 Use mac_try_close_socket.
18591
18592 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18593
18594 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
18595 reloc_base.
18596 (copy_dysymtab): Compute relocation base here.
18597 (rebase_reloc_address) [__ppc64__]: New function.
18598 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
18599 changed.
18600
18601 2007-12-05 Jason Rumney <jasonr@gnu.org>
18602
18603 * w32proc.c (sys_spawnve): Quote args with wildcards.
18604
18605 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18606
18607 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
18608 __objc_* sections.
18609 (unrelocate) [_LP64]: Set relocation base to address of data segment.
18610
18611 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
18612
18613 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
18614 Move check for Vdbus_registered_functions_table to
18615 xd_read_queued_messages.
18616 (xd_read_queued_messages): Protect xd_read_message calls by
18617 internal_condition_case_1.
18618
18619 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
18620
18621 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
18622 Qdbus_system_bus and Qdbus_session_bus, respectively.
18623 (Vdbus_intern_symbols): Remove.
18624 (Vdbus_registered_functions_table): New hash table.
18625 (XD_SYMBOL_INTERN_SYMBOL): Remove.
18626 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
18627 Rewrite in order to manage registered functions by hash table
18628 Vdbus_registered_functions_table.
18629
18630 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
18631
18632 * xterm.c: Update URL to Window Manager Specification in comment.
18633
18634 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
18635
18636 * config.in (HAVE_DBUS): Add.
18637
18638 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
18639 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
18640 (obj): Add $(DBUS_OBJ).
18641 (LIBES): Add $(DBUS_LIBS).
18642 (dbusbind.o): New target.
18643
18644 * dbusbind.c: New file.
18645
18646 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
18647
18648 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
18649 (Qdbus_event): New Lisp symbol.
18650 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
18651 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
18652 (keys_of_keyboard): Define dbus-event.
18653
18654 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
18655
18656 2007-12-01 Richard Stallman <rms@gnu.org>
18657
18658 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
18659
18660 2007-11-30 Jason Rumney <jasonr@gnu.org>
18661
18662 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
18663 (w32con_reset_terminal_modes): Clear screen buffer.
18664 (w32_face_attributes): Don't use color indexes that are out of range.
18665 Only reverse the default colors.
18666
18667 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
18668 WINDOWSNT.
18669
18670 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
18671
18672 2007-11-29 Jason Rumney <jasonr@gnu.org>
18673
18674 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
18675 (w32_face_attributes): Use Vtty_defined_color_alist to determine
18676 if the terminal colors are initialized.
18677 (unspecified_fg, unspecified_bg): Remove unused declarations.
18678
18679 2007-11-29 Andreas Schwab <schwab@suse.de>
18680
18681 * keyboard.c (apply_modifiers): Fix typo.
18682
18683 2007-11-29 Richard Stallman <rms@gnu.org>
18684
18685 * keymap.c (Fcurrent_local_map): Doc fix.
18686
18687 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
18688
18689 * s/gnu-kfreebsd.h: New file.
18690
18691 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
18692
18693 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
18694 Don't cast redundantly.
18695
18696 * keyboard.c (KEY_TO_CHAR): New macro.
18697 (parse_modifiers, apply_modifiers): Accept integer arguments.
18698 (read_key_sequence): Use them to unify the "shift->unshift" mapping
18699 for chars and symbol keys.
18700 After doing such remapping, apply function-key-map again.
18701
18702 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
18703
18704 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
18705 compiled anymore.
18706
18707 2007-11-26 Andreas Schwab <schwab@suse.de>
18708
18709 * process.c (list_processes_1): Fix indentation level of the
18710 command column.
18711
18712 2007-11-23 Andreas Schwab <schwab@suse.de>
18713
18714 * editfns.c (Fformat): Handle %c specially since it requires the
18715 argument to be of type int.
18716
18717 2007-11-23 Markus Triska <markus.triska@gmx.at>
18718
18719 * emacs.c (main): Call init_editfns before init_process, since
18720 init_process sets Vprocess_connection_type depending on OS release.
18721
18722 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
18723
18724 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
18725 (find_symbol_value): Use do_symval_forwarding.
18726
18727 * data.c (set_internal): Set the value in the `cons-cell' (for
18728 Buffer_Local_values) not only for frame-local variables.
18729
18730 2007-11-22 Andreas Schwab <schwab@suse.de>
18731
18732 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
18733 values to sprintf.
18734 * keymap.c (Fsingle_key_description): Likewise.
18735 * print.c (print_object): Likewise.
18736
18737 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
18738
18739 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
18740 file for image is nil.
18741
18742 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
18743
18744 * term.c: Include stdarg.h.
18745 (fatal): Implement using varargs.
18746 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
18747
18748 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
18749
18750 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
18751 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
18752 Update call to buffer_slot_type_mismatch.
18753 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
18754 (buffer_slot_type_mismatch): Update.
18755 * buffer.c (buffer_local_types): Remove.
18756 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
18757 (defvar_per_buffer): Set the type in the buffer_objfwd.
18758
18759 2007-11-21 Jason Rumney <jasonr@gnu.org>
18760
18761 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
18762 CreateFileMapping returns NULL on failure.
18763
18764 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
18765
18766 * search.c (Fset_match_data): Remove the `evaporate' feature.
18767 (unwind_set_match_data): Don't use the `evaporate' feature.
18768
18769 2007-11-21 Jason Rumney <jasonr@gnu.org>
18770
18771 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
18772
18773 * w32console.c (w32con_write_glyphs): Remove unused variables.
18774
18775 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
18776
18777 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
18778
18779 * s/darwin.h (MULTI_KBOARD): Remove.
18780
18781 * macfns.c (x_create_tip_frame, Fx_create_frame)
18782 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
18783
18784 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
18785
18786 * buffer.c (Fbuffer_local_value): Remove redundant test.
18787 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
18788 than in `current-buffer' to match the comment.
18789 Do the swap using swap_in_global_binding.
18790
18791 * data.c (store_symval_forwarding, set_internal):
18792 * eval.c (specbind): Remove dead code.
18793
18794 * coding.c (detect_coding, Fupdate_coding_systems_internal):
18795 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
18796 Since we do not want to see internal Lisp_*fwd objects here.
18797
18798 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
18799
18800 * sysdep.c (init_system_name): Use getaddrinfo if available.
18801
18802 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
18803 (x_scroll_bar_note_movement): start, end, with, height in struct
18804 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
18805
18806 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
18807
18808 * puresize.h (BASE_PURESIZE): Increase to 1190000.
18809
18810 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
18811
18812 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
18813 This undoes Richard's change of 14-Oct-2002.
18814
18815 * alloc.c (allocate_other_vector):
18816 * lisp.h (allocate_other_vector): Remove.
18817
18818 * window.c (struct save_window_data): Move non-lisp data to the end
18819 and make it `int' rather than Lisp_Object.
18820 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
18821 Done wrap/unwrap integer values.
18822 (Fset_window_configuration, compare_window_configurations):
18823 Update use of fields to their new types.
18824
18825 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
18826 Turn integer fields into `int'. Merge x_window_low and x_window_high.
18827 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
18828 (SET_SCROLL_BAR_X_WINDOW): Remove.
18829 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
18830 Access the new x_window field directly.
18831 * xterm.c (x_scroll_bar_create): Use a pseudovector.
18832 Don't wrap/unwrap integers into Lisp_Objects.
18833 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
18834 (x_scroll_bar_report_motion):
18835 Don't wrap/unwrap integers into Lisp_Objects.
18836 (x_term_init): Use SDATA.
18837 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
18838 (x_scroll_bar_set_handle, x_scroll_bar_remove)
18839 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
18840 (x_scroll_bar_report_motion, x_scroll_bar_clear):
18841 * xfns.c (x_set_background_color):
18842 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
18843 Access the new x_window field directly.
18844
18845 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
18846 (allocate_pseudovector): Make non-static.
18847
18848 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
18849 (allocate_pseudovector): Declare.
18850 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
18851
18852 2007-11-15 Andreas Schwab <schwab@suse.de>
18853
18854 * editfns.c (Fformat): Correctly format EMACS_INT values.
18855 Also take precision into account when formatting an integer.
18856
18857 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
18858
18859 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
18860
18861 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
18862 (syms_of_keyboard): Defsubr it.
18863
18864 * data.c (swap_in_global_binding): Fix longstanding bug where
18865 store_symval_forwarding was not called with the right second argument,
18866 thus causing objfwd-ing from being dropped.
18867
18868 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
18869
18870 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
18871 (Fx_display_pixel_height, Fx_display_planes)
18872 (Fx_display_color_cells, Fx_server_max_request_size)
18873 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
18874 (Fx_display_visual_class, Fx_display_save_under):
18875 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
18876 (Fx_display_pixel_height, Fx_display_planes)
18877 (Fx_display_color_cells, Fx_server_max_request_size)
18878 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
18879 (Fx_display_mm_height, Fx_display_mm_width)
18880 (Fx_display_backing_store, Fx_display_visual_class)
18881 (Fw32_select_font, Fx_display_save_under):
18882 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
18883 (Fx_display_pixel_height, Fx_display_planes)
18884 (Fx_display_color_cells, Fx_server_max_request_size)
18885 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
18886 (Fx_display_save_under): Fix typos in docstrings.
18887
18888 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
18889
18890 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
18891 corresponding to deleted entries; they are an implementation detail.
18892 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
18893 Remove variables.
18894 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
18895 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
18896 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
18897 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
18898 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
18899 (Fw32_define_rgb_color, Fw32_load_color_file)
18900 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
18901 Fix typos in docstrings.
18902 (Fx_server_version): Reflow docstring.
18903 (Fw32_shell_execute): Doc fixes.
18904
18905 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
18906
18907 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
18908 if w32_parse_hot_key returned nil.
18909
18910 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
18911
18912 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
18913
18914 2007-11-09 Jason Rumney <jasonr@gnu.org>
18915
18916 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
18917
18918 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
18919
18920 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
18921 Remove W32_SCROLL_BAR_CLICK_EVENT.
18922
18923 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
18924 Add MULTIMEDIA_KEY_EVENT.
18925
18926 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
18927 (lispy_multimedia_keys) [WINDOWSNT]: New array.
18928 (make_lispy_event) [WINDOWSNT]: Use it to translate
18929 MULTIMEDIA_KEY_EVENT.
18930
18931 * w32term.h (WM_APPCOMMAND): Define if not already.
18932 (GET_APPCOMMAND_LPARAM): Likewise.
18933
18934 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
18935 WM_APPCOMMAND.
18936
18937 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
18938 (syms_of_w32fns): Export and initialize it.
18939 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
18940
18941 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
18942
18943 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
18944 twice.
18945
18946 * xdisp.c (handle_face_prop): Fix last change.
18947
18948 2007-11-09 Richard Stallman <rms@gnu.org>
18949
18950 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
18951 not just for after-strings and before-strings.
18952 Call face_for_overlay_string and pass the overlay to it.
18953 (handle_display_prop): Determine whether property came from an overlay.
18954 Pass OVERLAY arg to handle_single_display_spec.
18955 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
18956 (load_overlay_strings): Fill in it->string_overlays.
18957 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
18958
18959 * xfaces.c (face_for_overlay_string): Function renamed from
18960 face_at_buffer_position_no_overlays, and add arg OVERLAY.
18961
18962 * dispextern.h (struct it): New elt string_overlays.
18963 New elt from_overlay, also in stack.
18964 Rearrange a few elements.
18965 (face_for_overlay_string): Decl renamed from
18966 face_at_buffer_position_no_overlays, and add argument.
18967
18968 2007-11-09 Richard Stallman <rms@gnu.org>
18969
18970 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
18971 to get the base face for an overlay string.
18972
18973 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
18974
18975 * xfaces.c (face_at_buffer_position_no_overlays): New function.
18976
18977 * xdisp.c (handle_stop): Move some code out of loop.
18978
18979 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18980
18981 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
18982 Fix conversion from Lisp object to ATSUFontID.
18983
18984 2007-11-09 Jason Rumney <jasonr@gnu.org>
18985
18986 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
18987
18988 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18989
18990 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
18991 Don't assume regions are aligned to page boundary.
18992 (print_load_command_name): Add LC_UUID if defined.
18993
18994 2007-11-09 Richard Stallman <rms@gnu.org>
18995
18996 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
18997
18998 2007-11-07 Jason Rumney <jasonr@gnu.org>
18999
19000 * s/windows95.h: Remove.
19001
19002 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
19003
19004 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
19005 abort with a message on unhandled store_type values.
19006
19007 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
19008
19009 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
19010 Remove HAVE_X11R5 and HAVE_X11R4.
19011
19012 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
19013
19014 * Makefile.in: Remove references to sunfns.c and sunfns.o.
19015
19016 2007-11-01 Johan Bockgård <bojohan@gnu.org>
19017
19018 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
19019 Don't set s->stippled_p here, since it has already been set by
19020 x_set_glyph_string_gc from x_draw_glyph_string.
19021
19022 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
19023
19024 * sunfns.c: Remove file.
19025
19026 * m/sun386.h:
19027 * m/sun2.h:
19028 * m/sparc.h: Remove Sun windows code.
19029
19030 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
19031
19032 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
19033 (init_keyboard): Set current_kboard's window-system to nil.
19034 (tty_read_avail_input): Typo.
19035 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
19036
19037 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
19038
19039 * s/usg5-4.h:
19040 * s/usg5-3.h:
19041 * s/ptx.h:
19042 * m/is386.h:
19043 * m/ibmps2-aix.h:
19044 * Makefile.in: Remove all mentions of X10.
19045
19046 * dispnew.c (syms_of_display): Don't mention version 10.
19047
19048 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
19049
19050 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
19051 ($(BLD)/abbrev.$(O)): Remove.
19052
19053 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
19054
19055 Rewrite abbrev.c in Elisp.
19056 * image.c (Qcount): Don't declare as extern.
19057 (syms_of_image): Initialize and staticpro `Qcount'.
19058 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
19059 * emacs.c (main): Don't call syms_of_abbrev.
19060 * Makefile.in (obj): Remove abbrev.o.
19061 (abbrev.o): Remove.
19062 * abbrev.c: Remove.
19063
19064 2007-10-26 Martin Rudalics <rudalics@gmx.at>
19065
19066 * window.c (window_min_size_2): Don't count header-line.
19067
19068 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
19069
19070 * frame.h (struct frame): Move all bit fields after the first bit
19071 field to take advantage of the available space. Group all the
19072 chars together to reduce wasted space due to padding.
19073
19074 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
19075
19076 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
19077
19078 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
19079 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
19080 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
19081 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
19082 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
19083 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
19084 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
19085 (last_marked, mark_object_loop_halt): Make static.
19086
19087 * frame.c (syms_of_frame) <delete-frame-functions>:
19088 Fix typo in docstring.
19089
19090 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
19091
19092 * w32.c (init_environment): Fix tiny memory leak.
19093 (w32_get_resource): Remove unused variable `ok'.
19094
19095 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
19096
19097 Make `window-system' into a keyboard-local variable (rather than
19098 frame-local as done originally by multi-tty).
19099
19100 * keyboard.h (struct kboard): Add Vwindow_system.
19101 * keyboard.c (init_kboard): Set a default for Vwindow_system.
19102 (mark_kboards): Mark Vwindow_system.
19103
19104 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
19105 (init_display): Don't set the obsolete `window-system' frame-param.
19106
19107 * xterm.c (x_term_init):
19108 * w32term.c (w32_create_terminal):
19109 * term.c (init_tty): Set Vwindow_system.
19110 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
19111 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
19112
19113 * xfns.c (Fx_create_frame, x_create_tip_frame):
19114 * w32fns.c (Fx_create_frame, x_create_tip_frame):
19115 * macfns.c (Fx_create_frame):
19116 Don't set the obsolete `window-system' frame-param.
19117
19118 * frame.h (Qwindow_system): Remove.
19119 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
19120 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
19121
19122 2007-10-24 Richard Stallman <rms@gnu.org>
19123
19124 * frame.c (x_figure_window_size): For fullscreen case,
19125 set USPosition | PPosition without clobbering rest of window_prompting.
19126
19127 * keyboard.c (Fcurrent_idle_time): Doc fix.
19128
19129 * print.c (Fwith_output_to_temp_buffer): Doc fix.
19130
19131 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
19132
19133 * process.c (unwind_request_sigio): Only define if __ultrix__.
19134
19135 * callproc.c (child_setup): Remove spurious *.
19136
19137 * lisp.h (Fget_text_property): Declare.
19138 (have_menus_p): Declare it here rather than in sys-dep header files.
19139 * macterm.h (have_menus_p):
19140 * msdos.h (have_menus_p):
19141 * xterm.h (have_menus_p): Remove.
19142
19143 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
19144 (Fmake_variable_frame_local): Just check the variable's const-ness
19145 rather than checking nil or t.
19146
19147 2007-10-22 Jason Rumney <jasonr@gnu.org>
19148
19149 * w32fns.c: Include math.h.
19150 (w32_abort): Declaration moved to nt/config.nt.
19151
19152 * s/ms-w32.h (HAVE_STDLIB_H): Define.
19153 (abort): Redefinition moved to nt/config.nt.
19154
19155 * m/windowsnt.h: Remove.
19156
19157 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
19158
19159 * emacs.c (Fdump_emacs): Fix typo in message.
19160 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
19161 <installation-directory>: Reflow docstring.
19162
19163 2007-10-22 Juri Linkov <juri@jurta.org>
19164
19165 * minibuf.c: Allow minibuffer default to be a list of default values.
19166 With empty input use the first element of this list as returned default.
19167 (string_to_object)
19168 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
19169 (read_minibuf): If defalt is cons, set histstring to its car.
19170 (Fread_string): If default_value is cons, set val to its car.
19171 (Fread_buffer): If def is cons, use its car.
19172 (Fcompleting_read): If defalt is cons, set val to its car.
19173
19174 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
19175
19176 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
19177
19178 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
19179
19180 * doc.c (Fdocumentation): Check for advice in all cases.
19181
19182 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
19183
19184 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
19185
19186 2007-10-19 Richard Stallman <rms@gnu.org>
19187
19188 * doc.c (Fdocumentation): Check for and handle an advised function.
19189
19190 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
19191
19192 * process.c (Fset_process_filter): Doc fix.
19193
19194 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
19195
19196 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
19197 which caused key-translation-map to applied repeatedly (thus breaking
19198 double-mode).
19199
19200 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
19201
19202 * xselect.c (x_own_selection, x_handle_selection_clear)
19203 (x_clear_frame_selections):
19204 * w32menu.c (list_of_panes, list_of_items):
19205 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
19206 * textprop.c (validate_plist, interval_has_all_properties)
19207 (interval_has_some_properties, interval_has_some_properties_list)
19208 (add_properties, text_property_list):
19209 * process.c (Fget_buffer_process, list_processes_1, status_notify):
19210 * minibuf.c (Fassoc_string):
19211 * macselect.c (x_own_selection, x_clear_frame_selections)
19212 (Fx_disown_selection_internal):
19213 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
19214 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
19215
19216 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
19217
19218 * process.c: Link to libs for calling res_init() if available.
19219 (Fmake_network_process): Call res_init() before getaddrinfo or
19220 gethostbyname, if possible.
19221
19222 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
19223
19224 * lread.c (read1): Set pvectype for char_tables.
19225
19226 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
19227 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
19228 Add type checks.
19229 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
19230
19231 * alloc.c (free_misc): Use XMISCTYPE.
19232 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
19233
19234 2007-10-17 Glenn Morris <rgm@gnu.org>
19235
19236 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
19237 (syms_of_minibuf): Add Qcompletion_ignore_case.
19238 * dired.c (Qcompletion_ignore_case): Change to external.
19239 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
19240 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
19241 (Fread_file_name): Use it rather than intern'ing.
19242
19243 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
19244 (Fread_coding_system): Ignore case of user input.
19245
19246 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19247
19248 * xdisp.c (handle_display_prop): Ignore display specs after
19249 replacing one when string text is being replaced.
19250 (handle_single_display_spec): Pretend as if characters with display
19251 property haven't been consumed only when buffer text is being replaced.
19252
19253 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
19254
19255 * xfns.c (Fx_create_frame, Fx_display_list):
19256 * window.c (window_fixed_size_p, enlarge_window)
19257 (shrink_window_lowest_first):
19258 * macterm.c (init_font_name_table):
19259 * macfns.c (Fx_create_frame, Fx_display_list):
19260 * lread.c (close_load_descs):
19261 * keyboard.c (read_char_x_menu_prompt):
19262 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
19263 * coding.c (code_convert_region_unwind): Test the type of an object
19264 rather than just !NILP before extracting data from it.
19265
19266 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
19267
19268 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
19269 (XMISCANY): New macro.
19270 (XMISCTYPE): Use it.
19271 (struct Lisp_Misc_Any): New type.
19272 (union Lisp_Misc): Use it.
19273 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
19274 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
19275 (find_symbol_value, set_internal, default_value, Fset_default)
19276 (Fmake_variable_buffer_local, Fmake_local_variable)
19277 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
19278 (Flocal_variable_if_set_p, Fvariable_binding_locus):
19279 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
19280 * alloc.c (allocate_buffer): Set the size and tag.
19281 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
19282 Use XMISCANY.
19283 (die): Follow the GNU convention for error messages.
19284 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
19285 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
19286 tag any more.
19287 (set_buffer_internal_1):
19288 * frame.c (store_frame_param):
19289 * eval.c (specbind):
19290 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
19291
19292 * doc.c (Fsnarf_documentation): Simplify.
19293
19294 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
19295
19296 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
19297 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
19298
19299 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
19300
19301 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
19302
19303 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
19304
19305 * eval.c (do_autoload): Don't save autoloads.
19306
19307 * data.c (Ffset): Save autoload of the function being set.
19308
19309 2007-10-07 John Paul Wallington <jpw@pobox.com>
19310
19311 * xfns.c (x_create_tip_frame): Set the `display-type' frame
19312 parameter before setting up faces.
19313
19314 2007-10-13 Eli Zaretskii <eliz@gnu.org>
19315
19316 * ccl.c (Fregister_code_conversion_map):
19317 * keyboard.c (append_tool_bar_item): Reformat last change.
19318
19319 * lisp.h (eabs): Rename from `abs'. All callers changed.
19320
19321 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
19322
19323 * buffer.c (add_overlay_mod_hooklist):
19324 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
19325 * fontset.c (make_fontset):
19326 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
19327 (append_tool_bar_item):
19328 * macmenu.c (grow_menu_items):
19329 * w32menu.c (grow_menu_items):
19330 * xmenu.c (grow_menu_items): Use larger_vector.
19331
19332 2007-10-13 Eli Zaretskii <eliz@gnu.org>
19333
19334 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
19335 selected frame'' on MSDOS).
19336
19337 2007-10-12 Martin Rudalics <rudalics@gmx.at>
19338
19339 * frame.c (Qexplicit_name): New variable.
19340 (x_report_frame_params): Report it in parameter alist.
19341 (syms_of_frame): Intern and staticpro it.
19342
19343 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
19344
19345 * macfns.c (x_create_tip_frame): Set terminal for frame.
19346
19347 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
19348
19349 * frame.c (Qenvironment): Remove.
19350 (syms_of_frame) <Qenvironment>: Don't initialize.
19351 (Fdelete_frame): Don't treat the `environment' param specially.
19352 * frame.h (Qenvironment): Don't declare.
19353 * callproc.c (set_initial_environment): Don't set unused frame param.
19354
19355 * frame.c (Fframe_with_environment): Remove.
19356 (syms_of_frame) <Sframe_with_environment>: Don't declare.
19357
19358 * lisp.h (Fframe_with_environment): Don't declare.
19359
19360 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
19361
19362 * indent.c (indent_tabs_mode, last_known_column)
19363 (last_known_column_modified): Make static.
19364 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
19365
19366 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
19367
19368 * puresize.h (BASE_PURESIZE): Increase to 1170000.
19369
19370 2007-10-09 Jason Rumney <jasonr@gnu.org>
19371
19372 * w32term.c (x_set_window_size): Disable code that attempts to tell
19373 Lisp code about a size change before it actually happens.
19374
19375 2007-10-09 Richard Stallman <rms@gnu.org>
19376
19377 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
19378 return HANDLED_RETURN.
19379
19380 2007-10-08 Martin Rudalics <rudalics@gmx.at>
19381
19382 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
19383 when there's an unread command event.
19384
19385 * frame.c (focus_follows_mouse): Move here from frame.el to allow
19386 window autoselection act appropriately when leaving selected frame.
19387 (syms_of_frame): Initialize focus_follows_mouse.
19388 * frame.h (focus_follows_mouse): Extern it.
19389 * macterm.c (XTread_socket): When focus_follows_mouse is nil
19390 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
19391 * msdos.c (dos_rawgetc): Likewise.
19392 * w32term.c (w32_read_socket): Likewise.
19393 * xterm.c (handle_one_xevent): Likewise.
19394 * xdisp.c (syms_of_xdisp): In doc-string of
19395 mouse-autoselect-window mention focus-follows-mouse.
19396
19397 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19398
19399 * macterm.c (mac_load_query_font): Fix missing return value.
19400 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
19401 Add BLOCK_INPUT.
19402
19403 2007-10-08 Richard Stallman <rms@gnu.org>
19404
19405 * xdisp.c (get_window_cursor_type): Implement documented behavior
19406 for cursor-in-non-selected-windows = t.
19407
19408 2007-10-08 Jason Rumney <jasonr@gnu.org>
19409
19410 * w32.c (w32_get_resource): Always close registry keys.
19411
19412 2007-10-08 Jason Rumney <jasonr@gnu.org>
19413
19414 * makefile.w32-in (LIBS): Add COMCTL32.
19415
19416 * w32fns.c (globals_of_w32fns): Init common controls.
19417
19418 2007-10-08 Richard Stallman <rms@gnu.org>
19419
19420 * image.c (our_memory_buffer): Rename from omfib_buffer.
19421
19422 2007-10-08 Richard Stallman <rms@gnu.org>
19423
19424 * buffer.c (Foverlays_at): Doc fix.
19425
19426 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
19427
19428 * fns.c (Fplist_put): Preserve uneven tail data.
19429
19430 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
19431
19432 * termhooks.h (enum event_kind): Remove trailing comma.
19433
19434 * frame.h (enum): Remove trailing comma.
19435
19436 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
19437
19438 * w32proc.c (delete_child): Don't terminate threads of zombies.
19439
19440 2007-10-08 Martin Rudalics <rudalics@gmx.at>
19441
19442 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
19443
19444 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
19445 last-repeatable-command.
19446 (init_kboard): Initialize Vlast_repeatable_command.
19447 (command_loop_1): Set it to real_this_command unless that was
19448 bound to an input event.
19449 (mark_kboards): Mark it.
19450
19451 2007-10-08 Richard Stallman <rms@gnu.org>
19452
19453 * eval.c (condition-case): Doc fix.
19454
19455 2007-10-08 Masatake YAMATO <jet@gyve.org>
19456
19457 * xfaces.c (tty_supports_face_attributes_p): Fix code
19458 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
19459 was copied and not edited.
19460
19461 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
19462
19463 Add new `input-decode-map' keymap and use it for terminal
19464 escape sequences.
19465 * keyboard.h (struct kboard): Add Vinput_decode_map.
19466 Remove Vlocal_key_translation_map.
19467 * keyboard.c (read_key_sequence): Add support for input-decode-map.
19468 (init_kboard): Init input-decode-map.
19469 Replace local-key-translation-map back with key-translation-map.
19470 (syms_of_keyboard): Declare input-decode-map.
19471 Remove local-key-translation-map. Update docstrings.
19472 (mark_kboards): Mark Vinput_decode_map.
19473 Don't mark Vlocal_key_translation_map.
19474 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
19475 Replace local-key-translation-map back with key-translation-map.
19476 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
19477 Bind in input-decode-map rather than function-key-map.
19478
19479 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
19480 This was made redundant by the previous introduction of XSETPVECTYPE.
19481
19482 2007-10-09 Richard Stallman <rms@gnu.org>
19483
19484 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
19485
19486 2007-09-29 Richard Stallman <rms@gnu.org>
19487
19488 * eval.c (internal_condition_case_2, internal_condition_case_1)
19489 (internal_condition_case): Reenable abort if x_catching_errors ()
19490 to see if that really happens and why.
19491
19492 2007-10-06 Andreas Schwab <schwab@suse.de>
19493
19494 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
19495
19496 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
19497
19498 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
19499
19500 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
19501
19502 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
19503
19504 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
19505
19506 * window.h (struct window):
19507 * window.c (struct save_window_data, struct saved_window):
19508 * termhooks.h (struct terminal):
19509 * process.h (struct Lisp_Process):
19510 * frame.h (struct frame):
19511 * buffer.h (struct buffer):
19512 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
19513 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
19514 The size field of (pseudo)vectors is now unsigned.
19515 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
19516
19517 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
19518 Turn `count' into an integer.
19519
19520 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
19521 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
19522 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
19523 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
19524 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
19525
19526 * alloc.c (allocate_pseudovector): New fun.
19527 (ALLOCATE_PSEUDOVECTOR): New macro.
19528 (allocate_window, allocate_terminal, allocate_frame)
19529 (allocate_process): Use it.
19530 (mark_vectorlike): New function.
19531 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
19532 (mark_terminals): Use it.
19533 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
19534 (Fmake_byte_code): Use XSETPVECTYPE.
19535
19536 * frame.c (Fframe_parameters): Minor simplification.
19537
19538 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
19539
19540 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
19541
19542 * buffer.c (Fget_buffer_create, init_buffer_once):
19543 * lread.c (defsubr):
19544 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
19545
19546 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
19547 defined differently in the m/*.h files.
19548 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
19549 (XSETPVECTYPE): New macro.
19550 (XSETPSEUDOVECTOR): Use it.
19551
19552 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
19553 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
19554
19555 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
19556 * lread.c (defvar_per_buffer):
19557 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
19558
19559 * window.c (candidate_window_p): Only consider as visible frames that
19560 are on the same terminal.
19561
19562 * m/ibms390x.h (MARKBIT): Remove unused macro.
19563
19564 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
19565
19566 * lread.c (Fload): Fix typo in docstring.
19567
19568 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
19569
19570 * floatfns.c (Fexpt): Manually check for overflows, so that a power
19571 of a non-zero value can't yield zero.
19572
19573 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
19574
19575 * term.c (term_clear_mouse_face, term_mouse_highlight)
19576 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
19577
19578 * print.c (safe_debug_print): Use XHASH.
19579
19580 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
19581 Lisp elements such as tags.
19582 (XHASH): New macro.
19583 (EQ): Use it.
19584 (SREF, SSET, STRING_COPYIN): Use SDATA.
19585 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
19586
19587 * alloc.c (mark_terminal): Remove left-over declaration.
19588 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
19589 (allocate_vectorlike): Remove type argument. Adjust callers.
19590 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
19591 Only handle the one remaining MEM_TYPE_VECTORLIKE.
19592
19593 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
19594 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
19595 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
19596 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
19597 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
19598 Use them.
19599
19600 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
19601 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
19602 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
19603
19604 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
19605
19606 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
19607 loaded by default.
19608
19609 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
19610
19611 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
19612 on this tty.
19613 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
19614
19615 * term.c (mouse_face_window): Rename from Qmouse_face_window.
19616 Update all users.
19617 (handle_one_term_event): Use Gpm_DrawPointer.
19618 (Fgpm_mouse_start): Rename from Fterm_open_connection.
19619 Signal errors instead of returning nil. Always return nil.
19620 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
19621 Make it a noop if gpm-mouse was not activated.
19622 (syms_of_term): Update names.
19623
19624 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
19625
19626 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
19627 (init_sys_modes): Check that gpm_tty is the current tty.
19628
19629 * alloc.c (allocate_terminal): Set the vector size to only count the
19630 lisp fields. Initialize those to nil.
19631 (mark_object): Don't treat terminals specially.
19632 (mark_terminal): Remove.
19633 (mark_terminals): Use mark_object instead.
19634
19635 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
19636 the GC to the beginning.
19637
19638 * indent.h:
19639 * indent.c: Use EMACS_INT for ints coming from Elisp data.
19640
19641 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
19642
19643 2007-09-25 Jason Rumney <jasonr@gnu.org>
19644
19645 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
19646
19647 * w32console.c (create_w32cons_output): Remove.
19648
19649 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
19650
19651 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
19652 (reset_sys_modes): Use reset_terminal_modes_hook.
19653
19654 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
19655
19656 * eval.c (do_autoload): Don't output any message.
19657
19658 2007-09-24 Juri Linkov <juri@jurta.org>
19659
19660 * emacs.c (standard_args): Change priority of "--no-splash"
19661 from 40 to 3. Add "--no-desktop" with the same priority.
19662
19663 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
19664
19665 * alloc.c (gc_sweep): Check cons cell mark bits word by word
19666 and optimize the case where they are all 1.
19667
19668 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
19669
19670 * lisp.h (abs): Define if not defined.
19671 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
19672 Don't define `abs', since it's defined in lisp.h.
19673
19674 2007-09-22 Eli Zaretskii <eliz@gnu.org>
19675
19676 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
19677 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
19678 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
19679 (init_tty): Use DEV_TTY instead of "/dev/tty".
19680 [WINDOWSNT]: No need to protect from NAME arg being null.
19681
19682 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
19683
19684 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
19685 up the tty state.
19686
19687 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
19688
19689 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
19690 (gpm_tty): Change its type.
19691 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
19692 (gpm_tty): Change its type and initialize it.
19693 (Fterm_open_connection): Check the frame is indeed a tty.
19694 Use the new gpm_tty.
19695 (Fterm_close_connection): Use the new gpm_tty.
19696 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
19697 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
19698
19699 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
19700
19701 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
19702 underline_color, to draw strike-through.
19703
19704 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
19705
19706 * lisp.h (allocate_terminal): Declare.
19707
19708 * window.c (candidate_window_p): Consider frames that are being placed
19709 by the user as somewhere between visible and iconified.
19710 (window_loop): Prefer windows on the current frame.
19711 (Fselect_window): Move the use of select-frame to the beginning so we
19712 can just delegate all the work (it'll call us back anyway).
19713
19714 * frame.c (Qdisplay_environment_variable):
19715 * frame.h (Qdisplay_environment_variable): Delete.
19716
19717 * .gdbinit (xbacktrace): Print the arg's address rather than the value
19718 of the first arg, since that value may be a union.
19719
19720 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
19721 parameter rather than Qdisplay_environment_variable. If all else
19722 fails, look for DISPLAY in initial-environment.
19723
19724 2007-09-21 Glenn Morris <rgm@gnu.org>
19725
19726 * Makefile.in (emacstool): Remove target.
19727 (lisp, shortlisp): Remove termdev.elc.
19728
19729 2007-09-21 Markus Triska <markus.triska@gmx.at>
19730
19731 * xterm.c (x_delete_display): Compile session management conditionally.
19732
19733 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
19734
19735 * callproc.c (getenv_internal_1): New function.
19736 (getenv_internal): Use it.
19737 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
19738
19739 * terminal.c (get_terminal): Don't accept ints to represent terminals.
19740 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
19741 (Fset_terminal_parameter): Work with dead terminals as well.
19742 (Fmodify_terminal_parameters): Remove.
19743
19744 * terminal.c (get_terminal): Handle terminals.
19745 Make sure the terminal returned is live.
19746 (create_terminal): Use allocate_terminal.
19747 (mark_terminals): Move to alloc.c.
19748 (delete_terminal): Use terminal->name as liveness status.
19749 NULL out fields after freeing their contents.
19750 Don't deallocate the object.
19751 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
19752 rather than an int.
19753 (Fterminal_live_p): Accept non-integer arguments.
19754 (Fterminal_list): Return terminal objects rather than an ints.
19755
19756 * alloc.c (enum mem_type): New member for `terminal' objects.
19757 (allocate_terminal): New function.
19758 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
19759 Handle terminals.
19760 (mark_terminal): New fun.
19761 (mark_terminals): Move from terminal.c.
19762
19763 * term.c (get_tty_terminal): Don't treat output_initial specially.
19764 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
19765 (delete_tty): Use terminal->name as liveness status.
19766
19767 * termhooks.h (struct terminal): Make it into a pseudovector.
19768 Remove `deleted' replaced by checking `name's nullness.
19769
19770 * print.c (print_object): Handle terminals.
19771
19772 * lisp.h (enum pvec_type): New `terminal' pseudovector.
19773 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
19774
19775 * frame.c (make_terminal_frame):
19776 * keyboard.c (tty_read_avail_input):
19777 * w32term.c (x_delete_terminal):
19778 * xfns.c (Fx_create_frame, x_create_tip_frame):
19779 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
19780
19781 2007-09-20 Glenn Morris <rgm@gnu.org>
19782
19783 * process.c (Fmake_network_process): Doc fix.
19784
19785 2007-09-19 Jason Rumney <jasonr@gnu.org>
19786
19787 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
19788
19789 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
19790
19791 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
19792 Fix a C warning regarding variable constness.
19793
19794 * xterm.c (handle_one_xevent): Fix a C warning.
19795
19796 2007-09-18 Jason Rumney <jasonr@gnu.org>
19797
19798 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
19799
19800 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
19801
19802 * gtkutil.c (gdpy_def): New variable.
19803 (xg_initialize): Initialize gdpy_def.
19804 (xg_display_close): If no other display exists, set gdpy_def to a
19805 new connection.
19806
19807 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
19808
19809 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
19810 when we have no file name for the icon.
19811 (xg_tool_bar_expose_callback): Remove.
19812 (xg_create_tool_bar): Don't connect expose signal to
19813 xg_tool_bar_expose_callback.
19814 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
19815
19816 2007-09-16 Andreas Schwab <schwab@suse.de>
19817
19818 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
19819 values instead of zapping them.
19820
19821 2007-09-14 Glenn Morris <rgm@gnu.org>
19822
19823 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
19824 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
19825 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
19826 scope and rename to omfib_buffer for clarity.
19827 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
19828
19829 2007-09-14 Kenichi Handa <handa@m17n.org>
19830
19831 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
19832
19833 2007-09-13 Jason Rumney <jasonr@gnu.org>
19834
19835 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
19836
19837 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
19838
19839 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
19840 (mac_term_init): Call here instead, passing rif.
19841
19842 2007-09-13 Glenn Morris <rgm@gnu.org>
19843
19844 * s/hpux.h: No longer define `static' as nothing.
19845
19846 2007-09-13 Johan Bockgård <bojohan@gnu.org>
19847
19848 * callint.c (Fcall_interactively): Remove unused var `fun'.
19849
19850 2007-09-12 Romain Francoise <romain@orebokech.com>
19851
19852 * window.c (prefer_window_split_horizontally, display_buffer):
19853 Revert 2007-09-08 change.
19854
19855 2007-09-12 Glenn Morris <rgm@gnu.org>
19856
19857 * alloca.c: Remove file.
19858 * Makefile.in (alloca): Do not undef.
19859 (allocaobj, alloca.o): Remove.
19860 (otherobj): Remove allocaobj.
19861 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
19862 * regex.c (C_ALLOCA): Remove all references and code that was only
19863 used when this was defined.
19864 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
19865 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
19866 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
19867
19868 * Makefile.in (SOURCES, unlock, relock): Delete.
19869
19870 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
19871 (menu_grab_callback): All uses changed.
19872
19873 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
19874 (x_reply_selection_request): All uses changed.
19875
19876 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
19877
19878 * lread.c (load_warn_old_style_backquotes): Change message to look
19879 better when it appears in the middle of byte-compiler messages.
19880
19881 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
19882
19883 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
19884
19885 * xterm.c (x_create_terminal): Add comment.
19886
19887 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
19888
19889 2007-09-10 Richard Stallman <rms@gnu.org>
19890
19891 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
19892
19893 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
19894
19895 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
19896 (DEFUN): Document `intspec', use it instead of `prompt'.
19897
19898 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
19899
19900 * data.c (Finteractive_form): If the interactive specification starts
19901 with a `(', use it as a Lisp form.
19902
19903 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
19904 name and file modes.
19905
19906 * callint.c (Fcall_interactively): Comment fixes.
19907
19908 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
19909
19910 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
19911 and compiled functions.
19912
19913 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
19914
19915 * window.c (prefer_window_split_horizontally): New variable.
19916 (display_buffer): Consider splitting window horizontally depending
19917 on prefer_window_split_horizontally.
19918
19919 2007-09-08 Eli Zaretskii <eliz@gnu.org>
19920
19921 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
19922
19923 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
19924
19925 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
19926
19927 * frame.c (x_set_frame_parameters): Check number is positive before
19928 using XFASTINT.
19929
19930 * window.c (freeze_window_start): Don't presume selected_window holds
19931 a window object.
19932 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
19933
19934 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
19935
19936 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
19937
19938 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
19939
19940 * window.c (Vsplit_window_preferred_function): New var.
19941 (Fdisplay_buffer): Use it.
19942 (syms_of_window): Export, and initialize it.
19943
19944 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
19945
19946 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
19947
19948 2007-09-06 Glenn Morris <rgm@gnu.org>
19949
19950 * gtkutil.c (menu_grab_callback) <cnt>:
19951 * xselect.c (x_reply_selection_request) <cnt>: Move static
19952 variable to file scope.
19953
19954 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
19955
19956 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
19957 consistent values of selected_frame and selected_window.
19958
19959 2007-09-04 Jason Rumney <jasonr@gnu.org>
19960
19961 * w32console.c (initialize_w32_display): Zero unused hooks.
19962
19963 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
19964
19965 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
19966 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
19967
19968 2007-09-04 Jason Rumney <jasonr@gnu.org>
19969
19970 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
19971 in w32console.c. Set up input. Remove XXX comments that have been
19972 confirmed as correct.
19973
19974 * s/ms-w32.h (MULTI_KBOARD): Define.
19975
19976 * w32console.c (one_and_only_w32cons): Remove.
19977 (initialize_w32_display): Take terminal argument.
19978
19979 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
19980 initialize_w32_display.
19981 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
19982
19983 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
19984
19985 * keyboard.c (discard_mouse_events): Discard it.
19986 (make_lispy_event): Translate it to a lisp event.
19987 (lispy_wheel_names): Add wheel-left and right events.
19988 (syms_of_keyboard): Enlarge wheel_syms.
19989
19990 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
19991 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
19992
19993 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
19994
19995 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
19996 from WM_MOUSEHWHEEL.
19997 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
19998
19999 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
20000 terminal.
20001
20002 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
20003 keyboard for the terminal.
20004
20005 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
20006
20007 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
20008 (Vresume_tty_hook): Rename from Vresume_tty_functions.
20009 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
20010 and resume-tty-function to resume-tty-hook.
20011 (Fsuspend_tty, Fresume_tty): Use new names.
20012
20013 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
20014
20015 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
20016 if it starts with "n:".
20017
20018 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
20019
20020 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
20021
20022 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
20023
20024 * frame.h:
20025 * frame.c (Qterm_environment_variable): Remove.
20026 (syms_of_frame): Don't init and staticpro it.
20027
20028 * callproc.c (getenv_internal): Remove special case for $TERM.
20029
20030 * callproc.c (Vinitial_environment): New variable.
20031 (set_initial_environment): Initialize it.
20032 (syms_of_callproc): Declare it.
20033 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
20034 TERM under which a process runs is never related to the TERM in which
20035 Emacs is running.
20036
20037 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
20038
20039 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
20040 * s/darwin.h: ... do it here.
20041
20042 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
20043
20044 * lisp.h (set_initial_environment): Rename from set_global_environment.
20045
20046 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
20047 removed by mistake on the multi-tty branch.
20048
20049 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
20050 (Fmodify_frame_parameters): Return a value.
20051
20052 * image.c (png_load): Comment-out var only used in commented-out code.
20053
20054 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
20055 before passing it to mark_object.
20056
20057 * xfaces.c (internal_resolve_face_name): Return a value.
20058 (internal_resolve_face_name, resolve_face_name_error): Comment out.
20059
20060 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
20061 (x_icon): Comment-out var only used in commented-out code.
20062
20063 2007-08-29 Romain Francoise <romain@orebokech.com>
20064
20065 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
20066 QUIT hasn't been provided.
20067
20068 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
20069
20070 * callproc.c (child_setup, getenv_internal): Use the
20071 display-environment-variable and term-environment-variable frame params.
20072 (set_initial_environment): Initialise Vprocess_environment.
20073
20074 * config.in: Disable multi-keyboard support on a mac.
20075
20076 * frame.c (Qterm_environment_variable)
20077 (Qdisplay_environment_variable): New variables.
20078 (syms_of_frame): Intern and staticpro them.
20079 (Fmake_terminal_frame): Disable output method test.
20080
20081 * frame.h: Declare them here.
20082
20083 * macfns.c (x_set_mouse_color): Get rif from the frame.
20084 (x_set_tool_bar_lines): Don't use updating_frame.
20085 (mac_window): Add 2 new parameters for consistency with other systems.
20086 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
20087 frame parameters following what is done in X11 and w32. Don't use
20088 FRAME_MAC_DISPLAY_INFO.
20089 (Fx_open_connection, start_hourglass): Remove window-system check.
20090 (x_create_tip_frame): Get the keyboard from the terminal.
20091
20092 * macmenu.c: Reorder includes.
20093 (Fx_popup_menu): Use terminal specific mouse_position_hook.
20094
20095 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
20096 terminal parameter.
20097 (x_clear_frame): Add a frame parameter.
20098 (note_mouse_movement): Get rif from the frame.
20099 (mac_term_init): Initialize the terminal.
20100 (mac_initialize): Make static and move terminal initialization ...
20101 (mac_create_terminal): ... to this new function.
20102
20103 * macterm.h (struct mac_display_info): Add terminal.
20104 (mac_initialize): Delete declaration.
20105
20106 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
20107
20108 * sysdep.c: Comment out text after #endif.
20109
20110 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
20111 is defined. Better initialize ttys in windows. Use terminal
20112 specific mouse_position_hook.
20113
20114 * termhooks.h (union display_info): Add mac_display_info.
20115
20116 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
20117 Set the default minibuffer frame, window_system and the rest of the
20118 frame parameters following what is done in X11.
20119
20120 * w32term.c (w32_initialize): Make static.
20121
20122 * xselect.c (x_handle_selection_clear): Only access
20123 terminal->kboard when MULTI_KBOARD is defined.
20124
20125 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
20126 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
20127
20128 2007-08-29 Jason Rumney <jasonr@gnu.org>
20129
20130 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
20131 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
20132
20133 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
20134 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
20135
20136 * keyboard.c (restore_kboard_configuration): Only define when
20137 MULTI_KBOARD defined.
20138
20139 * makefile.w32-in: Update dependancies from Makefile.in.
20140 (OBJ1): Add terminal.$(O)
20141
20142 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
20143 Don't define function body.
20144 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
20145
20146 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
20147
20148 * w32.c (request_sigio, unrequest_sigio): Remove.
20149
20150 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
20151 (w32con_clear_frame, w32con_clear_end_of_line)
20152 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
20153 (w32con_delete_glyphs, w32con_set_terminal_window)
20154 (scroll_line, w32_sys_ring_bell): Add frame arg.
20155 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
20156 Add terminal arg.
20157 (PICK_FRAME): Remove.
20158 (w32con_write_glyphs): Use frame specific terminal coding.
20159 (one_and_only_w32cons): New global variable.
20160 (initialize_w32_display): Use it for storing hooks.
20161 (create_w32cons_output): New function.
20162
20163 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
20164 arg a frame.
20165
20166 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
20167 Set window_system.
20168 (x_set_tool_bar_lines): Don't use updating_frame.
20169 (Fx_create_frame): Set terminal and ref count.
20170 (Fx_open_connection): Remove window-system check.
20171
20172 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
20173
20174 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
20175 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
20176 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
20177 Add frame arg.
20178 (x_delete_terminal, w32_create_terminal): New functions.
20179 (w32_term_init): Create a terminal.
20180 (w32_initialize): Move terminal specific initialization to
20181 w32_create_terminal.
20182
20183 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
20184 (w32_clear_rect, w32_clear_area): Use background from frame.
20185 (w32_display_info): Add terminal.
20186 (w32_sys_ring_bell, x_delete_display): Declare here.
20187
20188 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
20189
20190 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
20191
20192 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
20193
20194 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
20195 Fix get_named_tty calls for the controlling tty.
20196
20197 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
20198
20199 * term.c (dissociate_if_controlling_tty)[USG]: Fix parse error.
20200
20201 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
20202
20203 * term.c (tty_insert_glyphs): Add missing first parameter.
20204
20205 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
20206
20207 * buffer.c (Fbuffer_list, Fbury_buffer):
20208 Take frame->buried_buffer_list into account.
20209
20210 * cm.c (current_tty): New variable, for cmputc().
20211 (cmputc): Use it.
20212 (cmcheckmagic): Add tty parameter, look up terminal streams there.
20213 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
20214 (cmgoto): Add tty parameter. Pass it on to calccost().
20215 Use emacs_tputs() instead of tputs().
20216
20217 * cm.h (emacs_tputs): New macro to set current_tty, and then call
20218 tputs().
20219 (current_tty): New variable, for cmputc().
20220 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
20221
20222 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
20223 (internal_condition_case, internal_condition_case_1)
20224 (internal_condition_case_2): Don't abort when x_catching_errors.
20225
20226 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
20227 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
20228 prevent crashes caused by bogus longjmps in read_char.
20229
20230 * keymap.h (Fset_keymap_parent): Add EXFUN.
20231
20232 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
20233 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
20234 Remove redundant definition.
20235
20236 * macfns.c (x_set_mouse_color, x_make_gc):
20237 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20238
20239 * w32term.c (x_free_frame_resources):
20240 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20241 (w32_initialize): Use the accessor macros for terminal characteristics.
20242
20243 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
20244 Use the accessor macros for terminal characteristics.
20245 * msdos.c (internal_terminal_init): Use the accessor macros for
20246 terminal characteristics.
20247 (ScreenVisualBell, internal_terminal_init):
20248 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20249
20250 * termopts.h (no_redraw_on_reenter): Declare.
20251
20252 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
20253 (mark_terminals, mark_ttys): Declare.
20254 (Fgarbage_collect): Call them.
20255 (mark_object): Mark buried_buffer_list.
20256
20257 * prefix-args.c: Include stdlib.h for exit.
20258
20259 * syssignal.h: Add comment.
20260
20261 * indent.c: Include stdio.h.
20262
20263 * window.h (Vinitial_window_system): Declare.
20264 (Vwindow_system): Delete declaration.
20265
20266 * fontset.c (Finternal_char_font): Use FRAME_RIF.
20267
20268 * image.c (lookup_image): Don't initialize `c' until the xasserts
20269 have been run.
20270
20271 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
20272 FRAME_FOREGROUND_PIXEL.
20273
20274 * print.c (print_preprocess): Don't lose print_depth levels while
20275 iterating.
20276
20277 * widget.c (update_from_various_frame_slots):
20278 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20279
20280 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
20281 frames.
20282 (window_internal_height): Remove bogus make_number call.
20283 (init_window_once): Call make_terminal_frame with two zero parameters.
20284
20285 * fileio.c (Fread_file_name): Update comment.
20286
20287 * callint.c (Fcall_interactively):
20288 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
20289 Make sure it is correctly unwound.
20290
20291 * xsmfns.c (x_session_close): New function.
20292
20293 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
20294 Delete declarations.
20295
20296 * xterm.h: Remove declaration for x_fully_uncatch_errors.
20297 (x_output): Remove background_pixel and foreground_pixel fields.
20298 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
20299 (x_delete_device, x_session_close): Declare.
20300
20301 * lread.c: Include setjmp.h. Update declaration of `read_char'.
20302 (read_filtered_event): Call `read_char' with a local
20303 `wrong_kboard_jmpbuf'.
20304
20305 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
20306 Don't call single_kboard_state. Use FRAME_RIF.
20307
20308 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
20309 systems.
20310
20311 * lisp.h (set_process_environment): Rename to `set_global_environment'.
20312 (Fframe_with_environment, Fset_input_meta_mode)
20313 (Fset_quit_char): EXFUN.
20314 (x_create_device, tty_output, terminal, tty_display_info): Declare.
20315 (init_sys_modes, reset_sys_modes): Update prototypes.
20316 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
20317
20318 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
20319 Vlocal_key_translation_map, and Vkeyboard_translate_table.
20320 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
20321 Delete declarations.
20322 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
20323 (temporarily_switch_to_single_kboard, tty_read_avail_input):
20324 New declarations.
20325
20326 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
20327 already does that during init_display(). Call syms_of_keymap
20328 before syms_of_keyboard. Call `syms_of_terminal'.
20329 Call set_initial_environment, not set_process_environment.
20330 (shut_down_emacs): Call reset_all_sys_modes() instead of
20331 reset_sys_modes().
20332
20333 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
20334 (internal_resolve_face_name, resolve_face_name_error): New functions.
20335 (resolve_face_name): Protect against loops and errors thrown by Fget.
20336 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
20337 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
20338
20339 * scroll.c: Replace CURTTY() with local variables throughout the
20340 file (where applicable).
20341 (calculate_scrolling, calculate_direct_scrolling)
20342 (scrolling_1, scroll_cost): Use the accessor macros for terminal
20343 characteristics.
20344
20345 * keymap.c (Vfunction_key_map): Remove.
20346 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
20347 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
20348 (Vkey_translation_map): Remove.
20349 (syms_of_keymap): Remove DEFVAR for key-translation-map.
20350 (Fdescribe_buffer_bindings)
20351 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
20352 Update for terminal-local key-translation-map.
20353
20354 * Makefile.in (callproc.o): Update dependencies.
20355 (lisp, shortlisp): Add termdev.elc.
20356 (obj): Add terminal.o.
20357 (terminal.o): Add dependencies.
20358 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
20359 (data.o, fns.o): Add termhooks.h dependency.
20360 (SOME_MACHINE_LISP): Add dnd.elc.
20361 (minibuf.o): Fix typo.
20362 Update dependencies.
20363
20364 * data.c (do_symval_forwarding, store_symval_forwarding)
20365 (find_symbol_value): Use the selected frame's keyboard, not
20366 current_kboard.
20367
20368 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
20369 Vwindow_system.
20370
20371 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
20372 Fmenu_bar_open.
20373 (syms_of_xmenu): Update defsubr.
20374 (mouse_position_for_popup, Fx_popup_menu)
20375 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
20376 (set_frame_menubar, free_frame_menubar)
20377 (create_and_show_popup_menu, xmenu_show)
20378 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
20379 an X frame.
20380
20381 * xselect.c (x_own_selection): Abort if not an X frame.
20382 (some_frame_on_display): Check if it is an X frame.
20383 (x_handle_selection_clear): Deal with MULTI_KBOARD.
20384
20385 * coding.c: Include frame.h and termhooks.h.
20386 (terminal_coding, keyboard_coding): Delete.
20387 (Fset_terminal_coding_system_internal)
20388 (Fset_keyboard_coding_system_internal)
20389 (Fkeyboard_coding_system)
20390 (Fterminal_coding_system): Add a terminal parameter.
20391 Get terminal_coding from the terminal.
20392 (init_coding_once): Don't call setup_coding_system here.
20393
20394 * dispextern.h (set_scroll_region, turn_off_insert)
20395 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
20396 (tty_clear_end_of_line, tty_setup_colors)
20397 (delete_tty, updating_frame)
20398 (produce_special_glyphs, produce_glyphs, write_glyphs)
20399 (insert_glyphs): Remove.
20400 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
20401 (tty_turn_off_highlight, get_tty_size): Add declaration.
20402 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
20403
20404 * frame.h (enum output_method): Add output_initial.
20405 (struct x_output): Delete.
20406 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
20407 Access foreground_pixel and background_pixel directly from the frame.
20408 (tty_display): Delete.
20409 (struct frame): Add buried_buffer_list, foreground_pixel,
20410 background_pixel and terminal. Delete kboard.
20411 (union output_data): Add tty.
20412 (FRAME_KBOARD): Get the kboard from the terminal.
20413 (FRAME_INITIAL_P): New macro.
20414 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
20415 (Qterm_environment_variable, Qdisplay_environment_variable)
20416 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
20417 New declarations.
20418
20419 * termchar.h (tty_output, tty_display_info): New structures.
20420 (tty_list): Declare.
20421 (FRAME_TTY, CURTTY): New macros.
20422 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
20423 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
20424 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
20425 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
20426
20427 * callproc.c: Include frame.h and termhooks.h, for terminal
20428 parameters.
20429 (add_env): New function.
20430 (child_setup): Use it.
20431 (child_setup, getenv_internal): Handle the new Vprocess_environment.
20432 (getenv_internal): Fix get_terminal_param call.
20433 (Fgetenv_internal, egetenv): Update doc.
20434 (syms_of_callproc): Initialize Vprocess_environment to nil.
20435 Register and initialize them. Remove obsolete defvars. Update doc
20436 strings.
20437 (child_setup): Handle Vlocal_environment_variables.
20438 (getenv_internal): Add terminal parameter.
20439 Handle Vlocal_environment_variables.
20440 (Fgetenv_internal): Add terminal parameter.
20441 (child_setup, getenv_internal, Fgetenv_internal): Store the local
20442 environment in a frame (not terminal) parameter. Update doc strings.
20443 (set_initial_environment): Rename from set_global_environment.
20444 Store Emacs environment in initial frame parameter.
20445
20446 * xdisp.c (redisplay_internal): Update references to
20447 `previous_terminal_frame'.
20448 (display_mode_line, Fformat_mode_line): Replace calls to
20449 `push_frame_kboard' with `push_kboard'.
20450 (get_glyph_string_clip_rects): Add extra parentheses and
20451 braces to prevent compiler warnings.
20452 (calc_pixel_width_or_height): Add xassert to check that the
20453 frame is alive. Don't call `lookup_image' on a termcap frame.
20454 (message2_nolog, message3_nolog, redisplay_internal)
20455 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
20456 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
20457 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
20458 (Fx_display_pixel_width, Fx_display_pixel_height)
20459 (Fx_display_planes, Fx_display_color_cells)
20460 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
20461 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
20462 (Fx_display_backing_store, Fx_display_visual_class)
20463 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
20464 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
20465
20466 * xfns.c (x_set_foreground_color x_set_background_color)
20467 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
20468 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20469 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
20470 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
20471 terminal that is being deleted.
20472 (Fx_create_frame): Use `store_frame_param' to set `window-system'
20473 frame parameter, and make sure it overrides any user-supplied setting.
20474 (Fx_close_connection, Fx_synchronize): Unify argument names with
20475 the rest of the DEFUNs.
20476
20477 * dispnew.c (Fsend_string_to_terminal): Update call to
20478 `get_tty_terminal'.
20479 (Fredraw_frame, Fsend_string_to_terminal)
20480 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
20481 FRAME_TERMCAP_P and FRAME_TTY.
20482 (window_change_signal): Don't believe width/height values that are
20483 impossibly small.
20484 (Vinitial_window_system): Rename from Vwindow_system.
20485 (termscript, Wcm, rif): Delete.
20486
20487 * termhooks.h (struct terminal): New struct containing the
20488 previously global text display hooks and new members NAME,
20489 DELETED and PARAM_ALIST.
20490 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
20491 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
20492 (FRAME_RIF): New macros.
20493 (get_terminal_param, get_device): New declarations.
20494 (termscript): Delete declaration.
20495
20496 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
20497 (XTflash, x_free_frame_resources, x_scroll_bar_create)
20498 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
20499 FRAME_FOREGROUND_PIXEL.
20500 (x_fully_uncatch_errors): Disable definition.
20501 (x_scroll_bar_expose): Fix reference to foreground pixel.
20502 (XTread_socket): Disable loop on all X displays.
20503 (x_delete_terminal): Don't set terminal->deleted and let
20504 delete_terminal delete the frames on the terminal.
20505 (x_delete_display): Doc update to reflect changes in
20506 delete_terminal.
20507 (x_display_info) <terminal>: Move member earlier in the struct.
20508 (deleting_tty): Remove old variable.
20509 (Fsuspend_tty): Call clear_tty_hooks.
20510 (Fresume_tty, init_tty): Call set_tty_hooks.
20511 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
20512 errors on X frames.
20513 (x_catch_errors_unwind): Abort if x_error_message is NULL.
20514 (handle_one_xevent): Initialize `f' to NULL.
20515 (x_delete_terminal, x_create_terminal): New functions.
20516 (XTset_terminal_modes, XTreset_terminal_modes)
20517 (XTread_socket, x_connection_closed, x_term_init)
20518 (x_term_init, x_delete_display): Add terminal parameter.
20519 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
20520 X connections.
20521
20522 * frame.c: Include termchar.h.
20523 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
20524 (Qwindow_system, Qenvironment, Qterm_environment_variable)
20525 (Qdisplay_environment_variable): New vars.
20526 (Fframep): Deal with output_initial.
20527 (Fframe-live-p): Doc fix.
20528 (Fwindow-system): New function.
20529 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
20530 (make_terminal_frame): Don't create frames on a terminal that is
20531 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20532 (store_frame_param): Check for found_for_frame before calling XFRAME.
20533 (Fmake_terminal_frame): Handle NULL tty names correctly.
20534 (syms_of_frame): Enhance doc string of `default-frame-alist'.
20535 (Fdelete_frame): Remove unused variable `count'. Don't allow other
20536 frames to refer to a deleted frame in their 'environment parameter.
20537 (Fframe_with_environment): New function.
20538 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
20539 (get_future_frame_param): New function.
20540 (Fmake_terminal_frame): Use it.
20541 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
20542
20543 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
20544 * sysdep.c (reset_sys_modes): Update for renames.
20545
20546 * keyboard.c (tty_read_avail_input): New function.
20547 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
20548 (syms_of_keyboard): Defsubr them.
20549 (Fset_input_meta_mode, Fset_quit_char): New functions.
20550 (Fset_input_mode): Split to above functions.
20551 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
20552 parameter. Use it in call to `read_char'.
20553 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
20554 Set wrong_kboard_jmpbuf correctly in recursive calls.
20555 Use current_kboard to access Vkeyboard_translate_table.
20556 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
20557 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
20558 Update longjmp invocations. Remember the original current_kboard,
20559 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
20560 changes it. Comment out unnecessary calls to
20561 `record_single_kboard_state' and `any_kboard_state'.
20562 Update recursive calls.
20563 (wrong_kboard_jmpbuf): Remove global variable.
20564 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
20565 Handle deleted interrupted_kboards correctly; that is a legal
20566 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
20567 and read_char calls. Abort if interrupted_kboard died in read_char.
20568 (any_kboard_state, single_kboard_state)
20569 (push_frame_kboard): Remove function.
20570 (pop_kboard): Switch out of single_kboard mode if the kboard has
20571 been deleted. Remove unused variable. Help debugging by not
20572 changing current_kboard unnecessarily. Set current_kboard to the
20573 kboard of the selected frame when the stored kboard object has
20574 been deleted before pop_kboard.
20575 (temporarily_switch_to_single_kboard): Change first parameter to a
20576 frame pointer. Throw an error when caller wants to change kboards
20577 while in single_kboard mode. Don't push_kboard if we weren't in
20578 single kboard state. Don't pop_kboard if we popped into any
20579 kboard state.
20580 (restore_kboard_configuration): Abort if pop_kboard changed the
20581 kboard in single_kboard mode. Call pop_kboard only after setting
20582 up single_kboard mode.
20583 (Frecursive_edit): Switch to single_kboard mode only in nested
20584 command loops.
20585 (cmd_error, command_loop, command_loop_1, timer_check):
20586 Comment out unnecessary call to `any_kboard_state' and
20587 `record_single_kboard_state'.
20588 (delete_kboard): Exit single_kboard mode if we have just deleted
20589 that kboard. Use FRAME_KBOARD.
20590 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
20591 `fatal_error_signal'.
20592 (record_single_kboard_state): Don't push_kboard if we weren't in
20593 single kboard state. Don't pop_kboard if we popped into any
20594 kboard state.
20595 (push_frame_kboard): Rename to push_kboard.
20596 (kbd_buffer_get_event): Use FRAME_TERMINAL.
20597 (read_avail_input): Read input from all terminals.
20598 (mark_kboards): Also mark Vkeyboard_translate_table.
20599 (kbd_buffer_store_event_hold): Simplify condition.
20600 (read_key_sequence): Reinitialize fkey and keytran at each replay.
20601 (Vkeyboard_translate_table): Move to struct kboard.
20602 (init_kboard): Initialize Vkeyboard_translate_table.
20603 (syms_of_keyboard): Use DEFVAR_KBOARD to define
20604 Vkeyboard_translate_table. Update doc strings. Update docs of
20605 local-function-key-map and function-key-map.
20606
20607 * terminal.c: New file.
20608
20609 * term.c: Include errno.h.
20610 (Vring_bell_function, device_list, initial_device)
20611 (next_device_id, ring_bell, update_begin, update_end)
20612 (set_terminal_window, cursor_to, raw_cursor_to)
20613 (clear_to_end, clear_frame, clear_end_of_line)
20614 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
20615 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
20616 (syms_of_term): Move their initialization to terminal.c.
20617 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
20618 (Ftty_display_color_cells)
20619 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
20620 (clear_tty_hooks, set_tty_hooks)
20621 (init_tty, maybe_fatal): New functions.
20622 (Ftty_type): Return nil if terminal is not on a tty instead of
20623 throwing an error. Doc update.
20624 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
20625 Doc update. Initialize new subrs and variables.
20626 (delete_tty): Use terminal->deleted.
20627 (tty_set_terminal_modes): Rename from set_terminal_modes.
20628 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
20629 (set_scroll_region): Rename to `tty_set_scroll_region'.
20630 (turn_on_insert): Rename to `tty_turn_on_insert'.
20631 (turn_off_insert): Rename to `tty_turn_off_insert'.
20632 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
20633 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
20634 (toggle_highligh): Rename to `tty_toggle_highlight'.
20635 (background_highlight): Rename to `tty_background_highlight'.
20636 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
20637 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
20638 (tty_set_scroll_region, tty_background_highlight)
20639 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
20640 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
20641 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
20642 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
20643 Add static modifier.
20644 (tty_reset_terminal_modes, tty_set_terminal_window)
20645 (tty_set_scroll_region, tty_background_highlight)
20646 (tty_highlight_if_desired, tty_cursor_to)
20647 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
20648 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
20649 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
20650 renames.
20651
20652 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
20653
20654 * keyboard.c: Qrtl is new.
20655 (parse_tool_bar_item): Handle :rtl keyword.
20656 (syms_of_keyboard): Intern :rtl keyword.
20657
20658 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
20659
20660 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
20661 so no Lisp code is executed.
20662 (file_for_image, find_rtl_image): New functions.
20663 (xg_get_image_for_pixmap): Use file_for_image.
20664 (update_frame_tool_bar): If direction is RTL, use RTL image if
20665 defined. Use Gtk stock images if defined.
20666
20667 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20668
20669 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
20670 for nonexistent or zero-width glyph in composition glyph.
20671
20672 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
20673
20674 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
20675
20676 * xdisp.c (Finvisible_p): New function.
20677 (syms_of_xdisp): defsubr it.
20678
20679 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
20680
20681 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
20682 Doc fixes.
20683
20684 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20685
20686 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
20687
20688 2007-08-24 Martin Rudalics <rudalics@gmx.at>
20689
20690 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
20691 whether decoding has modified buffer contents.
20692
20693 2007-08-24 Jason Rumney <jasonr@gnu.org>
20694
20695 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
20696 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
20697 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
20698 (init_svg_functions) [HAVE_NTGUI]: New function.
20699 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
20700 (svg_load_image): Use them.
20701 (svg_load_image) [HAVE_NTGUI]: Implement background.
20702
20703 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20704
20705 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
20706 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
20707 (LIBX): Remove @RSVG_LIBS@.
20708 (LIBES): Add $(RSVG_LIBS).
20709
20710 * image.c (svg_load_image): Blend with specified background if exists.
20711 Use IMAGE_BACKGROUND. Add Mac OS Support.
20712
20713 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
20714 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
20715 Remove macros.
20716 [MAC_OSX] (socket_callback): Do nothing.
20717 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
20718 ReceiveNextEvent.
20719 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
20720 socket_callback.
20721 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
20722
20723 2007-08-22 Glenn Morris <rgm@gnu.org>
20724
20725 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
20726
20727 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
20728
20729 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
20730
20731 * image.c: Add support for SVG images. Some additional comments
20732 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
20733 (svg_image_p): New function to test for SVG image.
20734 (svg_load): New function to load SVG image.
20735 (svg_load_image): New function, helper for svg_load.
20736 (Qsvg): New Lisp_object.
20737 (svg_keyword_index): New enum.
20738 (svg_format): New static `image_keyword' struct.
20739 (svg_type): New static `image_type' struct.
20740 (librsvg/rsvg.h): Include it.
20741
20742 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
20743
20744 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
20745
20746 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
20747
20748 * lread.c (Qold_style_backquotes): New var.
20749 (syms_of_lread): Init and staticpro it.
20750 (load_warn_old_style_backquotes): New fun.
20751 (Fload): Use them to warn about old style backquotes.
20752 (end_of_file_error, Fload): Remove unused vars.
20753
20754 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
20755
20756 * lread.c (Vold_style_backquotes): New var.
20757 (syms_of_lread): Init and export it to Elisp.
20758 (read1): Set it when we find an old-style (back)quote.
20759
20760 2007-08-22 Jason Rumney <jasonr@gnu.org>
20761
20762 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
20763
20764 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
20765
20766 * puresize.h (BASE_PURESIZE): Increase to 1140000.
20767
20768 2007-08-19 Richard Stallman <rms@gnu.org>
20769
20770 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
20771
20772 2007-08-19 Andreas Schwab <schwab@suse.de>
20773
20774 * alloc.c (pure): Round PURESIZE up.
20775
20776 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
20777
20778 * xterm.c (handle_one_xevent): Remove check that mouse click is in
20779 active frame.
20780
20781 2007-08-16 Richard Stallman <rms@gnu.org>
20782
20783 * eval.c (Fcommandp): Add parens to clarify.
20784
20785 * minibuf.c (Fall_completions): Use enum for type of table.
20786
20787 * emacs.c (USAGE2): Improve text.
20788
20789 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
20790
20791 * term.c (tty_default_color_capabilities): Declare static
20792 variables in file scope, to avoid HPUX compiler problem.
20793
20794 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
20795
20796 * gtkutil.c (update_frame_tool_bar): Use -1 as index
20797 to gtk_toolbar_insert.
20798
20799 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
20800
20801 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
20802
20803 * insdel.c (reset_var_on_error): New fun.
20804 (signal_before_change, signal_after_change):
20805 Use it to reset (after|before)-change-functions to nil in case of error.
20806 Bind inhibit-modification-hooks to t.
20807 Don't bind (after|before)-change-functions to nil while they run.
20808
20809 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20810
20811 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
20812 filling pixmap with stippled background.
20813
20814 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20815
20816 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
20817 Don't use invisible frame as parent window for repositioning.
20818
20819 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
20820
20821 * print.c (new_backquote_output): Rename from old_backquote_output.
20822 (print): Inverse its logic (according to its name) so as to match the
20823 behavior of new_backquote_flag in lread.c.
20824
20825 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20826
20827 * gmalloc.c (posix_memalign): New function.
20828
20829 * macterm.c (frame_highlight, frame_unhighlight): Don't call
20830 ActivateControl/DeactivateControl here.
20831 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
20832 frame-notice-user-settings is non-nil.
20833 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
20834 for kEventParamFMFontStyle.
20835 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
20836 mac_pass_command_to_system and mac_pass_control_to_system here.
20837 (XTread_socket): Call ActivateControl/DeactivateControl here.
20838 (XTread_socket) [TARGET_API_MAC_CARBON]:
20839 Check mac_pass_command_to_system and mac_pass_control_to_system here.
20840 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
20841 for window repositioning.
20842
20843 2007-08-08 Glenn Morris <rgm@gnu.org>
20844
20845 * Replace `iff' in doc-strings and comments.
20846
20847 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
20848
20849 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
20850
20851 2007-08-07 Martin Rudalics <rudalics@gmx.at>
20852
20853 * fileio.c (Finsert_file_contents): Run format-decode and
20854 after_insert_file_functions on entire buffer when REPLACE is
20855 non-nil and inhibit modification_hooks and point_motion_hooks.
20856 For consistency, run after_insert_file_functions iff something
20857 got inserted. Move signal_after_change and update_compositions
20858 after code running after_insert_file_functions. Make sure that
20859 undo_list doesn't record intermediate steps of the decoding process.
20860
20861 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20862
20863 * emacs.c (main)
20864 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
20865 Call malloc_enable_thread on interactive startup.
20866
20867 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
20868 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
20869 [USE_PTHREAD]: Conditionalize with it.
20870 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
20871 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
20872 New functions.
20873
20874 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
20875
20876 * xdisp.c (redisplay_window): When restoring original buffer
20877 position, make sure it is still valid.
20878
20879 * image.c (png_load): Ignore png-supplied background color.
20880
20881 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20882
20883 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
20884 Use kCFAbsoluteTimeIntervalSince1970.
20885
20886 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
20887 New variable.
20888 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
20889 event loop should be quit.
20890 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
20891 Quit dialog event loop if quit_dialog_event_loop is set.
20892
20893 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
20894 (Selection): New typedef. Use instead of ScrapRef.
20895 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
20896 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
20897 (mac_clear_selection): Rename from clear_scrap.
20898 (get_flavor_type_from_symbol): New argument SEL and subsume function of
20899 scrap_has_target_type. All uses changed.
20900 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
20901 (mac_selection_has_target_p): New functions.
20902 (mac_put_selection_value): Rename from put_scrap_string.
20903 (mac_get_selection_value): Rename from get_scrap_string.
20904 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
20905 (put_scrap_private_timestamp, scrap_has_target_type)
20906 (get_scrap_private_timestamp): Remove functions.
20907 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
20908 (x_own_selection, x_get_local_selection):
20909 Use mac_valid_selection_value_p.
20910 (x_own_selection): Don't use put_scrap_private_timestamp.
20911 Record OWNERSHIP-INFO into Vselection_alist instead.
20912 (x_get_local_selection): Don't check type if request is local.
20913 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
20914 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
20915
20916 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
20917
20918 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
20919 add comment explaining why.
20920
20921 2007-08-03 Richard Stallman <rms@gnu.org>
20922
20923 * fileio.c (Fvisited_file_modtime): Use make_time.
20924
20925 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
20926
20927 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
20928 build.
20929
20930 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
20931
20932 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
20933
20934 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
20935
20936 * puresize.h (BASE_PURESIZE): Increase to 1130000.
20937
20938 2007-07-30 Richard Stallman <rms@gnu.org>
20939
20940 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
20941
20942 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
20943
20944 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
20945
20946 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
20947
20948 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
20949 remote default-directory.
20950
20951 * buffer.c (mode-line-format): Update doc string.
20952
20953 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20954
20955 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
20956 scroll bar gap.
20957 (x_scroll_bar_create): Set bar->fringe_extended_p.
20958 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
20959 on frame edge. Check fringe background extension. Don't clear
20960 extended fringe background area.
20961
20962 * w32term.h (struct scroll_bar): New member fringe_extended_p.
20963 (w32_fill_area): Enclose multiple statements with do ... while (0).
20964
20965 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
20966 Extend fringe background to scroll bar gap.
20967 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
20968 Set bar->fringe_extended_p.
20969 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
20970 Put leftmost/rightmost scroll bars on frame edge. Check fringe
20971 background extension. Don't clear extended fringe background area.
20972
20973 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
20974 New member fringe_extended_p.
20975
20976 2007-07-25 Glenn Morris <rgm@gnu.org>
20977
20978 * Relicense all FSF files to GPLv3 or later.
20979
20980 * COPYING: Switch to GPLv3.
20981
20982 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
20983
20984 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
20985
20986 * data.c (Finteractive_form): Check for the presence of an
20987 `interactive-form' symbol property more thoroughly.
20988
20989 * data.c (Finteractive_form): Use an `interactive-form' property if
20990 present, analogous to the function-documentation property.
20991
20992 2007-07-24 Jason Rumney <jasonr@gnu.org>
20993
20994 * w32fns.c (x_real_positions): Get real position from OS instead of
20995 calculating it.
20996
20997 2007-07-23 Jason Rumney <jasonr@gnu.org>
20998
20999 * filelock.c (current_lock_owner): Allow for @ sign in username.
21000
21001 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
21002
21003 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
21004 remote default-directory.
21005
21006 * buffer.c (mode-line-format): Describe above case in doc string.
21007
21008 2007-07-20 Eli Zaretskii <eliz@gnu.org>
21009
21010 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
21011 Define if not defined.
21012
21013 2007-07-18 Jason Rumney <jasonr@gnu.org>
21014
21015 * w32proc.c (w32_executable_type): Handle 64 bit executables.
21016
21017 2007-07-18 Richard Stallman <rms@gnu.org>
21018
21019 * data.c (Fsetq_default): Doc fix.
21020
21021 * eval.c (Fsetq): Doc fix.
21022
21023 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
21024
21025 * coding.c (Ffind_operation_coding_system):
21026 * eval.c (For, Fand): Doc fixes.
21027 Reported by Johan Bockgård.
21028
21029 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
21030
21031 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
21032
21033 * xterm.h: Declare x_ewmh_activate_frame.
21034
21035 * xterm.c (x_ewmh_activate_frame): New function.
21036 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
21037
21038 2007-07-17 Martin Rudalics <rudalics@gmx.at>
21039
21040 * window.c (Fdisplay_buffer): If largest or LRU window is the
21041 only window, split it even if it is not eligible for splitting.
21042 This restores the original behavior broken by the 2007-07-15
21043 change.
21044
21045 2007-07-17 Glenn Morris <rgm@gnu.org>
21046
21047 * abbrev.c (abbrev_check_chars): New function.
21048 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
21049 Call abbrev_check_chars to check abbrev characters are word
21050 constituents. Doc fix.
21051
21052 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
21053
21054 * process.c (Fstart_process, Fmake_network_process)
21055 (read_process_output): Fix up last changes.
21056
21057 2007-07-16 Eli Zaretskii <eliz@gnu.org>
21058
21059 * makefile.w32-in (clean): Don't delete *~.
21060
21061 2007-07-16 Andreas Schwab <schwab@suse.de>
21062
21063 * window.c (Fdisplay_buffer): Use NILP.
21064 (Fset_window_scroll_bars): Likewise.
21065
21066 2007-07-15 Martin Rudalics <rudalics@gmx.at>
21067
21068 * window.c (window_min_size_2): New function.
21069 (window_min_size_1, size_window, Fdisplay_buffer)
21070 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
21071 windows without mode- or header-lines when window-min-height is
21072 too small.
21073 (size_window): Reset nodelete_p after testing it, following an
21074 earlier note by Kim F. Storm.
21075 (display_buffer): Do not set split_height_threshold to twice the
21076 value of window_min_height to avoid changing the value of a
21077 customizable variable. Rather explicitly check whether the
21078 height of the window that shall be splitted is at least as large
21079 as split_height_threshold.
21080 (Fwindow_full_width_p): New defun.
21081 (syms_of_window): Defsubr it.
21082
21083 * window.h: Add EXFUN for Fwindow_full_width_p.
21084
21085 2007-07-14 Jason Rumney <jasonr@gnu.org>
21086
21087 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
21088
21089 2007-07-14 Richard Stallman <rms@gnu.org>
21090
21091 * eval.c (maybe_call_debugger): New function.
21092 (find_handler_clause): Use maybe_call_debugger.
21093 Call it when the handler says `debug'.
21094 Eliminate DEBUGGER_VALUE_PTR.
21095 (Fsignal): Eliminate debugger_value.
21096 (Qdebug): New variable.
21097 (syms_of_eval): Initialize it.
21098
21099 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
21100
21101 * eval.c (Fprogn):
21102 * keyboard.c (Ftrack_mouse):
21103 * print.c (Fwith_output_to_temp_buffer):
21104 * window.c (Fsave_window_excursion): Doc fix.
21105
21106 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
21107
21108 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
21109
21110 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
21111
21112 * process.h (struct Lisp_Process): Turn slots infd, outfd,
21113 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
21114 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
21115 read_output_delay, and read_output_skip from Lisp_Objects to ints.
21116 Remove unused encoding_carryover.
21117 * process.c: Adjust all functions accordingly.
21118
21119 2007-07-12 Richard Stallman <rms@gnu.org>
21120
21121 * term.c: Include unistd.h only if HAVE_UNISTD_H.
21122
21123 2007-07-11 Jason Rumney <jasonr@gnu.org>
21124
21125 * makefile.w32-in (LIBS): Include OLE32.
21126
21127 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
21128 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
21129
21130 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
21131
21132 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
21133 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
21134 from a Lisp_Object into a bare pointer.
21135 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
21136 Adjust the code correspondingly.
21137
21138 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
21139
21140 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
21141 (term_show_mouse_face): Remove unused var `j'.
21142 (handle_one_term_event): Remove unused vars `i' and `j'.
21143 Don't cast return value of ttyname since it's not necessary.
21144
21145 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
21146
21147 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
21148 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
21149
21150 * fns.c (map_char_table): Use an array of int for `indices' rather than
21151 an array of Lisp_Objects (which are only ever integers anyway).
21152 (Fmap_char_table): Update caller.
21153 * lisp.h: Update prototype.
21154 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
21155 * fontset.c (Ffontset_info):
21156 * casetab.c (set_case_table): Update callers.
21157
21158 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
21159
21160 * keymap.c (struct accessible_keymaps_data)
21161 (struct where_is_internal_data): New structures.
21162 (accessible_keymaps_1, where_is_internal_1): Use them to change
21163 interface to adhere to the one used by map_keymap.
21164 (Faccessible_keymaps, where_is_internal): Use map_keymap.
21165 (accessible_keymaps_char_table, where_is_internal_2): Remove.
21166
21167 * keymap.h (map_keymap_function_t): More informative prototype.
21168
21169 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
21170
21171 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
21172 (looking_at_1): Don't change search_regs and last_thing_searched
21173 if `inhibit-changing-match-data' is non-nil.
21174 (string_match_1, search_buffer, set_search_regs): Likewise.
21175 (syms_of_search): Add Lisp level definition for
21176 `inhibit-changing-match-data' and set it to nil.
21177 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
21178 start and end of the match, instead of using values in search_regs.
21179
21180 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21181
21182 * minibuf.c (Fcompleting_read): New value `confirm-only'
21183 for `require-match'.
21184
21185 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
21186
21187 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
21188 part of the 2007-06-27 change to syms_of_fileio.
21189
21190 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21191
21192 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
21193 Check WINDOWP before using XWINDOW. Consolidate return statements.
21194
21195 2007-06-27 Richard Stallman <rms@gnu.org>
21196
21197 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
21198
21199 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
21200
21201 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
21202
21203 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21204
21205 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
21206 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
21207 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
21208 (_free_internal, memalign): Use them.
21209 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
21210 Initialize to PTHREAD_MUTEX_INITIALIZER.
21211 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
21212 (morecore_nolock): Rename from morecore. All uses changed.
21213 Use only nolock versions of internal allocation functions.
21214 (_malloc_internal_nolock, _realloc_internal_nolock)
21215 (_free_internal_nolock): New functions created from
21216 _malloc_internal, _realloc_internal, and _free_internal.
21217 (_malloc_internal, _realloc_internal, _free_internal): Use them.
21218 Copy hook value to automatic variable before its use.
21219 (memalign): Copy hook value to automatic variable before its use.
21220
21221 2007-06-26 Kenichi Handa <handa@m17n.org>
21222
21223 * coding.c (Ffind_operation_coding_system): Docstring improved.
21224 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
21225
21226 2007-06-25 David Kastrup <dak@gnu.org>
21227
21228 * keymap.c (Fcurrent_active_maps): Add `position' argument.
21229 (Fwhere_is_internal): Adjust call to `current-active-maps' to
21230 cater for additional parameter.
21231
21232 * keymap.h: Adjust number of parameters to `current-active-maps'.
21233
21234 * doc.c (Fsubstitute_command_keys): Adjust call of
21235 `current-active-maps'.
21236
21237 2007-06-25 David Kastrup <dak@gnu.org>
21238
21239 * callint.c (Fcall_interactively): Make the parsing of interactive
21240 specs somewhat more readable.
21241
21242 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21243
21244 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
21245 to scroll bar gap also when bitmap fills fringe. Draw only foreground
21246 if extended background has already been filled.
21247
21248 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21249
21250 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
21251 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
21252
21253 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
21254 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
21255 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
21256 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
21257 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
21258 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
21259 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
21260 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
21261 Run timers during dialog popup.
21262 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
21263
21264 2007-06-21 Jason Rumney <jasonr@gnu.org>
21265
21266 * image.c (convert_mono_to_color_image): Swap fore and background.
21267
21268 2007-06-20 Jason Rumney <jasonr@gnu.org>
21269
21270 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
21271 (w32_free_bdf_font): Unmap memory not handle.
21272
21273 2007-06-20 Sam Steingold <sds@gnu.org>
21274
21275 * gmalloc.c (__morecore): Fix the declaration to comply with the
21276 definition.
21277
21278 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
21279
21280 * w32term.c (w32_delete_display): Remove leftover declaration.
21281 (w32_define_cursor, w32_initialize): Make static.
21282
21283 * w32.c (_wsa_errlist): Fix typo in error message.
21284 (init_environment): Ignore any environment variable from the
21285 registry having a null value.
21286
21287 2007-06-20 Glenn Morris <rgm@gnu.org>
21288
21289 * Makefile.in (LIBGIF): Default to -lgif.
21290
21291 2007-06-17 Jason Rumney <jasonr@gnu.org>
21292
21293 * w32menu.c (add_menu_item): Don't use multibyte string functions on
21294 unicode strings.
21295
21296 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
21297
21298 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
21299 Fix typo in docstring.
21300
21301 2007-06-16 Eli Zaretskii <eliz@gnu.org>
21302
21303 * w32menu.c (add_menu_item): Escape `&' characters in menu items
21304 and their keybindings.
21305
21306 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
21307
21308 * composite.c (update_compositions): Fix last fix.
21309
21310 2007-06-14 Jason Rumney <jasonr@gnu.org>
21311
21312 * w32.c (get_process_times_fn): New function pointer.
21313 (globals_of_w32): Intialize it if present in kernel32.dll.
21314 (w32_get_internal_run_time): New function.
21315
21316 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
21317
21318 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
21319
21320 * composite.c (update_compositions): Check the validness of
21321 compositions.
21322
21323 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21324
21325 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
21326 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
21327
21328 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
21329 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
21330
21331 * macgui.h (USE_MAC_TOOLBAR): New define.
21332
21333 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
21334 Return immediately unless popup is activated.
21335
21336 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
21337 background to scroll bar gap.
21338 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
21339 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
21340 scroll bars on frame edge. Check fringe background extension.
21341 Don't clear extended fringe background area.
21342 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
21343 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
21344 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
21345 [USE_MAC_TOOLBAR]: New macros.
21346 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
21347 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
21348 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
21349 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
21350 [USE_MAC_TOOLBAR]: New functions.
21351 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
21352 manually if previous repositioning has failed.
21353 (mac_handle_keyboard_event): Use precomputed event kind.
21354 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
21355 as tool bar item click. Handle mouse movement over tool bar items.
21356
21357 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
21358 toolbar_win_gravity.
21359 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
21360 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
21361 Add externs.
21362
21363 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
21364 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
21365
21366 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
21367
21368 * image.c (search_image_cache): Remove unused variable.
21369
21370 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
21371
21372 * xfns.c, xmenu.c: Link to xaw3d if available.
21373
21374 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21375
21376 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
21377 frame_foreground and frame_background.
21378
21379 * image.c (lookup_image): Save frame foreground and background colors.
21380 (search_image_cache): Check if saved and current frame colors match.
21381
21382 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
21383
21384 * regex.c (regex_compile): Remove the `regnum' counter.
21385 Use bufp->re_nsub instead. Add support for \(?N:RE\).
21386
21387 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
21388
21389 * term.c: Include intervals.h to declare Fget_text_property.
21390
21391 2007-06-10 Jason Rumney <jasonr@gnu.org>
21392
21393 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
21394
21395 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
21396
21397 * callint.c (Fcall_interactively):
21398 * editfns.c (Fdelete_and_extract_region):
21399 * fileio.c (Fread_file_name):
21400 * fns.c (Fmapconcat):
21401 * keyboard.c (cmd_error_internal):
21402 * keymap.c (Fkey_description):
21403 * lread.c (openp):
21404 * minibuf.c (read_minibuf):
21405 * search.c (wordify):
21406 * sunfns.c (sel_read):
21407 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
21408 * xfns.c (x_default_scroll_bar_color_parameter):
21409 * xmenu.c (menu_help_callback):
21410 * xselect.c (Fx_get_atom_name):
21411 * xterm.c (x_term_init): Use empty_unibyte_string.
21412
21413 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
21414
21415 * alloc.c (init_strings): Initialize canonical empty strings.
21416 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
21417 canonical empty string when the requested size is 0.
21418
21419 * emacs.c (empty_unibyte_string): Rename from empty_string.
21420 (empty_multibyte_string): New canonical empty string.
21421 (syms_of_emacs): Don't initialize empty_string.
21422
21423 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
21424 string, if appropriate.
21425 (empty_unibyte_string, empty_multibyte_string): New externs.
21426 (empty_string): Remove extern.
21427
21428 * lread.c (syms_of_lread): Use empty_unibyte_string.
21429
21430 2007-06-07 Jason Rumney <jasonr@gnu.org>
21431
21432 * s/ms-w32.h: Don't define HAVE_TZNAME.
21433
21434 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
21435
21436 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21437
21438 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
21439
21440 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
21441 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
21442
21443 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
21444 Don't call next handler.
21445 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
21446 Remove argument. Install handler to application.
21447 (set_frame_menubar): Don't change deep_p.
21448 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
21449 FRAME_OUTER_TO_INNER_DIFF_Y.
21450 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
21451 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
21452 [HAVE_DIALOGS]: New macros.
21453 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
21454 Use them.
21455 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
21456
21457 * macselect.c [MAC_OSX] (install_service_handler): Rename from
21458 init_service_handler. All callers changed. Return OSStatus value.
21459
21460 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
21461 All callers changed so as not to call SetPortWindowPort.
21462 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
21463 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
21464 mac_draw_string_common.
21465 (mac_draw_image_string_qd): Likewise.
21466 (mac_draw_string_common): Use them. Add INLINE.
21467 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
21468 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
21469 GetGlobalMouse.
21470 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
21471 and FRAME_OUTER_TO_INNER_DIFF_Y.
21472 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
21473 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
21474 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
21475 repositioning window to mac_handle_window_event.
21476 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
21477 saving window location to mac_handle_window_event
21478 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
21479 (install_menu_target_item_handler): Remove argument in extern.
21480 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
21481 Also accept command events.
21482 (do_keystroke): New function created from XTread_socket.
21483 (init_command_handler): Remove functions.
21484 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
21485 and save window location by kEventWindowShowing and kEventWindowHiding
21486 handlers here. Don't call next handler for window state change and
21487 focus events.
21488 (mac_handle_application_event, mac_handle_keyboard_event)
21489 [TARGET_API_MAC_CARBON]: New functions.
21490 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
21491 kEventWindowShowing and kEventWindowHiding events. Move installation
21492 of mouse, font, text input and menu target item handlers to
21493 install_application_handler.
21494 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
21495 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21496 New function.
21497 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21498 Register it.
21499 (XTread_socket) [TARGET_API_MAC_CARBON]:
21500 Consolidate SendEventToEventTarget calls.
21501 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
21502 Move application activation handler to mac_handle_application_event.
21503 Move keyboard handler to mac_handle_keyboard_event.
21504 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
21505 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
21506 init_command_handler. Call install_application_handler.
21507
21508 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
21509 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
21510
21511 2007-06-07 Glenn Morris <rgm@gnu.org>
21512
21513 * emacs.c (main): Use `emacs-copyright' in --version output.
21514
21515 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
21516
21517 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
21518
21519 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21520
21521 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
21522
21523 * macgui.h: Replace WindowPtr with WindowRef.
21524
21525 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
21526 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
21527 Replace ControlHandle with ControlRef.
21528 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
21529
21530 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
21531 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
21532 Replace ControlHandle with ControlRef.
21533 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
21534 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
21535
21536 * macterm.h (struct scroll_bar): Rename member control_handle_low
21537 and control_handle_high to control_ref_low and control_ref_high.
21538 All uses changed.
21539 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
21540 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
21541 respectively. All uses changed.
21542 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
21543 (install_window_handler, remove_window_handler): Replace WindowPtr
21544 with WindowRef in externs.
21545
21546 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
21547
21548 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
21549
21550 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
21551
21552 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
21553
21554 * frame.c (Fmouse_position, Fmouse_pixel_position):
21555 Condition on HAVE_GPM too.
21556
21557 * term.c (term_mouse_highlight): Remove unused variables.
21558 (Fterm_open_connection): Set gpm_zerobased to 1.
21559 (term_mouse_movement, term_mouse_click, handle_one_term_event):
21560 Use zero based co-ordinates.
21561 (handle_one_term_event): Report a drag as mouse movement too.
21562
21563 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
21564
21565 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
21566
21567 * image.c (search_image_cache): New function. Require background
21568 color match if background color is unspecified in the image spec.
21569 (uncache_image, lookup_image): Use it.
21570
21571 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
21572
21573 * window.c (Fshrink_window): Reflow docstring.
21574
21575 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
21576
21577 * Version 22.1 released.
21578
21579 2007-06-01 Richard Stallman <rms@gnu.org>
21580
21581 * xfns.c (x_encode_text): Add GCPRO.
21582
21583 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21584
21585 * xfns.c (x_set_name_internal): Save encoded name before
21586 x_encode_text in case string data is relocated.
21587
21588 2007-05-31 Richard Stallman <rms@gnu.org>
21589
21590 * buffer.c (syms_of_buffer): Doc fix.
21591
21592 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
21593
21594 * sysdep.c (init_sys_modes): Add rather than replace with
21595 O_NONBLOCK.
21596
21597 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
21598 term_mouse_moveto.
21599
21600 * termhooks.h (term_mouse_moveto): New extern.
21601
21602 * term.c (mouse_face_window): Rename...
21603 (Qmouse_face_window): ...to this.
21604 (term_show_mouse_face, term_clear_mouse_face)
21605 (term_mouse_highlight): Use Qmouse_face_window.
21606 (term_mouse_moveto): New function.
21607 (term_mouse_position): Make it work.
21608 (syms_of_term): Uncomment assignment to mouse_position_hook.
21609 Staticpro Qmouse_face_window.
21610
21611 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21612
21613 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
21614 around current_column call.
21615
21616 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
21617
21618 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
21619 * xdisp.c (next_element_from_buffer):
21620 * window.c (delete_window):
21621 * term.c (term_mouse_highlight):
21622 * msdos.c (getdefdir):
21623 * macterm.c (mac_create_bitmap_from_bitmap_data)
21624 (init_font_name_table):
21625 * fns.c (Fsxhash):
21626 * data.c (Fmake_local_variable):
21627 * ccl.c (ccl_driver): Likewise.
21628
21629 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21630
21631 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
21632 Call mac_wakeup_from_rne on window size change.
21633
21634 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
21635
21636 * image.c (uncache_image): Fix typo.
21637
21638 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
21639
21640 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
21641
21642 2007-05-22 Richard Stallman <rms@gnu.org>
21643
21644 * xterm.c (x_connection_closed): Remove NO_RETURN.
21645
21646 2007-05-22 Martin Rudalics <rudalics@gmx.at>
21647
21648 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
21649
21650 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
21651
21652 * image.c (uncache_image): New function.
21653 (Fimage_refresh): New function.
21654
21655 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
21656
21657 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
21658
21659 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
21660
21661 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
21662 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
21663
21664 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
21665
21666 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
21667 conditional on [HAVE_GPM_H].
21668
21669 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
21670
21671 * syntax.c (skip_chars): Update syntax-table only after we checked that
21672 the new location is valid.
21673
21674 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21675
21676 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
21677 mac_get_window_bounds.
21678
21679 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
21680
21681 * Makefile.in (LIBGPM): Allow it to be set from configure.
21682 If set then link Emacs with it.
21683
21684 * config.in: Regenerate.
21685
21686 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
21687 New externs.
21688
21689 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
21690 Include gpm.h.
21691 (handle_one_term_event, term_gpm): New externs.
21692
21693 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
21694 and allow it to be interrupted by SIGIO.
21695
21696 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
21697 (wait_reading_process_output): Wait on gpm_fd too.
21698 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
21699 (add_gpm_wait_descriptor_called_flag): New variable.
21700 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
21701
21702 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
21703 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
21704 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
21705 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
21706 (make_lispy_event): Add case GPM_CLICK_EVENT.
21707 (read_avail_input): Handle mouse input.
21708
21709 * term.c (write_glyphs_with_face): New function.
21710 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
21711 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
21712 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
21713 (mouse_face_face_id, term_gpm, pos_x, pos_y)
21714 (last_mouse_x, last_mouse_y): New variables.
21715 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
21716 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
21717 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
21718 (Fterm_close_connection): New functions.
21719 (term_init): Initialise mouse_face_window.
21720
21721 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
21722
21723 * xdisp.c (redisplay_window): If first window line is a
21724 continuation line, recompute the new window start instead of
21725 recentering.
21726
21727 2007-05-18 Glenn Morris <rgm@gnu.org>
21728
21729 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
21730 Suggested by Alfred M. Szmidt <ams@gnu.org>.
21731
21732 2007-05-17 Glenn Morris <rgm@gnu.org>
21733
21734 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
21735
21736 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21737
21738 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
21739 dead key repeat and up events.
21740
21741 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
21742
21743 * image.c (pbm_load): Check image size for monochrome pbm.
21744
21745 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
21746
21747 * xterm.c (XTread_socket): Revert last change.
21748
21749 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
21750
21751 * image.c (pbm_load): Correctly check image size for greyscale pbm.
21752
21753 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
21754
21755 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
21756
21757 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
21758 mixup (YAILOM).
21759
21760 2007-05-07 Andreas Schwab <schwab@suse.de>
21761
21762 * keymap.c (Flookup_key): Fix typo in last change.
21763
21764 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
21765
21766 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
21767 mapping for unibyte strings.
21768
21769 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21770
21771 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
21772 (Fx_popup_dialog) [MAC_OSX]: Likewise.
21773
21774 2007-04-29 Richard Stallman <rms@gnu.org>
21775
21776 * insdel.c (replace_range): For undo, record insertion first.
21777
21778 2007-04-29 Andreas Schwab <schwab@suse.de>
21779
21780 * lisp.h (VECSIZE): Use OFFSETOF.
21781
21782 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21783
21784 * xdisp.c (try_window_reusing_current_matrix): Fix number of
21785 disabled lines.
21786
21787 2007-04-28 Richard Stallman <rms@gnu.org>
21788
21789 * lread.c (read_escape): In a string, \s is always space.
21790
21791 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
21792
21793 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
21794
21795 * gtkutil.c (xg_update_menubar, create_menus): Create empty
21796 submenu for menu bar items.
21797
21798 See ChangeLog.10 for earlier changes.
21799
21800 ;; Local Variables:
21801 ;; coding: utf-8
21802 ;; add-log-time-zone-rule: t
21803 ;; End:
21804
21805 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
21806
21807 This file is part of GNU Emacs.
21808
21809 GNU Emacs is free software: you can redistribute it and/or modify
21810 it under the terms of the GNU General Public License as published by
21811 the Free Software Foundation, either version 3 of the License, or
21812 (at your option) any later version.
21813
21814 GNU Emacs is distributed in the hope that it will be useful,
21815 but WITHOUT ANY WARRANTY; without even the implied warranty of
21816 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21817 GNU General Public License for more details.
21818
21819 You should have received a copy of the GNU General Public License
21820 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21821
21822 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40