]> code.delx.au - gnu-emacs/blob - src/ChangeLog
Remove P_ and __P macros.
[gnu-emacs] / src / ChangeLog
1 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
2
3 Remove P_ and __P macros.
4 * buffer.h: Remove P_ and __P macros.
5 * category.h:
6 * ccl.h:
7 * character.h:
8 * charset.h:
9 * cm.h:
10 * coding.h:
11 * composite.h:
12 * dispextern.h:
13 * disptab.h:
14 * font.h:
15 * fontset.h:
16 * frame.h:
17 * gtkutil.h:
18 * indent.h:
19 * intervals.h:
20 * keyboard.h:
21 * keymap.h:
22 * lisp.h:
23 * macros.h:
24 * md5.h:
25 * menu.h:
26 * msdos.h:
27 * nsterm.h:
28 * puresize.h:
29 * region-cache.h:
30 * syntax.h:
31 * syssignal.h:
32 * systime.h:
33 * termhooks.h:
34 * w32term.h:
35 * widget.h:
36 * window.h:
37 * xgselect.h:
38 * xsettings.h:
39 * xterm.h: Likewise.
40
41 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
42
43 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
44
45 Cleanup old code.
46 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
47 * syssignal.h: Remove code for Lynx, not supported anymore.
48 * vm-limit.c: Remove unused code the depends on emacs not being
49 defined and NO_LIM_DATA being defined.
50 * mem-limits.h: Remove dead code.
51
52 2010-07-01 Jan Djärv <jan.h.d@swipnet.se>
53
54 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
55
56 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
57 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
58
59 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
60 parameters, they are already absolute.
61
62 * nsterm.m (x_set_window_size, initFrameFromEmacs): Renamed
63 FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
64
65 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGH
66
67 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar): Update
68 FRAME_TOOLBAR_HEIGHT.
69
70 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar): Add
71 BLOCK/UNBLOCK_INPUT so asserts don't trigger.
72
73 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
74
75 * frame.c (get_future_frame_param, Fmake_terminal_frame): Don't
76 check default-frame-alist.
77
78 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
79
80 * process.c (create_process): Avoid using invalid file descriptors.
81
82 * callproc.c (child_setup): Avoid closing a file descriptor twice.
83
84 2010-06-30 Jan Djärv <jan.h.d@swipnet.se>
85
86 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
87 Improve documentation. Return font regardless of use_system_font.
88 (syms_of_xsettings): Improve documentation for font-use-system-font.
89
90 2009-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
91
92 * xftfont.c (xftfont_open): Check font width one by one also when
93 spacing is dual.
94
95 * ftfont.c (ftfont_open): Ditto.
96
97 2010-06-30 Glenn Morris <rgm@gnu.org>
98
99 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
100
101 * Makefile.in (CANNOT_DUMP): Update for configure name change.
102
103 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
104 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
105 * s/darwin.h (SYSTEM_MALLOC):
106 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
107
108 2010-06-29 Jan Djärv <jan.h.d@swipnet.se>
109
110 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
111 (ns_get_screen): Don't assign integer to f.
112 (Fx_display_color_cells): Declarations before statements.
113
114 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
115
116 * xfns.c (x_default_font_parameter): Remove got_from_system
117 (Bug#6526).
118
119 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
120 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper): New
121 defines based on what configure finds.
122
123 * xterm.c (XTflash): Use gtk_widget_get_window.
124 (xg_scroll_callback): Use gtk_adjustment_get_upper and
125 gtk_adjustment_get_page_size.
126 (handle_one_xevent): Use gtk_widget_get_mapped.
127 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
128 messages.
129
130 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
131
132 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
133 HAVE_GTK_FILE_SELECTION_NEW.
134
135 * gtkutil.c (xg_display_open, xg_display_close): Remove
136 HAVE_GTK_MULTIDISPLAY, it is always defined.
137 (xg_display_open): Return type is void.
138 (gtk_widget_set_has_window)
139 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
140 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
141 (gtk_adjustment_set_page_increment)
142 (gtk_adjustment_get_step_increment): #define these if not found
143 by configure.
144 (remove_submenu): New define based on Gtk+ version.
145 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar): Use
146 gtk_widget_get_window.
147 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
148 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
149 (create_dialog): Use gtk_dialog_get_action_area and
150 gtk_dialog_get_content_area.
151 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
152 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
153 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
154 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item): Use
155 g_object_ref and g_object_unref.
156 (xg_update_menu_item, xg_tool_bar_menu_proxy): Use
157 gtk_widget_get_sensitive.
158 (xg_update_submenu): Use remove_submenu.
159 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
160 properties instead to get old x and y position.
161 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
162 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
163 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
164 (xg_get_tool_bar_widgets): New function.
165 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
166 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
167 (toolbar_set_orientation): New #define based on if configure
168 finds gtk_orientable_set_orientation.
169 (xg_create_tool_bar): Call toolbar_set_orientation.
170 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
171 instead of gtk_box_pack_start_defaults.
172
173 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
174
175 * cmds.c (Fdelete_backward_char): Move into Lisp.
176
177 2010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
178
179 * s/freebsd.h (BSD4_2): Remove redundant definition.
180 bsd-common.h defines it already.
181
182 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
183
184 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
185 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
186 tool-bar-mode, which are now set using these X resources at
187 startup, to determine the defaults (Bug#2249).
188
189 * w32fns.c (Fx_create_frame):
190 * nsfns.m (Fx_create_frame): Likewise.
191
192 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
193
194 2010-06-24 Juanma Barranquero <lekktu@gmail.com>
195
196 * gtkutil.c (xg_update_scrollbar_pos):
197 Avoid C99 mid-block variable declaration.
198
199 2010-06-22 Jan Djärv <jan.h.d@swipnet.se>
200
201 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
202
203 * gtkutil.h (xg_show_scroll_bar): Remove.
204
205 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
206 if height is less than scroll bar min size.
207 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
208
209 * xfns.c (x_default_font_parameter): Try to open font from system
210 before using it (bug#6478). Rename got_from_gconf to got_from_system.
211
212 2010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
213
214 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
215
216 2010-06-20 Eli Zaretskii <eliz@gnu.org>
217
218 * xdisp.c (try_scrolling): When scroll-conservatively is set to
219 most-positive-fixnum, be extra accurate when scrolling window
220 start, to avoid missing the cursor line.
221
222 2010-06-19 Eli Zaretskii <eliz@gnu.org>
223
224 * xdisp.c (try_scrolling): Compute the limit for searching point
225 in forward scroll from scroll_max, instead of an arbitrary limit
226 of 10 screen lines. See
227 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
228 and
229 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
230 for details.
231
232 2010-06-16 Glenn Morris <rgm@gnu.org>
233
234 * editfns.c (Fbyte_to_string): Pacify compiler.
235
236 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
237
238 * lread.c (read1): Phase out old-style backquotes a bit more.
239
240 2010-06-12 Eli Zaretskii <eliz@gnu.org>
241
242 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
243 bidimirror.h.
244
245 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
246
247 * bidi.c (bidi_initialize): Remove explicit initialization of
248 bidi_type_table; include biditype.h instead. Don't support
249 entries whose second codepoint is zero. Initialize bidi_mirror_table.
250 (bidi_mirror_char): Use bidi_mirror_table.
251
252 * biditype.h: New file.
253
254 * bidimirror.h: New file.
255
256 * window.c (syms_of_window): Doc fix (bug#6409).
257
258 2010-06-12 Romain Francoise <romain@orebokech.com>
259
260 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
261 ediff-hook.
262
263 2010-06-10 Glenn Morris <rgm@gnu.org>
264
265 * editfns.c (Fbyte_to_string): Pacify compiler.
266
267 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
268
269 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
270
271 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
272 Check `object's type before accessing its guts.
273
274 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
275
276 * s/usg5-4.h: Fix previous change.
277 Suggested by Lawrence Mitchell <wence@gmx.li>
278
279 2010-06-08 Andreas Schwab <schwab@linux-m68k.org>
280
281 * minibuf.c (Fall_completions): Add more checks.
282
283 2010-06-08 Juanma Barranquero <lekktu@gmail.com>
284
285 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
286
287 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
288
289 * lread.c (X_OK): Remove, unused.
290
291 * dispnew.c: Remove obsolete comment.
292
293 Remove INCLUDED_FCNTL.
294 * xterm.c (INCLUDED_FCNTL):
295 * callproc.c (INCLUDED_FCNTL):
296 * alloc.c (INCLUDED_FCNTL):
297 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
298 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
299
300 2010-06-07 Martin Rudalics <rudalics@gmx.at>
301
302 * window.c (Fselect_window): Move `record_buffer' up to the
303 beginning of this function, so the buffer gets recorded
304 even if the selected window does not change.
305 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
306
307 2010-06-07 Juanma Barranquero <lekktu@gmail.com>
308
309 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
310 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
311
312 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
313
314 Remove BSTRING related code, all platforms define it.
315 * s/usg5-4.h (BSTRING): Remove definition.
316 * s/template.h (BSTRING):
317 * s/msdos.h (BSTRING):
318 * s/ms-w32.h (BSTRING):
319 * s/hpux10-20.h (BSTRING):
320 * s/gnu-linux.h (BSTRING):
321 * s/darwin.h (BSTRING):
322 * s/cygwin.h (BSTRING):
323 * s/bsd-common.h (BSTRING):
324 * s/aix4-2.h (BSTRING): Likewise.
325 * sysdep.c: Remove code depending on BSTRING not being defined.
326
327 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
328
329 Remove obsolete macro BASE_LEADING_CODE_P.
330 * character.h (BASE_LEADING_CODE_P): Remove.
331 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
332 * buffer.c (Fset_buffer_multibyte):
333 * indent.c (scan_for_column, compute_motion):
334 * insdel.c (count_combining_before, count_combining_after):
335 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
336
337 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
338
339 Turn `directory-sep-char' into a noop.
340
341 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
342 (DIRECTORY_SEP): Define unconditionally.
343
344 * s/ms-w32.h (DIRECTORY_SEP): Remove.
345
346 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
347 call dostounix_filename directly.
348
349 * fileio.c (CORRECT_DIR_SEPS): Remove.
350 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
351 (Fsubstitute_in_file_name): Use dostounix_filename instead.
352 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
353 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
354
355 * w32proc.c (CORRECT_DIR_SEPS): Remove.
356 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
357
358 2010-06-03 Andreas Schwab <schwab@linux-m68k.org>
359
360 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4
361 address. (Bug#6346)
362
363 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
364
365 * ccl.c (Fccl_program_p): Fix typo in docstring.
366
367 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
368
369 Move UNEXEC definition to autoconf.
370 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
371 * s/sol2-10.h (UNEXEC):
372 * s/irix6-5.h (UNEXEC):
373 * s/hpux10-20.h (UNEXEC):
374 * s/gnu-linux.h (UNEXEC):
375 * s/darwin.h (UNEXEC):
376 * s/cygwin.h (UNEXEC):
377 * s/bsd-common.h (UNEXEC):
378 * s/aix4-2.h (UNEXEC):
379 * m/alpha.h (UNEXEC): Likewise.
380 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
381
382 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
383
384 Remove obsolete pre-unicode2 macros.
385 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
386 * composite.c (composition_reseat_it):
387 * data.c (Faset):
388 * fns.c (Ffillarray):
389 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
390 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
391
392 2010-06-03 Juri Linkov <juri@jurta.org>
393
394 * buffer.c (Fother_buffer): Add CHECK_FRAME.
395 (Fswitch_to_buffer): Remove unused variable `err'.
396
397 2010-06-03 Glenn Morris <rgm@gnu.org>
398
399 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
400
401 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
402 now that AH_BOTTOM does it.
403
404 * m/hp800.h (HAVE_ALLOCA):
405 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
406
407 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
408 Remove NOT_C_CODE tests, it is always true now.
409
410 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
411
412 Fix config.h includes.
413 * xsettings.c:
414 * xgselect.c:
415 * nsterm.m:
416 * nsselect.m:
417 * nsimage.m:
418 * nsfont.m:
419 * nsfns.m:
420 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
421 other files do.
422
423 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
424
425 * s/sol2-6.h: Remove obsolete comments.
426
427 Remove unnecessary alloca.h includes.
428 * keymap.c: Do not include alloca.h, config.h does that.
429 * sysdep.c: Likewise. Do not define fwrite, not used.
430
431 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
432
433 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
434 the HAVE_TERMIO where it belongs (bug#6149).
435
436 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
437
438 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
439 of bug#6305).
440
441 2010-05-30 Eli Zaretskii <eliz@gnu.org>
442
443 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
444 state is always cached (bug#6306).
445
446 2010-05-29 Eli Zaretskii <eliz@gnu.org>
447
448 Fix cursor motion in bidi-reordered continued lines.
449 * xdisp.c (try_cursor_movement): Backup to non-continuation line
450 only after finding point's row. Fix the logic. Rewrite the loop
451 over continuation lines in bidi-reordered buffers. Return
452 CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
453 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
454
455 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
456
457 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
458
459 2010-05-28 Kenichi Handa <handa@m17n.org>
460
461 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
462 Don't sheck SPEC if it is nil.
463 (font_list_entities): Call font_delete_unmatched if
464 Vface_ignored_fonts is non-nil. (Bug#6287)
465
466 2010-05-28 Glenn Morris <rgm@gnu.org>
467
468 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
469
470 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
471
472 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
473 whether to trash.
474 (internal_delete_file, Frename_file): Callers changed.
475 (delete_by_moving_to_trash): Doc fix.
476 (Fdelete_directory_internal): Don't move to trash.
477
478 * callproc.c (delete_temp_file):
479 * buffer.c (Fkill_buffer): Callers changed.
480
481 * lisp.h: Update prototype.
482
483 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
484
485 * xdisp.c (redisplay_window): After redisplay, check if point is
486 still valid before setting it (Bug#6177).
487
488 2010-05-27 Glenn Morris <rgm@gnu.org>
489
490 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
491 Convert comments to Makefile format.
492
493 * Makefile.in (bootstrap-clean): No more Makefile.c.
494
495 2010-05-26 Glenn Morris <rgm@gnu.org>
496
497 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
498 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
499
500 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
501 Remove.
502 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
503
504 2010-05-26 Kenichi Handa <handa@m17n.org>
505
506 * composite.c (composition_compute_stop_pos): Fix condition for
507 backward scanning.
508
509 2010-05-25 Glenn Morris <rgm@gnu.org>
510
511 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
512 Move before TEMACS_LDFLAGS.
513 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
514 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
515
516 * Makefile.in (NOT_C_CODE): No longer define.
517 (config.h): No longer include.
518
519 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
520 variables it may reference.
521
522 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
523 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
524
525 2010-05-25 Kenichi Handa <handa@m17n.org>
526
527 * dispextern.h (struct composition_it): New members rule_idx and
528 charpos.
529
530 * xdisp.c (set_iterator_to_next): While scanning backward, assume
531 that the character positions of IT point the last character of the
532 current grapheme cluster.
533 (next_element_from_composition): Don't change character positions
534 of IT.
535 (append_composite_glyph): Set glyph->charpos to
536 it->cmp_it.charpos.
537
538 * composite.c (autocmp_chars): Change the first argument to RULE,
539 and try composition with RULE only.
540 (composition_compute_stop_pos): Record the index number of the
541 composition rule in CMP_IT->rule_idx.
542 (composition_reseat_it): Call autocmp_chars repeatedly until the
543 correct rule of the composition is found.
544 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
545 is at the last character of the current grapheme cluster when
546 CMP_IT->reversed_p is nonzero.
547
548 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
549
550 * editfns.c (Fbyte_to_string): New function.
551
552 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
553
554 * process.c (Fmake_network_process): Set :host to nil if it's not used.
555 Suggested by Masatake YAMATO <yamato@redhat.com>.
556
557 2010-05-23 Eli Zaretskii <eliz@gnu.org>
558
559 * dispextern.h (init_iterator): Sync prototype with changed definition.
560
561 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
562
563 * s/netbsd.h: If terminfo is found, use it in preference to
564 termcap. (Bug#6190) [Backport from trunk]
565
566 2010-05-19 Eli Zaretskii <eliz@gnu.org>
567
568 Redesign and reimplement bidi-aware edge positions of glyph rows.
569
570 * dispextern.h (struct glyph_row): New members minpos and maxpos.
571 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
572 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
573 and maxpos members instead of start.pos and end.pos, respectively.
574
575 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
576 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
577 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
578 (try_window_reusing_current_matrix, try_window_id):
579 Use ROW->minpos rather than ROW->start.pos.
580 (init_from_display_pos, init_iterator): Use EMACS_INT for
581 character and byte positions.
582 (find_row_edges): Rename from find_row_end. Accept additional
583 arguments for minimum and maximum buffer positions seen by
584 display_line for this row. Don't use iterator to find the
585 position following the maximum one; instead, increment the
586 position found by display_line directly. Fix logic; eol_pos
587 should be tested before the rest. Handle the case of characters
588 delivered from display vector (bug#6036). Fix tests related to
589 it->method. Handle the truncated_on_right_p rows.
590 (RECORD_MAX_MIN_POS): New macro.
591 (display_line): Use it to record the minimum and maximum buffer
592 positions for glyphs in the row being assembled. Record the
593 position of the newline that terminates the line. If word wrap is
594 in effect, restore minimum and maximum positions seen up to the
595 wrap point, when iterator returns to it.
596 (try_window_reusing_current_matrix): Give up if in bidi-reordered
597 row and cursor not already at point. Restore original pre-bidi
598 code for unidirectional buffers.
599
600 * dispnew.c (increment_row_positions, check_matrix_invariants):
601 Increment and check row->start.pos and row->end.pos, in addition
602 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
603
604 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
605 Display truncated_on_left_p and truncated_on_right_p flags.
606 Formatting fixes.
607 (pmtxrows): Display the ordinal number of each row. Don't display
608 rows beyond the last one.
609
610 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
611 it is not copied by bidi_copy_it.
612
613 2010-05-22 Eli Zaretskii <eliz@gnu.org>
614
615 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
616 (Bug#6237)
617
618 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
619
620 * image.c (Fimage_flush): Rename from image-refresh.
621
622 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
623
624 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
625 just one window.
626
627 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
628 (clear_image_cache): If the number of cached images is unusually
629 large, decrease the cache eviction delay (Bug#6230).
630
631 2010-05-21 Glenn Morris <rgm@gnu.org>
632
633 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
634 Move these rules to ns.mk.
635 * ns.mk: New file.
636
637 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
638
639 * Makefile.in (CANNOT_DUMP): New, set by configure.
640 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
641
642 2010-05-20 Juri Linkov <juri@jurta.org>
643
644 * fileio.c (Fdelete_file): Change interative spec to use
645 `read-file-name' like in `find-file-read-args' where the default
646 value is `default-directory' instead of `buffer-file-name'.
647 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
648
649 2010-05-20 Kevin Ryde <user42@zip.com.au>
650
651 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
652 (Voverriding_terminal_local_map, Vsystem_key_alist)
653 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
654
655 2010-05-20 Glenn Morris <rgm@gnu.org>
656
657 * Makefile.in (DEPDIR): New constant.
658 (DEPFLAGS): Set with configure, not cpp.
659 (MKDEPDIR): New, set by configure.
660 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
661 (clean): Use $DEPDIR.
662 (deps_frag): Include from configure.
663 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
664 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
665
666 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state): Fix
667 reallocation of the cache. (Bug#6210)
668
669 2010-05-19 Glenn Morris <rgm@gnu.org>
670
671 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
672
673 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
674 (GNULIB_VAR): Remove.
675 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
676
677 * m/ibms390x.h (LINKER):
678 * m/macppc.h (LINKER) [GNU_LINUX]:
679 * s/aix4-2.h (ORDINARY_LINK):
680 * s/cygwin.h (LINKER):
681 * s/darwin.h (ORDINARY_LINK):
682 * s/gnu.h (ORDINARY_LINK):
683 * s/netbsd.h (LINKER):
684 * s/usg5-4.h (ORDINARY_LINK):
685 Move to configure.
686
687 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
688
689 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
690
691 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
692 prevent stack overflow if number of arguments is too large
693 (Bug#6214).
694
695 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
696
697 * charset.c (load_charset_map_from_file): Don't call close after fclose.
698
699 2010-05-18 Glenn Morris <rgm@gnu.org>
700
701 * s/gnu-linux.h: Combine two conditionals.
702
703 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
704 $(POST_ALLOC_OBJ).
705
706 * Makefile.in (RALLOC_OBJ): New, set by configure.
707 (rallocobj): Replace with the previous variable.
708 (otherobj): Use $RALLOC_OBJ.
709
710 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
711 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
712
713 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
714 (gmallocobj, vmlimitobj): Replace with previous two variables.
715 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
716
717 2010-05-17 Glenn Morris <rgm@gnu.org>
718
719 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
720 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
721
722 2010-05-16 Glenn Morris <rgm@gnu.org>
723
724 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
725
726 * Makefile.in (clean): Get rid of HAVE_NS conditional.
727
728 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
729 trailing "/".
730
731 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
732 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
733
734 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
735 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
736 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
737 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
738 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
739
740 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
741 Remove ${STARTFLAGS}, nothing ever sets it.
742
743 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
744
745 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
746
747 2010-05-16 Glenn Morris <rgm@gnu.org>
748
749 * Makefile.in (LIBX_BASE): Always define.
750
751 * Makefile.in (LIBX_OTHER): Move out of cpp section.
752
753 * Makefile.in (LIBXT): Always define.
754
755 2010-05-15 Glenn Morris <rgm@gnu.org>
756
757 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
758
759 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
760 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
761
762 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
763
764 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
765 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
766
767 * emacs.c (main): Initialize initial-environment and
768 process-environment before generating from env, not after.
769
770 Handle --version reasonably in CANNOT_DUMP configuration.
771 * emacs.c (emacs_version, emacs_copyright): New string variables.
772 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
773 (syms_of_emacs): Defvar them, and initialize them from the C
774 string variables.
775 (main): If initialization hasn't been done, print initial version
776 info from the C strings, instead of starting an interactive session.
777
778 2010-05-15 Eli Zaretskii <eliz@gnu.org>
779
780 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
781 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
782 (bidi_paragraph_init): Remove redundant assertion that we are at
783 the beginning of a line after call to bidi_find_paragraph_start.
784
785 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
786 (syms_of_xdisp): Defsubr it.
787
788 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
789
790 * Makefile.in: Fix MSDOS-related comments.
791
792 2010-05-15 Glenn Morris <rgm@gnu.org>
793
794 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
795 (really-lwlib, really-oldXMenu): Always define.
796 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
797
798 * Makefile.in: Simplify cpp conditional.
799
800 * Makefile.in (${ns_appdir}): Simplify using umask.
801
802 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
803
804 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
805
806 * eval.c (specbind): Remove left-over duplicate test.
807 Disallow let-binding frame-local vars. Add comment.
808
809 2010-05-14 Eli Zaretskii <eliz@gnu.org>
810
811 Make the cache of bidi iterator states dynamically allocated.
812 * bidi.c (bidi_cache_shrink): New function.
813 (bidi_init_it): Call it.
814 (bidi_cache_iterator_state): Enlarge the cache if needed.
815
816 * bidi.c (bidi_move_to_visually_next): Rename from
817 bidi_get_next_char_visually. All callers changed.
818
819 2010-05-14 Kenichi Handa <handa@m17n.org>
820
821 * dispextern.h (struct composition_it): New member reversed_p.
822
823 * composite.c (composition_compute_stop_pos): Search backward if
824 ENDPOS < CHARPOS.
825 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
826 Set CMP_IT->reversed_p.
827 (composition_update_it): Pay attention to CMP_IT->reversed_p.
828
829 * xdisp.c (set_iterator_to_next):
830 Call composition_compute_stop_pos with negative ENDPOS if we are
831 scanning backward. Call composition_compute_stop_pos if scan
832 direction is changed.
833 (next_element_from_buffer): Call composition_compute_stop_pos with
834 negative ENDPOS if we are scanning backward.
835 (next_element_from_composition): Pay attention to
836 IT->cmp_it.reversed_p.
837
838 2010-05-14 Kenichi Handa <handa@m17n.org>
839
840 * font.c (font_range): Return the range for the font found at first.
841
842 2010-05-14 Glenn Morris <rgm@gnu.org>
843
844 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
845
846 * Makefile.in (mktime, X11, register): Move undefs to configure.
847
848 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
849 (MSDOS_X_OBJ): New variable.
850 (MSDOS_SUPPORT_REAL): New constant.
851 (MSDOS_SUPPORT): Set as a variable, not with cpp.
852 (obj): Use MSDOS_X_OBJ.
853 (lisp): Use MSDOS_SUPPORT as a variable.
854
855 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
856 (GPM_MOUSE_SUPPORT): Now it's a constant.
857 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
858 not cpp.
859
860 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
861 (ns_appresdir): Remove, unused.
862
863 * Makefile.in (SHELL): Move outside cpp section.
864
865 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
866
867 2010-05-13 Glenn Morris <rgm@gnu.org>
868
869 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
870 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
871
872 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
873 HAVE_WINDOW_SYSTEM must be too.
874
875 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
876 (lisp): Remove WINNT_SUPPORT.
877
878 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
879 Let configure set these variables (to empty) in this case as well.
880
881 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
882 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
883
884 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
885 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
886 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
887 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
888 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
889 the values output by configure.
890 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
891
892 2010-05-12 Glenn Morris <rgm@gnu.org>
893
894 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
895 (LINKER_WAS_SPECIFIED): Remove.
896
897 * Makefile.in (LIB_GCC): Set using configure, not cpp.
898 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
899 * m/arm.h (LIB_GCC) [GNU_LINUX]:
900 * s/cygwin.h (LIB_GCC):
901 * s/freebsd.h (LIB_GCC):
902 * s/gnu-linux.h (LIB_GCC):
903 * s/msdos.h (LIB_GCC):
904 * s/netbsd.h (LIB_GCC):
905 Move to configure.
906
907 2010-05-11 Karel Klic <kklic@redhat.com>
908
909 * ftfont.c: Fix incorrect parentheses of #if condition for
910 definining M17N_FLT_USE_NEW_FEATURE.
911
912 2010-05-11 Glenn Morris <rgm@gnu.org>
913
914 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
915 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
916
917 2010-05-10 Eli Zaretskii <eliz@gnu.org>
918
919 * xdisp.c (init_iterator): Don't turn on bidi reordering in
920 unibyte buffers. See
921 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
922
923 2010-05-10 Glenn Morris <rgm@gnu.org>
924
925 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
926 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
927 (LIBES): Use LIBS_SYSTEM as a variable.
928 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
929 * s/aix4-2.h (LIBS_SYSTEM):
930 * s/freebsd.h (LIBS_SYSTEM):
931 * s/hpux10-20.h (LIBS_SYSTEM):
932 * s/sol2-6.h (LIBS_SYSTEM):
933 * s/unixware.h (LIBS_SYSTEM):
934 Move to configure.
935
936 * s/aix4-2.h (MAIL_USE_LOCKF):
937 * s/bsd-common.h (MAIL_USE_FLOCK):
938 * s/darwin.h (MAIL_USE_FLOCK):
939 * s/gnu-linux.h (MAIL_USE_FLOCK):
940 * s/irix6-5.h (MAIL_USE_FLOCK):
941 * s/template.h (MAIL_USE_FLOCK):
942 Move to configure.
943
944 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
945
946 * Version 23.2 released.
947
948 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
949
950 * composite.c (autocmp_chars): Save point as marker before calling
951 auto-composition-function (Bug#5984).
952
953 * lisp.h (restore_point_unwind): Add prototype.
954
955 * fileio.c (restore_point_unwind): Remove static attribute.
956
957 2010-05-08 Kenichi Handa <handa@m17n.org>
958
959 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
960 new feature of libotf and m17n-flt.
961 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
962 Call OTF_check_features even if no specific feature is given.
963 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
964 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
965 that OUT is NULL. Use OTF_drive_gsub_with_log and
966 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
967 OTF_drive_gpos.
968 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
969 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
970 Setup mflt_enable_new_feature and mflt_try_otf.
971
972 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
973
974 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
975
976 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
977 box and toolbar (Bug #6139).
978 (xg_create_tool_bar): Remove comment (Bug #6139).
979 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
980 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
981
982 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
983
984 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
985 Update dependencies.
986
987 2010-05-08 Eli Zaretskii <eliz@gnu.org>
988
989 * fringe.c (update_window_fringes): Set up truncation bitmaps for
990 R2L lines.
991
992 2010-05-08 Glenn Morris <rgm@gnu.org>
993
994 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
995
996 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
997 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
998 (termcapobj): Replace with TERMCAP_OBJ.
999 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
1000 (LIBES): Use LIBS_TERMCAP as a variable.
1001
1002 * s/freebsd.h (osreldate.h): No longer include, since this file
1003 does not use __FreeBSD_version any more.
1004
1005 * s/aix4-2.h (TERMINFO):
1006 * s/cygwin.h (TERMINFO):
1007 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
1008 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
1009 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
1010 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
1011 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
1012 * s/irix6-5.h (TERMINFO):
1013 * s/netbsd.h (LIBS_TERMCAP):
1014 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
1015 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
1016 * s/usg5-4.h (TERMINFO):
1017 Move to configure.
1018
1019 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
1020
1021 * eval.c (unbind_to): Don't unbind a local binding into the global
1022 binding when the local binding disappeared. Inversely, don't unbind
1023 a global binding into a newly created local binding.
1024 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
1025 can specify the frame to use, when applicable. Adjust callers.
1026
1027 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
1028 Stefan Monnier <monnier@iro.umontreal.ca>
1029
1030 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
1031
1032 2010-05-07 Eli Zaretskii <eliz@gnu.org>
1033
1034 * w32fns.c: Include w32.h.
1035 (Fw32_shell_execute): Decode the error message before passing it
1036 to `error'. (Bug#6126)
1037
1038 * msdos.c (dos_set_window_size):
1039 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
1040 instead of `XSYMBOL (foo)->value'.
1041
1042 2010-05-07 Eli Zaretskii <eliz@gnu.org>
1043
1044 Fix the MS-DOS build, broken by autoconfiscation.
1045
1046 * Makefile.in: Don't use Make-style comments past the "start of
1047 cpp stuff" line.
1048 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
1049
1050 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
1051 edited directly by msdos/sed1v2.inp).
1052
1053 2010-05-07 Glenn Morris <rgm@gnu.org>
1054
1055 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
1056 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
1057 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
1058 move out of cpp section.
1059 * s/freebsd.h (LD_SWITCH_SYSTEM):
1060 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
1061 * s/netbsd.h (LD_SWITCH_SYSTEM):
1062 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
1063
1064 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
1065
1066 Define LIB_STANDARD and START_FILES using autoconf.
1067 * s/usg5-4.h (LIB_STANDARD):
1068 * s/netbsd.h (START_FILES):
1069 * s/irix6-5.h (LIB_STANDARD):
1070 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
1071 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
1072 * s/freebsd.h (START_FILES):
1073 * s/darwin.h (START_FILES):
1074 * s/cygwin.h (START_FILES):
1075 * s/aix4-2.h (LIB_STANDARD):
1076 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
1077 * Makefile.in (STARTFILES): Rename to START_FILES, define using
1078 autoconf, not cpp.
1079
1080 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
1081
1082 Remove NEED_BSDTTY and NEED_UNISTD_H.
1083 * s/hpux10-20.h (NEED_BSDTTY): Remove.
1084 * s/aix4-2.h (NEED_UNISTD_H): Remove.
1085 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
1086 <sys/ptyio.h> and <unistd.h>.
1087
1088 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
1089
1090 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
1091 * s/gnu.h (START_FILES): Remove empty definition.
1092
1093 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
1094
1095 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
1096
1097 2010-05-06 Glenn Morris <rgm@gnu.org>
1098
1099 * Makefile.in (CPP, LN_S): Remove unused variables.
1100
1101 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
1102
1103 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
1104
1105 2010-05-05 Lawrence Mitchell <wence@gmx.li>
1106
1107 * m/sparc.h: Fix typo in earlier change.
1108
1109 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1110
1111 Misc tweaks.
1112 * eval.c (Fdefvaralias): Remove unintended nested if.
1113 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
1114
1115 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
1116
1117 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
1118
1119 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
1120
1121 Remove BSD_PGRPS.
1122 * s/bsd-common.h (BSD_PGRPS): Remove undef.
1123 * s/gnu-linux.h (BSD_PGRPS): Remove.
1124 * term.c (dissociate_if_controlling_tty):
1125 * sysdep.c (narrow_foreground_group, widen_foreground_group)
1126 (init_sys_modes, reset_sys_modes):
1127 * emacs.c (main):
1128 * callproc.c (Fcall_process, child_setup): Remove code depending
1129 on BSD_PGRPS.
1130
1131 Remove POSIX_SIGNALS.
1132 * s/usg5-4.h (POSIX_SIGNALS):
1133 * s/netbsd.h (POSIX_SIGNALS):
1134 * s/msdos.h (POSIX_SIGNALS):
1135 * s/ms-w32.h (POSIX_SIGNALS):
1136 * s/hpux11.h (POSIX_SIGNALS):
1137 * s/gnu.h (POSIX_SIGNALS):
1138 * s/gnu-linux.h (POSIX_SIGNALS):
1139 * s/freebsd.h (POSIX_SIGNALS):
1140 * s/darwin.h (POSIX_SIGNALS):
1141 * s/cygwin.h (POSIX_SIGNALS):
1142 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
1143 * s/unixware.h:
1144 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
1145 * process.c (create_process):
1146 * syssignal.h:
1147 * sysdep.c (wait_for_termination, init_signals):
1148 * process.c (create_process):
1149 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
1150 remove all code that assumes the contrary.
1151
1152 2010-05-04 Glenn Morris <rgm@gnu.org>
1153
1154 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
1155 variable.
1156 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
1157 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
1158 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
1159 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
1160 LD_SWITCH_SYSTEM_tmp.
1161 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
1162 New variables, set by configure.
1163
1164 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
1165 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
1166 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
1167 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
1168 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
1169
1170 * s/aix4-2.h (C_SWITCH_SYSTEM):
1171 * m/alpha.h (C_SWITCH_MACHINE):
1172 Move to configure.in.
1173 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
1174 New variables, set by configure.
1175 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
1176 $c_switch_machine and $c_switch_system.
1177
1178 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
1179
1180 * s/hpux10-20.h (LIB_STANDARD): New definition.
1181 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
1182 on it, not used anymore.
1183
1184 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
1185
1186 * eval.c (internal_condition_case_n): Rename from
1187 internal_condition_case_2.
1188 (internal_condition_case_2): New function.
1189
1190 * xdisp.c (safe_call): Use internal_condition_case_n.
1191
1192 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
1193 (internal_delete_file, Frename_file): Callers changed.
1194
1195 * buffer.c (Fkill_buffer):
1196 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
1197
1198 * lisp.h: Update prototypes.
1199
1200 2010-05-03 Glenn Morris <rgm@gnu.org>
1201
1202 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
1203 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
1204 (LIBXT): Set with configure, not cpp.
1205 (LIBX): Remove.
1206 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
1207
1208 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
1209
1210 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
1211 The FreeBSD is not needed, the default works, Solaris version is
1212 not needed, and the remaining case is not supported by configure.
1213
1214 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
1215
1216 * xsmfns.c (CHDIR_OPT): New define.
1217 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
1218 restarting emacs.
1219
1220 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
1221 shut_down_emacs.
1222
1223 * emacs.c (USAGE1): Mention --chdir.
1224 (main): Handle --chdir.
1225 (standard_args): Add --chdir.
1226 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
1227 #5552).
1228
1229 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
1230
1231 Remove LD_SWITCH_MACHINE.
1232 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
1233 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
1234
1235 Clean up IRIX code.
1236 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
1237 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
1238
1239 Clean up AIX code.
1240 * m/ibmrs6000.inp: Remove file, unused.
1241 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
1242 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
1243 definition ...
1244 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
1245
1246 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
1247 unused.
1248
1249 2010-05-01 Eli Zaretskii <eliz@gnu.org>
1250
1251 Emulate POSIX_SIGNALS on MS-Windows.
1252
1253 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
1254 (SIG_SETMASK, SIG_UNBLOCK): Define.
1255
1256 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
1257 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
1258 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
1259
1260 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
1261 New stubs.
1262
1263 Miscellaneous fixes of bidi display.
1264
1265 * xdisp.c (find_row_end): New function, refactored from display_line.
1266 (display_line): Use it.
1267 (extend_face_to_end_of_line): In almost-filled rows, extend only
1268 if the row is R2L and not continued.
1269 (display_line): Fix prepending of truncation glyphs to R2L rows.
1270 Preserve overlay and string info in row->end.
1271 (insert_left_trunc_glyphs): Support addition of left truncation
1272 glyphs to R2L rows.
1273 (set_cursor_from_row): Don't place cursor on the vertical border
1274 glyph between adjacent windows. Fix a crash when a display string
1275 is continued to the next line. Don't return zero if cursor was
1276 found by `cursor' property of a display string.
1277 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
1278 test for that explicitly.
1279
1280 2010-05-01 Glenn Morris <rgm@gnu.org>
1281
1282 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
1283 for clarity.
1284 (OTHER_OBJ): Remove.
1285 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
1286 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
1287
1288 2010-05-01 Karel Klíč <kklic@redhat.com>
1289
1290 * fileio.c (Ffile_selinux_context): Context functions may return null.
1291
1292 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
1293
1294 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
1295
1296 2010-04-30 Glenn Morris <rgm@gnu.org>
1297
1298 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
1299 (OTHER_OBJ): Define as a separate variable, for clarity.
1300
1301 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
1302
1303 * xsettings.c: include limits.h and update file comment.
1304
1305 2010-04-30 Glenn Morris <rgm@gnu.org>
1306
1307 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
1308 Set with configure, not cpp.
1309 (LIBW): Remove, replace with $TOOLKIT_LIBW.
1310
1311 * Makefile.in (mallocobj): Remove.
1312 (otherobj): Simplify using @OTHER_OBJ@.
1313
1314 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
1315 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
1316 Don't bother making nsgui.h dependency platform-specific.
1317
1318 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
1319
1320 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
1321
1322 * process.c (read_process_output, exec_sentinel): Don't burp if the
1323 sentinel/filter kills the current buffer (bug#6060).
1324
1325 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
1326 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
1327 Remove unused var `args'.
1328 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
1329 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
1330 * doc.c (store_function_docstring): Use XSETCAR.
1331
1332 2010-04-28 Glenn Morris <rgm@gnu.org>
1333
1334 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
1335 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
1336
1337 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
1338
1339 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
1340 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
1341
1342 * Makefile.in (FONT_OBJ): New, set by configure.
1343 (FONT_DRIVERS): Use $FONT_OBJ.
1344
1345 * Makefile.in (LIBXMU): Set with configure, not cpp.
1346 * s/aix4-2.h (LIBXMU):
1347 * s/hpux10-20.h (LIBXMU):
1348 Remove definition, now set in configure.
1349
1350 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
1351
1352 * m/amdx86-64.h [i386]: Move this test to configure.in.
1353
1354 2010-04-27 Glenn Morris <rgm@gnu.org>
1355
1356 * Makefile.in (LIBXTR6): Set with configure, not cpp.
1357 * s/unixware.h (NEED_LIBW): Remove definition.
1358
1359 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
1360 (TOOLKIT_LIBW): New, set by configure.
1361 (@X_TOOLKIT_TYPE@): No longer define it.
1362
1363 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
1364 (MOTIF_LIBW): Set with configure, not cpp.
1365 * s/aix4-2.h (LIB_MOTIF):
1366 * s/gnu-linux.h (LIB_MOTIF):
1367 * s/unixware.h (LIB_MOTIF): Move to configure.in.
1368
1369 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
1370
1371 Reduce CPP usage.
1372 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
1373 (obj): Use autoconf for unexec instead of cpp.
1374 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE): Remove
1375 definitions and undefs. Inline definitions in the only user.
1376 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
1377
1378 2010-04-27 Glenn Morris <rgm@gnu.org>
1379
1380 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
1381 since the defaults (set by the system file) are fine in most cases.
1382 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
1383 * m/ibms390x.h (START_FILES, LIB_STANDARD):
1384 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
1385 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
1386 Remove definitions, since they are set correctly in s/gnu-linux.h.
1387 * s/freebsd.h (START_FILES, LIB_STANDARD):
1388 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
1389 * s/hpux10-20.h (START_FILES):
1390 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
1391 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
1392
1393 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
1394 (MOTIF_LIBW): Use $LIBXP.
1395 (otherobj): Use $WIDGET_OBJ.
1396
1397 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
1398
1399 * Makefile.in (LIBS_MACHINE): Remove, unused.
1400
1401 Use autoconf instead of cpp for LIB_MATH.
1402 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
1403 * s/cygwin.h (LIB_MATH): Likewise.
1404 * Makefile.in (LIB_MATH): Do not define with cpp.
1405 (LIBES): Use autoconf for LIB_MATH.
1406
1407 2010-04-26 Kenichi Handa <handa@m17n.org>
1408
1409 * composite.c (Ffind_composition_internal): Fix the return value
1410 for an automatic composition.
1411
1412 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
1413
1414 Remove all NO_ARG_ARRAY uses.
1415 * fns.c (concat2, concat3, nconc2):
1416 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
1417 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
1418 * m/xtensa.h (NO_ARG_ARRAY):
1419 * m/template.h (NO_ARG_ARRAY):
1420 * m/sparc.h (NO_ARG_ARRAY):
1421 * m/sh3.h (NO_ARG_ARRAY):
1422 * m/mips.h (NO_ARG_ARRAY):
1423 * m/macppc.h (NO_ARG_ARRAY):
1424 * m/iris4d.h (NO_ARG_ARRAY):
1425 * m/intel386.h (NO_ARG_ARRAY):
1426 * m/ibms390x.h (NO_ARG_ARRAY):
1427 * m/ibms390.h (NO_ARG_ARRAY):
1428 * m/ibmrs6000.h (NO_ARG_ARRAY):
1429 * m/ia64.h (NO_ARG_ARRAY):
1430 * m/hp800.h (NO_ARG_ARRAY):
1431 * m/arm.h (NO_ARG_ARRAY):
1432 * m/amdx86-64.h (NO_ARG_ARRAY):
1433 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
1434
1435 2010-04-25 Eli Zaretskii <eliz@gnu.org>
1436
1437 * xdisp.c (display_line): Don't assume 2nd call to
1438 get_next_display_element cannot return zero. (Bug#6030)
1439 (iterate_out_of_display_property): New function, body from pop_it.
1440 (pop_it): Use it.
1441
1442 2010-04-24 Glenn Morris <rgm@gnu.org>
1443
1444 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
1445 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
1446 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
1447 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
1448
1449 2010-04-24 Eli Zaretskii <eliz@gnu.org>
1450
1451 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
1452 use `get_next_display_element' and `set_iterator_to_next' to
1453 advance to the next character, when looking for the character that
1454 begins the next row.
1455
1456 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
1457 definition of "struct Lisp_Symbol".
1458
1459 2010-04-24 Glenn Morris <rgm@gnu.org>
1460
1461 * Makefile.in (CRT_DIR): New variable, set by configure.
1462 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
1463 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
1464
1465 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
1466
1467 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
1468
1469 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
1470
1471 Remove redundant flags.
1472 * s/freebsd.h (C_SWITCH_SYSTEM):
1473 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
1474 * s/netbsd.h (C_SWITCH_SYSTEM):
1475 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
1476 of these.
1477
1478 Simplify m/intel386.h.
1479 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
1480 user: ecrt0.c.
1481 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
1482 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
1483 the only user: s/unixware.h.
1484 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
1485 from m/intel386.h.
1486 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Definitions
1487 moved here from m/intel386.h.
1488
1489 * m/mips.h: Remove #if 0 code.
1490
1491 2010-04-23 Eli Zaretskii <eliz@gnu.org>
1492
1493 Fix display of composed characters from L2R scripts in bidi buffers.
1494 * xdisp.c (set_iterator_to_next, next_element_from_composition):
1495 After advancing IT past the composition, resync the bidi iterator
1496 with IT's position. (Bug#5977)
1497
1498 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
1499
1500 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
1501 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
1502
1503 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1504
1505 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
1506
1507 2010-04-23 Eli Zaretskii <eliz@gnu.org>
1508
1509 Support `display' text properties and overlay strings in bidi buffers.
1510 * xdisp.c (pop_it): When the stack is popped after displaying
1511 from a string, bidi-iterate to exit from the text portion covered
1512 by the `display' property or overlay. (Bug#5988, bug#5920)
1513
1514 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
1515
1516 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
1517 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
1518
1519 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
1520 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
1521
1522 Simplify STARTFILES definition.
1523 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
1524 relying on Makefile.in to define it.
1525 * s/cygwin.h (START_FILES): Likewise.
1526 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
1527
1528 Clean up Solaris code.
1529 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
1530 (LIB_MOTIF): Remove, configure takes care of this.
1531 (NOT_USING_MOTIF): Remove, unused.
1532 * xrdb.c: Remove #if 0-ed #include.
1533 (SYSV): Remove conditional for old SysV.
1534 * sysdep.c (closedir): Remove conditional code for Solaris,
1535 Solaris has closedir.
1536
1537 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
1538
1539 * xsettings.c (read_and_apply_settings): Check if current_font is
1540 NULL before strcmp (Bug#6001).
1541
1542 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
1543
1544 Clean up HP-UX files.
1545 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
1546 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
1547 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
1548 * s/hpux10-20.h: ... to the only user, here.
1549
1550 2010-04-21 Eli Zaretskii <eliz@gnu.org>
1551
1552 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
1553 use buffer-local values of paragraph-start and paragraph-separate.
1554 <paragraph_start_re, paragraph_separate_re>: Rename from
1555 fallback_paragraph_start_re and fallback_paragraph_separate_re.
1556 (Bug#5992)
1557
1558 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
1559
1560 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
1561 current_tool_bar_style are new.
1562 (store_config_changed_event): Rename from store_font_changed_event.
1563 (XSETTINGS_TOOL_BAR_STYLE): New define.
1564 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
1565 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
1566 HAVE_XFT.
1567 (something_changedCB): store_font_changed_event is now
1568 store_config_changed_event
1569 (parse_settings): Rename from parse_xft_settings. Read
1570 non-xft xsettings outside #ifdef HAVE_XFT.
1571 (read_settings): Renamed from read_xft_settings.
1572 (apply_xft_settings): Take current settings as parameter. Do not
1573 call read_(xft)_settings.
1574 (read_and_apply_settings): New function.
1575 (xft_settings_event): Do non-xft stuff out of HAVE_XFT. Call
1576 read_and_apply_settings if there are settings to be read.
1577 (init_xsettings): Renamed from init_xfd_settings.
1578 Call read_and_apply_settings unconditionally.
1579 (xsettings_initialize): Call init_xsettings.
1580 (Ftool_bar_get_system_style): New function.
1581 (syms_of_xsettings): Define Qmonospace_font_name and
1582 Qtool_bar_style. Initialize current_tool_bar_style to nil.
1583 defsubr Stool_bar_get_system_style. Fprovide on
1584 dynamic-setting.
1585 Move misplaced HAVE_GCONF
1586
1587 * xsettings.h (Ftool_bar_get_system_style): Declare.
1588
1589 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
1590 Qtext, Qboth, Qboth_horiz are new.
1591 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
1592 Vtool_bar_style, tool_bar_max_label_size.
1593
1594 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
1595
1596 * keyboard.c: QClabel is new.
1597 (parse_tool_bar_item): Take out QClabel from tool bar items.
1598 Try to construct a label if ther is no QClabel.
1599 (syms_of_keyboard): Intern :label as QClabel.
1600
1601 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
1602 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
1603 New.
1604
1605 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
1606 dynamic-setting.el.
1607
1608 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
1609 (xg_make_tool_item, xg_show_toolbar_item): New function.
1610 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
1611 Call xg_make_tool_item to make a tool bar item.
1612 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
1613
1614 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
1615 into account for toolbars.
1616
1617 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
1618
1619 * data.c (make_blv): Declarations before code (Bug#5993).
1620
1621 2010-04-21 Glenn Morris <rgm@gnu.org>
1622
1623 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
1624 Define using autoconf, not cpp.
1625 (LIBXSM): New variable, set by autoconf.
1626 (LIBXT): Use $LIBXSM.
1627
1628 2010-04-21 Dan Nicolaescu <local_user@dannlt>
1629
1630 Remove NOMULTIPLEJOBS, unused.
1631 * s/template.h (NOMULTIPLEJOBS):
1632 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
1633
1634 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
1635 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
1636 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
1637 detects -znocombreloc and passes it to the linker
1638 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
1639
1640 2010-04-21 Glenn Morris <rgm@gnu.org>
1641
1642 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
1643
1644 2010-04-21 Karel Klíč <kklic@redhat.com>
1645
1646 * Makefile.in (LIBSELINUX_LIBS): New.
1647 (LIBES): Add $LIBSELINUX_LIBS.
1648 * eval.c, lisp.h (call7): New function.
1649 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
1650 (Ffile_selinux_context, Fset_file_selinux_context):
1651 New functions.
1652 (Fcopy_file): New parameter preserve-selinux-context.
1653 (Frename_file): Preserve selinux context when renaming by copy-file.
1654
1655 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
1656 Eli Zaretskii <eliz@gnu.org>
1657
1658 Don't depend on cm.c or termcap.c on Windows, use stubs.
1659 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
1660 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
1661 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
1662 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
1663 (sys_tputs, sys_tgetstr): New stubs.
1664 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
1665 (tputs, tgetstr): New; define to sys_*.
1666
1667 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
1668
1669 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
1670
1671 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1672
1673 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
1674 Just signal a warning rather than an error when inside a let.
1675 (Fmake_variable_frame_local): Add the same test.
1676
1677 * font.c (syms_of_font): Make the style table vars read-only.
1678
1679 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
1680 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
1681
1682 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
1683
1684 2010-04-20 Eli Zaretskii <eliz@gnu.org>
1685
1686 Fix R2L paragraph display on TTY.
1687
1688 * xdisp.c (unproduce_glyphs): New function.
1689 (display_line): Use it when produced glyphs are discarded from R2L
1690 glyph rows.
1691 (append_composite_glyph): In R2L rows, prepend the glyph rather
1692 than appending it.
1693
1694 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
1695 rather than append it. Set up the resolved_level and bidi_type
1696 attributes of the appended glyph.
1697 (produce_special_glyphs): Mirror the backslash continuation
1698 character in R2L lines.
1699
1700 Implement display of R2L paragraphs in GUI sessions.
1701
1702 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
1703 append_stretch_glyph.
1704 (set_cursor_from_row) <cursor_x>: Remove unused variable. Fix
1705 off-by-one error in computing x at end of text in the row.
1706 (append_stretch_glyph): In reversed row, prepend the glyph rather
1707 than append it. Set resolved_level and bidi_type of the glyph.
1708 (extend_face_to_end_of_line): If the row is reversed, prepend a
1709 stretch glyph whose width is such that the rightmost glyph will be
1710 drawn at the right margin of the window. Fix off-by-one error on
1711 TTY frames in testing whether a line needs face extension. Fix
1712 face extension at ZV. If this is the last glyph row, use
1713 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
1714 region face.
1715 (set_cursor_from_row, display_line): Use
1716 MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
1717 row->continuation_lines_width.
1718 (next_element_from_buffer): Don't call bidi_paragraph_init if we
1719 are at ZV. Fixes a crash when reseated to ZV by
1720 try_window_reusing_current_matrix.
1721 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
1722 which happens with R2L glyph rows. Fixes a crash when inserting a
1723 character at end of an R2L line.
1724 (set_cursor_from_row): Don't be fooled by truncated rows: don't
1725 treat them as having zero-width characters. Improve comments.
1726 Don't reverse pos_before and pos_after for reversed glyph rows.
1727 Set cursor.x to negative value when the cursor might be on the
1728 left fringe.
1729 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
1730 left fringe, not the right one.
1731 (notice_overwritten_cursor, draw_phys_cursor_glyph)
1732 (erase_phys_cursor): For reversed cursor_row, support cursor on
1733 the left fringe.
1734
1735 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
1736 of continuation indicators on the fringes.
1737 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
1738 left fringe.
1739
1740 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
1741 draw cursor on the left fringe.
1742
1743 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
1744 cursor on the left fringe.
1745
1746 * dispnew.c (update_text_area): Handle reversed desired rows when
1747 the cursor is on the left fringe.
1748 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
1749 below, not by 0, for when the cursor is on the left fringe.
1750
1751 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
1752
1753 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
1754 widget is a scrollbar.
1755
1756 2010-04-20 Kenichi Handa <handa@m17n.org>
1757
1758 * charset.c (char_charset): Consider Vcharset_non_preferred_head
1759 only when the arg CHARSET_LIST is nil.
1760
1761 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1762
1763 Make variable forwarding explicit rather the using special values.
1764 Basically, this makes the structure of buffer-local values and object
1765 forwarding explicit in the type of Lisp_Symbols rather than use
1766 special Lisp_Objects for that. This tends to lead to slightly more
1767 verbose code, but is more C-like, simpler, and makes it easier to make
1768 sure we handled all cases, among other things by letting the compiler
1769 help us check it.
1770 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
1771 Removing forwarding objects.
1772 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
1773 (struct Lisp_Symbol): Make the various forms of variable-forwarding
1774 explicit rather than hiding them inside Lisp_Object "values".
1775 (XFWDTYPE): New macro.
1776 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
1777 (XBUFFER_LOCAL_VALUE): Remove.
1778 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
1779 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
1780 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
1781 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
1782 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
1783 Remove the Lisp_Misc_* header.
1784 (struct Lisp_Buffer_Local_Value): Redefine.
1785 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
1786 (struct Lisp_Misc_Any): Add filler to get the right size.
1787 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
1788 Lisp_Intfwd.
1789 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
1790 (DEFVAR_KBOARD): Allocate a forwarding object.
1791 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
1792 (let_shadows_global_binding_p): New function.
1793 (union Lisp_Val_Fwd): New type.
1794 (make_blv): New function.
1795 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
1796 (store_symval_forwarding, swap_in_global_binding, Fboundp)
1797 (swap_in_symval_forwarding, find_symbol_value, Fset)
1798 (let_shadows_buffer_binding_p, set_internal, default_value)
1799 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
1800 (Fkill_local_variable, Fmake_variable_frame_local)
1801 (Flocal_variable_p, Flocal_variable_if_set_p)
1802 (Fvariable_binding_locus):
1803 * xdisp.c (select_frame_for_redisplay):
1804 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
1805 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
1806 * frame.c (store_frame_param):
1807 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
1808 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
1809 value structure.
1810 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
1811 (clone_per_buffer_values): Only adjust markers into the current buffer.
1812 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
1813 (Fbuffer_local_value, set_buffer_internal_1)
1814 (swap_out_buffer_local_variables):
1815 Adapt to the new symbol value structure.
1816 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
1817 (defvar_per_buffer): Take a new arg for the fwd object.
1818 (buffer_lisp_local_variables): Return a proper alist (different fix
1819 for bug#4138).
1820 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
1821 (Fgarbage_collect): Don't handle buffer_defaults specially.
1822 (mark_object): Handle new symbol value structure rather than the old
1823 special Lisp_Misc_* objects.
1824 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
1825 * term.c (set_tty_color_mode):
1826 * bidi.c (bidi_initialize): Don't access the ->value field directly.
1827 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
1828 a buffer_local_flags.
1829 * print.c (print_object): Get rid of impossible forwarding objects.
1830
1831 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1832
1833 * bidi.c (bidi_get_type, bidi_get_category)
1834 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
1835 (bidi_type_of_next_char, bidi_level_of_next_char):
1836 Declare static. Use `INLINE' rather than `inline'.
1837
1838 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
1839
1840 * dired.c (Ffile_attributes): Fix typo in docstring.
1841
1842 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
1843
1844 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
1845 NSInteger (Bug#5811).
1846
1847 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1848
1849 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
1850 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
1851
1852 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1853
1854 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
1855
1856 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
1857
1858 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
1859 terminal frames (Bug#5837).
1860
1861 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1862
1863 * .gdbinit (xsubchartable): New command.
1864
1865 2010-04-19 Eli Zaretskii <eliz@gnu.org>
1866
1867 * xdisp.c (display_line): Don't write beyond the last glyph row in
1868 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
1869 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
1870 and
1871 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
1872
1873 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1874
1875 * alloc.c (Fpurecopy): Hash-cons if requested.
1876 (syms_of_alloc): Update purify-flag docstring.
1877
1878 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
1879
1880 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
1881 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
1882
1883 2010-04-17 Eli Zaretskii <eliz@gnu.org>
1884
1885 Fix a crash when an NSM character is inserted at BEGV.
1886
1887 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
1888 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
1889 NEUTRAL_B or UNKNOWN_BT.
1890
1891 2010-04-16 Eli Zaretskii <eliz@gnu.org>
1892
1893 * xdisp.c (set_cursor_from_row): Don't consider possibility of
1894 other rows with cursor unless they are different from this row and
1895 this row is part of a continued line. (Bug#5943)
1896
1897 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
1898
1899 * s/freebsd.h: Restore osreldate.h include.
1900 Suggested by Naohiro Aota.
1901
1902 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
1903
1904 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
1905
1906 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
1907
1908 * s/cygwin.h: Avoid linking against static libgcc.
1909
1910 2010-04-15 Juri Linkov <juri@jurta.org>
1911
1912 * window.c: Add Qscroll_command.
1913 Remove Vscroll_preserve_screen_position_commands.
1914 (window_scroll_pixel_based, window_scroll_line_based): Check the
1915 `scroll-command' property on the last command instead of searching
1916 the last command in Vscroll_preserve_screen_position_commands.
1917 (syms_of_window): Initialize and staticpro `Qscroll_command'.
1918 Put Qscroll_command property on Qscroll_up and Qscroll_down.
1919 (scroll-preserve-screen-position): Doc fix.
1920 (Vscroll_preserve_screen_position_commands): Remove variable.
1921
1922 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
1923
1924 * xdisp.c (message): Do not use NO_ARG_ARRAY.
1925
1926 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
1927
1928 Reduce cpp use in Makefile.in.
1929 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
1930 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
1931 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
1932 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
1933 (CRT0_COMPILE): Remove, inline it in the only user.
1934
1935 2010-04-14 Juri Linkov <juri@jurta.org>
1936
1937 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
1938 `scroll-up-command' and `M-v' from `scroll-down' to
1939 `scroll-down-command'.
1940
1941 2010-04-14 Juri Linkov <juri@jurta.org>
1942
1943 * window.c (Vscroll_preserve_screen_position_commands): New variable
1944 with the default value as the list of Qscroll_down and Qscroll_up.
1945 (window_scroll_pixel_based, window_scroll_line_based): Search the
1946 last command in the list Vscroll_preserve_screen_position_commands
1947 instead of comparing with Qscroll_up and Qscroll_down.
1948
1949 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
1950
1951 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
1952 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
1953 does that.
1954
1955 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
1956 to zero.
1957
1958 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
1959
1960 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
1961
1962 Try to solve the problem of spurious EOF chars in long lines of text
1963 sent to interactive subprocesses.
1964 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
1965 (system_process_attributes): Remove unused var `ttotal'.
1966 * process.c (send_process): Don't bother breaking long line with EOF
1967 chars when talking to ttys any more.
1968 (wait_reading_process_output): Output a warning when called in such
1969 a way that it could block without being interruptible.
1970
1971 Try to detect file modification within the same second.
1972 * buffer.h (struct buffer): New field modtime_size.
1973 * buffer.c (reset_buffer): Initialize it.
1974 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
1975 (Fverify_visited_file_modtime): Check it.
1976 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
1977 (Fset_visited_file_modtime): Set (or clear) it.
1978
1979 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1980
1981 * process.c (status_notify): Remove unused var `ro'.
1982
1983 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
1984
1985 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
1986 more than one visual (Bug#5938).
1987
1988 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
1989
1990 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
1991 Undefine.
1992
1993 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
1994
1995 Remove C_SWITCH_SYSTEM_TEMACS.
1996 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
1997 (malloc, realloc, free): Use emacs, not temacs for conditional
1998 definition.
1999
2000 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
2001 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
2002
2003 Use autoconf, not cpp for some variables.
2004 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
2005 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
2006 (ALL_CFLAGS): Use them as make variables.
2007 (really-lwlib, really-oldXMenu): Do not pass them.
2008
2009 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
2010
2011 * xmenu.c (apply_systemfont_to_dialog): New.
2012 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
2013
2014 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2015
2016 * process.c (exec_sentinel): Preserve current-buffer.
2017
2018 * process.c (read_process_output): Move the save-current-buffer to
2019 apply to both the filter and the non-filter branches.
2020
2021 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
2022
2023 * s/msdos.h (UNEXEC): New definition.
2024
2025 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2026
2027 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
2028 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
2029
2030 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
2031 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
2032 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
2033 TRY_WINDOW_CHECK_MARGINS.
2034
2035 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
2036 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
2037 width only when it is for padding.
2038
2039 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
2040
2041 * xfns.c (Fx_show_tip): Call try_window in a loop until
2042 fonts_changed_p is zero (Bug#2423).
2043
2044 2010-04-08 Eli Zaretskii <eliz@gnu.org>
2045
2046 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
2047 the end of TEXT_AREA. (Bug#5856)
2048
2049 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
2050
2051 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
2052 HAVE_GCONF.
2053
2054 2010-04-08 Eli Zaretskii <eliz@gnu.org>
2055
2056 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
2057 prev.orig_type, for resolving type of NSM. (Bug#5858)
2058
2059 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
2060
2061 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
2062 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
2063 in current_font.
2064 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
2065 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
2066 New functions.
2067 (syms_of_xsettings): Initialize current_font.
2068 defsubr Sfont_get_system_normal_font.
2069
2070 * xsettings.h (Ffont_get_system_normal_font,
2071 xsettings_get_system_normal_font): Declare.
2072
2073 * xfns.c (extern xlwmenu_default_font): Remove.
2074 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
2075 to xlwmenu.c.
2076
2077 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
2078 menu items in UTF-8.
2079
2080 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
2081 (apply_systemfont_to_menu): New function.
2082 (set_frame_menubar, create_and_show_popup_menu): Call
2083 apply_systemfont_to_menu.
2084
2085 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
2086
2087 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
2088 FRAME_LINE_TO_PIXEL_Y.
2089
2090 * xterm.c (x_set_window_size_1): Don't add border_width/height to
2091 pixelwidth/height.
2092
2093 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
2094
2095 Simplify code for HP machines.
2096 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
2097 for GNU_LINUX, not needed.
2098 (UNEXEC, NEED_BSDTTY): Move definitions...
2099 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
2100
2101 * m/iris4d.h (UNEXEC): Move definition ...
2102 * s/irix6-5.h (UNEXEC): ... here.
2103
2104 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
2105
2106 * xfns.c (set_machine_and_pid_properties): New function.
2107 (Fx_create_frame): Call set_machine_and_pid_properties.
2108
2109 2010-04-03 Eli Zaretskii <eliz@gnu.org>
2110
2111 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char): Check
2112 bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
2113 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
2114
2115 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
2116 in this function. (Bug#5703)
2117
2118 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
2119
2120 * nsterm.h: Fix last change.
2121
2122 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
2123
2124 * m/intel386.h (NO_REMAP): Move definition ...
2125 * s/msdos.h (NO_REMAP): ... here.
2126
2127 * m/vax.h (CRT0_DUMMIES): Remove, unused.
2128
2129 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
2130 used on those platforms.
2131
2132 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
2133
2134 Remove extern errno declarations.
2135 * xterm.c:
2136 * xrdb.c:
2137 * w32term.c:
2138 * unexec.c:
2139 * unexaix.c:
2140 * sysdep.c:
2141 * process.c:
2142 * lread.c:
2143 * keyboard.c:
2144 * floatfns.c:
2145 * filelock.c:
2146 * fileio.c:
2147 * emacs.c (main):
2148 * ecrt0.c:
2149 * dispnew.c:
2150 * callproc.c:
2151 * buffer.c: Remove errno extern declarations.
2152 * s/netbsd.h (NEED_ERRNO): Remove.
2153
2154 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
2155
2156 Remove all uses of LIBX11_SYSTEM.
2157 * Makefile.in (LIBX11_SYSTEM): Remove.
2158 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
2159 instead.
2160
2161 2010-04-01 Eli Zaretskii <eliz@gnu.org>
2162
2163 Remove support for DJGPP v1.x (bug#5813).
2164
2165 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
2166 * s/msdos.h:
2167 * unexec.c (make_hdr, copy_text_and_data):
2168 * sysdep.c (wait_for_termination, sys_subshell):
2169 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
2170 (IT_set_terminal_modes, __write, _rename, gethostname)
2171 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
2172 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
2173 the value of __DJGPP__.
2174 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
2175 compatibility code.
2176 * lread.c:
2177 * gmalloc.c (memalign):
2178 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
2179 * emacs.c (main):
2180 * dosfns.c (init_dosfns):
2181 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
2182
2183 2010-04-01 Eli Zaretskii <eliz@gnu.org>
2184
2185 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
2186 string with `cursor' property comes from an `after-string'
2187 overlay. (Bug#5816)
2188
2189 2010-04-01 Glenn Morris <rgm@gnu.org>
2190
2191 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
2192 Define as Makefile variables.
2193 (LIBX): Use above variables rather than directly using autoconf.
2194
2195 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
2196
2197 Clean up BSD_SYSTEM use.
2198 * xterm.c:
2199 * process.c:
2200 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
2201 for including <sys/ioctl.h>.
2202 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
2203 code is only used for MSDOS.
2204
2205 2010-03-31 Juri Linkov <juri@jurta.org>
2206
2207 * image.c: Add `Qextension_data'.
2208 (syms_of_image): Initialize and staticpro `Qextension_data'.
2209 (Fimage_metadata): Rename from `Fimage_extension_data'.
2210 (gif_load): Put GIF extension data to the property
2211 `Qextension_data'.
2212
2213 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
2214
2215 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
2216 * nsterm.h: Fix prototype.
2217
2218 2010-03-31 Eli Zaretskii <eliz@gnu.org>
2219
2220 * xdisp.c (highlight_trailing_whitespace): Support highlight of
2221 trailing whitespace in right-to-left rows.
2222
2223 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
2224
2225 Get rid of the direct_output optimizations.
2226 * keyboard.c (nonundocount): Remove extern declaration.
2227 (command_loop_1): Remove brittle optimisation for cheap and
2228 common operations.
2229 * xdisp.c (redisplay_internal): Don't bother checking
2230 redisplay_performed_directly_p any more.
2231 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
2232 any more.
2233 * dispnew.c (redisplay_performed_directly_p)
2234 (direct_output_for_insert, direct_output_forward_char):
2235 * dispextern.h (redisplay_performed_directly_p)
2236 (direct_output_for_insert, direct_output_forward_char): Remove.
2237 * cmds.c (nonundocount): Make it static.
2238
2239 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
2240
2241 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
2242
2243 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
2244
2245 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
2246 invisible (Bug#5766).
2247
2248 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
2249
2250 * xdisp.c (x_consider_frame_title, update_window_cursor):
2251 Remove HAVE_NS conditionals.
2252 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
2253
2254 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
2255 filename for the title.
2256 (ns_set_doc_edited): Do nothing if the selected window is a
2257 minibuffer window.
2258
2259 * nsterm.h: Add prototypes for ns_set_name_as_filename and
2260 ns_set_doc_edited.
2261
2262 * nsterm.m: Remove unneeded prototype.
2263
2264 2010-03-31 Glenn Morris <rgm@gnu.org>
2265
2266 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
2267 in the DOC file. (Bug#5336)
2268
2269 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
2270
2271 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
2272
2273 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
2274
2275 * window.c (keys_of_window): Remove redundant/overridden bindings.
2276
2277 2010-03-30 Eli Zaretskii <eliz@gnu.org>
2278
2279 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
2280 Restore original behavior when the iterator is not bidi_p.
2281
2282 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
2283
2284 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
2285
2286 2010-03-30 Eli Zaretskii <eliz@gnu.org>
2287
2288 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
2289 are outside the range of cached character positions.
2290
2291 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
2292
2293 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
2294
2295 2010-03-30 Eli Zaretskii <eliz@gnu.org>
2296
2297 Initial support for bidirectional editing.
2298
2299 * Makefile.in (obj): Include bidi.o.
2300 (bidi.o): New target.
2301
2302 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
2303 ($(BLD)/bidi.$(O)): New target.
2304
2305 * bidi.c: New file.
2306
2307 * buffer.h (struct buffer): New members bidi_display_reordering
2308 and bidi_paragraph_direction.
2309
2310 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
2311 and bidi_paragraph_direction.
2312 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
2313 and bidi-paragraph-direction.
2314 (Fbuffer_swap_text): Swap the values of
2315 bidi_display_reordering and bidi_paragraph_direction.
2316
2317 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
2318 (bidi_type_t, bidi_dir_t): New types.
2319 (bidi_saved_info, bidi_stack, bidi_it): New structures.
2320 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
2321 prev_stop, base_level_stop, and eol_pos.
2322 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
2323 (IT_STACK_SIZE): Enlarge to 5.
2324 (struct glyph_row): New member reversed_p.
2325 <string_buffer_position>: Update prototype.
2326 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
2327 glyph_row if bidi_it.paragraph_dir == R2L.
2328 (struct glyph): New members resolved_level and bidi_type.
2329
2330 * dispnew.c (direct_output_forward_char): Give up if we need bidi
2331 processing or buffer's direction is right-to-left.
2332 (prepare_desired_row): Preserve the reversed_p flag.
2333 (row_equal_p): Compare the reversed_p attributes as well.
2334
2335 * xdisp.c (init_iterator): Initialize it->bidi_p. Call
2336 bidi_init_it and set it->paragraph_embedding from the current
2337 buffer's value of bidi_paragraph_direction.
2338 (reseat_1): Initialize bidi_it.first_elt.
2339 (set_iterator_to_next, next_element_from_buffer): Use the value of
2340 paragraph_embedding to determine the paragraph direction.
2341 (set_iterator_to_next): Under bidi reordering, call
2342 bidi_get_next_char_visually. Call bidi_paragraph_init if the
2343 new_paragraph flag is set in the bidi iterator.
2344 (next_element_from_buffer): If bidi_it.first_elt is set,
2345 initialize paragraph direction and find the first character to
2346 display in the visual order. If reseated to a middle of a line,
2347 prime the bidi iterator starting at the line's beginning. Handle
2348 the situation where we overstepped stop_charpos due to
2349 non-linearity of the bidi iteration. Likewise for when we back up
2350 beyond the previous stop_charpos. When moving across stop_charpos,
2351 record it in prev_stop.
2352 (display_line): Set row->end and it->start for the next row to the
2353 next character in logical order. Always extend reversed_p rows to
2354 the end of line, even if they end at ZV. Copy the reversed_p flag
2355 to the next glyph row. Keep calling set_cursor_from_row for
2356 bidi-reordered rows even if we already have a possible candidate
2357 for cursor position. Set row_end after all the row's glyphs have
2358 been produced, by looping over the glyphs. Record the position
2359 after EOL in it->eol_pos, and use it to set end_pos of the last
2360 row produced for a continued line.
2361 <Qright_to_left, Qleft_to_right>: New variables.
2362 (syms_of_xdisp): Initialize and staticpro them.
2363 (string_buffer_position_lim): New function.
2364 (string_buffer_position): Most of code moved to
2365 string_buffer_position_lim. Last argument and return value are
2366 now EMACS_INT; all callers changed.
2367 (set_cursor_from_row): Rewritten to support bidirectional text and
2368 reversed glyph rows.
2369 (text_outside_line_unchanged_p, try_window_id): Disable
2370 optimizations if we are reordering bidirectional text and the
2371 paragraph direction can be affected by the change.
2372 (append_glyph, append_composite_glyph)
2373 (produce_image_glyph, append_stretch_glyph): Set the
2374 resolved_level and bidi_type members of each glyph.
2375 (append_glyph): If the glyph row is reversed, prepend the glyph
2376 rather than appending it.
2377 (handle_stop_backwards): New function.
2378 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
2379 (reseat): call handle_stop_backwards to recompute prev_stop and
2380 base_level_stop for the new position.
2381 (handle_invisible_prop): Under bidi iteration, skip invisible text
2382 using bidi_get_next_char_visually. If we are `reseat'ed, init the
2383 paragraph direction. Update IT->prev_stop after skipping
2384 invisible text.
2385 (move_it_in_display_line_to): New variables prev_method
2386 and prev_pos. Compare for strict equality in
2387 BUFFER_POS_REACHED_P.
2388 (try_cursor_movement): Examine all the candidate rows that occlude
2389 point, to return the best match. If rows are bidi-reordered
2390 and point moved backwards, back up to the row that is not a
2391 continuation line, and start looking for a suitable row from
2392 there.
2393
2394 * term.c (append_glyph): Reverse glyphs by pre-pending them,
2395 rather than appending, if the glyph_row's reversed_p flag is set.
2396 Set the resolved_level and bidi_type members of each glyph.
2397
2398 * .gdbinit (pbiditype): New command.
2399 (pgx): Use it to display bidi level and type of the glyph.
2400 (pitx): Display some bidi information about the iterator.
2401 (prowlims, pmtxrows): New commands.
2402
2403 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
2404
2405 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
2406 * s/usg5-4.h (LIBS_DEBUG):
2407 * s/irix6-5.h (C_DEBUG_SWITCH):
2408 * s/gnu-linux.h (LIBS_DEBUG):
2409 * s/darwin.h (LIBS_DEBUG):
2410 * s/bsd-common.h (LIBS_DEBUG):
2411 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
2412 * m/iris4d.h (LIBS_DEBUG):
2413 * m/hp800.h (LIBS_DEBUG): Remove definitions.
2414
2415 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
2416 (LIBS_DEBUG): Remove definition.
2417
2418 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
2419
2420 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
2421 Windows.
2422
2423 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2424
2425 * process.c (Fmake_network_process): Don't call turn_on_atimers around
2426 `connect' (Bug#5723).
2427
2428 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
2429
2430 * process.c (Fmake_network_process): Call `select' for interrupted
2431 `connect' rather than creating new socket (Bug#5173).
2432
2433 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
2434
2435 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
2436
2437 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
2438
2439 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
2440
2441 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2442
2443 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
2444 XLoadQueryFont.
2445
2446 2010-03-24 Kenichi Handa <handa@m17n.org>
2447
2448 * coding.c (decode_coding_ccl): Fix previous change for the
2449 multibyte case.
2450 (encode_coding_ccl): Don't setup ccl program here. Fix for the
2451 case that the output buffer is fullfilled.
2452 (encode_coding): Setup ccl program here.
2453
2454 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
2455
2456 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
2457
2458 Simplify LIBS_MACHINE definitions.
2459 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
2460 * m/iris4d.h (LIBS_MACHINE): Likewise.
2461 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
2462 * s/aix4-2.h (LIBS_SYSTEM): ... here.
2463 * s/netbsd.h: Remove commented out code.
2464
2465 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
2466
2467 Remove dead code dealing with POSIX_SIGNALS.
2468 * atimer.c (set_alarm): Remove dead code, all USG systems define
2469 POSIX_SIGNALS.
2470 * data.c (arith_error): Likewise.
2471 * keyboard.c (input_available_signal, handle_user_signal)
2472 (interrupt_signal): Likewise.
2473 * process.c (sigchld_handler): Likewise.
2474 (create_process): Remove if 0 code. Remove HPUX conditional when
2475 !defined (POSIX_SIGNALS), it cannot be true.
2476 * syssignal.h: Remove USG5_4 and USG conditionals when
2477 !POSIX_SIGNALS, they cannot be true.
2478
2479 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
2480 NO_SOCK_SIGIO, not used anymore.
2481
2482 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
2483
2484 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
2485 support vax on BSDs.
2486
2487 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
2488 * s/aix4-2.h (ORDINARY_LINK): ... here.
2489
2490 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
2491
2492 * Makefile.in (abs_builddir): Define.
2493 (bootstrap_exe): Use it.
2494 (VPATH): Use $(srcdir) instead of @srcdir@.
2495
2496 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2497
2498 * Makefile.in (bootstrap_exe): Use an absolute name.
2499
2500 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2501
2502 Remove support for old GNU/Linux using libc version 5.
2503 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
2504 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
2505
2506 Consolidate redundant definitions in s/bsd-common.h.
2507 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2508 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2509 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
2510 doing it in all files that include this one.
2511 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2512 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2513 (LDAV_SYMBOL, KERNEL_FILE): Remove.
2514 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2515 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2516 (LDAV_SYMBOL, KERNEL_FILE): Remove.
2517 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
2518 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
2519 (LDAV_SYMBOL, KERNEL_FILE): Remove.
2520
2521 Consolidate redundant definitions.
2522 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
2523 it's undefined in all files that include this one.
2524 (POSIX_SIGNALS): Define here instead of doing it in all files that
2525 include this one.
2526 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
2527 (POSIX_SIGNALS): Do not define.
2528 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
2529 (POSIX_SIGNALS): Do not define.
2530 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
2531 (POSIX_SIGNALS): Do not define.
2532
2533 Remove support for old UNIX System V systems.
2534 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
2535 * s/usg-5-4-2.h: Remove.
2536
2537 Remove support for Solaris on PPC and for old versions.
2538 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
2539 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
2540 that cancel each other.
2541 * s/sol2-3.h:
2542 * s/sol2-4.h:
2543 * s/sol2-5.h: Remove.
2544 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
2545 (NO_REMAP): Remove, unused.
2546 (UNEXEC): Move definition ...
2547 * s/aix4-2.h (UNEXEC): ... here.
2548
2549 * s/openbsd.h: Remove support for non-ELF and for systems that do
2550 not support shared libraries.
2551 * s/netbsd.h:
2552 * s/freebsd.h: Likewise.
2553
2554 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2555
2556 Remove non-working support for lynxos 3.0.
2557 * s/lynxos.h: Remove file.
2558
2559 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
2560 COFF_BSD_SYMBOLS, nothing defines it anymore.
2561
2562 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
2563
2564 Remove obsolete uses of HAVE_SHM.
2565 * emacs.c (standard_args):
2566 (Fdump_emacs):
2567 (syms_of_emacs): Remove code depending on HAVE_SHM.
2568
2569 * alloc.c: Remove HAVE_SHM dependent definition.
2570
2571 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
2572
2573 2010-03-18 Glenn Morris <rgm@gnu.org>
2574
2575 * emacs.c (USAGE4): Hard-code bug address.
2576 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
2577 (bug_reporting_address): Remove.
2578 (main): Don't call bug_reporting_address.
2579
2580 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
2581 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
2582
2583 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
2584
2585 * xfns.c (Fx_create_frame):
2586 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
2587 on left.
2588
2589 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
2590
2591 * editfns.c (Fformat): Account for string precision when computing
2592 field width (Bug#5710).
2593
2594 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
2595
2596 * xfns.c (Fx_create_frame): Set default to Qright.
2597
2598 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
2599 all window systems.
2600
2601 2010-03-12 Eli Zaretskii <eliz@gnu.org>
2602
2603 These changes remove termcap.c from the build on Posix platforms.
2604 * Makefile.in (termcapobj): Move termcap.o from here...
2605 (MSDOS_OBJ): ...to here.
2606 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
2607 now identical to when LIBS_TERMCAP is defined.
2608
2609 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
2610
2611 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
2612
2613 * config.in: Regenerated. (See top-level ChangeLog.)
2614
2615 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
2616
2617 * Branch for 23.2.
2618
2619 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
2620
2621 Cleanup setup of gl_state in various parts of the code.
2622 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
2623 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
2624 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
2625 (skip_chars):
2626 * regex.c (regex_compile): Use it.
2627 (re_compile_pattern): Don't set gl_state.current_syntax_table since
2628 it's now set in regex_compile when/if we need it.
2629
2630 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
2631
2632 Make it possible to C-g in a tight bytecode loop again (bug#5680).
2633 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
2634 (QUIT): Use it to consolidate code and remove redundancy.
2635 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
2636
2637 * regex.c (regex_compile): Setup gl_state as well.
2638
2639 * syntax.c (skip_chars): Setup gl_state (bug#3823).
2640 (in_classes): Use CONSP before XCAR/XCDR.
2641
2642 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
2643
2644 * keymap.c (Fwhere_is_internal): Use Fequal to compare
2645 definitions, so that keyboard macros are correctly handled
2646 (Bug#5481).
2647
2648 2010-03-02 Eli Zaretskii <eliz@gnu.org>
2649
2650 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
2651 text that could be relocated inside the call to emacs_mule_char.
2652 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
2653 (CODING_DECODE_CHAR): Add a comment describing its purpose.
2654
2655 2010-03-02 Kenichi Handa <handa@m17n.org>
2656
2657 * character.c (parse_str_as_multibyte): Fix handling of the
2658 multibyte form of raw-bytes.
2659 (str_as_multibyte): Likewise.
2660
2661 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
2662 form of raw-bytes.
2663
2664 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
2665
2666 * charset.c (load_charset_map_from_file)
2667 (load_charset_map_from_vector): Zero out allocated
2668 charset_map_entries before using them.
2669
2670 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
2671
2672 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
2673
2674 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
2675
2676 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
2677 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
2678
2679 2010-02-26 Kenichi Handa <handa@m17n.org>
2680
2681 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
2682
2683 * xdisp.c (reseat_to_string): Fix previous change.
2684
2685 2010-02-26 David Reitter <david.reitter@gmail.com>
2686
2687 * nsfont.m (nsfont_draw): ns_antialias_text should be a
2688 Lisp_Object (Bug#4736).
2689
2690 2010-02-25 Kenichi Handa <handa@m17n.org>
2691
2692 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
2693
2694 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
2695
2696 * xterm.c (XTflash): Move declarations before statements.
2697
2698 * gtkutil.c (xg_get_gdk_display): Remove (unused).
2699 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
2700 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
2701 (xg_create_tool_bar): Remove unused variables.
2702 (x_wm_set_size_hint): Move declarations before statements.
2703 (xg_create_frame_widgets): Remove variable grav.
2704
2705 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
2706
2707 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
2708
2709 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2710
2711 * term.c (fatal): Add a final \n if needed (bug#5596).
2712
2713 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
2714
2715 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
2716
2717 2010-02-18 Glenn Morris <rgm@gnu.org>
2718
2719 * callint.c (Finteractive): Doc fix.
2720
2721 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
2722
2723 * coding.c (record_conversion_result):
2724 Handle CODING_RESULT_INSUFFICIENT_DST.
2725 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
2726 memory allocation error.
2727
2728 2010-02-17 Kenichi Handa <handa@m17n.org>
2729
2730 * coding.c (decode_coding_ccl): Don't setup ccl program here.
2731 Fix for the case that the output buffer is fullfilled.
2732 (decode_coding): Setup ccl program here. Keep looping when the
2733 decoder stopped because the output buffer is
2734 fullfilled (bug#5534).
2735
2736 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
2737
2738 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
2739
2740 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
2741 bug #5571.
2742 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
2743 overdrawn.
2744
2745 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
2746
2747 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
2748 doing_interact here.
2749 (ice_connection_closed): New function.
2750 (x_session_check_input, smc_die_CB, ice_io_error_handler)
2751 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
2752 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
2753 returns I/O error.
2754 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
2755 bug #5512.
2756
2757 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
2758
2759 * nsfont.m (nsfont_open): The system's value for the font descent
2760 is negative, so round it down to avoid clipping.
2761
2762 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
2763
2764 * charset.c (load_charset_map_from_file)
2765 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
2766 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
2767
2768 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
2769
2770 * charset.c (load_charset_map_from_file): Allocate large
2771 charset_map_entries structure on the heap rather than the stack.
2772 (Bug#5526).
2773
2774 2010-01-31 Kenichi Handa <handa@m17n.org>
2775
2776 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
2777 size in NAME is invalid, return -1 (Bug#5396).
2778
2779 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
2780
2781 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
2782 <deactivated@gmail.com> (Bug#3605).
2783
2784 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
2785
2786 * fileio.c (Frename_file): Correctly rename symlinks to
2787 directories (Bug#5496).
2788
2789 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
2790
2791 * nsterm.m (ns_ring_bell): Handle visible bell like X.
2792
2793 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
2794
2795 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
2796
2797 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
2798
2799 * frame.c (DEFAULT_ROWS): Change default to 35.
2800
2801 * xfns.c (x_default_font_parameter): Change default XFT font to
2802 monospace-10 (Bug#3643).
2803
2804 2010-01-29 Eli Zaretskii <eliz@gnu.org>
2805
2806 * w32inevt.c (key_event): Remove unnecessary comparison of
2807 event->uChar.AsciiChar with 128.
2808
2809 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
2810
2811 * fileio.c (Frename_file): Fix last change (Bug#5487).
2812
2813 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
2814
2815 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
2816
2817 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
2818
2819 * xfns.c (Fx_create_frame): Remove window size matching code from
2820 2010-01-15.
2821 (x_get_current_desktop, x_get_desktop_workarea): Remove.
2822
2823 2010-01-27 Jason Rumney <jasonr@gnu.org>
2824
2825 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
2826 (key_event): Use unicode for characters 128 and higher (Bug#4567).
2827
2828 2010-01-27 Kenichi Handa <handa@m17n.org>
2829
2830 * regex.c (analyse_first): Fix setting of fastmap for unibyte
2831 pattern string (Bug#4209).
2832
2833 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
2834
2835 * fileio.c (Frename_file): Call copy-directory and
2836 delete-directory for directories, in order to handle cross-device
2837 renaming (Bug#3353).
2838
2839 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
2840
2841 * xfns.c (Fx_create_frame): If frame height is too big, try
2842 sizes 24 and 10. Bug #3643.
2843
2844 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
2845
2846 Try and fix bug#788, hopefully for real this time.
2847 * keymap.c (shadow_lookup): Add `remap' arg.
2848 (describe_map, describe_vector): Update calls to shadow_lookup.
2849 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
2850 `remapped' so this flag is applicable to `sequence'. Be careful to
2851 perform remapping during shadow_lookup check of remapped_sequences.
2852
2853 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
2854
2855 * image.c (png_load): Use png_sig_cmp instead of the obsolete
2856 png_check_sig, which has been removed in libpng 1.4.
2857
2858 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
2859
2860 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
2861 lacks this header file).
2862
2863 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2864
2865 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
2866 as in Emacs 22.
2867
2868 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2869
2870 * lisp.h (make_pure_string): String pointer arg now points to const.
2871
2872 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
2873 args now point to const.
2874
2875 2010-01-22 Eli Zaretskii <eliz@gnu.org>
2876
2877 * lread.c (Fload): Don't treat files without .elc extension as
2878 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
2879 them. (bug#5303)
2880
2881 2010-01-20 Kenichi Handa <handa@m17n.org>
2882
2883 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
2884 treat the source as actual byte sequence.
2885
2886 2010-01-19 Alan Mackenzie <acm@muc.de>
2887
2888 Fix spurious before-change-functions invocation from (insert ?\n).
2889 * textprop.c (set_text_properties): Rename parameter
2890 `signal_after_change_p' to `coherent_change_p', and make the
2891 invocation of `modify_region' conditional on it.
2892
2893 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
2894
2895 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
2896 for debug purpose.
2897 (syms_of_xsettings): Declare xft-settings.
2898
2899 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
2900
2901 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
2902
2903 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2904
2905 * xterm.c (event_handler_gdk): Block input (Bug#5037).
2906
2907 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
2908
2909 * emacs.c (standard_args): Adjust arg priorities to reflect how
2910 they are processed in startup.el.
2911
2912 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
2913
2914 * Makefile.in (lisp, shortlisp): Update.
2915
2916 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2917
2918 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
2919 code, link the new kboard into all_kboard before running Lisp code,
2920 and protect the new terminal with GCPRO (Bug#5365).
2921 (x_term_init): Remove unused var `atom'.
2922 (x_delete_display, x_delete_terminal): Remove unused var `i'.
2923
2924 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
2925
2926 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
2927 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
2928 to find out usable size of the desktop. Don't make frames larger than
2929 this. Bug #3643.
2930
2931 2010-01-15 Kenichi Handa <handa@m17n.org>
2932
2933 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
2934
2935 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
2936
2937 * nsterm.m (Qnone): Define.
2938
2939 * nsfns.m (Qnone): Move definition to nsterm.m.
2940
2941 2010-01-14 Kenichi Handa <handa@m17n.org>
2942
2943 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
2944 systems.
2945
2946 2010-01-14 Kenichi Handa <handa@m17n.org>
2947
2948 Make auto-composition work on all buffers even if they are
2949 fundamental mode.
2950
2951 * composite.c (Vauto_composition_mode): New variable.
2952 (composition_compute_stop_pos): Check Vauto_composition_mode
2953 instead of Vauto_composition_function.
2954 (composition_adjust_point, Ffind_composition_internal): Likewise.
2955 (syms_of_composite): Declare Lisp variable
2956 "auto-composition-mode" here.
2957
2958 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
2959
2960 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
2961 during call to vendor-specific-keysyms (Bug#5365).
2962
2963 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2964
2965 * keyboard.c (input_available_signal) [SYNC_INPUT]:
2966 Call SIGNAL_THREAD_CHECK (Bug#5333).
2967
2968 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
2969 Call SIGNAL_THREAD_CHECK.
2970
2971 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2972
2973 Try to fix bug#5314. This is probably not the final word, tho.
2974 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
2975 recent-auto-save-p as a side-effect.
2976 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
2977 * buffer.c (Fkill_buffer, reset_buffer):
2978 * editfns.c (Fsubst_char_in_region):
2979 * fileio.c (Finsert_file_contents, Fdo_auto_save)
2980 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
2981
2982 2010-01-13 Kenichi Handa <handa@m17n.org>
2983
2984 Display buffer name, etc. in mode line by composing correctly.
2985
2986 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
2987 STRING is not nil.
2988 (display_mode_element): Adjust for the change of
2989 decode_mode_spec and display_line.
2990 (decode_mode_spec): Change arg MULTIBYTE to STRING.
2991 (display_string): Handle the case that STRING is non-null and
2992 LISP_STRING is not nil.
2993
2994 * xterm.c (x_draw_composite_glyph_string_foreground):
2995 Pay attention to s->face->overstrike.
2996
2997 * composite.c (composition_reseat_it): Don't check PT if STRING is
2998 non nil.
2999
3000 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3001
3002 * keyboard.c (read_char): Don't apply previous change when current
3003 buffer is unchanged by command execution.
3004
3005 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
3006
3007 * keyboard.c (read_char): Return after executing from special map.
3008
3009 2010-01-12 Glenn Morris <rgm@gnu.org>
3010
3011 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
3012 bug-gnu-emacs rather than emacs-pretest-bug.
3013
3014 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
3015
3016 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
3017 initializing the Lisp variables that depend on them.
3018
3019 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3020
3021 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
3022 Clear areas that will not be updated after change of menu bar lines.
3023 Clear the menu bar window's current matrix when the window gets empty.
3024
3025 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
3026
3027 * intervals.h, textprop.c (extend_property_ranges): Return value
3028 and args changed. Discard properties that begin at or after the
3029 new end (Bug#5306).
3030
3031 * editfns.c (Fformat): Caller changed.
3032
3033 * nsterm.m (ns_set_default_prefs): Delete function.
3034 (syms_of_nsterm): Initialize ns_command_modifier,
3035 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
3036 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
3037
3038 * xdisp.c (pos_visible_p): Check for invisible text at the correct
3039 position (Bug#4040).
3040
3041 2010-01-09 Eli Zaretskii <eliz@gnu.org>
3042
3043 * editfns.c (Ffloat_time): Doc fix.
3044
3045 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
3046
3047 * xfns.c (Fx_create_frame): Don't create frame larger than display
3048 by default bug#3643.
3049
3050 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3051
3052 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
3053 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
3054 windows above internal border.
3055
3056 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
3057 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
3058 windows above internal border.
3059
3060 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
3061 tool bar windows specially.
3062
3063 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
3064
3065 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
3066 specially.
3067 (XTflash): Take account of menu bar height.
3068
3069 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
3070 specially.
3071
3072 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
3073
3074 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
3075 also be true before we can return early (bug #5339).
3076
3077 2010-01-06 David Reitter <david.reitter@gmail.com>
3078
3079 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
3080 (Fns_display_usable_bounds): Rewrite, computing bounds properly
3081 (Bug#3233).
3082
3083 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
3084
3085 * font.c (font_open_entity): Enable chache and call cached_font_ok
3086 for the driver if defined.
3087 (QCuser_spec): New symbol.
3088 (font_spec_from_name): Save name as user-spec.
3089 (font_load_for_lface): Keep user-spec instead of name.
3090 (font_open_by_name): Save name as user-spec.
3091 (syms_of_font): Initialize QCuser_spec.
3092 (font_clear_prop): Clear name if it exists in font (bug#5157).
3093
3094 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
3095 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
3096 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
3097
3098 * font.h (struct font_driver): Add cached_font_ok.
3099
3100 * xterm.c (x_clear_frame): Queue draw for scroll bars.
3101
3102 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
3103
3104 * xterm.c (x_new_font): Move code for setting rows/cols before
3105 resizing ...
3106 (x_set_window_size): ... to here. Bug #2568.
3107
3108 * gtkutil.c (xg_clear_under_internal_border): New function.
3109 (xg_frame_resized, xg_frame_set_char_size):
3110 Call xg_clear_under_internal_border.
3111 (xg_update_scrollbar_pos): Clear under old scroll bar position.
3112
3113 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
3114
3115 * keyboard.c (read_key_sequence): Catch keyboard switch after
3116 making a new tty frame (Bug#5095).
3117
3118 2010-01-05 Kenichi Handa <handa@m17n.org>
3119
3120 * fontset.c (fontset_find_font): Fix getting the frame pointer.
3121
3122 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
3123
3124 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
3125 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
3126 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
3127
3128 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
3129
3130 * dbusbind.c (xd_add_watch): Improve debug message.
3131 (xd_remove_watch): Improve debug message. If DATA is the session
3132 bus, unset D-Bus session environment.
3133 (Fdbus_init_bus): Pass the bus as argument to
3134 dbus_connection_set_watch_functions. (Bug#5283)
3135
3136 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
3137
3138 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
3139
3140 * lread.c (syms_of_lread): Make it clearer that these are the
3141 names of loaded files (Bug#5068).
3142
3143 * eval.c (run_hook_with_args): Handle the case where the global
3144 value has the obsolete single-function form (Bug#5026).
3145
3146 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
3147
3148 * minibuf.c (Fall_completions): Minor optimization.
3149
3150 2009-12-26 Eli Zaretskii <eliz@gnu.org>
3151
3152 * .gdbinit (pgx): Fix display of composite glyphs.
3153 Display cmp.from and cmp.to as well.
3154 (pitx): Fix last change.
3155
3156 2009-12-25 Kenichi Handa <handa@m17n.org>
3157
3158 * composite.h (composition_adjust_point): Update prototype.
3159
3160 * composite.c (composition_reseat_it): Don't make a composition
3161 spanning over point.
3162 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
3163 composable characters.
3164 (composition_adjust_point): New arg NEW_PT. Callers changed.
3165
3166 * keyboard.c (command_loop_1): Force redisplay if the last point
3167 was within a composition.
3168 (adjust_point_for_property): Don't adjust point for automatic
3169 composition when called after buffer modification.
3170
3171 2009-12-19 Eli Zaretskii <eliz@gnu.org>
3172
3173 * .gdbinit (pitx): Don't use enum names, use their values.
3174 Remove reference to non-existing value GET_FROM_COMPOSITION.
3175 (pgx): Don't use enum names, use their values.
3176 (pitmethod): New helper command.
3177 (pitx): Use it to display iteration method.
3178 (pgrowit): New command.
3179
3180 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
3181
3182 Update dependencies in Makefile.in.
3183
3184 * Makefile.in (alloc.o): Depend on termhooks.h.
3185 (atimer.o): Depend on blockinput.h.
3186 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
3187 and frame.h.
3188 (callint.o): Depend on systime.h, coding.h, and composite.h.
3189 (callproc.o): Depend on buffer.h.
3190 (casefiddle.o): Don't depend on charset.h.
3191 (casetab.o): Depend on character.h.
3192 (ccl.o): Depend on composite.h.
3193 (chartab.o): Depend on ccl.h.
3194 (cm.o): Depend on dispextern.h.
3195 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
3196 (coding.o): Don't depend on $(INTERVALS_H).
3197 (composite.o): Don't depend on dispextern.h explicitly (it's in
3198 $(INTERVALS_H)). Depend on ccl.h.
3199 (data.o): Depend on systime.h, coding.h, composite.h,
3200 dispextern.h, font.h, and ccl.h.
3201 (dired.o): Depend on composite.h.
3202 (dispnew.o): Depend on coding.h. Don't depend explicitly on
3203 composite.h (it's in $(INTERVALS_H)).
3204 (doc.o): Depend on systime.h, coding.h, and composite.h.
3205 (editfns.o): Don't depend explicitly on dispextern.h.
3206 (emacs.o): Depend on frame.h and coding.h.
3207 (eval.o): Depend on coding.h, composite.h, and xterm.h.
3208 (fileio.o): Depend on frame.h and commands.h. Don't depend
3209 explicitly on dispextern.h.
3210 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
3211 composite.h.
3212 (fns.o): Don't depend on termhooks.h.
3213 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
3214 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
3215 coding.h, $(INTERVALS_H), window.h, xterm.h.
3216 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
3217 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
3218 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
3219 fontset.h, ccl.h, and ftfont.h.
3220 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
3221 (gtkutil.o): Depend on dispextern.h and composite.h.
3222 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
3223 termhooks.h, and ccl.h.
3224 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
3225 (intervals.o): Depend on systime.h and coding.h.
3226 (keyboard.o): Depend on composite.h and coding.h.
3227 (keymap.o): Depend on coding.h and frame.h.
3228 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
3229 (macros.o): Depend on systime.h, coding.h, and composite.h.
3230 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
3231 and atimer.h.
3232 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
3233 dispextern.h explicitly.
3234 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
3235 Don't depend explicitly on dispextern.h and composite.h.
3236 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
3237 (regex.o): Don't depend on charset.h.
3238 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
3239 (search.o): Don't depend explicitly on composite.h.
3240 (sound.o): Depend on atimer.h and systime.h.
3241 (syntax.o): Don't depend explicitly on composite.h.
3242 (sysdep.o): Depend on coding.h and composite.h.
3243 (term.o): Depend on xterm.h and buffer.h.
3244 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
3245 (textprop.o): Don't depend on dispextern.h explicitly.
3246 (undo.o): Depend on dispextern.h.
3247 (window.o): Depend on coding.h and termhooks.h. Don't depend on
3248 dispextern.h and composite.h explicitly.
3249 (xdisp.o): Depend on ccl.h.
3250 (xfaces.o): Depend on coding.h and ccl.h.
3251 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
3252 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
3253 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
3254 ftfont.h.
3255 (xgselect.o): New dependency.
3256 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
3257 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
3258 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
3259 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
3260 (xsmfns.o): Depend on frame.h and dispextern.h.
3261 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
3262 sysselect.h.
3263
3264 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
3265
3266 * font.c (Fclear_font_cache): Pass correct cache argument to
3267 font_clear_cache.
3268
3269 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
3270
3271 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
3272 twice.
3273
3274 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
3275
3276 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
3277 calling file-remote-p. Reported by Jim Meyering.
3278
3279 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
3280
3281 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
3282 avoid compiler warnings. (Bug #5217)
3283
3284 2009-12-14 Kenichi Handa <handa@m17n.org>
3285
3286 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
3287 in 8-bit encoding.
3288
3289 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
3290
3291 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
3292 tooltip windows.
3293
3294 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
3295
3296 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
3297 Xatom_net_window_type.
3298
3299 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
3300 Xatom_net_window_type.
3301
3302 * xterm.c (my_log_handler): New function.
3303 (x_term_init): Set my_log_handler as log handler during gtk_init
3304 so we can filter out buggy messages. (Bug #5120).
3305
3306 * xterm.c (xg_scroll_callback): Parameter list changed,
3307 use parameter GtkScrollType to determine scroll/line/page.
3308 Only allow dragging if a button < 4 is grabbed (bug #5177).
3309 (xg_end_scroll_callback): New function.
3310 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
3311 xg_create_scroll_bar.
3312
3313 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
3314 (scroll_end_callback): Remove.
3315 (xg_create_scroll_bar): Add parameter end_callback, bind it to
3316 button-release-event. Replace value-changed event with change-value,
3317 bug #5177,
3318 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
3319 bug #5177.
3320
3321 * gtkutil.h (XG_LAST_SB_DATA): Remove.
3322 (xg_create_scroll_bar): Add GCallback end_callback.
3323
3324 * xftfont.c (QClcdfilter): New variable.
3325 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
3326 (syms_of_xftfont): Initialize QClcdfilter.
3327
3328 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
3329
3330 * xsettings.c (struct xsettings): Add member seen.
3331 (parse_xft_settings): Update member seen with what we have read.
3332 Return non-zero if Xft-settings have been parsed, 0 otherwise.
3333 (apply_xft_settings): Only update Xft settings with what member seen
3334 indicates as new.
3335
3336 2009-12-12 Eli Zaretskii <eliz@gnu.org>
3337
3338 * dispextern.h (struct text_pos): Use EMACS_INT;
3339 (struct glyph): Use EMACS_INT for charpos.
3340 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
3341 region_beg_charpos, region_end_charpos,
3342 redisplay_end_trigger_charpos, and also for
3343 iterator_stack_entry.end_charpos and
3344 iterator_stack_entry.stop_charpos.
3345
3346 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
3347
3348 * gtkutil.c (scroll_end_callback): New function (bug #5177).
3349 (xg_create_scroll_bar): Call scroll_end_callback on button release
3350 event (bug #5177).
3351 (xg_event_is_for_scrollbar): != replaced with ==.
3352
3353 2009-12-12 Kenichi Handa <handa@m17n.org>
3354
3355 * ftfont.c (struct ftfont_info): New member matrix.
3356 (ftfont_open): Setup xftfont_info->matrix.
3357 (MFLTFontFT): New member matrix.
3358 (FLOOR, CEIL, ROUND): New macros.
3359 (ftfont_get_metrics): Handle matrix transformation.
3360 (ftfont_shape_by_flt): New arg matrix. Callers changed.
3361
3362 * xftfont.c (struct xftfont_info): New member matrix.
3363 (xftfont_open): Setup xftfont_info->matrix.
3364
3365 2009-12-10 Kenichi Handa <handa@m17n.org>
3366
3367 * xdisp.c (append_space_for_newline): Consider face-remapping.
3368
3369 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
3370
3371 * xsettings.c: Include "keyboard.h".
3372
3373 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
3374
3375 Fix implicit function declarations.
3376 * cmds.c: Include "frame.h".
3377 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
3378 * frame.h: Move declaration of delete_frame outside of
3379 HAVE_WINDOW_SYSTEM.
3380
3381 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
3382
3383 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
3384
3385 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
3386 GTK builds.
3387
3388 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
3389
3390 * unexelf.c (unexec): Don't search for .data twice.
3391
3392 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
3393
3394 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
3395 if push failed.
3396 (handle_line_prefix): Set avoid_cursor_p here. Check return value
3397 of push_display_prop (Bug#5000).
3398
3399 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
3400 value of font_list_entities (Bug#5085).
3401
3402 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
3403
3404 Fix `string-to-number' to deal consistently with integers and floats.
3405 * lread.c (isfloat_string): New argument ignore_trailing to accept all
3406 trailing characters, not just whitespace.
3407 (read1): Pass new arg 0 to keep old behavior.
3408 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
3409 trailing chars, as it is already done for integers. Doc fixes.
3410 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
3411
3412 2009-12-04 Eli Zaretskii <eliz@gnu.org>
3413
3414 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
3415 Delete unused enumeration value.
3416
3417 2009-12-03 Eli Zaretskii <eliz@gnu.org>
3418
3419 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
3420
3421 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
3422
3423 * process.c (Fmake_network_process): Fix up the tests for
3424 "connectionless socket", so they DTRT for seqpacket sockets as well.
3425
3426 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
3427
3428 * process.c (Qseqpacket): New symbol.
3429 (HAVE_SEQPACKET): New macro.
3430 (Fmake_network_process): Accept new :type `seqpacket'.
3431 (init_process): Add `seqpacket' feature when applicable.
3432 (syms_of_process): Initialize Qseqpacket.
3433
3434 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3435
3436 * font.c (font_load_for_lface, font_open_by_name): Don't store name
3437 if entity is Qnil.
3438
3439 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
3440
3441 * print.c (print_preprocess): Preprocess the key_and_value table of
3442 hashtables, even tho they're "hidden" (bug#5082).
3443
3444 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
3445
3446 * frame.c (frame_make_pointer_invisible)
3447 (frame_make_pointer_visible): Declare f before statements.
3448
3449 2009-11-28 Eli Zaretskii <eliz@gnu.org>
3450
3451 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
3452 omitted dependencies on lisp.h.
3453
3454 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
3455
3456 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
3457 is NULL.
3458
3459 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
3460
3461 * frame.c (frame_make_pointer_invisible)
3462 (frame_make_pointer_visible): Just return if there isn't any selected
3463 frame.
3464
3465 * search.c (simple_search): Remove warning by making *p const.
3466
3467 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
3468
3469 * xdisp.c (power_letter): Remove duplicate const.
3470
3471 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
3472
3473 * term.c (delete_tty): Remove check for last terminal (bug#4970).
3474
3475 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
3476 defaults (bug #5025).
3477
3478 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
3479
3480 * insdel.c (adjust_markers_for_delete): Move it in the
3481 right direction! (bug#4803)
3482
3483 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3484
3485 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
3486
3487 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
3488
3489 2009-11-24 Glenn Morris <rgm@gnu.org>
3490
3491 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
3492
3493 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
3494
3495 * Makefile.in: Must create deps for ecrt0.o in its rule.
3496
3497 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
3498 because that is what Gtk+ font dialog understands.
3499
3500 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
3501 of Fcopy_sequence.
3502 (font_open_by_name): Put name given into QCname for font-object returned.
3503
3504 * frame.c (x_set_font): Save original font name as frame parameter
3505 font-parameter.
3506
3507 * xsettings.c (set_default_xft_settings): New function.
3508 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
3509 is found.
3510
3511 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
3512
3513 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
3514 searching backwards through multibyte buffer.
3515
3516 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
3517
3518 * xterm.c: #include xgselect.h.
3519 (x_initialize): Call xgselect_initialize.
3520
3521 * xsettings.c (something_changedCB): C++ comments => C comments.
3522 (init_gconf): Do not deal with any GLib file descriptors, xg_select
3523 does that now.
3524
3525 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
3526 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
3527 (scroll_bar_button_cb): Remove.
3528 (create_menus): C++ comments => C comments. Don't bind grab-notify
3529 event.
3530 (xg_create_scroll_bar): Don't bind button-press-event and
3531 button-release-event.
3532
3533 * process.c: Include xgselect.h if defined (USE_GTK) ||
3534 defined (HAVE_GCONF).
3535 (wait_reading_process_output): Call xg_select for the same condition.
3536
3537 * xgselect.c (xg_select): New function to better integrate with
3538 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
3539
3540 * xgselect.h: New file, declare xg_select, xgselect_initialize.
3541
3542 * Makefile.in (XOBJ): Add xgselect.o.
3543
3544 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
3545
3546 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
3547 Remove ignored second argument. All callers changed.
3548 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
3549 (RE_STRING_CHAR_AND_LENGTH): Likewise.
3550 * xdisp.c (string_char_and_length): Likewise.
3551
3552 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
3553
3554 * xterm.c (x_new_font):
3555 * print.c (print_object):
3556 * cmds.c (Fself_insert_command): Move declarations before statements.
3557
3558 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
3559
3560 * s/cygwin.h: Remove unneeded linker flags.
3561
3562 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
3563
3564 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
3565
3566 * xsettings.h: Declare xsettings_get_system_font.
3567
3568 * xsettings.c (xsettings_get_system_font): New function.
3569 (init_gconf): No use initiating gconf unless we have Xft also.
3570 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
3571 HAVE_GCONF.
3572
3573 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
3574 add a blank entry so it doesn't collapse into nothing.
3575
3576 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
3577
3578 * lread.c (Funintern): Comment out last change.
3579
3580 2009-11-19 Richard Stallman <rms@gnu.org>
3581
3582 * lread.c (Funintern): Error if symbol is t or nil.
3583
3584 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
3585
3586 * insdel.c (make_gap_larger): Don't make as many assumptions about the
3587 representation of Lisp integers.
3588 Reported by MJ Chan <mjchan.inbox@gmail.com>.
3589
3590 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
3591
3592 * lisp.h: Remove declaration of Ffont_get_system_font.
3593 * xfns.c: Move include of "xsettings.h".
3594 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
3595
3596 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
3597
3598 * xsettings.c (something_changedCB, Ffont_get_system_font):
3599 Check use_system_font.
3600 (syms_of_xsettings): DEFVAR font-use-system-font.
3601
3602 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
3603
3604 * xfns.c (x_default_font_parameter): Remove dead assignment.
3605
3606 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
3607
3608 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
3609
3610 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
3611 not have FC_LCD_*. #define them if not there.
3612
3613 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
3614
3615 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
3616
3617 * xterm.c (handle_one_xevent): Call xft_settings_event for
3618 ClientMessage, PropertyNotify and DestroyNotify.
3619 (x_term_init): If we have XFT, get DPI from Xft.dpi.
3620 Call xsettings_initialize.
3621
3622 * xftfont.c (xftfont_fix_match): New function.
3623 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
3624 Call xftfont_fix_match after XftFontMatch.
3625
3626 * xfont.c (xfont_driver): Initialize all members.
3627
3628 * xfns.c (x_default_font_parameter):
3629 Try font from Ffont_get_system_font.
3630 Do not get font from x_default_parameter if we got one from
3631 Ffont_get_system_font.
3632 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
3633
3634 * w32font.c (w32font_driver): Initialize all members.
3635
3636 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
3637
3638 * lisp.h: Declare syms_of_xsettings.
3639
3640 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
3641 Handle CONFIG_CHANGED_EVENT.
3642
3643 * ftfont.c (ftfont_filter_properties): New function.
3644
3645 * frame.c (x_set_font): Remove unused variable lval.
3646
3647 * font.h (struct font_driver): Add filter_properties.
3648
3649 * font.c (font_put_extra): Don't return if val is nil, it means
3650 boolean option is off.
3651 (font_parse_fcname): Collect all extra properties in extra_props
3652 and call filter_properties for all drivers with extra_props and
3653 font as parameter.
3654 (font_open_entity): Do not use cache, it does not pick up new
3655 fontconfig settings like hinting.
3656 (font_load_for_lface): If spec had a name in it, store it in entity.
3657
3658 * emacs.c (main): Call syms_of_xsettings.
3659
3660 * config.in: HAVE_GCONF is new.
3661
3662 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
3663 xsettings.o is new.
3664
3665 2009-11-17 Kenichi Handa <handa@m17n.org>
3666
3667 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
3668 back to the default font in case that no suitable font is found.
3669
3670 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
3671
3672 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
3673 Suggested by Chad Brown <yandros@mit.edu>.
3674 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
3675
3676 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
3677
3678 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
3679
3680 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
3681
3682 * Makefile.in: Ignore errors from mkdir when creating deps directory.
3683
3684 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
3685
3686 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
3687 has a parent.
3688
3689 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
3690 dependency files in deps/. Include those files into Makefile.
3691
3692 * config.in: Generated (AUTO_DEPEND).
3693
3694 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
3695
3696 * dbusbind.c (Vdbus_registered_objects_table): Rename from
3697 Vdbus_registered_functions_table, because it contains also
3698 properties. Fix docstring.
3699 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
3700
3701 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3702
3703 * alloc.c (mark_object): Don't reprocess marked strings.
3704 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
3705 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
3706
3707 2009-11-13 Kenichi Handa <handa@m17n.org>
3708
3709 * category.c (word_boundary_p): Adjust for the change of the
3710 semantics of Vword_combining_categories.
3711 (Vword_combining_categories): Describe the slight change of the
3712 semantics.
3713
3714 2009-11-13 Eli Zaretskii <eliz@gnu.org>
3715
3716 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
3717
3718 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
3719
3720 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
3721
3722 * xdisp.c (syms_of_xdisp): Fix typo in last change.
3723
3724 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
3725
3726 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
3727
3728 2009-11-11 David Reitter <david.reitter@gmail.com>
3729
3730 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
3731 variables to fix 2009-11-09 change.
3732
3733 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
3734
3735 * process.c (ifflag_def): Make flag_sym constant.
3736 (Fnetwork_interface_info): Use a constant pointer.
3737 (ifflag_table):
3738 * xfns.c (cursor_bits):
3739 * xdisp.c (power_letter):
3740 * termcap.c (speeds, esctab):
3741 * sysdep.c (baud_convert):
3742 * keyboard.c (lispy_accent_codes, modifier_names):
3743 * image.c (xbm_format, xpm_format, pbm_format, png_format)
3744 (jpeg_format, tiff_format, gif_format, svg_format)
3745 (interlace_start, interlace_increment, gs_format):
3746 * gtkutil.c (separator_names):
3747 * fringe.c (swap_nibble):
3748 * fns.c (base64_value_to_char, base64_char_to_value):
3749 * fileio.c (make_temp_name_tbl):
3750 * coding.c (suffixes): Make constant.
3751
3752 * frame.c (make_initial_frame):
3753 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
3754 build_string.
3755 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
3756
3757 * s/freebsd.h:
3758 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
3759
3760 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
3761 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
3762
3763 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
3764 * xterm.c (syms_of_xterm):
3765 * xfaces.c (syms_of_xfaces):
3766 * xdisp.c (syms_of_xdisp):
3767 * lread.c (syms_of_lread):
3768 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
3769 build_string.
3770
3771 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
3772
3773 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3774
3775 * fns.c (Fplist_get): Merge the active and the commented out code.
3776
3777 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
3778
3779 * keyboard.h: Declare timer_check.
3780
3781 * keyboard.c (timer_check_2): New function that does what the old
3782 timer_check did.
3783 (timer_check): Call timer_check_2 until -1 or a non-zero time is
3784 returned, i.e. don't return -1 with timers pending.
3785
3786 * process.c: Remove extern declaration of timer_check.
3787
3788 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
3789 even if timer_check returned -1.
3790
3791 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
3792 xg_dialog_data.
3793 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
3794 the event loop.
3795 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
3796 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
3797 Destroy the dialog after xg_dialog_run.
3798
3799 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3800
3801 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
3802
3803 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
3804
3805 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
3806
3807 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
3808
3809 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
3810
3811 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3812
3813 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
3814 w32menu.c, and nsmenu.m.
3815 Simplify the obsolete case where position is nil.
3816 (cleanup_popup_menu): New function, moved from nsmenu.m.
3817 (struct skp): Remove slot `notreal'.
3818 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
3819 adjust callers.
3820 (single_menu_item): Adjust call to parse_menu_item.
3821 (syms_of_menu): Defsubr x-popup-menu.
3822 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
3823 (keymap_panes): Don't export any more.
3824 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
3825 (xmenu_show): Declare.
3826 * keyboard.c (parse_menu_item): Remove arg `notreal'.
3827 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
3828 * keyboard.h (parse_menu_item): Update declaration.
3829 * xmenu.c (Fx_popup_menu): Remove.
3830 (syms_of_xmenu): Don't defsubr x-popup-menu.
3831 * w32menu.c (Fx_popup_menu): Remove.
3832 (syms_of_w32menu): Don't defsubr x-popup-menu.
3833 * nsmenu.m (cleanup_popup_menu): Remove.
3834 (ns_menu_show): Rename from ns_popup_menu and remove all the code
3835 moved to menu.c's Fx_popup_menu.
3836 (Fx_popup_menu): Remove.
3837 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
3838 menu_items (it's done in menu.c already).
3839
3840 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3841
3842 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
3843 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
3844
3845 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
3846
3847 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
3848 xmenu_show. Hide any tooltip before opening a menu.
3849 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
3850 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
3851
3852 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
3853
3854 Let integers use up 2 tags to give them one extra bit and thus double
3855 their range.
3856 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
3857 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
3858 New macros.
3859 (enum Lisp_Type): Use them. Give explicit values.
3860 (Lisp_Type_Limit): Remove.
3861 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
3862 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
3863 Pay attention to USE_2_TAGS_FOR_INTS.
3864 (INTEGERP): Use LISP_INT_TAG_P.
3865 * fns.c (internal_equal): Simplify the default case.
3866 (sxhash): Use case_Lisp_Int.
3867 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
3868 any more.
3869 (Ftype_of): Use case_Lisp_Int.
3870 (store_symval_forwarding): Take into account the fact that Ints can
3871 now have more than one tag.
3872 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
3873 buffer_slot_type_mismatch):
3874 * xfaces.c (face_attr_equal_p):
3875 * print.c (print_object):
3876 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
3877 Use case_Lisp_Int.
3878
3879 2009-11-06 Eli Zaretskii <eliz@gnu.org>
3880
3881 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
3882
3883 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
3884 warning.
3885
3886 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
3887
3888 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
3889
3890 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
3891
3892 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
3893 ButtonPressRelease and MotionNotify (bug#4870).
3894
3895 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
3896
3897 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
3898
3899 * xterm.c (syms_of_xterm):
3900 * xselect.c (syms_of_xselect):
3901 * xmenu.c (syms_of_xmenu):
3902 * xfns.c (syms_of_xfns):
3903 * xfaces.c (syms_of_xfaces):
3904 * xdisp.c (syms_of_xdisp):
3905 * window.c (syms_of_window):
3906 * w32fns.c (syms_of_w32fns):
3907 * undo.c (syms_of_undo):
3908 * textprop.c (syms_of_textprop):
3909 * terminal.c (syms_of_terminal):
3910 * syntax.c (syms_of_syntax):
3911 * sound.c (syms_of_sound):
3912 * search.c (syms_of_search):
3913 * print.c (syms_of_print):
3914 * minibuf.c (syms_of_minibuf):
3915 * macros.c (syms_of_macros):
3916 * keymap.c (syms_of_keymap, initial_define_key)
3917 (initial_define_lispy_key):
3918 * keyboard.c (syms_of_keyboard):
3919 * insdel.c (syms_of_insdel):
3920 * image.c (syms_of_image):
3921 * fringe.c (syms_of_fringe):
3922 * frame.c (syms_of_frame):
3923 * fontset.c (syms_of_fontset):
3924 * fns.c (syms_of_fns):
3925 * fns.c (syms_of_fns):
3926 * fileio.c (syms_of_fileio):
3927 * fileio.c (syms_of_fileio):
3928 * eval.c (syms_of_eval):
3929 * doc.c (syms_of_doc):
3930 * dispnew.c (syms_of_display):
3931 * dired.c (syms_of_dired):
3932 * dbusbind.c (syms_of_dbusbind):
3933 * data.c (syms_of_data):
3934 * composite.c (syms_of_composite):
3935 * coding.c (syms_of_coding):
3936 * cmds.c (syms_of_cmds):
3937 * charset.c (define_charset_internal, syms_of_character):
3938 * ccl.c (syms_of_ccl):
3939 * category.c (syms_of_category, init_category_once):
3940 * casetab.c (syms_of_casetab):
3941 * casefiddle.c (syms_of_casefiddle):
3942 * callint.c (syms_of_callint):
3943 * bytecode.c (syms_of_bytecode):
3944 * buffer.c (keys_of_buffer, syms_of_buffer):
3945 * alloc.c (syms_of_alloc):
3946 * process.c (syms_of_process, init_process):
3947 * lread.c (syms_of_lread, init_obarray):
3948 * font.c (build_style_table):
3949 * emacs.c (syms_of_emacs, main): Replace calls to intern with
3950 intern_c_string, calls to make_pure_string with
3951 make_pure_c_string. Use pure_cons instead of Fcons.
3952
3953 * process.c (socket_options): Make it const.
3954 (set_socket_option, init_process): Use a const pointer.
3955
3956 * lread.c (intern_c_string): New function.
3957 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
3958 (defvar_int): Uset it. Make the name const char*.
3959
3960 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
3961 (defvar_int): Update prototypes.
3962 (DEFUN, EXFUN): Support for prototypes is now required.
3963 (intern_c_string): New prototype.
3964 (struct Lisp_Subr): Make symbol_name constant.
3965
3966 * font.c (struct table_entry): Remove unused member. Make NAMES
3967 constant.
3968 (weight_table, slant_table, width_table): Make constant.
3969
3970 * emacs.c (struct standard_args): Make name and longname constant.
3971
3972 * character.h (DEFSYM): Use intern_c_string.
3973
3974 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
3975
3976 * alloc.c (make_pure_c_string): New function.
3977
3978 * eval.c (Fautoload): Purecopy all arguments.
3979
3980 2009-11-05 Kenichi Handa <handa@m17n.org>
3981
3982 * fileio.c (Finsert_file_contents): Be sure set coding-system of
3983 the buffer in case of replace.
3984
3985 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
3986
3987 * puresize.h (BASE_PURESIZE): Increase to 1620000.
3988
3989 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
3990
3991 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
3992 when applicable (bug#4851).
3993
3994 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
3995 (P_): Support for prototypes is now required.
3996
3997 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
3998
3999 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
4000 (Bug#4827).
4001
4002 2009-10-30 Eli Zaretskii <eliz@gnu.org>
4003
4004 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
4005
4006 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
4007
4008 * puresize.h (BASE_PURESIZE): Increase to 1470000.
4009
4010 * lread.c (Fload): Purecopy the file name when building
4011 Vpreloaded_file_list.
4012
4013 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
4014
4015 * w32fns.c (syms_of_w32fns): Change default value of
4016 w32-scroll-lock-modifier to nil. (Bug#2827)
4017
4018 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
4019
4020 * minibuf.c (Fall_completions): Fix typos in docstring.
4021
4022 2009-10-26 Andreas Schwab <schwab@redhat.com>
4023
4024 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
4025
4026 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
4027
4028 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
4029 For delta < 0, skip check that only makes sense when the mini-window
4030 is going to be enlarged. (Bug#4534)
4031
4032 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
4033
4034 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
4035 string in menu maps (Bug#4471).
4036
4037 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
4038
4039 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
4040 FRAME_NS_VIEW on terminal frames (Bug#4765).
4041
4042 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
4043
4044 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
4045 DBUS_TYPE_UINTnn separately to get proper sign extension.
4046
4047 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
4048 can properly handle unsigned types.
4049 (make_uid, make_gid): Remove.
4050
4051 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
4052 types again.
4053
4054 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
4055 (system_process_attributes): Likewise.
4056
4057 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
4058
4059 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
4060
4061 * eval.c (Fautoload): Purecopy the filename. Simplify.
4062
4063 * category.c (Fdefine_category): Purecopy docstring.
4064
4065 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
4066
4067 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
4068
4069 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
4070
4071 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
4072
4073 * window.c (Fwindow_edges, Fwindow_pixel_edges)
4074 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
4075 (Bug#4775).
4076
4077 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
4078
4079 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
4080 (init_fileio_once):
4081 * lisp.h (init_fileio_once): Remove.
4082 * emacs.c (main): Don't call init_fileio_once.
4083
4084 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
4085
4086 * puresize.h (BASE_PURESIZE): Increase to 1430000.
4087
4088 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
4089
4090 * doprnt.c (doprnt): Fix overflow check.
4091
4092 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
4093
4094 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
4095
4096 * xterm.h (x_wait_for_event): Declare it.
4097
4098 * xterm.c (pending_event_wait): New variable.
4099 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
4100 see pending_event_wait.eventtype.
4101 (handle_one_xevent): Don't change gravity when parent changes.
4102 (x_new_font): Call change_frame_size with new rows/columns before we
4103 try to resize the frame.
4104 (x_wait_for_event): New function.
4105 (x_set_window_size_1): Don't change gravity unless change_gravity
4106 is set.
4107 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
4108 don't change frame size, instead wait for the ConfigureNotify.
4109 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
4110 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
4111 (x_initialize): Initialize pending_event_wait.
4112
4113 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
4114 size.
4115
4116 * widget.c (EmacsFrameSetValues): Add comment.
4117 (EmacsFrameSetCharSize): Just call x_set_window_size.
4118
4119 * gtkutil.c (xg_frame_set_char_size): Flush events and call
4120 x_wait_for_event.
4121 (flush_and_sync): Remove again.
4122 (xg_get_font_name): Suggest monospace if no previous font is known.
4123
4124 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
4125
4126 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
4127 8th bit, since that only made sense in the ASCII world (bug#4751).
4128
4129 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4130
4131 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
4132 processing pending events when event is filtered for input method.
4133 (Bug#3681)
4134
4135 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
4136
4137 * fns.c: Add #endif accidentally removed in previous change.
4138
4139 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
4140
4141 * fns.c: Remove code for unsupported system: MAC_OS.
4142 * image.c: Likewise. Include setjmp.h.
4143
4144 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
4145
4146 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
4147 pixel -1 (bug #4742).
4148
4149 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
4150
4151 * process.c (create_pty): Remove conditionals for no longer
4152 supported systems: UNIPLUS and RTU.
4153
4154 * xterm.c:
4155 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
4156
4157 * alloc.c: Do not define struct catchtag.
4158 * eval.c: Move struct catchtag definition ...
4159 * lisp.h: ... here.
4160
4161 * image.c: Move png.h #include earlier to avoid warnings.
4162
4163 * xterm.c:
4164 * xsmfns.c:
4165 * xselect.c:
4166 * xrdb.c:
4167 * xmenu.c:
4168 * xftfont.c:
4169 * xfont.c:
4170 * xfns.c:
4171 * xfaces.c:
4172 * xdisp.c:
4173 * window.c:
4174 * widget.c:
4175 * w32xfns.c:
4176 * w32uniscribe.c:
4177 * w32term.c:
4178 * w32select.c:
4179 * w32reg.c:
4180 * w32proc.c:
4181 * w32menu.c:
4182 * w32inevt.c:
4183 * w32heap.c:
4184 * w32font.c:
4185 * w32fns.c:
4186 * w32console.c:
4187 * w32.c:
4188 * w16select.c:
4189 * vm-limit.c:
4190 * unexsol.c:
4191 * unexec.c:
4192 * unexcw.c:
4193 * unexaix.c:
4194 * undo.c:
4195 * tparam.c:
4196 * textprop.c:
4197 * terminfo.c:
4198 * terminal.c:
4199 * termcap.c:
4200 * term.c:
4201 * syntax.c:
4202 * sound.c:
4203 * sheap.c:
4204 * search.c:
4205 * scroll.c:
4206 * region-cache.c:
4207 * regex.c:
4208 * ralloc.c:
4209 * process.c:
4210 * print.c:
4211 * nsterm.m:
4212 * nsselect.m:
4213 * nsmenu.m:
4214 * nsimage.m:
4215 * nsfont.m:
4216 * nsfns.m:
4217 * msdos.c:
4218 * minibuf.c:
4219 * menu.c:
4220 * marker.c:
4221 * macros.c:
4222 * keymap.c:
4223 * keyboard.c:
4224 * intervals.c:
4225 * insdel.c:
4226 * indent.c:
4227 * gtkutil.c:
4228 * ftxfont.c:
4229 * ftfont.c:
4230 * fringe.c:
4231 * frame.c:
4232 * fontset.c:
4233 * font.c:
4234 * fns.c:
4235 * floatfns.c:
4236 * filelock.c:
4237 * fileio.c:
4238 * emacs.c:
4239 * editfns.c:
4240 * dosfns.c:
4241 * doprnt.c:
4242 * doc.c:
4243 * dispnew.c:
4244 * dired.c:
4245 * dbusbind.c:
4246 * data.c:
4247 * composite.c:
4248 * coding.c:
4249 * cmds.c:
4250 * cm.c:
4251 * chartab.c:
4252 * charset.c:
4253 * character.c:
4254 * ccl.c:
4255 * category.c:
4256 * casetab.c:
4257 * casefiddle.c:
4258 * callproc.c:
4259 * callint.c:
4260 * bytecode.c:
4261 * buffer.c:
4262 * atimer.c: Include setjmp.h. (Bug#4643)
4263
4264 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
4265
4266 Remove leftover table unibyte_to_multibyte_table.
4267 * character.c (unibyte_to_multibyte_table): Remove.
4268 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
4269 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
4270 * character.h (UNIBYTE_TO_CHAR): New macro.
4271 (MAKE_CHAR_MULTIBYTE): Use it.
4272 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
4273 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
4274 (message_dolog, set_message_1):
4275 * search.c (Freplace_match):
4276 * editfns.c (Fcompare_buffer_substrings):
4277 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
4278 (concat):
4279 * insdel.c (copy_text, count_size_as_multibyte):
4280 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
4281 * term.c (produce_glyphs):
4282 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
4283 * regex.c (RE_CHAR_TO_MULTIBYTE):
4284 * cmds.c (internal_self_insert):
4285 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
4286
4287 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
4288
4289 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
4290
4291 * puresize.h (BASE_PURESIZE): Increase to 1310000.
4292
4293 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
4294
4295 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
4296
4297 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
4298
4299 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
4300 still needed under Tiger.
4301
4302 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
4303
4304 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
4305 __Apple__.
4306
4307 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
4308
4309 2009-10-15 Kenichi Handa <handa@m17n.org>
4310
4311 * print.c (print_object): Escape a symbol like "2E10" too.
4312
4313 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
4314
4315 Cleanups and changes for 64-bit compile under Snow Leopard.
4316 Based on suggestions by Erik Charlebois.
4317
4318 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
4319
4320 * nsfont.m (ns_char_width): Replace deprecated call.
4321 (ns_findfonts, nsfont_list_family): Use long format in printf, and
4322 cast argument.
4323 (nsfont_open): Use ns_char_width() everywhere.
4324 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
4325
4326 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
4327
4328 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
4329 where appropriate.
4330
4331 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
4332 where appropriate.
4333 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
4334 Use stringWithUTF8String.
4335 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
4336
4337 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
4338 Add formal protocol mention to inheritance.
4339 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
4340
4341 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
4342 Fix printf format.
4343 (ns_query_color): Use CGFloat where appropriate.
4344 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
4345 (EmacsScroller-mouseDown:): Use long format in printf, and cast
4346 argument.
4347
4348 * config.in (NS_HAVE_NSINTEGER): Drop.
4349
4350 * dbusbind.c (dbus-method-return-internal)
4351 (dbus-method-error-internal): Use long format in printf, and cast
4352 argument.
4353
4354 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
4355 in printf, and cast argument.
4356
4357 * process.c (list_processes_1): Use long format in printf, and
4358 cast argument.
4359
4360 2009-10-11 Glenn Morris <rgm@gnu.org>
4361
4362 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
4363
4364 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
4365
4366 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
4367 menu bar with a small width so it doesn't enlarge the frame.
4368
4369 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
4370
4371 * fontset.c (Fset_fontset_font): Fix typos in error messages.
4372
4373 2009-10-06 Glenn Morris <rgm@gnu.org>
4374
4375 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
4376 SOME_MACHINE_LISP (this enters indirectly via DOC).
4377
4378 2009-10-05 Eli Zaretskii <eliz@gnu.org>
4379
4380 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
4381
4382 2009-10-04 Eli Zaretskii <eliz@gnu.org>
4383
4384 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
4385 Doc fix.
4386
4387 2009-10-03 Martin Rudalics <rudalics@gmx.at>
4388
4389 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
4390
4391 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
4392
4393 * lisp.h (Qdelete_directory_internal): Remove, because it is not
4394 used anymore outside fileio.c.
4395
4396 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
4397
4398 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
4399
4400 * lisp.h (Qdelete_directory_internal):
4401 Declare, instead of Qdelete_directory.
4402
4403 * w32fns.c (Fsystem_move_file_to_trash): Use it.
4404
4405 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4406
4407 * eval.c (Fcalled_interactively_p): Add `kind' argument.
4408
4409 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
4410
4411 * fileio.c (Fdelete_directory_internal): Rename from
4412 Fdelete_directory. It is not a command anymore. It has no file
4413 name handler.
4414
4415 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
4416
4417 * xdisp.c (get_next_display_element): Use an enum in last change.
4418
4419 2009-09-28 Kenichi Handa <handa@m17n.org>
4420
4421 * xdisp.c (get_next_display_element): Pay attention to
4422 unibyte_display_via_language_environment in handling
4423 Vnobreak_char_display.
4424
4425 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
4426
4427 * nsterm.h (ns_app_name): New extern variable.
4428
4429 * nsterm.m (ns_app_name): New variable.
4430 (ns_term_init): Set and use it.
4431 (ns_term_shutdown): Use it.
4432
4433 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
4434 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
4435
4436 * nsfns.m (ns_set_name_iconic, ns_set_name)
4437 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
4438 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
4439
4440 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
4441 Remove double-casting in client_data comparison.
4442
4443 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4444
4445 * keyboard.c (make_lispy_event): Remember last wheel direction.
4446 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
4447
4448 2009-09-26 Glenn Morris <rgm@gnu.org>
4449
4450 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
4451 internal.elc. Add term/pc-win.elc.
4452 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
4453 term/x-win.elc.
4454 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
4455 term/w32-win.elc.
4456 (NS_SUPPORT): New.
4457 (lisp): Add NS_SUPPORT.
4458 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
4459
4460 2009-09-25 David Reitter <david.reitter@gmail.com>
4461
4462 * nsmenu.m (EmacsMenu-clear): Recognize application menu
4463 on Mac OS X 10.6+ (bug#4513).
4464
4465 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
4466
4467 * frame.c (xrdb_get_resource): Return nil for empty string resources;
4468 some parts of Emacs code (like font selection) don't grok them.
4469 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
4470
4471 2009-09-24 Andreas Schwab <schwab@redhat.com>
4472
4473 * coding.c (decode_coding_iso_2022): Fix operator precedence.
4474
4475 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
4476
4477 * dired.c (Fdirectory_files): Fix typo in docstring.
4478
4479 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
4480
4481 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
4482 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
4483 (EmacsScroller-setPosition:portion:whole:): Remove -display call
4484 under GNUstep.
4485 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
4486
4487 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
4488 glyph advancement.
4489
4490 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
4491
4492 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
4493 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
4494
4495 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
4496 deleted (bug #4492).
4497
4498 * nsfont.m (Vns_reg_to_script): New lisp variable.
4499 (syms_of_nsfont): Declare it.
4500 (ns_registry_to_script): New function.
4501 (ns_get_req_script): Call it.
4502 (ns_findfonts): Don't give up on non-unicode registry.
4503
4504 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
4505
4506 2009-09-20 Tom Tromey <tromey@redhat.com>
4507
4508 * eval.c (find_handler_clause): Make stack-trace-on-error work in
4509 batch mode (bug#4228).
4510
4511 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
4512
4513 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
4514 carefully. (Bug #4339)
4515
4516 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
4517
4518 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
4519
4520 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
4521
4522 * emacs.c (inhibit_x_resources): Update doc string for NS.
4523 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
4524 legacy code for -NXHost. Fix error printf in daemon case.
4525
4526 * nsterm.h (ns_no_defaults): Remove.
4527
4528 * nsterm.m (ns_no_defaults): Remove.
4529 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
4530 (ns_use_qd_smoothing): Remove legacy variable.
4531 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
4532 don't update the NSWindow itself.
4533 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
4534 state detection and store user rect ourselves. (Bug #3581)
4535
4536 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
4537 ns_use_qd_smoothing.
4538
4539 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
4540 platform versions. Drop support for emacs-20-style face specs.
4541 (x-close-connection): Drop PSFlush() under OS X.
4542 (x-focus-frame): Activate the app first. (Bug #4180)
4543
4544 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
4545
4546 * emacs.c (inhibit_x_resources): New variable.
4547 (main) [HAVE_NS]: Don't process --quick command line option.
4548 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
4549
4550 * lisp.h (inhibit_x_resources): Declare it extern.
4551
4552 * w32reg.c (x_get_string_resource):
4553 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
4554
4555 2009-09-17 Eli Zaretskii <eliz@gnu.org>
4556
4557 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
4558 Add lisp/term/internal.elc.
4559
4560 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4561
4562 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
4563 (bug#4461).
4564
4565 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
4566
4567 * puresize.h (BASE_PURESIZE): Increase to 1290000.
4568
4569 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
4570 (OBJECTS_MACHINE): Remove, unused.
4571
4572 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
4573
4574 * frame.c (x_get_resource_string): Remove unused.
4575
4576 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
4577
4578 * xterm.c (x_new_font): Call change_frame_size before calling
4579 x_set_window_size, in case frame size won't change.
4580
4581 * frame.c (x_set_font): Remove dead code.
4582
4583 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
4584
4585 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
4586
4587 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4588
4589 * lread.c (Fload): Don't output a message after loading an obsolete
4590 package any more (done in Lisp now).
4591
4592 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
4593
4594 * fns.c (syms_of_fns): Doc fix (Bug#4227).
4595
4596 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4597
4598 * keymap.c (Fwhere_is_internal): Use nconc2.
4599
4600 2009-09-11 Alan Mackenzie <acm@muc.de>
4601
4602 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
4603 batch mode.
4604
4605 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
4606
4607 * xdisp.c (display_mode_element): Detect cycles.
4608
4609 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
4610
4611 * keymap.c (where_is_internal): Don't erroneously return nil right after
4612 filling the cache.
4613 (where_is_internal_1): Fix up typo.
4614
4615 2009-09-11 Glenn Morris <rgm@gnu.org>
4616
4617 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
4618 share a common doc-string.
4619
4620 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
4621
4622 * keymap.c (get_keymap): Return the actual keymap symbol rather than
4623 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
4624
4625 * keymap.c (QCadvertised_binding): New constant.
4626 (syms_of_keymap): Initialize it.
4627 (Fwhere_is_internal): Try and use bindings from :advertised-binding
4628 if applicable.
4629
4630 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
4631
4632 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
4633 (parse_menu_item): Streamline since bindings are recomputed all the
4634 time anyway. Don't bother checking Vdefine_key_rebound_commands any
4635 more and don't support lmenu's menu-alias any more either.
4636
4637 * keymap.c (where_is_internal_data): Make noindirect a boolean.
4638 (where_is_internal): Strip it down to only traverse the keymaps.
4639 Move the cache handling from Fwhere_is_internal to here.
4640 (Fwhere_is_internal): Move the handling of remapping and the choice of
4641 the best binding from where_is_internal to here.
4642 Unify the cached/noncached paths, so remapping is also handled
4643 correctly when the cache is used, and so the cache can be used to
4644 speed up remap-handling when applicable.
4645 Give preference to non-remapped bindings.
4646 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
4647 non-remapped bindings.
4648 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
4649 command remapping.
4650
4651 * xdisp.c (display_mode_element): Move list length limit from 50 to
4652 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
4653
4654 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
4655
4656 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
4657
4658 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
4659
4660 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
4661 (Bug#4334)
4662
4663 * keymap.c (where_is_internal): Filter out shadowed remappings.
4664 Assume that where_is_internal returns unshadowed bindings to simplify
4665 the code and get rid of the gotos. Use ASIZE.
4666
4667 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
4668
4669 * xterm.c (x_focus_changed): If we get a focusout and pointer
4670 is invisible, make it visible.
4671
4672 * xterm.h: Remove condition for declaration of
4673 x_*_window_to_frame.
4674
4675 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
4676
4677 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
4678 initial terminal as well.
4679
4680 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
4681
4682 * xterm.h: Rename x_non_menubar_window_to_frame to
4683 x_menubar_window_to_frame.
4684
4685 * xterm.c: Remove declarations also in xterm.h.
4686 (XTmouse_position): Do not return valid positions
4687 for clicks in the menubar and the toolbar for Gtk+.
4688
4689 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
4690 if the widget for the event has the same top level as a frame,
4691 return the frame.
4692 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
4693 internal windows, bug #4122.
4694 (x_non_menubar_window_to_frame): Remove.
4695
4696 2009-09-02 Glenn Morris <rgm@gnu.org>
4697
4698 * buffer.c (default-major-mode): Move most of the doc from here...
4699 (major-mode): ... to here.
4700
4701 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
4702
4703 * process.c (wait_reading_process_output): Keep the descriptor
4704 when pty is used by a non-child process, e.g., in I/O buffer of
4705 GDB this allows inferior to be restarted.
4706
4707 2009-08-29 Eli Zaretskii <eliz@gnu.org>
4708
4709 * xdisp.c (redisplay_internal): Remove redundant test and collapse
4710 both branches into one.
4711
4712 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
4713
4714 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
4715 (main): Use enable-multibyte-characters rather than
4716 default-enable-multibyte-characters. Output a warning message when
4717 running a unibyte session.
4718
4719 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4720
4721 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
4722 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
4723 (copy_data_segment): Also copy __program_vars section.
4724 (copy_dyld_info) [LC_DYLD_INFO]: New function.
4725 (dump_it) [LC_DYLD_INFO]: Use it.
4726
4727 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
4728
4729 2009-08-28 Eli Zaretskii <eliz@gnu.org>
4730
4731 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
4732 $(SRC)/buildobj.h.
4733 (buildobj.h): Renamed from $(SRC)/buildobj.h.
4734 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
4735 $(SRC)/buildobj.h.
4736 (clean): Add buildobj.h.
4737
4738 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
4739
4740 * print.c (print_object): Set escapeflag to 1 when printing
4741 hashtable keys and values.
4742
4743 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
4744
4745 * lread.c (read_integer): Use doubles (and potentially return a float
4746 number) as we do in string-to-number.
4747 (read1): Use strtol to read integers, signal errors on strtol's
4748 overflow and use floats if strtol's output is too large for
4749 Elisp integers.
4750
4751 2009-08-27 Eli Zaretskii <eliz@gnu.org>
4752
4753 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
4754 (make-buildobj-SH): Fix last change.
4755 (SRC): Move to before where it's first used.
4756
4757 2009-08-27 Kenichi Handa <handa@m17n.org>
4758
4759 * process.c (send_process): Use encode_coding_object instead of
4760 encode_coding_string to perform eol-conversion even if the string
4761 is unibyte.
4762
4763 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
4764 character.
4765
4766 * cmds.c (Fself_insert_command): Avoid unnecessay
4767 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
4768
4769 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
4770
4771 * callproc.c (Fcall_process): Remove always true #if.
4772
4773 * lisp.h: Replace #if 0 code for checking with text pointing to
4774 the --enable-checking configure flag.
4775
4776 * emacs.c (main): Mention the --enable-profiling configure flag
4777 instead of using CFLAGS.
4778
4779 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
4780
4781 * Makefile.in (buildobj.h): New target.
4782 (doc.o): Depend on it.
4783 (temacs${EXEEXT}): Don't generate buildobj.lst.
4784 (mostlyclean): Delete buildobj.h, not buildobj.lst.
4785 * makefile.w32-in ($(SRC)/buildobj.h): New target.
4786 ($(BLD)/doc.$(O)): Depend on it.
4787 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
4788 provided by Eli Zaretskii.)
4789 ($(TEMACS)): Don't generate buildobj.lst.
4790 * doc.c: Include buildobj.h.
4791 (buildobj): New static variable.
4792 (Fsnarf_documentation): Use it, instead of opening and reading
4793 buildobj.lst.
4794
4795 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
4796
4797 * dbusbind.c (Fdbus_call_method)
4798 (Fdbus_call_method_asynchronously): Use English numeric format for
4799 timeout values in doc string.
4800
4801 2009-08-25 Kenichi Handa <handa@m17n.org>
4802
4803 * alloc.c (mark_char_table): New function.
4804 (mark_object): Use mark_char_table for a char-table.
4805
4806 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
4807 (CHAR_TABLE_REF): Use it.
4808
4809 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
4810
4811 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
4812 before invoking the newly build emacs to check for load-path
4813 shadowing.
4814
4815 2009-08-22 Glenn Morris <rgm@gnu.org>
4816
4817 * Makefile.in (bootstrap_exe): New variable.
4818 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
4819 Use ${bootstrap_exe}.
4820
4821 2009-08-22 Eli Zaretskii <eliz@gnu.org>
4822
4823 * coding.h (encode_coding_string): Don't encode unibyte strings.
4824 (Bug#4047)
4825
4826 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
4827
4828 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
4829
4830 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
4831 intended as hotfix only.
4832 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
4833
4834 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
4835
4836 * nsterm.m (ns_get_color): Update documentation properly for last
4837 change, and clean up loose ends in the code left by it. Fix
4838 longstanding bug with 16-bit hex parsing, and add support for
4839 yet another X11 format (rgb:r/g/b) for compatibility.
4840 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
4841 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
4842
4843 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
4844
4845 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
4846
4847 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
4848
4849 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
4850 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
4851 (xd_initialize, xd_pending_messages): Check, whether
4852 $DBUS_SESSION_BUS_ADDRESS is set.
4853
4854 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4855
4856 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
4857
4858 * nsterm.m (ns_get_color): Remove incompatible color formats again.
4859
4860 2009-08-20 Glenn Morris <rgm@gnu.org>
4861
4862 * emacs.c (system-type): Doc fix.
4863
4864 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
4865
4866 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
4867 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
4868
4869 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
4870
4871 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
4872 New functions.
4873 (xd_initialize): Revert change from 2009-08-16.
4874
4875 2009-08-18 Kenichi Handa <handa@m17n.org>
4876
4877 * fontset.c (Ffontset_font): If a nil element is found in a
4878 font-group vector, return nil.
4879
4880 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
4881
4882 * process.c (status_notify): Don't perform redisplay.
4883 (Fdelete_process, list_processes_1, process_send_signal):
4884 Expliticly perform redisplay.
4885 (wait_reading_process_output): Always check process status, but
4886 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
4887
4888 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
4889
4890 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
4891 (XFLOAT_INIT): New macro for storing a float value.
4892 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
4893 * fns.c (sxhash): Copy out the value of a float in order to
4894 examine its bytes.
4895 * dbusbind.c (xd_append_arg): Likewise.
4896
4897 * emacs.c (main): Don't call syms_of_data twice.
4898
4899 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
4900
4901 * dbusbind.c (xd_initialize): Add connection file descriptor to
4902 input_wait_mask, in order to let select() detect, whether a new
4903 message has been arrived.
4904 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
4905
4906 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
4907
4908 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
4909 New functions.
4910
4911 * lisp.h (xd_pending_messages): Declare.
4912
4913 * keyboard.c (readable_events): Call xd_pending_messages.
4914
4915 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
4916
4917 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
4918
4919 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
4920
4921 * buffer.c (set_buffer_internal_1)
4922 (swap_out_buffer_local_variables): Check for unbound local
4923 variables (Bug#4138).
4924
4925 2009-08-14 Eli Zaretskii <eliz@gnu.org>
4926
4927 * process.c (create_pty): Fix last change.
4928
4929 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
4930
4931 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
4932 (xbm_load_image): Caller changed.
4933 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
4934
4935 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
4936
4937 * process.c (create_pty): New function.
4938 (Fstart_process): Use it to allow Emacs to just associate a pty
4939 with the buffer. See associated change in gdb-mi.el.
4940 (list_processes_1): Deal with no program name.
4941 (start_process_unwind): Use pid == -2 to mean no process.
4942
4943 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4944
4945 * cmds.c (nonundocount): New global variable.
4946 (keys_of_cmds): Initialize it.
4947 (Fself_insert_command): Use it to combine upto 20 sequential chars
4948 into a single undo entry, just like the Qself_insert_command code in
4949 keyboard.c does.
4950 Call frame_make_pointer_invisible, also like the Qself_insert_command
4951 code in keyboard.c does.
4952 * keyboard.c (command_loop_1): Use the new global nonundocount rather
4953 than its own local replacement for it.
4954
4955 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
4956
4957 * fns.c (concat): Don't re-set string length to its current value.
4958
4959 * coding.h (decode_coding_string, encode_coding_string):
4960 Use SBYTES macro.
4961
4962 * doprnt.c (doprnt_lisp): Delete unused function.
4963 (doprnt): Merge with doprnt1, discarding lispstrings code.
4964 * lisp.h (doprnt_lisp): Don't declare.
4965
4966 2009-08-07 Juri Linkov <juri@jurta.org>
4967
4968 * puresize.h (BASE_PURESIZE): Increase to 1270000.
4969
4970 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
4971
4972 * print.c (syms_of_print): Undo previous change.
4973
4974 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
4975
4976 * lread.c (read1, syms_of_lread): Read hashtables back from the
4977 readable format.
4978
4979 * print.c (print_preprocess, print_object): Print hashtables fully
4980 and readably.
4981 (syms_of_print): Provide 'hashtable-print-readable.
4982
4983 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
4984
4985 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
4986 no family set.
4987 (nsfont_open): Handle case when entity has no family.
4988
4989 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
4990
4991 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
4992 element, not a list, for match case.
4993
4994 2009-07-28 Kenichi Handa <handa@m17n.org>
4995
4996 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
4997 rigidly.
4998
4999 * xfont.c (xfont_list_pattern): Don't ignore the return value of
5000 font_parse_xlfd. Check font properties more rigidly.
5001
5002 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
5003
5004 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
5005 bsd-common.h.
5006
5007 2009-07-27 Kenichi Handa <handa@m17n.org>
5008
5009 * xfaces.c (face_with_height): Call font_clear_prop.
5010
5011 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
5012
5013 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
5014
5015 * xterm.c (x_term_init): Use Qx.
5016
5017 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
5018
5019 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
5020 (ns_get_color): Revert 2009-07-16 change.
5021
5022 2009-07-25 Eli Zaretskii <eliz@gnu.org>
5023
5024 * lread.c (syms_of_lread) <force_load_messages>: New variable.
5025 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
5026
5027 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
5028
5029 * coding.h (decode_coding_string, encode_coding_string):
5030 Use SCHARS macro.
5031
5032 * lread.c: Rewrite 2009-07-21 changes.
5033 (load_depth): Delete.
5034 (Qload_in_progress): New variable.
5035 (load_unwind): Don't reference load_depth or load_in_progress.
5036 (Fload): Likewise; specbind Qload_in_progress instead.
5037 (init_lread): Don't initialize load_depth.
5038 (syms_of_lread): Initialize and protect Qload_in_progress.
5039
5040 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
5041
5042 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
5043
5044 2009-07-23 Yavor Doganov <yavor@gnu.org>
5045
5046 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
5047
5048 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
5049
5050 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
5051 Bugs 3792, 3720, 2402.
5052 (ns_lookup_indexed_color): Check for bad index.
5053 (ns_index_color): Init unused slot to 0.
5054 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
5055 Bug 3714, possibly 3082.
5056
5057 2009-07-22 Jason Rumney <jasonr@gnu.org>
5058
5059 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
5060 Position IME window at cursor (Bug#2570).
5061 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
5062 (globals_of_w32fns): Dynamically load functions required above.
5063
5064 * w32term.c (w32_draw_window_cursor): Send message to reposition
5065 any IME window.
5066
5067 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
5068
5069 * fileio.c: Revert 2009-07-16 changes.
5070 (Vauto_save_include_big_deletions): New variable.
5071 (Fdo_auto_save): Disable auto-save only if
5072 auto-save-include-big-deletions is nil.
5073
5074 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
5075
5076 * xdisp.c (move_it_to): For continued lines ending in a tab, take
5077 the overflowed pixels into account (Bug#3879).
5078
5079 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
5080
5081 * lread.c (load_depth): New variable.
5082 (Fload, load_unwind, init_lread): Set it to the load recursion
5083 depth; set load_in_progress as a simple boolean based on the
5084 current load_depth. (Bug#3892)
5085
5086 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
5087
5088 * nsfont.m (ns_has_attribute): Remove.
5089 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
5090
5091 2009-07-18 Juri Linkov <juri@jurta.org>
5092
5093 * process.c (Fset_process_query_on_exit_flag): Mention killing
5094 a buffer in docstring.
5095
5096 2009-07-17 Kenichi Handa <handa@m17n.org>
5097
5098 * casetab.c (shuffle): Fix the logic of setting up the cycle.
5099
5100 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5101
5102 * nsfns.m (Fns_set_alpha): Remove function.
5103 (syms_of_nsfns): Don't defsubr it.
5104
5105 * nsterm.m (ns_get_color): Remove incompatible color formats.
5106 (ns_color_to_lisp): Generate #rrggbb color format string.
5107
5108 2009-07-16 Richard Stallman <rms@gnu.org>
5109
5110 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
5111 (Fset_buffer_auto_saved): Handle save_length = -2.
5112
5113 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
5114
5115 * xterm.c (Qx_gtk_map_stock): New var.
5116
5117 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
5118 of calling intern each time.
5119
5120 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5121
5122 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
5123 does tiling.
5124
5125 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
5126
5127 2009-07-14 Kenichi Handa <handa@m17n.org>
5128
5129 * font.c (font_vconcat_entity_vectors): New function.
5130 (struct font_sort_data): New member font_driver_preference.
5131 (font_compare): Check font_driver_preference.
5132 (font_sort_entities): The format of the first argument changed.
5133 (font_delete_unmatched): Likewise.
5134 (font_list_entities): The return type changed.
5135 (font_select_entity): The format of the second argument changed.
5136 (font_find_for_lface): Adjuste for the above changes.
5137 Don't suppress the checking of C even if the repertory supports it.
5138 (Flist_fonts): Adjust for the above changes.
5139
5140 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
5141 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
5142 Reject a font who has adstyle property that is different from a
5143 langname derived from registry property.
5144 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
5145
5146 2009-07-13 Eli Zaretskii <eliz@gnu.org>
5147
5148 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
5149 local copy of dirfilename.
5150
5151 2009-07-13 Kenichi Handa <handa@m17n.org>
5152
5153 * chartab.c (sub_char_table_ref_and_range): Fix the range check
5154 against max_char.
5155
5156 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
5157 calling XSYMBOL (sym).
5158
5159 2009-07-11 Eli Zaretskii <eliz@gnu.org>
5160
5161 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
5162 New function.
5163 (directory_files_internal) [WINDOWSNT]:
5164 Bind w32-get-true-file-attributes to either t or nil, depending whether
5165 the filesystem of the directory is fast or slow.
5166
5167 * w32.c (logon_network_drive): Don't assume PATH is an absolute
5168 file name.
5169 (is_slow_fs): New function.
5170 (stat): Use it to determine whether to issue more system calls to
5171 get accurate file attributes, when w32-get-true-file-attributes is
5172 `local'.
5173
5174 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
5175
5176 * xfns.c (Fx_select_font): Remember last font selected in
5177 x_last_font_name and use that the next time. Also try the frame
5178 parameter font-parameter as default to the font dialog.
5179
5180 2009-07-10 Kenichi Handa <handa@m17n.org>
5181
5182 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
5183
5184 2009-07-09 Eli Zaretskii <eliz@gnu.org>
5185
5186 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
5187
5188 * w32.c (stat): Treat UNC file names as residing on remote
5189 drives. (Bug#3542)
5190
5191 2009-07-09 Kenichi Handa <handa@m17n.org>
5192
5193 * fontset.c (fontset_find_font): Fix previous change.
5194
5195 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
5196
5197 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
5198 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
5199 error flag.
5200
5201 2009-07-08 Kenichi Handa <handa@m17n.org>
5202
5203 * fontset.c (fontset_find_font): Fix the logic of handling
5204 charset_matched.
5205 (font_for_char): Delete unused var.
5206 (generate_ascii_font_name): Delete it.
5207
5208 * coding.h (JIS_TO_SJIS2): Fix the code range check.
5209
5210 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
5211 (encode_coding_sjis): Fix the code range check.
5212
5213 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
5214
5215 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
5216 (Fexpand_file_name): Copy string data properly (Bug#3772).
5217
5218 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
5219
5220 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
5221 first MapNotify.
5222
5223 2009-07-07 Kenichi Handa <handa@m17n.org>
5224
5225 * character.h (unibyte_has_multibyte_table): Delete extern.
5226 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
5227
5228 * charset.c (Fset_charset_priority): Update charset_unibyte.
5229 (syms_of_charset): Initialize charset_unibyte.
5230
5231 * character.c (unibyte_has_multibyte_table): Delete it.
5232 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
5233 charset_unibyte.
5234 (multibyte_char_to_unibyte_safe): Likewise.
5235 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
5236
5237 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
5238 (x_produce_glyphs): Likewise.
5239
5240 * .gdbinit (xcharset): Fix the treating $arg0.
5241
5242 2009-07-04 Eli Zaretskii <eliz@gnu.org>
5243
5244 Emulation of `getloadavg' on MS-Windows.
5245 * w32.c: Include float.h.
5246 (g_b_init_get_native_system_info, g_b_init_get_system_times)
5247 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
5248 (get_native_system_info, get_system_times): New functions.
5249 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
5250 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
5251 (globals_of_w32): Initialize g_b_init_get_native_system_info,
5252 g_b_init_get_system_times, and num_of_processors.
5253
5254 2009-07-03 Jason Rumney <jasonr@gnu.org>
5255
5256 * w32term.c (w32_initialize): Use standard types.
5257
5258 2009-07-03 Eli Zaretskii <eliz@gnu.org>
5259
5260 * dired.c (Ffile_attributes): Decode user and group names by the
5261 locale's encoding. (Bug#3443)
5262
5263 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
5264
5265 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
5266 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
5267
5268 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
5269
5270 * term.c (init_tty): Remove spurious #ifdef.
5271
5272 * m/mips.h: Mention this file is also used for netbsd.
5273 * m/pmax.h: Remove file.
5274
5275 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
5276
5277 * xterm.h (struct x_display_info): Add invisible_cursor.
5278 (struct x_output): Add current_cursor.
5279
5280 * xterm.c (XTtoggle_invisible_pointer): New function.
5281 (x_define_frame_cursor): Don't define cursor if invisible or the
5282 same as before. Set current_cursor.
5283 (x_create_terminal): Set toggle_invisible_pointer_hook.
5284
5285 * xfns.c (make_invisible_cursor): New function.
5286 (x_set_mouse_color): Call make_invisible_cursor.
5287 Set current_cursor.
5288 (x_window): Set current_cursor.
5289
5290 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
5291
5292 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
5293 inserting a character.
5294 (read_avail_input): Call frame_make_pointer_visible.
5295
5296 * frame.c (Vmake_pointer_invisible): New variable.
5297 (frame_make_pointer_invisible, frame_make_pointer_visible):
5298 New functions.
5299 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
5300
5301 * frame.h: Declare frame_make_pointer_invisible and
5302 frame_make_pointer_visible.
5303 (struct frame): Add pointer_invisible.
5304
5305 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
5306
5307 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
5308 frame isn't visible.
5309 (xg_frame_resized): If width/height is -1, get size of window
5310 from X server.
5311
5312 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
5313 for MapNotify.
5314
5315 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
5316 here or call change_frame_size. Just call flush_and_sync.
5317 (flush_and_sync): Reintroduce.
5318
5319 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
5320
5321 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
5322
5323 * xterm.c (x_handle_net_wm_state): Also look for sticky.
5324 (x_term_init): Initialize Xatom_net_wm_state_sticky.
5325
5326 * frame.h: Declare Qsticky.
5327
5328 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
5329
5330 * nsfns.m (ns_frame_parm_handlers): Ditto.
5331
5332 * frame.c: Declare Qsticky.
5333 (frame_parms): Add sticky.
5334
5335 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
5336
5337 * xterm.h: Declare x_set_sticky.
5338
5339 * xterm.c (x_set_sticky): New function.
5340
5341 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
5342 (xg_tool_bar_menu_proxy): Attach enter/leave events to
5343 xg_tool_bar_proxy_help_callback.
5344
5345 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
5346
5347 * frame.c: Qmaximized is new.
5348 (x_set_frame_parameters): Do not handle fullscreen specially.
5349 Only set width and height if explicitly set.
5350 (x_set_fullscreen): Handle Qmaximized.
5351 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
5352 (syms_of_frame): Initialize Qmaximized.
5353
5354 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
5355 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
5356
5357 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
5358 for Expose event. Add call to x_check_fullscreen for MapNotify event.
5359 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
5360 set gravity to NorthWestGravity when USE_GTK.
5361 (set_wm_state): New function.
5362 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
5363 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
5364 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
5365 or the case when no window manager is running. That means remove calls
5366 to x_real_positions and x_fullscreen_adjust.
5367
5368 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
5369 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
5370 flush_and_sync.
5371 (xg_height_changed): New function.
5372 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
5373 and gtk_window_set_policy. Set frame gravity after parsing the
5374 geometry string.
5375 (xg_update_frame_menubar, free_frame_menubar)
5376 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
5377 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
5378 Remove calls to xg_frame_set_char_size.
5379
5380 2009-07-01 Kenichi Handa <handa@m17n.org>
5381
5382 * keyboard.c (decode_keyboard_code): New function.
5383 (tty_read_avail_input): Decode the input bytes if necessary.
5384
5385 * coding.c (setup_coding_system):
5386 Initialize coding->carryover_bytes to 0.
5387 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
5388 use Qno_conversion.
5389
5390 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5391
5392 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
5393
5394 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
5395
5396 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
5397
5398 2009-06-30 Jason Rumney <jasonr@gnu.org>
5399
5400 * w32term.c (w32_initialize): Use GetModuleHandle for library that
5401 is already loaded.
5402 Set user model ID if supported (bug#1849).
5403
5404 2009-06-29 Jim Meyering <meyering@redhat.com>
5405
5406 Remove useless if-before-xfree test.
5407 * nsfont.m (nsfont_close): Remove useless test.
5408 * term.c (delete_tty): Likewise.
5409 * w32.c (system_process_attributes): Likewise.
5410 * w32font.c (w32font_close): Likewise.
5411 * xfaces.c (x_free_gc): Likewise.
5412 * xselect.c (buffer): Likewise.
5413
5414 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
5415
5416 * process.c (send_process): Keep decoded string in a local
5417 variable and protect it from GC. (Bug#3521)
5418
5419 2009-06-28 Eli Zaretskii <eliz@gnu.org>
5420
5421 * term.c (create_tty_output) [MSDOS]: #ifdef away.
5422 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
5423
5424 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
5425
5426 * xdisp.c (start_display, handle_face_prop)
5427 (move_it_vertically_backward, cursor_row_fully_visible_p)
5428 (redisplay_window, try_window_id, produce_image_glyph):
5429 Delete some #ifdef-ed out code chunks that are now obsolete.
5430
5431 * xterm.c (x_update_window_begin, x_new_focus_frame)
5432 (x_scroll_bar_handle_click, handle_one_xevent)
5433 (handle_one_xevent, XTread_socket, x_focus_on_frame)
5434 (x_make_frame_visible, x_make_frame_invisible)
5435 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
5436 code chunks that are now obsolete.
5437
5438 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
5439
5440 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
5441 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
5442 for hours, when optimzation is enabled.
5443 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
5444 (xd_read_message): Make them static.
5445
5446 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
5447
5448 * term.c (turn_on_face): Allow simultaneously bold and dim
5449 terminal faces (Bug#3530).
5450
5451 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
5452
5453 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
5454
5455 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
5456 truncation glyphs (Bug#3686).
5457
5458 2009-06-27 Glenn Morris <rgm@gnu.org>
5459
5460 * m/pmax.h: Restore file, with only netbsd portions.
5461
5462 2009-06-26 David Reitter <david.reitter@gmail.com>
5463
5464 * nsterm.m (keydown): Avoid infinite loop.
5465
5466 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
5467
5468 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
5469 the arg FORCE_SYMBOL.
5470
5471 2009-06-25 Kenichi Handa <handa@m17n.org>
5472
5473 * fontset.c (fontset_find_font): When a usable rfont_def is found
5474 in a fallback font-group, make it the first element of the group.
5475
5476 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
5477
5478 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
5479
5480 2009-06-24 Kenichi Handa <handa@m17n.org>
5481
5482 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
5483 set for C.
5484 (fontset_font): Record the availability of a font for C both in
5485 the realized fontsets of the current one and the default one.
5486
5487 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
5488
5489 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
5490 conditional, it is always defined on AIX.
5491
5492 2009-06-23 Miles Bader <miles@gnu.org>
5493
5494 * window.c (Vrecenter_redisplay): New variable.
5495 (syms_of_window): Initialize it.
5496 (Qtty): New extern declaration.
5497 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
5498
5499 2009-06-23 Jim Meyering <meyering@redhat.com>
5500
5501 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
5502 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
5503 pointer dereferences are guaranteed to be valid.
5504
5505 2009-06-23 Kenichi Handa <handa@m17n.org>
5506
5507 * emacs.c (main): Call init_font ().
5508
5509 * font.h (Vfont_log): Extern it.
5510 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
5511
5512 * font.c (font_sort_entities, font_list_entities)
5513 (font_matching_entity, font_open_entity)
5514 (font_close_object): Change font_add_log to FONT_ADD_LOG.
5515 (Vfont_log): Delete static.
5516 (font_log_env_checked): Delete this variable.
5517 (font_add_log): Don't check font_log_env_checked.
5518 (font_deferred_log): Check Vfont_log.
5519 (init_font): New function.
5520
5521 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
5522
5523 * w32font.c: Change font_add_log to FONT_ADD_LOG.
5524
5525 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
5526
5527 * xfont.c: Change font_add_log to FONT_ADD_LOG.
5528
5529 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
5530 (face_for_char): Don't call font_deferred_log here.
5531 (font_for_char): Likewise.
5532
5533 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
5534
5535 * w32term.c (x_draw_glyph_string): Use the glyph string's width
5536 rather than its background_width for drawing the overline and
5537 underline (Bug#489).
5538
5539 * xterm.c (x_draw_glyph_string): Use the glyph string's width
5540 rather than its background_width for drawing the overline and
5541 underline (Bug#489).
5542 (xg_default_icon_file): New variable.
5543 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
5544 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
5545
5546 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
5547 (load_overlay_strings): Remove externs.
5548 (fast_find_position): Function deleted.
5549 (mouse_face_from_buffer_pos): New function, based on
5550 fast_find_position. Correctly handle before-strings,
5551 display-strings, and after-strings (Bug#1220).
5552 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
5553
5554 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
5555
5556 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
5557 (move_it_in_display_line_to, move_it_in_display_line_to)
5558 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
5559
5560 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
5561
5562 * Branch for 23.1.
5563
5564 2009-06-21 Jason Rumney <jasonr@gnu.org>
5565
5566 * w32term.c (keyboard_codepage): New static variable.
5567 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
5568 (w32_read_socket) [WM_CHAR]: Use it to decode character
5569 input (bug#3237).
5570 (w32_initialize): Initialize it.
5571 (codepage_for_locale): New function.
5572
5573 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
5574
5575 * process.c (status_message): Pass Faset index argument as a lisp
5576 object, so as to work with USE_LISP_UNION_TYPE.
5577
5578 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5579
5580 * coding.c (Ffind_coding_systems_region_internal):
5581 Cache checked characters.
5582
5583 2009-06-18 Kenichi Handa <handa@m17n.org>
5584
5585 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
5586
5587 2009-06-18 Andreas Schwab <aschwab@redhat.com>
5588
5589 * xdisp.c (redisplay_internal): Check that the frame is still
5590 live after redisplay of its windows.
5591 (redisplay_windows): Check that the window is still live.
5592
5593 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
5594
5595 * coding.c (detect_coding_utf_16): Fix previous change.
5596
5597 2009-06-16 Kenichi Handa <handa@m17n.org>
5598
5599 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
5600 UTF-16 by checking the dispersion of Eth and Oth bytes.
5601
5602 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
5603
5604 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
5605
5606 2009-06-15 Kenichi Handa <handa@m17n.org>
5607
5608 * process.c (status_message): Fix previous change. Be sure to
5609 decode a localized string.
5610
5611 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5612
5613 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
5614 add comment explaining why.
5615
5616 2009-06-14 Sidney Markowitz <sidney@sidney.com>
5617
5618 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
5619
5620 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
5621
5622 * nsfont.m (ns_attribute_value): Remove.
5623 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
5624 (ns_has_attribute): Shrink the normal range.
5625 (ns_findfonts): Don't worry about requested spec in determining
5626 need for synthItal.
5627 (ns_get_covering_families): Retain scriptToFamilies.
5628
5629 2009-06-14 Seiji Zenitani <zenitani@mac.com>
5630
5631 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
5632
5633 2009-06-11 Kenichi Handa <handa@m17n.org>
5634
5635 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
5636 overhang for the static composition case.
5637
5638 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5639
5640 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
5641 overhang for the automatic composition case.
5642
5643 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
5644 composition case.
5645
5646 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
5647
5648 * xdisp.c (get_next_display_element): When handling wrap-prefix
5649 and line-prefix, treat \n as a control character (bug#3502).
5650
5651 2009-06-10 Kenichi Handa <handa@m17n.org>
5652
5653 * font.c (font_parse_family_registry): Fix for one-char foundry.
5654 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
5655
5656 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
5657
5658 * process.c (status_message): Fix handling of multibyte signal
5659 string (Bug#3499).
5660
5661 2009-06-09 Jim Meyering <meyering@redhat.com>
5662
5663 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
5664 color name is missing.
5665
5666 2009-06-09 Kenichi Handa <handa@m17n.org>
5667
5668 * charset.c (Fmap_charset_chars): In docstring, state clearly that
5669 FROM-CODE and TO-CODE are codepoints of CHARSET.
5670
5671 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
5672
5673 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
5674
5675 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
5676
5677 Changes to support :script/:lang/:otf in NS font driver.
5678 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
5679 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
5680 indicate not part of font driver interface, and change callers.
5681 (ns_get_family): Remove pointless null check.
5682 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
5683 ns_spec_to_descriptor, ns_descriptor_to_entity.
5684 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
5685 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
5686 (ns_spec_to_descriptor, ns_descriptor_to_entity)
5687 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
5688 (ns_get_req_script, ns_accumulate_script_ranges)
5689 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
5690 New functions.
5691 (nsfont_list, nsfont_match): Use ns_findfonts.
5692 (nsfont_open): Use font descriptor instead of traits.
5693 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
5694 (dump_glyphstring): Rename to ns_dump_glyphstring.
5695
5696 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
5697
5698 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
5699
5700 * fontset.c (fontset_from_font): Remove NS-specific code.
5701
5702 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
5703
5704 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
5705 nonactive windows.
5706
5707 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
5708
5709 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
5710
5711 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
5712
5713 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
5714
5715 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
5716
5717 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
5718 account for the overflowing of newlines into the last glyph on the
5719 display line (Bug#3482).
5720
5721 2009-06-05 David Reitter <david.reitter@gmail.com>
5722
5723 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
5724 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
5725 Fns_selection_exists_p, Fns_selection_owner_p.
5726
5727 2009-06-03 Jason Rumney <jasonr@gnu.org>
5728
5729 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
5730 available. (Bug#3379)
5731
5732 2009-05-29 Kenichi Handa <handa@m17n.org>
5733
5734 * coding.c (get_translation_table):
5735 Check Venable_character_translation.
5736
5737 2009-05-26 David Reitter <david.reitter@gmail.com>
5738
5739 * nsterm.m (ns_raise_frame): Only raise frame if visible.
5740 (x_make_frame_visible): Move frame to front rather than calling
5741 ns_raise_frame().
5742 (keyDown:): Do not swallow events that aren't re-sent if frame
5743 isn't key window.
5744 (drawRect:): Do not set visibility/iconified flags because
5745 drawRect may be called by NSView even if the frame is hidden.
5746
5747 * nsfns.m (Fx_create_frame): Follow other ports in
5748 determining visibility; default to t. Ensure async_visible is set.
5749
5750 2009-05-23 Eli Zaretskii <eliz@gnu.org>
5751
5752 * dired.c (Ffile_attributes): Doc fix.
5753
5754 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
5755
5756 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
5757
5758 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
5759
5760 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
5761 and xfont_scratch_props.
5762 (syms_of_xfont): Do it here instead.
5763 (xfont_find_ccl_program): Delete, unused.
5764 (xfont_open): Delete unused var `i'.
5765
5766 2009-05-21 Kenichi Handa <handa@m17n.org>
5767
5768 * fontset.c (Qlatin): Don't make it static.
5769
5770 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
5771 New functions.
5772 (xfont_scripts_cache, xfont_scratch_props): New variables.
5773 (Qlatin, Vscalable_fonts_allowed): Extern it.
5774 (xfont_list_pattern): Argument changed. Callers changed.
5775 Check Vscalable_fonts_allowed. Check the support of a script.
5776 (xfont_list): Don't reject a font spec with :script property.
5777 (xfont_has_char): Fix setting of encoding.
5778 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
5779 xfont_scratch_props.
5780
5781 2009-05-19 Kenichi Handa <handa@m17n.org>
5782
5783 * font.c (font_sort_entities): Rename from font_sort_entites.
5784 Callers changed.
5785
5786 2009-05-18 Kenichi Handa <handa@m17n.org>
5787
5788 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
5789
5790 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
5791
5792 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
5793 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
5794
5795 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5796
5797 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
5798 (x_delete_terminal): Dissociate resource database from display and
5799 then call XrmDestroyDatabase before closing display.
5800
5801 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
5802
5803 * nsterm.m (ns_read_socket): Remove unused variable.
5804 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
5805 whether selected frame is viable before raising it (based on patch
5806 by David Reitter), and improve commentary.
5807 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
5808
5809 2009-05-15 Kenichi Handa <handa@m17n.org>
5810
5811 * font.c (Ffont_spec): Check arguments.
5812
5813 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
5814
5815 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
5816 weight when testing attributes (Bug#3282).
5817
5818 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5819
5820 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
5821 what we expect to get in the next ConfigureNotify event.
5822
5823 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
5824 before Xft one (Bug#1696).
5825
5826 2009-05-07 David Reitter <david.reitter@gmail.com>
5827
5828 * nsfns.m (Fx_display_planes): Compute bitplanes using
5829 NSBitsPerPixelFromDepth (Bug#3207).
5830
5831 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
5832
5833 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
5834
5835 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
5836
5837 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
5838
5839 2009-05-07 David Reitter <david.reitter@gmail.com>
5840
5841 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
5842 Respect mouse face background.
5843
5844 2009-05-07 David Reitter <david.reitter@gmail.com>
5845
5846 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
5847 Mouse movement/highlight: bracket drawing operations
5848 in ns_update_begin and ns_update_end.
5849
5850 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5851
5852 * nsfns.m (ns_get_screen): Rewrite.
5853 Don't presume selected-frame is of type `ns'.
5854
5855 * font.c (font_update_drivers): Sanity fallback to avoid disabling
5856 all drivers.
5857
5858 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
5859
5860 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5861
5862 * keyboard.h (add_user_signal): Fix typo in extern.
5863
5864 * lisp.h (add_user_signal): Remove extern.
5865
5866 * unexelf.c (unexec): Consider a section to precede the .bss section
5867 if its addresses overlap that of .bss.
5868 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
5869 instead of dumping process.
5870
5871 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5872
5873 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
5874
5875 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
5876
5877 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
5878
5879 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
5880
5881 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
5882 any statements.
5883
5884 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
5885
5886 * process.c (read_process_output): Make sure the current buffer is
5887 always restored.
5888
5889 * coding.c (record_conversion_result): Don't modify
5890 Vlast_code_conversion_error for successful result.
5891 (alloc_destination): Don't clobber conversion result. (Bug#1650)
5892
5893 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5894
5895 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
5896 (load_charset_map): Remove unnecessary code.
5897
5898 2009-04-30 David Reitter <david.reitter@gmail.com>
5899
5900 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
5901 through f24.
5902
5903 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
5904
5905 * xfaces.c (face_at_buffer_position): New arg base_face_id.
5906
5907 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
5908 face_at_buffer_position.
5909 (face_before_or_after_it_pos, get_next_display_element)
5910 (note_mouse_highlight): Update face_at_buffer_position call.
5911
5912 * term.c (term_mouse_highlight):
5913 * msdos.c (IT_note_mouse_highlight):
5914 * fontset.c (Finternal_char_font):
5915 * font.c (font_at, font_range): Update face_at_buffer_position call.
5916
5917 * dispextern.h (face_at_buffer_position): Update prototype.
5918
5919 2009-04-30 Kenichi Handa <handa@m17n.org>
5920
5921 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
5922
5923 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
5924
5925 * callproc.c (Fcall_process): Fix GC protection. Make sure
5926 current buffer is always restored.
5927
5928 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5929
5930 * atimer.c (init_atimer): Also clear stopped_atimers.
5931
5932 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
5933
5934 * process.c (create_process): Clean up merger residues of
5935 2008-07-17 change.
5936
5937 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
5938
5939 * lread.c (Vread_circle): New variable.
5940 (read1): Disable recursive read if Vread_circle is nil.
5941
5942 2009-04-29 Kenichi Handa <handa@m17n.org>
5943
5944 * fontset.h (set_default_ascii_font): Delete extern.
5945
5946 * fontset.c (set_default_ascii_font): Delete this unused function.
5947
5948 * frame.c (x_set_font): When ARG is a font-object, check if the
5949 font-object matches with the ASCII font-spec of the frame's
5950 fontset. If not, create a new fontset for the frame. (Bug #3075)
5951
5952 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
5953
5954 * fns.c (Flocale_info): Protect vector from GC during decoding.
5955
5956 * process.c (Fstart_process): Protect argv strings from GC during
5957 encoding.
5958
5959 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
5960
5961 * sysdep.c: Include <ctype.h>.
5962
5963 2009-04-27 David Reitter <david.reitter@gmail.com>
5964
5965 * nsfont.m (nsfont_open): Remove unused variable shrink.
5966 Remove commented-out code.
5967
5968 2009-04-26 Johan Bockgård <bojohan@gnu.org>
5969
5970 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
5971
5972 2009-04-25 Jason Rumney <jasonr@gnu.org>
5973
5974 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
5975
5976 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5977
5978 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
5979 Swap bytes in short integer if fringe bitmap width > 8.
5980
5981 2009-04-23 Kenichi Handa <handa@m17n.org>
5982
5983 * xfaces.c (Fx_list_fonts): If a font size is specified in
5984 PATTERN, set it in returned scalable fonts.
5985
5986 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
5987
5988 * keyboard.c (Fset_input_meta_mode): Doc fix.
5989
5990 * dispnew.c (Fsend_string_to_terminal): Doc fix.
5991
5992 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
5993
5994 * coding.c (Fterminal_coding_system): Doc fix.
5995
5996 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
5997 (Fx_display_pixel_height, Fx_display_planes)
5998 (Fx_display_color_cells, Fx_server_max_request_size)
5999 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
6000 (Fx_display_mm_height, Fx_display_mm_width)
6001 (Fx_display_backing_store, Fx_display_visual_class)
6002 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
6003 Doc fixes, replacing "terminal id" with "terminal object".
6004 (check_x_display_info): Handle terminal objects instead of
6005 terminal ids.
6006
6007 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
6008 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
6009 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
6010 Doc fixes, replacing "terminal id" with "terminal object".
6011
6012 2009-04-21 Kenichi Handa <handa@m17n.org>
6013
6014 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
6015 (font_score): Check AVGWIDTH too.
6016
6017 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
6018 worst case.
6019 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
6020 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
6021
6022 2009-04-19 Jason Rumney <jasonr@gnu.org>
6023
6024 The following changes fix Bug#3005 for wide glyphs on each platform,
6025 without reintroducing Bug#1258 for stretch glyphs.
6026
6027 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
6028 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
6029 get_phys_cursor_geometry.
6030
6031 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
6032 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
6033 using get_phys_cursor_geometry.
6034
6035 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
6036 correctly calculated.
6037
6038 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
6039
6040 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
6041 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
6042 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
6043 is deprecated.
6044
6045 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
6046
6047 * font.c (font_put_frame_data): Use xfree instead of free.
6048
6049 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
6050
6051 * w32font.c (Qja, Qko): Remove declarations.
6052 (syms_of_w32font): Don't DEFSYM them.
6053
6054 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
6055
6056 * font.c (Qja, Qko): Move definitions here from ftfont.c.
6057
6058 * font.h (Qja, Qko): Extern them.
6059
6060 * ftfont.c (Qja, Qko): Remove declarations.
6061
6062 * xfont.c (Qja, Qko): Remove declarations.
6063
6064 2009-04-17 Kenichi Handa <handa@m17n.org>
6065
6066 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
6067 string from a vector to handle Latin-1 characters correctly.
6068
6069 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
6070 entity even if the cache hits.
6071
6072 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
6073
6074 * search.c (boyer_moore): Use zero as marker value for a possible
6075 match instead of depending on overflow behavior. (Bug#2844)
6076
6077 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
6078 * lisp.h: Adjust prototypes.
6079
6080 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
6081
6082 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
6083 change (Bug#3003).
6084
6085 2009-04-16 Kenichi Handa <handa@m17n.org>
6086
6087 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
6088
6089 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
6090 adstyle.
6091
6092 * ftfont.c (Qja, Qko): Don't make them static.
6093 (enum ftfont_cache_for): New enum.
6094 (fc_charset_table): Undo the previous change.
6095 (ftfont_get_latin1_charset): Delete it.
6096 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
6097 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
6098 non-scarable font, try to get AVERAGE_WIDTH.
6099 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
6100 Change ft_face_cache from a list of a hash-table. Don't check
6101 `ja' and `ko' adstyle here.
6102 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
6103 FTFONT_CACHE_FOR_CHARET.
6104 (ftfont_get_charset): Undo the previous change.
6105 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
6106 (ftfont_close): Likewise.
6107 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
6108
6109 * font.c (font_sort_entites): Change the meaning of the arg
6110 BEST-ONLY. Don't optimize for VEC of lenght 1.
6111 (font_select_entity): Just return the value of font_sort_entites.
6112
6113 * xfaces.c (merge_face_vectors): Reflect font properties in
6114 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
6115 font_clear_prop if a face attribute doesn't change.
6116
6117 * charset.h (charset_ksc5601): Extern it.
6118
6119 * charset.c (charset_ksc5601): New variable.
6120 (Fdefine_charset_internal): Set charset_ksc5601.
6121 (init_charset_once): Initialize charset_ksc5601 to -1.
6122
6123 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
6124
6125 * fileio.c (history_delete_duplicates): Remove unused declaration.
6126
6127 * callint.c (history_delete_duplicates): New declaration.
6128 (Fcall_interactively): Remove command history duplicates when
6129 history_delete_duplicates is true.
6130
6131 2009-04-14 Eli Zaretskii <eliz@gnu.org>
6132
6133 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
6134
6135 2009-04-14 Kenichi Handa <handa@m17n.org>
6136
6137 * font.c (Ffont_info): Fix docstring. Fix the second element of
6138 the returned value (bug#2949).
6139
6140 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
6141
6142 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
6143
6144 2009-04-14 Kenichi Handa <handa@m17n.org>
6145
6146 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
6147 encoding charset is ascii_compatible.
6148
6149 * charset.c (Fdefine_charset_internal): Make charset
6150 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
6151 code_offset is 0, and covers all ASCII characters.
6152
6153 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
6154
6155 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
6156 (ns_string_to_pasteboard_internal):
6157 * nsmenu.m (process_dialog):
6158 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
6159 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
6160 * lisp.h (Fx_load_color_file): Declare.
6161
6162 2009-04-13 Kenichi Handa <handa@m17n.org>
6163
6164 * font.c (font_delete_unmatched): Preserve the order of list elements.
6165 (font_select_entity): Suppress the code to optimize for the same
6166 kind of fonts.
6167 (font_load_for_lface): Get a font that supports at least ASCII
6168 characters.
6169
6170 * ftfont.c (Qja, Qko): New variables.
6171 (fc_charset_table): Delete uniquifier data for iso8859-1.
6172 (ftfont_get_latin1_charset): New function.
6173 (get_adstyle_property): New function.
6174 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
6175 bitmap fonts.
6176 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
6177 Delete iso-8859-1 range from the charset of fonts whose adstyle is
6178 `ko' or `ja'.
6179 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
6180 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
6181 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
6182 property.
6183 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
6184 (syms_of_ftfont): DEFSYM Qja and Qko.
6185
6186 2009-04-09 Kenichi Handa <handa@m17n.org>
6187
6188 * charset.c (map_charset_chars): For a charset of `superset'
6189 method, fix calculation of code range.
6190
6191 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
6192 from the list of extra properties.
6193 (font_clear_prop): Be sure to delete `:name' font property.
6194
6195 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6196
6197 * dispnew.c (redraw_overlapping_rows): Fix detection of
6198 overlapping for topmost and bottommost rows.
6199
6200 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
6201
6202 2009-04-06 Jason Rumney <jasonr@gnu.org>
6203
6204 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
6205
6206 2009-04-06 Kenichi Handa <handa@m17n.org>
6207
6208 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
6209
6210 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
6211
6212 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6213
6214 * ftfont.c (ftfont_open): Fix checking of the return value of
6215 FT_Load_Char. Fix setting font->underline_thickness.
6216
6217 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
6218
6219 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
6220 (Fterminal_parameters, Fterminal_parameter)
6221 (Fset_terminal_parameter): In doc string, refer to terminal
6222 objects rather than terminal ids.
6223
6224 2009-04-04 Eli Zaretskii <eliz@gnu.org>
6225
6226 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
6227 ret_lim_data. (Bug#2867)
6228
6229 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
6230
6231 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
6232 so they don't get wider than the window, matching 2006-01-23
6233 change to the partner function in xdisp.c (Bug#2800).
6234
6235 2009-04-03 Kenichi Handa <handa@m17n.org>
6236
6237 * print.c (print_object): Make each lowest sub_char_table start a
6238 new line (Bug#2866).
6239
6240 2009-04-02 Kenichi Handa <handa@m17n.org>
6241
6242 * fontset.c (fontset_font): Record no-font when a fontset
6243 explicitly tells not to try another font-specs.
6244
6245 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
6246
6247 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
6248
6249 2009-03-30 Kenichi Handa <handa@m17n.org>
6250
6251 * fontset.c (fontset_from_font): Specify only registry in a
6252 font-spec for all characters supported by that registry.
6253
6254 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
6255 even if HAVE_M17N_FLT is not defined.
6256
6257 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
6258
6259 * ftfont.c: Conditionalize prototyping and use of
6260 ftfont_variation_glyphs.
6261
6262 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
6263
6264 * frame.c (delete_frame): Work around compiler bug.
6265
6266 * editfns.c (general_insert_function): Adjust to insdel.c changes.
6267 * insdel.c (prepare_to_modify_buffer, signal_before_change):
6268 Some more EMACS_INT.
6269 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
6270
6271 * xdisp.c (dump_glyph): Fix typo.
6272
6273 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
6274 (adjust_markers_gap_motion, adjust_markers_for_delete)
6275 (adjust_markers_for_insert, adjust_point)
6276 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
6277 (make_gap, copy_text, count_size_as_multibyte, insert)
6278 (insert_and_inherit, insert_before_markers)
6279 (insert_before_markers_and_inherit, insert_1)
6280 (count_combining_before, count_combining_after, insert_1_both)
6281 (insert_from_string, insert_from_string_before_markers)
6282 (insert_from_string_1, insert_from_gap, insert_from_buffer)
6283 (insert_from_buffer_1, adjust_after_replace)
6284 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
6285 (replace_range_2, del_range, del_range_1, del_range_byte)
6286 (del_range_both, del_range_2, modify_region)
6287 (prepare_to_modify_buffer, signal_before_change)
6288 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
6289 for buffer positions and sizes.
6290 * lisp.h: Adjust prototypes accordingly.
6291
6292 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
6293 (non_regular_inserted, non_regular_nbytes, read_non_regular)
6294 (Finsert_file_contents): Use EMACS_INT for buffer positions.
6295
6296 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
6297
6298 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
6299
6300 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
6301 lines and columns so we keep the same pixel height and width.
6302
6303 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
6304 the property _NET_WM_STATE has changed.
6305 (x_handle_net_wm_state): New function to update frame parameter
6306 fullscreen.
6307 (x_term_init): Initialize atoms for _NET_WM_STATE.
6308
6309 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
6310
6311 2009-03-27 Kevin Ryde <user42@zip.com.au>
6312
6313 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
6314 Gpm_GetEvent as an error that justifies closing the filedescriptor.
6315 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
6316 (Fgpm_mouse_stop): Pass that new parameter.
6317 * termhooks.h (close_gpm): Adjust prototype.
6318
6319 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
6320
6321 * lisp.h (Fx_focus_frame): Declare.
6322
6323 * callint.c (Fcall_interactively): For '^' just delegate the work to
6324 handle-shift-selection.
6325 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
6326
6327 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
6328
6329 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
6330
6331 * data.c (Qinteractive_form): New variable.
6332 (Finteractive_form): Use it.
6333
6334 * eval.c (Fcommandp): Use Qinteractive_form.
6335
6336 2009-03-24 Jason Rumney <jasonr@gnu.org>
6337
6338 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
6339 Calculate total size precisely. Decode environment variables
6340 before substituting. (Bug#38)
6341
6342 2009-03-24 Kenichi Handa <handa@m17n.org>
6343
6344 * font.c (find_font_encoding): Return Qnil for unsupported
6345 encoding (Bug#2722).
6346
6347 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
6348
6349 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
6350 that gdpy is set.
6351
6352 2009-03-22 Alan Mackenzie <acm@muc.de>
6353
6354 * callint.c (Finteractive): Clarify the doc string - even
6355 promptless elements need \n separators.
6356
6357 2009-03-22 Jason Rumney <jasonr@gnu.org>
6358
6359 * w32term.c (syms_of_w32term): Doc fix for
6360 x-use-underline-position-properties.
6361
6362 2009-03-21 Eli Zaretskii <eliz@gnu.org>
6363
6364 * w32.c (getpwuid): Change argument type to unsigned.
6365 (struct w32_id): Change type of `rid' member to unsigned.
6366 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
6367 argument ID to unsigned. All callers changed.
6368 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
6369
6370 2009-03-20 Eli Zaretskii <eliz@gnu.org>
6371
6372 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
6373 negative, produce a float value.
6374
6375 * dired.c (make_uid, make_gid): New functions.
6376 (Ffile_attributes): Use them to avoid negative UID and GID.
6377
6378 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
6379
6380 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
6381 (syms_of_keyboard) <command-hook-internal, input-method-function>:
6382 Fix typos in docstrings.
6383
6384 2009-03-19 Kenichi Handa <handa@m17n.org>
6385
6386 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
6387 changed, use font_load_for_lface to get a new font object.
6388 Call free_realized_fontset after handling ASCII font change.
6389
6390 * frame.c (x_set_font): Handle the case that ARG is a cons.
6391
6392 2009-03-19 Glenn Morris <rgm@gnu.org>
6393
6394 * fileio.c (Fsubstitute_in_file_name): Doc fix.
6395
6396 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
6397
6398 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
6399
6400 2009-03-19 Kenichi Handa <handa@m17n.org>
6401
6402 * charset.c (load_charset_map_from_file): When a mapfile can't be
6403 loaded, signal an error.
6404
6405 2009-03-18 Eli Zaretskii <eliz@gnu.org>
6406
6407 * dired.c (Ffile_attributes): Make sure UID and GID are always
6408 positive, even if the value is too large for a positive EMACS_INT.
6409 Doc fix.
6410
6411 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
6412
6413 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6414
6415 * xmenu.c (xdialog_show): Move Fredisplay call ...
6416 (Fx_popup_dialog): ... here.
6417
6418 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
6419
6420 * dired.c (file_name_completion): Disable the first optimization just
6421 installed, since it is not implemented correctly.
6422
6423 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
6424
6425 * dired.c (file_name_completion): Check completion-ignored-extensions
6426 only if the entry can affect bestmatch.
6427 Stop the search early, as Ftry_completion already does.
6428
6429 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
6430
6431 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
6432
6433 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
6434
6435 * keyboard.c (parse_menu_item): Don't display remappings as menu
6436 equivalent bindings (Bug#788).
6437
6438 2009-03-15 Jason Rumney <jasonr@gnu.org>
6439
6440 * w32term.h (WM_EMACS_PAINT): New message.
6441 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
6442 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
6443 before passing to lisp thread. (Bug#950)
6444
6445 2009-03-14 David Reitter <david.reitter@gmail.com>
6446
6447 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
6448 variable as it was never reset.
6449 (ns_term_init): Remove initialization of Lisp-settable defaults
6450 and ns_expand_space.
6451 (-setPanelFromDefaultValues): Remove ns_expand_space.
6452 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
6453 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
6454 i.e. no additional spacing, similar to Carbon port.
6455
6456 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
6457 * nsfns.m (ns-popup-prefs-panel): Remove.
6458
6459 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
6460
6461 * sound.c (alsa_configure): Remove call to deprecated
6462 snd_pcm_sw_params_set_xfer_align.
6463
6464 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
6465
6466 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
6467 after clicking in a detached tool bar.
6468 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
6469
6470 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
6471
6472 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
6473 int/Lisp_Object mixup).
6474
6475 2009-03-13 Kenichi Handa <handa@m17n.org>
6476
6477 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
6478 Handle NAME nil and t correctly. Callers changed.
6479 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
6480 (set_fontset_font): Change ARG to a vector. Handle range_list in
6481 ARG correctly.
6482 (Fset_fontset_font): Fix the case that TARGET is both a script
6483 name and charset name. Adjust the arg to set_fontset_font for
6484 the above change.
6485 (fontset_from_font): Fix previous change.
6486 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
6487 entry. If FONTSET is the default fontset, don't set the extra
6488 slot of the returning char-table.
6489
6490 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
6491
6492 * nsfns.m (Fx_close_connection): Doc fix.
6493 (Fns_do_applescript): Reflow docstring.
6494 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
6495 (Fx_display_pixel_width, Fx_display_pixel_height)
6496 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
6497 Fix typos in docstrings.
6498 (Fns_set_alpha): Fix typos in error messages.
6499
6500 2009-03-12 David Reitter <david.reitter@gmail.com>
6501
6502 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
6503 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
6504 were used for such events.
6505
6506 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
6507 (toggleToolbar, performDragOperation, runHelp): Use it.
6508
6509 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
6510 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
6511
6512 2009-03-11 Kenichi Handa <handa@m17n.org>
6513
6514 * font.h (font_open_by_spec): Extern it.
6515
6516 * font.c (font_open_by_spec): New function.
6517 (font_open_by_name): Use font_open_by_spec.
6518
6519 * frame.c (x_set_font): When ARG is a font-object, don't alter the
6520 fontset of the frame.
6521
6522 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
6523 modify the default font of frames that use this fontset.
6524 (num_auto_fontsets): New variable.
6525 (fontset_from_font): Use num_auto_fontsets to decide a fontset
6526 name. Be sure to set FONTSET_ASCII to the correct font name.
6527 (update_auto_fontset_alist): New function.
6528
6529 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
6530
6531 * makefile.w32-in: Update dependencies.
6532
6533 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
6534
6535 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
6536
6537 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
6538
6539 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
6540
6541 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
6542
6543 * lread.c (Feval_buffer): Doc fix.
6544
6545 2009-03-09 Kenichi Handa <handa@m17n.org>
6546
6547 * charset.c (Qfile_name_handler_alist): Extern it.
6548 (load_charset_map_from_file): Temporarily bind
6549 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
6550
6551 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
6552
6553 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
6554 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
6555
6556 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
6557
6558 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
6559 (x_set_window_size): Change back to calculated method of setting
6560 toolbar height under Cocoa. (Bug#2546)
6561 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
6562 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
6563
6564 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
6565
6566 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
6567 accelerator in parens under GNUstep.
6568
6569 2009-03-06 Kenichi Handa <handa@m17n.org>
6570
6571 These changes are to detect incorrect composition sequence without
6572 looking ahead the source. (Bug#2370)
6573
6574 * coding.h: Include "composite.h".
6575 (enum compisition_state): New enum.
6576 (struct compisition_status): New struct.
6577 (struct iso_2022_spec): New member cmp_status.
6578 (struct emacs_mule_spec): New struct.
6579 (struct coding_system): New members ctext_extended_segment_len and
6580 embedded_utf_8. Change the union member
6581 spec.emacs_mule_full_support to spec.emacs_mule.
6582
6583 * coding.c (CODING_ISO_CMP_STATUS): New macro.
6584 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
6585 (MAX_ANNOTATION_LENGTH): Define to 5.
6586 (ADD_COMPOSITION_DATA): New arg nbytes.
6587 (emacs_mule_char): New arg cmp_status.
6588 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
6589 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
6590 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
6591 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
6592 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
6593 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
6594 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
6595 (EMACS_MULE_COMPOSITION_END): New macro.
6596 (emacs_mule_finish_composition): New function.
6597 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
6598 (decode_coding_emacs_mule): Avoid long looking ahead while
6599 handling composition.
6600 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
6601 (ENCODE_COMPOSITION_RULE): New macro.
6602 (finish_composition): New function.
6603 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
6604 (DECODE_COMPOSITION_START): New implementation.
6605 (DECODE_COMPOSITION_END): Likewise.
6606 (STORE_COMPOSITION_RULE): New macro.
6607 (decode_coding_iso_2022): Avoid long looking ahead while handling
6608 composition, CTEXT extended segment, and embedded UTF-8.
6609 (setup_coding_system): For a coding of type iso-2022, reset
6610 CODING_ISO_EXTSEGMENT_LEN (coding) and
6611 CODING_ISO_EMBEDDED_UTF_8 (coding).
6612 (get_translation): Delete arguments last_block, from_nchars,
6613 to_nchars. Callers changed.
6614 (produce_chars): Don't modify charbuf. Adjusted for the change of
6615 get_translation.
6616 (produce_composition): Adjust for the new annotation sequence.
6617 (handle_composition_annotation): Likewise.
6618 (consume_chars): Adjust for the change of get_translation.
6619
6620 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
6621
6622 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
6623
6624 2009-03-05 Kenichi Handa <handa@m17n.org>
6625
6626 * font.c (font_select_entity): New function.
6627 (font_find_for_lface): Use font_select_entity to select a font.
6628
6629 * fontset.c (fontset_find_font): If a font found without
6630 restricting to the characters C doesn't support C, try to find a
6631 font with C restriction.
6632
6633 2009-03-04 Nikolaj Schumacher <me@nschum.de>
6634
6635 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
6636
6637 2009-03-04 Jason Rumney <jasonr@gnu.org>
6638
6639 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
6640 characters that have already been read. (Bug#2569)
6641
6642 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
6643 Log an error message if check_image_size failed.
6644 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
6645 (gs_load): Mention max-image-size in size error message. (Bug#2560)
6646
6647 2009-03-02 Eli Zaretskii <eliz@gnu.org>
6648
6649 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
6650 when decoding process output.
6651
6652 2009-03-01 Richard M Stallman <rms@gnu.org>
6653
6654 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
6655
6656 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
6657
6658 2009-02-28 Eli Zaretskii <eliz@gnu.org>
6659
6660 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
6661 (decode_coding_emacs_mule, decode_coding_iso_2022)
6662 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
6663 (decode_coding_raw_text, decode_coding_charset)
6664 (setup_coding_system, decode_eol, decode_coding, consume_chars):
6665 Honor inhibit-eol-conversion. (Bug #2186)
6666
6667 2009-02-28 Jason Rumney <jasonr@gnu.org>
6668
6669 * coding.c (detect_coding_charset): If not checking latin extra,
6670 fail on characters between 0x80 and 0xA0. (Bug#2354)
6671
6672 2009-02-28 Eli Zaretskii <eliz@gnu.org>
6673
6674 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
6675 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
6676
6677 2009-02-27 Glenn Morris <rgm@gnu.org>
6678
6679 * callint.c (Finteractive): Doc fix.
6680
6681 2009-02-27 Kenichi Handa <handa@m17n.org>
6682
6683 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
6684
6685 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
6686
6687 * font.c (font_style_to_value): Set value for unknown symbols to
6688 100 instead of 255.
6689 (weight_table, slant_table, width_table): Treat "unspecified" as
6690 the default value.
6691
6692 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
6693
6694 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
6695
6696 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
6697
6698 * lread.c (Fload): Stop checking Vloads_in_progress and signal
6699 error as soon as a recursive load is detected.
6700
6701 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
6702
6703 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
6704 before caching.
6705
6706 2009-02-24 Kenichi Handa <handa@m17n.org>
6707
6708 * fontset.c (fontset_find_font): Fix the condition for checking
6709 unavailable font.
6710
6711 2009-02-24 Glenn Morris <rgm@gnu.org>
6712
6713 * xfaces.c (Finternal_set_font_selection_order): Remove leading
6714 whitespace that confuses documentation.
6715
6716 2009-02-23 Miles Bader <miles@gnu.org>
6717
6718 * process.c (Flist_system_processes, Fprocess_attributes)
6719 (syms_of_process): Rename `system-process-attributes' to
6720 `process-attributes'.
6721
6722 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
6723
6724 * coding.h (struct coding_system): Make safe_charsets a pointer to
6725 unsigned char.
6726 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
6727 being 255.
6728 (SAFE_CHARSET_P): Likewise.
6729 (setup_iso_safe_charsets): Properly setup safe_charsets.
6730 (Fdefine_coding_system_internal): Likewise.
6731 (setup_coding_system): Likewise. Remove unneeded casts.
6732 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
6733 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
6734 unneeded casts.
6735
6736 * insdel.c (del_range_2): Don't modify gap contents when called
6737 from decode_coding_object. (Bug#1809)
6738
6739 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
6740
6741 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
6742 Qfont_object.
6743 (Ftype_of): Recognize font objects.
6744
6745 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
6746
6747 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
6748 moved to data.c.
6749
6750 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
6751
6752 * nsterm.m (x_make_frame_invisible): Unset async_visible,
6753 async_iconified. Based on a patch by Christian Lynbech
6754 <christian.lynbech@tieto.com>.
6755 (EmacsView-windowDidMiniaturize:): Unset async_visible.
6756
6757 2009-02-20 Glenn Morris <rgm@gnu.org>
6758
6759 * syntax.c (Fskip_chars_forward): Fix doc typo.
6760
6761 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
6762
6763 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
6764
6765 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
6766
6767 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
6768
6769 2009-02-19 Kenichi Handa <handa@m17n.org>
6770
6771 * coding.c (detect_coding): Preserve coding->mode.
6772 Don't overflow coding->carryover. (Bug#2370)
6773
6774 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
6775
6776 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
6777
6778 2009-02-18 Kenichi Handa <handa@m17n.org>
6779
6780 * font.c (font_check_otf_features): Fix handling of `nil' element.
6781 (Ffont_spec): Describe :lang and :otf in the docstring.
6782
6783 2009-02-16 Andreas Schwab <schwab@suse.de>
6784
6785 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
6786 string.
6787
6788 2009-02-16 Kenichi Handa <handa@m17n.org>
6789
6790 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
6791 (Bug#1723)
6792
6793 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
6794
6795 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
6796
6797 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
6798 (handle_line_prefix): Suppress wrapping of wrap prefixes.
6799
6800 2009-02-14 Eli Zaretskii <eliz@gnu.org>
6801
6802 * msdos.c (MAX_SCREEN_BUF): New macro.
6803 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
6804 Encode the entire run of glyphs sharing the same face, instead of
6805 doing that one glyph at a time (fixes a bug with displaying
6806 double-size characters).
6807
6808 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
6809
6810 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
6811
6812 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
6813 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
6814 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
6815
6816 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
6817 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
6818
6819 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
6820
6821 * keyboard.c (adjust_point_for_property): Allow stopping between two
6822 invisible areas.
6823
6824 2009-02-12 Jason Rumney <jasonr@gnu.org>
6825
6826 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
6827 (add_font_entity_to_list): Call check_face_name even when family
6828 is unspecified.
6829
6830 * w32term.c (x_display_pixel_height, x_display_pixel_width):
6831 Release DC when finished. Use NULL window to refer to desktop.
6832 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
6833
6834 * w32font.c (add_font_entity_to_list): Fix check for substituted
6835 raster fonts. (Bug#2219)
6836
6837 2009-02-12 Kenichi Handa <handa@m17n.org>
6838
6839 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
6840 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
6841 (autocmp_chars): Use fast_looking_at. Don't compose more
6842 characters than MAX_COMPOSITION_COMPONENTS.
6843 (find_automatic_composition): While looking forward and backward,
6844 check static composition. Fix where to stop looking forward.
6845 (composition_adjust_point): Fix checking of static composition.
6846 (Fcomposition_get_gstring): Pay attention to
6847 MAX_COMPOSITION_COMPONENTS.
6848
6849 * lisp.h (fast_looking_at): Extern it.
6850
6851 * search.c (fast_looking_at): New function.
6852
6853 * term.c (encode_terminal_code): Adjust for the change of
6854 <struct glyph>.u.cmp.to.
6855 (append_composite_glyph): Likewise.
6856
6857 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
6858 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
6859 composition.
6860 (append_composite_glyph): Adjust for the change of
6861 <strcut glyph>.u.cmp.to.
6862
6863 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
6864
6865 * casetab.c (init_casetab_once):
6866 * coding.c (ALLOC_CONVERSION_WORK_AREA):
6867 * font.c (font_update_lface):
6868 * fontset.c (Fnew_fontset):
6869 * ftfont.c (ftfont_drive_otf):
6870 * xfont.c (xfont_open):
6871 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
6872
6873 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
6874
6875 * fileio.c (Fwrite_region): !NILP -> CONSP.
6876
6877 2009-02-10 Andreas Schwab <schwab@suse.de>
6878
6879 * process.c (send_process): Properly relocate pointer into data
6880 when using encoded data. (Bug#2272)
6881
6882 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
6883
6884 * coding.c (detect_coding_charset): Fix previous change.
6885
6886 2009-02-08 Jason Rumney <jasonr@gnu.org>
6887
6888 * w32fns.c (w32_hide_hourglass): Handle case where frame
6889 disappeared while hourglass was displayed. (Bug #2193)
6890
6891 2009-02-07 Andreas Schwab <schwab@suse.de>
6892
6893 * unexelf.c (unexec): Fix error message.
6894
6895 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
6896
6897 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
6898 when modal window is active. (Bug #2152)
6899 (applicationShouldTerminate:): Remove now-unneeded while loop
6900 around NSRunAlertPanel.
6901
6902 * nsmenu.m (popupSession): New file-global variable.
6903 (pop_down_menu): End the popupSession before closing dialog.
6904 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
6905 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
6906 don't query NSApp for events (just sleep instead).
6907
6908 2009-02-07 Eli Zaretskii <eliz@gnu.org>
6909
6910 * coding.c (syms_of_coding) <translation-table-for-input>:
6911 Modify doc string to discourage use for character code unification.
6912
6913 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6914
6915 * atimer.c (run_timers): Update pending_atimers.
6916
6917 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
6918
6919 * image.c (svg_load_image): Fix last change.
6920
6921 * xfns.c (Fx_create_frame): Signal an error if no font is
6922 found (Bug#2147).
6923
6924 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
6925
6926 * character.c (syms_of_character) <script-representative-chars>:
6927 Fix typo in docstring.
6928
6929 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
6930
6931 * nsmenu.m (pop_down_menu): New function.
6932 (ns_popup_dialog): Call it on unwind.
6933 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
6934 call timer_check() (Bug#2154).
6935 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
6936 handling_signal is set.
6937 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
6938
6939 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
6940
6941 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
6942
6943 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
6944
6945 * keyboard.c (poll_for_input_1, handle_async_input):
6946 Set handling_signal under HAVE_NS.
6947
6948 2009-02-04 Glenn Morris <rgm@gnu.org>
6949
6950 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
6951
6952 2009-02-04 Kenichi Handa <handa@m17n.org>
6953
6954 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
6955
6956 * charset.c (Fchar_charset): New optional arg restriction.
6957
6958 * coding.h (coding_system_charset_list): Extern it.
6959
6960 * coding.c (coding_system_charset_list): New function.
6961
6962 * composite.c: Include coding.h and termhooks.h.
6963 (composition_gstring_p): Fix for the terminal case.
6964 (composition_gstring_width): Likewise.
6965 (fill_gstring_body): Likewise.
6966 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
6967 the frame.
6968 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
6969 is within a composition.
6970 (Fcomposition_get_gstring): Fix the terminal case.
6971
6972 * term.c (encode_terminal_code): Fix handling of composition.
6973 (produce_composite_glyph): For static composition, get pixel_width
6974 from struct composition.
6975
6976 2009-02-02 Andreas Schwab <schwab@suse.de>
6977
6978 * unexelf.c (unexec): Handle unaligned bss offset.
6979
6980 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
6981
6982 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
6983 XT,w32read_socket changes to ns_read_socket.
6984
6985 * keyboard.c (handle_interrupt): Don't call
6986 quit_throw_to_read_char() under NS.
6987
6988 * blockinput.h: Remove NS-specific code.
6989
6990 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
6991
6992 * dispnew.c (window_change_signal): Don't try to get the size of a
6993 suspended tty frame.
6994 * term.c (Fresume_tty): Resize if the size has changed while the
6995 tty was suspended.
6996
6997 * alloc.c (mark_stack): Properly conditionalize previous change.
6998
6999 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
7000
7001 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
7002 * w32term.c (w32_read_socket) [SYNC_INPUT]:
7003 Remove; this code is not used on Windows.
7004
7005 2009-01-30 Eli Zaretskii <eliz@gnu.org>
7006
7007 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
7008 EOLs that also has stray ^M characters.
7009
7010 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
7011
7012 * atimer.c (run_timers, alarm_signal_handler):
7013 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
7014 * w32inevt.c (w32_console_read_socket):
7015 * w32term.c (w32_read_socket):
7016 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
7017
7018 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
7019
7020 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
7021 Initialize it as a relative filename pattern.
7022 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
7023 (Fcall_process_region): Simplify temp file creation using
7024 temporary-file-directory.
7025
7026 2009-01-29 Eli Zaretskii <eliz@gnu.org>
7027
7028 * msdos.c: Rename pending_signals to msdos_pending_signals.
7029 (sig_suspender, sigprocmask): Adjust.
7030
7031 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
7032
7033 * keyboard.c (pending_signals): New var.
7034 (poll_for_input, input_available_signal, init_keyboard): Set it.
7035 (process_pending_signals): New function.
7036
7037 * lisp.h (QUIT): Check pending_signals instead of
7038 interrupt_input_pending. Use process_pending_signals.
7039
7040 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
7041
7042 * process.c (wait_reading_process_output): Use process_pending_signals.
7043
7044 * sysdep.c (emacs_write): Use process_pending_signals.
7045
7046 * xterm.c (XTread_socket): Update pending_signals.
7047
7048 * w32term.c (w32_read_socket): Update pending_signals.
7049
7050 * w32inevt.c (w32_console_read_socket): Update pending_signals.
7051
7052 2009-01-29 Kenichi Handa <handa@m17n.org>
7053
7054 * xftfont.c (xftfont_has_char): New function.
7055 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
7056
7057 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
7058
7059 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
7060 under GNUstep.
7061 (ns_query_color): New declaration.
7062
7063 * nsterm.m (ns_confirm_quit): New variable.
7064 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
7065 (EmacsApp-applicationShouldTerminate:): Use it.
7066 (EmacsPrefsController): Let user set it.
7067 (ns_query_color): New function.
7068 (ns_defined_color): Use it.
7069 (ns_initialize): Drop.
7070 (ns_term_init): Add two lines from ns_initialize(), and set
7071 input_interrupt_mode to nil.
7072
7073 * image.c (svg_load_image): Don't right-shift background RGB when
7074 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
7075
7076 2009-01-28 Kenichi Handa <handa@m17n.org>
7077
7078 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
7079 (fontset_get_font_group): Remember that no font-group is specified
7080 for C.
7081
7082 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
7083
7084 * fns.c (concat): Check for string overflow (bug#1787).
7085
7086 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
7087 Quadruple undo limits (bug#1501).
7088
7089 2009-01-27 Kenichi Handa <handa@m17n.org>
7090
7091 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
7092 directly use GT_Get_Char_index.
7093
7094 * xftfont.c (struct xftfont_info): New member `index'.
7095
7096 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
7097 (Ffontset_font): Adjust for the change of fontset entry.
7098
7099 2009-01-26 Kenichi Handa <handa@m17n.org>
7100
7101 * fontset.c (fontset_find_font): Fix handling of non-cons return
7102 value of fontset_get_font_group.
7103 (fontset_font): Revert last change.
7104
7105 2009-01-26 Jason Rumney <jasonr@gnu.org>
7106
7107 * w32font.c (w32font_list_internal): Return quickly if registry is
7108 unknown. Simplify final return.
7109 (add_font_entity_to_list): Break complex logic down into more
7110 manageable chunks. Move unknown registry check to
7111 w32font_list_internal.
7112
7113 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
7114
7115 Changes to remove Feval calls from GUI under NS.
7116
7117 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
7118 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
7119 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
7120
7121 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
7122 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
7123 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
7124 instead of NON_ASCII_KEYSTROKE_EVENT.
7125 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
7126 (EmacsApp-applicationShouldTerminate:): Query user.
7127 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
7128 instead of Feval.
7129
7130 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
7131
7132 * keyboard.c (kbd_buffer_get_event): Check for it.
7133 (keys_of_keyboard): Define lispy keys for
7134 ns-put/unput-working-text.
7135
7136 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
7137 versions.
7138 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
7139
7140 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
7141
7142 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
7143 setting current_buffer directly. (Bug#2044)
7144
7145 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
7146
7147 * fontset.c (fontset_font): If we know there is no font, don't do
7148 any work. (Bug#1952, bug#1990).
7149
7150 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
7151
7152 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
7153
7154 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
7155 (ns_no_defaults): New declaration.
7156 (main): Use it.
7157
7158 * nsterm.h (ns_no_defaults): New declaration.
7159
7160 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
7161
7162 * nsterm.m (ns_no_defaults): New variable.
7163 (ns_initialize): Don't read defaults when ns_no_defaults.
7164 (EmacsView-readSelectionFromPasteboard:)
7165 (writeSelectionToPasteboard:types:): New stubbed-out methods for
7166 NSServicesRequests protocol. (Bug#1435)
7167 (ns_dumpglyphs_stretch): New function.
7168 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
7169 of 2008-11-15 to other terms. (Bug#615)
7170
7171 * nsimage.m (setPixmapData:): Set to ignore image DPI.
7172
7173 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
7174
7175 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
7176 call for Sparc64.
7177
7178 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
7179
7180 * nsfns.m:
7181 * nsgui.h:
7182 * nsmenu.m:
7183 * nsselect.m:
7184 * nsterm.h:
7185 * nsterm.m: Remove '23' comments that indicated code added during
7186 update from emacs-20 -> emacs-23.
7187
7188 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
7189
7190 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
7191 ns_alternate_modifier. (Bug#1217)
7192
7193 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
7194 Display all shortcuts, including those w/o super modifier.
7195
7196 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
7197
7198 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
7199
7200 * fileio.c (Vwrite_region_post_annotation_function)
7201 (Vwrite_region_annotation_buffers): New vars.
7202 (build_annotations_unwind): Just reset
7203 Vwrite_region_annotation_buffers.
7204 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
7205 Call write-region-post-annotation-function.
7206 (build_annotations): Add to Vwrite_region_annotation_buffers if
7207 buffer changes.
7208
7209 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
7210
7211 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
7212 Tiger.
7213 * nsfns.m (ns_do_applescript):
7214 Conditionalize typeUTF16ExternalRepresentation on Tiger.
7215
7216 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
7217
7218 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
7219
7220 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
7221
7222 * nsmenu.m (NSMENUPROFILE): Change #if style.
7223
7224 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
7225
7226 * nsterm.m (x_set_frame_alpha): Add prototype.
7227 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
7228 handle Ctrl-tab. (Bug#1841)
7229 (ns_get_color): Use unsigned long long for scanned hex string value.
7230 (ns_term_shutdown): Abort on non SIGTERM signals.
7231 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
7232 (EmacsPrefsController-setPanelFromDefaultValues): New function.
7233 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
7234 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
7235 (ns_defined_color): Fix settings of the XColor variable fields:
7236 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
7237
7238 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
7239 DPI. (Bug#1316)
7240 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
7241 values in onTiger section.
7242
7243 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
7244
7245 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
7246 Check return value of font_spec_from_name.
7247 (Fx_list_fonts): Doc fix. (Bug#1951)
7248
7249 * font.c (font_spec_from_name): Return Qnil if font name could not
7250 be parsed.
7251 (font_parse_name): Treat a `?' character as part of an XLFD.
7252
7253 * fns.c (Fsubstring): Doc fix.
7254
7255 2009-01-19 Kenichi Handa <handa@m17n.org>
7256
7257 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
7258 (ftfont_list): Likewise.
7259
7260 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
7261
7262 * dbusbind.c (Fdbus_register_signal):
7263 * process.c (conv_sockaddr_to_lisp):
7264 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
7265
7266 * callproc.c (Fgetenv_internal): Doc fix.
7267
7268 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
7269
7270 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
7271 it is not even used.
7272
7273 2009-01-16 Glenn Morris <rgm@gnu.org>
7274
7275 * font.c (Ffont_variation_glyphs): Silence compiler.
7276
7277 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
7278
7279 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
7280 Reported by David Robinow <drobinow@gmail.com>.
7281
7282 2009-01-15 Kenichi Handa <handa@m17n.org>
7283
7284 * coding.c (detect_coding_system): Fix handling of null_byte_found.
7285
7286 2009-01-14 Jason Rumney <jasonr@gnu.org>
7287
7288 * frame.c (x_set_font): Always store a font to the font parameter,
7289 never a fontset. (Bug#1562)
7290
7291 2009-01-14 Kenichi Handa <handa@m17n.org>
7292
7293 * coding.c (TWO_MORE_BYTES): New macro.
7294 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
7295
7296 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
7297
7298 * font.c (font_clear_prop): If clearing the family, clear the font
7299 width index too.
7300
7301 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
7302
7303 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
7304
7305 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
7306 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
7307 functions, use sizeof.
7308
7309 2009-01-12 Martin Rudalics <rudalics@gmx.at>
7310
7311 * keyboard.c (read_char): Fix case where last_nonmenu_event
7312 returned a bad value with submenus. (Bug#447)
7313
7314 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
7315
7316 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
7317 family, clear the font width index too.
7318
7319 2009-01-11 Jason Rumney <jasonr@gnu.org>
7320
7321 * keyboard.c (cmd_error_internal): Exit when errors occur before
7322 frame creation and not in daemon mode. (Bug#1836)
7323
7324 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
7325
7326 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
7327 of a display vector, backtrack.
7328 (try_window_reusing_current_matrix): Check glyph type before
7329 referencing charpos member.
7330
7331 2009-01-10 Eli Zaretskii <eliz@gnu.org>
7332
7333 Fix Bug #876:
7334
7335 * coding.c (inhibit_null_byte_detection): New variable.
7336 (detect_coding, detect_coding_system): Don't pay attention to null
7337 bytes if inhibit_null_byte_detection is non-zero.
7338 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
7339 <inhibit-iso-escape-detection>: Doc fix.
7340
7341 2009-01-09 Jason Rumney <jasonr@gnu.org>
7342
7343 * w32font.c (add_font_entity_to_list): Don't report unknown
7344 Windows charset as any unrecognized registry. (Bug#1548)
7345 Only report Unicode Plane 2 fonts as unicode-sip.
7346
7347 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
7348
7349 * xfaces.c (Fx_font_family_list): Delete function.
7350 Move compatibility version to faces.el.
7351
7352 * font.c (Ffont_family_list): Return a list of strings, not symbols.
7353
7354 2009-01-09 Martin Rudalics <rudalics@gmx.at>
7355
7356 * frame.c (x_set_frame_parameters): Remember requested value for
7357 fullscreen before it's reset by the parameter handler.
7358
7359 2009-01-09 Glenn Morris <rgm@gnu.org>
7360
7361 * keyboard.c (last_command_char): For clarity, rename to...
7362 (last_command_event): ... and update all users.
7363 (last_input_char): For clarity, rename to...
7364 (last_input_event): ... and update all users.
7365 (last-command-char, last-input-char): Move to subr.el as aliases.
7366 * cmds.c, commands.h: Update for last_command_char rename.
7367
7368 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
7369
7370 * font.c (font_open_for_lface): Handle unspecified height attribute.
7371
7372 2009-01-08 Jason Rumney <jasonr@gnu.org>
7373
7374 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
7375 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
7376 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
7377 Don't declare.
7378 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
7379 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
7380
7381 2009-01-07 Kenichi Handa <handa@m17n.org>
7382
7383 * fileio.c (Finsert_file_contents): In the case of replace,
7384 remember the coding system used for decoding in
7385 coding_system (Bug#1039).
7386
7387 * coding.c (decode_coding_utf_8): Check byte_after_cr before
7388 breaking the loop. (Bug#870)
7389 (decode_coding_utf_16, decode_coding_emacs_mule)
7390 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
7391 (decode_coding_charset): Likewise.
7392
7393 2009-01-05 Martin Rudalics <rudalics@gmx.at>
7394
7395 * frame.c (x_set_frame_parameters): Make sure height (width) get
7396 applied when fullwidth (fullheight) is set. (Bug#1522)
7397
7398 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
7399
7400 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
7401 (utc_base): Declare as ULONGLONG, not long double.
7402 (convert_time_raw): Delete.
7403 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
7404 (initialize_utc_base): New function.
7405 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
7406 (convert_from_time_t): Use initialize_utc_base; compute result with
7407 64-bit arithmetic.
7408 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
7409
7410 2009-01-03 Eli Zaretskii <eliz@gnu.org>
7411
7412 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
7413 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
7414 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
7415 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
7416 [!subprocesses]: Define.
7417 (syms_of_process) [!subprocesses]: Intern and staticpro them.
7418 (Flist_system_processes, Fsystem_process_attributes)
7419 [!subprocesses]: Call list_system_processes and
7420 system_process_attributes instead of returning Qnil.
7421
7422 * dosfns.c (system_process_attributes, list_system_processes):
7423 New functions.
7424
7425 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
7426
7427 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
7428 Don't use the default (no-op) implementation.
7429
7430 2009-01-03 Jason Rumney <jasonr@gnu.org>
7431
7432 * keyboard.c (parse_modifiers_uncached): Wheel events are
7433 clicks (bug#687).
7434
7435 * w32term.c (x_query_colors, x_query_color): New functions.
7436
7437 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
7438 (svg_load_image): Cast returned pointers from dynamically loaded
7439 functions. Eliminate W32 specific code.
7440
7441 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
7442
7443 * nsfns.m (x_set_foreground_color, x_set_background_color)
7444 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
7445 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
7446 x_ prefix instead of ns_. Update references.
7447 (syms_of_nsfns): Add a FIXME comment.
7448
7449 * nsterm.m (x_set_cursor_type): New prototype.
7450 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
7451
7452 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
7453 for Solaris instead of incorrectly providing Qutime and Qcutime.
7454
7455 2009-01-02 Eli Zaretskii <eliz@gnu.org>
7456
7457 * w32.c (process_times): Compute sum of utime and stime.
7458 (system_process_attributes): Add Qtime to the alist.
7459
7460 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
7461 and add them to the alist.
7462
7463 * process.c (top level) <Qtime, Qctime>: New variables.
7464 (syms_of_process): staticpro them.
7465 (Fsystem_process_attributes): Add their documentation to the doc
7466 string.
7467
7468 * process.h: Declare Qtime and Qctime.
7469
7470 2009-01-02 Jason Rumney <jasonr@gnu.org>
7471
7472 * image.c (Qgobject): New symbol.
7473 (syms_of_image): Initialize it.
7474 (init_svg_functions): Load some functions from gobject library.
7475
7476 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
7477
7478 * frame.c (make_terminal_frame): Remove redundant code and useless
7479 block.
7480
7481 2009-01-01 Andreas Schwab <schwab@suse.de>
7482
7483 * process.c (conv_sockaddr_to_lisp): Add workaround for
7484 getsockname bug on BSD.
7485
7486 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
7487
7488 * xfns.c (x_create_tip_frame): Set border width of the X window.
7489
7490 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
7491
7492 2009-01-01 Jason Rumney <jasonr@gnu.org>
7493
7494 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
7495 Don't block input, as per earlier xterm.c changes.
7496
7497 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
7498
7499 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
7500 (ns_appkit_version_int): New function.
7501 (x-server-version): Use ns_appkit_version_int and follow 21+
7502 convention of returning 3 integers.
7503
7504 2008-12-30 Kenichi Handa <handa@m17n.org>
7505
7506 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
7507 (CHAR_SURROGATE_PAIR_P): New macro.
7508
7509 * font.h (struct font_driver): New member get_variation_glyphs.
7510
7511 * font.c (font_range): Don't require a font for a variation selector.
7512 (Ffont_variation_glyphs): New function.
7513 (syms_of_font): Defsubr it.
7514
7515 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
7516 ftfont_variation_glyphs.
7517 (setup_otf_gstring): New function.
7518 (ftfont_drive_otf): Use it.
7519 (ftfont_shape_by_flt): Handle variation selector.
7520 (ftfont_variation_glyphs): New function.
7521
7522 2008-12-30 Martin Rudalics <rudalics@gmx.at>
7523
7524 * frame.c (Vemacs_iconified): Remove.
7525
7526 2008-12-30 Jason Rumney <jasonr@gnu.org>
7527
7528 * frame.c (store_frame_param, x_get_arg): Enable newer code on
7529 WINDOWSNT too, as related changes have already been synced. (Bug#117)
7530
7531 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
7532
7533 * indent.c (Fvertical_motion): Don't advance iterator if we have
7534 reseated to the desired position.
7535
7536 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
7537 checking for pos match.
7538
7539 2008-12-30 Kenichi Handa <handa@m17n.org>
7540
7541 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
7542 just get the low 8-bit of the code.
7543
7544 * font.c (font_intern_prop): Validate str as multibyte.
7545
7546 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
7547
7548 * dispextern.h (struct face): Move lface and hash from the middle
7549 of bitfields.
7550
7551 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
7552
7553 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
7554
7555 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
7556 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
7557 instead of intervals.h.
7558
7559 2008-12-26 Andreas Schwab <schwab@suse.de>
7560
7561 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
7562 cons.
7563
7564 2008-12-26 Martin Rudalics <rudalics@gmx.at>
7565
7566 * textprop.c (Qminibuffer_prompt): New variable.
7567 (syms_of_textprop): Initialize it.
7568 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
7569 in minibuffer-prompt face. (Bug#1662)
7570
7571 2008-12-25 Jason Rumney <jasonr@gnu.org>
7572
7573 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
7574
7575 2008-12-24 Jason Rumney <jasonr@gnu.org>
7576
7577 * ralloc.c (r_alloc_reset_variable): New function.
7578
7579 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
7580 record of what points where. (Bug#716)
7581
7582 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
7583
7584 * minibuf.c (read_minibuf): Follow the non-interactive case when
7585 running as a daemon, before detaching.
7586
7587 2008-12-22 Andreas Schwab <schwab@suse.de>
7588
7589 * buffer.c (init_buffer): Use realloc instead of xrealloc.
7590 * gtkutil.c (free_widget_value): Use xfree instead of free.
7591
7592 2008-12-22 Martin Rudalics <rudalics@gmx.at>
7593
7594 * frame.c (delete_frame): New function derived from
7595 Fdelete_frame to handle Qnoelisp value for FORCE argument.
7596 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
7597 (Fdelete_frame): Call delete_frame. Remove line from doc-string
7598 saying that FORCE non-nil doesn't run `delete-frame-functions'.
7599 * frame.h: Extern delete_frame.
7600 * window.c (window_loop):
7601 * terminal.c (delete_terminal):
7602 * xterm.c (x_connection_closed):
7603 * xfns.c (Fx_hide_tip):
7604 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
7605
7606 2008-12-21 Jason Rumney <jasonr@gnu.org>
7607
7608 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
7609 when character maps to .notdef character.
7610
7611 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
7612
7613 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
7614
7615 2008-12-20 Jason Rumney <jasonr@gnu.org>
7616
7617 * frame.c (Fmake_terminal_frame): Raise an error when called from
7618 a graphical frame on Windows. (Bug#1325)
7619
7620 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
7621
7622 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
7623
7624 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
7625
7626 * minibuf.c (Fread_buffer): Doc fix.
7627
7628 2008-12-20 Jason Rumney <jasonr@gnu.org>
7629
7630 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
7631 server name in UNC paths. (Bug#719)
7632
7633 * coding.c (decode_coding): Clear chars_at_source flag when using
7634 charbuf. (Bug#1035)
7635
7636 2008-12-19 Daniel Engeler <engeler@gmail.com>
7637
7638 * sysdep.c (serial_configure): Fix typo.
7639
7640 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
7641
7642 * sysdep.c: Include alloca.h.
7643 (system_process_attributes): Add implementation for Solaris.
7644
7645 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
7646
7647 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
7648
7649 Reorganize implementation of Flist_system_processes and
7650 Fsystem_process_attributes. No functional changes.
7651 * process.c: Don't #include pwd.h, grp.h and limits.h.
7652 (Flist_system_processes): Just call list_system_processes.
7653 (Fsystem_process_attributes): Just call system_process_attributes.
7654 (procfs_list_system_processes, time_from_jiffies)
7655 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
7656 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
7657
7658 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
7659 (list_system_processes): Rename from
7660 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
7661 Provide a do nothing implementation.
7662 (system_process_attributes): Rename from
7663 procfs_list_system_processes.
7664 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
7665 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
7666
7667 * w32.c (list_system_processes): Rename from
7668 w32_list_system_processes.
7669 (system_process_attributes): Rename from
7670 w32_system_process_attributes.
7671
7672 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
7673
7674 * process.h (w32_list_system_processes)
7675 (w32_system_process_attributes): Remove.
7676 (list_system_processes, system_process_attributes):
7677 New prototypes.
7678
7679 2008-12-19 Kenichi Handa <handa@m17n.org>
7680
7681 * xfont.c (xfont_decode_coding_xlfd): New function.
7682 (xfont_encode_coding_xlfd): New function.
7683 (xfont_list_pattern): Decode XLFD by iso-8859-1.
7684 (xfont_list): Decode and encode XLFD by iso-8859-1.
7685 (xfont_match): Likewise.
7686 (xfont_list_family): Likewise.
7687 (xfont_open): Likewise.
7688
7689 * ftfont.c (ftfont_open): Generate a multibyte string if given
7690 names are utf-8.
7691
7692 * xftfont.c (xftfont_open): Generate a multibyte string if given
7693 names are utf-8.
7694
7695 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
7696
7697 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
7698 changed.
7699 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
7700 clicked on a detached tool bar button.
7701
7702 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
7703
7704 * emacs.c (main): Print and error and exit when no data is read
7705 from the pipe.
7706
7707 2008-12-17 Jason Rumney <jasonr@gnu.org>
7708
7709 * w32font.c (w32font_has_char): Always return -1.
7710
7711 2008-12-16 Kenichi Handa <handa@m17n.org>
7712
7713 * font.c (font_open_entity): Fix previous change.
7714
7715 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
7716
7717 * process.c: Include <limits.h>.
7718
7719 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
7720
7721 * font.c (font_update_drivers): Fix mistake in reconstructing the
7722 driver list.
7723
7724 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
7725
7726 * font.c (font_clear_cache): Fix format of font cache data.
7727
7728 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
7729
7730 * xftfont.c (xftfont_open): Free Xft font pattern if
7731 XftFontOpenPattern fails.
7732
7733 * xterm.c (x_free_frame_resources): Remove extraneous call to
7734 free_frame_faces.
7735
7736 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7737
7738 * xterm.c (x_delete_display): Move xim_close_dpy call to
7739 x_delete_terminal.
7740 (x_delete_terminal): Call xim_close_dpy.
7741
7742 2008-12-13 Jason Rumney <jasonr@gnu.org>
7743
7744 * w32font.c (intern_font_name): New function.
7745 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
7746 (w32font_open_internal, Fx_select_font): Decode font name.
7747 (fill_in_logfont, list_all_matching_fonts): Encode font name.
7748
7749 * w32font.h (intern_font_name): Declare new function.
7750
7751 * w32uniscribe.c (add_opentype_font_name_to_list):
7752 Use intern_font_name.
7753
7754 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7755
7756 * frame.c (Fdelete_frame): Call free_font_driver_list.
7757
7758 * font.c (free_font_driver_list): Implement missing function.
7759
7760 * w32term.c (w32_term_init): Don't initialize the image cache
7761 here; it will be done in init_frame_faces.
7762
7763 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
7764 (struct x_display_info): Remove unused member null_pixel. New
7765 member xim_callback_data.
7766
7767 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
7768 (xim_initialize): Save pointer to callback function data.
7769 (xim_close_dpy): Free callback function data. Call XCloseIM,
7770 reverting 2008-11-04 change by David Smith.
7771 (x_term_init): Don't initialize the image cache here; it will be
7772 done in init_frame_faces. Remove ancient "null_pixel" cruft.
7773 (x_delete_display): Free x_dnd_atoms member.
7774
7775 2008-12-13 Kenichi Handa <handa@m17n.org>
7776
7777 * font.c (font_rescale_ratio): Moved from xfaces.c.
7778 Argument type changed. Handle a font-spec too.
7779 (font_score): Check Vface_font_rescale_alist.
7780 (font_open_entity): Likewise. (Bug#1547)
7781
7782 * xfaces.c (font_rescale_ratio): Moved to font.c.
7783
7784 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
7785
7786 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
7787
7788 2008-12-12 Jason Rumney <jasonr@gnu.org>
7789
7790 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
7791 Vwindow_system_version to the real w32 major version.
7792
7793 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
7794
7795 * term.c (init_tty): Move setting the terminal name before the
7796 potential user: maybe_fatal.
7797
7798 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
7799
7800 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
7801 all callers changed. Call free_frame_faces to free the face cache.
7802
7803 2008-12-11 Jason Rumney <jasonr@gnu.org>
7804
7805 * w32font.c (fill_in_logfont): Don't assume symbol script means
7806 SYMBOL_CHARSET. (Bug#547)
7807
7808 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
7809 size for surrogates. (Bug#1096, bug#872)
7810
7811 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7812
7813 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
7814
7815 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7816
7817 * process.c (Fsystem_process_attributes, syms_of_process):
7818 Fix typo in name of Ssystem_process_attributes.
7819 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
7820
7821 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
7822
7823 * syntax.c (Fmodify_syntax_entry): Doc fix.
7824
7825 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
7826
7827 * font.c (Ffont_spec): Move usage to end of docstring.
7828
7829 2008-12-10 Jason Rumney <jasonr@gnu.org>
7830
7831 * w32font.c (Qcham): New symbol.
7832 (font_supported_scripts): Add cham, and comments for other new
7833 scripts in bitfield from OpenType spec.
7834 (add_font_entity_to_list): Limit unicode-sip fonts to those that
7835 contain characters beyond the bmp.
7836
7837 2008-12-10 Kenichi Handa <handa@m17n.org>
7838
7839 * ftfont.c (fc_charset_table): Add "unicode-sip".
7840 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
7841 Qunicode_sip.
7842
7843 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
7844
7845 * coding.c (QCdefault_char): Rename from QCdefalut_char.
7846 (Fcoding_system_put): Use QCdefault_char.
7847 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
7848
7849 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
7850
7851 * xftfont.c (syms_of_xftfont): Fix typo.
7852
7853 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
7854
7855 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
7856
7857 * emacs.c (main): Close daemon_pipe on exec.
7858
7859 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
7860
7861 * termchar.h (struct tty): New members termcap_term_buffer and
7862 termcap_strings_buffer.
7863
7864 * term.c (encode_terminal_code): Free any previous memory blocks
7865 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
7866 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
7867 All callers changed.
7868 (init_tty): Store termcap data and string buffers in new struct
7869 tty members termcap_term_buffer and termcap_strings_buffer.
7870 (delete_tty): Free them.
7871 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
7872
7873 2008-12-07 Seiji Zenitani <zenitani@mac.com>
7874
7875 * nsfns.m (ns_set_background_color): Remove code duplication.
7876 It was a substitute for face-transparency on OS X 10.3.
7877
7878 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
7879
7880 * coding.c (make_conversion_work_buffer): Disable buffer
7881 modification hooks in the work buffer.
7882
7883 2008-12-05 Eli Zaretskii <eliz@gnu.org>
7884
7885 * process.c (procfs_system_process_attributes): If `nread' has a
7886 negative value, assign zero to it.
7887
7888 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
7889
7890 * eval.c (Vdebug_on_error): Doc fix.
7891
7892 2008-12-05 Kenichi Handa <handa@m17n.org>
7893
7894 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
7895 second character is a combining character.
7896
7897 2008-12-05 Eli Zaretskii <eliz@gnu.org>
7898
7899 * process.c (procfs_system_process_attributes): Don't use cmd,
7900 cmdsize, and q without initializing them first.
7901
7902 2008-12-04 Jason Rumney <jasonr@gnu.org>
7903
7904 * w32font.c (w32font_draw): Initialize orig_clip before getting
7905 it, and delete it when finished.
7906
7907 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
7908
7909 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
7910 case when running as a daemon before detaching.
7911
7912 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
7913
7914 * w32.c (init_environment): Don't unload library shell32.dll.
7915
7916 2008-12-03 Kenichi Handa <handa@m17n.org>
7917
7918 * font.c (font_at): Set `multibyte' at first.
7919
7920 * coding.c (decode_coding_charset): Check type of an element of
7921 vector VALIDS.
7922 (encode_coding_emacs_mule): Be sure to set `code'.
7923
7924 * fontset.c (face_for_char): Handle invalid charset property correctly.
7925 (font_for_char): Likewise.
7926
7927 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
7928
7929 * font.c (Fopen_font): Compute pixel size correctly.
7930 (font_update_lface): Handle fonts with corrupted size specs,
7931 i.e. non-int and non-float.
7932
7933 * ftfont.c (ftfont_match): Initialize entity variable.
7934 (ftfont_resolve_generic_family): Avoid using uninitialized var.
7935 (ftfont_list_family): Initialize list var earlier.
7936
7937 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
7938
7939 * xterm.c (x_draw_glyph_string): Fall back on
7940 underline_minimum_offset for underline position.
7941
7942 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
7943
7944 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
7945
7946 * character.c (c_string_width): Specify the type for LEN.
7947
7948 2008-12-03 Kenichi Handa <handa@m17n.org>
7949
7950 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
7951 (decode_coding_utf_8): Likewise.
7952 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
7953 (produce_chars): Initialize consumed_chars to 0.
7954
7955 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
7956
7957 * keyboard.c (make_lispy_position): Only use PT if the selected
7958 window is current.
7959
7960 2008-12-02 Andreas Schwab <schwab@suse.de>
7961
7962 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
7963
7964 * doprnt.c (doprnt1): Fix size of charbuf.
7965
7966 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
7967
7968 * keyboard.c (timer_check): Revert last change.
7969
7970 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
7971
7972 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
7973
7974 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
7975
7976 * makefile.w32-in: Update dependencies.
7977 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
7978
7979 2008-12-01 Andreas Schwab <schwab@suse.de>
7980
7981 * font.c (register_font_driver): Use xmalloc.
7982 (font_put_frame_data): Likewise.
7983
7984 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
7985
7986 * xfaces.c (realize_x_face): Make abort condition clearer.
7987
7988 * gtkutil.c (update_frame_tool_bar): Initialize variable.
7989
7990 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
7991
7992 * keyboard.c (timer_check): After a timer runs, ensure that the
7993 selected window's buffer is current.
7994
7995 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
7996
7997 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
7998 It was accidentally restored by the Unicode merge.
7999
8000 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
8001
8002 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
8003
8004 * w32proc.c: Include "coding.h".
8005 (Fw32_short_file_name): Encode filename passed to Windows API.
8006 (Fw32_long_file_name): Encode filename passed to Windows API and
8007 decode back the result. (Bug#1433)
8008
8009 2008-11-29 Kenichi Handa <handa@m17n.org>
8010
8011 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
8012 not before accessing it.
8013
8014 * charset.c (Fdefine_charset_internal): After calculating
8015 min_char, max_char, and fastmap, copy the charset structure again.
8016 (encode_char): Fix the previous change.
8017
8018 2008-11-28 Seiji Zenitani <zenitani@mac.com>
8019
8020 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
8021
8022 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
8023
8024 * nsterm.m (x_set_frame_alpha): New function.
8025
8026 2008-11-27 Eli Zaretskii <eliz@gnu.org>
8027
8028 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
8029
8030 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
8031
8032 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
8033 pointer to check_face_name.
8034
8035 2008-11-27 Kenichi Handa <handa@m17n.org>
8036
8037 * category.h (SET_CATEGORY_SET): Call set_category_set.
8038 (set_category_set): Extern it.
8039
8040 * category.c (hash_get_category_set): New function.
8041 (Fmodify_category_entry): Adjusted for the change of
8042 char_table_ref_and_range. Call hash_get_category_set to get a
8043 category set to store in the table.
8044
8045 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
8046 Funify_charset.
8047
8048 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
8049 (DECODE_CHAR): Check if the decoder vector is ready.
8050 (ENCODE_CHAR): Check if the encoder char-table is ready.
8051 (maybe_unify_char): Extern it.
8052
8053 * charset.c (Vchar_unified_charset_table): Delete it.
8054 (inhibit_load_charset_map): New variable.
8055 (temp_charset_work): New variable.
8056 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
8057 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
8058 New macros.
8059 (load_charset_map): Meaning of control_flag changed. If
8060 inhibit_load_charset_map is nonzero, setup a table in
8061 temp_charset_work.
8062 (load_charset): New argument control_flag.
8063 (map_charset_for_dump): New function.
8064 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
8065 map_charset_for_dump.
8066 (Fdefine_charset_internal): If the charset method is MAP, load
8067 mapping tables by calling load_charset.
8068 (Funify_charset): Don't load a mapping table but directly set
8069 Vchar_unify_table.
8070 (maybe_unify_char): New function.
8071 (decode_char): Don't handle the deleted method MAP_DEFERRED.
8072 Handle the case of inhibit_load_charset_map being nonzero.
8073 (encode_char): Don't handle the deleted method MAP_DEFERRED.
8074 Handle the case of inhibit_load_charset_map being nonzero.
8075 (Fclear_charset_maps): Just free temp_charset_work.
8076 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
8077 variable.
8078
8079 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
8080 change of char_table_ref_and_range.
8081 (char_table_ref_and_range): Change the meaning of argument FROM
8082 and TO. Now the caller must provide initial values for *FROM
8083 and *TO.
8084
8085 * fontset.c (fontset_add): Adjusted for the change of
8086 char_table_ref_and_range.
8087 (fontset_get_font_group): Likewise.
8088 (Ffontset_info): Likewise.
8089
8090 * keymap.c (describe_vector): Adjusted for the change of
8091 char_table_ref_and_range. For char-table, put boundary between
8092 non-ASCII and 8-bit characters.
8093
8094 * print.c (print_object): For bool-vector, delete unnecessary
8095 check of ASCII_BYTE_P.
8096
8097 2008-11-26 Jason Rumney <jasonr@gnu.org>
8098
8099 * w32font.c (w32font_open_internal): Don't include external
8100 leading in font height. (Bug#879)
8101
8102 2008-11-26 Glenn Morris <rgm@gnu.org>
8103
8104 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
8105 redefinition with ifdef. (Bug#1383)
8106
8107 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
8108
8109 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
8110
8111 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
8112
8113 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
8114 New EmacsView methods.
8115 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
8116 Fixes bug #1048,1357,1414.
8117
8118 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
8119
8120 Fix bug #1362.
8121 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
8122 is not an indexed color.
8123 * nsterm.m (free_indexed_color): Add argument checking.
8124 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
8125
8126 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
8127
8128 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
8129 Document confirm-after-completion value for
8130 minibuffer-completion-confirm.
8131
8132 2008-11-24 Jason Rumney <jasonr@gnu.org>
8133
8134 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
8135 warning.
8136
8137 2008-11-23 Jason Rumney <jasonr@gnu.org>
8138
8139 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
8140 restored before returning.
8141
8142 * w32font.c (check_face_name): New function.
8143 (add_font_entity_to_list): Use it to filter out common substituted
8144 fonts. (Bug#642)
8145
8146 2008-11-22 Martin Rudalics <rudalics@gmx.at>
8147
8148 * buffer.c (Fswitch_to_buffer): Reword and mention new option
8149 confirm-nonexistent-file-or-buffer in doc-string.
8150
8151 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
8152
8153 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
8154 Fix copy/paste typo. Add checks.
8155
8156 2008-11-21 Kenichi Handa <handa@m17n.org>
8157
8158 * coding.c (detect_coding_iso_2022): Reject invalid composition
8159 sequence.
8160 (DECODE_COMPOSITION_START): If the current source is the last
8161 block, and the current composition doesn't end, regard this
8162 sequence as invalid.
8163 (decode_coding_iso_2022): Handle invalid composition sequence.
8164
8165 2008-11-20 Martin Rudalics <rudalics@gmx.at>
8166
8167 * window.c (coordinates_in_window): Don't return
8168 ON_VERTICAL_BORDER for the rightmost position of a mode/header
8169 line when the window is not the rightmost one. (Bug#1372)
8170
8171 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
8172
8173 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
8174
8175 2008-11-15 Eli Zaretskii <eliz@gnu.org>
8176
8177 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
8178 and bright_bg if noninteractive is non-zero.
8179
8180 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8181
8182 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
8183 x_draw_glyph_string_background.
8184
8185 * w32term.c (x_draw_glyph_string): Likewise.
8186
8187 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
8188
8189 * xterm.c (x_draw_glyph_string): Stop drawing the background of
8190 the next glyph string once past the overhang width.
8191
8192 * nsterm.m (ns_draw_glyph_string): Likewise.
8193
8194 * w32term.c (x_draw_glyph_string): Likewise.
8195
8196 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
8197
8198 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
8199 double file close.
8200
8201 2008-11-14 Martin Rudalics <rudalics@gmx.at>
8202
8203 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
8204 dedicated status of window before attempting to display another
8205 buffer in it.
8206
8207 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
8208
8209 * msdos.c (Fmsdos_long_file_names):
8210 (syms_of_msdos) <dos-unsupported-char-glyph>:
8211 * dosfns.c (Fint86): Fix typos in docstrings.
8212
8213 2008-11-14 Eli Zaretskii <eliz@gnu.org>
8214
8215 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
8216
8217 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
8218
8219 * puresize.h (BASE_PURESIZE): Increase to 1260000.
8220
8221 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
8222
8223 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
8224
8225 * frame.h: Negative alpha means "don't touch".
8226
8227 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
8228
8229 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
8230
8231 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
8232
8233 * hftctl.c:
8234 * chpdef.h:
8235 * acldef.h: Remove files used only for systems no longer supported.
8236
8237 * Makefile.in: Fix .o alphabetical ordering.
8238 (hftctl.o): Remove dependency, file removed.
8239 (keymap.o, print.o): Depend on charset.h.
8240
8241 2008-11-10 Kenichi Handa <handa@m17n.org>
8242
8243 * character.c (Fget_byte): Fix and make it faster for unibyte target.
8244
8245 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
8246
8247 * dired.c (file_name_completion): If completion_ignore_case is
8248 enabled, ignore case when checking completion-regexp-list.
8249
8250 2008-11-08 Eli Zaretskii <eliz@gnu.org>
8251
8252 * vm-limit.c (get_lim_data): Fix last change.
8253
8254 2008-11-08 Kenichi Handa <handa@m17n.org>
8255
8256 * character.c (Fget_byte): New function.
8257 (syms_of_character): Defsubr Fget_byte.
8258
8259 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
8260
8261 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
8262 cursor position is valid after scrolling.
8263
8264 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
8265
8266 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
8267
8268 2008-11-06 Glenn Morris <rgm@gnu.org>
8269
8270 * xterm.c (handle_one_xevent): Don't let popup menus cause
8271 mouse-autoselect-window related window switching. (Bug#1261)
8272
8273 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
8274
8275 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
8276
8277 2008-11-04 Andreas Schwab <schwab@suse.de>
8278
8279 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
8280
8281 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
8282
8283 * xfns.c (Fx_wm_set_size_hint): New function.
8284
8285 2008-11-03 Martin Rudalics <rudalics@gmx.at>
8286
8287 * textprop.c (Fprevious_single_char_property_change): Return 0
8288 when there's no change in a string. (Bug#1301)
8289
8290 2008-11-02 Martin Rudalics <rudalics@gmx.at>
8291
8292 * frame.c (do_switch_frame): New argument NORECORD passed to
8293 Fselect_window.
8294 (Fselect_frame): New argument NORECORD passed to
8295 do_switch_frame.
8296 (Fset_frame_selected_window): New argument NORECORD passed to
8297 Fselect_frame.
8298 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
8299 in call of do_switch_frame.
8300 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
8301 Handle NORECORD argument in call of Fselect_frame.
8302 * lisp.h (do_switch_frame, Fselect_frame)
8303 (Fset_frame_selected_window): Adjust declarations.
8304 * window.c (select_frame_norecord): New function.
8305 (run_window_configuration_change_hook): Use it and call
8306 Fselect_frame with NORECORD set.
8307 (Fselect_window): Pass NORECORD to Fselect_frame.
8308 (Fset_window_configuration): Handle NORECORD argument in call of
8309 do_switch_frame.
8310 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
8311 Fset_frame_selected_window.
8312 * keyboard.c (command_loop_1): Handle NORECORD in call of
8313 Fselect_frame (currently ifdefd).
8314
8315 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
8316
8317 * emacs.c (USAGE2): Untabify.
8318
8319 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
8320
8321 * composite.c (fill_gstring_header): Fix copy/paste typo.
8322
8323 2008-10-31 Martin Rudalics <rudalics@gmx.at>
8324
8325 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
8326 (Fother_window): Rename argument and rewrite doc-string.
8327 (select_window_norecord): Fix return value. (Bug#1276)
8328
8329 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
8330
8331 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
8332 new frames overriding foreground for tooltips. Based on similar patch
8333 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
8334
8335 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
8336
8337 * emacs.c (Fdaemon_initialized): Initialize nfd.
8338
8339 2008-10-29 Martin Rudalics <rudalics@gmx.at>
8340
8341 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
8342 (Fwindow_text_height): Clarify doc-strings.
8343 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
8344 doc-string of window-scroll-functions.
8345
8346 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
8347
8348 * category.c (syms_of_category): Fix typo in docstring.
8349
8350 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
8351
8352 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
8353 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
8354 Fix typos in docstrings.
8355
8356 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
8357
8358 * emacs.c (daemon_pipe): Make non-static.
8359 (IS_DAEMON): Move definition ...
8360 * lisp.h (IS_DAEMON): ... here.
8361 (daemon_pipe): Declare.
8362 (is_daemon): Remove.
8363 * dispnew.c (init_display): Use IS_DAEMON.
8364
8365 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8366
8367 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
8368 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
8369
8370 * emacs.c (is_daemon): Remove.
8371 (main): Don't set is_daemon.
8372 (IS_DAEMON): New macro.
8373 (Fdaemonp, Fdaemon_initialized): Use it.
8374 (Fdaemon_initialized): Write a char into the pipe to make sure the
8375 parent exits.
8376 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
8377
8378 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
8379
8380 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
8381 over-sized glyph, draw it with the default glyph width.
8382
8383 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
8384 glyph, draw it with the default glyph width.
8385
8386 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
8387 glyph, draw it with the default glyph width.
8388
8389 * xdisp.c (try_scrolling): When computing the distance from the
8390 scroll margin to PT, try moving some distance past the window
8391 bottom before giving up.
8392
8393 2008-10-27 Martin Rudalics <rudalics@gmx.at>
8394
8395 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
8396 (Fset_window_buffer): Explain in doc-string that a window can be
8397 "strongly" dedicated to its buffer.
8398
8399 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
8400
8401 * emacs.c (daemon_name): New variable.
8402 (main): Deal with --daemon=SERVER_NAME.
8403 (Fdaemonp): Return a name if one was passed to --daemon.
8404
8405 2008-10-26 Romain Francoise <romain@orebokech.com>
8406
8407 * emacs.c (daemon_pipe): New variable.
8408 (main): Create a pipe before forking, make the parent exit only after
8409 the child has closed its end of the pipe. Move closing the
8410 descriptors ...
8411 (Fdaemon_initialized): ... here. New function.
8412
8413 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
8414
8415 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
8416 the previous unoptimized table.
8417
8418 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
8419 the distinction between non-nil and non-t value of `dedicated'.
8420
8421 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
8422
8423 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
8424 read_char_minibuf_menu_text is large enough to hold the menu string.
8425
8426 2008-10-25 Martin Rudalics <rudalics@gmx.at>
8427
8428 * window.c (Fget_buffer_window, Fdelete_windows_on)
8429 (Freplace_buffer_in_windows): Make buffer argument optional and
8430 rename to buffer_or_name.
8431
8432 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
8433
8434 * xdisp.c (handle_single_display_spec, handle_display_prop):
8435 Undo 2005-05-16 change.
8436 (handle_stop): Pop iterator if it's loaded with an empty string.
8437 (get_overlay_strings_1): Don't save iterator if it's loaded with
8438 an empty string (bug#1201).
8439
8440 2008-10-24 Kenichi Handa <handa@m17n.org>
8441
8442 * ftfont.c (ftfont_otf_features): Fix previous change.
8443 (ftfont_otf_capability): Check FeatureList.FeatureCount before
8444 calling ftfont_otf_features.
8445
8446 2008-10-24 Kenichi Handa <handa@m17n.org>
8447
8448 * font.c (font_match_p): Fix for the case that a vector of
8449 characters is in script-representative-chars.
8450
8451 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
8452
8453 * dbusbind.c (xd_in_read_queued_messages): New variable.
8454 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
8455 (xd_read_queued_messages): Catch Qdbus_error from the macros.
8456 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
8457 macro. (Bug#1186)
8458
8459 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
8460
8461 * s/sol2-10.h: New file.
8462
8463 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
8464
8465 * xdisp.c (fill_glyph_string): Fix typo in source (though the
8466 poor beast has survived 9+ years and the jump from xterm.c!).
8467
8468 2008-10-23 Martin Rudalics <rudalics@gmx.at>
8469
8470 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
8471 Reword doc-string.
8472 (Fbury_buffer): In doc-string say what happens to the buffer's window.
8473
8474 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
8475
8476 * character.c (syms_of_character) <script-representative-chars>:
8477 <unicode-category-table>: Doc fixes.
8478
8479 2008-10-23 Noah Friedman <friedman@splode.com>
8480
8481 * coding.c (make_conversion_work_buffer): Check that
8482 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
8483 Fget_buffer_create.
8484
8485 2008-10-23 Kenichi Handa <handa@m17n.org>
8486
8487 * font.c (font_add_log): Check the values of extra properties.
8488
8489 2008-10-22 Martin Rudalics <rudalics@gmx.at>
8490
8491 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
8492 Reword doc-string.
8493 (Fset_window_parameter): Use NILP.
8494 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
8495 (Frecenter): Use "selected" instead of "current" window in doc-strings.
8496
8497 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
8498
8499 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
8500
8501 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
8502
8503 * nsfns.m (ns_appkit_version): New function.
8504 (x-server-version): Use it.
8505 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
8506 (x-server-vendor): Don't check_ns().
8507
8508 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
8509
8510 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
8511
8512 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
8513 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
8514
8515 2008-10-22 Kenichi Handa <handa@m17n.org>
8516
8517 * syntax.c (scan_words): Call word_boundary_p instead of comparing
8518 scripts.
8519
8520 * category.c (word_boundary_p): Check scripts instead of charset.
8521 Handle nil value in word-separating-categories and
8522 word-combining-categories.
8523 (syms_of_category): Fix docstrings of word-separating-categories
8524 and word-combining-categories.
8525
8526 2008-10-21 Eli Zaretskii <eliz@gnu.org>
8527
8528 * coding.c (Fencode_coding_region, Fdecode_coding_region)
8529 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
8530
8531 2008-10-21 Martin Rudalics <rudalics@gmx.at>
8532
8533 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
8534 Rename arg "buffer" to "buffer_or_name".
8535 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
8536 it optional.
8537 (no_switch_window): Remove since the return value is not used.
8538 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
8539 Consider window as dedicated when Fwindow_dedicated_p returns a
8540 non-nil value.
8541 * lisp.h: Remove prototype for no_switch_window.
8542
8543 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
8544
8545 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
8546 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
8547
8548 2008-10-21 Kenichi Handa <handa@m17n.org>
8549
8550 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
8551 check Vlatin_extra_code_table.
8552
8553 2008-10-20 Eli Zaretskii <eliz@gnu.org>
8554
8555 * fileio.c (Fset_file_modes): Doc fix.
8556
8557 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
8558
8559 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
8560 in arrays.
8561
8562 2008-10-19 Martin Rudalics <rudalics@gmx.at>
8563
8564 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
8565 Mention kill-buffer in doc-string.
8566 (Fset_window_buffer): Reinsert tem check removed in last commit.
8567 (Fenlarge_window, Fshrink_window): Have argument names and
8568 doc-string follow Elisp manual more closely.
8569
8570 2008-10-18 Eli Zaretskii <eliz@gnu.org>
8571
8572 * fileio.c (Fset_file_modes): Doc fix.
8573
8574 2008-10-18 Martin Rudalics <rudalics@gmx.at>
8575
8576 * window.c (Fwindow_width, Fset_window_start)
8577 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
8578 (Fdelete_windows_on, Freplace_buffer_in_windows):
8579 Make doc-strings follow code and Elisp manual more closely.
8580 (Fwindow_dedicated_p): Make window argument optional.
8581 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
8582 (Fset_window_buffer): Respect any non-nil dedicated value for
8583 window. Rename "buffer" argument to "buffer_or_name".
8584
8585 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
8586
8587 * m/sh3.h: New file, machine description for SuperH.
8588
8589 2008-10-17 Martin Rudalics <rudalics@gmx.at>
8590
8591 * window.c (Fsplit_window): Rename arg horflag to horizontal.
8592
8593 2008-10-17 Kenichi Handa <handa@m17n.org>
8594
8595 * ftfont.c (ftfont_otf_features): Fix indexing
8596 gsub_gpos->FeatureList.Feature. Check the validity of indices.
8597
8598 2008-10-16 Magnus Henoch <mange@freemail.hu>
8599
8600 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
8601 (Fdbus_call_method_asynchronously): Ditto.
8602 This change makes C-h f display the argument list.
8603
8604 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
8605
8606 * fileio.c (Fexpand_file_name): Doc fix.
8607
8608 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
8609 of :foreground and :background equivalent to unspecified (20.x
8610 compatibility).
8611
8612 2008-10-15 Eli Zaretskii <eliz@gnu.org>
8613
8614 * buffer.c (syms_of_buffer): Doc fix.
8615
8616 2008-10-14 Kenichi Handa <handa@m17n.org>
8617
8618 * font.c (font_clear_prop): When clearing font width, clear the
8619 average width field too.
8620
8621 2008-10-12 Andreas Schwab <schwab@suse.de>
8622
8623 * ftfont.c (ftfont_shape_by_flt): Make static.
8624 * ftfont.h (ftfont_shape_by_flt): Don't declare.
8625
8626 * font.c: Don't include <m17n-flt.h>.
8627
8628 2008-10-10 Eli Zaretskii <eliz@gnu.org>
8629
8630 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
8631
8632 2008-10-09 Eli Zaretskii <eliz@gnu.org>
8633
8634 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
8635 away code.
8636
8637 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
8638
8639 * dispnew.c (update_text_area): Avoid looping due to large glyph
8640 overhangs (bug#1070).
8641
8642 2008-10-09 Kenichi Handa <handa@m17n.org>
8643
8644 * fontset.c (face_for_char): If face->fontset is negative, just
8645 return ascii_face.
8646
8647 * font.c (font_delete_unmatched): Fix previous change.
8648 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
8649
8650 2008-10-09 Martin Rudalics <rudalics@gmx.at>
8651
8652 * frame.c (Fraise_frame): On text-only terminals select frame in
8653 order to make it visible. (Bug#1061)
8654
8655 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
8656
8657 * fontset.c (fontset_find_font): Check frame validity.
8658
8659 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
8660
8661 * gtkutil.c (xg_display_open): Reset default display if none exists.
8662 (xg_display_close): Allow Emacs to close all displays (bug#985).
8663
8664 2008-10-06 Andreas Schwab <schwab@suse.de>
8665
8666 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
8667
8668 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
8669
8670 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
8671
8672 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
8673
8674 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
8675 during initialization.
8676
8677 2008-10-04 Eli Zaretskii <eliz@gnu.org>
8678
8679 * xdisp.c (redisplay_internal): If frame switched, redisplay the
8680 whole thing on MSDOS frames as well as on a TTY.
8681
8682 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
8683 well as for TTY.
8684 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
8685 well as on a TTY.
8686
8687 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
8688 as well as for TTY.
8689
8690 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
8691
8692 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
8693 MSDOS frames as well.
8694
8695 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
8696
8697 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
8698 correct arguments.
8699 * menu.c (find_and_return_menu_selection): Add cast.
8700
8701 2008-10-03 Glenn Morris <rgm@gnu.org>
8702
8703 * emacs.c (USAGE1): Add --daemon.
8704
8705 2008-10-02 Eli Zaretskii <eliz@gnu.org>
8706
8707 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
8708 100, so it's in percents as advertised.
8709
8710 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
8711
8712 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
8713 (ns_output.current_cursor, ns_output.desired_cursor)
8714 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
8715 (FRAME_NEW_CURSOR_COLOR): Remove.
8716
8717 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
8718 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
8719 enumeration (HOLLOW_BOX_CURSOR, etc.).
8720
8721 * nsterm.m (ns_frame_rehighlight): Remove commented code.
8722 (draw_window_cursor): Simplify code.
8723 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
8724 Don't change cursor type. In latter, call rehighlight instead of doing
8725 updates manually.
8726 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
8727 Use core Emacs cursor types.
8728
8729 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
8730
8731 2008-10-02 Martin Rudalics <rudalics@gmx.at>
8732
8733 * process.c (Faccept_process_output): Fix doc-string.
8734
8735 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
8736
8737 * gmalloc.c (__sbrk): Also define for uClibc.
8738
8739 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
8740 for uClibc.
8741
8742 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8743
8744 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
8745 styles.
8746 (nsfont_open): Reenable the cache.
8747
8748 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
8749
8750 * font.c (font_matching_entity): Reflect ATTRS in font selection.
8751 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
8752
8753 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
8754
8755 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
8756 a suspended terminal.
8757
8758 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
8759
8760 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
8761
8762 2008-09-30 Eli Zaretskii <eliz@gnu.org>
8763
8764 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
8765
8766 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
8767
8768 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
8769 in a continued line coincides with a line beginning.
8770
8771 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
8772
8773 * nsfont.m (nsfont_trait_distance): Fix bug.
8774 (nsfont_list): Return a list rather than a vector (syncs with Handa
8775 changes of 2008-05-14).
8776 (nsfont_open): Improve logging.
8777
8778 2008-09-29 Andreas Schwab <schwab@suse.de>
8779
8780 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
8781
8782 2008-09-28 Martin Rudalics <rudalics@gmx.at>
8783
8784 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
8785 name as char-resolve-modifiers.
8786 Reported by: Markus Triska <markus.triska@gmx.at>
8787
8788 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
8789
8790 * dispnew.c (init_display): Return earlier when running as a daemon.
8791
8792 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
8793
8794 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
8795
8796 2008-09-27 Eli Zaretskii <eliz@gnu.org>
8797
8798 * composite.c (Fcomposition_get_gstring)
8799 (Fcompose_region_internal, Fcompose_string_internal)
8800 (Ffind_composition_internal): Doc fix.
8801 (syms_of_composite) <compose-chars-after-function>: Doc fix.
8802 (syms_of_composite) <auto-composition-function>: Doc fix.
8803 (syms_of_composite) <composition-function-table>: Doc fix.
8804
8805 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
8806
8807 * search.c (wordify): New argument for lax word-ends.
8808 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
8809
8810 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
8811
8812 * lisp.h (is_daemon): Declare.
8813 * dispnew.c (init_display): Do not try to initialize the terminal
8814 when running as a daemon.
8815
8816 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
8817
8818 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
8819 x_display_pixel_height.
8820
8821 2008-09-22 Martin Rudalics <rudalics@gmx.at>
8822
8823 * undo.c (record_point): Don't call Fundo_boundary for first
8824 change. (Bug#731)
8825
8826 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
8827
8828 * emacs.c (Fdaemonp): Doc fix.
8829
8830 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
8831
8832 * emacs.c (main): Place #ifdef in the proper place.
8833
8834 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
8835
8836 * emacs.c (standard_args): Add --daemon.
8837 (main): Disconnect from the terminal when --daemon is passed.
8838 (is_daemon): New variable.
8839 (Fdaemonp): New function.
8840 (syms_of_emacs): Defsubr it.
8841
8842 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
8843
8844 * xdisp.c (get_next_display_element): Handle string display
8845 correctly when checking for the end of a box run.
8846
8847 2008-09-20 Glenn Morris <rgm@gnu.org>
8848
8849 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
8850 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
8851 (Frename_file): Avoid copying to trash if a rename involves
8852 a delete. (Bug#964).
8853
8854 2008-09-20 Eli Zaretskii <eliz@gnu.org>
8855
8856 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
8857 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
8858 frames as well as termcap frames.
8859 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
8860 get_named_tty.
8861
8862 2008-09-19 Eli Zaretskii <eliz@gnu.org>
8863
8864 * process.c (procfs_system_process_attributes): Fix cmdline in
8865 case /proc/PID/cmdline is empty.
8866
8867 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
8868 x_display_pixel_height.
8869
8870 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
8871
8872 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
8873
8874 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
8875 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
8876
8877 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
8878
8879 * dispextern.h (struct it): Move line_wrap away from the middle of
8880 bitfields. Move voffset in struct iterator_stack_entry after the
8881 bitfields. Move tab_width near after another short.
8882
8883 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
8884
8885 * frame.h (struct frame): Move alpha from the middle of bitfields.
8886
8887 * window.h (struct window): Move frozen_window_start_p after the
8888 rest of the bitfields to reduce padding.
8889
8890 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
8891
8892 * xterm.h (x_display_info): Remove `height' and `width' members.
8893
8894 * nsterm.h (ns_display_info): Remove `height' and `width' members.
8895
8896 * w32term.h (w32_display_info): Remove `height', `width',
8897 `height_in', and `width_in' members.
8898
8899 * xterm.c (x_display_pixel_height, x_display_pixel_width):
8900 New functions.
8901 (x_calc_absolute_position): Use them.
8902 (x_term_init): Omit removed `height' and `width' members.
8903
8904 * w32term.c (x_display_pixel_height, x_display_pixel_width):
8905 New functions.
8906 (w32_read_socket, x_calc_absolute_position): Use them.
8907 (w32_initialize_display_info, w32_term_init): Omit removed members
8908 of w32_display_info.
8909
8910 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
8911 New functions.
8912 (ns_initialize_display_info): Omit removed members of ns_display_info.
8913
8914 * xterm.c (x_display_pixel_height, x_display_pixel_width):
8915 New functions.
8916 (x_calc_absolute_position): Use them.
8917 (x_term_init): Omit removed `height' and `width' members.
8918
8919 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
8920 (compute_tip_xy):
8921 * frame.c (x_fullscreen_adjust):
8922 * xmenu.c (menu_position_func): Use x_display_pixel_height and
8923 x_display_pixel_width.
8924
8925 2008-09-18 Kenichi Handa <handa@m17n.org>
8926
8927 * composite.c (fill_gstring_header): Don't check FROM and TO here.
8928 (composition_compute_stop_pos): Fix handling of static composition.
8929 (Fcomposition_get_gstring): Check FROM and TO at first.
8930
8931 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8932
8933 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
8934 mixup (YAILOM).
8935
8936 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
8937
8938 * indent.c (Fvertical_motion): Use position reported by iterator
8939 instead of PT for determining screen motion (bug#943).
8940
8941 2008-09-17 Romain Francoise <romain@orebokech.com>
8942
8943 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
8944
8945 2008-09-17 Kenichi Handa <handa@m17n.org>
8946
8947 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
8948
8949 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
8950 if necessary.
8951
8952 2008-09-16 Kenichi Handa <handa@m17n.org>
8953
8954 * coding.c (make_conversion_work_buffer): Avoid calling
8955 Fget_buffer_create if it is not necessary.
8956
8957 2008-09-15 Martin Rudalics <rudalics@gmx.at>
8958
8959 * window.c (Fselect_window): Don't update window_select_count and
8960 use_time when norecord is not nil.
8961
8962 2008-09-14 Kenichi Handa <handa@m17n.org>
8963
8964 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
8965 specpdl_ptr.
8966
8967 2008-09-12 Kenichi Handa <handa@m17n.org>
8968
8969 * indent.c (scan_for_column): Don't handle automatic composition
8970 if the current buffer is not associated with a window.
8971
8972 * composite.c (composition_reseat_it): If the current buffer is
8973 not associated with a window, ignore the automatic composition.
8974 (find_automatic_composition): Likewise.
8975
8976 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8977
8978 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
8979 (Fgpm_mouse_stop): Use it.
8980 * termhooks.h (close_gpm): Declare.
8981 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
8982 connection if Gpm_GetEvent fails.
8983
8984 * window.c (set_window_buffer): Always preserve current-buffer.
8985
8986 2008-09-12 Glenn Morris <rgm@gnu.org>
8987
8988 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
8989
8990 2008-09-11 Glenn Morris <rgm@gnu.org>
8991
8992 * charset.c (charset-map-path): Doc fix.
8993
8994 2008-09-10 Kenichi Handa <handa@m17n.org>
8995
8996 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
8997
8998 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
8999 compose a grapheme cluster with the preceding base glyph.
9000
9001 * composite.c (composition_compute_stop_pos): Fix previous change.
9002 Reset cmp_it->id to -1 at first.
9003
9004 2008-09-10 Glenn Morris <rgm@gnu.org>
9005
9006 * Makefile.in (character.o, chartab.o): Fix config.h typo.
9007
9008 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
9009
9010 * keyboard.c (read_key_sequence): Reapply translation maps when
9011 switching keyboards.
9012
9013 2008-09-09 Kenichi Handa <handa@m17n.org>
9014
9015 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
9016 characters.
9017
9018 * composite.c (FORWARD_CHAR): Fix calculation
9019 of (POSITION).pos_byte.
9020 (composition_compute_stop_pos): Limit the search of composition to
9021 at most 500 characters ahead. If we reach the limit or find a
9022 newline, set cmp_it->ch to -2 and return 0.
9023 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
9024
9025 2008-09-08 Kenichi Handa <handa@m17n.org>
9026
9027 * indent.c (Fvertical_motion): Be sure to set
9028 it_overshoot_expected if it.cmp_it.id is non-negative.
9029
9030 2008-09-07 Andreas Schwab <schwab@suse.de>
9031
9032 * callproc.c (Fcall_process): Don't hold references to string data
9033 across garbage collection. Move initialisation of new_argv down
9034 to avoid compiler bug.
9035
9036 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9037
9038 * process.c (Fsystem_process_attributes): Doc fix.
9039
9040 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
9041
9042 * callproc.c (Fcall_process): Canonicalize current directory name.
9043
9044 * xdisp.c (move_it_to): When moving by vpos, ensure that the
9045 iterator advances to the next line if the current line ends in a
9046 continued tab.
9047
9048 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
9049
9050 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
9051 member to point to cmp_from.
9052
9053 * xdisp.c: Doc fix for references to gidx data member.
9054
9055 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9056
9057 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
9058
9059 2008-09-07 Kenichi Handa <handa@m17n.org>
9060
9061 * composite.c (FORWARD_CHAR): Check STOP after
9062 incrementing (POSITION).pos.
9063
9064 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
9065
9066 * process.c (Fsystem_process_attributes): Doc fix.
9067
9068 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
9069
9070 * keyboard.c (Ftop_level): Doc fix.
9071
9072 2008-09-06 Eli Zaretskii <eliz@gnu.org>
9073
9074 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
9075 minibuffer, don't let lower part of menu invade the echo area.
9076
9077 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
9078 "char *q" to access menu text and advance through it. Revert the
9079 change that displayed ">" instead of ASCII character 0x10.
9080
9081 2008-09-05 Eli Zaretskii <eliz@gnu.org>
9082
9083 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
9084 toggle boxes and radio buttons on MS-DOS as well.
9085
9086 2008-09-05 Kenichi Handa <handa@m17n.org>
9087
9088 * composite.c (autocmp_chars): Check lookback count.
9089 (composition_compute_stop_pos): Set cmp_it->lookback.
9090 (composition_reseat_it): Check lookback count.
9091 (struct position_record): New struct.
9092 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
9093 (find_automatic_composition): New function.
9094 (composition_adjust_point): Use find_automatic_composition.
9095
9096 * dispextern.h (struct composition_it): New member lookback.
9097
9098 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
9099
9100 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
9101 if moving by a single line.
9102
9103 2008-09-02 Andreas Schwab <schwab@suse.de>
9104
9105 * xterm.c (x_delete_display): Fix merge error.
9106
9107 * fileio.c (Fexpand_file_name): Remove unused variables.
9108
9109 2008-09-02 Eli Zaretskii <eliz@gnu.org>
9110
9111 * fileio.c (Fexpand_file_name): Copy argument `name' into local
9112 storage on all platforms, not just on DOS_NT.
9113
9114 2008-09-02 Jason Rumney <jasonr@gnu.org>
9115
9116 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
9117 Ensure mouse is not grabbed after menu is finished.
9118
9119 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
9120
9121 * xfaces.c (Finternal_set_alternative_font_family_alist)
9122 (Finternal_set_alternative_font_registry_alist): Properly copy
9123 entire alist structure.
9124
9125 2008-09-01 Kenichi Handa <handa@m17n.org>
9126
9127 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
9128 representative chars of the script is a vector.
9129 (ftfont_list): Handle the case where the representative chars of
9130 the script is a vector.
9131
9132 * character.c (syms_of_character): Docstring of
9133 script-representative-chars fixed.
9134
9135 2008-08-31 Eli Zaretskii <eliz@gnu.org>
9136
9137 * msdos.c (BUILD_CHAR_GLYPH): New macro.
9138 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
9139 the menu. Allocate larger buffer for `text', to account for
9140 possible ^C characters.
9141
9142 2008-08-31 Martin Rudalics <rudalics@gmx.at>
9143
9144 * xdisp.c (prepare_menu_bars): Don't call
9145 Vwindow_size_change_functions with arg Qt.
9146
9147 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
9148
9149 * font.h (font_range):
9150 * fileio.c (report_file_error):
9151 * composite.c (composition_update_it): Yet another int/Lisp_Object
9152 mixup (YAILOM).
9153
9154 2008-08-30 Glenn Morris <rgm@gnu.org>
9155
9156 * data.c (Fmake_variable_frame_local): Doc fix.
9157
9158 * frame.c (Fmodify_frame_parameters): Doc fix.
9159
9160 2008-08-30 Eli Zaretskii <eliz@gnu.org>
9161
9162 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
9163 needed by GetTokenInformation.
9164 (w32_system_process_attributes): Check return values of all system
9165 APIs.
9166
9167 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
9168 only when the state changes.
9169 (IT_update_begin, IT_update_end): Add termscript trace.
9170
9171 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
9172 clipboard is unavailable. Set dst to NULL if it doesn't point to
9173 malloc'ed data.
9174 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
9175 passing random values to xfree.
9176
9177 * dispnew.c (init_display): Set `tty's association in frame's
9178 parameters alist to the name of the terminal device, if that is known.
9179
9180 2008-08-29 Jason Rumney <jasonr@gnu.org>
9181
9182 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
9183
9184 2008-08-29 Eli Zaretskii <eliz@gnu.org>
9185
9186 * composite.c (fill_gstring_body): Avoid compiler warnings.
9187
9188 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
9189 LGLYPH_SET_CODE to avoid compiler warnings.
9190
9191 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
9192
9193 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
9194
9195 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
9196 LGLYPH_SET_CODE.
9197
9198 2008-08-29 Kenichi Handa <handa@m17n.org>
9199
9200 * fileio.c (report_file_error): Don't downcase the first character
9201 of errstring if it is still unibyte.
9202
9203 2008-08-29 Kenichi Handa <handa@m17n.org>
9204
9205 These changes are to re-implement the automatic composition so
9206 that it doesn't use text properties.
9207
9208 * Makefile.in (ftfont.o): Depend on composite.h.
9209 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
9210
9211 * character.h (Vunicode_category_table): Extern it.
9212
9213 * character.c (Vunicode_category_table): New variable.
9214 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
9215
9216 * chartab.c (optimize_sub_char_table): Perform more greedy
9217 optimization.
9218
9219 * composite.h (enum composition_method):
9220 Delete COMPOSITION_WITH_GLYPH_STRING.
9221 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
9222 (Vcomposition_function_table): Extern it.
9223 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
9224 (composition_gstring_put_cache, composition_gstring_from_id)
9225 (composition_gstring_p, composition_gstring_width)
9226 (composition_compute_stop_pos, composition_reseat_it)
9227 (composition_update_it, composition_adjust_point): Extern them.
9228 (Fcomposition_get_gstring): EXFUN it.
9229
9230 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
9231 (Vcomposition_function_table)
9232 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
9233 (gstring_hash_table, gstring_work, gstring_work_headers):
9234 New variables.
9235 (gstring_lookup_cache, composition_gstring_put_cache)
9236 (composition_gstring_from_id, composition_gstring_p)
9237 (composition_gstring_width, fill_gstring_header)
9238 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
9239 (composition_reseat_it, composition_update_it)
9240 (composition_adjust_point, Fcomposition_get_gstring): New functions.
9241 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
9242 and gstring_work_headers. DEFVAR_LISP composition-function-table.
9243 Defsubr composition_get_gstring.
9244
9245 * dispextern.h (struct glyph): New union u.cmp. Delete the member
9246 cmp_id.
9247 (struct glyph_string): Delete the member gidx. New members
9248 cmp_id, cmp_from, and cmp_to.
9249 (enum it_method): Delete GET_FROM_COMPOSITION.
9250 (struct composition_it): New struct.
9251 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
9252 Delete c, len, cmp_id, cmp_len in u.comp.
9253
9254 * font.h (enum lgstring_indices): Delete it.
9255 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
9256 (enum lglyph_indices): Likewise.
9257 (font_range): Adjust extern.
9258 (font_fill_lglyph_metrics): Extern it.
9259
9260 * font.c (QCf): New variable.
9261 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
9262 (font_prepare_composition): Delete this function.
9263 (font_range): Type and arguments changed.
9264 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
9265 (font_fill_lglyph_metrics): New function.
9266 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
9267 (syms_of_font): DEFSYM QCf. Delete defsubr for
9268 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
9269 Defsubr Sfont_shape_gstring.
9270
9271 * fontset.h (font_for_char): Extern it.
9272
9273 * fontset.c (font_for_char): New function.
9274
9275 * ftfont.c: Include composite.h.
9276 (ftfont_resolve_generic_family): Add langset "en" to pattern.
9277 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
9278
9279 * indent.c: Include composite.h and dispextern.h.
9280 (check_composition): Delete this function.
9281 (scan_for_column): Handle composition by
9282 composition_compute_stop_pos, composition_reseat_it, and
9283 composition_update_it.
9284 (compute_motion): Likewise.
9285 (Fvertical_motion): Fix checking of composition.
9286
9287 * keyboard.c (adjust_point_for_property): Check composition by
9288 composition_adjust_point.
9289
9290 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
9291 struct glyph_string.
9292
9293 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
9294 (append_composite_glyph): Adjust for the change of struct it and
9295 struct glyph.
9296 (produce_composite_glyph): Likewise.
9297
9298 * w32term.c (x_draw_composite_glyph_string_foreground):
9299 Adjust for the change of struct glyph_string.
9300 (x_draw_glyph_string): Likewise.
9301
9302 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
9303 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
9304
9305 * xdisp.c: Include font.h.
9306 (it_props): Delete the entry for Qauto_composed.
9307 (init_iterator): Initialize it->cmp_it.id to -1.
9308 (compute_stop_pos): Call composition_compute_stop_pos.
9309 (face_before_or_after_it_pos): Adjust for the change of struct it.
9310 (handle_auto_composed_prop): Delete it.
9311 (handle_composition_prop): Handle only static composition.
9312 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
9313 from xassert. Initialize it->cmp_it.stop_pos.
9314 (push_it): Adjust for the change of struct it.
9315 (pop_it): Likewise.
9316 (get_next_element): Delete next_element_from_composition.
9317 (CHAR_COMPOSED_P): New macro.
9318 (get_next_display_element): For automatic composition, get a face
9319 from the font in the glyph-string.
9320 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
9321 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
9322 (next_element_from_string): Check if the character at the current
9323 position is composed by CHAR_COMPOSED_P.
9324 (next_element_from_buffer): Likewise.
9325 (next_element_from_composition): Adjust for the change of struct it.
9326 Update it->cmp_it.
9327 (dump_glyph): Adjust for the change of struct glyph.
9328 (fill_composite_glyph_string): Adjust for the change of struct
9329 it and struct glyph. Don't handle automatic composition here.
9330 (fill_gstring_glyph_string): New function.
9331 (x_get_glyph_overhangs): Handle automatic composition.
9332 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
9333 (BUILD_GSTRING_GLYPH_STRING): New macro.
9334 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
9335 automatic composition.
9336 (append_composite_glyph): Adjust for the change of struct it and
9337 struct glyph.
9338 (x_produce_glyphs): Adjust for the change of struct it.
9339
9340 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
9341 the change of struct glyph_string.
9342 (x_draw_glyph_string): Likewise.
9343
9344 2008-08-29 Glenn Morris <rgm@gnu.org>
9345
9346 * buffer.c (word-wrap): Doc fix.
9347 * xdisp.c (truncate-partial-width-windows): Doc fix.
9348 Increase default to 50.
9349
9350 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
9351
9352 * xdisp.c (update_tool_bar_unwind): New function.
9353 (update_tool_bar): Temporarily set selected frame before building
9354 tool-bar items.
9355
9356 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
9357
9358 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
9359 snprintf, respectively.
9360 (xd_append_arg): Convert strings with Fstring_make_unibyte.
9361
9362 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
9363
9364 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
9365 LDFLAGS to GNUstep CC invocation.
9366
9367 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
9368
9369 * indent.c (Fvertical_motion): Revert last change. Handle the
9370 general case where we are moving forward, and PT spans multiple
9371 screen lines.
9372
9373 * eval.c (find_handler_clause): Temporarily increase
9374 max-lisp-eval-depth while printing the backtrace buffer, to
9375 guarantee that help-mode code can run.
9376
9377 2008-08-27 Eli Zaretskii <eliz@gnu.org>
9378
9379 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
9380 colors under -rv.
9381 (IT_set_frame_parameters): Don't swap foreground and background
9382 colors if `(reverse . t)' is present in the frame properties.
9383 (internal_terminal_init): Call init_frame_faces only for the
9384 initial frame.
9385
9386 2008-08-27 Andreas Schwab <schwab@suse.de>
9387
9388 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
9389
9390 2008-08-27 Andreas Schwab <schwab@suse.de>
9391
9392 * search.c (search_buffer): Set char_base to zero only at the end.
9393
9394 2008-08-27 Kenichi Handa <handa@m17n.org>
9395
9396 * fileio.c (report_file_error): Fix handling of multibyte error string.
9397
9398 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
9399
9400 * xterm.c (x_term_init): Temporarily hide the partially
9401 initialized terminal while calling vendor-specific-keysyms.
9402
9403 2008-08-26 Eli Zaretskii <eliz@gnu.org>
9404
9405 * msdos.c (internal_terminal_init): Most initializations done only
9406 once, especially initial_screen_colors[] and termscript open.
9407
9408 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
9409
9410 * eval.c (Fcondition_case): Doc fix.
9411
9412 * widgetprv.h (EmacsFramePart): Change font member to the new font
9413 struct.
9414
9415 * widget.c: Include character.h and font.h for XSETFONT.
9416 (setup_frame_gcs): Compute X font id from font struct, just once.
9417
9418 2008-08-26 Eli Zaretskii <eliz@gnu.org>
9419
9420 * term.c (get_named_tty): Fix last change.
9421
9422 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
9423
9424 * indent.c (Fvertical_motion): If moving forward starting from a
9425 multi-line string, move the iterator to the last line of that string.
9426
9427 2008-08-25 Eli Zaretskii <eliz@gnu.org>
9428
9429 * frame.c (do_switch_frame): Mark previously displayed frame as
9430 obscured for FRAME_MSDOS_P frames as well.
9431
9432 2008-08-24 Eli Zaretskii <eliz@gnu.org>
9433
9434 * frame.c (make_terminal_frame): Initialize f->terminal,
9435 f->terminal->reference_count, and scroll bars on MS-DOS as well.
9436 Set the top frame to newly created frame.
9437 (Fmake_terminal_frame): Reuse the_only_display_info.
9438
9439 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
9440 estimating available memory.
9441
9442 2008-08-23 David Reitter <david.reitter@gmail.com>
9443
9444 * nsterm.m (ns_draw_window_cursor): Don't call
9445 NSDisableScreenUpdates and NSEnableScreenUpdates on
9446 non-NS_IMPL_COCOA systems.
9447
9448 2008-08-23 Andreas Schwab <schwab@suse.de>
9449
9450 * process.c (procfs_system_process_attributes): Fix use of
9451 uninitialized variables.
9452
9453 2008-08-23 Eli Zaretskii <eliz@gnu.org>
9454
9455 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
9456
9457 * dispnew.c (init_display): Remove MS-DOS specific conditions for
9458 calling tty-set-up-initial-frame-faces.
9459
9460 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
9461 Allow MSDOS frames along with X frames.
9462
9463 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
9464 addition to output_termcap.
9465
9466 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
9467
9468 * termchar.h (FRAME_TTY): Support output_msdos_raw.
9469 (struct tty_display_info) [MSDOS]: Add fields related to mouse
9470 highlight.
9471
9472 * process.c [!subprocesses]: Define QCname.
9473 (syms_of_process): Intern and staticpro it.
9474
9475 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
9476 Adjust for changes in encoding/decoding routines.
9477 Use encode_coding_object and decode_coding_object instead of
9478 encode_coding and decode_coding.
9479
9480 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
9481
9482 * dosfns.c: Include frame.h before termhooks.h.
9483 (dos_cleanup): Use CURTTY ()->termscript instead of a global
9484 variable termscript.
9485
9486 * s/msdos.h (USER_FULL_NAME): Define.
9487 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
9488
9489 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
9490 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
9491 pw->pw_gecos.
9492
9493 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
9494 SELECTED_FRAME as additional (1st) argument.
9495 (tty_read_avail_input): Handle output_msdos_raw in
9496 addition to output_termcap.
9497
9498 * msdos.c: Include frame.h before termhooks.h.
9499 (mouse_on, mouse_off, mouse_moveto, mouse_init)
9500 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
9501 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
9502 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
9503 (IT_set_terminal_modes, IT_reset_terminal_modes)
9504 (IT_set_frame_parameters): Use tty->termscript instead of a global
9505 variable termscript.
9506 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
9507 global variable terminal_coding. Don't refer to
9508 Vnonascii_translation_table.
9509 (internal_terminal_init): Set Vwindow_system in current_kboard.
9510 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
9511 Announce date and time of session start, if termscript is open.
9512 Don't zero out the_only_display_info (it is done in
9513 term.c:init_tty). Open termscript only of not already open.
9514 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
9515 here instead of dos_ttraw. Don't initialize display if this is an
9516 initial tty. Don't set FRAME_FONT.
9517 (Vwindow_system_version): Bump to 23.
9518 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
9519 is available, set up mouse_position_hook.
9520 (dos_ttraw, IT_set_terminal_modes): If called with initial
9521 terminal, do nothing.
9522 (IT_set_frame_parameters): Handle the Qtty_type frame
9523 parameter by calling internal_terminal_init.
9524 (dos_set_window_size, show_mouse_face)
9525 (clear_mouse_face, IT_note_mode_line_highlight)
9526 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
9527 (dos_rawgetc): Use tty_display_info instead of x_display_info.
9528 (initialize_msdos_display): New function.
9529 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
9530 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
9531 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
9532 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
9533 Accept additional argument: a pointer to a frame. Update all callers.
9534 (request_sigio, unrequest_sigio): Don't define, now defined on
9535 sysdep.c.
9536 (IT_write_glyphs): Rewrite to use encode_terminal_code.
9537
9538 * term.c [MSDOS]: Include msdos.h.
9539 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
9540 conditional to DOS_NT. Allow only one call to this function in a
9541 session. Don't allocate a new struct tty_display_info; instead,
9542 reuse the_only_display_info. Call get_tty_size to get screen
9543 dimensions. Call init_baud_rate to set bad_rate.
9544 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
9545 (Fsuspend_tty) [MSDOS]: Don't close input and output.
9546 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
9547 (get_tty_terminal, get_named_tty, Ftty_type)
9548 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
9549 output_termcap.
9550 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
9551 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
9552 only when subprocesses are supported.
9553
9554 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
9555 f->output_data.x.
9556 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
9557 terminal devices.
9558
9559 * msdos.h: Remove definition of struct x_display_info and struct
9560 x_output.
9561 (FRAME_FONT): Use output_data.tty.
9562 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
9563 (struct x_display_info): Rename from display_info. Update all users in
9564 msdos.c.
9565 (struct x_output): Remove background_pixel and foreground_pixel.
9566 (the_only_display_info): Rename from the_only_x_display.
9567 (dos_ttraw): Update prototype.
9568
9569 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
9570 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
9571
9572 2008-08-23 Jason Rumney <jasonr@gnu.org>
9573
9574 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
9575 (fn_TIFFSetDirectory): New library function used.
9576 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
9577 (tiff_load): Use :index to select among multiple images. Set count
9578 property when multiple images exist.
9579 (gif_format): Use :index, not :image.
9580
9581 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
9582
9583 * xdisp.c (try_scrolling): Check INT_MAX instead of
9584 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
9585 to obtain INT_MAX.
9586
9587 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
9588
9589 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
9590
9591 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
9592
9593 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
9594 GNUstep library location.
9595
9596 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
9597
9598 * xfaces.c (x_update_menu_appearance): Check validity of menu font
9599 before using it.
9600
9601 * puresize.h (BASE_PURESIZE): Increase to 1250000.
9602
9603 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
9604
9605 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
9606 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
9607 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
9608 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
9609 (EmacsApp-cursor_blink_handler): Remove declaration.
9610 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
9611 match 01 Feb 2008 changes in xterm.c.
9612 (ns_read_socket): Add cast to avoid warning.
9613 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
9614 GNUstep.
9615
9616 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
9617
9618 * xselect.c (x_get_foreign_selection): Return nil if desired
9619 selection could not be obtained, instead of signalling an error.
9620
9621 2008-08-20 David Reitter <david.reitter@gmail.com>
9622
9623 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
9624 * nsterm.m: Remove ns-specific code for cursor blinking.
9625 (ns_draw_window_cursor): Clear cursor properly rather than
9626 redrawing the area. Respect width of bar cursors.
9627 These changes enable the use of generic blink-cursor-mode and
9628 generic cursor types in NS and support smooth cursor movements (do
9629 not blink off after command).
9630 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
9631 Nextstep, too.
9632
9633 2008-08-19 Kenichi Handa <handa@m17n.org>
9634
9635 * font.c (Vfont_log_deferred): New variable.
9636 (font_add_log): Check Vfont_log_deferred.
9637 (font_deferred_log): New function.
9638
9639 * font.h (font_deferred_log): Extern it.
9640
9641 * fontset.c (reorder_font_vector): Use encoding charset of fonts
9642 for sorting.
9643 (face_for_char): Use deferred log.
9644
9645 2008-08-18 Kenichi Handa <handa@m17n.org>
9646
9647 * fontset.c (face_for_char): Add font log.
9648
9649 * font.c (font_add_log): Add the font properties :script, :lang,
9650 and :otf in the log.
9651
9652 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
9653
9654 * xdisp.c: Remove dead code.
9655 (handle_invisible_prop, next_overlay_string): Defer call to
9656 setup_for_ellipsis.
9657 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
9658
9659 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
9660
9661 * xfaces.c (lookup_derived_face): Properly handle possible zero
9662 return value of get_lface_attributes.
9663 (merge_faces): Don't tell lookup_derived_face to signal an error
9664 if face is not found.
9665
9666 * dired.c (Fdirectory_files): Doc fix.
9667
9668 * process.c (make_process): Initialize kill_without_query struct
9669 member.
9670
9671 2008-08-15 Eli Zaretskii <eliz@gnu.org>
9672
9673 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
9674 Alternative calculation of totphys for Visual Studio 6.
9675
9676 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
9677
9678 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
9679 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
9680 All users changed.
9681 (stat): Only root directory passed to GetDriveType. Allow RAM
9682 disk as well as local fixed disk when w32-get-true-file-attributes
9683 is set to `local'.
9684 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
9685 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
9686 (w32_cached_id, w32_add_to_cache): New functions.
9687 (get_name_and_id): Look account names in the cache before calling
9688 lookup_account_sid.
9689 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
9690 New initialization flags.
9691 (globals_of_w32): Initialize them to zero.
9692 (w32_system_process_attributes): Use w32_cached_id and
9693 w32_add_to_cache.
9694
9695 2008-08-14 Lawrence Mitchell <wence@gmx.li>
9696
9697 * lread.c (Fread_char, Fread_char_exclusive): If no character
9698 event is read before timeout is reached, return nil, rather than
9699 converting to a number.
9700
9701 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
9702
9703 * fns.c (use_dialog_box): Doc fix.
9704
9705 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
9706 on OS X.
9707
9708 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
9709
9710 * frame.c (Qns_parse_geometry): New var.
9711 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
9712
9713 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
9714
9715 * xdisp.c (x_produce_glyphs): Handle the case when font has no
9716 space character in calculating tabs.
9717
9718 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
9719
9720 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
9721
9722 2008-08-10 Glenn Morris <rgm@gnu.org>
9723
9724 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
9725 silence gcc "limited range of data type" warnings in some
9726 make_fixnum_or_float calls.
9727
9728 2008-08-09 Eli Zaretskii <eliz@gnu.org>
9729
9730 * w32.c (w32_system_process_attributes): If the process does not
9731 exist, return nil.
9732
9733 * w32.c: Include thelp32.h, psapi.h and coding.h.
9734 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
9735 declarations.
9736 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
9737 (Process32Next_Proc): New typedefs.
9738 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
9739 (g_b_init_process32_next, g_b_init_open_thread_token)
9740 (g_b_init_impersonate_self, g_b_init_revert_to_self)
9741 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
9742 (g_b_init_get_process_working_set_size)
9743 (g_b_init_global_memory_status_ex): New static variables.
9744 (globals_of_w32): Initialize them.
9745 (create_toolhelp32_snapshot, process32_first, process32_next)
9746 (open_thread_token, impersonate_self, revert_to_self)
9747 (get_process_memory_info, get_process_working_set_size)
9748 (global_memory_status, global_memory_status_ex): New wrapper
9749 functions.
9750 (w32_list_system_processes, w32_system_process_attributes)
9751 (enable_privilege, restore_privilege, ltime, process_times):
9752 New functions.
9753 (convert_time_raw): New function.
9754 (convert_time): Remove conversion of FILETIME into time in 100
9755 nsec units, call convert_time_raw instead.
9756
9757 * process.h (w32_list_system_processes, w32_system_process_attributes):
9758 Add prototypes.
9759 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
9760 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
9761 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
9762 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
9763
9764 * process.c (Fsystem_process_attributes): Doc fix.
9765
9766 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
9767
9768 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
9769 a continued multi-char glyph; if so, advance to the actual glyph.
9770
9771 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
9772
9773 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
9774
9775 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
9776 (.m.o): Use it.
9777 * config.in: Regenerate.
9778
9779 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
9780
9781 * xdisp.c (redisplay_window): Revert last change.
9782 (try_window): Check bottom scroll margin too.
9783
9784 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
9785
9786 * config.in: Regenerate.
9787
9788 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
9789 -list-load-path-shadows'.
9790 (nsgui.h): Reduce number of things depending on it.
9791
9792 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
9793
9794 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
9795 instead of window-end which does the wrong thing at eob.
9796 (try_cursor_movement): Minor optimization.
9797 (redisplay_window): If scroll margin is defined, don't assume
9798 window doesn't need scrolling.
9799
9800 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
9801
9802 * config.in: Regenerate.
9803
9804 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
9805 (mostlyclean): Don't delete *.d under NS.
9806
9807 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
9808
9809 2008-08-06 Kenichi Handa <handa@m17n.org>
9810
9811 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
9812
9813 2008-08-06 Andreas Schwab <schwab@suse.de>
9814
9815 * config.in: Regenerate.
9816
9817 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
9818
9819 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
9820 forcing a window start.
9821
9822 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
9823 (auto_save_1): Update modtime when auto-save-list-file-name is on.
9824
9825 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9826
9827 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
9828 argument.
9829
9830 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
9831
9832 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
9833 <scroll-down-aggressively, before-change-functions>:
9834 <after-change-functions>: Reflow docstrings.
9835
9836 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9837 Ken Raeburn <raeburn@gnu.org>
9838
9839 Dock menu customization, based on a patch by Ken Raeburn, plus some
9840 other fixes.
9841 * nsmenu.m (dockMenu): New variable.
9842 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
9843
9844 * nsterm.h (dockMenu): Declare.
9845
9846 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
9847 (ns_term_init): Initialize dockMenu.
9848 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
9849 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
9850 left.
9851
9852 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
9853
9854 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
9855
9856 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
9857
9858 * config.in: Regenerate.
9859
9860 2008-08-04 Seiji Zenitani <zenitani@mac.com>
9861
9862 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
9863
9864 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
9865
9866 * nsterm.h (find_and_call_menu_selection): Fix prototype.
9867
9868 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
9869
9870 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
9871
9872 * keyboard.h: Comment an #endif.
9873
9874 * lisp.h (have_menus_p): Adjust comment.
9875
9876 * menu.c (find_and_return_menu_selection): Fix comparison with
9877 client_data.
9878
9879 * nsmenu.m (popup_activated_flag): New variable.
9880 (popup_activated): New function.
9881 (menu-or-popup-active-p): New exported lisp definition.
9882 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
9883 when popup done.
9884 (ns_popup_dialog): Set popup_activated_flag.
9885
9886 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
9887 version for GNUstep (handled by conditional typedef in nsterm.m).
9888 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
9889 in rgb.txt).
9890
9891 * process.c (init_process): Use DARWIN_OS, not DARWIN.
9892
9893 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
9894
9895 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
9896
9897 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
9898 shortcircuit if popup_activated like GTK and X toolkit.
9899
9900 * m/inter386.h: Change DARWIN to DARWIN_OS.
9901
9902 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
9903 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
9904 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
9905 comment on NO_SOCK_SIGIO.
9906
9907 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
9908
9909 * nsterm.m (windowDidResize): Remove stopModal call.
9910
9911 2008-08-03 Andreas Schwab <schwab@suse.de>
9912
9913 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
9914 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
9915
9916 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
9917
9918 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
9919 Don't use uninitialized pointer variable when using getrlimit.
9920
9921 2008-08-02 Jason Rumney <jasonr@gnu.org>
9922
9923 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
9924
9925 2008-08-02 Eli Zaretskii <eliz@gnu.org>
9926
9927 * alloc.c (NSTATICS): Bump to 0x640.
9928
9929 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
9930
9931 * lisp.h: Add prototype for directory_files_internal.
9932
9933 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
9934 New functions.
9935 (syms_of_process): Defsubr them. Add initializations for various
9936 Q* symbols used in procfs_system_process_attributes.
9937 (procfs_list_system_processes, procfs_system_process_attributes)
9938 [HAVE_PROCFS]: New functions.
9939 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
9940 (procfs_get_total_memory): New functions.
9941
9942 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
9943
9944 * xfaces.c (Fx_load_color_file): Fix previous change;
9945 it is #ifdef WINDOWSNT, not WINDOWS_NT.
9946
9947 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
9948
9949 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
9950
9951 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9952
9953 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
9954
9955 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
9956
9957 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
9958
9959 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
9960 define NSApplicationDelegateReplySuccess.
9961 (EmacsView -converstationIdentifier): Use long instead of
9962 NSInteger for GNUstep, since it doesn't have NSInteger.
9963
9964 * xmenu.c: Revert last change.
9965
9966 * keyboard.h: Fix last change.
9967
9968 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
9969
9970 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
9971 on Windows.
9972
9973 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
9974
9975 Warning clearing and clean-up in NS port.
9976 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
9977 Add prototypes.
9978 * nsgui.h (FACE_DEFAULT): Remove, unused.
9979 (XGCValues): Change colors to unsigned long.
9980 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
9981 nsterm.m.
9982 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
9983 (ns_list_fonts): Remove, unused.
9984 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
9985 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
9986 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
9987 (nsfont_draw): Compare face colors to 0, not nil.
9988 * nsmenu.m (struct widget_value): Drop unneeded declaration.
9989 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
9990 (-addSubmenuWithTitle:): Use NSMenuItem class.
9991 (ns_popup_menu): Use NO, not NULL, for enabled setting.
9992 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
9993 (ns_clip_to_row): Make gc arg a BOOL.
9994 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
9995 ns_clip_to_row() call.
9996 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
9997 used). Cast FRAME_FONT assignments.
9998 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
9999 (ns_string_to_lispmod): Change arg to const char.
10000 (ns_term_init): Use NSMenuItem class.
10001 (EmacsApp -openFile:): Move to different section of file.
10002 (EmacsApp -application:openFiles:): Don't return a value, call
10003 -replyToOpenOrPrint:.
10004 (EmacsView -keyDown:): Fix up cast.
10005 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
10006 (EmacsView -menuDown:): Cast tag in call to
10007 find_and_call_menu_selection().
10008 (ns_list_fonts): Remove, unused.
10009 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
10010 (ns_fontname_to_xlfd): Make static.
10011 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
10012 Remove prototypes (now in keyboard.h).
10013 (next_menubar_widget_id): Remove, unused.
10014 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
10015 Remove prototypes (now in keyboard.h).
10016 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
10017
10018 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
10019
10020 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
10021 (floatfns.o): Depend on syssignal.h.
10022 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
10023
10024 * systty.h: Fix previous change that removed BSD_TERMIOS.
10025 Add comments to #ifdefs.
10026
10027 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
10028
10029 * w32fns.c (w32-load-color-file): Remove.
10030 (x-open-connection): Use renamed Fx_load_color_file.
10031 * xfaces.c (x-load-color-file): Add.
10032 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
10033 Emacs.clr.
10034 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
10035
10036 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
10037
10038 * dbusbind.c (Fdbus_call_method_asynchronously)
10039 (Fdbus_method_error_internal): New defuns.
10040 (xd_read_message): Handle also reply messages.
10041 (Vdbus_registered_functions_table): Extend docstring.
10042
10043 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
10044
10045 * keyboard.c (gobble_input): Fix previous change.
10046
10047 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
10048
10049 * bitmaps/README:
10050 * xfns.c:
10051 * termcap.c:
10052 * term.c:
10053 * syswait.h:
10054 * systty.h:
10055 * systime.h:
10056 * syssignal.h:
10057 * sysdep.c:
10058 * process.h:
10059 * process.c:
10060 * print.c:
10061 * ndir.h:
10062 * lread.c:
10063 * keyboard.c:
10064 * getpagesize.h:
10065 * floatfns.c:
10066 * fileio.c:
10067 * emacs.c:
10068 * doc.c:
10069 * dispnew.c:
10070 * dired.c:
10071 * data.c:
10072 * callproc.c:
10073 * buffer.c:
10074 * README:
10075 * Makefile.in:
10076 * s/template.h:
10077 * s/msdos.h:
10078 * m/vax.h: Remove VMS support.
10079 * s/vms.h:
10080 * vlimit.h:
10081 * uaf.h:
10082 * temacs.opt:
10083 * param.h:
10084 * ioctl.h: Remove file.
10085
10086 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
10087
10088 * s/ms-w32.h (MULTI_KBOARD): Remove.
10089 * xterm.c:
10090 * xselect.c:
10091 * xfns.c:
10092 * window.c:
10093 * w32term.c:
10094 * w32fns.c:
10095 * terminal.c:
10096 * termhooks.h:
10097 * term.c:
10098 * sysdep.c:
10099 * keyboard.h:
10100 * keyboard.c:
10101 * frame.h:
10102 * frame.c:
10103 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
10104 * config.in: Regenerate.
10105
10106 2008-07-30 Jason Rumney <jasonr@gnu.org>
10107
10108 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
10109
10110 * w32font.c (w32font_encode_char): Leave as unicode if in range.
10111 (w32font_open_internal): Get unicode version of textmetrics.
10112 Don't enable or disable glyph indices here.
10113 (w32font_open): Disable use of glyph indices.
10114
10115 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
10116
10117 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
10118
10119 * minibuf.c (Vread_buffer_function): Doc fix.
10120
10121 2008-07-30 John Paul Wallington <jpw@pobox.com>
10122
10123 * minibuf.c (read_buffer_completion_ignore_case): New var.
10124 (Fread_buffer): Use it.
10125
10126 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
10127
10128 * systty.h (sensemode): Remove empty #if. Remove reference to
10129 BSD_TERMIOS, unused.
10130
10131 * sysdep.c: Remove reference to DGUX.
10132 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
10133
10134 * config.in: Regenerate.
10135
10136 2008-07-30 Jason Rumney <jasonr@gnu.org>
10137
10138 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
10139
10140 2008-07-29 Jason Rumney <jasonr@gnu.org>
10141
10142 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
10143 is populated.
10144 (uniscribe_encode_char): Always use uniscribe.
10145 Avoid using context if cache is populated.
10146
10147 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
10148
10149 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
10150 open menu.
10151
10152 * gtkutil.c (menu_nav_ended): Remove.
10153 (create_menus): Remove signal connect for menu_nav_ended.
10154
10155 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
10156
10157 * xdisp.c (redisplay_window): Check return value of
10158 compute_window_start_on_continuation_line before forcing a window
10159 start.
10160
10161 2008-07-28 Jason Rumney <jasonr@gnu.org>
10162
10163 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
10164
10165 * w32term.c (w32_enable_unicode_output, cleartype_active):
10166 Remove obsolete display options.
10167 (x_draw_glyph_string_background): Don't use old cleartype_active
10168 workaround.
10169 (w32_initialize): Remove cleartype_active initialization.
10170 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
10171
10172 2008-07-28 Andreas Schwab <schwab@suse.de>
10173
10174 * lisp.h (init_weak_hash_tables, syms_of_font)
10175 (xd_read_queued_messages, syms_of_dbusbind): Declare.
10176 (remove_hash_entry): Don't declare.
10177 * eval.c (maybe_call_debugger): Make static and move before use.
10178 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
10179 * xdisp.c: Include "gtkutil.h" if USE_GTK.
10180 * xterm.h (x_set_frame_alpha): Declare.
10181
10182 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
10183
10184 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
10185 (create_menus): Connect selection-done to menu_nav_ended.
10186
10187 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
10188
10189 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
10190 Set Vx_resource_name to a fallback. Replace read of 'buffered'
10191 parameter with read of 'alpha' one.
10192 (Qns_frame_parameter): Remove.
10193 * nsselect.m (selection-coding-system)
10194 (next-selection-coding-system, Vselection_coding_system)
10195 (Vnext_selection_coding_system): Drop.
10196
10197 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
10198
10199 * nsfns.m (do-applescript, do_applescript): Rename to
10200 ns-do-applescript, ns_do_applescript, and move within file.
10201
10202 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
10203
10204 Remove support for Mac Carbon.
10205 * mactoolbox.c:
10206 * macterm.h:
10207 * macterm.c:
10208 * macselect.c:
10209 * macmenu.c:
10210 * macgui.h:
10211 * macfns.c:
10212 * mac.c: Remove file.
10213 * s/darwin.h:
10214 * m/intel386.h:
10215 * xfaces.c:
10216 * xdisp.c:
10217 * window.c:
10218 * tparam.c:
10219 * termhooks.h:
10220 * termcap.c:
10221 * term.c:
10222 * syssignal.h:
10223 * sysselect.h:
10224 * sysdep.c:
10225 * process.c:
10226 * lread.c:
10227 * lisp.h:
10228 * keyboard.c:
10229 * image.c:
10230 * fringe.c:
10231 * frame.h:
10232 * frame.c:
10233 * fontset.c:
10234 * font.h:
10235 * font.c:
10236 * fns.c:
10237 * fileio.c:
10238 * emacs.c:
10239 * dispnew.c:
10240 * dispextern.h:
10241 * config.in:
10242 * atimer.c:
10243 * Makefile.in: Remove code for Carbon.
10244
10245 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10246
10247 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
10248
10249 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10250
10251 * macterm.h (kCGBitmapByteOrder32Host): New define for
10252 non-universal SDKs.
10253
10254 * image.c (mac_create_cg_image_from_image, image_load_image_io)
10255 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
10256
10257 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
10258 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
10259
10260 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
10261
10262 * w32inevt.c: Include dispextern.h.
10263
10264 2008-07-26 Andreas Schwab <schwab@suse.de>
10265
10266 * print.c (print_object): Fix off-by-one in last change.
10267
10268 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
10269
10270 * term.c (syms_of_term): Don't initialize default_orig_pair,
10271 default_set_foreground and default_set_background on Windows.
10272
10273 2008-07-25 Jason Rumney <jasonr@gnu.org>
10274
10275 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
10276 ScriptItemize. Clean up return value checking. Remove unused
10277 variables.
10278 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
10279 shaping engine.
10280
10281 * w32font.c (w32font_has_char): Handle the case where we can't
10282 determine the script for a character.
10283
10284 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
10285
10286 * term.c (syms_of_term): Initialize default_orig_pair,
10287 default_set_foreground, and default_set_background.
10288
10289 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
10290 clash (bug#86).
10291 (getloadavg): Callers changed.
10292
10293 * image.c (svg_load_image): Fix last change.
10294 (svg_load_image): Use rsvg_handle_get_dimensions to check that
10295 image size is valid. Use g_object_unref instead of deprecated
10296 rsvg_handle_free to free rsvg handle.
10297 (x_from_xcolors): Don't initialize pixmap (silence compiler).
10298
10299 2008-07-25 Jason Rumney <jasonr@gnu.org>
10300
10301 * w32font.c (w32font_encode_char): Encode characters outside BMP as
10302 surrogates before looking up glyph index.
10303 (w32font_text_extents): Encode as surrogates if falling back to
10304 functions that need UTF-16 wide chars.
10305
10306 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
10307 BMP as surrogates before looking up glyph index.
10308
10309 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
10310
10311 * image.c (svg_load_image): Check for failure in return value of
10312 rsvg_handle_get_pixbuf. Free rsvg handle when done.
10313
10314 2008-07-25 Jason Rumney <jasonr@gnu.org>
10315
10316 * w32font.c (Fx_select_font): Reverse sense of second arg.
10317
10318 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
10319
10320 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
10321 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
10322
10323 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
10324 (PURESIZE): Use it.
10325
10326 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
10327
10328 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
10329 * m/alpha.h (TEXT_END):
10330 * m/ibmrs6000.h (TEXT_END):
10331 * m/macppc.h (TEXT_END):
10332 * s/darwin.h (TEXT_END):
10333 * s/msdos.h (TEXT_END): Remove, unused.
10334 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
10335 * s/cygwin.h: Remove comment.
10336
10337 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
10338 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
10339 * m/intel386.h (DOT_GLOBAL_START):
10340 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
10341 (USG): Remove, file not used on USG platforms.
10342
10343 * Makefile.in (HAVE_X11): Remove empty #else.
10344
10345 2008-07-24 Andreas Schwab <schwab@suse.de>
10346
10347 * fileio.c (Finsert_file_contents): Properly adjust undo list
10348 after format conversion.
10349
10350 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
10351
10352 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
10353 (menu_nav_ended): Remove.
10354 (create_menus): Remove signal connect for menu_nav_ended.
10355 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
10356 create_menus.
10357 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
10358
10359 2008-07-23 Jason Rumney <jasonr@gnu.org>
10360
10361 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
10362 with opened font.
10363 (w32font_open): Set font type to gdi.
10364
10365 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
10366
10367 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
10368
10369 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
10370 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
10371 defines it.
10372 * unexec.c (ADDR_CORRECT): Define unconditionally.
10373
10374 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
10375
10376 * unexec.c: Remove code depending on !COFF and USG, the file is
10377 not used for such systems.
10378
10379 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
10380 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
10381 (LD_SWITCH_SYSTEM_1): Remove, update users.
10382
10383 * s/darwin.h (DATA_END):
10384 * m/intel386.h (DATA_END):
10385 * m/ibmrs6000.h (DATA_END):
10386 * m/alpha.h (DATA_END): Remove, unused.
10387
10388 * config.in: Regenerate.
10389 * s/ms-w32.h (subprocesses): Define unconditionally.
10390 * s/template.h (subprocesses): Update comment.
10391 * s/vms.h (subprocesses):
10392 * s/usg5-4.h (subprocesses):
10393 * s/hpux10-20.h (subprocesses):
10394 * s/gnu-linux.h (subprocesses):
10395 * s/cygwin.h (subprocesses):
10396 * s/bsd-common.h (subprocesses):
10397 * s/aix4-2.h (subprocesses):
10398 * s/darwin.h (subprocesses): Do not define, defined by default now.
10399
10400 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
10401 Remove all references.
10402 (temacs): Add GNUstep specific ld flags.
10403
10404 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
10405 similarly to what X does.
10406
10407 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
10408
10409 * nsfns.m (x-list-fonts): Remove.
10410 (syms_of_nsfns): Drop the x-list-fonts declaration.
10411 * nsterm.m: Get rid of remaining "//" comments.
10412
10413 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
10414
10415 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
10416
10417 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
10418 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
10419 (Fns_own_selection_internal, Fx_disown_selection_internal)
10420 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
10421
10422 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
10423 ... */' style of docstrings. Doc fixes.
10424
10425 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
10426
10427 * terminfo.c (UP, BC, PC): Undo previous change.
10428
10429 * nsfns.m: Rename ns prefixed functions/variables to the
10430 corresponding x versions. Update references.
10431
10432 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
10433
10434 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
10435
10436 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
10437
10438 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
10439 Remove forwarding functions.
10440 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
10441 non-static.
10442 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
10443 non-static.
10444 (ns_frame_parm_handlers): Use the new names.
10445 (syms_of_nsfns): Move to the end of file.
10446
10447 * nsterm.m (syms_of_nsterm): Move to the end of file.
10448
10449 * dispnew.c (init_display): Remove code for X10.
10450
10451 2008-07-22 Jason Rumney <jasonr@gnu.org>
10452
10453 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
10454 bare drive.
10455
10456 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
10457
10458 * nsterm.m (syms_of_nsterm): Remove debugging println.
10459
10460 2008-07-22 David Reitter <david.reitter@gmail.com>
10461
10462 * nsfns.m (do_applescript, F_do_applescript): NS version of the
10463 Carbon implementation of the same functionality: execute arbitrary
10464 AppleScript code.
10465
10466 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
10467
10468 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
10469 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
10470 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
10471 (Fx_display_mm_height, Fx_display_mm_width)
10472 (Fx_display_backing_store, Fx_display_visual_class)
10473 (Fx_display_save_under, Fx_open_connection)
10474 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
10475 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
10476 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
10477 (Fx_display_pixel_width, Fx_display_pixel_height)
10478 (Fx_display_usable_bounds, Fx_display_planes)
10479 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
10480 ... */' style of docstrings.
10481
10482 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
10483
10484 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
10485 on this platform.
10486 (mips):
10487 * m/iris4d.h (mips): Do not define.
10488 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
10489
10490 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
10491
10492 * image.c:
10493 * nsfns.m:
10494 * nsselect.m:
10495 * nsterm.h:
10496 * nsterm.m: Rename ns prefixed functions/variables to the
10497 corresponding x versions. Update references.
10498
10499 * m/ibms390x.h (NO_REMAP): Do not undefine.
10500
10501 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
10502
10503 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
10504
10505 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
10506 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
10507 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
10508 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
10509 (Fns_display_mm_height, Fns_display_mm_width)
10510 (Fns_display_backing_store, Fns_display_visual_class)
10511 (Fns_display_save_under, Fns_open_connection)
10512 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
10513 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
10514 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
10515 (Fns_display_pixel_width, Fns_display_pixel_height)
10516 (Fns_display_usable_bounds, Fx_display_planes)
10517 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
10518
10519 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
10520
10521 * print.c (print_object): Check print_depth before searching for
10522 circularities.
10523
10524 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
10525
10526 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
10527 only sprintf.
10528
10529 2008-07-21 Kenichi Handa <handa@m17n.org>
10530
10531 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
10532
10533 2008-07-20 Andreas Schwab <schwab@suse.de>
10534
10535 * syntax.c (find_start_pos, find_start_value)
10536 (find_start_value_byte, find_start_begv, find_defun_start)
10537 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
10538
10539 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
10540
10541 * s/sol2-3.h: Insert contents of s/sol2.h.
10542 (LD_SWITCH_SYSTEM): Remove redundant definition.
10543 * s/sol2.h: Remove, unused.
10544
10545 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
10546
10547 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
10548
10549 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
10550
10551 * Makefile.in (ns_appdir): Fix typo in find command.
10552
10553 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
10554
10555 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
10556
10557 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
10558 added not supported anymore.
10559
10560 * s/usg5-4-2.h (LIBS_SYSTEM):
10561 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
10562
10563 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
10564 * s/lynxos.h (GETPGRP_NO_ARG):
10565 * s/hpux10-20.h (NO_SIOCTL_H):
10566 * s/gnu.h (GETPGRP_NO_ARG):
10567 * s/gnu-linux.h (NO_SIOCTL_H):
10568 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
10569 * s/cygwin.h (GETPGRP_NO_ARG):
10570 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
10571 (C_DEBUG_SWITCH): Remove duplicate definition.
10572
10573 * m/ibms390.h: Remove boilerplate comments.
10574
10575 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
10576
10577 * process.c (HAVE_SERIAL): Consolidate ifdefs.
10578 (wait_reading_process_output): Remove code for SunOS, platform not
10579 supported anymore. Use SOLARIS2 instead of sun.
10580
10581 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10582
10583 * font.c (font_open_by_name): Under NS, default lface height to zero.
10584 (font_open_for_lface): Under NS, set size based on frame fontsize.
10585 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
10586 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
10587
10588 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10589
10590 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
10591 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
10592 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
10593 YES/NO.
10594 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
10595 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
10596 * Makefile.in (clean): Clear out build destination dir.
10597
10598 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10599
10600 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
10601 xterm, xselect.
10602 * lisp.h: Remove declaration of hash_remove.
10603 * nsgui.h: Remove redefinitions of hash_remove.
10604 * fns.c (hash_remove): Rename to hash_remove_from_table.
10605
10606 2008-07-19 Seiji Zenitani <zenitani@mac.com>
10607
10608 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
10609 strdup() the family UTF8String before modifying it.
10610
10611 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
10612
10613 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
10614 NS_FACE_BACKGROUND with 0 instead of nil.
10615 * nsfont.m (nsfont_draw): Same.
10616
10617 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
10618
10619 * nsfns.m (ns_set_background_color): Fix crash.
10620
10621 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
10622
10623 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
10624
10625 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
10626
10627 * puresize.h (BASE_PURESIZE): Increase to 1240000.
10628
10629 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10630
10631 * gtkutil.c: Include <config.h> instead of "config.h".
10632
10633 * lisp.h (Foverlay_buffer): Add EXFUN.
10634
10635 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
10636 child process to complete child_setup. Undo 2005-09-21 change.
10637
10638 * s/darwin.h: Mention setsid after vfork.
10639
10640 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10641
10642 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
10643 Depend on macgui.h.
10644
10645 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
10646 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
10647
10648 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
10649 and f19.
10650 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
10651
10652 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
10653 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
10654 Remove enumerators.
10655
10656 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
10657 Check if FACE_FROM_ID returns NULL.
10658
10659 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
10660
10661 * w32inevt.c (change_frame_size): Remove extern declaration.
10662 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
10663 change_frame_size.
10664
10665 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
10666
10667 * getloadavg.c: Revert last change (2008-07-15).
10668
10669 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
10670
10671 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
10672 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
10673 from configure.
10674
10675 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
10676
10677 * s/sol2.h:
10678 * s/sol2-4.h: Reorganize conditionals.
10679
10680 * ecrt0.c: Remove code depending on m68000, not used anymore.
10681
10682 * fns.c (hash_remove): Make static.
10683 * lisp.h (hash_remove): Don't prototype.
10684
10685 * m/ibmrs6000.h:
10686 * m/ibms390x.h:
10687 * m/macppc.h: Remove boilerplate comments.
10688
10689 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
10690 Solaris, which does not need them.
10691
10692 * m/vax.h: Remove comments about unsupported systems.
10693
10694 * s/darwin.h: Reorganize ifdefs.
10695
10696 2008-07-17 Andreas Schwab <schwab@suse.de>
10697
10698 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
10699
10700 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
10701
10702 Use SDATA. Follow coding convention of placing operators at
10703 beginning of next line rather than end of previous line, and placing
10704 spaces around infix operators.
10705
10706 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
10707 in case it was defined already.
10708 USE @GNUSTEP_MAKEFILES@ rather than envvars.
10709 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
10710 ns_default.
10711 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
10712 Lisp_Objects.
10713 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
10714 (ns_defined_color, ns_color_to_lisp): Declare.
10715 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
10716 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
10717 it's accepted even with USE_LISP_UNION_TYPE.
10718 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
10719 (update_frame_tool_bar): Remove apparently obsolete tests for
10720 non-integerness of f->tool_bar_lines.
10721 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
10722 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
10723 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
10724 (nsfont_open): Don't confuse NULL for Qnil.
10725 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
10726 * menu.h (find_and_call_menu_selection):
10727 * menu.c (find_and_call_menu_selection): Use just int for vector size.
10728 (find_and_return_menu_selection): Always return something.
10729 * frame.h: Include dispextern.h for Display_Info.
10730 (display_x_get_resource): Declare.
10731
10732 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
10733
10734 * syntax.c: Remove stdio.h include accidentally introduced in
10735 Emacs.app commit.
10736 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
10737 NS_IMPL_COCOA.
10738 * keyboard.c (handle_async_input, input_available_signal): Remove
10739 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
10740
10741 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
10742
10743 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
10744 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
10745 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
10746 Use SDATA.
10747
10748 * keymap.c: Remove all NS-specific code.
10749 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
10750 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
10751 where_is_preferred_modifier, return a different value depending on how
10752 preferred is the binding.
10753 (where_is_internal): Adjust accordingly.
10754 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
10755 Adjust to new preferred_sequence_p.
10756 (syms_of_keymap): Declare `where-is-preferred-modifier'.
10757 * keyboard.c (parse_solitary_modifier): Not static any more.
10758 * keyboard.h (parse_solitary_modifier): Declare.
10759
10760 2008-07-16 Andreas Schwab <schwab@suse.de>
10761
10762 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
10763 of easymenu.
10764
10765 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
10766
10767 * xdisp.c (move_it_in_display_line): Account for word wrap, so
10768 that we don't move off the line.
10769
10770 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
10771
10772 * keyboard.c (Qsuper): Remove.
10773 (parse_menu_item): Don't call where_is_internal specially for NS.
10774
10775 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
10776
10777 * s/gnu-linux.h: Remove boilerplate comments.
10778
10779 * m/alpha.h (__ELF__): Consolidate conditions.
10780
10781 * m/m68k.h (linux): Use GNU_LINUX instead.
10782 Remove boilerplate comments.
10783
10784 * m/intel386.h: Undo refactoring from previous change.
10785 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
10786 too, remove dead code.
10787 (linux): Use GNU_LINUX instead.
10788
10789 2008-07-16 Jason Rumney <jasonr@gnu.org>
10790
10791 * w32gui.h: Repeat 26 June changes lost by last change.
10792
10793 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
10794
10795 * systty.h: Remove code for Aix on 386, unsupported platform.
10796
10797 * s/ms-w32.h: Remove boilerplate comments.
10798 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
10799
10800 * s/gnu-linux.h (TERM): Remove support.
10801 (HAVE_SYSVIPC): Remove, unused.
10802 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
10803 for this system.
10804
10805 * process.c: Remove support for IRIS, unused.
10806 Remove support for TERM, not relevant anymore.
10807
10808 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
10809 used with the definition.
10810
10811 * s/aix4-2.h (static): Do not undef.
10812
10813 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
10814 only used on Aix.
10815 (HAVE_SYSVIPC): Remove, unused.
10816
10817 * m/hp800.h (CANNOT_DUMP): Do not undef.
10818
10819 * m/alpha.h: Fix comment.
10820
10821 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
10822 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
10823 used by this configuration.
10824 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
10825 * unexec.c: Remove code depending on HPUX and
10826 USG_SHARED_LIBRARIES, not used with this file. Remove code
10827 depending on IRIS, unused. Remove if 0-ed code.
10828
10829 * s/template.h: Remove comments about static.
10830
10831 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
10832 Remove if 0-ed code.
10833 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
10834 were the same as the default.
10835 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
10836 Remove boilerplate comments.
10837 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
10838 (HAVE_SYSVIPC): Remove, unused.
10839 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
10840
10841 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10842 Remove boilerplate comments.
10843 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10844 Remove boilerplate comments.
10845 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
10846 Remove boilerplate comments.
10847 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
10848
10849 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
10850 USG systems which do not use DATA_SEG_BITS.
10851 Refactor code. Remove boilerplate comments.
10852
10853 * m/ibms390.h:
10854 * m/m68k.h:
10855 * s/bsd-common.h:
10856 * s/cygwin.h:
10857 * s/darwin.h:
10858 * s/freebsd.h:
10859 * s/gnu.h:
10860 * s/msdos.h: Remove boilerplate comments.
10861
10862 * m/iris4d.h: Remove boilerplate comments and code for systems that
10863 do not use this file.
10864 (IRIS_4D): Remove, unused.
10865
10866 * m/mips.h: Remove boilerplate comments and code for systems that
10867 do not use this file.
10868 (SIGN_EXTEND_CHAR):
10869 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
10870 * unexmips.c: Remove file, unused.
10871
10872 * editfns.c (Fuser_full_name): Replace the only use of
10873 USER_FULL_NAME with its value.
10874 * config.in: Regenerate.
10875
10876 2008-07-16 David Reitter <david.reitter@gmail.com>
10877
10878 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
10879 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
10880
10881 2008-07-16 Glenn Morris <rgm@gnu.org>
10882
10883 * emacs.c (system-type): Doc fix.
10884
10885 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
10886
10887 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
10888 If the cache doesn't work, let's fix it, rather than work around it.
10889
10890 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10891
10892 * Makefile.in: Correct additions for nsfont.o in last commit.
10893 * nsfont.m: New file (forgot last commit).
10894
10895 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
10896
10897 * callproc.c (set_initial_environment): Initialize
10898 Vprocess_environment under CANNOT_DUMP (fixes crash when
10899 batch-compiling for bootstrap).
10900
10901 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
10902 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10903
10904 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
10905 fix crash due to different init order.
10906
10907 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10908
10909 Changes and additions for NeXTstep windowing system (Cocoa and
10910 GNUstep) support.
10911
10912 * Makefile.in:
10913 * config.in: Support defines and build commands for NS port.
10914 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
10915 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
10916 * dispextern.h: Include nsgui.h and add needed typedefs under NS
10917 windowing.
10918 (struct face): Add synth_ital field.
10919 * dispnew.c: Include nsterm.h when compiling under NS windowing.
10920 (init_display): Initialize Vinitial_window_system to "ns" when so
10921 compiled.
10922 * emacs.c: Include GSConfig.h when compiling under GNUstep.
10923 (display_arg): Use under NS.
10924 (main): Under NS, allocate autorelease pool and handle command line
10925 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
10926 (standard_args): Add NS-specific args.
10927 (shut_down_emacs): Shut down NS terminal if compiled under NS.
10928 * font.c (DEFAULT_ENCODING): New variable.
10929 (font_find_for_lface): Use it.
10930 (syms_of_font): Load syms_of_nsfont under NS.
10931 * font.h: Declare nsfont_driver when compiled under NS.
10932 * fontset.c: When compiling under NS, include nsterm.h.
10933 (fontset_from_font): Autoconstruct fontset under NS.
10934 * frame.c (various): Under NS, include nsterm.h, add Qns window system
10935 symbol, document and use it.
10936 (do_switch_frame): When for_deletion under Cocoa, add
10937 Fraise_frame(Qnil).
10938 (x_set_frame_parameters): Ensure font attribute changes are picked up.
10939 (x_get_arg): Allow "yes" and "no" as boolean values.
10940 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
10941 Qright under Cocoa.
10942 (focus-follows-mouse): Default to 0 under NS.
10943 * frame.h (enum output_method): Add output_ns.
10944 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
10945 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
10946 (FRAME_WINDOW_P): NS-specific definition.
10947 * fringe.c (max_used_fringe_bitmap): Make public.
10948 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
10949 (getloadavg): Use NeXT code under descendant OS's.
10950 * image.c (includes and header section, x_create_bitmap_from_data)
10951 (x_create_bitmap_from_file, free_bitmap_record, image_background)
10952 (image_background_transparent, x_clear_image_1)
10953 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
10954 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
10955 (x_to_xcolors, x_from_xcolors, x_disable_image)
10956 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
10957 other GUIs, including XPM support using code originally written for
10958 Carbon GUI.
10959 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
10960 using NS API.
10961 (image_ascent): Use font metrics macros instead of direct struct field
10962 access.
10963 * keyboard.c (includes): Add nsterm.h when compiling under NS.
10964 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
10965 Also, handle NS as GTK for menu bar purposes.
10966 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
10967 toolkit where they differ.
10968 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
10969 use cachelist, still needed under NS.
10970 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
10971 (struct widget_value): Define it here for menu.c.
10972 * keymap.c (includes): Include modifier internals.
10973 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
10974 NS.
10975 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
10976 support for preferring sequences using certain modifiers, specified by
10977 the FIRSTONLY argument.
10978 * lisp.h (hash_remove): Rename to avoid name clash when compiling
10979 under NS GNUstep implementation.
10980 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
10981 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
10982 * menu.c: Include nsterm.h under NS.
10983 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
10984 (free_menubar_widget_tree_value, update_submenu_strings)
10985 (find_and_call_menu_selection): Treat NS as X and NT.
10986 (find_and_return_menu_selection): New function, used for popup menus.
10987 * nsgui.h:
10988 * nsterm.h:
10989 * nsfns.m:
10990 * nsimage.m:
10991 * nsmenu.m:
10992 * nsselect.m:
10993 * nsterm.m: New files.
10994 * process.c (wait_reading_process_output): Under NS, call ns_select()
10995 instead of plain select().
10996 * syntax.c (char_quoted): Under NS, avoid a crash when called near
10997 beginning of buffer.
10998 * sysselect.h (init_process): Rename when compiling under Cocoa to
10999 avoid name conflict.
11000 * termhooks.h (display_info): Add ns_display_info to union.
11001 * terminal.c (Fterminal_live_p): Add ns to terminal types.
11002 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
11003 COCOA environment.
11004 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
11005 unexec() signature. (Note, this will dump, but the resulting file
11006 crashes; unexosx is used instead; keeping around for reference and
11007 possible aid in getting dump working under GNUstep.)
11008 * w32gui.h (button_type, widget_value): Remove definitions (now in
11009 keyboard.h).
11010 * window.c: Include nsterm.h when compiling under NS.
11011 * xdisp.c (includes): Include nsterm.h when compiling under NS.
11012 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
11013 other GUI windowing systems.
11014 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
11015 GTK.
11016 (x_consider_frame_title): Under NS, set icon type and frame
11017 modified-state indicator; use ns_set_name_as_filename() when using
11018 formatted title.
11019 (update_window_cursor): Make public when compiling under NS.
11020 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
11021 (hourglass_atimer, Vhourglass_delay
11022 * xfaces.c (header section, init_frame_faces, clear_font_table)
11023 (defined_color, unload_color, x_face_list_fonts)
11024 (prepare_face_for_display): Add NS support parallel to other GUIs.
11025 Emulate GCs like other non-X GUIs.
11026 (split_font_name): Don't lowercase font name under NS.
11027 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
11028 under NS.
11029 * s/darwin.h: Add support for compilation under NS.
11030
11031 2008-07-15 Jason Rumney <jasonr@gnu.org>
11032
11033 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
11034 (w32_show_hourglass): Rename from show_hourglass.
11035 (w32_hide_hourglass): Rename from hide_hourglass.
11036 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
11037 (Vhourglass_delay): Declare extern.
11038 (hourglass_started): Remove.
11039
11040 * xdisp.c (Vhourglass_delay): Remove static.
11041 (hourglass_started, start_hourglass, cancel_hourglass):
11042 Don't include these versions on WINDOWSNT.
11043
11044 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
11045
11046 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
11047 variables (formerly in xfns.c).
11048 (show_hourglass, hide_hourglass): New prototypes (same).
11049 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
11050 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
11051 in xfns.c).
11052 (syms_of_xdisp): Declare/initialize display-hourglass,
11053 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
11054 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
11055 formerly in xfns.c.
11056 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
11057 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
11058 (start_hourglass, cancel_hourglass): Remove.
11059 (show_hourglass, hide_hourglass): Remove prototypes and static
11060 modifiers.
11061 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
11062 hourglass_atimer, hourglass_shown_p declaration/initialization.
11063 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
11064 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
11065 (start_hourglass, cancel_hourglass): Remove.
11066 (show_hourglass, hide_hourglass): Remove prototypes and static
11067 modifiers.
11068 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
11069 hourglass_atimer, hourglass_shown_p declaration/initialization.
11070 * w32fns.c (display_hourglass_p, Vhourglass_delay)
11071 (DEFAULT_HOURGLASS_DELAY): Remove.
11072 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
11073 hourglass_shown_p declaration/initialization.
11074
11075 2008-07-14 Jason Rumney <jasonr@gnu.org>
11076
11077 * w32fns.c (w32_get_arg): Remove wrapper function.
11078 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
11079 directly.
11080 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
11081
11082 2008-07-14 Kenichi Handa <handa@m17n.org>
11083
11084 * xfont.c (xfont_open): Add workaround for X's bug.
11085
11086 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
11087
11088 * fontset.c: Include <stdio.h> unconditionally.
11089
11090 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
11091
11092 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
11093 for filtering.
11094
11095 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
11096
11097 * s/vms.h: Use __GNUC__ instead of _GNUC_.
11098
11099 * m/macppc.h:
11100 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
11101
11102 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
11103 (SPECIAL_EMACS_INT):
11104 * m/ia64.h (SPECIAL_EMACS_INT):
11105 * m/amdx86-64.h (SPECIAL_EMACS_INT):
11106 * s/gnu.h (NLIST_STRUCT):
11107 * s/aix4-2.h (X11R5_INHIBIT_I18N):
11108 * s/gnu-linux.h (LINUX):
11109 * s/msdos.h (HAVE_FACES):
11110 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
11111
11112 * systty.h:
11113 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
11114 anymore.
11115
11116 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
11117
11118 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
11119 always defined as int.
11120
11121 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
11122 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
11123 * s/gnu-linux.h (HAVE_WAIT_HEADER):
11124 * s/freebsd.h (HAVE_WAIT_HEADER):
11125 * s/bsd-common.h (HAVE_UNION_WAIT):
11126 * s/aix4-2.h (HAVE_WAIT_HEADER):
11127 * m/mips.h (HAVE_UNION_WAIT):
11128 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
11129 (COFF, static): Do not define, they are undefined later in the file.
11130
11131 * process.c (update_status): Don't use a union.
11132 (status_convert):
11133 (sigchld_handler): Use int instead of WAITTYPE.
11134
11135 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
11136
11137 * indent.c (Fvertical_motion): Restore hscroll before moving to
11138 goal column.
11139
11140 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
11141
11142 * lisp.h: Remove left over code.
11143
11144 2008-07-11 Andreas Schwab <schwab@suse.de>
11145
11146 * lisp.h: Fix logic in last change.
11147
11148 * menu.h: New file.
11149 * menu.c: Include it.
11150 * xmenu.c: Likewise.
11151 * Makefile.in: Update dependencies.
11152
11153 2008-07-11 Kenichi Handa <handa@m17n.org>
11154
11155 * fontset.c (fontset_from_font): Cancel the previous change.
11156
11157 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
11158
11159 * lisp.h:
11160 * w32heap.c:
11161 * emacs.c:
11162 * alloc.c: Replace all references of NO_UNION_TYPE with
11163 USE_LISP_UNION_TYPE.
11164
11165 * m/xtensa.h (NO_UNION_TYPE):
11166 * m/vax.h (NO_UNION_TYPE):
11167 * m/template.h (NO_UNION_TYPE):
11168 * m/sparc.h (NO_UNION_TYPE):
11169 * m/mips.h (NO_UNION_TYPE):
11170 * m/macppc.h (NO_UNION_TYPE):
11171 * m/m68k.h (NO_UNION_TYPE):
11172 * m/iris4d.h (NO_UNION_TYPE):
11173 * m/intel386.h (NO_UNION_TYPE):
11174 * m/ibms390x.h (NO_UNION_TYPE):
11175 * m/ibms390.h (NO_UNION_TYPE):
11176 * m/ibmrs6000.h (NO_UNION_TYPE):
11177 * m/ia64.h (NO_UNION_TYPE):
11178 * m/hp800.h (NO_UNION_TYPE):
11179 * m/arm.h (NO_UNION_TYPE):
11180 * m/amdx86-64.h (NO_UNION_TYPE):
11181 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
11182 defining it the same.
11183
11184 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
11185
11186 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
11187
11188 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
11189
11190 * fileio.c:
11191 * sysdep.c:
11192 * systty.h:
11193 * m/ibmrs6000.h:
11194 * m/iris4d.h:
11195 * s/aix4-2.h:
11196 * s/freebsd.h:
11197 * s/gnu-linux.h:
11198 * s/hpux10-20.h:
11199 * s/hpux11.h:
11200 * s/netbsd.h:
11201 * s/sol2-3.h:
11202 * s/sol2-4.h:
11203 * s/sol2.h:
11204 * s/usg5-4.h:
11205 * s/vms.h: Remove references to unused variables.
11206
11207 2008-07-10 Andreas Schwab <schwab@suse.de>
11208
11209 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
11210 pattern before matching the generic family.
11211
11212 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
11213
11214 * unexec.c:
11215 * s/vms.h:
11216 * s/usg5-4-2.h:
11217 * s/sol2-5.h:
11218 * s/freebsd.h:
11219 * s/darwin.h: Remove dead code.
11220
11221 * m/template.h:
11222 * m/sparc.h:
11223 * m/mips.h:
11224 * m/m68k.h:
11225 * m/iris4d.h:
11226 * m/intel386.h:
11227 * m/ibms390x.h:
11228 * m/ibms390.h:
11229 * m/ia64.h:
11230 * m/hp800.h:
11231 * m/arm.h:
11232 * m/amdx86-64.h: Remove dead code and references to unused
11233 and compiler defined symbols.
11234
11235 * unexmips.c:
11236 * unexelf.c: Remove references to desupported systems.
11237
11238 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
11239
11240 * m/powermac.h: Remove boilerplate comments.
11241 (NO_REMAP): Remove unused definition.
11242
11243 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
11244 define them.
11245
11246 2008-07-10 Kenichi Handa <handa@m17n.org>
11247
11248 * xfont.c (xfont_open): Log the reason of failure.
11249
11250 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
11251
11252 * fontset.c (fontset_get_font_group):
11253 * font.c (font_check_otf): Specify argument types.
11254
11255 2008-07-09 Kenichi Handa <handa@m17n.org>
11256
11257 * coding.c (detect_coding_utf_8): Set detect_info->found only when
11258 non-ASCII char is found.
11259
11260 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
11261 (reorder_font_vector): Change the arg preferred_family to font.
11262 Prefer the spec matching with font.
11263 (fontset_get_font_group): New function.
11264 (fontset_find_font): Change the format of an element of a realized
11265 fontset. Use fontset_get_font_group.
11266 (fontset_font): Try the current fontset, the default fontset, the
11267 fallbacks of the current fontset, and the fallbacks of the default
11268 fontset in this order.
11269 (face_for_char): Delete the shortcut to use the current font.
11270 (fontset_from_font): Don't set fonts for Latin in the fontset.
11271
11272 * font.h (font_make_object, font_match_p): Adjust prototypes.
11273
11274 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
11275
11276 * font.c (font_make_object): New arg entity and pixelsize.
11277 (font_check_otf_features, font_check_otf): New functions.
11278 (font_match_p): Check :lang, :script, and :otf properties.
11279
11280 * xfont.c (xfont_open): Adjust it for the change of
11281 font_make_object.
11282 (xfont_text_extents): Fix initial setting of metrics.
11283
11284 * ftfont.c (struct ftfont_info): New member index, delete member
11285 fc_charset_idx. Make the member order compatible with struct
11286 xftfont_info.
11287 (fc_charset_table): Change charset names to registry names.
11288 (ftfont_pattern_entity): Delete the args registry and
11289 fc_charset_idx. Change the value of :font-entity property
11290 to (FONTNAME . INDEX). Always set :registry property to
11291 `iso10646-1'.
11292 (struct ftfont_cache_data): New struct.
11293 (ftfont_lookup_cache): New arg for_face.
11294 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
11295 (ftfont_driver): Set the member otf_capability.
11296 (ftfont_get_charset): Adjust it for the change of
11297 fc_charset_table.
11298 (OTF_TAG_SYM): New macro.
11299 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
11300 for the change of fc_charset_table.
11301 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
11302 ftfont_pattern_entity. Add FC_INDEX to objset.
11303 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
11304 and ftfont_pattern_entity.
11305 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
11306 font_make_object, struct ftfont_info.
11307 (ftfont_has_char): Use ftfont_get_fc_charset.
11308 (ftfont_otf_features, ftfont_otf_capability): New functions.
11309 (ftfont_shape): Use ftfont_get_otf.
11310 (ftfont_text_extents): Fix initial setting of metrics.
11311
11312 * xftfont.c (struct xftfont_info): New member ft_size. Make the
11313 member order compatible with struct ftfont_info.
11314 (xftfont_open): Add FC_CHARSET to the pattern. Set
11315 xftfont_info->ft_size. Don't unlock the face. Check BDF
11316 properties if appropriate.
11317 (xftfont_close): Unlock the face.
11318 (xftfont_anchor_point, xftfont_shape): Deleted.
11319 (syms_of_xftfont): Don't set members anchor_point and shape of
11320 xftfont_driver.
11321
11322 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
11323 font_make_object.
11324
11325 * w32font.c (w32font_open): Adjust it for the change of
11326 font_make_object.
11327 (w32font_open_internal): Don't set properties of font_object here.
11328
11329 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
11330
11331 * macfns.c (x_create_tip_frame):
11332 * w32fns.c (x_create_tip_frame):
11333 * xfns.c (x_create_tip_frame): Pass parameter argument to
11334 face-set-after-frame-default.
11335
11336 * xfaces.c (Finternal_merge_in_global_face): Save merged
11337 attributes for the default face back into the face vector.
11338
11339 2008-07-08 Andreas Schwab <schwab@suse.de>
11340
11341 * fontset.h: Declare fontset_from_font. Don't declare
11342 new_fontset_from_font and fontset_from_font_name.
11343 * xterm.c: Include "fontset.h".
11344 * Makefile.in (xterm.o): Update dependencies.
11345
11346 2008-07-08 Glenn Morris <rgm@gnu.org>
11347
11348 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
11349 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
11350
11351 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
11352
11353 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
11354 (x_set_frame_parameters): Don't bind it.
11355
11356 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
11357
11358 * w32fns.c (map_w32_filename): Declare extern.
11359
11360 2008-07-07 Jason Rumney <jasonr@gnu.org>
11361
11362 * w32term.c (WS_EX_LAYERED): Define if not already.
11363
11364 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
11365
11366 * xfaces.c (set_font_frame_param): Don't try to set the font
11367 parameter if it is still unspecified in the lface.
11368
11369 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
11370
11371 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
11372 face if it didn't already exist.
11373
11374 * xdisp.c (try_window_id): Give up if word-wrapping is on.
11375
11376 2008-07-05 Andreas Schwab <schwab@suse.de>
11377
11378 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
11379
11380 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
11381
11382 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
11383 word-wrapping.
11384 (IT_DISPLAYING_WHITESPACE): New macro.
11385 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
11386 when word-wrapping. Simplify word-wrapping logic. Use correct
11387 pixel positions when saving copies of the iterator.
11388 (display_line): Use proper wrap point if the last character on a
11389 line was preceded by whitespace.
11390
11391 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11392
11393 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
11394
11395 2008-07-04 Kenichi Handa <handa@m17n.org>
11396
11397 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
11398
11399 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
11400
11401 2008-07-02 Jason Rumney <jasonr@gnu.org>
11402
11403 * xfns.c (syms_of_xfns): Only define x-select-font when both
11404 HAVE_FREETYPE and USE_GTK.
11405
11406 * xdisp.c (next_element_from_display_vector): Move assignment out
11407 of if statement.
11408
11409 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
11410
11411 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
11412
11413 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
11414 (syms_of_fileio): Initialize and export them.
11415 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
11416
11417 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
11418 (Fsystem_move_file_to_trash): New function.
11419 (syms_of_w32fns): Export it to lisp.
11420
11421 2008-07-01 Jason Rumney <jasonr@gnu.org>
11422
11423 * w32font.c (w32font_text_extents): Don't count overhang as part
11424 of width.
11425
11426 2008-06-30 Miles Bader <miles@gnu.org>
11427
11428 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
11429 Add `avoid_cursor_p' field.
11430
11431 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
11432 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
11433 (append_glyph, append_composite_glyph, produce_image_glyph)
11434 (append_stretch_glyph): Initialize avoid_cursor_p.
11435 (get_it_property): Rename from `get_line_height_property'.
11436 (x_produce_glyphs): Use get_it_property.
11437 (handle_line_prefix, push_display_prop): New functions.
11438 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
11439 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
11440 New variables.
11441 (syms_of_xdisp): Initialize them.
11442
11443 2008-06-30 Kenichi Handa <handa@m17n.org>
11444
11445 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
11446 XftDefaultSubstitute (they are called in XftFontMatch).
11447 (xftfont_open): Fix args to ftfont_font_format.
11448
11449 * ftfont.c (fc_charset_table): New member lang.
11450 (ftfont_resolve_generic_family): New arg pattern.
11451 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
11452 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
11453 (ftfont_open): Fix args to ftfont_font_format.
11454 (ftfont_font_format): New arg filename.
11455
11456 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
11457
11458 * xfaces.c (Finternal_merge_in_global_face): If default face was
11459 modified, realize it again. Update the font face attribute.
11460
11461 2008-06-29 Jason Rumney <jasonr@gnu.org>
11462
11463 * w32term.c (x_set_frame_alpha): Fix logic.
11464
11465 2008-06-29 Kenichi Handa <handa@m17n.org>
11466
11467 * fontset.c (Finternal_char_font): Return font-object instead of
11468 font-name.
11469
11470 * composite.c (get_composition_id): Fix the width calculation for TAB.
11471
11472 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
11473
11474 * indent.c (Fvertical_motion): Properly handle float column arg.
11475
11476 2008-06-28 Jason Rumney <jasonr@gnu.org>
11477
11478 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
11479 (pfnSetLayeredWindowAttributes): New function pointer.
11480 (w32_initialize): Initialize it when supported.
11481 (x_set_frame_alpha): New function.
11482
11483 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
11484 (w32_frame_parm_handlers): Set alpha handler.
11485
11486 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
11487
11488 2008-06-27 Jason Rumney <jasonr@gnu.org>
11489
11490 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
11491 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
11492 (w32_to_x_charset, x_to_w32_charset)
11493 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
11494 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
11495 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
11496 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
11497 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
11498 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
11499 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
11500 (Qw32_charset_unicode): Remove.
11501 (syms_of_w32fns): Update for above changes.
11502
11503 * w32font.c (w32_to_x_charset, x_to_w32_charset)
11504 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
11505 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
11506 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
11507 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
11508 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
11509 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
11510 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
11511 (syms_of_w32font): Update for above changes.
11512
11513 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
11514
11515 * s/usg5-4.h: Fix previous change: keep the correct branch of a
11516 removed #if.
11517 (USG_SHARED_LIBRARIES): Remove duplicate definition.
11518
11519 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
11520 Eli Zaretskii <eliz@gnu.org>
11521
11522 * makefile.w32-in (LOCAL_FLAGS):
11523 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
11524
11525 * sysdep.c (_spawnlp, _getpid):
11526 Declare with explicit _cdecl instead of _CRTAPI1.
11527
11528 * editfns.c (Fget_internal_run_time):
11529 Check for WINDOWSNT with #ifdef, not #if.
11530
11531 2008-06-26 Jason Rumney <jasonr@gnu.org>
11532
11533 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
11534
11535 * w32term.c (x_draw_glyph_string_foreground)
11536 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
11537 Use FONT_HANDLE macro.
11538 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
11539
11540 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
11541 (uniscribe_encode_char): Use FONT_HANDLE macro.
11542
11543 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
11544 (w32font_text_extents): Use precast w32_font.
11545 (w32font_close): Free cached metrics.
11546 (w32font_open_internal): Allocate space for name on stack.
11547
11548 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
11549
11550 * xdisp.c (extend_face_to_end_of_line): Fix last change.
11551
11552 2008-06-26 Jason Rumney <jasonr@gnu.org>
11553
11554 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
11555 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
11556
11557 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
11558
11559 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
11560
11561 2008-06-26 Jason Rumney <jasonr@gnu.org>
11562
11563 * w32bdf.c, w32bdf.h: Remove obsolete files.
11564
11565 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
11566
11567 * w32gui.h: Don't include w32bdf.h.
11568 (XCharStruct, enum w32_char_font_type, W32FontStruct):
11569 Remove obsolete font support.
11570
11571 * w32font.h (struct w32font_info): Remove compat_w32_font.
11572 Add hfont member.
11573 (FONT_COMPAT): Remove obsolete macro.
11574
11575 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
11576 (w32font_encode_char, w32font_text_extents): Use new hfont member.
11577 (w32font_open_internal): Remove compat code. Set new hfont member.
11578 (Fx_select_font): Use new hfont member.
11579
11580 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
11581 (uniscribe_encode_char): Use new hfont member.
11582
11583 * w32term.c (x_draw_glyph_string_foreground)
11584 (x_draw_composite_glyph_string_foreground): Use new hfont member.
11585 (x_draw_glyph_string): Use metrics in w32font_info.
11586
11587 2008-06-26 Kenichi Handa <handa@m17n.org>
11588
11589 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
11590
11591 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
11592
11593 * unexnext.c:
11594 * m/ews4800.h:
11595 * m/hp9000s300.h:
11596 * m/ibm370aix.h:
11597 * m/mips-siemens.h:
11598 * m/ncr386.h:
11599 * m/next.h:
11600 * m/pmax.h:
11601 * m/powerpcle.h:
11602 * m/tandem-s2.h:
11603 * s/386bsd.h:
11604 * s/bsd386.h:
11605 * s/bsd4-1.h:
11606 * s/bsd4-2.h:
11607 * s/bsdos2-1.h:
11608 * s/bsdos2.h:
11609 * s/bsdos3.h:
11610 * s/bsdos4.h:
11611 * s/nextstep.h:
11612 * s/ultrix4-3.h:
11613 * s/usg5-0.h:
11614 * s/usg5-2-2.h:
11615 * s/usg5-2.h:
11616 * s/usg5-4-3.h:
11617 * s/ux4800.h:
11618 * s/uxpds.h:
11619 * s/uxpv.h: Remove support for obsolete systems.
11620 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
11621 Remove, insert contents in s/hpux10-20.h.
11622 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
11623 Remove, insert contents in s/aix4-2.h.
11624 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
11625 * s/bsd4-3.h: Rename to ...
11626 * s/bsd-common.h: ... this.
11627 * data.c:
11628 * doc.c:
11629 * ecrt0.c:
11630 * emacs.c:
11631 * fileio.c:
11632 * floatfns.c:
11633 * keyboard.c:
11634 * mem-limits.h:
11635 * print.c:
11636 * process.c:
11637 * sysdep.c:
11638 * syssignal.h:
11639 * systty.h:
11640 * syswait.h:
11641 * term.c:
11642 * unexec.c:
11643 * unexelf.c:
11644 * unexhp9k800.c:
11645 * m/hp800.h:
11646 * m/ibmrs6000.h:
11647 * m/mips.h:
11648 * m/vax.h:
11649 * s/darwin.h:
11650 * s/freebsd.h:
11651 * s/gnu.h:
11652 * s/ms-w32.h:
11653 * s/msdos.h:
11654 * s/netbsd.h:
11655 * s/template.h: Remove references to obsolete variables.
11656
11657 * Makefile.in: Add dependencies for all unexec files.
11658 (admindir): Remove unused variable.
11659 (UNEXEC_SRC): Remove references.
11660
11661 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
11662
11663 * xfns.c (x_default_font_parameter): If Xft is available, first
11664 try Monospace-12 for the default font.
11665
11666 2008-06-25 Jason Rumney <jasonr@gnu.org>
11667
11668 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
11669
11670 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11671
11672 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
11673
11674 * buffer.c (syms_of_buffer): Remove default-word-wrap.
11675
11676 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
11677
11678 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
11679 <scroll-conservatively>: Fix typo in docstring.
11680
11681 * xselect.c (Fx_send_client_event): Doc fix.
11682
11683 2008-06-25 Kenichi Handa <handa@m17n.org>
11684
11685 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
11686
11687 * font.c (font_parse_fcname): Remove unused variables.
11688 (font_sort_entites): Delete the arg SPEC. Caller changed.
11689 Fix for the case of ! best_only.
11690 (font_delete_unmatched): Check DPI and AVGWIDTH too.
11691
11692 * lisp.h (Fstring_to_unibyte): EXFUN it.
11693
11694 * character.h (str_to_unibyte): Extern it.
11695
11696 * character.c (str_to_unibyte): New function.
11697
11698 * fns.c (Fstring_to_unibyte): New function.
11699 (syms_of_fns): Defsubr it.
11700
11701 2008-06-24 Kenichi Handa <handa@m17n.org>
11702
11703 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
11704 DPI too.
11705 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
11706
11707 2008-06-24 Andreas Schwab <schwab@suse.de>
11708
11709 * Makefile.in (${lispsource}loaddefs.el): Rename from
11710 ../lisp/loaddefs.el.
11711 (bootstrap-clean): Do what distclean does but don't remove
11712 Makefile.
11713 (distclean): Depend on bootstrap-clean and remove Makefile.
11714
11715 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
11716
11717 * buffer.h (struct buffer): New member word_wrap.
11718
11719 * buffer.c (syms_of_buffer): New variables default-word-wrap and
11720 word-wrap.
11721 (init_buffer_once): Initialize them.
11722
11723 * dispextern.h (struct it): Replace bool truncate_lines_p with a
11724 line_wrap enum possessing three possible values.
11725
11726 * termopts.h: Replace truncate_partial_width_windows with
11727 Vtruncate_partial_width_windows.
11728
11729 * dispnew.c (direct_output_for_insert): Avoid direct output when
11730 inserting a space with word wrap on.
11731
11732 * indent.c (compute_motion): Obey integer values of
11733 truncate-partial-width-windows.
11734
11735 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
11736 replacing truncate_partial_width_windows.
11737 (init_iterator): If Vtruncate_partial_width_windows is an integer,
11738 truncate only if the window width is below that integer.
11739 (start_display, resize_mini_window, produce_stretch_glyph)
11740 (display_string, move_it_in_display_line_to): Use line_wrap.
11741 (back_to_previous_visible_line_start, reseat_1): Reset
11742 string_from_display_prop_p.
11743 (display_line): Extend default face to end of line when wrapping.
11744
11745 2008-06-24 Kim F. Storm <storm@cua.dk>
11746
11747 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
11748 to wrap continued lines at word boundaries.
11749
11750 2008-06-24 Jason Rumney <jasonr@gnu.org>
11751
11752 * font.c (Ffont_face_attributes): Multiply pixel size before point
11753 conversion to avoid multiplying rounding error.
11754
11755 2008-06-23 Jason Rumney <jasonr@gnu.org>
11756
11757 * w32term.c (x_draw_glyph_string_background)
11758 (x_draw_glyph_string): Remove old bdf font code.
11759
11760 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
11761
11762 2008-06-22 Kenichi Handa <handa@m17n.org>
11763
11764 * font.c (font_find_for_lface): Try the adstyle specified in
11765 the property of LFACE_FONT of LFACE (if any).
11766
11767 2008-06-21 Seiji Zenitani <zenitani@mac.com>
11768 Ryo Yoshitake <ryo@shiftmode.net>
11769
11770 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
11771
11772 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
11773
11774 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
11775 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
11776 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
11777 (witness-emacs): Remove.
11778 (lisp, shortlisp): Move loaddefs.el earlier.
11779 (mostlyclean): Forget about witness-emacs.
11780
11781 2008-06-22 Glenn Morris <rgm@gnu.org>
11782
11783 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
11784 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
11785
11786 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11787
11788 * Makefile.in (PRECOMP): Remove.
11789 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
11790 (witness-emacs): Run `compile-first'.
11791 (.el.elc): Use the new compile-onefile target.
11792
11793 2008-06-21 Kenichi Handa <handa@m17n.org>
11794
11795 * xftfont.c (xftfont_open): Handle QCembolden only when
11796 FC_EMBOLDEN is defined.
11797
11798 2008-06-21 Andreas Schwab <schwab@suse.de>
11799
11800 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
11801 (.el.elc): Likewise.
11802
11803 2008-06-21 Miles Bader <miles@gnu.org>
11804
11805 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
11806 build dir, not the lisp source dir.
11807
11808 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11809
11810 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
11811 (bootstrapclean): Remove.
11812 (.el.elc): New rule.
11813 (PRECOMP): New var.
11814 (../lisp/subdirs.el): Remove.
11815 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
11816 (witness-emacs): New target.
11817 (mostlyclean): Remove witness-emacs as well.
11818 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
11819 Add witness-emacs dependency.
11820
11821 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
11822
11823 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
11824 defined by the font.
11825
11826 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11827
11828 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
11829 (bootstrap-clean): New target that keeps TAGS around.
11830 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
11831 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
11832
11833 2008-06-20 Jason Rumney <jasonr@gnu.org>
11834
11835 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
11836 Remove obsolete font code.
11837
11838 * w32font.c (font_matches_spec): Use csb bitfield from font signature
11839 to determine language support.
11840
11841 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11842
11843 * sysdep.c (cfsetspeed): New fun extracted from the code.
11844 (cfmakeraw): Move before first use.
11845
11846 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
11847
11848 * sysdep.c (cfmakeraw): Provide fallback implementation.
11849 (serial_configure): Provide fallback implementation of cfsetspeed.
11850
11851 2008-06-20 Kenichi Handa <handa@m17n.org>
11852
11853 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
11854 the pattern.
11855
11856 * fontset.c (fontset_from_font): Copy font_spec before changing
11857 the elements.
11858
11859 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
11860
11861 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
11862
11863 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
11864 for explicit `font' parameters.
11865
11866 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
11867
11868 2008-06-19 Kenichi Handa <handa@m17n.org>
11869
11870 * frame.c: Include <ctype.h>.
11871 (x_set_font_backend): Allow spacing characters in the X resource
11872 for FontBackend.
11873
11874 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
11875
11876 * w32fns.c, xfns.c (Qfont_param): New var.
11877 (syms_of_w32fns): Initialize it.
11878 (x_default_font_parameter): Record explicit `font' into
11879 `font-parameter'.
11880
11881 2008-06-18 Kenichi Handa <handa@m17n.org>
11882
11883 * font.c (font_parse_xlfd): Fix previous change.
11884 (font_parse_fcname): Don't use :fc-unknown-spec.
11885 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
11886 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
11887 (font_add_log): Prepend the driver name to the resulting fonts.
11888
11889 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
11890 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
11891 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
11892
11893 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
11894 (QCembolden): New variables.
11895 (syms_of_xftfont): DEFSYM them.
11896 (xftfont_open): Call XftFontMatch. Don't trust the result of
11897 XftTextExtents8 if the pixel_size is less than 5.
11898
11899 2008-06-18 Andreas Schwab <schwab@suse.de>
11900
11901 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
11902 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
11903
11904 2008-06-18 Jason Rumney <jasonr@gnu.org>
11905
11906 * w32font.c (w32font_list, w32font_match): Add logging.
11907
11908 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
11909
11910 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
11911
11912 * font.c (font_parse_fcname): Store divider characters for
11913 unknown-spec list. For known key symbols, intern using correct
11914 symbol name.
11915
11916 2008-06-17 Kenichi Handa <handa@m17n.org>
11917
11918 * xfaces.c (realize_default_face): If the frame is not on window
11919 system, set the fontset of face to nil.
11920
11921 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
11922
11923 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
11924
11925 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
11926
11927 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
11928 (build_font_name_from_vector): Delete externs.
11929
11930 * xfaces.c (struct font_name): Don't declare.
11931
11932 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
11933
11934 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
11935
11936 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
11937
11938 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
11939
11940 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
11941
11942 * font.c (Ffont_spec): Fix usage in docstring.
11943 (Ffont_face_attributes): Doc fix.
11944
11945 2008-06-16 Andreas Schwab <schwab@suse.de>
11946
11947 * font.c (Ffont_face_attributes): Fix definition.
11948
11949 2008-06-16 Jason Rumney <jasonr@gnu.org>
11950
11951 * font.h (font_style_symbolic_from_value): Remove.
11952
11953 * font.c (font_style_symbolic_from_value): Remove.
11954 (font_style_symbolic): Revert to pre 2008-06-13 version.
11955
11956 * w32font.c (w32_to_fc_weight): New function.
11957 (w32font_full_name, logfont_to_fcname): Use it.
11958
11959 2008-06-16 Kenichi Handa <handa@m17n.org>
11960
11961 * font.c (font_check_object): Delete it.
11962 (font_clear_cache): Check if a font-object is alive.
11963 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
11964 font-object to nil.
11965 (font_close_object): Don't check FONT_CLOSE_OBJECT.
11966 (font_at): Don't call font_check_object.
11967 (Ffont_get): Return a symbol for :weight, :slant, and :width.
11968
11969 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
11970
11971 * puresize.h (BASE_PURESIZE): Increase to 1230000.
11972
11973 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
11974
11975 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
11976
11977 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
11978
11979 * font.c (font_parse_fcname): Only one decimal point.
11980 (font_unparse_fcname): Handle data in family and foundry indices
11981 as symbols, not strings.
11982 (font_unparse_gtkname, Ffont_face_attributes): New functions.
11983
11984 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
11985
11986 * font.h (font_unparse_gtkname): Add prototype.
11987
11988 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
11989
11990 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
11991
11992 2008-06-15 Andreas Schwab <schwab@suse.de>
11993
11994 * font.c (font_update_drivers): Fix crash when no drivers match.
11995
11996 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
11997
11998 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
11999 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
12000
12001 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
12002
12003 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
12004
12005 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
12006
12007 * process.c (Fserial_process_configure, Fprocess_send_eof):
12008 Use EQ to compare Lisp_Objects.
12009
12010 2008-06-13 Jason Rumney <jasonr@gnu.org>
12011
12012 * w32fns.c (Fw32_select_font): Remove old font API function.
12013
12014 * w32font.c (logfont_to_fcname): New function.
12015 (Fx_select_font): New font dialog function compatible with
12016 GTK/fontconfig version.
12017
12018 * font.c (font_style_symbolic_from_value): New function.
12019 (font_style_symbolic): Use it.
12020
12021 * font.h (font_style_symbolic_from_value): Declare new function.
12022
12023 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
12024
12025 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
12026 <font-width-table>: Fix typos in docstrings.
12027
12028 2008-06-13 Daniel Engeler <engeler@gmail.com>
12029
12030 These changes add serial port access.
12031 * process.c: Add HAVE_SERIAL.
12032 (Fdelete_process, Fprocess_status, Fset_process_buffer)
12033 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
12034 (list_processes_1, select_wrapper, Fstop_process)
12035 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
12036 (status_notify): Modify to handle serial processes.
12037 [HAVE_SERIAL] (Fserial_process_configure)
12038 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
12039 New functions.
12040 * process.h (struct Lisp_Process): Add `type'.
12041 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
12042 New functions.
12043 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
12044 serial ports.
12045 (serial_open, serial_configure): New functions.
12046 * w32.h: Add FILE_SERIAL.
12047 (struct _child_process): Add ovl_read, ovl_write.
12048
12049 2008-06-13 Kenichi Handa <handa@m17n.org>
12050
12051 * dispextern.h (enum lface_attribute_index): New member
12052 LFACE_FOUNDRY_INDEX.
12053
12054 * font.c (font_score): Delete arg alternate_families. Check only
12055 weight, slant, width, and size. Ignore the difference of alias
12056 style symbols.
12057 (font_sort_entites): Adjust for the above change. Reflect the
12058 order of font-driver to scores.
12059 (font_list_entities): Don't check alternate_familes here.
12060 (font_clear_prop): Handle foundry.
12061 (font_update_lface): Don't parse "foundry-family" form here.
12062 Handle FONT_FOUNDRY_INDEX.
12063 (font_find_for_lface): Likewise. Handle alternate families here.
12064 If registry is nil, try iso8859-1 and ascii-0.
12065 (font_open_for_lface): Pay attention to size in ENTITY.
12066 (font_open_by_name): Simplify by calling font_load_for_lface.
12067 (free_font_driver_list): Delete it.
12068 (font_update_drivers): Preserve the order of backends.
12069 (syms_of_font): Setting of sort_shift_bits adjusted for the change
12070 of font_score and font_sort_entites.
12071 (font_update_sort_order): Likewise.
12072
12073 * xfaces.c (LFACE_FOUNDRY): New macro.
12074 (check_lface_attrs): Check foundry.
12075 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
12076 (merge_face_vectors): Check foundry.
12077 (merge_face_ref): Likewise.
12078 (Finternal_set_lisp_face_attribute): Likewise.
12079 (x_update_menu_appearance): Likewise.
12080 (Finternal_get_lisp_face_attribute): Likewise.
12081 (lface_hash): Likewise.
12082 (lface_same_font_attributes_p): Likewise.
12083 (x_supports_face_attributes_p): Likewise.
12084 (tty_supports_face_attributes_p): Likewise.
12085 (Finternal_set_alternative_font_family_alist): Intern strings.
12086 (Finternal_set_alternative_font_registry_alist): Downcase strings.
12087 (realize_default_face): Set LFACE_FOUNDRY (lface).
12088
12089 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
12090 font-driver at first.
12091
12092 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
12093
12094 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
12095
12096 * lread.c (Fload): Use xfree, not free on saved_doc_string.
12097
12098 2008-06-12 Jim Meyering <meyering@redhat.com>
12099
12100 Make unexec_free handle NULL the same way free does.
12101 * unexmacosx.c (unexec_free): Ignore a NULL argument.
12102
12103 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
12104
12105 * character.h (CHAR_TO_BYTE_SAFE): New macro.
12106 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
12107 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
12108 (WEAK_ALIAS): Simplify.
12109 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
12110 when searching a unibyte buffer.
12111
12112 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
12113
12114 * xfns.c (Fx_select_font): Rename from x-font-dialog.
12115
12116 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
12117
12118 * w32font.c: Include ctype.h.
12119
12120 2008-06-11 Jason Rumney <jasonr@gnu.org>
12121
12122 * w32font.c (w32font_encode_char): Detect missing glyphs that are
12123 misreported as space.
12124 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
12125 as aliases for registry iso10646-1.
12126
12127 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
12128
12129 * buffer.c (clone_per_buffer_values): Skip `name'.
12130
12131 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
12132
12133 * font.c (font_parse_fcname): Fix last change; accept decimal
12134 points in font size.
12135
12136 2008-06-10 Jason Rumney <jasonr@gnu.org>
12137
12138 * w32uniscribe.c (add_opentype_font_name_to_list):
12139 Skip non unicode fonts.
12140
12141 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
12142
12143 * xfns.c (Fx_font_dialog): New function.
12144
12145 * gtkutil.c (xg_dialog_response_cb): Rename from
12146 xg_file_response_callback.
12147 (pop_down_dialog): Rename from pop_down_file_dialog.
12148 (xg_get_file_name): Callers changed.
12149 (xg_get_font_name): New function.
12150
12151 * gtkutil.h (xg_get_font_name): Insert prototype.
12152
12153 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
12154
12155 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
12156 x_underline_minimum_display_offset.
12157 (syms_of_xdisp): Declare it here rather than in xterm.c.
12158 * dispextern.h (underline_minimum_offset): Declare it.
12159 * w32term.c (x_draw_glyph_string): Use it.
12160 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
12161 (syms_of_xterm): Don't declare it any more.
12162 (x_draw_glyph_string): Adjust to the new name.
12163
12164 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
12165
12166 * xterm.c (x_underline_minimum_display_offset): New var.
12167 (x_draw_glyph_string): Use it.
12168 (syms_of_xterm): Declare it.
12169
12170 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
12171
12172 * font.c (font_parse_fcname): Accept GTK-style font names too.
12173
12174 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
12175
12176 * dired.c (file_name_completion): Don't return t if the match is exact
12177 but with different capitalization.
12178 * minibuf.c (Ftry_completion): Simplify.
12179
12180 * window.c (Vwindow_point_insertion_type): New var.
12181 (set_window_buffer): Use it.
12182 (syms_of_window): Init and export it to Lisp.
12183
12184 2008-06-10 Kenichi Handa <handa@m17n.org>
12185
12186 * font.h (font_intern_prop): Prototype adjusted.
12187
12188 * font.c (font_intern_prop): New arg force_symbol.
12189 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
12190 Adjust for the change of font_intern_prop.
12191
12192 * ftfont.c (ftfont_pattern_entity):
12193 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
12194 (w32_registry):
12195 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
12196 the change of font_intern_prop.
12197
12198 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
12199
12200 * w32menu.c (digest_single_submenu): Declare extern.
12201
12202 2008-06-09 Jason Rumney <jasonr@gnu.org>
12203
12204 * w32term.c (x_make_frame_visible): Use alternate restore flags.
12205
12206 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
12207 (parse_single_submenu): Remove.
12208 (digest_single_submenu): Remove.
12209 (syms_of_w32menu): Don't initialise variables that have moved
12210 to menu.c.
12211 (set_frame_menubar): Sync with version in xmenu.c.
12212 (w32_menu_show): Sync with xmenu_show in xmenu.c.
12213
12214 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
12215 Make static again.
12216
12217 2008-06-09 Jason Rumney <jasonr@gnu.org>
12218
12219 Changes to w32 files related to the move of common menu code
12220 to menu.c on 2008-06-08 by Chong Yidong.
12221
12222 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
12223 defs to w32gui.h.
12224 (single_keymap_panes, push_menu_item, push_menu_pane):
12225 Make globally visible.
12226
12227 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
12228 (local_free, malloc_widget_value, free_widget_value)
12229 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
12230 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
12231 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
12232 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
12233 (menu_items, menu_items_allocated, menu_items_used)
12234 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
12235 (init_menu_items, finish_menu_items, discard_menu_items)
12236 (grow_menu_items, push_submenu_start, push_submenu_end)
12237 (push_left_right_boundary, push_menu_pane, push_menu_item)
12238 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
12239 (free_menubar_widget_tree_value, parse_single_submenu)
12240 (update_submenu_strings): Remove functions.
12241 (xmalloc_widget_value): Remove and declare extern.
12242
12243 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
12244 (OBJ1): Build it.
12245
12246 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
12247 (local_heap, local_alloc, local_free, malloc_widget_value)
12248 (free_widget_value): Define here.
12249
12250 2008-06-09 Kenichi Handa <handa@m17n.org>
12251
12252 * font.h (Qascii_0): Extern it.
12253
12254 * font.c (Qascii_0): New variable.
12255 (syms_of_font): DEFSYM it.
12256 (font_open_by_name): If the registry "iso8859-1" fails, try also
12257 "ascii-0".
12258
12259 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
12260
12261 2008-06-08 Kenichi Handa <handa@m17n.org>
12262
12263 * .gdbinit (xfont): New command.
12264
12265 2008-06-08 Andreas Schwab <schwab@suse.de>
12266
12267 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
12268 * Makefile.in (menu.o): Update dependencies.
12269
12270 * Makefile.in (obj): Always add menu.o.
12271 * emacs.c (main): Always call syms_of_menu.
12272 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
12273
12274 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
12275
12276 * Makefile.in: Compile menu.c.
12277
12278 * lisp.h: Declare syms_of_menu.
12279
12280 * emacs.c (main): Call syms_of_menu.
12281
12282 * keyboard.h: Relocate platform-independent menu definitions from
12283 xmenu.c.
12284
12285 * menu.c: New file. Relocate platform-independent menu
12286 definitions from xmenu.c. Suggested by Adrian Robert.
12287
12288 * xmenu.c: Remove platform-independent menu definitions.
12289 (menu_items, menu_items_inuse, menu_items_allocated)
12290 (menu_items_used, menu_items_n_panes)
12291 (menu_items_submenu_depth): Move to keyboard.h.
12292 (init_menu_items, finish_menu_items, unuse_menu_items)
12293 (discard_menu_items, restore_menu_items, save_menu_items)
12294 (grow_menu_items, push_submenu_start, push_submenu_end)
12295 (push_left_right_boundary, push_menu_pane, push_menu_item)
12296 (keymap_panes, single_keymap_panes, single_menu_item)
12297 (list_of_panes, list_of_items, find_and_call_menu_selection)
12298 (xmalloc_widget_value, free_menubar_widget_value_tree)
12299 (parse_single_submenu, digest_single_submenu)
12300 (update_submenu_strings): Move to menu.c.
12301
12302 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
12303
12304 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
12305
12306 2008-06-06 Miles Bader <miles@gnu.org>
12307
12308 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
12309 face, not frame default.
12310
12311 2008-06-05 Martin Rudalics <rudalics@gmx.at>
12312
12313 * window.c (pop_up_windows, pop_up_frames)
12314 (display_buffer_reuse_frames, Vpop_up_frame_function)
12315 (Vdisplay_buffer_function, Veven_window_heights)
12316 (Vspecial_display_buffer_names, Vspecial_display_regexps)
12317 (Vspecial_display_function, Vsame_window_buffer_names)
12318 (Vsame_window_regexps, split_height_threshold)
12319 (Vsplit_window_preferred_function): Move those vars to window.el.
12320 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
12321 (Fdisplay_buffer): Move those functions to window.el.
12322 (syms_of_window): Remove corresponding declarations.
12323 (display_buffer): New function.
12324 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
12325 * dispnew.c (Flast_nonminibuf_frame): New function.
12326 * buffer.c (Fpop_to_buffer): Move to window.el.
12327
12328 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
12329
12330 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
12331
12332 2008-06-05 Kenichi Handa <handa@m17n.org>
12333
12334 * coding.c (detect_coding): Fix previous change.
12335 (detect_coding_system): Likewise.
12336
12337 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
12338
12339 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
12340
12341 * keymap.c (Vminibuffer_local_filename_must_match_map):
12342 Rename from Vminibuffer_local_must_match_filename_map.
12343 (syms_of_keymap):
12344 * minibuf.c (Fcompleting_read): Adjust accordingly.
12345 * commands.h: Rename declaration as well.
12346
12347 2008-06-05 Kenichi Handa <handa@m17n.org>
12348
12349 * font.c (Ffont_spec): Don't use font_parse_family_registry for
12350 family name.
12351 (Ffont_put): Likewise.
12352
12353 * fontset.c (fontset_find_font): Call font_open_for_lface with the
12354 current font-spec.
12355
12356 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
12357 is unspecified.
12358
12359 * xfaces.c (realize_x_face): If the font-related face attributes
12360 are the same as those of default face, realize a new fontset from
12361 default->fontset.
12362 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
12363
12364 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
12365
12366 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
12367 (move_it_in_display_line): New wrapper.
12368
12369 * window.c (window_scroll_pixel_based_preserve_x)
12370 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
12371 (window_scroll_pixel_based, window_scroll_line_based):
12372 Use them to preserve column positions.
12373 (syms_of_window): Initialize them.
12374
12375 * indent.c (Fvertical_motion): Extend first arg to allow passing an
12376 (HPOS . VPOS) pair.
12377
12378 * dispextern.h (move_it_in_display_line): Declare.
12379
12380 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
12381
12382 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
12383 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
12384 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
12385
12386 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
12387
12388 * window.c (Fset_window_parameter): Doc fix.
12389 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
12390
12391 2008-06-04 Joakim Verona <joakim@verona.se>
12392
12393 * window.h (struct window): Add new member window_parameters.
12394
12395 * window.c (Fwindow_parameters, Fwindow_parameter)
12396 (Fset_window_parameter): New defuns.
12397 (syms_of_window): Defsubr the new defuns.
12398 (make_window): Initialize window_parameters to nil.
12399
12400 2008-06-04 John Paul Wallington <jpw@pobox.com>
12401
12402 * eval.c (Fdefmacro): Doc fix.
12403
12404 2008-06-04 Kenichi Handa <handa@m17n.org>
12405
12406 * coding.c (detect_coding): Fix handling of coding->head_ascii.
12407 Be sure to call setup_coding_system when we find a proper coding system.
12408 (detect_coding_system): Fix handling of coding->head_ascii.
12409
12410 2008-06-03 Andreas Schwab <schwab@suse.de>
12411
12412 * font.c (font_prop_validate_spacing): Fix last change.
12413
12414 2008-06-03 Kenichi Handa <handa@m17n.org>
12415
12416 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
12417 (font_parse_fcname): Fix handling of unknown key.
12418
12419 * xfont.c (xfont_list): Try an alias.
12420
12421 * charset.c (char_charset): Return NULL if the arg charset_list is
12422 specified and C doesn't belong to any of them.
12423
12424 2008-06-02 Chip Coldwell <coldwell@redhat.com>
12425
12426 * font.c (font_pixel_size): Don't take cdr of an integer.
12427
12428 2008-06-02 Jim Meyering <meyering@redhat.com>
12429
12430 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
12431 * alloc.c (xfree): Return right away for a NULL arg.
12432 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
12433 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
12434 * mac.c (create_apple_event_from_event_ref): Likewise.
12435 (create_apple_event_from_drag_ref, cfstring_create_normalized):
12436 Likewise.
12437 * doprnt.c (doprnt1): Likewise.
12438 * frame.c (frame): Likewise.
12439 * keyboard.c (wipe_kboard): Likewise.
12440 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
12441 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
12442 * term.c (tty_default_color_capabilities, maybe_fatal)
12443 (delete_tty): Likewise.
12444 * w16select.c (string): Likewise.
12445 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
12446 * w32bdf.c (w32_free_bdf_font): Likewise.
12447 * w32fns.c (w32_unload_font): Likewise.
12448 * w32font.c (w32font_close): Likewise.
12449 * window.c (size_window): Likewise.
12450 * xselect.c (receive_incremental_selection): Likewise.
12451 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
12452 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
12453 * w32.c (stat): Likewise.
12454
12455 Remove useless if-before-free tests.
12456 * editfns.c (Fset_time_zone_rule): Likewise.
12457 * lread.c (nosuffix): Likewise.
12458 * ralloc.c (get_bloc): Likewise.
12459 * regex.c (reg_free): Likewise.
12460 * xftfont.c (xftfont_open, xftfont_close): Likewise.
12461 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
12462 * xsmfns.c (smc_save_yourself_CB): Likewise.
12463
12464 2008-06-02 Kenichi Handa <handa@m17n.org>
12465
12466 * font.c (font_find_for_lface): Handle float font size.
12467 (font_open_for_lface): Likewise.
12468
12469 * xfaces.c (x_supports_face_attributes_p): Check face->font before
12470 comparing the properties.
12471
12472 2008-06-01 Jason Rumney <jasonr@gnu.org>
12473
12474 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
12475 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
12476 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
12477 Don't add empty script list.
12478 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
12479
12480 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
12481
12482 * Makefile.in (dot, dotdot): Remove, update users.
12483 ".." has been used elsewhere in the file for a long time.
12484 (LIBXT_STATIC): Remove conditional based on unused variable.
12485
12486 2008-06-01 Miles Bader <miles@gnu.org>
12487
12488 * xfaces.c (Vface_remapping_alist): New variable.
12489 (syms_of_xfaces): Initialize it.
12490 (enum named_merge_point_kind): New type.
12491 (struct named_merge_point): Add `named_merge_point_kind' field.
12492 (push_named_merge_point): Make cycle detection respect different
12493 named-merge-point kinds.
12494 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
12495 Remove face-name alias resolution.
12496 (lface_from_face_name): New definition using
12497 `lface_from_face_name_no_resolve'.
12498 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
12499 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
12500 (get_lface_attributes): New definition that layers face-remapping on
12501 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
12502 (lookup_basic_face): New function.
12503 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
12504 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
12505 `get_lface_attributes'.
12506 (face_at_buffer_position): Use `lookup_basic_face' to lookup
12507 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
12508 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
12509
12510 * xdisp.c (init_iterator): Pass base_face_id through
12511 `lookup_basic_face' when we actually use it as a face-id.
12512 (handle_single_display_prop): Use `lookup_basic_face' to lookup
12513 DEFAULT_FACE_ID.
12514
12515 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
12516 lookup the initial face-id.
12517
12518 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
12519
12520 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
12521
12522 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
12523 (Fremove_text_properties): Fix typos in docstrings.
12524
12525 2008-05-31 Kenichi Handa <handa@m17n.org>
12526
12527 * font.c (font_list_entities): Fix the car part of data to be
12528 stored in the cache.
12529
12530 * ftfont.c (ftfont_font_format): Don't use strcasestr.
12531
12532 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12533
12534 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
12535 Add a `test' argument so another predicate than `equal' can be used.
12536 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
12537 (map_char_table): Remove unused vars `c' and `i'.
12538 * lisp.h (Foptimize_char_table): Adjust declaration.
12539 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
12540
12541 2008-05-30 Kenichi Handa <handa@m17n.org>
12542
12543 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
12544 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
12545 defined.
12546
12547 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12548
12549 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
12550 (Fmake_variable_frame_local): Disallow mixing buffer-local and
12551 frame-local settings for the same variable.
12552
12553 2008-05-30 Kenichi Handa <handa@m17n.org>
12554
12555 * fontset.c (Ffont_info): Move to font.c.
12556 (syms_of_fontset): Delete defsubr of Sfont_info.
12557
12558 * font.c (font_style_to_value, font_score): Delete casting of the
12559 args to xstcasecmp.
12560 (register_font_driver): Increment num_font_drivers only when
12561 registering the driver globally.
12562 (Ffont_info): Move from fontset.c. Handle a font object too.
12563 (syms_of_font): Defsubr Sfont_info.
12564
12565 2008-05-29 Kenichi Handa <handa@m17n.org>
12566
12567 * coding.h (enum define_coding_utf8_arg_index): New enum.
12568 (enum coding_attr_index): Change coding_attr_utf_16_bom to
12569 coding_attr_utf_bom.
12570 (enum utf_bom_type): Rename from utf_16_bom_type.
12571 (struct utf_16_spec): Adjust for the above change.
12572 (struct coding_system): Add utf_8_bom in `spec' union.
12573
12574 * coding.c (CODING_UTF_8_BOM): New macro.
12575 (enum coding_category): Delete coding_category_utf_8, add
12576 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
12577 coding_category_utf_8_sig.
12578 (CATEGORY_MASK_UTF_8): Delete it.
12579 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
12580 (CATEGORY_MASK_UTF_8_SIG): New macros.
12581 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
12582 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
12583 CATEGORY_MASK_UTF_8_SIG.
12584 (CATEGORY_MASK_UTF_8): New macro.
12585 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
12586 (detect_coding_utf_8): Check BOM.
12587 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
12588 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
12589 (encode_coding_utf_16): Likewise.
12590 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
12591 (detect_coding, detect_coding_system): Handle utf-8-auto.
12592 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
12593 (syms_of_coding): Fix setting up of Vcoding_category_table.
12594
12595 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
12596
12597 * process.c (Faccept_process_output): If `millisec' is non-nil,
12598 `seconds' default to 0.
12599 (wait_reading_process_output): Also return non-nil if we read output
12600 from a non-running process.
12601
12602 2008-05-29 Jason Rumney <jasonr@gnu.org>
12603
12604 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
12605 `raster' specified.
12606 (add_font_entity_to_list): Allow non-opentype truetype fonts back
12607 in the uniscribe backend, but disallow any font that has no
12608 unicode subrange support.
12609
12610 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
12611
12612 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
12613 Fix typos in docstrings.
12614
12615 2008-05-29 Kenichi Handa <handa@m17n.org>
12616
12617 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
12618 (Fx_family_fonts): Set frame correctly.
12619
12620 2008-05-28 Jason Rumney <jasonr@gnu.org>
12621
12622 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
12623
12624 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
12625
12626 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
12627 calling build_annotations.
12628
12629 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
12630
12631 * coding.c (Fdecode_coding_region, Fencode_coding_region)
12632 (Fencode_coding_string):
12633 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
12634 <latin-extra-code-table>: Fix typos in docstrings.
12635 (syms_of_coding) <coding-system-alist>: Doc fix.
12636 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
12637
12638 2008-05-28 Kenichi Handa <handa@m17n.org>
12639
12640 * fontset.c (Ffont_info): Don't call font_close_object.
12641
12642 * font.c (font_parse_family_registry): Use Ffont_put to validate
12643 foundry and family.
12644 (font_delete_unmatched): Don't check spacing.
12645 (font_list_entities): Add spacing to the spec to list fonts.
12646
12647 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
12648 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
12649
12650 * coding.c (encode_coding_raw_text): Fix previous change.
12651 (encode_coding_object): When the dst_object is a buffer and is
12652 different from src_object, move gap to PT.
12653
12654 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
12655
12656 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
12657
12658 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
12659
12660 * coding.c (encode_coding_raw_text): Set coding->produced_char for
12661 all branches. Compute it differently.
12662
12663 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
12664
12665 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
12666
12667 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
12668 into "else if () ... else ...".
12669
12670 2008-05-27 Jason Rumney <jasonr@gnu.org>
12671
12672 * w32font.c (w32font_open_internal): Determine if glyph indices
12673 are likely to work here.
12674
12675 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
12676
12677 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
12678 draw overlap glyphs with appropriate highlighting.
12679
12680 2008-05-27 Kenichi Handa <handa@m17n.org>
12681
12682 * xfont.c (xfont_open): Fix calculation of font->average_width.
12683
12684 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
12685
12686 * casefiddle.c (casify_object): Try to guess better whether the
12687 argument is a byte or a char.
12688
12689 2008-05-26 Andreas Schwab <schwab@suse.de>
12690
12691 * xselect.c (x_reply_selection_request): Properly handle format == 32.
12692 Always send multiples of format size.
12693
12694 * xterm.c (x_set_frame_alpha): Fix type mismatch.
12695
12696 2008-05-26 Jason Rumney <jasonr@gnu.org>
12697
12698 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
12699 (compute_metrics): Don't set failure if we just cleared the cache.
12700 (w32_weight_table): Remove unused variable.
12701 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
12702 backwards compatibility.
12703
12704 2008-05-25 Kenichi Handa <handa@m17n.org>
12705
12706 * w32term.c (x_draw_glyph_string):
12707 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
12708
12709 * xfaces.c: Delete unused function prototypes.
12710 (xstrlwr, font_frame): Delete them.
12711 (clear_face_cache): Delete unused variable.
12712
12713 * xftfont.c (xftfont_open): Delete unused variable.
12714 If underline_thickness is not 1, adjust underline_position.
12715
12716 * ftxfont.c (ftxfont_open): Delete unused variable.
12717
12718 * fontset.c (face_for_char): Optimize for the case of no charset
12719 property.
12720
12721 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
12722 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
12723 (otf_open, font_otf_capability, generate_otf_features)
12724 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
12725 Comment out by surrounding "#if 0" and "#endif" for the moment.
12726 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
12727 (syms_of_font): Codes for accessing above commented out.
12728
12729 2008-05-24 Eli Zaretskii <eliz@gnu.org>
12730
12731 * w32proc.c: Include dispextern.h.
12732
12733 * w32.c: Include dispextern.h.
12734
12735 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
12736
12737 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
12738 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
12739 Fix typos in docstrings.
12740
12741 2008-05-23 Jason Rumney <jasonr@gnu.org>
12742
12743 * xsmfns.c: Remove includes that are already included by config.h.
12744
12745 2008-05-23 Kenichi Handa <handa@m17n.org>
12746
12747 * charset.c (Qemacs, charset_emacs): New variables.
12748 (char_charset): Fix for non-Unicode characters.
12749 (syms_of_charset): Define charset_emacs.
12750
12751 * w32term.c (x_draw_glyph_string): Be sure to update
12752 s->underline_thickness and s->underline_position. Be sure to draw
12753 underline within the current line area.
12754
12755 * xterm.c (x_draw_glyph_string): Be sure to update
12756 s->underline_thickness and s->underline_position. Be sure to draw
12757 underline within the current line area.
12758
12759 * fontset.c: Delete unused variables and add casting for char *
12760 throughout the file.
12761 (fontset_font): Try the fallback fonts of the current fontset
12762 before consulting the default fontset.
12763
12764 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
12765
12766 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
12767
12768 2008-05-22 Jason Rumney <jasonr@gnu.org>
12769
12770 * font.c: Don't include strings.h.
12771
12772 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
12773
12774 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
12775 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
12776 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
12777 to call xstrcasecmp.
12778
12779 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
12780
12781 * fontset.c (fs_query_fontset): Use xstrcasecmp.
12782
12783 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
12784
12785 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
12786
12787 2008-05-22 Kenichi Handa <handa@m17n.org>
12788
12789 * puresize.h (BASE_PURESIZE): Increase to 1220000.
12790
12791 * font.c (font_prop_validate_style): Adjust for the format
12792 change of font_style_table.
12793
12794 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
12795 two args.
12796
12797 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
12798 two args.
12799
12800 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
12801
12802 * minibuf.c (keys_of_minibuf): Delete.
12803 * lisp.h (keys_of_minibuf): Delete.
12804 * emacs.c (main): Don't call keys_of_minibuf.
12805
12806 2008-05-22 Kenichi Handa <handa@m17n.org>
12807
12808 * ftfont.c (ftfont_resolve_generic_family): Rename from
12809 ftfont_list_generic_family. Return a single family for each
12810 generic family.
12811 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
12812 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
12813 Call font_add_log.
12814 (ftfont_match): Call font_add_log.
12815
12816 * font.h (Ffont_xlfd_name): EXFUN adjusted.
12817 (FONT_DEBUG): Define it.
12818 (font_add_log): Extern it.
12819 (font_assert): Rename from xassert.
12820
12821 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
12822 (xfont_list_family): Call font_add_log.
12823 (xfont_match): Likewise.
12824 (memq_no_quit): Delete.
12825
12826 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
12827 call of Ffont_xlfd_name.
12828
12829 * xfaces.c (struct table_entry, slant_table, weight_table)
12830 (swidth_table): Move to font.c.
12831
12832 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
12833 xassert are changed to font_assert. Delete many unused variables.
12834 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
12835 New variables.
12836 (struct table_entry): Move from xfaces.c and modified.
12837 (weight_table, slant_table, width_table): Move from xfaces.c and
12838 contents adjusted for the change of struct table_entry.
12839 (font_style_to_value, font_style_symbolic): Adjust for the
12840 format change of font_style_table.
12841 (font_parse_family_registry): Don't overwrite existing foundry and
12842 family of font_spec.
12843 (font_score): Fix calculation of diff for sizes.
12844 (font_sort_entites): Call font_add_log.
12845 (font_delete_unmatched): Return a newly created list.
12846 (font_list_entities): Fix previous change. Call font_add_log.
12847 (font_matching_entity, font_open_entity, font_close_entity):
12848 Call font_add_log.
12849 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
12850 (Finternal_set_font_style_table): Delete.
12851 (BUILD_STYLE_TABLE): New macro.
12852 (build_style_table): New function.
12853 (Vfont_log, font_log_env_checked): New variables.
12854 (font_add_log): New function.
12855 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
12856 Declare Lisp variables "font-weight-table", "font-slant-table",
12857 "font-width-table", and "font-log". Initialize font_style_table.
12858
12859 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
12860
12861 * xterm.c (x_set_frame_alpha): Move declarations before statements.
12862
12863 2008-05-21 Seiji Zenitani <zenitani@mac.com>
12864 Ryo Yoshitake <ryo@shiftmode.net>
12865
12866 * frame.c (Qalpha): Add a new frame parameter `alpha'.
12867 (Vframe_alpha_lower_limit): New variable.
12868 (x_set_alpha): New function.
12869
12870 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
12871
12872 * xfns.c (x-create-frame, Qalpha):
12873 Initialize the frame parameter `alpha'.
12874 * xterm.c (OPAQUE, OPACITY): New.
12875 (x_set_frame_alpha): New function.
12876 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
12877
12878 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
12879 * w32fns.c (w32_frame_parm_handlers): Likewise.
12880
12881 2008-05-20 Jason Rumney <jasonr@gnu.org>
12882
12883 * w32font.c (add_font_entity_to_list): Don't add non-opentype
12884 truetype fonts to opentype list.
12885
12886 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
12887
12888 * fontset.c (Ffontset_info): Doc fix.
12889 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
12890 <ignore-relative-composition>: Fix typos in docstrings.
12891
12892 * font.c (syms-of-font) <font-encoding-alist>:
12893 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
12894 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
12895 (Ffont_otf_alternates): Doc fixes.
12896
12897 2008-05-20 Kenichi Handa <handa@m17n.org>
12898
12899 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
12900 font.h through out the file.
12901 (FONT_DRIVERS): Rename from FONTOBJ.
12902 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
12903 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
12904
12905 * emacs.c (main): Call syms_of_font unconditionally.
12906
12907 * font.h (find_font_encoding): Extern it.
12908
12909 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
12910 fontset.c.
12911 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
12912 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
12913 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
12914 only when HAVE_WINDOW_SYSTEM is defined.
12915 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
12916 when HAVE_WINDOW_SYSTEM is defined.
12917
12918 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
12919 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
12920
12921 * xfaces.c: Include font.h unconditionally.
12922 (merge_face_ref, merge_face_vectors)
12923 (Finternal_set_lisp_face_attribute): Cancel the previous change.
12924
12925 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
12926
12927 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
12928 indirect_variable.
12929 * eval.c (lisp_indirect_variable): New fun.
12930 (Fuser_variable_p): Use it.
12931
12932 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
12933
12934 * lisp.h (indirect_variable):
12935 * data.c (indirect_variable, let_shadows_buffer_binding_p):
12936 Use Lisp_Symbol pointers rather than Lisp_Object.
12937 Adjust callers.
12938 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
12939 To this end, change calling-convention.
12940
12941 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
12942 if some non-hidden buffers are selected by string&pred.
12943
12944 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
12945
12946 * process.c (wait_reading_process_output): Always check status
12947 when in batch mode.
12948
12949 2008-05-19 Kenichi Handa <handa@m17n.org>
12950
12951 * font.c (font_list_entities): Fix handling of cache.
12952 (font_matching_entity): Likewise.
12953
12954 * ftfont.c (cs_iso8859_1): Delete.
12955 (ft_face_cache): New variable.
12956 (struct ftfont_info): New member fc_charset_idx.
12957 (ftfont_build_basic_charsets): Delete.
12958 (fc_charset_table): New variable.
12959 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
12960 . FC_CHARSET_IDX) as :font-entity property in the font entity.
12961 Callers changed.
12962 (ftfont_lookup_cache, ftfont_get_charset): New functions.
12963 (ftfont_spec_pattern): New argument fc_charset_idx.
12964 Check registry more rigidly. Change callers.
12965 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
12966 change of :font-entity property of the font.
12967
12968 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
12969 property of the font.
12970
12971 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
12972
12973 * coding.c (Fcoding_system_p): Rename argument to match docstring.
12974 (Funencodable_char_position, Fcheck_coding_systems_region)
12975 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
12976 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
12977 (Ffind_operation_coding_system, Fset_coding_system_priority)
12978 (Fcoding_system_eol_type): Doc fixes.
12979
12980 2008-05-17 Glenn Morris <rgm@gnu.org>
12981
12982 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
12983
12984 2008-05-16 Eli Zaretskii <eliz@gnu.org>
12985
12986 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
12987 and st_gid.
12988
12989 * frame.c (Fdelete_frame): Don't call font_update_drivers if
12990 HAVE_WINDOW_SYSTEM is not defined.
12991
12992 * xfaces.c (merge_face_ref, merge_face_vectors)
12993 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
12994 HAVE_WINDOW_SYSTEM is defined.
12995 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
12996
12997 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
12998
12999 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
13000
13001 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13002
13003 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
13004
13005 2008-05-15 Kenichi Handa <handa@m17n.org>
13006
13007 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
13008 preference.
13009
13010 2008-05-15 Glenn Morris <rgm@gnu.org>
13011
13012 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
13013
13014 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
13015
13016 * fns.c (init_fns): Don't initialize weak_hash_tables here.
13017 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
13018
13019 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
13020
13021 2008-05-15 Kenichi Handa <handa@m17n.org>
13022
13023 * ftfont.c (ftfont_list): Downcase family name to check generic
13024 families.
13025
13026 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
13027 font-spec for QCfont value.
13028
13029 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
13030 buffer. Check the return value of it.
13031
13032 2008-05-14 Jason Rumney <jasonr@gnu.org>
13033
13034 * w32term.c (w32_get_glyph_overhangs): Remove.
13035 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
13036
13037 2008-05-14 Kenichi Handa <handa@m17n.org>
13038
13039 * font.c (font_prop_validate): Make nil a valid value.
13040 (font_clear_cache): Check if the cached vector of entities is nil
13041 or not.
13042
13043 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13044
13045 * emacs.c (main_thread): Conditionalize on
13046 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
13047 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
13048
13049 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
13050 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
13051 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
13052
13053 2008-05-14 Kenichi Handa <handa@m17n.org>
13054
13055 * coding.c (detect_coding_iso_2022): Ignore a coding category that
13056 has no corresponding coding system.
13057
13058 2008-05-14 Jason Rumney <jasonr@gnu.org>
13059
13060 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
13061
13062 * w32font.h (w32font_open_internal): Update declaration.
13063
13064 * w32font.c (w32font_open_internal): Change last argument from
13065 w32font_info struct to font object. Fill in font object from
13066 font_entity. Get Outline metrics if possible. Use them to
13067 calculate underline position and thickness. Use xlfd name as name
13068 property. Don't set codepage.
13069 (w32font_open): Pass font_object to w32font_open_internal. Don't
13070 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
13071 (w32font_draw): Use s->font.
13072 (clear_cached_metrics): Don't clear non-existent blocks.
13073
13074 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
13075 font was not found.
13076 (x_draw_glyph_string): Use underline position and thickness from font.
13077
13078 * w32uniscribe.c (uniscribe_open): Pass font_object to
13079 w32font_open_internal.
13080
13081 2008-05-14 Kenichi Handa <handa@m17n.org>
13082
13083 These changes are to delete all legacy font-handling codes, and
13084 make Emacs use only font-backends.
13085
13086 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
13087 (frame.o, image.o, print.o): Depend on $(FONTSRC).
13088
13089 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
13090
13091 * charset.h (Vcharset_non_preferred_head)
13092 (Vcurrent_iso639_language): Extern them.
13093
13094 * charset.c (Vcharset_non_preferred_head): New variable.
13095 (Vcurrent_iso639_language): New variable.
13096 (syms_of_charset): Declare it as a Lisp variable.
13097 (char_charset): Don't check non preferred charsets. As a last
13098 resort, return charset_unicode.
13099 (Fset_charset_priority): Update Vcharset_non_preferred_head.
13100
13101 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
13102 conditionals. Don't check enable_font_backend. Delete all codes
13103 used only when USE_FONT_BACKEND is not defined.
13104
13105 * dispextern.h (struct glyph_string): Change type of `font' to
13106 `struct font *'.
13107 (struct glyph_string): New member underline_position and
13108 underline_thickness.
13109 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
13110 (struct face): Change type of `font' to `struct font *'. Remove
13111 members `font_name', `font_info_id'.
13112 (per_char_metric, encode_char): Delete externs.
13113 (calc_pixel_width_or_height): Adjust the prototype.
13114
13115 * emacs.c (enable_font_backend): Delete extern.
13116 (main): Don't set enable_font_backend. Don't check the command
13117 line argument "-disable-font-backend".
13118
13119 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
13120 (enum font_property_index): New members FONT_DPI_INDEX,
13121 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
13122 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
13123 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
13124 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
13125 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
13126 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
13127 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
13128 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
13129 (struct font_spec, struct font_entity): New structs.
13130 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
13131 (struct font): Many members from old "struct font_info" moved to
13132 here. Members font and entity deleted.
13133 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
13134 the new font-related objects.
13135 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
13136 (CHECK_FONT_GET_OBJECT): Likewise.
13137 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
13138 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
13139 (struct font_driver): New members case_sensitive anc check. Type
13140 of the member list and open changed.
13141 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
13142 (font_symbolic_width, font_find_object, font_get_spec)
13143 (font_set_lface_from_name): Delete extern.
13144 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
13145
13146 * font.c: Include <strings.h>.
13147 (enable_font_backend): Delete it.
13148 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
13149 (CHECK_VALIDATE_FONT_SPEC): Delete it.
13150 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
13151 (null_string): Delete it.
13152 (null_vector): Make it static.
13153 (font_family_alist): Delete it.
13154 (Qnormal): Extern it.
13155 (QCextra, QClanguage): Delete it.
13156 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
13157 (font_make_spec, font_make_entity, font_make_object)
13158 (font_intern_prop): Renamed from intern_downcase. Don't downcase
13159 the string. Callers changed.
13160 (font_pixel_size): Adjusted for the format change of font-related
13161 objects.
13162 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
13163 (font_style_to_value, font_style_symbolic): New function.
13164 (build_font_family_alist): Delete it.
13165 (font_registry_charsets): Use Fassoc_string instead of
13166 assq_no_quit.
13167 (font_prop_validate_symbol): Don't return null_string.
13168 (font_prop_validate_style): Adjusted for the change of
13169 style-related values in a font vector.
13170 (font_property_table): Delete entries for QClanguage and
13171 QCantialias, add entries for QCavgwidth.
13172 (get_font_prop_index): Delete the 2nd argument FROM.
13173 (font_prop_validate): Arguments changed.
13174 (font_put_extra): Adjusted for the change of font-related objects.
13175 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
13176 (font_parse_fcname, font_unparse_fcname)
13177 (font_prepare_composition): Likewise.
13178 (font_parse_family_registry): Renamed from font_merge_old_spec.
13179 (otf_open): Delete the 1st arg entity.
13180 (font_otf_capability): Adjusted for the above change.
13181 (font_score): New arg alternate_families. Adjusted for the change
13182 of font-related objects.
13183 (font_sort_entites): New arg best_only.
13184 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
13185 Delete them.
13186 (font_match_p): Check alternate families.
13187 (font_find_object): Delete it.
13188 (font_check_object): New function.
13189 (font_clear_cache): Adjusted for the change of font-related objects.
13190 (font_delete_unmatched): New arg.
13191 (font_list_entities): Call font_driver->list with a spec that
13192 doesn't specify style-related properties.
13193 (font_matching_entity): Arguments changed. Caller changed.
13194 (font_open_entity): Adjusted for the change of font-related objects.
13195 (font_close_object, font_has_char, font_encode_char)
13196 (font_get_name, font_get_spec): Likewise.
13197 (font_spec_from_name, font_clear_prop, font_update_lface):
13198 New functions.
13199 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
13200 (font_prepare_for_face, font_done_for_face, font_open_by_name)
13201 (font_at): Adjusted for the change of font-related objects.
13202 (font_range): New function.
13203 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
13204 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
13205 (Fcopy_font_spec, Fmerge_font_spec): New function.
13206 (Ffont_family_list): Renamed from list-families.
13207 (Finternal_set_font_style_table): Arguments changed.
13208 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
13209 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
13210 change of font-related objects.
13211 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
13212
13213 * fontset.h (struct font_info): Delete it. Most members go to
13214 struct font.
13215 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
13216 (enum FONT_SPEC_INDEX): Delete it.
13217 (font_info, list_fonts_func, load_font_func, query_font_func)
13218 (set_frame_fontset_func, find_ccl_program_func)
13219 (get_font_repertory_func, new_fontset_from_font_name): Delete
13220 externs.
13221 (fontset_from_font_name): Extern it.
13222 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
13223 (FONT_INFO_FROM_FACE): Deleted.
13224 (face_for_font): Adjust prototype.
13225
13226 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
13227 conditionals. Don't check enable_font_backend. Delete all codes
13228 used only when USE_FONT_BACKEND is not defined.
13229 (get_font_info_func, list_font_func, load_font_func)
13230 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
13231 (get_font_repertory_func): Delete them.
13232 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
13233 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
13234 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
13235 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
13236 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
13237 (fontset_compare_rfontdef): New function.
13238 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
13239 rfont-defs by qsort. Adjusted for the change of font-group vector.
13240 (load_font_get_repertory): Deleted.
13241 (fontset_find_font): Use new macros to ref/set elements of
13242 font-def and rfont-def.
13243 (fontset_font): Fix the timing of remembering that no font for C.
13244 (free_face_fontset): Do nothing if the face has no fontset.
13245 (face_suitable_for_char_p): Use new macros to ref/set elements of
13246 rfont-def.
13247 (face_for_char): Likewise. Call face_for_char with font_object.
13248 (fs_load_font): Delete. Delete #pragma surrounding it.
13249 (fs_query_fontset): Use strcasecmp instead of strcmp.
13250 (generate_ascii_font_name): Adjusted for the format change of
13251 font-spec.
13252 (Fset_fontset_font): Likewise. Use new macros to set elements of
13253 font-def.
13254 (Fnew_fontset): Use font_unparse_xlfd to generate
13255 FONTSET_ASCII (fontset).
13256 (new_fontset_from_font_name): Deleted.
13257 (fontset_from_font): Renamed from new_fontset_from_font. Check if
13258 a fontset is already created for the font. FIx updating of
13259 Vfontset_alias_alist.
13260 (fontset_ascii_font): Deleted.
13261 (Ffont_info): Adjusted for the format change of font-spec.
13262 (Finternal_char_font): Likewise.
13263 (Ffontset_info): Likewise.
13264 (syms_of_fontset): Don't check load_font_func.
13265
13266 * fns.c (internal_equal): Handle PREV_FONT.
13267
13268 * frame.h: Delete USE_FONT_BACKEND conditional.
13269
13270 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
13271 conditionals. Don't check enable_font_backend. Delete all codes
13272 used only when USE_FONT_BACKEND is not defined.
13273 (x_set_font): Call x_new_font, not x_new_fontset2.
13274 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
13275 already set for the frame.
13276
13277 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
13278 a font-entity by font_make_entity. Use font_intern_prop instead
13279 of intern_downcase. Use FONT_SET_STYLE to set a style-related
13280 font property. If a font is scalable, set avgwidth property to 0.
13281 Set font-entity property by font_put_extra.
13282 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
13283 (ffont_driver): Adjusted for the change of struct font_driver.
13284 (ftfont_spec_pattern): New function.
13285 (ftfont_list): Return a list, not vector.
13286 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
13287 (ftfont_list_family): Don't downcase names.
13288 (ftfont_free_entity): Deleted.
13289 (ftfont_open): Return a font-object. Adjusted for the change of
13290 struct font. Get underline_thickness and underline_position from
13291 font property. Don't update dpyinfo->smallest_font_height and
13292 dpyinfo->smallest_char_width.
13293 (ftfont_close): Don't free `struct font'.
13294 (ftfont_has_char): Adjusted for the format change of font-entity.
13295 (ftfont_encode_char, ftfont_text_extents): Likewise.
13296
13297 * ftxfont.c (ftxfont_list): Return a list, not vector.
13298 (ftxfont_open): Return a font-object. Adjusted for the change of
13299 struct font. Get underline_thickness and underline_position from
13300 font property. Don't update dpyinfo->smallest_font_height and
13301 dpyinfo->smallest_char_width.
13302 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
13303 (ftxfont_draw): Adjusted for the change of struct font.
13304
13305 * image.c (image_ascent): Don't include "charset.h". Include
13306 "character.h" and "font.h".
13307
13308 * lisp.h (enum pvec_type): New member PREV_FONT.
13309 (Fassoc_string): EXFUN it.
13310
13311 * print.c: Include font.h.
13312 (print_object): Handle font-related objects.
13313
13314 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
13315 conditionals. Don't check enable_font_backend. Delete all codes
13316 used only when USE_FONT_BACKEND is not defined.
13317 (handle_auto_composed_prop): Do nothing if it->f is not on a
13318 window system. Check how many following characters can be
13319 displayed by the same font.
13320 (calc_pixel_width_or_height): Type of the 4th arg is changed to
13321 'struct font *'.
13322 (get_char_face_and_encoding): Assign the whole encoding task to
13323 the `encode-char' method of a font driver.
13324 (fill_composite_glyph_string): Adjusted for the change of `struct
13325 face' and `struct glyph_string'.
13326 (fill_glyph_string): Likewise.
13327 (get_per_char_metric): Arguments changed.
13328 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
13329 and `struct glyph_string'.
13330 (produce_stretch_glyph, calc_line_height_property)
13331 (x_produce_glyphs): Likewise.
13332
13333 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
13334 conditionals. Don't check enable_font_backend. Delete all codes
13335 used only when USE_FONT_BACKEND is not defined. Use
13336 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
13337 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
13338 (Qp): Extern them.
13339 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
13340 Deleted.
13341 (struct font_name): Deleted.
13342 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
13343 (compare_fonts_by_sort_order): New function.
13344 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
13345 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
13346 Deleted.
13347 (Fx_family_fonts): Use font_list_entities, and sort fonts by
13348 compare_fonts_by_sort_order.
13349 (Fx_font_family_list): Call Ffont_family_list.
13350 (face_numeric_value, face_numeric_weight, face_numeric_slant)
13351 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
13352 (face_symbolic_slant, face_symbolic_swidth)
13353 (split_font_name_into_vector, build_font_name_from_vector)
13354 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
13355 (font_rescale_ratio, split_font_name, build_font_name)
13356 (free_font_names, sort_fonts, x_face_list_fonts)
13357 (face_font_available_p, sorted_font_list, cmp_font_names)
13358 (font_list_1, concat_font_list, font_list, remove_duplicates):
13359 Deleted.
13360 (Fx_list_fonts): Use Ffont_list.
13361 (LFACE_AVGWIDTH): Deleted.
13362 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
13363 by FONTP.
13364 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
13365 (set_lface_from_font_name): Delete it.
13366 (set_lface_from_font): Renamed from
13367 set_lface_from_font_and_fontset. Caller changed. Don't set
13368 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
13369 for face.
13370 (merge_face_vectors): Copy font-spec if necessary.
13371 Clear properties of the font-spec if necessary.
13372 (merge_face_ref): Clear properties of the font-spec if necessary.
13373 (Finternal_set_lisp_face_attribute): Likewise.
13374 (set_font_frame_param): Use font_load_for_lface to load a
13375 font-object, and call Fmodify_frame_parameters with it.
13376 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
13377 font name by Ffont_xlfd_name.
13378 (Finternal_lisp_face_attribute_values): Don't check QCweight,
13379 QCslant, and QCwidth.
13380 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
13381 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
13382 Compare fonts by EQ.
13383 (lookup_non_ascii_face): Deleted.
13384 (face_for_font): The 2nd argument changed.
13385 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
13386 Check atomic font properties by case insensitive.
13387 (realize_non_ascii_face): Set face->overstrike correctly.
13388 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
13389 (dump_realized_face): Get font name from
13390 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
13391
13392 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
13393 conditionals. Don't check enable_font_backend. Delete all codes
13394 used only when USE_FONT_BACKEND is not defined.
13395 (xic_create_xfontset): Original code deleted and renamed from
13396 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
13397 (x_make_gc): Don't set GCFont in GCs.
13398 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
13399 opened by "fixed".
13400 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
13401 find_ccl_program_func, query_font_func, set_frame_fontset_func,
13402 get_font_repertory_func.
13403
13404 * xfont.c: Include <stdlib.h> and "ccl.h".
13405 (struct xfont_info): New structure.
13406 (xfont_query_font): Deleted.
13407 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
13408 moved from xterm.c.
13409 (xfont_driver): Adjusted for the change of struct font_driver.
13410 (compare_font_names): New function.
13411 (xfont_list_pattern): Sort font names case insensitively. Make
13412 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
13413 (xfont_list): Return a list, not vector.
13414 (xfont_match): If the font doesn't have QCname property, generate
13415 a name from the other font properties.
13416 (xfont_open): Return a font-object. Adjusted for the change of
13417 struct font. Get underline_thickness and underline_position from
13418 font property. Don't update dpyinfo->smallest_font_height and
13419 dpyinfo->smallest_char_width.
13420 (xfont_close): Don't free struct font.
13421 (xfont_prepare_face): Adjusted for the change of struct font.
13422 (xfont_done_face): Deleted.
13423 (xfont_has_char): Adjusted for the change of struct font.
13424 (xfont_encode_char, xfont_draw): Likewise.
13425 (xfont_check): New function.
13426
13427 * xftfont.c (xftfont_list): Adjusted for the change of `list'
13428 callback function.
13429 (xftfont_match): Adjusted for the format change of font-entity.
13430 (xftfont_open): Adjusted for the format change of font-entity and
13431 font-object. Adjusted for the change of struct font. Return a
13432 font-object. Don't update dpyinfo->smallest_font_height and
13433 dpyinfo->smallest_char_width.
13434 (xftfont_close): Block input while calling XftFontClose.
13435 (xftfont_prepare_face): Don't block input while calling
13436 xftfont_get_colors. Adjusted for the change of struct font.
13437 (xftfont_shape): Return value of error case fixed.
13438
13439 * xrdb.c (x_load_resources): Don't setup a fontset resource.
13440
13441 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
13442 conditionals.
13443 (FONT_WIDTH): Return (f)->max_width.
13444 (struct x_display_info): Delete member `font'.
13445 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
13446 (x_find_ccl_program, x_get_font_repertory): Delete externs.
13447 (struct x_output): Change type of `font' to `struct font *'.
13448
13449 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
13450 conditionals. Don't check enable_font_backend. Delete all codes
13451 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
13452 (x_per_char_metric, x_encode_char): Deleted.
13453 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
13454 (x_compute_glyph_string_overhangs): Adjusted for the change of
13455 `struct face'.
13456 (x_draw_glyph_string_foreground)
13457 (x_draw_composite_glyph_string_foreground): Likewise.
13458 (x_draw_glyph_string): Likewise. Use font->underline_position and
13459 font->underline_thickness.
13460 (x_new_font): Renamed from x_new_fontset2.
13461 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
13462 (x_check_font): Call `check' method of a font driver.
13463 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
13464 (x_query_font, x_get_font_repertory): Deleted.
13465 (x_find_ccl_program): Renamed and moved to xfont.c.
13466 (x_redisplay_interface): Adjusted for the change of `struct
13467 redisplay_interface'.
13468
13469 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
13470 conditionals. Don't check enable_font_backend. Delete all codes
13471 used only when USE_FONT_BACKEND is not defined. Surround non-used
13472 code by "#ifdef OLD_FONT" and "endif".
13473 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
13474
13475 * w32font.h (struct w32font_info): New member.
13476 (FONT_COMPAT): New macro.
13477 (w32font_open_internal): Prototype adjusted.
13478
13479 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
13480 OLD_FONT" and "endif".
13481
13482 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
13483 conditionals. Don't check enable_font_backend. Delete all codes
13484 used only when USE_FONT_BACKEND is not defined.
13485 (w32font_open): Return a font-object. Make a font-object by
13486 font_make_object. Adjusted for the change of struct w32font_info.
13487 (w32font_close): Don't free struct font. Adjusted for the change
13488 of struct w32font_info.
13489 (w32font_encode_char, w32font_text_extents, w32font_draw):
13490 Adjusted for the change of struct w32font_info.
13491 (w32font_draw): Likewise.
13492 (w32font_list_internal): Return a list, not vector.
13493 (w32font_open_internal): Change the 4th arg to font-object.
13494 Adjusted for the change of struct w32font_info and font-object format.
13495 (add_font_name_to_list): Don't downcase names.
13496 (w32_enumfont_pattern_entity): Make a font-entity by
13497 font_make_entity. Adjusted for the format change of font-entity.
13498 Use FONT_SET_STYLE to set a style-related font property. If a
13499 font is scalable, set avgwidth property to 0. Set font-entity
13500 property by font_put_extra.
13501 (font_matches_spec): Adjusted for the format change of font-entity.
13502 (w32_weight_table, w32_decode_weight): New variables.
13503 (w32_encode_weight): New function.
13504 (fill_in_logfont): Adjusted for the format change of font-spec.
13505 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
13506 weight value.
13507 (w32font_driver): Adjusted for the change of struct font_driver.
13508
13509 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
13510 conditionals. Don't check enable_font_backend. Surround non-used
13511 code by "#ifdef OLD_FONT" and "endif".
13512 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
13513 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
13514
13515 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
13516 conditionals. Don't check enable_font_backend. Delete all codes
13517 used only when USE_FONT_BACKEND is not defined. Surround non-used
13518 code by "#ifdef OLD_FONT" and "endif".
13519
13520 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
13521 (uniscribe_open): Return value changed to font-object.
13522 Adjusted for the format change of font-object.
13523 (uniscribe_otf_capability): Adjusted for the change of struct font.
13524 (add_opentype_font_name_to_list): Don't downcase names.
13525 (uniscribe_font_driver): Adjusted for the change of struct
13526 font_driver.
13527
13528 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
13529
13530 * dispnew.c (update_frame_1): Check if tty output is still valid
13531 before flushing it.
13532
13533 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
13534
13535 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
13536 to Gtk+ menus.
13537
13538 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
13539
13540 * dired.c (file_name_completion): Tweak the code so as to always do it
13541 in a single pass. Tighten the scope of some variables.
13542
13543 * dired.c (Qdefault_directory): New var.
13544 (file_name_completion): Use it instead of Fexpand_file_name.
13545 (syms_of_dired): Initialize it.
13546
13547 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13548
13549 * fileio.c (double_dollars): Remove dead code.
13550
13551 2008-05-10 Eli Zaretskii <eliz@gnu.org>
13552
13553 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
13554 Mention w32-get-true-file-attributes in doc string.
13555
13556 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
13557
13558 2008-05-09 Glenn Morris <rgm@gnu.org>
13559
13560 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
13561 2008-04-23.
13562
13563 2008-05-09 Eli Zaretskii <eliz@gnu.org>
13564
13565 Support for reporting owner and group of each file on MS-Windows:
13566 * dired.c (stat_uname, stat_gname): New functions, with special
13567 implementation for w32.
13568 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
13569
13570 * w32.c: Rename the_passwd_* to dflt_passwd_*.
13571 (dflt_group_name): New static variable.
13572 (dflt_group): Rename from the_group.
13573 (init_user_info): Init dflt_group fields. Get user's group name
13574 from LookupAccountSid.
13575 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
13576 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
13577 New initialization states.
13578 (globals_of_w32): Initialize them to zero. Initialize the default
13579 group name to "None".
13580 (GetFileSecurity_Name): New global var, the name of the function
13581 to call for GetFileSecurity.
13582 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
13583 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
13584 (get_file_security, get_security_descriptor_owner)
13585 (get_security_descriptor_group, is_valid_sid)
13586 (get_file_security_desc, get_rid, get_name_and_id)
13587 (get_file_owner_and_group): New functions.
13588 (stat): Use get_file_security_desc and get_file_owner_and_group to
13589 report the owner and primary group of each file. Don't ignore the
13590 high 32 bits of file's size, now that st_size is 64-bit wide.
13591 Fix test when to get true file attributes.
13592 (init_user_info): Use get_rid instead of equivalent inline code.
13593 (fstat): Don't ignore the high 32 bits of file's size.
13594
13595 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
13596
13597 * image.c (png_load): Use correct bit-depth for setting background
13598 color.
13599
13600 2008-05-08 Eli Zaretskii <eliz@gnu.org>
13601
13602 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
13603 epa-hook.elc.
13604
13605 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
13606
13607 * font.c (Ffont_match_p): Don't use `iff' in docstring.
13608
13609 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
13610
13611 * macfns.c (Fx_create_frame): Make a copy of frame parameters
13612 because the original parameters are in pure storage now.
13613 (mac_window): Remove unused params. Update callers.
13614
13615 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13616
13617 * lread.c (substitute_object_recurse): Use lower-level primitives.
13618 Don't signal errors when traversing sub-char-tables.
13619 Don't loop over all the possible characters when traversing char-tables.
13620
13621 * print.c (print_preprocess): Add sub-char-tables to the print-table,
13622 just like we do in print.c.
13623
13624 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
13625
13626 * minibuf.c (Ftry_completion): Remove code left over from when we used
13627 scmp instead of Fcompare_strings.
13628
13629 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
13630
13631 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
13632
13633 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13634
13635 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
13636 Create bitmap context in native byte order.
13637
13638 * macterm.c (XDrawLine)
13639 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
13640 context in native byte order.
13641
13642 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13643
13644 * config.in: Regenerate.
13645
13646 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
13647 New definitions for Image I/O support.
13648 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
13649 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
13650 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
13651 (mac_data_provider_release_data, image_load_image_io)
13652 [USE_MAC_IMAGE_IO]: New functions.
13653 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
13654 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
13655 (init_image_func_pointer) [MAC_OSX]: Remove function.
13656 (image_load_quartz2d) [MAC_OSX]: Check availability of
13657 CGImageCreateWithPNGDataProvider at compile time.
13658 Use lowercase `false' for boolean constant.
13659 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
13660 Use image_load_image_io.
13661 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
13662 Don't check MyCGImageCreateWithPNGDataProvider.
13663 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
13664 Don't call init_image_func_pointer.
13665
13666 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
13667
13668 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
13669 Make variable non-static.
13670 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
13671 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
13672
13673 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
13674 (RED_FROM_ULONG): Mask off higher bits.
13675 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
13676
13677 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
13678 Include AvailabilityMacros.h.
13679 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
13680 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
13681
13682 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13683
13684 * chartab.c (Fset_char_table_range): If range is t, really set all
13685 chars to that value.
13686
13687 2008-05-03 Eli Zaretskii <eliz@gnu.org>
13688
13689 * dired.c (Ffile_attributes): Don't allow the device number become
13690 negative.
13691
13692 2008-05-02 Daiki Ueno <ueno@unixuser.org>
13693
13694 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
13695
13696 2008-05-02 Juri Linkov <juri@jurta.org>
13697
13698 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
13699 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
13700 DEFAULT argument as a list of default values in docstrings.
13701
13702 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
13703
13704 * puresize.h (BASE_PURESIZE): Increase to 1210000.
13705
13706 2008-05-01 Martin Rudalics <rudalics@gmx.at>
13707
13708 * dispnew.c (change_frame_size_1): Preserve small windows when
13709 shrinking frames by calling set_window_height|width with third
13710 arg 2.
13711
13712 * window.h (struct window): Replace field too_small_ok by field
13713 resize_proportionally.
13714
13715 * window.c (make_window): Initialize resize_proportionally.
13716 (enlarge_window): Temporarily set resize_proportionally to make
13717 sure that shrink_windows does scale the window proportionally.
13718 (shrink_windows): When window has resize_proportionally set try
13719 to shrink it proportionally by stealing from other windows.
13720 (struct saved_window, Fset_window_configuration)
13721 (compare_window_configurations): Handle resize_proportionally.
13722 (WINDOW_TOTAL_SIZE): New macro.
13723 (window_min_size, shrink_windows, size_window): Use it.
13724 (check_min_window_sizes): Remove. Invalid values of
13725 window-min-height|width are handled by window_min_size_2 now.
13726 (size_window, Fsplit_window, enlarge_window)
13727 (adjust_window_trailing_edge, grow_mini_window): Don't call
13728 check_min_window_sizes.
13729 (window_min_size_2, window_min_size_1, window_min_size):
13730 New argument safe_p for retrieving "safe" minimum sizes.
13731 (Fdisplay_buffer, Fsplit_window, enlarge_window)
13732 (adjust_window_trailing_edge, grow_mini_window):
13733 Adjust arguments of window_min_size... functions.
13734 (shrink_windows): Argument min_size removed. New argument
13735 safe_p allows shrinking windows to their safe minimum sizes.
13736 Calculate minimum size and decide whether a window shall be
13737 deleted for each window individually.
13738 (size_window): When nodelete_p equals 2, tell shrink_windows to
13739 delete windows only if their new minimum size is no more safe.
13740 (shrink_window_lowest_first): Call window_min_size_1 to make
13741 sure to preserve modeline of bottom-most window when resizing
13742 the minibuffer.
13743 (Fset_window_configuration, Fcurrent_window_configuration)
13744 (compare_window_configurations): Do not handle
13745 window-min-height|width any more.
13746 (syms_of_window): Clarify window-min-height|width doc-strings.
13747
13748 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
13749
13750 * dired.c (file_name_completion): Fix up the encoding/decoding issue
13751 some more. Copy some of the code from Ftry_completions.
13752 Remove special case code that dates back to initial revision when the
13753 slash was only added when necessary and that can't trigger nowadays.
13754
13755 2008-04-27 Kenichi Handa <handa@m17n.org>
13756
13757 * font.c (font_prop_validate): Signal `error' instead of `font'.
13758
13759 2008-04-29 Jason Rumney <jasonr@gnu.org>
13760
13761 * w32fns.c (Fw32_battery_status): New defun.
13762 (syms_of_w32fns): Defsubr it.
13763
13764 2008-04-28 Andreas Schwab <schwab@suse.de>
13765
13766 * dired.c (file_name_completion): Fix another mixing of encoded
13767 and decoded names.
13768
13769 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
13770
13771 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
13772
13773 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
13774
13775 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
13776
13777 2008-04-27 Andreas Schwab <schwab@suse.de>
13778
13779 * dired.c (file_name_completion): Fix inappropriate mixing of
13780 encoded and decoded names.
13781
13782 * xterm.c (XTread_socket): Fix use of uninitialized variable.
13783
13784 * puresize.h (BASE_PURESIZE): Increase to 1200000.
13785
13786 2008-04-26 Eli Zaretskii <eliz@gnu.org>
13787
13788 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
13789 2008-03-31, it's not needed anymore with `struct stat' definition
13790 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
13791 for the same reasons.
13792
13793 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
13794
13795 * m/sparc.h: Additional redefinitions for GNU/Linux.
13796
13797 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13798
13799 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
13800 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
13801 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
13802 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
13803 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
13804 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
13805 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
13806 Likewise.
13807
13808 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
13809 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
13810 (mac_ax_number_of_characters): Add externs.
13811 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
13812 [USE_MAC_TSM]: Likewise.
13813 (mac_handle_text_input_event) [MAC_OSX]:
13814 Handle kEventTextInputOffsetToPos for no active input area case.
13815 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
13816 (mac_handle_document_access_event)
13817 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
13818 (install_application_handler) [MAC_OSX]: Register handlers for
13819 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
13820 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
13821 Register mac_handle_document_access_event.
13822
13823 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
13824 Make functions non-static.
13825
13826 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
13827
13828 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
13829 (read_file_name_completion_ignore_case, insert_default_directory)
13830 (Qdefault_directory): Move to minibuffer.el.
13831 (Fread_file_name): Call the new `read-file-name' instead.
13832
13833 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13834
13835 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
13836 Make function non-static.
13837 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
13838 Remove function.
13839 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
13840 Move to mactoolbox.c.
13841 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
13842
13843 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
13844 (mac_rect_make): New macro.
13845
13846 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
13847 instead of float.
13848 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
13849 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
13850 (XSetBackground) [USE_CG_DRAWING]: Likewise.
13851 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
13852 CGRectMake.
13853 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
13854 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
13855 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
13856 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
13857 instead of WindowRef in argument type.
13858 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
13859 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
13860 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
13861 instead of DISPLAY. All uses changed.
13862 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
13863 (x_calc_absolute_position): Simplify so as not to use
13864 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
13865
13866 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
13867 instead of WindowRef in argument type.
13868 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
13869 [TARGET_API_MAC_CARBON]: Remove externs.
13870 (create_apple_event, mac_event_parameters_to_lisp)
13871 [TARGET_API_MAC_CARBON]: Add externs.
13872
13873 * mactoolbox.c (Vmac_ts_script_language_on_focus)
13874 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
13875 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
13876 is clicked.
13877 (x_activate_menubar): Remove extern for saved_menu_event_location.
13878 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
13879 Move from mac.c.
13880
13881 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13882
13883 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
13884 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
13885
13886 2008-04-23 Jason Rumney <jasonr@gnu.org>
13887
13888 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
13889 attributes only for local files.
13890
13891 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
13892 default to Qlocal.
13893
13894 2008-04-22 Juri Linkov <juri@jurta.org>
13895
13896 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
13897 read-buffer-to-switch instead of using the letter "B".
13898
13899 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
13900
13901 * fileio.c (Qdefault_directory): New variable.
13902 (Fread_file_name): Use it to pass `dir' to the completion functions.
13903
13904 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
13905
13906 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
13907
13908 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13909
13910 * keyboard.c (Vpre_help_message): Remove.
13911 (show_help_echo): Remove default C code.
13912
13913 * dired.c (directory_files_internal, file_name_completion):
13914 Only call ENCODE_FILE if the string is indeed decoded.
13915
13916 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13917
13918 * Makefile.in (TOOLKIT_DEFINES): Remove.
13919 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
13920
13921 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13922
13923 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
13924 (mactoolbox.o): New target.
13925
13926 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
13927 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
13928
13929 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
13930 Use mac_set_frame_window_background instead of XSetWindowBackground.
13931 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
13932 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
13933 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
13934 instead of SetWindowTitleWithCFString.
13935 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
13936 Move function to mactoolbox.c.
13937 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
13938 Use mac_set_window_modified instead of SetWindowModified.
13939 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
13940 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
13941 (Fx_focus_frame): Use mac_front_non_floating_window instead of
13942 FrontNonFloatingWindow. Use mac_activate_window instead of
13943 ActivateWindow. Use mac_active_non_floating_window instead of
13944 ActiveNonFloatingWindow.
13945 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
13946 Use mac_show_hourglass and mac_hide_hourglass.
13947 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
13948 instead of GetGlobalMouse.
13949 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
13950 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
13951 Use mac_bring_window_to_front instead of BringToFront.
13952 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
13953 mactoolbox.c.
13954 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
13955 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
13956 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
13957 mactoolbox.c.
13958
13959 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
13960 (XtPointer): Move typedef from macmenu.c.
13961 (enum button_type): Move enum from macmenu.c.
13962 (widget_value): Move typedef from macmenu.c.
13963 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
13964 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
13965 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
13966 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
13967 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
13968 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
13969 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
13970 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
13971 (Selection): Move typedef from macselect.c.
13972 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
13973 macterm.c.
13974 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
13975 (mac_is_window_collapsed, mac_bring_window_to_front)
13976 (mac_send_window_behind, mac_hide_window, mac_show_window)
13977 (mac_collapse_window, mac_front_non_floating_window)
13978 (mac_active_non_floating_window, mac_activate_window)
13979 (mac_move_window_structure, mac_move_window, mac_size_window)
13980 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
13981
13982 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
13983 (enum mac_menu_kind): Move enum to mactoolbox.c.
13984 (min_menu_id): Move variable to mactoolbox.c.
13985 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
13986 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
13987 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
13988 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
13989 [TARGET_API_MAC_CARBON]: Likewise.
13990 (XtPointer): Move typedef to macgui.h.
13991 (enum button_type): Move enum to macgui.h.
13992 (widget_value): Move typedef to macgui.h.
13993 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
13994 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
13995 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
13996 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
13997 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
13998 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
13999 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
14000 (popup_activated_flag): Make variable non-static.
14001 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
14002 (add_menu_item, fill_menu, dispose_menus):
14003 Move functions to mactoolbox.c.
14004 (restore_show_help_function, menu_target_item_handler)
14005 (install_menu_target_item_handler, mac_handle_dialog_event)
14006 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
14007 [TARGET_API_MAC_CARBON]: Likewise.
14008 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
14009 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
14010 (find_and_call_menu_selection, name_is_separator): Make function
14011 non-static.
14012 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
14013 to mactoolbox.c.
14014 (set_frame_menubar): Don't call install_menu_quit_handler.
14015 (menu_item_selection): New variable.
14016 (mac_menu_show): Use create_and_show_popup_menu.
14017 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
14018 selection but set variable menu_item_selection. All uses changed.
14019 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
14020 Call install_menu_quit_handler. Move to mactoolbox.c.
14021
14022 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
14023 (Selection): Move typedef to macgui.h.
14024 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
14025 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
14026 Make variables non-static.
14027 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
14028 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
14029 Make functions non-static.
14030 (Vmac_service_selection) [MAC_OSX]: Likewise.
14031 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
14032 (mac_valid_selection_target_p, mac_clear_selection)
14033 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
14034 (mac_put_selection_value, mac_selection_has_target_p)
14035 (mac_get_selection_value, mac_get_selection_target_list)
14036 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
14037 Move functions to mactoolbox.c.
14038 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
14039 Likewise.
14040 (copy_scrap_flavor_data, mac_handle_service_event)
14041 (install_service_handler) [MAC_OSX]: Likewise.
14042 (syms_of_macselect) <Vmac_dnd_known_types>:
14043 Use mac_dnd_default_known_types.
14044
14045 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
14046 Move to mactoolbox.c.
14047 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
14048 (Fx_selection_owner_p): Add EXFUN.
14049 (install_window_handler, remove_window_handler, XSetWindowBackground):
14050 Remove externs.
14051 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
14052 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
14053 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
14054 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
14055 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
14056 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
14057 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
14058 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
14059 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
14060 (create_and_show_popup_menu, mac_get_selection_from_symbol)
14061 (mac_valid_selection_target_p, mac_clear_selection)
14062 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
14063 (mac_put_selection_value, mac_selection_has_target_p)
14064 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
14065 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
14066 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
14067 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
14068 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
14069 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
14070 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
14071 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
14072 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
14073
14074 * mactoolbox.c: New file.
14075
14076 2008-04-18 Jason Rumney <jasonr@gnu.org>
14077
14078 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
14079
14080 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
14081
14082 * character.c (Fmultibyte_char_to_unibyte):
14083 Return latin1 chars unchanged.
14084
14085 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
14086 relocated if it points to `name'.
14087
14088 2008-04-17 Kenichi Handa <handa@m17n.org>
14089
14090 * data.c (Faset): Allow setting a multibyte character in an
14091 ASCII-only unibyte string.
14092
14093 * lisp.h (STRING_SET_MULTIBYTE): New macro.
14094
14095 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
14096
14097 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
14098 done in config.h.
14099
14100 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
14101
14102 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
14103 (Fchar_direction): Add usage in the docstring.
14104
14105 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
14106
14107 * keyboard.c (read_key_sequence): Remove always-true checks.
14108
14109 2008-04-14 Jason Rumney <jasonr@gnu.org>
14110
14111 * w32font.c (w32font_open_internal): Set max_bounds.descent in
14112 compatibility struct, for better underline positioning.
14113
14114 2008-04-13 David Hansen <david.hansen@gmx.net>
14115
14116 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
14117 string.
14118
14119 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
14120
14121 * m/hp800.h (XUINT, XSET): Remove.
14122
14123 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
14124
14125 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
14126 previous change.
14127
14128 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
14129
14130 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
14131 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
14132
14133 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
14134
14135 * keymap.h (map_keymap_canonical): Declare.
14136 * xmenu.c (single_keymap_panes): Use it.
14137
14138 2008-04-11 Glenn Morris <rgm@gnu.org>
14139
14140 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
14141 set the target's value to that of the alias.
14142
14143 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
14144
14145 * term.c (set_tty_color_mode): Left over typo.
14146
14147 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
14148
14149 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
14150 only after check for file name handler functions. Signal, when
14151 native functionality is not supported.
14152 (syms_of_fileio): Declare it unconditionally.
14153
14154 2008-04-10 Jason Rumney <jasonr@gnu.org>
14155
14156 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
14157 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
14158
14159 * w32.c (logon_network_drive): Also logon to remote drives that
14160 are mapped to drive letters.
14161
14162 2008-04-10 Glenn Morris <rgm@gnu.org>
14163
14164 * xdisp.c (truncate-partial-width-windows): Doc fix.
14165
14166 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
14167
14168 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
14169 Move functions to minibuffer.el.
14170 (syms_of_fileio): Don't declare them.
14171
14172 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
14173
14174 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
14175 (syms_of_minibuf): Remove its initialization.
14176
14177 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
14178
14179 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
14180
14181 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
14182
14183 2008-04-09 Jason Rumney <jasonr@gnu.org>
14184
14185 * makefile.w32-in (distclean): Delete makefile too.
14186 (maintainer-clean): New target.
14187
14188 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
14189
14190 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
14191 for new font backend and composite cases.
14192
14193 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
14194
14195 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
14196 Most of the code moved to run_timers.
14197 (do_pending_atimers): Call run_timers.
14198 (run_timers): New function.
14199
14200 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
14201 run atimers.
14202
14203 * process.c (wait_reading_process_output): The same as above.
14204
14205 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
14206
14207 * minibuf.c (last_exact_completion): Remove variable.
14208 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
14209 (complete_and_exit_1, complete_and_exit_2)
14210 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
14211 (Fdisplay_completion_list, display_completion_list_1)
14212 (Fminibuffer_completion_help, Fself_insert_and_exit)
14213 (Fexit_minibuffer, Fminibuffer_message): Move functions to
14214 minibuffer.el.
14215 (syms_of_minibuf): Remove corresponding initializations.
14216
14217 * keyboard.c (Qdeactivate_mark): New var.
14218 (command_loop_1): Use it to call `deactivate-mark'.
14219 (syms_of_keyboard): Initialize it.
14220
14221 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
14222 to another frame.
14223 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
14224 Don't call set_tty_color_mode.
14225 (store_frame_param): Reset previous_frame rather than call
14226 set_tty_color_mode.
14227 * term.c (set_tty_color_mode): Rewrite.
14228 * dispextern.h (set_tty_color_mode): New type.
14229 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
14230
14231 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
14232
14233 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
14234 for generic chars, which do not exist any more in emacs-unicode.
14235
14236 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
14237
14238 * coding.c (detect_coding_emacs_mule)
14239 (Ffind_operation_coding_system): Fix typo.
14240
14241 2008-04-08 Jason Rumney <jasonr@gnu.org>
14242
14243 * w32uniscribe.c (SNAME): Extract only symbol name.
14244
14245 * w32font.h (struct w32_metric_cache): New struct.
14246 (w32font_info): Use it.
14247 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
14248 (CACHE_BLOCKSIZE): New constants.
14249
14250 * w32font.c (Qja, Qko, Qzh): New symbols.
14251 (syms_of_w32font): Initialise them.
14252 (font_matches_spec): Use them to filter by language.
14253 (recompute_cached_metrics): Remove function.
14254 (compute_metrics, clear_cached_metrics): New functions.
14255 (w32font_encode_char): Use them to manage metric cache.
14256 (w32font_text_extents): Cache metrics for all glyphs on demand.
14257 Delay converting glyph indices to WORD until needed.
14258 (w32font_open_internal): Initialize metric cache to empty.
14259 (registry_to_w32_charset): Charset should always be a symbol.
14260 (fill_in_logfont, list_all_matching_fonts): Family should
14261 always be a symbol.
14262
14263 2008-04-06 Jason Rumney <jasonr@gnu.org>
14264
14265 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
14266 Give up if glyph indices not supported. Use uniscribe obtained
14267 ABC widths for individual metrics. Map glyph clusters back to
14268 characters using fClusterStart flag. Return number of glyphs
14269 produced, not chars processed.
14270 (uniscribe_shape): Map char at FROM to current glyph.
14271
14272 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14273
14274 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
14275 Use SetMenuItemHierarchicalMenu.
14276
14277 2008-04-05 Jason Rumney <jasonr@gnu.org>
14278
14279 * image.c (pbm_load): Allow color values up to 65535.
14280 Throw an error if max_color_idx is outside the supported range.
14281 Report an error when image size is invalid.
14282 Read two bytes at a time when raw images have max_color_idx above 255.
14283
14284 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
14285
14286 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
14287 append "CCL: Quitted" when the CCL program is quitted.
14288 (setup_ccl_program): Initialize ccl->quit_silently to zero.
14289
14290 * ccl.h (struct ccl_program): New member quit_silently.
14291
14292 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
14293
14294 * search.c (compile_pattern_1): Treat non-nil and non-string of
14295 search-spaces-regexp as nil.
14296
14297 * minibuf.c (Fassoc_string): Tweak docstring.
14298
14299 2008-04-05 Eli Zaretskii <eliz@gnu.org>
14300
14301 * dired.c (Ffile_attributes): Support inode numbers wider than 32
14302 bits. Remove ugly WINDOWSNT-specific kludge introduced on
14303 2008-03-14 to force inode be positive.
14304
14305 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
14306 _S_* ones, since we now use our own sys/stat.h.
14307 (stat, fstat): Don't mangle the inode number.
14308 (init_user_info): Don't restrict UID and GID to 0-60000 range.
14309
14310 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
14311
14312 * frame.h (struct frame): Give one more bit to `visible' since we use
14313 values larger than 1 to indicate obscured frames on ttys.
14314
14315 * keymap.c (Qkeymap_canonicalize): New var.
14316 (Fmap_keymap_internal): New fun.
14317 (describe_map): Use keymap-canonicalize.
14318
14319 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
14320 (Fundo_boundary): Set them.
14321 (syms_of_undo): Initialize them.
14322 (record_point): Use them instead of last_point_position*.
14323 (last_undo_buffer): Change type.
14324
14325 2008-04-04 Jason Rumney <jasonr@gnu.org>
14326
14327 * w32font.c (w32font_text_extents): Use font's ascent and descent.
14328 (recompute_cached_metrics): Don't set ascent and descent per char.
14329
14330 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
14331 (uniscribe_check_otf): Add GC protection before consing.
14332 Rearrange loop for counting features.
14333
14334 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
14335
14336 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
14337 buffer with byte-size of source buffer.
14338
14339 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
14340
14341 * callint.c (Fcall_interactively): Handle temporary region even
14342 when shift-select-mode is off.
14343
14344 2008-04-03 Jason Rumney <jasonr@gnu.org>
14345
14346 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
14347
14348 2008-04-03 Kenichi Handa <handa@m17n.org>
14349
14350 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
14351 (CATEGORY_MASK_UTF_16): Likewise.
14352 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
14353 binary file.
14354 (detect_coding): Add null-byte detection for a binary file.
14355 (detect_coding_system): Likewise.
14356
14357 2008-04-03 Jason Rumney <jasonr@gnu.org>
14358
14359 * w32uniscribe.c: New file.
14360
14361 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
14362
14363 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
14364
14365 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
14366 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
14367 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
14368 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
14369 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
14370 (Qphonetic): New symbols.
14371 (syms_of_w32font): Initialize them.
14372 (font_supported_scripts): Use them.
14373 (w32font_list_family): List all charsets.
14374 (w32font_text_extents, recompute_cached_metrics): Fix metric
14375 calculations.
14376 (w32_enumfont_pattern_entity): Make full_type a DWORD.
14377 Give opentype fonts their own format.
14378 (font_matches_spec): New arguments backend and logfont.
14379 Handle :otf spec for uniscribe backend.
14380 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
14381 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
14382
14383 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
14384 font backend.
14385 (globals_of_w32fns): Initialize uniscribe font backend.
14386
14387 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
14388 dependencies.
14389 (w32uniscribe.$(O)): New file to build.
14390 (FONT_OBJ): Include w32uniscribe.$(O).
14391 (LIBS): Add uniscribe libraries.
14392
14393 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
14394
14395 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
14396
14397 * callint.c (Vshift_select_mode): New var.
14398 (Finteractive): Document new ^ spec.
14399 (Fcall_interactively): Call handle-shift-selection if the ^ spec
14400 is present.
14401
14402 * keyboard.c (Vthis_command_keys_shift_translated): New var.
14403 (command_loop_1): Avoid running the direct display versions of
14404 forward-char and backward-char if shift-selection may occur.
14405 (read_key_sequence): Set Vthis_command_keys_shift_translated if
14406 shift-translation takes place.
14407
14408 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
14409 avoid clobbering by define-minor-mode.
14410
14411 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
14412 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
14413
14414 * syntax.c (Fforward_word): Add ^ interactive spec.
14415
14416 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
14417 (Fscroll_right): Add ^ interactive spec.
14418
14419 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
14420
14421 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
14422
14423 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
14424
14425 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
14426
14427 2008-03-31 Juri Linkov <juri@jurta.org>
14428
14429 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
14430
14431 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
14432
14433 * gtkutil.c (xg_set_geometry): Fix indentation.
14434 (xg_resize_outer_widget): Remove.
14435 (x_wm_size_hint_off): Fix indentation.
14436 (xg_frame_set_char_size): Call flush_and_sync after
14437 gtk_window_resize.
14438 (x_wm_set_size_hint): Pass NULL as geometry window to
14439 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
14440 Add menu bar and tool bar height to base height.
14441 (xg_update_frame_menubar, free_frame_menubar)
14442 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
14443 (update_frame_tool_bar, free_frame_tool_bar):
14444 Change xg_resize_outer_widget to xg_frame_set_char_size.
14445
14446 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
14447
14448 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
14449 (Fdbus_call_method): New parameter TIMEOUT.
14450 (dbus-send-signal): Optimize UNGCPRO call.
14451
14452 2008-03-29 Juri Linkov <juri@jurta.org>
14453
14454 * window.c (Fdisplay_buffer): Move call to
14455 Vsplit_window_preferred_function out of conditions that check
14456 if window is eligible for vertical splitting.
14457 When Vsplit_window_preferred_function is non-nil, call it and use
14458 its non-nil return value as window. Otherwise, continue doing
14459 vertical splitting using Fsplit_window with arg horflag=nil.
14460 (syms_of_window) <Vsplit_window_preferred_function>: Change the
14461 default value from `split-window' to nil.
14462
14463 2008-03-29 Juri Linkov <juri@jurta.org>
14464
14465 * callint.c (Fcall_interactively): Revert 2008-03-16 change
14466 for interactive code letters 'b' and 'B'.
14467
14468 2008-03-29 Eli Zaretskii <eliz@gnu.org>
14469
14470 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
14471 multibyte string.
14472
14473 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
14474
14475 * keyboard.c (pending_funcalls): New var.
14476 (timer_check): Run it.
14477 (syms_of_keyboard): Initialize it.
14478 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
14479 (Vdelete_terminal_functions): New vars.
14480 (syms_of_terminal): Initialize them.
14481 (Fdelete_terminal): Run delete-terminal-functions.
14482 * xdisp.c (safe_eval): Rewrite.
14483 (safe_call2): New fun.
14484 * frame.c (Qdelete_frame_functions): New var.
14485 (syms_of_frame): Initialize it.
14486 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
14487 * lisp.h (safe_call2, pending_funcalls): Declare.
14488
14489 2008-03-28 Andreas Schwab <schwab@suse.de>
14490
14491 * indent.c (Fmove_to_column): Move declaration before statements.
14492
14493 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
14494
14495 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
14496 (struct frame): Use bit fields for boolean vars.
14497
14498 * process.c (server_accept_connection): Simplify naming.
14499 (emacs_get_tty_pgrp): Use SDATA.
14500
14501 * coding.c (decode_coding_object): Fix last change.
14502
14503 2008-03-27 Jason Rumney <jasonr@gnu.org>
14504
14505 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
14506
14507 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
14508
14509 * charset.c (Fdefine_charset_internal): Change the way of
14510 registering charsets in Vcharset_order_list.
14511 (syms_of_charset): Make the charset `eight-bit' supplementary.
14512
14513 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
14514
14515 * regex.c (EXTEND_BUFFER): Change order of pointer addition
14516 operations, to avoid having the difference between pointers
14517 overflow.
14518
14519 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
14520
14521 * indent.c (check_display_width): New fun.
14522 (scan_for_column): Use it.
14523
14524 * data.c (syms_of_data): Mark most-positive-fixnum and
14525 most-negative-fixnum as constants.
14526
14527 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
14528
14529 * indent.c (scan_for_column): Extract from current_column_1.
14530 Merge with the same code from Fmove_to_column.
14531 (current_column_1, Fmove_to_column): Use it.
14532
14533 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
14534
14535 * keymap.c (map_keymap_internal): New fun.
14536 (map_keymap): Use it.
14537 (Fmap_keymap_internal): New fun.
14538 (Fmap_keymap): Remove left-out test from before make_save_value.
14539
14540 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
14541
14542 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
14543 Use XCAR/XCDR.
14544
14545 * process.h (struct Lisp_Process): Remove filter_multibyte.
14546 * process.c (QCfilter_multibyte): Remove.
14547 (setup_process_coding_systems): Don't use filter_multibyte.
14548 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
14549 (read_process_output): Don't adjust multibyteness to filter_multibyte.
14550 (Fset_process_filter_multibyte): Change the coding-system to
14551 approximate the previous behavior.
14552 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
14553 coding-system.
14554
14555 * coding.c (decode_coding_object): When not decoding into a buffer,
14556 obey the coding system's preference of (uni|multi)byte.
14557
14558 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
14559
14560 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
14561 every char is changed and has a different byte-length.
14562 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
14563 Fix int -> EMACS_INT.
14564
14565 2008-03-23 David Hansen <david.hansen@gmx.net>
14566
14567 * dbusbind.c (xd_read_message): Remove extra copying of message
14568 strings. Check for NULL `interface' or `member'.
14569
14570 2008-03-22 Eli Zaretskii <eliz@gnu.org>
14571
14572 * w32.c (readdir): If FindFirstFile/FindNextFile return in
14573 cFileName a file name that includes `?' characters, use the 8+3
14574 alias in cAlternateFileName instead.
14575
14576 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14577
14578 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
14579
14580 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
14581
14582 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
14583 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
14584 work on current_buffer only instead (that was already the case
14585 for some of the code anyway).
14586 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
14587 (temp_set_point, temp_set_point_both): Use EMACS_INT.
14588 (SET_PT, SET_PT_BOTH): Adjust.
14589 * intervals.h (set_point, temp_set_point, set_point_both)
14590 (temp_set_point_both): Remove redundant declarations.
14591
14592 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
14593
14594 * fileio.c (Finsert_file_contents):
14595 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
14596 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
14597 when buffer != current_buffer anyway.
14598
14599 2008-03-20 Andreas Schwab <schwab@suse.de>
14600
14601 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
14602 as default.
14603
14604 2008-03-19 Jason Rumney <jasonr@gnu.org>
14605
14606 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
14607 (syms_of_w32fns): Initialize them.
14608 (HOURGLASS_ID): New constant.
14609 (x_window_to_frame): Don't check hourglass_window.
14610 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
14611 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
14612 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
14613 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
14614 Only change the cursor if hourglass is not active.
14615 (Fx_create_frame): Initialize frame's current_cursor.
14616 (hourglass_atimer): Remove.
14617 (hourglass_started): New function.
14618 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
14619 (show_hourglass): Adapt to w32, changing argument to frame.
14620
14621 * w32term.h (struct w32_output): Remove hourglass_window.
14622 Add current_cursor.
14623
14624 * eval.c (call_debugger, Fsignal):
14625 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
14626 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
14627 (Fexecute_extended_command, cancel_hourglass_unwind):
14628 * minibuf.c (read_minibuf):
14629 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
14630
14631 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
14632
14633 * window.c (run_funs): New fun.
14634 (run_window_configuration_change_hook): Use it to run the buffer-local
14635 and the global part of the hook.
14636
14637 * xdisp.c (format_mode_line_unwind_data): Add window argument.
14638 (unwind_format_mode_line): Restore selected window.
14639 (x_consider_frame_title, Fformat_mode_line): Set selected window.
14640
14641 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
14642
14643 * editfns.c (Fchar_equal): Check they are valid characters.
14644
14645 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
14646
14647 2008-03-17 Andreas Schwab <schwab@suse.de>
14648
14649 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
14650 against a charset.
14651
14652 * lisp.h (Fbuffer_list): Declare.
14653
14654 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
14655
14656 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
14657 handlebox_widget is != 0.
14658
14659 2008-03-16 Juri Linkov <juri@jurta.org>
14660
14661 * callint.c (Fcall_interactively): For interactive code letters
14662 'b' and 'B' put the buffer list into the list of default "future"
14663 values of the minibuffer.
14664
14665 2008-03-16 Andreas Schwab <schwab@suse.de>
14666
14667 * keyboard.c (read_key_sequence): Fix downcasing of letters with
14668 modifiers.
14669
14670 * regex.c (re_match_2_internal): Correct matching of a charset
14671 against latin-1 characters.
14672
14673 2008-03-16 Kenichi Handa <handa@m17n.org>
14674
14675 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
14676 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
14677 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
14678 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
14679 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
14680 CHAR_STRING_ADVANCE.
14681 (produce_chars): Fix for the case that the source and the
14682 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
14683 instead of CHAR_STRING_ADVANCE.
14684 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
14685 STRING_CHAR_ADVANCE.
14686
14687 2008-03-15 Andreas Schwab <schwab@suse.de>
14688
14689 * regex.c (re_match_2_internal): Correct matching of eight bit
14690 characters in unibyte strings.
14691
14692 2008-03-15 Martin Rudalics <rudalics@gmx.at>
14693
14694 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
14695 at end of range when it coincides with the end of the buffer.
14696
14697 2008-03-14 Eli Zaretskii <eliz@gnu.org>
14698
14699 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
14700
14701 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
14702
14703 2008-03-14 Jason Rumney <jasonr@gnu.org>
14704
14705 * editfns.c (initial_tz): New variable.
14706 (syms_of_editfns): Initialize it.
14707 (Fset_time_zone_rule): Set it when first called.
14708 Use it when TZSTRING is nil.
14709
14710 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
14711 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
14712 (monitor_from_point_fn, get_monitor_info_fn): New globals.
14713 (globals_of_w32fns): Initialize them.
14714 (compute_tip_xy): Use them to position tooltips.
14715
14716 2008-03-14 Glenn Morris <rgm@gnu.org>
14717
14718 * emacs.c (main): Revert previous change.
14719 (standard_args): Revert -internal-script back to -scriptload,
14720 and remove the long-option form.
14721
14722 2008-03-13 Glenn Morris <rgm@gnu.org>
14723
14724 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
14725 Remove option -enable-font-backend.
14726
14727 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14728
14729 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
14730
14731 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
14732
14733 * xterm.c (x_connection_closed): For GTK: If this is the last
14734 terminal just exit without closing the display.
14735
14736 2008-03-11 Jason Rumney <jasonr@gnu.org>
14737
14738 * w32font.c (w32font_full_name): Use floor to round.
14739
14740 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
14741
14742 * sound.c (alsa_configure): Declare vol at beginning of block.
14743
14744 * fontset.c (Ffontset_info): Remove extra semicolon.
14745
14746 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
14747
14748 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
14749 size of resulting string.
14750
14751 2008-03-10 Jason Rumney <jasonr@gnu.org>
14752
14753 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
14754
14755 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14756
14757 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
14758 Don't pretend as if characters with display property haven't been
14759 consumed for string-replacing-string case.
14760
14761 2008-03-08 Kim F. Storm <storm@cua.dk>
14762
14763 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
14764 (get_next_display_element, next_element_from_string)
14765 (next_element_from_ellipsis, next_element_from_buffer): Use it.
14766
14767 2008-03-08 Andreas Schwab <schwab@suse.de>
14768
14769 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
14770
14771 2008-03-06 Jason Rumney <jasonr@gnu.org>
14772
14773 * w32font.c (w32_registry): Take font_type argument. Use ANSI
14774 when charset not specified. Only translate ANSI to unicode when
14775 font_type is truetype.
14776 (w32font_coverage_ok): New function.
14777 (add_font_entity_to_list): Use it to filter unsuitable fonts.
14778
14779 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
14780
14781 * lread.c (Fread_char): Resolve modifiers.
14782 (Fread_char_exclusive): Likewise.
14783
14784 * character.c (char_resolve_modifier_mask): New function.
14785 (char_string): Use char_resolve_modifier_mask.
14786 (Fchar_resolve_modifiers): New function.
14787 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
14788 function.
14789
14790 2008-03-04 Jason Rumney <jasonr@gnu.org>
14791
14792 * makefile.w32-in: Always include w32font.c in the build.
14793 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
14794
14795 2008-03-04 Andreas Schwab <schwab@suse.de>
14796
14797 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
14798 (versionclean): Likewise.
14799
14800 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
14801
14802 * .cvsignore: Add oo.
14803
14804 2008-03-03 Andreas Schwab <schwab@suse.de>
14805
14806 * coding.c (decode_coding_object): Inhibit gap shrinking while
14807 decoding in place.
14808
14809 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
14810
14811 * w32term.c: Remove unused include "gnu.h".
14812 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
14813
14814 * gnu.h: Rename to ...
14815 * emacs-icon.h: ... this.
14816 * xterm.c: Use emacs-icon.h instead of gnu.h.
14817 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
14818
14819 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
14820
14821 * w32font.c: Include math.h.
14822
14823 2008-03-03 Jason Rumney <jasonr@gnu.org>
14824
14825 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
14826 Compute options separately.
14827 (w32font_open_internal): Set glyph_idx before caching metrics.
14828
14829 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
14830 Define if system headers don't.
14831 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
14832 (w32font_encode_char): Don't declare here.
14833
14834 * w32font.c (Quniscribe, QCformat): New symbols.
14835 (syms_of_w32font): Define them.
14836 (w32font_has_char): Indicate uncertainty.
14837 (w32font_encode_char): Encode as glyph point. Make static.
14838 (recompute_cached_metrics): New function.
14839 (w32font_open_internal): Use it. Set font to use glyph points
14840 initially. Set format based on type of font.
14841 (w32font_text_extents, w32font_draw): Optionally use glyph points.
14842 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
14843 on it. Set format based on information available here.
14844 (add_font_entity_to_list): Identify backend based on opentype_only.
14845
14846 2008-03-02 Andreas Schwab <schwab@suse.de>
14847
14848 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
14849
14850 * coding.c (decode_coding_big5, produce_chars):
14851 Fix typos in last change.
14852
14853 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
14854
14855 * gnu.h: New icon.
14856
14857 2008-03-02 Kenichi Handa <handa@m17n.org>
14858
14859 * coding.c (decode_coding_utf_8): When eol-type of CODING is
14860 `dos', don't decode '\r' if that is the last in the source.
14861 (decode_coding_utf_16, decode_coding_emacs_mule)
14862 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14863 (decode_coding_raw_text, decode_coding_charset): Likewise.
14864 (produce_chars): Don't decode EOL here. Use EMACS_INT.
14865
14866 2008-03-01 Jason Rumney <jasonr@gnu.org>
14867
14868 * w32font.c (w32font_full_name): Report point size for scalable fonts.
14869
14870 2008-03-01 Kim F. Storm <storm@cua.dk>
14871
14872 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
14873
14874 2008-03-01 Jason Rumney <jasonr@gnu.org>
14875
14876 * w32font.c (w32font_full_name): New function.
14877 (w32font_open_internal): Use it.
14878
14879 2008-03-01 Kim F. Storm <storm@cua.dk>
14880
14881 * dispnew.c (line_draw_cost): Fix invalid glyph check.
14882
14883 2008-03-01 Jason Rumney <jasonr@gnu.org>
14884
14885 * font.c (font_unparse_fcname): Increase len when style is a symbol.
14886
14887 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
14888
14889 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
14890 xg_frame_resized when the event is for the edit widget.
14891
14892 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
14893
14894 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
14895 set_char_size.
14896 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
14897 operations on widgets here. Just set frame size if needed.
14898 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
14899 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
14900 (x_wm_set_size_hint): Set size hints on the edit widget only, not
14901 the whole frame.
14902 (xg_create_tool_bar): Move attachment of the tool bar to
14903 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
14904 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
14905
14906 2008-03-01 Jason Rumney <jasonr@gnu.org>
14907
14908 * w32fns.c (w32_msg_pump): Disable debug code.
14909
14910 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14911
14912 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
14913
14914 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
14915
14916 * xdisp.c (next_overlay_string): Don't set
14917 overlay_strings_at_end_processed_p if we're currently reading from
14918 a display string.
14919
14920 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
14921
14922 * xdisp.c (get_overlay_strings_1): Fix typo.
14923
14924 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
14925
14926 * xdisp.c (get_overlay_strings_1): Add missing argument type.
14927
14928 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
14929
14930 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
14931
14932 * xdisp.c (display_mode_element): Cancel the previous change.
14933 (decode_mode_spec): Likewise.
14934 (handle_auto_composed_prop): Don't make composition if it->string
14935 is a string.
14936
14937 2008-02-27 Kim F. Storm <storm@cua.dk>
14938
14939 * lisp.h (GLYPH): Change type from int to struct with separate char
14940 and face_id members.
14941 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
14942 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
14943 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
14944 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
14945 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
14946 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
14947 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
14948 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
14949 handle new Lisp glyph code encoding, either an integer or a cons.
14950
14951 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
14952 (GLYPH_ALIAS): Delete.
14953 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
14954 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
14955 (GLYPH_FROM_CHAR): Replace macro by ...
14956 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
14957
14958 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
14959 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
14960 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
14961 (GLYPH_INVALID_P): New macro.
14962 (spec_glyph_lookup_face): Update prototype.
14963
14964 * dispnew.c (line_draw_cost): Adapt to new glyph type.
14965 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
14966 new glyph code encoding.
14967 (spec_glyph_lookup_face): No return value; update passed glyph instead.
14968 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
14969
14970 * xdisp.c (get_next_display_element, next_element_from_display_vector):
14971 Adapt to new glyph type and new glyph code encoding.
14972
14973 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
14974
14975 * indent.c (current_column, current_column_1, Fmove_to_column)
14976 (compute_motion): Adapt to new glyph code encoding.
14977
14978 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
14979
14980 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
14981
14982 * process.c (wait_reading_process_output): Check for window
14983 changes caused by timers.
14984 Suggested by Johan Bockgård.
14985
14986 2008-02-27 Glenn Morris <rgm@gnu.org>
14987
14988 * emacs.c (USAGE1): Add `--disable-font-backend'.
14989
14990 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
14991
14992 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
14993 is made to the buffer.
14994
14995 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
14996
14997 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
14998 (face_at_string_position):
14999 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
15000 (face_at_string_position):
15001 * xdisp.c (display_string, next_overlay_change):
15002 * buffer.h (overlays_at):
15003 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
15004 Update callers.
15005
15006 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
15007
15008 * editfns.c (Fformat): Doc fix.
15009
15010 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
15011
15012 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
15013 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
15014 (Ffont_otf_alternates, Fquery_font): Doc fixes.
15015
15016 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
15017
15018 * buffer.c (Fbuffer_swap_text): New function.
15019 (syms_of_buffer): Defsubr it.
15020
15021 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
15022
15023 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
15024
15025 2008-02-25 Jason Rumney <jasonr@gnu.org>
15026
15027 * w32font.c (w32font_draw): Draw one character at a time when padding.
15028
15029 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
15030
15031 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
15032 Handle a nil arg. Use run_window_configuration_change_hook.
15033 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
15034 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
15035 Use run_window_configuration_change_hook.
15036
15037 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
15038
15039 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
15040 1-pixel width.
15041
15042 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
15043
15044 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
15045 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
15046 if the glyph in the font is zero pixel with.
15047
15048 * dispextern.h (struct glyph_string): New member padding_p.
15049
15050 * w32font.c (w32font_draw): Pay attention to s->padding_p.
15051
15052 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
15053
15054 * xfont.c (xfont_draw): Pay attention to s->padding_p.
15055
15056 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
15057
15058 * font.c: If the font driver doesn't have `shape' function, return Qnil.
15059
15060 2008-02-25 Jason Rumney <jasonr@gnu.org>
15061
15062 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
15063
15064 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
15065
15066 Allow fine-grained image-cache flushing.
15067 * dispextern.h (struct image): Add `dependencies' field.
15068 (clear_image_caches): Change arg to Lisp_Object.
15069 * image.c (make_image): Initialize `dependencies' field.
15070 (clear_image_cache): Change arg to allow fine-grained flushing.
15071 Perform the flush even if image-cache-eviction-delay is nil.
15072 (clear_image_caches): Change arg to Lisp_Object.
15073 (Fclear_image_cache): Expand meaning of the argument.
15074 (mark_image): Mark `dependencies' field.
15075 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
15076 (lface_hash): Use XHASH rather than XFASTINT.
15077 (face_at_buffer_position): Fix int -> EMACS_INT position.
15078 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
15079 (select_frame_for_redisplay): Remove code duplication.
15080 (redisplay_internal): Adapt arg to call to clear_image_caches.
15081
15082 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
15083
15084 * s/vms4-0.h:
15085 * s/vms4-2.h:
15086 * s/vms4-4.h:
15087 * s/vms5-5.h: Remove, unused.
15088
15089 * s/irix5-2.h:
15090 * s/irix6-0.h:
15091 * s/riscos5.h:
15092 * s/mach-bsd4-3.h:
15093 * m/mips4.h: Remove files for obsolete systems.
15094
15095 * Makefile.in:
15096 * filelock.c:
15097 * unexmips.c:
15098 * m/hp9000s300.h:
15099 * m/iris4d.h:
15100 * s/aix3-1.h:
15101 * s/hpux.h:
15102 * s/msdos.h:
15103 * s/usg5-0.h:
15104 * s/usg5-2-2.h:
15105 * s/usg5-2.h:
15106 * s/usg5-3.h: Remove references to obsolete variables.
15107
15108 * s/irix5-0.h: Remove, move all the contents ...
15109 * s/irix6-5.h: ... here. Simplify.
15110 * config.in: Regenerate.
15111
15112 2008-02-24 Jason Rumney <jasonr@gnu.org>
15113
15114 * w32term.c (x_draw_glyph_string_background): Clear the background
15115 manually when cleartype is in use.
15116 (x_draw_glyph_string_foreground): Draw text transparently when
15117 cleartype is in use.
15118
15119 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
15120 a font into it unless we have to.
15121
15122 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
15123
15124 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
15125 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
15126
15127 2008-02-18 Jason Rumney <jasonr@gnu.org>
15128
15129 * w32fns.c (Fw32_shell_execute): Encode parameters.
15130
15131 2008-02-09 Eli Zaretskii <eliz@gnu.org>
15132
15133 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
15134
15135 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
15136
15137 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
15138
15139 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
15140
15141 * xterm.c (x_set_offset): Don't change the gravity if
15142 CHANGE_GRAVITY is -1.
15143
15144 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
15145
15146 * fileio.c (auto_save_error_occurred): New var.
15147 (auto_save_error): Set it.
15148 (Fdo_auto_save): Don't overwrite the error message if an auto-save
15149 error occurred.
15150
15151 2008-02-23 Eli Zaretskii <eliz@gnu.org>
15152
15153 * w32.c (globals_of_w32): Add initializations for
15154 g_b_init_get_sid_sub_authority and
15155 g_b_init_get_sid_sub_authority_count.
15156
15157 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
15158
15159 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
15160 (font_parse_xlfd): Use them for sanity check.
15161 (Finternal_set_font_style_table): Make sure the table is bijective.
15162
15163 Consolidate the image_cache to the terminal struct.
15164 * termhooks.h (P_): Remove redundant def.
15165 (struct terminal): New field `image_cache'.
15166 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
15167 of FRAME_X_IMAGE_CACHE.
15168 * xterm.h (struct x_display_info): Remove image_cache field.
15169 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
15170 * w32term.h (struct w32_display_info): Remove image_cache field.
15171 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
15172 * macterm.h (struct mac_display_info): Remove image_cache field.
15173 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
15174 * xterm.c (x_term_init):
15175 * w32term.c (w32_term_init):
15176 * macterm.c (mac_term_init): Set the image_cache in the terminal.
15177 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
15178 Remove declarations.
15179 (clear_image_caches, mark_image_cache): New declarations.
15180 * xfaces.c (clear_face_cache):
15181 * xdisp.c (redisplay_internal): Use clear_image_caches.
15182 * image.c (clear_image_cache): Don't check that a frame is on
15183 a window-system before checking if it shares the same cache.
15184 (clear_image_caches): New function.
15185 (Fclear_image_cache): Use it.
15186 (mark_image): Move from allo.c.
15187 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
15188 * alloc.c (mark_image, mark_image_cache): Move to image.c.
15189 (mark_object): Don't call mark_image_cache for frames.
15190 (mark_terminals): Call mark_image_cache.
15191
15192 * lisp.h (Fdelete_terminal): Declare.
15193
15194 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
15195 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
15196 wrong_type_argument.
15197
15198 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
15199
15200 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
15201 malayalam.el, and tamil.el. Add sinhala.el.
15202
15203 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
15204
15205 * xterm.c (x_connection_closed): Consolidate identical tests.
15206 (x_delete_terminal): Don't crash if called via x_connection_closed.
15207
15208 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
15209
15210 * xdisp.c (decode_mode_spec): New arg string.
15211 (display_mode_element): Adjust for the above change.
15212
15213 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
15214
15215 * callint.c (Fcall_interactively): Use AREF.
15216
15217 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
15218
15219 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
15220
15221 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
15222
15223 * xfns.c (Fx_show_tip): Set string to " " if empty.
15224
15225 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
15226
15227 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
15228 with Qt.
15229
15230 2008-02-17 Kenichi Handa <handa@m17n.org>
15231
15232 * ftfont.c (ftfont_shape): Return Lispy number.
15233
15234 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
15235 for GCs.
15236 (Finternal_set_font_selection_order): Call font_update_sort_order
15237 only when enable_font_backend is set.
15238 (realize_x_face): Set face->font_info to that of default face only
15239 when enable_font_backend is set.
15240
15241 * xdisp.c (handle_composition_prop): Set it->c to the fist
15242 character of the composed region.
15243 (fill_composite_glyph_string): Set base_face->font_info to
15244 s->font_info. Get a face for ascii from base_face->ascii_face.
15245 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
15246 with a face already decided.
15247 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
15248 non-negative.
15249 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
15250 call font_prepare_composition unconditionally.
15251
15252 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
15253
15254 * xterm.h (struct x_display_info): New member font.
15255
15256 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
15257 (x_set_mouse_face_gc, x_new_font): Likewise.
15258 (x_term_init): Setup display_info->font.
15259 (x_delete_terminal): Free display_info->font.
15260
15261 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
15262
15263 * ftxfont.c (ftxfont_default_fid): Delete it.
15264 (ftxfont_open): Set xfont->fid to 0.
15265 (ftxfont_end_for_frame): Clear data specific to the frame and the
15266 font-driver.
15267
15268 * xftfont.c (xftfont_default_fid): Delete it.
15269 (xftfont_open): Set xfont->fid to 0.
15270
15271 * fontset.c (FONTSET_OBJLIST): New macro.
15272 (fontset_find_font): Update font-object list of the fontset.
15273 (free_realized_fontset): New function.
15274 (free_face_fontset): Call free_realized_fontset.
15275 (Ffont_info): Call font_close_object only when enable_font_backend
15276 is set.
15277
15278 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
15279 [HAVE_NTGUI]: Include w32term.h.
15280 [MAC_OS]: Include macterm.ch.
15281 (font_otf_ValueRecord): Use make_number.
15282 (font_finish_cache): Fix handling of reference count.
15283 (font_clear_cache): Update num_fonts.
15284 (font_open_entity): Update smallest_char_width and
15285 smallest_font_height of the frame.
15286 (font_close_object): Update num_fonts.
15287 (Fclear_font_cache): Fix finding the target cache data.
15288
15289 2008-02-16 Glenn Morris <rgm@gnu.org>
15290
15291 * fontset.c (Finternal_char_font): Fix compilation warning.
15292
15293 2008-02-16 Eli Zaretskii <eliz@gnu.org>
15294
15295 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
15296 instead of char arrays. Enlarge the size of array passed to
15297 get_token_information.
15298
15299 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
15300 warnings.
15301
15302 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
15303
15304 * .gdbinit: Don't set `args', it breaks gdb --args.
15305
15306 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
15307
15308 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
15309 within a narrowed buffer.
15310
15311 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
15312
15313 * coding.c (decode_coding_object, encode_coding_object):
15314 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
15315
15316 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
15317
15318 * coding.c (coding_set_destination): Use BEG_BYTE rather than
15319 hardcoding 1.
15320 (detect_coding_system):
15321 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
15322 (string_char_to_byte, string_byte_to_char, insert_from_gap):
15323 * insdel.c (insert_from_gap):
15324 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
15325 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
15326 (string_to_multibyte):
15327 * character.c (chars_in_text, multibyte_chars_in_text):
15328 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
15329
15330 * character.h (FETCH_STRING_CHAR_ADVANCE)
15331 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
15332 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
15333 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
15334
15335 * casefiddle.c (casify_region): Only call after-change and composition
15336 functions on the part of the region that was changed.
15337
15338 * keyboard.c (read_avail_input):
15339 * frame.c (Fdelete_frame): Call Fdelete_terminal.
15340
15341 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
15342
15343 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
15344 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
15345
15346 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
15347
15348 * w32menu.c (push_submenu_start, push_submenu_end)
15349 (push_left_right_boundary, push_menu_pane, push_menu_item):
15350 * keyboard.c (read_key_sequence): Don't pass args with side effects
15351 to AREF, it fails when compiling with -DENABLE_CHECKING.
15352
15353 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
15354
15355 * Makefile.in (${lispsource}international/charprop.el):
15356 Delete this target.
15357
15358 * search.c (boyer_moore): Fix incorrect synching of the trunk and
15359 emacs-unicode-2.
15360
15361 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
15362
15363 * terminal.c (Fdelete_terminal): Clean up the `force' path.
15364
15365 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
15366
15367 * frame.c (Qnoelisp): New symbol.
15368 (syms_of_frame): Initialize it.
15369 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
15370 harmless Elisp code, from a strong `force' from x_connection_closed.
15371 * frame.h (Qnoelisp): Declare.
15372 * xterm.c (x_connection_closed): Pass `noelisp'.
15373
15374 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
15375 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
15376 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
15377 rather than `int' for the type of `type'.
15378
15379 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
15380
15381 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
15382
15383 * Makefile.in (GNUC): Remove support for gcc-1.x.
15384
15385 2008-02-10 Richard Stallman <rms@gnu.org>
15386
15387 * lisp.h (ASET): Use AREF, not ASLOT.
15388
15389 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
15390
15391 * lisp.h (ASET): Check bounds.
15392
15393 2008-02-10 Glenn Morris <rgm@gnu.org>
15394
15395 * buffer.c (mode-name): Doc fix.
15396
15397 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
15398
15399 * Makefile.in:
15400 * emacs.c:
15401 * gmalloc.c:
15402 * keyboard.c:
15403 * lisp.h:
15404 * m/ibm370aix.h:
15405 * process.c:
15406 * regex.c:
15407 * s/hpux.h:
15408 * sysdep.c:
15409 * sysselect.h:
15410 * systty.h:
15411 * unexec.c:
15412 * w32term.c:
15413 * xsmfns.c:
15414 * xterm.c: Remove code that deals with obsolete variables.
15415
15416 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
15417
15418 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
15419 nothing else needs it anymore.
15420
15421 2008-02-09 Eli Zaretskii <eliz@gnu.org>
15422
15423 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
15424 instead of unibyte_char_to_multibyte.
15425
15426 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
15427
15428 * s/gnu-linux.h: Remove commented out code.
15429
15430 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
15431
15432 * Makefile.in: Update what RMS says about using autoconf.
15433 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
15434 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
15435 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
15436 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
15437
15438 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
15439
15440 * keymap.c (Fkey_description): Move side effect outside of macro call.
15441
15442 * xfaces.c (Finternal_make_lisp_face):
15443 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
15444
15445 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
15446 (syms_of_fontset): Use ASET.
15447
15448 * fns.c (concat): Move side effect outside of macro call.
15449 (hash_clear): Use ASET.
15450
15451 2008-02-08 Richard Stallman <rms@gnu.org>
15452
15453 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
15454 If FORCE, and frame has a surrogate minibuffer for another frame,
15455 delete the other frame first.
15456
15457 2008-02-07 Timo Savola <timo.savola@iki.fi>
15458
15459 * xterm.c (x_detect_focus_change): Handle embed client message.
15460 (handle_one_xevent): Ditto.
15461 (handle_one_xevent): If embedded and we get a button press/release,
15462 request focus.
15463 (xembed_set_info, xembed_send_message): New functions.
15464 (x_make_frame_visible): Call xembed_set_info if embedded.
15465 (x_make_frame_invisible): Call xembed_set_info if embedded.
15466 (x_term_init): Initialize Xatom_XEMBED.
15467 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
15468 (x_iconify_frame): Ditto.
15469
15470 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
15471 (enum xembed_info, enum xembed_message, enum xembed_focus)
15472 (enum xembed_modifier, enum xembed_accelerator): New.
15473 (xembed_set_info, xembed_send_message): Declare.
15474 (FRAME_X_EMBEDDED_P): New.
15475
15476 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
15477 gtk_plug_new.
15478
15479 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
15480 window ID of a frame.
15481 (x_window): Reparent frame if embedded.
15482 (Fx_create_frame): Don't set border width if embedded.
15483
15484 * emacs.c (USAGE3): Add --parent-id.
15485 (standard_args): Ditto.
15486
15487 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
15488
15489 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
15490
15491 2008-02-07 Jim Meyering <meyering@redhat.com>
15492
15493 Use "do...while (0)", not "if (1)...else" in macro definitions.
15494 The latter provokes a warning from gcc about the empty else, when
15495 followed by ";". Also, without that trailing semicolon, it would
15496 silently swallow up any following statement.
15497 * syntax.h (SETUP_SYNTAX_TABLE)
15498 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
15499 * buffer.h (DECODE_POSITION): Likewise.
15500 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
15501 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
15502 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
15503 (FETCH_CHAR_ADVANCE): Likewise.
15504 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
15505
15506 2008-02-07 Jim Meyering <meyering@redhat.com>
15507
15508 * lread.c [lint]: Don't include <sys/inode.h>.
15509
15510 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
15511
15512 * xselect.c (x_handle_dnd_message):
15513 * xmenu.c (digest_single_submenu, xmenu_show):
15514 * xdisp.c (with_echo_area_buffer_unwind_data)
15515 (format_mode_line_unwind_data, unwind_format_mode_line)
15516 (display_menu_bar):
15517 * eval.c (Ffetch_bytecode):
15518 * doc.c (store_function_docstring):
15519 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
15520 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
15521 * buffer.c (add_overlay_mod_hooklist): Use ASET.
15522
15523 2008-02-07 Kenichi Handa <handa@m17n.org>
15524
15525 * ftxfont.c (ftxfont_open): Don't set
15526 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
15527
15528 * ftfont.c (ftfont_open): Fix previous change.
15529
15530 2008-02-06 Jason Rumney <jasonr@gnu.org>
15531
15532 * w32font.c (w32font_text_extents): Fill in lbearing metric.
15533 Use cached metrics for ASCII characters.
15534 (w32font_open_internal): Don't set font's owning_frame.
15535 Cache metrics for ASCII characters.
15536
15537 * w32font.h (struct w32font_info): Add ascii_metrics.
15538 Remove owning_frame.
15539
15540 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
15541
15542 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
15543 to negative value.
15544
15545 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
15546
15547 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
15548
15549 * charset.c (syms_of_charset): Set QCtest and Qeq.
15550
15551 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
15552
15553 * process.c (Fstart_process):
15554 * callproc.c (Fcall_process): Handle the case where
15555 Funhandled_file_name_directory returns nil.
15556
15557 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
15558 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
15559 * font.c (check_gstring): Use them and AREF to access the vector before
15560 we know it's really a gstring.
15561 (Ffont_shape_text): Fix typo.
15562 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
15563
15564 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
15565 Declare.
15566
15567 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
15568
15569 2008-02-05 Jason Rumney <jasonr@gnu.org>
15570
15571 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
15572 Set smallest_font_height and smallest_char_width in display info.
15573
15574 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
15575
15576 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
15577
15578 2008-02-05 Miles Bader <miles@gnu.org>
15579
15580 * xfaces.c (get_lface_attributes, merge_named_face)
15581 (lookup_named_face, lookup_derived_face, realize_named_face):
15582 Revert 2008-02-01 change by cyd@stupidchicken.com.
15583
15584 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
15585
15586 * fontset.c (Ffontset_info): Handle the case of inhibitting the
15587 fallback fonts.
15588 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
15589
15590 2008-02-04 Jason Rumney <jasonr@gnu.org>
15591
15592 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
15593 set full_name.
15594 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
15595
15596 2008-02-03 Jason Rumney <jasonr@gnu.org>
15597
15598 * makefile.w32-in (OBJ1): Include font.o here.
15599 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
15600
15601 2008-02-02 Jason Rumney <jasonr@gnu.org>
15602
15603 * makefile.w32-in (temacs): Bump EMHEAP to 21.
15604
15605 2008-02-01 Jason Rumney <jasonr@gnu.org>
15606
15607 * s/cygwin.h: Define VIRT_ADDR_VARIES.
15608
15609 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
15610
15611 2008-02-01 Andreas Schwab <schwab@suse.de>
15612
15613 * Makefile.in (shortlisp, lisp): Update for rename of
15614 ../lisp/language/myanmar.el.
15615
15616 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
15617
15618 * xfaces.c (get_lface_attributes): Delete function.
15619 (merge_named_face, lookup_named_face, lookup_derived_face)
15620 (realize_named_face): Call lface_from_face_name directly, and use
15621 the fact that merge_face_vectors does not alter its FROM argument.
15622
15623 2008-02-01 Jason Rumney <jasonr@gnu.org>
15624
15625 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
15626 input in the default locale. Handle non-Unicode multibyte input.
15627
15628 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15629
15630 * fontset.c (reorder_font_vector): Exclude nil elements from the
15631 font group. Don't try multiple fonts.
15632 (fontset_font): Adjust for the above change.
15633 (Finternal_char_font): Return nil if the found font doesn't
15634 contain the character ch.
15635
15636 * Makefile.in (lisp, shortlisp): Add cham.el.
15637
15638 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15639
15640 * font.h (FONTP): Make it return 1 also for a font-object.
15641
15642 * .gdbinit (xfontset): New function.
15643
15644 * font.c (font_find_for_lface): Check if the character C is
15645 supported or not only for the first font.
15646
15647 * fontset.c (reorder_font_vector): Fix typo.
15648 (fontset_find_font): Don't add a font-spec specifying a script.
15649 Use 0 (not Qt) for the indication of empty font-group. Change the
15650 format of RFONT-DEF. Return Qt if no font in the font-group
15651 support the character.
15652 (fontset_font): Adjust for the above change. If no font was
15653 found the character, remember that.
15654 (face_for_char): Adjust for the change of RFONT-DEF.
15655 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
15656 no font for the target.
15657 (Finternal_char_font): Adjust for the change of RFONT-DEF.
15658
15659 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15660
15661 * font.c (font_load_for_face): Handle the case that the font in
15662 face->lface is a string.
15663
15664 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15665
15666 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
15667
15668 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15669
15670 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
15671 Fix previous change. If the frame is not on a window system,
15672 signal an error.
15673
15674 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15675
15676 * coding.c (decode_coding_object, encode_coding_object): Adjust
15677 marker positions after conversion.
15678
15679 * lisp.h (struct Lisp_Marker): New member need_adjustment.
15680
15681 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15682
15683 * font.c (font_find_for_lface): Fix the handling of the return
15684 value of font_has_char.
15685 (Ffont_shape_text): Fix previous change.
15686
15687 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
15688 (fontset_ref_and_range): Delete it.
15689 (fontset_find_font): Call char_table_ref_and_range instead of
15690 FONTSET_REF_AND_RANGE.
15691 (make_fontset): Don't setup font groups of Latin here.
15692 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
15693 (new_fontset_from_font): Make the specified font the default for
15694 all Latin characters.
15695
15696 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15697
15698 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
15699 is on a window system before accessing the fontset of the frame.
15700
15701 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15702
15703 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
15704
15705 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
15706 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
15707
15708 * font.c (Ffont_shape_text): If the font driver doesn't have a
15709 shaper function, make zero-width glyphs to have at least one-pixel
15710 width. Fix setting of `to' field of glyphs.
15711
15712 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15713
15714 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
15715 glyphs.
15716
15717 * font.h (struct font_driver): Improve docstring of member `shape'.
15718
15719 2008-02-01 Kenichi Handa <handa@m17n.org>
15720
15721 * composite.c (syms_of_composite): Fix docstring of
15722 auto-composition-function.
15723
15724 * font.h (LGLYPH_SIZE): New macro.
15725
15726 * font.c (Ffont_fill_gstring): Stop filling when a character not
15727 supported by the font is found.
15728 (Ffont_shape_text): When a shape callback function returns nil,
15729 try at most two more times with larger gstring.
15730 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
15731
15732 * xdisp.c (handle_auto_composed_prop): Change the argument to
15733 auto-composition-function.
15734
15735 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
15736 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
15737 Lispy glyph and store it in the lgstring.
15738
15739 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
15740
15741 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
15742
15743 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15744
15745 * font.c (Ffont_shape_text): Avoid unnecessary composition.
15746
15747 * fontset.c (Vfont_encoding_charset_alist): New variable.
15748 (syms_of_fontset): DEFVAR it.
15749 (reorder_font_vector, fontset_find_font): Optimize for the case of
15750 no need of reordering.
15751 (face_for_char): Map the charset property by
15752 Vfont_encoding_charset_alist.
15753
15754 2008-02-01 Jason Rumney <jasonr@gnu.org>
15755
15756 * w32font.c (logfonts_match): Don't check adstyle here.
15757 (font_matches_spec): Check here against physical font instead.
15758 (add_font_entity_to_list): Avoid some substitutions.
15759
15760 * font.c (font_parse_fcname): Default weight and slant to normal.
15761 (font_score): Prefer normal fonts if weight or slant unspecified.
15762 (font_score) [WINDOWSNT]: Scale weight difference down to closer
15763 match freetype scores.
15764
15765 2008-02-01 Jason Rumney <jasonr@gnu.org>
15766
15767 * w32font.c (w32font_text_extents): Don't use the frame stored in the
15768 font, as it may have been deleted.
15769 (w32_enumfont_pattern_entity): Map generic family to adstyle using
15770 most common hyphenless variation.
15771 (logfonts_match): Check generic family.
15772 (font_matches_spec): Don't check generic family here.
15773 (fill_in_logfont): Set generic family based on adstyle.
15774
15775 * w32font.h (w32font_get_cache): Update declaration.
15776
15777 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15778
15779 * ftfont.c (ftfont_get_cache): Adjust the argument type.
15780
15781 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
15782 If none of the new drivers are available, call font_update_drivers
15783 with the old drivers.
15784
15785 * w32font.c (w32font_get_cache): Adjust the argument type.
15786
15787 * xfont.c (xfont_get_cache): Adjust the argument type.
15788
15789 * font.h (struct font_driver): Change argument type of get_cache.
15790
15791 * xftfont.c (xftfont_start_for_frame): Delete prototype.
15792
15793 * font.c (Ffont_get): Fix arguments to Fassoc.
15794 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
15795 (font_clear_cache): New function.
15796 (font_list_entities, font_matching_entity): Use font_get_cache.
15797 (font_update_drivers): Call font_clear_cache when finishing a driver.
15798
15799 * fontset.c (fontset_find_font): Fix previous change.
15800
15801 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15802
15803 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
15804 dpyinfo->font_table.
15805 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
15806 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
15807
15808 * font.c (font_at): Handle the case that the arg C is negative.
15809 Handle the unibyte case.
15810 (Ffont_at): Call font_at with the arg C -1.
15811
15812 * xdisp.c (handle_auto_composed_prop): Don't get a character at
15813 the position here, and call font_at with the arg C -1.
15814 Don't check the range of the existing composition at the point.
15815
15816 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15817
15818 * fontset.c (fontset_add): New args charset_id and family.
15819 Change caller.
15820 (load_font_get_repertory, fontset_find_font): Assume that
15821 font_spec is always a font-spec object.
15822 (Fset_fontset_font): Always store a font-spec object in a fontset.
15823
15824 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
15825 instead of get_property_and_range.
15826
15827 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15828
15829 * xftfont.c (struct xftfont_info): Delete the member ft_face.
15830 (xftfont_open): Don't keep locking face.
15831 (xftfont_close): Don't unlock face.
15832 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
15833
15834 * fontset.c (fontset_find_font): Don't prefer a font of
15835 supplementary charset.
15836
15837 2008-02-01 Kenichi Handa <handa@m17n.org>
15838
15839 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
15840 script, langsys_tag to langsys, new member script.
15841 (OTF_TAG_STR): Terminate by '\0'.
15842 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
15843 listing to the script specified in that property. Fix arg to
15844 OTF_check_features.
15845
15846 2008-02-01 Jason Rumney <jasonr@gnu.org>
15847
15848 * w32font.h: New file.
15849
15850 * w32font.c: Include it.
15851 (struct w32font_info): Add owning_frame field. Move to w32font.h.
15852 (w32font_open): Set owning_frame.
15853 (w32font_text_extents): Use owning_frame.
15854 (struct font_callback_data): Add opentype_only field.
15855 (add_font_entity_to_list): Use it to filter fonts.
15856 Don't check against full name.
15857 (w32font_list_internal): New function.
15858 (w32font_list): Use it.
15859 (w32font_match_internal): New function.
15860 (w32font_match): Use it.
15861 (w32font_open_internal): New function.
15862 (w32font_open): Use it.
15863 (w32font_get_cache, w32font_close, w32font_has_char)
15864 (w32font_encode_char, w32font_text_extents, w32font_draw):
15865 Make non-static.
15866
15867 * makefile.w32-in (w32font.o): Depend on w32font.h.
15868
15869 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15870
15871 * charset.c (Fdefine_charset_internal): Record a supplementary
15872 charset at the tail of Vcharset_order_list.
15873
15874 * font.c (Ffont_shape_text): Fix the return value.
15875
15876 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
15877
15878 * xdisp.c (handle_auto_composed_prop): Fix previous change.
15879
15880 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15881
15882 * ftfont.c (struct OpenTypeSpec): New struct.
15883 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
15884 (ftfont_get_open_type_spec): New function.
15885 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
15886
15887 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
15888
15889 2008-02-01 Jason Rumney <jasonr@gnu.org>
15890
15891 * w32font.c (add_font_entity_to_list): Compare only the beginning
15892 of full name.
15893
15894 2008-02-01 Kenichi Handa <handa@m17n.org>
15895
15896 * xdisp.c (handle_auto_composed_prop): Simplify the code.
15897 Never return HANDLED_RECOMPUTE_PROPS.
15898
15899 2008-02-01 Kenichi Handa <handa@m17n.org>
15900
15901 * font.c (font_gstring_produce): Delete it.
15902
15903 * composite.h (COMPOSITION_METHOD):
15904 Handle COMPOSITION_WITH_GLYPH_STRING.
15905
15906 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15907
15908 * xfont.c (Qx): Delete.
15909 (syms_of_xfont): Don't initialize Qx.
15910
15911 * composite.h (enum composition_method):
15912 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
15913
15914 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15915
15916 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
15917 (choose_face_font): Accept new form of font-spec.
15918
15919 * frame.h (font_driver_list): Declare it unconditionally.
15920 (struct frame): Define members font_driver_list and font_data_list
15921 unconditionally.
15922
15923 * fontset.c: Include "font.h" unconditionally.
15924 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
15925 (Fset_fontset_font): Accept a font-spec object.
15926
15927 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
15928 PIXEL_SIZE part a wild card.
15929
15930 * dispextern.h (struct glyph_string): Define members clip and
15931 num_clips unconditionally.
15932 (struct face): Define members font_info and extra unconditionally.
15933
15934 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
15935 ftfont_info only when HAVE_LIBOTF is defined.
15936
15937 2008-02-01 Andreas Schwab <schwab@suse.de>
15938
15939 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
15940 and end.
15941
15942 2008-02-01 Jason Rumney <jasonr@gnu.org>
15943
15944 * w32font.c (w32font_driver): Add new fields.
15945
15946 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
15947
15948 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
15949 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
15950 (LIBES): Add @M17N_FLT_CFLAGS@.
15951
15952 * composite.c (compose_text): Don't treat the new style
15953 composition specially.
15954
15955 * emacs.c (main): Call syms_of_font unconditionally.
15956
15957 * font.h (FONT_ENTITY_NOT_LOADABLE)
15958 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
15959 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
15960 (struct font_driver): New member shape.
15961 (font_registry_charsets): Extern it.
15962 (font_find_for_lface, font_prepare_composition): Adjust prototype.
15963 (font_otf_capability, font_drive_otf): Delete their externs.
15964
15965 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
15966 (font_charset_alist, font_registry_charsets): Move from xfont.c
15967 and rename.
15968 (font_prop_validate_otf): New function.
15969 (font_property_table): Register it for QCotf.
15970 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
15971 (font_drive_otf): Delete.
15972 (font_prepare_composition): New arg F. Adjust for the change of
15973 lispy gstring.
15974 (font_find_for_lface): New arg C.
15975 (font_load_for_face): Adjust for the change of font_find_for_lface.
15976 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
15977 lispy gstring.
15978 (Ffont_shape_text): New function.
15979 (Fopen_font): If the font size is not given, use 12-pixel.
15980 (Ffont_at): New arg STRING.
15981 (syms_of_font): Initalize font_charset_alist.
15982 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
15983 conditionally.
15984
15985 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
15986 fonts of the same font-spec. Change the format of RFONT-DEF.
15987 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
15988 Adjust for the change of RFONT-DEF.
15989 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
15990
15991 * ftfont.h: New file.
15992
15993 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
15994 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
15995 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
15996 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
15997 font_otf_capability and font_drive_otf, set ftfont_shape.
15998 (ftfont_list): Adjust for the change of :otf property value.
15999 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
16000 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
16001 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
16002 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
16003 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
16004 (otf_gstring, gstring, m17n_flt_initialized): New variables.
16005
16006 * w32term.c (x_draw_composite_glyph_string_foreground):
16007 Adjust for the change of lispy gstring.
16008
16009 * xdisp.c (handle_composition_prop): Adjust for the change of
16010 lispy gstring. Call a function for auto-composition with the
16011 third arg it->window.
16012 (fill_composite_glyph_string): Adjust for the change of lispy string.
16013 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
16014
16015 * xfaces.c (set_font_frame_param): Adjust for the change of
16016 font_find_for_lface.
16017
16018 * xfont.c (x_font_charset_alist): Move to font.c and rename.
16019 (xfont_registry_charsets): Likewise. Change caller.
16020 (syms_of_xfont): Don't handle x_font_charset_alist.
16021
16022 * xftfont.c: Include "ftfont.h".
16023 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
16024 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
16025 (xftfont_close) [HAVE_LIBOTF]: Close otf.
16026 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
16027 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
16028 Set xftfont_driver.shape to xftfont_shape.
16029
16030 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
16031 the change of lispy gstring.
16032
16033 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16034
16035 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
16036
16037 2008-02-01 Jason Rumney <jasonr@gnu.org>
16038
16039 * w32font.c (w32font_draw): Fill background manually.
16040
16041 2008-02-01 Jason Rumney <jasonr@gnu.org>
16042
16043 * font.c (Qfontp): Remove unused symbol.
16044 (QCantialias): New symbol.
16045 (syms_of_font): Define it.
16046 (font_property_table): Set a validator for QCantialias.
16047
16048 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
16049 Define if not already.
16050 (QCfamily): Share with xfaces.c.
16051 (Qstandard, Qsubpixel, Qnatural): New symbols.
16052 (syms_of_w32font): Define them. Don't define QCfamily here.
16053 (w32_antialias_type, lispy_antialias_type): New functions.
16054 (w32_enumfont_pattern_entity): New arg requested_font.
16055 Set antialias parameter if non-default was requested.
16056 (fill_in_logfont): Fill in lfQuality if :antialias specified.
16057
16058 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16059
16060 * lread.c (read1): Undo the previous change.
16061
16062 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
16063
16064 * frame.c (Fdelete_frame): Call font_update_drivers only when
16065 USE_FONT_BACKEND is defined.
16066
16067 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16068
16069 * font.h (struct font_bitmap): New member bits_per_pixel.
16070 (struct font_driver): New members start_for_frame and end_for_frame.
16071 (struct font_data_list): New struct.
16072 (font_put_frame_data, font_get_frame_data): Extern them.
16073
16074 * frame.h (struct frame): New member font_data_list.
16075
16076 * font.c (font_update_drivers): Call driver->start_for_frame and
16077 driver->end_for_frame at proper timings.
16078 (font_put_frame_data, font_get_frame_data): New functions.
16079 (Ffont_spec): Add usage in the docstring.
16080
16081 * frame.c (make_frame): Initialize f->font_data_list to NULL.
16082 (Fdelete_frame): Call font_update_drivers.
16083
16084 * xftfont.c (struct xftface_info): Delete the member xft_draw.
16085 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
16086 (xftfont_get_xft_draw): New function.
16087 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
16088 (xftfont_end_for_frame): New function.
16089 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
16090
16091 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
16092 Change argument. Cache GCs in the per-frame data.
16093 (struct ftxfont_frame_data): New struct.
16094 (ftxfont_draw_bitmap): New arg gc_fore and flush.
16095 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
16096 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
16097 (ftxfont_end_for_frame): New function.
16098 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
16099
16100 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
16101
16102 2008-02-01 Kenichi Handa <handa@m17n.org>
16103
16104 * xselect.c (Vselection_coding_system)
16105 (Vnext_selection_coding_system): Delete them.
16106 (syms_of_xselect): Don't declare selection-coding-system and
16107 next-selection-coding-system. They are declared in select.el.
16108
16109 2008-02-01 Jason Rumney <jasonr@gnu.org>
16110
16111 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
16112
16113 * w32fns.c: Include imm.h.
16114 (get_composition_string_fn, get_ime_context_fn): New optional
16115 system functions.
16116 (globals_of_w32fns): Load them from imm32.dll.
16117 (ignore_ime_char): New flag.
16118 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
16119 WM_IME_ENDCOMPOSITION messages.
16120
16121 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
16122 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
16123
16124 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16125
16126 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
16127 (READCHAR_REPORT_MULTIBYTE): New macro.
16128 (readchar): New 2nd arg MULTIBYTE.
16129 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
16130 Make symbol's name multibyte according to the multibyteness of the
16131 source.
16132
16133 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16134
16135 * xfaces.c (face_for_overlay_string): Call lookup_face with
16136 correct arguments (fix of synching with the trunk).
16137
16138 2008-02-01 Kenichi Handa <handa@m17n.org>
16139
16140 * font.c (font_prop_validate_symbol, font_prop_validate_style)
16141 (font_prop_validate_non_neg, font_prop_validate_spacing):
16142 Delete argument prop_index.
16143 (font_property_table): Change arguments to validater. Change Callers.
16144 (font_lispy_object): Delete.
16145 (font_at): Use font_find_object instead fo font_lispy_object.
16146
16147 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
16148
16149 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
16150 and file names.
16151
16152 2008-02-01 Jason Rumney <jasonr@gnu.org>
16153
16154 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
16155 (font_matches_spec): Remove debug output.
16156 (add_font_entity_to_list): Avoid using substituted fonts.
16157
16158 2008-02-01 Jason Rumney <jasonr@gnu.org>
16159
16160 * doc.c (Fsnarf_documentation):
16161 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
16162
16163 2008-02-01 Miles Bader <miles@gnu.org>
16164
16165 * dispextern.h (struct glyph_row): Only define "clip" field if
16166 HAVE_WINDOW_SYSTEM is defined.
16167
16168 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
16169
16170 Fix up multi-tty merge.
16171
16172 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
16173 and indentation.
16174
16175 * xfaces.c (free_realized_face, clear_face_gcs):
16176 Include font_done_for_face in the input_blocked section, just in case.
16177
16178 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
16179 (get_char_face_and_encoding): Undo last change and remove the *other*
16180 duplicate definition (i.e. keep the one that's better scoped and that
16181 includes code for the font-backend).
16182
16183 * terminal.c (create_terminal): Default keyboard_coding to
16184 `no-conversion' and terminal_coding to `undecided'.
16185
16186 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
16187
16188 * fontset.c (free_realized_fontsets): Check that the table entry does
16189 contain a fontset before trying to compare it to `base'.
16190
16191 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
16192 syms_of_charset, and syms_of_coding earlier because init_window_once
16193 now needs Vcoding_system_hash_table to be setup.
16194
16195 * coding.h (default_buffer_file_coding): Remove.
16196
16197 * coding.c (default_buffer_file_coding): Remove.
16198 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
16199 than ->symbol, and use the terminal-local coding system.
16200 (syms_of_coding): Don't setup the coding-systems that are not
16201 terminal-local.
16202 (Fdefine_coding_system_internal): Use XCAR/XCDR.
16203
16204 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
16205 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
16206
16207 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
16208 in chartab.c and were re-added here by mistake.
16209 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
16210
16211 * doc.c (Fsnarf_documentation):
16212 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
16213 src to etc.
16214
16215 * ChangeLog.10: Add mistakenly removed entry.
16216
16217 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
16218
16219 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
16220
16221 2008-02-01 Miles Bader <miles@gnu.org>
16222
16223 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
16224 Add extra args to FACE_FOR_CHAR.
16225
16226 2008-02-01 Kenichi Handa <handa@m17n.org>
16227
16228 * keymap.c (where_is_internal_1): If key is a cons, store the copy
16229 in sequence.
16230
16231 * chartab.c (map_sub_char_table, map_char_table): If the range
16232 contains just one character, call the function with that character
16233 even if the depth is not 3.
16234
16235 2008-02-01 Jason Rumney <jasonr@gnu.org>
16236
16237 * w32font.c (w32font_text_extents): Calculate metrics for the
16238 whole string.
16239
16240 2008-02-01 Jason Rumney <jasonr@gnu.org>
16241
16242 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
16243
16244 2008-02-01 Jason Rumney <jasonr@gnu.org>
16245
16246 * w32term.c (x_set_glyph_string_clipping): Use
16247 get_glyph_string_clip_rects.
16248 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
16249 Adjust for the change of struct glyph_string.
16250
16251 * w32font.c (w32font_draw): Do clipping here.
16252
16253 2008-02-01 Kenichi Handa <handa@m17n.org>
16254
16255 * xftfont.c (xftfont_draw): Adjust for the change of struct
16256 glyph_string.
16257
16258 * xterm.c (x_set_glyph_string_clipping): Use
16259 get_glyph_string_clip_rects.
16260 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
16261 Adjust for the change of struct glyph_string.
16262
16263 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
16264 the resulting clip(s}.
16265 (expose_overlaps): Add arg r. Change callers. Set it to
16266 row->clip temporarily.
16267 (expose_window): Redraw rows overlapping the exposed area.
16268
16269 * dispextern.h (struct glyph_row): New member clip.
16270 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
16271 clip_height, new member clip, and num_clips.
16272
16273 2008-02-01 Kenichi Handa <handa@m17n.org>
16274
16275 * data.c (Fchar_or_string_p): Fix docstring.
16276
16277 2008-02-01 Kenichi Handa <handa@m17n.org>
16278
16279 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
16280 create a temporary XftDraw object.
16281
16282 2008-02-01 Kenichi Handa <handa@m17n.org>
16283
16284 * font.c (Ffontp): Fix docstring.
16285
16286 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
16287 strong evidence of ISO-2022.
16288
16289 2008-02-01 Kenichi Handa <handa@m17n.org>
16290
16291 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
16292 SYNTAX_ENTRY_FOLLOW_PARENT.
16293
16294 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
16295
16296 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
16297 its type.
16298 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
16299 Update to the new type of weak_hash_tables and next_weak.
16300
16301 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
16302 a plain C pointer to Lisp_Hash_Table.
16303
16304 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
16305 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
16306 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
16307 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
16308 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
16309 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
16310 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
16311 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
16312 (GC_EQ): Remove since they've been identical to their non-GC_
16313 alter-egos ever since the markbit was eradicated.
16314
16315 * alloc.c:
16316 * buffer.c:
16317 * buffer.h:
16318 * data.c:
16319 * fileio.c:
16320 * filelock.c:
16321 * fns.c:
16322 * frame.h:
16323 * lisp.h:
16324 * macterm.c:
16325 * print.c:
16326 * process.c:
16327 * w32fns.c:
16328 * w32menu.c:
16329 * w32term.c:
16330 * xfns.c:
16331 * xmenu.c:
16332 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
16333
16334 2008-02-01 Kenichi Handa <handa@m17n.org>
16335
16336 * chartab.c (map_sub_char_table): Make it work for the top-level
16337 char-table. Fix handling of parent char-table.
16338 (map_char_table): Adjust for the above change.
16339
16340 2008-02-01 Jason Rumney <jasonr@gnu.org>
16341
16342 * w32font.c (Qgdi): Rename from Qw32.
16343
16344 2008-02-01 Jason Rumney <jasonr@gnu.org>
16345
16346 * w32bdf.c (get_quoted_string): Make function static.
16347
16348 2008-02-01 Kenichi Handa <handa@m17n.org>
16349
16350 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
16351 bigger ascent and descent than those of the font, use them as
16352 font's ascent and descent.
16353
16354 2008-02-01 Kenichi Handa <handa@m17n.org>
16355
16356 * Makefile.in (${lispsource}international/charprop.el): Move this
16357 target within "#ifdef HAVE_UNIDATA" and "#endif".
16358
16359 2008-02-01 Kenichi Handa <handa@m17n.org>
16360
16361 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
16362 (shortlisp): Add ../lisp/language/tai-viet.el.
16363
16364 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
16365
16366 * Makefile.in (${lispsource}international/charprop.el): Depend on
16367 temacs${EXEEXT}.
16368
16369 2008-02-01 Jason Rumney <jasonr@gnu.org>
16370
16371 * w32font.c (w32font_close): Delete the GDI font object.
16372
16373 * w32menu.c: Include character.h.
16374
16375 * w32proc.c: Likewise.
16376
16377 * w32select.c: Likewise.
16378
16379 * makefile.w32-in (w32proc.o): Depend on character.h.
16380
16381 2008-02-01 Jason Rumney <jasonr@gnu.org>
16382
16383 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
16384
16385 * w32menu.c (syms_of_w32menu): Likewise.
16386
16387 * w32proc.c (syms_of_ntproc): Likewise.
16388
16389 * w32select.c (syms_of_w32select): Likewise.
16390
16391 * w32term.c (syms_of_w32term): Likewise.
16392
16393 2008-02-01 Jason Rumney <jasonr@gnu.org>
16394
16395 * w32font.c (w32font_draw): Delete brush after using it.
16396
16397 2008-02-01 Jason Rumney <jasonr@gnu.org>
16398
16399 * w32font.c (w32font_open): Don't set font_idx.
16400 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
16401 to font settings.
16402 (w32font_draw): Fill background explicitly.
16403
16404 2008-02-01 Jason Rumney <jasonr@gnu.org>
16405
16406 * w32term.c (w32_initialize): Don't call w32font_initialize.
16407
16408 * w32font.c (w32font_info): Remove subranges.
16409 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
16410 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
16411 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
16412 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
16413 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
16414 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
16415 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
16416 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
16417 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
16418 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
16419 New symbols.
16420 (font_callback_data): New struct.
16421 (w32font_list, w32font_match): Use it.
16422 (w32font_open): Don't populate subranges.
16423 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
16424 (w32font_encode_char): Always return unicode code-point as-is.
16425 (w32font_text_extents): Supply a transformation matrix to
16426 GetGlyphOutline. Never look up by glyph index. Avoid looping
16427 twice. Use unicode version of GetTexExtentPoint32 instead of
16428 glyph index version.
16429 (set_fonts_frame): Remove.
16430 (w32_enumfont_pattern_entity): Add frame parameter, use it to
16431 set frame parameter. Use backward compatible fake foundries.
16432 Save generic family in extra slot under QCfamily. Make width slot
16433 constant. Save QCspacing value. Save list of scripts instead of
16434 binary subranges.
16435 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
16436 (add_font_entity_to_list): Use font_callback_data struct. Filter
16437 unwanted fonts.
16438 (add_one_font_entity_to_list): Use font_callback_data struct.
16439 (w32_registry): Default to iso10646_1.
16440 (fill_in_logfont): Use dpi from extra slot. Don't bother with
16441 string font registries. Don't fill in font name if it is a generic
16442 family name, fill family instead. Use spacing, family and script
16443 extra info to fill pitch, family and charset fields.
16444 (list_all_matching_fonts): Use font_callback_data struct.
16445 (unicode_range_for_char): Remove.
16446 (font_supported_scripts): New function.
16447 (w32font_initialize): Remove.
16448 (syms_of_w32font): Update which symbols are defined.
16449
16450 2008-02-01 Jason Rumney <jasonr@gnu.org>
16451
16452 * font.c (font_pixel_size): Reverse assq_no_quit args.
16453
16454 * w32term.h (FONT_WIDTH): Report max width, not average.
16455 (FONT_MAX_WIDTH): Remove.
16456 (FONT_AVG_WIDTH): New macro.
16457
16458 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
16459 redefinition of FONT_WIDTH.
16460
16461 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
16462 (w32_cache_char_metrics): Use FONT_WIDTH.
16463
16464 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
16465
16466 2008-02-01 Jason Rumney <jasonr@gnu.org>
16467
16468 * w32font.c (w32font_open): Make lfHeight negative.
16469
16470 * w32fns.c (x_default_font_parameter): Use new style font name.
16471 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
16472
16473 2008-02-01 Jason Rumney <jasonr@gnu.org>
16474
16475 * w32font.c (QCsubranges): New symbol.
16476 (w32font_open, w32font_has_char): Get subranges from subproperty
16477 of extra.
16478 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
16479 (syms_of_w32font): Define :subranges symbol.
16480
16481 * font.c (font_put_extra): Expose externally.
16482
16483 * font.h (font_put_extra): Move declaration from font.c.
16484
16485 * font.c (Ffont_get): Use font driver to determine otf capability.
16486 (adjust_anchor): Check if driver defines anchor_point before using.
16487
16488 * w32font.c (w32font_open): Handle size, height and pixel_size better.
16489 (w32font_draw): Use options.
16490 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
16491 Fix detection of truetype fonts.
16492 (registry_to_w32_charset): Handle charsets other than iso8859-1
16493 expressed as lisp symbols.
16494 (w32_registry): Express charset as lisp symbol.
16495 (fill_in_logfont): Reverse pixel and point height logic.
16496 Don't set width here. Set quality to default.
16497
16498 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
16499 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
16500
16501 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
16502 Remove redundant loop and allocation.
16503
16504 * makefile.w32-in (font.o, w32font.o): New objects.
16505 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
16506 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
16507
16508 * xdisp.c (fill_composite_glyph_string): Make the first arg to
16509 STORE_XCHARB a valid l-value.
16510
16511 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
16512 calculations for non-Truetype fonts.
16513 (x_draw_glyph_string): Sync with xterm.c.
16514 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
16515 Remove redundant code.
16516 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
16517
16518 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
16519 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
16520
16521 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
16522 (x_to_w32_charset, w32_to_x_charset): Expose externally.
16523
16524 * w32font.c: New file for w32 font backend.
16525
16526 2008-02-01 Kenichi Handa <handa@m17n.org>
16527
16528 * term.c: Don't include "buffer.h" twice.
16529
16530 2008-02-01 Kenichi Handa <handa@m17n.org>
16531
16532 * character.c (Funibyte_string): New function.
16533 (syms_of_character): Defsubr it.
16534
16535 2008-02-01 Jason Rumney <jasonr@gnu.org>
16536
16537 * w32term.c [USE_FONT_BACKEND]:
16538 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
16539 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
16540 (x_draw_glyph_string, x_draw_glyph_string_foreground)
16541 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
16542 (x_free_frame_resources): Sync with xterm.c.
16543
16544 2008-02-01 Andreas Schwab <schwab@suse.de>
16545
16546 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
16547 char-table size.
16548
16549 2008-02-01 Kenichi Handa <handa@m17n.org>
16550
16551 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
16552
16553 2008-02-01 Kenichi Handa <handa@m17n.org>
16554
16555 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
16556 font_otf_gpos, add font_drive_otf.
16557
16558 * fontset.c (fontset_find_font): Pay attention to font size
16559 specified for a font.
16560 (reorder_font_vector): Check contents of font_def.
16561
16562 * font.c (struct otf_list): Delete it.
16563 (otf_list): Make it a lisp variable.
16564 (otf_open): Use lispy otf_list.
16565 (generate_otf_features): Rename from parse_gsub_gpos_spec.
16566 (check_otf_features): New function.
16567 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
16568 New functions.
16569 (font_drive_otf): New function merging font_otf_gsub and
16570 font_otf_gpos.
16571 (font_open_for_lface): New arg spec. Change argument order.
16572 (font_load_for_face): Adjust for the change of font_open_for_lface.
16573 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
16574 Ffont_otf_gpos.
16575 (syms_of_font): Staticpro otf_list. Delete defsubr of
16576 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
16577
16578 * xfaces.c (set_font_frame_param): Adjust for the change of
16579 font_open_for_lface.
16580
16581 * font.h (font_open_for_lface): Adjust prototype.
16582 (struct font_driver): Delete members otf_gsub and otf_gpos, add
16583 member otf_drive.
16584 (font_otf_gsub, font_otf_gpos): Delete externs.
16585 (font_drive_otf): Extern it.
16586
16587 2008-02-01 Kenichi Handa <handa@m17n.org>
16588
16589 * font.c (font_at): If the window W is not on a window system,
16590 return Qnil.
16591
16592 * coding.c (produce_chars, encode_coding): Don't call
16593 insert_from_gap if no characters to produce.
16594
16595 2008-02-01 Kenichi Handa <handa@m17n.org>
16596
16597 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
16598 Fclear_face_cache.
16599
16600 * xfaces.c (face_for_font): Check also face->font==font->font.font.
16601
16602 2008-02-01 Miles Bader <miles@gnu.org>
16603
16604 * emacs.c (main): Change default value of `enable_font_backend' to 1.
16605 Parse "--disable-font-backend" option.
16606 (standard_args): Add "--disable-font-backend" option.
16607
16608 2008-02-01 Kenichi Handa <handa@m17n.org>
16609
16610 * fontset.c (fontset_find_font): New function.
16611 (fontset_font): Use fontset_find_font.
16612 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
16613 Register the specified font for all Latin characters.
16614 (new_fontset_from_font): Register the specified font for all Latin
16615 characters.
16616 (dump_fontset): For a realized fontset, include the base fontset
16617 name in the returned vector.
16618
16619 2008-02-01 Kenichi Handa <handa@m17n.org>
16620
16621 * character.h (CHAR_STRING): Cast C to unsigned on calling
16622 char_string.
16623
16624 * character.c (char_string): Type of arg C changed to unsigned.
16625 Signal an error if C is an invalid character code.
16626
16627 * editfns.c (general_insert_function, Fchar_to_string):
16628 Use CHARACTERP, not INTEGERP.
16629
16630 2008-02-01 Kenichi Handa <handa@m17n.org>
16631
16632 * character.h (MIN_MULTIBYTE_LEADING_CODE)
16633 (MAX_MULTIBYTE_LEADING_CODE): New macros.
16634
16635 * regex.c (analyse_first): Fix for multibyte characters in "case
16636 charset:" and "case categoryspec:".
16637
16638 2008-02-01 Andreas Schwab <schwab@suse.de>
16639
16640 * Makefile.in (LIBES): Move standard libraries to the end.
16641
16642 2008-02-01 Kenichi Handa <handa@m17n.org>
16643
16644 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
16645 nonzero, don't shrink the buffer nextb.
16646
16647 * buffer.h (struct buffer_text): New member inhibit_shrinking.
16648
16649 * coding.c (coding_alloc_by_making_gap): New arg offset.
16650 (alloc_destination): Call coding_alloc_by_making_gap with the arg
16651 offset.
16652 (decode_coding_iso_2022): Update coding->safe_charsets.
16653 (decode_coding_gap): Temporarily set
16654 current_buffer->text->inhibit_shrinking to 1.
16655
16656 2008-02-01 Kenichi Handa <handa@m17n.org>
16657
16658 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
16659 indexing into elements of s->cmp and s->char2b.
16660
16661 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
16662
16663 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
16664
16665 2008-02-01 Kenichi Handa <handa@m17n.org>
16666
16667 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
16668 target_multibyte instead of multibyte.
16669 (re_match_2_internal): Call bcmp_translate with target_multibyte.
16670 (bcmp_translate): Change the argument name from multibyte to
16671 target_multibyte.
16672
16673 2008-02-01 Kenichi Handa <handa@m17n.org>
16674
16675 These changes are to compile a regexp into a pattern that can be
16676 used both for multibyte and unibyte targets.
16677
16678 * Makefile.in (search.o): Depend on charset.h.
16679
16680 * character.c (multibyte_char_to_unibyte_safe): New function.
16681
16682 * search.c: Include "charset.h".
16683 (compile_pattern_1): Delete argument multibyte. Don't set
16684 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
16685 (compile_pattern): Don't compare cp->buf.target_multibyte.
16686 Compare cp->buf.charset_unibyte.
16687 (compile_pattern): Set cp->buf.target_multibyte.
16688
16689 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
16690
16691 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
16692
16693 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
16694 multibyte. Change callers.
16695 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
16696 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
16697 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
16698 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
16699 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
16700 (regex_compile): Make the compiled pattern usable both for
16701 multibyte and unibyte targets.
16702 (analyse_first): Make the fastmap usable both for multibyte and
16703 unibyte targets.
16704 (TRANSLATE_VIA_MULTIBYTE): Delete.
16705 (re_match_2_internal): Pay attention to the case that the
16706 multibyteness of bufp and target may be different.
16707
16708 2008-02-01 Kenichi Handa <handa@m17n.org>
16709
16710 * xdisp.c (x_produce_glyphs): When a font is not found, make the
16711 empty box occupy at least one column width.
16712
16713 2008-02-01 Miles Bader <miles@gnu.org>
16714
16715 * Makefile.in: Remove redundant HAVE_XFT clause.
16716
16717 2008-02-01 Kenichi Handa <handa@m17n.org>
16718
16719 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
16720
16721 2008-02-01 Kenichi Handa <handa@m17n.org>
16722
16723 * fontset.c (Finternal_char_font): Fix for the case of POSITION
16724 being nil.
16725
16726 2008-02-01 Kenichi Handa <handa@m17n.org>
16727
16728 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
16729
16730 2008-02-01 Kenichi Handa <handa@m17n.org>
16731
16732 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
16733
16734 2008-02-01 Kenichi Handa <handa@m17n.org>
16735
16736 * search.c (simple_search): Fix previous change.
16737
16738 2008-02-01 Kenichi Handa <handa@m17n.org>
16739
16740 * xftfont.c (ftfont_font_format): Extern declaration.
16741
16742 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
16743
16744 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
16745 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
16746
16747 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
16748 (ftfont_font_format): Fix previous change.
16749
16750 * font.h (Ffont_xlfd_name): EXFUN it.
16751
16752 * font.c (font_parse_xlfd): Fix the array size of `f'.
16753 (register_font_driver): Use EQ to compare driver->type.
16754
16755 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
16756 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
16757 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
16758
16759 2008-02-01 Kenichi Handa <handa@m17n.org>
16760
16761 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
16762 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
16763
16764 2008-02-01 Kenichi Handa <handa@m17n.org>
16765
16766 * xfont.c (xfont_open): Set font->format.
16767
16768 * xftfont.c (xftfont_open): Set font->format.
16769
16770 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
16771 (ftfont_list): Include FC_FONTFORMAT in FcObject.
16772 (ftfont_open): Set font->format.
16773 (ftfont_font_format): New function.
16774
16775 * font.h (struct font): New member format.
16776
16777 * font.c (Qopentype): New variable.
16778 (syms_of_font): Defsym it.
16779 (Fquery_font): Change the format of the last element of the return
16780 value.
16781
16782 2008-02-01 Kenichi Handa <handa@m17n.org>
16783
16784 * xfns.c (xic_create_xfontset): Try the default fontset name as a
16785 last resort.
16786
16787 2008-02-01 Kenichi Handa <handa@m17n.org>
16788
16789 * coding.c (detect_coding_charset): Fix detection of multi-byte
16790 charset.
16791
16792 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
16793
16794 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
16795
16796 2008-02-01 Kenichi Handa <handa@m17n.org>
16797
16798 * xdisp.c (get_next_display_element): Set it->face_id for the
16799 first component of a composition.
16800 (x_produce_glyphs): Check if the font is changed or not for composition.
16801
16802 2008-02-01 Kenichi Handa <handa@m17n.org>
16803
16804 * fontset.c (Qlatin): New variable.
16805 (syms_of_fontset): Define it as a lisp symbol.
16806 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
16807
16808 2008-02-01 Kenichi Handa <handa@m17n.org>
16809
16810 * font.c (font_unparse_fcname): Pay attention to the case that
16811 some of font property is a null string.
16812
16813 2008-02-01 Kenichi Handa <handa@m17n.org>
16814
16815 * term.c: Include "composite.h".
16816 (encode_terminal_code): Output all components of composition.
16817 Check the size of encode_terminal_src.
16818 (produce_glyphs): For composition, call produce_composite_glyph.
16819 (append_composite_glyph, produce_composite_glyph): New functions.
16820
16821 * xdisp.c (x_produce_glyphs): In handling composition, if a font
16822 is not found, get font_info from the current ascii face.
16823
16824 2008-02-01 Kenichi Handa <handa@m17n.org>
16825
16826 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
16827 buffer-file-name to Qnil before calling insert_from_buffer.
16828
16829 * font.c (font_unparse_fcname): Pay attention to the case that
16830 foundry is a null string.
16831
16832 2008-02-01 Kenichi Handa <handa@m17n.org>
16833
16834 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
16835
16836 * font.c (Qunicode_sip): New variable.
16837 (syms_of_font): Declare it as a Lisp symbol.
16838
16839 * font.h (Qunicode_sip): Extern it.
16840
16841 2008-02-01 Kenichi Handa <handa@m17n.org>
16842
16843 * composite.c (get_composition_id): Pay attention to TAB component.
16844
16845 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
16846 TAB. Adjust for the change of s->char2b which always points to
16847 the first element of allocated memory.
16848
16849 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
16850
16851 * xdisp.c (handle_composition_prop): Set it->c to the first
16852 non-TAB component.
16853 (fill_composite_glyph_string): Change argument.
16854 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
16855 (x_produce_glyphs): Fix handling of left/right padding.
16856
16857 2008-02-01 Kenichi Handa <handa@m17n.org>
16858
16859 * coding.c (detect_coding_system): Fix for handling off
16860 inhibit_iso_escape_detection. Fix for the case that no coding
16861 system is defined for a specific coding category.
16862
16863 2008-02-01 Kenichi Handa <handa@m17n.org>
16864
16865 * font.c (font_matching_entity): Delete unused local var.
16866
16867 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
16868 opening a font.
16869
16870 * fileio.c (Finsert_file_contents): On recovering a file, assume
16871 Unix-like eol.
16872 (choose_write_coding_system): On auto-saving a file, force
16873 Unix-like eol.
16874
16875 * coding.c (setup_coding_system): Fix setting of
16876 coding->common_flags based on eol_type.
16877 (coding_inherit_eol_type): If PARENT is not nil, be sure to
16878 inherit from it.
16879
16880 2008-02-01 Kenichi Handa <handa@m17n.org>
16881
16882 * alloc.c (NSTATICS): Increas to 0x600.
16883
16884 2008-02-01 Kenichi Handa <handa@m17n.org>
16885
16886 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
16887 (ftfont_list): Don't check :name property.
16888 (ftfont_match): New function.
16889 (ftfont_pattern_entity): If the pattern doesn't contain
16890 FC_SPACING, don't assume FC_MONO.
16891
16892 * font.h (struct font_driver): New member `match'.
16893 (font_update_drivers): Adjust prototype.
16894
16895 * font.c (font_parse_fcname, font_parse_name): Don't change :name
16896 property of FONT.
16897 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
16898 them unconditionally.
16899 (font_matching_entity): New function.
16900 (font_open_by_name): Try font_matching_entity if exact match is
16901 not found.
16902 (font_update_drivers): Delete the arg FONT. Return a list of
16903 actually used backends. Don't free faces, font caches here.
16904 Don't store data in frame parameters. Don't call x_set_font.
16905 (Ffont_spec): Store :name property as is.
16906 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
16907 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
16908 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
16909 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
16910 Call font->driver->otf_gsub instead of font_otf_gsub.
16911
16912 * frame.c (x_set_font_backend): Do more works that were done in
16913 font_update_drivers before.
16914
16915 * xfont.c (xfont_match): New function.
16916 (xfont_driver): Set xfont_driver.match to xfont_match.
16917 (xfont_draw): Set font in GC if necessary.
16918
16919 * ftxfont.c (ftxfont_match): New function.
16920 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
16921
16922 * xftfont.c (xftfont_match): New function.
16923 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
16924
16925 2008-02-01 Kenichi Handa <handa@m17n.org>
16926
16927 * font.h (struct font): New member scalable.
16928 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
16929 (font_otf_gsub): Adjust prototype.
16930
16931 * font.c (font_otf_capability): Fix handling of the default langsys.
16932 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
16933 Check the contents of SPEC.
16934 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
16935 (check_gstring): New function.
16936 (REPLACEMENT_CHARACTER): New macro.
16937 (font_otf_gsub): New arg alternate_subst. Be sure to set all
16938 glyph codes of GSTRING.
16939 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
16940 (font_prepare_composition): Set cmp->glyph_len.
16941 (font_open_entity): Set font->scalable.
16942 (Ffont_get): Handle :otf property.
16943 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
16944 functions.
16945 (Fquery_font): Use font->font.full_name.
16946 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
16947 Sfont_otf_alternates.
16948
16949 * ftfont.c (ftfont_open): Set font->font.full_name and
16950 font->font.name properly. Fix calculation of font->font.height
16951 and font->min_width.
16952
16953 * ftxfont.c (ftxfont_create_gcs): New function.
16954 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
16955 (ftxfont_draw_backgrond): Fix filling region.
16956 (ftxfont_default_fid): New function.
16957 (ftxfont_open): Set xfont->fid to the return value of
16958 ftxfont_default_fid.
16959 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
16960 (ftxfont_done_face): Free only GCs that are created by
16961 ftxfont_create_gcs.
16962 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
16963
16964 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
16965 Clip to src->width, etc (not src->clip_XXX).
16966
16967 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
16968 FontBackend frame parameter.
16969
16970 2008-02-01 Kenichi Handa <handa@m17n.org>
16971
16972 * font.h (struct font_driver_list): New member `on'.
16973 (Fclear_font_cache): EXFUN it.
16974 (font_update_drivers): Extern it.
16975
16976 * font.c (font_unparse_fcname): Fix typo (swidth->width).
16977 (font_list_entities): Check driver_list->on.
16978 (register_font_driver): Initalize `on' member to 0.
16979 (font_update_drivers): New function.
16980 (Fclear_font_cache): Check driver_list->on.
16981
16982 * frame.h (Qfont_backend): Extern it.
16983 (x_set_font_backend): Extern it.
16984
16985 * frame.c (Qfont_backend): New variable.
16986 (frame_parms): New element for font-backend.
16987 (x_set_font_backend): New function.
16988
16989 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
16990 FontBackend frame parameter.
16991 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
16992 x_set_font_backend.
16993
16994 * xfont.c (xfont_list): Don't try listing by :name property if the
16995 name is not for XLFD.
16996
16997 2008-02-01 Kenichi Handa <handa@m17n.org>
16998
16999 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
17000 (LGLYPH_SET_TO): New macros.
17001 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
17002 element of G is vector or not.
17003 (font_at): Extern it.
17004
17005 * font.c: Include window.h.
17006 (font_lispy_object): New function.
17007 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
17008 end of valid glyph.
17009 (font_close_object): Fix getting (struct font *).
17010 (font_at): New function.
17011 (Ffont_get): If FONT is a font-object, get entity from it.
17012 (Ffont_make_gstring): Initialize elements of glyphs with nil.
17013 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
17014 range check.
17015 (Ffont_at): New function.
17016 (syms_of_font): Defsubr Sfont_at.
17017
17018 * xdisp.c (it_props): Move the entry for Qauto_composed to just
17019 before the entry for Qcomposition.
17020 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
17021 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
17022 the font in gstring.
17023 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
17024 LGLYPH_FORM (g) to detect the end of valid glyph.
17025 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
17026 we are composing with gstring.
17027
17028 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
17029 Check if adjustment is vector or not.
17030
17031 * Makefile.in (font.o): Make it depends on window.h.
17032
17033 2008-02-01 Kenichi Handa <handa@m17n.org>
17034
17035 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
17036 adjustment is vector or not.
17037
17038 2008-02-01 Miles Bader <miles@gnu.org>
17039
17040 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
17041
17042 2008-02-01 Kenichi Handa <handa@m17n.org>
17043
17044 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
17045 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
17046 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
17047
17048 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
17049 (DEVICE_DELTA): Fix typo.
17050 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
17051 LGLYPH format.
17052
17053 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
17054 the change of LGLYPH format.
17055
17056 2008-02-01 Kenichi Handa <handa@m17n.org>
17057
17058 * ftfont.c (ftfont_list): Fix typo.
17059 (ftfont_build_basic_charsets): Don't include letters with diacritics.
17060
17061 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
17062
17063 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
17064
17065 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
17066 xftface_info is non-NULL.
17067
17068 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
17069
17070 * ftfont.c (ftfont_list): Move misplaced #endif.
17071
17072 2008-02-01 Kenichi Handa <handa@m17n.org>
17073
17074 * ftfont.c (ftfont_list): Pay attention to the case that
17075 FC_CAPABILITY is not defined.
17076
17077 2008-02-01 Kenichi Handa <handa@m17n.org>
17078
17079 * xftfont.c (xftfont_open): Set charset related members to -1.
17080
17081 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
17082 QCname.
17083 (ftfont_open): Set charset related members to -1.
17084
17085 * fontset.c (Votf_script_alist): New variable.
17086 (syms_of_fontset): Initialize it.
17087 (fontset_font): Delete unused variable.
17088
17089 * fontset.h (Votf_script_alist): Extern it.
17090
17091 * font.c (font_find_for_lface): Optimize code.
17092
17093 * font.h (font_close_object, font_merge_old_spec): Extern them.
17094
17095 2008-02-01 Kenichi Handa <handa@m17n.org>
17096
17097 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
17098 (syms_of_font): Initialize them.
17099 (font_pixel_size): Allow float value in dpi.
17100 (font_prop_validate_type): Delete.
17101 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
17102 Change caller.
17103 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
17104 (font_prop_validate_extra): Delete.
17105 (font_prop_validate_spacing): New function.
17106 (font_property_table): Add elements for all known properties.
17107 (get_font_prop_index): Rename from check_font_prop_name. New
17108 argument FROM. Change caller.
17109 (font_prop_validate): Validate all known properties.
17110 (font_put_extra): Delete argument force. Change caller.
17111 (font_expand_wildcards): Make it static. Fix the way of shrinking
17112 the possible range.
17113 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
17114 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
17115 Change caller.
17116 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
17117 (font_parse_fcname): Delete argument merge. Fix parsing of point
17118 size. Don't validate properties values here. Change caller.
17119 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
17120 (font_open_by_name): Delete unused variable.
17121 (Ffont_spec): Likewise. Validate property values.
17122 (Ffont_match_p): New function.
17123
17124 * font.h (QCscalable): Extern it.
17125 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
17126
17127 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
17128
17129 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
17130 (xfont_list_pattern): New function.
17131 (xfont_list): Use xfont_list_pattern.
17132
17133 2008-02-01 Kenichi Handa <handa@m17n.org>
17134
17135 * font.h (Flist_fonts): EXFUN it.
17136
17137 2008-02-01 Jason Rumney <jasonr@gnu.org>
17138
17139 * w32term.c (w32_initialize): Add back smoothing_type and
17140 smoothing_enabled definitions.
17141
17142 2008-02-01 Kenichi Handa <handa@m17n.org>
17143
17144 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
17145 s->face->font on determining underline position.
17146
17147 2008-02-01 Kenichi Handa <handa@m17n.org>
17148
17149 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
17150 (font_has_char): Accept font-object too.
17151 (font_find_for_lface): Try at first with a size specified in face.
17152
17153 2008-02-01 Kenichi Handa <handa@m17n.org>
17154
17155 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
17156 font_open_by_name.
17157
17158 2008-02-01 Kenichi Handa <handa@m17n.org>
17159
17160 * font.h (QCspacing, QCdpi): Extern them.
17161 (enum font_spacing): New enum.
17162 (FONT_PIXEL_SIZE_QUANTUM): New macro.
17163
17164 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
17165 (QCspacing, QCdpi): New variables.
17166 (syms_of_font): Initialize them.
17167 (font_pixel_size): New function.
17168 (font_put_extra): New function.
17169 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
17170 in FONT_EXTRA.
17171 (font_parse_fcname): Handle enumerated values (e.g. bold).
17172 Fix handling font size. Add QCname property that contains only
17173 unknown properties.
17174 (font_score): Change argument. Change caller. Pay attention to
17175 FONT_PIXEL_SIZE_QUANTUM.
17176 (font_sort_entites, font_list_entities, font_find_for_lface)
17177 (font_open_for_lface, font_open_by_name): Fix handling of font size.
17178 (Ffont_spec): Add QCname property that contains only unknown properties.
17179
17180 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
17181 include weight in listing pattern, instead check weight of each
17182 listed font. Don't include scalable in pattern. Pay attention to
17183 FONT_PIXEL_SIZE_QUANTUM.
17184
17185 2008-02-01 Kenichi Handa <handa@m17n.org>
17186
17187 * font.c (font_parse_fcname): Fix parsing of point-size.
17188 (font_unparse_fcname): Produce symbolic names for style properties.
17189 (font_list_entities): Handle float size correctly.
17190 (font_open_by_name): Prefer `normal' property values if the name
17191 doesn't specify them.
17192
17193 * fontset.c (Finternal_char_font): Use font_get_name, not
17194 Ffont_xlfd_name.
17195
17196 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
17197 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
17198 pattern. Don't force scalable.
17199
17200 * xftfont.c (xftfont_open): For generating a name, start from
17201 96-byte buffer.
17202
17203 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
17204
17205 * frame.h (x_new_fontset2): Fix prototype.
17206
17207 2008-02-01 Kenichi Handa <handa@m17n.org>
17208
17209 * font.h (struct font_driver): Delete member parse_name.
17210 (font_match_p, font_get_spec, font_parse_fcname)
17211 (font_unparse_fcname): Extern them.
17212 (font_get_name): Adjust prototype.
17213
17214 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
17215 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
17216 (font_expand_wildcards): Fix handling ENCODING field. Avoid
17217 unnecessary checks for weight, slant, and swidth.
17218 (font_parse_fcname): New function.
17219 (font_unparse_fcname): New function.
17220 (font_parse_name): New function.
17221 (font_match_p): New function.
17222 (font_get_name): Change return value to Lisp string.
17223 (font_get_spec): New function.
17224 (Qunspecified, Qignore_defface): Don't extern them.
17225 (font_find_for_lface): Assume that LFACE is fully specified.
17226 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
17227 object, use it for FACE.
17228 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
17229 driver->parse_name.
17230 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
17231
17232 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
17233 prototype.
17234
17235 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
17236 argument F. Don't call Fnew_fontset. Instead, directly call
17237 make_fontset.
17238
17239 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
17240
17241 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
17242 of x_new_fontset2.
17243
17244 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
17245 (Qsans__serif): New variables.
17246 (ftfont_generic_family_list): New variable.
17247 (syms_of_ftfont): Initialize the above variables.
17248 (ftfont_pattern_entity): Delete argument NAME.
17249 (ftfont_list_generic_family): New function.
17250 (ftfont_parse_name): Delete this function.
17251 (ftfont_list): Try generic family only when FcFontList found no font.
17252 (ftfont_list_family): Fix args to FcObjectSetBuild.
17253
17254 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
17255 object in attrs[LFACE_FONT_INDEX].
17256 (set_lface_from_font_name): Cancel all changes for font-backend.
17257 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
17258 function.
17259 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
17260 font object in QCfont attribute.
17261 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
17262 (realize_default_face) [USE_FONT_BACKEND]: Call
17263 set_lface_from_font_and_fontset.
17264
17265 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
17266 "fixed", and signal error here if no suitable font was found.
17267
17268 * xfont.c (xfont_parse_name): Delete this function.
17269
17270 * xftfont.c (xftfont_open): Change coding style of error
17271 handling. Generate fontconfig's fontname pattern.
17272
17273 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
17274 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
17275
17276 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
17277 Both args FONTSET and FONT_OBJECT must be existing ones.
17278
17279 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17280
17281 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
17282
17283 2008-02-01 Kenichi Handa <handa@m17n.org>
17284
17285 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
17286
17287 * font.h (struct font): Fix typo.
17288
17289 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
17290 XLFD_XXX_INDEX.
17291 (enum xlfd_field_mask): New enum.
17292 (intern_font_field): Changed argument. Change caller. If digits
17293 are followed by non-digits, return a symbol.
17294 (font_expand_wildcards): New function.
17295 (font_parse_xlfd): Fix wildcard handling.
17296 (Ffont_spec): If :name is specified, reflect the info in the other
17297 properties.
17298
17299 * ftfont.c (ftfont_pattern_entity): Fix typo.
17300 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
17301 locale.
17302
17303 2008-02-01 Kenichi Handa <handa@m17n.org>
17304
17305 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
17306
17307 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
17308 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
17309 registry doesn't specify encoding part.
17310 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
17311 (font_open_by_name): At first try parsing the name.
17312 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
17313 as Lisp symbols.
17314
17315 * fontset.c (reorder_font_vector): Pay attention to the case that
17316 the 3rd element of font_def is nil.
17317 (fontset_font): For the default fontset, append one more fontset
17318 elements for a script-based font specification. Don't add script
17319 attribute on finding a font.
17320 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
17321 font name.
17322 (fontset_ascii_font): If a font can't be opened, return nil.
17323
17324 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
17325 (ftfont_pattern_entity): New function.
17326 (ftfont_get_cache): Assume that freetype_font_cache is already
17327 initialized.
17328 (ftfont_list): Handle the case that a file is specified in font
17329 name. Use ftfont_pattern_entity to generate entities.
17330 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
17331 (syms_of_ftfont): Initialize freetype_font_cache.
17332
17333 * xftfont.c (xftfont_open): Make the font name fontconfig's
17334 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
17335 (xftfont_close): Free font->font.name if not NULL.
17336
17337 * xfont.c (xfont_list): If script is specified for a font, return
17338 null_vector.
17339 (xfont_list_family): Declare argument type.
17340
17341 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
17342 name, set LFACE_FONT (lface) to nil.
17343
17344 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
17345 return Qnil.
17346
17347 2008-02-01 Kenichi Handa <handa@m17n.org>
17348
17349 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
17350 (standard_args): Add "-enable-font-backend".
17351
17352 2008-02-01 Kenichi Handa <handa@m17n.org>
17353
17354 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
17355 (struct xftdraw_list, xftdraw_list): Delete them.
17356 (register_xftdraw, check_xftdraw): Delete them.
17357 (xftfont_prepare_face): Don't call register_xftdraw.
17358 (xftfont_done_face): Don't call check_xftdraw.
17359 (xftfont_draw): Get background color only when with_background is
17360 nonzero.
17361
17362 * xfont.c (xfont_encode_char): Fix calculation of char2b.
17363
17364 2008-02-01 Kenichi Handa <handa@m17n.org>
17365
17366 These changes are for the new font handling codes.
17367
17368 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
17369 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
17370 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
17371 (FONTSRC, FONTOBJ): New variables.
17372 (obj): Add $(FONTOBJ).
17373 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
17374 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
17375 @LIBOTF_LIBS@.
17376 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
17377 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
17378
17379 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
17380
17381 * character.h (Vscript_representative_chars): Extern it.
17382
17383 * character.c (Vscript_representative_chars): New variable.
17384 (syms_of_character): Declare it as a Lisp variable.
17385
17386 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
17387 enable_font_backend is nonzero, accept the composition method
17388 COMPOSITION_WITH_GLYPH_STRING.
17389
17390 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
17391 enumeration COMPOSITION_WITH_GLYPH_STRING.
17392
17393 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
17394 members clip_x, clip_y, clip_width, and clip_height.
17395 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
17396
17397 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
17398 --enable-font-backend. Call syms_of_font.
17399
17400 * fns.c (assoc_no_quit): New function.
17401
17402 * fontset.h (FONT_INFO_FROM_FACE): New macro.
17403 (face_for_font, new_fontset_from_font)
17404 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
17405
17406 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
17407 (fontset_font, fontset_ascii, face_for_char)
17408 (make_fontset_for_ascii_face, Ffont_info)
17409 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
17410 is nonzero, use font-backend mechanism.
17411 (find_font_encoding): Make it non-static.
17412 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
17413 New functions.
17414
17415 * frame.h (struct frame): New members resx and resy.
17416 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
17417 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
17418
17419 * frame.c [USE_FONT_BACKEND]: Include "font.h".
17420 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
17421
17422 * lisp.h (assoc_no_quit): Extern it.
17423
17424 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
17425 Through out the file, use FONT_INFO_FROM_FACE instead of
17426 FONT_INFO_FROM_ID, use get_per_char_metric instead of
17427 rif->per_char_metric.
17428 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
17429 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
17430 (get_glyph_face_and_encoding, fill_composite_glyph_string)
17431 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
17432 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
17433 nonzero, use font-backend mechanism.
17434 (get_per_char_metric): New function.
17435
17436 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
17437 (set_lface_from_font_name)
17438 (set_font_frame_param, free_realized_face)
17439 (prepare_face_for_display, clear_face_gcs)
17440 (Finternal_set_font_selection_order, realize_x_face)
17441 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
17442 font-backend mechanism.
17443 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
17444 (load_face_font) [USE_FONT_BACKEND]: Abort.
17445 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
17446 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
17447
17448 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
17449 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
17450 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
17451 nonzero, register all available font drivers. Call
17452 x_default_font_parameter for deciding a font.
17453 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
17454
17455 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
17456 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
17457 (x_set_glyph_string_clipping_exactly)
17458 (x_compute_glyph_string_overhangs)
17459 (x_draw_glyph_string_foreground)
17460 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
17461 (x_free_frame_resources) [USE_FONT_BACKEND]: If
17462 enable_font_backend is nonzero, use font-backend mechanism.
17463 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
17464
17465 2008-02-01 Kenichi Handa <handa@m17n.org>
17466
17467 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
17468 system_eol_type.
17469 (syms_of_coding): Initialize system_eol_type.
17470
17471 * process.c (Fset_process_coding_system): Inherit system's eol
17472 format if necessary.
17473
17474 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17475
17476 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
17477
17478 2008-02-01 Kenichi Handa <handa@m17n.org>
17479
17480 * coding.c (decode_eol): Pay attention to buffer relocation in
17481 del_range_2.
17482 (decode_coding): Call decode_eol before restoring undo_list.
17483
17484 2008-02-01 Kenichi Handa <handa@m17n.org>
17485
17486 * charset.c (Fdefine_charset_internal): Fix setting of
17487 emacs_mule_bytes.
17488
17489 2008-02-01 Kenichi Handa <handa@m17n.org>
17490
17491 * keyboard.c (read_char): Check if C is a character or not before
17492 looking up Vkeyboard_translate_table.
17493
17494 2008-02-01 Kenichi Handa <handa@m17n.org>
17495
17496 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
17497 condition to terminate the loop.
17498
17499 2008-02-01 Kenichi Handa <handa@m17n.org>
17500
17501 * coding.c (produce_composition): Compare charbuf[i] instead of
17502 args[i] against 0.
17503 (Fterminal_coding_system): Use EQ to compare Lisp objects.
17504
17505 2008-02-01 Kenichi Handa <handa@m17n.org>
17506
17507 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
17508 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
17509 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
17510 detect_coding.
17511 (emacs_mule_char): Handle old style (Emacs 20) component character
17512 of a composition.
17513 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
17514 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
17515 composition rule.
17516 (decode_coding_emacs_mule): Handle invalid bytes correctly.
17517
17518 2008-02-01 Kenichi Handa <handa@m17n.org>
17519
17520 * coding.c (encode_coding_ccl): Allocate destination dynamically
17521 when necessary.
17522
17523 2008-02-01 Kenichi Handa <handa@m17n.org>
17524
17525 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
17526 the loop. When quitted, show a proper error message.
17527
17528 2008-02-01 Kenichi Handa <handa@m17n.org>
17529
17530 * xterm.c (x_set_glyph_string_clipping_exactly): Set
17531 src->clip_head and src->clip_tail temporarily instead of src->hl.
17532
17533 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
17534 character sequence.
17535 (Fccl_execute_on_string): Use ASET, not XSET.
17536
17537 2008-02-01 Kenichi Handa <handa@m17n.org>
17538
17539 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
17540
17541 2008-02-01 Kenichi Handa <handa@m17n.org>
17542
17543 * coding.c (decode_coding): Fix the condition of terminating the
17544 decoding loop.
17545
17546 2008-02-01 Kenichi Handa <handa@m17n.org>
17547
17548 * data.c (Faset): On setting a character bigger than 255 in a
17549 unibyte string, signal an error instead of make the string multibyte.
17550
17551 2008-02-01 Kenichi Handa <handa@m17n.org>
17552
17553 * charset.c (map_charset_chars): Fix for ascii-compatible charset
17554 made by a mapping table.
17555
17556 2008-02-01 Kenichi Handa <handa@m17n.org>
17557
17558 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
17559 not.
17560 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
17561 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
17562
17563 * xterm.c (x_draw_composite_glyph_string_foreground): Check
17564 s->face is NULL or not.
17565
17566 2008-02-01 Kenichi Handa <handa@m17n.org>
17567
17568 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
17569 (x_draw_glyph_string): Fix drawing of right_overhang and
17570 left_overhang around/on cursor.
17571
17572 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
17573
17574 2008-02-01 Kenichi Handa <handa@m17n.org>
17575
17576 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
17577
17578 2008-02-01 Kenichi Handa <handa@m17n.org>
17579
17580 * coding.c (Fdefine_coding_system_internal)
17581 (Fdefine_coding_system_alias): Avoid a duplicated element in
17582 Vcoding_system_alist.
17583
17584 2008-02-01 Kenichi Handa <handa@m17n.org>
17585
17586 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
17587
17588 * coding.c (Qcoding_system_define_form): New variable.
17589 (syms_of_coding): Intern and staticpro it.
17590 (Fcoding_system_p): Check Qcoding_system_define_form.
17591 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
17592
17593 * coding.h (CODING_SYSTEM_P): If ID is not available, call
17594 Fcoding_system_p.
17595 (CHECK_CODING_SYSTEM): If ID is not available, call
17596 Fcheck_coding_system.
17597 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
17598 Try also Fcheck_coding_system.
17599
17600 2008-02-01 Kenichi Handa <handa@m17n.org>
17601
17602 * coding.c (code_conversion_restore): GCPRO arg.
17603
17604 2008-02-01 Kenichi Handa <handa@m17n.org>
17605
17606 * character.c (lisp_string_width): Check multibyteness of STRING.
17607
17608 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17609
17610 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
17611 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
17612 (decode_mac_font_name): Use decode_coding_c_string instead of
17613 decode_coding.
17614 (x_load_font): Initialize fontp->fontset to -1. Set
17615 fontp->encoding_type.
17616
17617 2008-02-01 Kenichi Handa <handa@m17n.org>
17618
17619 * search.c (search_buffer): Give up BM search on case-fold-search
17620 if one of a target character has a case-equivalence of different
17621 byte length even if that target charcter is an ASCII.
17622 (simple_search): Fix calculation of byte length of matched text.
17623 (boyer_moore): Fix handling of case-equivalent multibyte characters.
17624
17625 2008-02-01 Kenichi Handa <handa@m17n.org>
17626
17627 * coding.c (decode_coding): Fix handling of invalid bytes.
17628
17629 2008-02-01 Kenichi Handa <handa@m17n.org>
17630
17631 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
17632 Unicode characters.
17633
17634 2008-02-01 Kenichi Handa <handa@m17n.org>
17635
17636 * coding.c (encode_coding_object): If a pre-write-conversion
17637 function makes a new buffer, kill it.
17638
17639 2008-02-01 Kenichi Handa <handa@m17n.org>
17640
17641 * coding.c (QCascii_compatible_p): New variable.
17642 (syms_of_coding): Initialize it.
17643 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
17644 calling string_char.
17645 (record_conversion_result): Add `default:' case.
17646 (coding_charset_list): Delete unused variable `coding_type'.
17647 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
17648 property in the plist of the coding system.
17649 (Fcoding_system_put): Check QCascii_compatible_p.
17650
17651 2008-02-01 Miles Bader <miles@gnu.org>
17652
17653 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
17654 removed calculation of frame `f', as it's now used.
17655
17656 2008-02-01 Kenichi Handa <handa@m17n.org>
17657
17658 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
17659 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
17660 (UNIDATA): New variable.
17661 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
17662 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
17663 $(RUN_TEMACS) unconditionally.
17664
17665 2008-02-01 Kenichi Handa <handa@m17n.org>
17666
17667 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
17668 (admindir): New variable.
17669 ($(lispsource)international/charprop.el): New target.
17670
17671 2008-02-01 Miles Bader <miles@gnu.org>
17672
17673 * character.c (chars-in-region): Remove obsolete function.
17674 (syms_of_character): Remove its initialization.
17675
17676 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
17677
17678 * w32select.c (validate_coding_system)
17679 (setup_windows_coding_system): New functions.
17680 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
17681 setup_windows_coding_system.
17682 (setup_config, Fw32_get_clipboard_data): Use
17683 validate_coding_system.
17684 (Fx_selection_exists): Move call to setup_config to a place
17685 where signals are allowed.
17686
17687 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
17688 (Fcheck_coding_system): Add declarations.
17689
17690 2008-02-01 Kenichi Handa <handa@m17n.org>
17691
17692 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
17693
17694 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17695
17696 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
17697 string as the second argument for x_new_fontset.
17698
17699 2008-02-01 Kenichi Handa <handa@m17n.org>
17700
17701 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
17702 (encode_coding_object): Use safe_call instead of call2.
17703
17704 2008-02-01 Kenichi Handa <handa@m17n.org>
17705
17706 * fontset.c (Fset_fontset_font): Check family element of a given vector.
17707
17708 * Makefile.in (lisp): Include charprop.el.
17709
17710 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17711
17712 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
17713 Not sure if it's unnecessary.
17714
17715 2008-02-01 Steven Tamm <steventamm@mac.com>
17716
17717 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
17718 some possibly unnecessary fontset checking code that crashed
17719 when creating a new frame.
17720
17721 2008-02-01 Kenichi Handa <handa@m17n.org>
17722
17723 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
17724 lookup_face.
17725
17726 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
17727
17728 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
17729
17730 2008-02-01 Kenichi Handa <handa@m17n.org>
17731
17732 * coding.c: Cancel the change done in HEAD on 2008-02-01.
17733 (coding_charset_list): New function.
17734
17735 * coding.h (coding_charset_list): Extern it.
17736
17737 2008-02-01 Kenichi Handa <handa@m17n.org>
17738
17739 * fontset.c (Fset_fontset_font): Call find_font_encoding with
17740 concatenation of family and registry.
17741
17742 2008-02-01 Kenichi Handa <handa@m17n.org>
17743
17744 * character.h (BYTE8_STRING): Fix typo.
17745
17746 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
17747 string to multibyte (sync to HEAD).
17748
17749 * casefiddle.c (casify_region): Handle changes in byte-length
17750 using replace_range_2 (sync to HEAD).
17751
17752 2008-02-01 Andreas Schwab <schwab@suse.de>
17753
17754 * chartab.c (map_char_table): GCPRO table and arg.
17755
17756 2008-02-01 Kenichi Handa <handa@m17n.org>
17757
17758 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
17759 already at limit.
17760
17761 2008-02-01 Kenichi Handa <handa@m17n.org>
17762
17763 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
17764 instead of fast_c_string_match_ignore_case.
17765 (find_font_encoding): Change argument to Lisp_Object. Use
17766 fast_string_match_ignore_case instead of
17767 fast_c_string_match_ignore_case. Change caller.
17768
17769 2008-02-01 Kenichi Handa <handa@m17n.org>
17770
17771 * xdisp.c (get_next_display_element): In unibyte case, decide to
17772 display in octal form by checking a character by
17773 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
17774
17775 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
17776
17777 * character.c (unibyte_has_multibyte_table): New variable.
17778
17779 * character.h (unibyte_has_multibyte_table): Extern it.
17780 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
17781
17782 2008-02-01 Kenichi Handa <handa@m17n.org>
17783
17784 * coding.c (encode_coding_iso_2022): Fix handling of charset
17785 annotation.
17786
17787 2008-02-01 Kenichi Handa <handa@m17n.org>
17788
17789 * coding.c (setup_coding_system): If coding_system is nil, use
17790 Qundecided.
17791 (Fterminal_coding_system): Return nil if terminal coding system is
17792 `undecided'.
17793 (syms_of_coding): Define coding-system `undecided' here. Setup
17794 terminal_coding as `undecided'.
17795
17796 2008-02-01 Kenichi Handa <handa@m17n.org>
17797
17798 * xdisp.c (message_dolog, set_message_1): Call
17799 unibyte_char_to_multibyte with arg type int.
17800
17801 * lread.c (read1): Fix reading of a char-table.
17802
17803 * print.c (print_object): Include sub char-table in circularities
17804 detection.
17805
17806 2008-02-01 Kenichi Handa <handa@m17n.org>
17807
17808 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
17809 Append the found sequences in car of ARGS instead of prepending.
17810
17811 2008-02-01 Kenichi Handa <handa@m17n.org>
17812
17813 * fileio.c (report_file_error): Make a unibyte string from
17814 strerror (errorno).
17815 (Fsubstitute_in_file_name): Fix the arg to
17816 unibyte_char_to_multibyte. It is evaluated twice.
17817
17818 2008-02-01 Kenichi Handa <handa@m17n.org>
17819
17820 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
17821
17822 2008-02-01 Kenichi Handa <handa@m17n.org>
17823
17824 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
17825 BOM is not found.
17826 (detect_coding, detect_coding_system): Optimization for ISO-2022
17827 when no 8-bit data is found.
17828
17829 2008-02-01 Jason Rumney <jasonr@gnu.org>
17830
17831 * w32fns.c (x_to_w32_font): Update to use new coding struct.
17832
17833 2008-02-01 Kenichi Handa <handa@m17n.org>
17834
17835 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
17836 CHARS.
17837
17838 2008-02-01 Steven Tamm <steventamm@mac.com>
17839
17840 * macterm.c (mac_encode_char): Add charset argument and update
17841 to use encoding_type.
17842 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
17843 switch to pure fontset.
17844 (decode_mac_font_name): Temporarily remove decoding.
17845 (x_font_name_to_mac_font_name): Temporarily remove encoding.
17846 (x_load_font): Temporarily remove encoding.
17847
17848 2008-02-01 Kenichi Handa <handa@m17n.org>
17849
17850 * xfaces.c (Fface_font): If frame is not on a window system,
17851 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
17852 refer to face->font.
17853 (split_font_name_into_vector, build_font_name_from_vector)
17854 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
17855 when HAVE_WINDOW_SYSTEM is defined.
17856
17857 2008-02-01 Kenichi Handa <handa@m17n.org>
17858
17859 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
17860 (x_produce_glyphs): Fix setting of members of cmp in case
17861 cmp->glyph_len is zero.
17862
17863 * fontset.c (Fset_fontset_font): Fix docstring.
17864 (Ffontset_info): Make it backward compatible. New arg ALL.
17865
17866 2008-02-01 Kim F. Storm <storm@cua.dk>
17867
17868 * process.c (read_process_output): Grow decoding_buf when needed;
17869 this could cause a crash in allocate_string and compact_small_strings.
17870
17871 2008-02-01 Kenichi Handa <handa@m17n.org>
17872
17873 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
17874
17875 2008-02-01 Kenichi Handa <handa@m17n.org>
17876
17877 * coding.c (setup_coding_system): Set coding->common_flags
17878 correctly for raw-text.
17879 (consume_chars): On encoding unibyte text by raw-text, don't check
17880 multibyte form.
17881 (encode_coding): On encoding by raw-text, never use translation tables.
17882
17883 * fileio.c (e_write): Short cut for the case of no encoding.
17884
17885 2008-02-01 Kenichi Handa <handa@m17n.org>
17886
17887 * coding.c (detect_coding, detect_coding_system): Delete unused
17888 variables.
17889
17890 2008-02-01 Kenichi Handa <handa@m17n.org>
17891
17892 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
17893 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
17894
17895 2008-02-01 Kenichi Handa <handa@m17n.org>
17896
17897 * coding.c (Ffind_coding_systems_region_internal): Include
17898 raw-text and no-conversion in the result.
17899
17900 2008-02-01 Kenichi Handa <handa@m17n.org>
17901
17902 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
17903 (load_font_get_repertory): Delete unnecessary check of ENCODING of
17904 FONT_DEF.
17905 (font_def_arg, add_arg, from_arg, to_arg): New args.
17906 (set_fontset_font): Change argument.
17907 (Fset_fontset_font): Fix for the case that TARGET is a script
17908 name and charset name.
17909 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
17910
17911 2008-02-01 Kenichi Handa <handa@m17n.org>
17912
17913 * fontset.c (fontset_font): Rename from fontset_face. Change return
17914 value.
17915 (face_suitable_for_char_p, face_for_char): Adjust for the change
17916 of fontset_font.
17917 (make_fontset_for_ascii_face): Fix setting of the fontset element
17918 for ASCII.
17919 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
17920 to get a font name.
17921 (Ffontset_info): Adjust for the change of fontset_font.
17922
17923 * coding.c (emacs_mule_char): Check invalid code more rigidly.
17924
17925 * character.h (LEADING_CODE_LATIN_1_MIN)
17926 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
17927
17928 2008-02-01 Kenichi Handa <handa@m17n.org>
17929
17930 * editfns.c (check_translation): New function.
17931 (Ftranslate_region_internal): Handle M:N mapping.
17932
17933 2008-02-01 Kenichi Handa <handa@m17n.org>
17934
17935 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
17936
17937 2008-02-01 Kenichi Handa <handa@m17n.org>
17938
17939 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
17940 goto invalid_code.
17941 (decode_coding_iso_2022): Fix handling of invalid designation.
17942
17943 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
17944 after calling code_conversion_save.
17945
17946 2008-02-01 Kenichi Handa <handa@m17n.org>
17947
17948 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
17949
17950 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
17951
17952 * fontset.c: Include "intervals.h".
17953 (fontset_face): Fix comparing of Lisp_Objects.
17954 (free_face_fontset, new_fontset_from_font_name): Fix
17955 Lisp_Object/int mixup.
17956
17957 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
17958
17959 * coding.c: Add many prototypes for static functions.
17960 (get_translation_table): Allow max_lookup to be NULL.
17961 (decode_coding, Ffind_coding_systems_region_internal)
17962 (Funencodable_char_position, Fcheck_coding_systems_region): Call
17963 get_translation_table with max_lookup NULL.
17964
17965 2008-02-01 Kenichi Handa <handa@m17n.org>
17966
17967 * coding.c (get_translation_table): Declare it as Lisp_Object.
17968 (LOOKUP_TRANSLATION_TABLE): New macro.
17969 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
17970 instead of CHAR_TABLE_REF.
17971
17972 2008-02-01 Kenichi Handa <handa@m17n.org>
17973
17974 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
17975 annotation data format.
17976 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
17977 Change arguments FROM and TO to single argument NCHARS. Change caller.
17978 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
17979 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
17980 (decode_coding_ccl, decode_coding_charset): Pay attention to
17981 coding->charbuf_used.
17982 (get_translation): New function.
17983 (produce_chars): New arguments translation_table and last_block.
17984 Translate characters here. Return number of carryover chars.
17985 Change caller.
17986 (produce_composition): New argument pos. Change caller.
17987 Adjust for the change of annotation data format.
17988 (produce_charset, produce_annotation): Likewise.
17989 (decode_coding, encode_coding): Don't call translate_chars.
17990 (consume_chars): New arg translation_table. Change caller.
17991 (translate_chars): Delete.
17992 (syms_of_coding): Make translation-table's number of extra slots 2.
17993
17994 2008-02-01 Kenichi Handa <handa@m17n.org>
17995
17996 * search.c (simple_search): Fix setting this_pos_byte in backward
17997 search.
17998
17999 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
18000 byte sequence.
18001 (detect_coding_ccl): Fix setting of the variable valids.
18002
18003 2008-02-01 Kenichi Handa <handa@m17n.org>
18004
18005 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
18006
18007 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
18008
18009 * editfns.c (Ftranslate_region_internal): Rename from
18010 Ftranslate_region. Accept a char-table in TABLE.
18011 (syms_of_editfns): Defsubr Stranslate_region_internal.
18012
18013 * xfaces.c (set_lface_from_font_name): If a font is specified for
18014 a frame, generate a fontset from the font.
18015 (build_scalable_font_name): If the scalable font is requested for
18016 a specific size, don't change that size.
18017 (try_font_list): Try a scalable font also in the case that a
18018 pattern string is specified.
18019
18020 2008-02-01 Kenichi Handa <handa@m17n.org>
18021
18022 * xfaces.c (Fface_font): New optional arg CHARACTER.
18023
18024 2008-02-01 Kenichi Handa <handa@m17n.org>
18025
18026 * charset.h (CHARSET_OFFSET): New macro.
18027
18028 2008-02-01 Kenichi Handa <handa@m17n.org>
18029
18030 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
18031
18032 * fontset.c (fontset_face): Handle the case that repertory is a
18033 char-table.
18034 (find_font_encoding): Return nil for unknown encoding.
18035 (Fset_fontset_font): Ignore a font of unknown encoding.
18036
18037 2008-02-01 Kenichi Handa <handa@m17n.org>
18038
18039 * keymap.c (describe_vector): Handle default value of a char table.
18040
18041 * fontset.c (fontset_face): Handle fallback fonts correctly.
18042 (Ffontset_info): Return infomation about fallback fonts.
18043
18044 2008-02-01 Kenichi Handa <handa@m17n.org>
18045
18046 * fontset.c (FONTSET_DEFAULT): New macro.
18047 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
18048 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
18049 the case that it is nil.
18050 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
18051 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
18052
18053 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
18054 subset or superset.
18055
18056 2008-02-01 Kenichi Handa <handa@m17n.org>
18057
18058 * emacs.c (main): Call init_charset after syms_of_XXX.
18059
18060 * charset.c (Vcharset_map_directory): Delete.
18061 (Vcharset_map_path): New variable.
18062 (load_charset_map_from_file): Use Vcharset_map_path instead.
18063 (init_charset): Initialize Vcharset_map_path.
18064 (syms_of_charset): Delete declaration of "charset-map-directory",
18065 add declaration of "charset-map-path".
18066
18067 2008-02-01 Kenichi Handa <handa@m17n.org>
18068
18069 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
18070 ASCII only string.
18071
18072 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
18073
18074 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
18075 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
18076
18077 2008-02-01 Kenichi Handa <handa@m17n.org>
18078
18079 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
18080
18081 * coding.c (QCmnemonic, QCdefalut_char)
18082 (QCdecode_translation_table, QCencode_translation_table)
18083 (QCpost_read_conversion, QCpre_write_conversion): New variables.
18084 (get_translation_table): Return a list of translation tables if
18085 necessary.
18086 (decode_coding): Call get_translation_table with ENCODEP 0.
18087 (char_encodable_p): If translation_table is non-nil, always call
18088 translate_char.
18089 (Fdefine_coding_system_internal): Accept list of translation
18090 tables as :encode-translation-table and :decode-translation-table.
18091 (Fcoding_system_put): New function.
18092 (syms_of_coding): Declare new symbols. Defsubr
18093 Scoding_system_put.
18094 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
18095 typically JISX0212.
18096
18097 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
18098 when the charset is superset type.
18099
18100 * character.c (translate_char): Accept list of translation tables.
18101
18102 2008-02-01 Kenichi Handa <handa@m17n.org>
18103
18104 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
18105 (CODING_ATTR_TRANS_TBL): New macro.
18106
18107 * coding.c (get_translation_table): New function.
18108 (translate_chars): Fix the bug of skipping annotation data.
18109 (decode_coding, encode_coding): Utilize get_translation_table.
18110 (char_encodable_p, Funencodable_char_position): Translate char if
18111 necessary.
18112 (Ffind_coding_systems_region_internal)
18113 (Fcheck_coding_systems_region): Setup translation table for encode
18114 in a coding system attribute vector in advance.
18115 (Fdefine_coding_system_internal): Allow a symbol as translation
18116 table. For shift-jis type coding system, allow 4th charset.
18117
18118 2008-02-01 Kenichi Handa <handa@m17n.org>
18119
18120 * coding.c (decode_coding_sjis): Check the first byte rigidly.
18121
18122 * xdisp.c (get_next_display_element): Pass -1 as POS to
18123 FACE_FOR_CHAR if displaying a C-string.
18124
18125 2008-02-01 Kenichi Handa <handa@m17n.org>
18126
18127 * composite.c (get_composition_id): Handle xoff and yoff in a
18128 composition rule.
18129
18130 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
18131 (struct composition): New member lbearing and rbearing.
18132
18133 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
18134 (x_get_glyph_overhangs): Handle a composition glyph.
18135 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
18136
18137 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
18138 composition glyph.
18139
18140 2008-02-01 Kenichi Handa <handa@m17n.org>
18141
18142 * print.c: Include charset.h.
18143 (Vprint_charset_text_property): New variable.
18144 (Qdefault): Extern it.
18145 (PRINT_STRING_NON_CHARSET_FOUND)
18146 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
18147 (print_check_string_result): New variable.
18148 (print_check_string_charset_prop): New function.
18149 (print_prune_charset_plist): New variable.
18150 (print_prune_string_charset): New function.
18151 (print_object): Call print_prune_string_charset if
18152 Vprint_charset_text_property is not t.
18153 (print_interval): Print nothing if interval->plist is nil.
18154 (syms_of_print): Declare Vprint_charset_text_property as a lisp
18155 variable. Init and staticpro print_prune_charset_plist.
18156
18157 2008-02-01 Kenichi Handa <handa@m17n.org>
18158
18159 * fontset.c (new_fontset_from_font_name): Use the specified font
18160 for all characters in the new fontset.
18161
18162 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
18163 OBJECT args.
18164
18165 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
18166 OBJECT args for composition too.
18167
18168 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
18169 OBJECT args.
18170
18171 2008-02-01 Kenichi Handa <handa@m17n.org>
18172
18173 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
18174
18175 * fontset.c (reorder_font_vector): Adjust for the change of
18176 FONT_DEF format.
18177 (fontset_face): New arg id. Change caller.
18178 (face_for_char): New args pos and object.
18179 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
18180 (fs_query_fontset): Check NAME by Fassoc too.
18181 (Fset_fontset_font): Allow non-XLFD font name.
18182 (Ffontset_info): Adjust for the change of FONT_DEF format.
18183
18184 * fontset.h (face_for_char): Adjust prototype.
18185
18186 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
18187 (append_space, extend_face_to_end_of_line)
18188 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
18189 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
18190
18191 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
18192 POS and OBJECT args.
18193
18194 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
18195 POS and OBJECT args.
18196
18197 2008-02-01 Jason Rumney <jasonr@gnu.org>
18198
18199 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
18200 of GlobalAlloc'ed memory.
18201
18202 2008-02-01 Kenichi Handa <handa@m17n.org>
18203
18204 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
18205
18206 * charset.h (charset_table_used): Delete extern.
18207
18208 * charset.c (charset_table_used): Make it static.
18209 (map_charset_chars): Fix args to c_function with.
18210
18211 * chartab.c (map_sub_char_table_for_charset): Fix args to
18212 c_function with.
18213
18214 * coding.h (enum coding_result_code): Delete
18215 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
18216
18217 * coding.c (Qinsufficient_source, Qinconsistent_eol)
18218 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
18219 (Vlast_code_conversion_error): New variables.
18220 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
18221 (ONE_MORE_BYTE): Record error if any instead of signaling an
18222 error. If non-ASCII multibyte char is found, return the negative
18223 value of the code. All callers changed to check it.
18224 (ONE_MORE_BYTE_NO_CHECK): Likewise.
18225 (record_conversion_result): New function. Change all codes setting
18226 coding->result to call this function.
18227 (detect_coding_utf_8, decode_coding_utf_8)
18228 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
18229 Don't use the local variable incomplete.
18230 (emacs_mule_char): Change the second arg to `const'.
18231 (decode_coding): Fix of flushing out unprocessed data.
18232 (make_conversion_work_buffer): Fix making of a work buffer.
18233 (decode_coding_object): Return coding->dst_object.
18234
18235 * fontset.c (set_fontset_font): Fix args.
18236
18237 * lisp.h (CHARACTERBITS): Define as 22.
18238
18239 * process.c (send_process): Be sure to set coding->src_multibyte.
18240
18241 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
18242
18243 2008-02-01 Kenichi Handa <handa@m17n.org>
18244
18245 * xdisp.c (handle_auto_composed_prop): Give limit to
18246 Fnext_single_char_property_change.
18247
18248 2008-02-01 Kenichi Handa <handa@m17n.org>
18249
18250 * composite.c (syms_of_composite): Don't make the composition hash
18251 table weak.
18252
18253 * fontset.c (Fset_fontset_font): Fix docstring.
18254
18255 * lisp.h (detect_coding_system): Adjust prototype.
18256
18257 * fileio.c (kill_workbuf_unwind): Delete this function.
18258 (Finsert_file_contents): Adjust the call of detect_coding_system.
18259 Get conversion_buffer by code_conversion_save. Use the macro
18260 CODING_MAY_REQUIRE_DECODING. After decoding, update
18261 coding_system.
18262
18263 * coding.h (make_conversion_work_buffer): Delete extern.
18264 (code_conversion_save): Extern it.
18265
18266 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
18267 (CODING_GET_INFO): Delete argument eol_type. Change callers.
18268 (decode_coding_utf_8): Don't do eol converion.
18269 (detect_coding_utf_16): Check coding->src_chars, not
18270 coding->src_bytes. Add heuristics for those that have no signature.
18271 (decode_coding_emacs_mule, decode_coding_iso_2022)
18272 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
18273 Don't do eol converion.
18274 (adjust_coding_eol_type): Return a new coding system.
18275 (detect_coding): Don't detect eol. Fix for utf-16 detection.
18276 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
18277 each change.
18278 (decode_coding): Pay attention to undo_list. Do eol conversion for
18279 all types of coding-systems (if necessary).
18280 (Vcode_conversion_work_buf_list): Delete it.
18281 (Vcode_conversion_reused_workbuf): Rename from
18282 Vcode_conversion_reused_work_buf.
18283 (Vcode_conversion_workbuf_name): New variable.
18284 (reused_workbuf_in_use): New variable.
18285 (make_conversion_work_buffer): Delete the arg DEPTH.
18286 (code_conversion_restore): Change argument to cons.
18287 (code_conversion_save): Delete the argument BUFFER. Change callers.
18288 (detect_coding_system): New argument src_chars. Change callers.
18289 Fix for utf-16 detection.
18290 (init_coding_once): Don't use ISO_carriage_return.
18291 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
18292 reused_workbuf_in_use.
18293
18294 2008-02-01 Kenichi Handa <handa@m17n.org>
18295
18296 * keymap.c (store_in_keymap): Pay attention to the case that idx
18297 is a cons specifying a character range.
18298
18299 2008-02-01 Kenichi Handa <handa@m17n.org>
18300
18301 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
18302 HANDLED_RECOMPUTE_PROPS.
18303
18304 * coding.c (Fdefine_coding_system_internal): Fix checking of
18305 ascii compatibility.
18306
18307 2008-02-01 Kenichi Handa <handa@m17n.org>
18308
18309 * charset.c (find_charsets_in_text): Delete unused locale variable.
18310 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
18311
18312 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
18313 Resync charset_list to Vemacs_mule_charset_list.
18314
18315 * keymap.c (store_in_keymap): Pay attention to the case that idx
18316 is a cons specifying a character range.
18317
18318 2008-02-01 Kenichi Handa <handa@m17n.org>
18319
18320 * composite.c (update_compositions): Bind inhibit-read-only, etc
18321 to t before calling remove-list-of-text-properties.
18322
18323 * print.c (print_object): Always print ASCII chars as is.
18324
18325 2008-02-01 Kenichi Handa <handa@m17n.org>
18326
18327 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
18328
18329 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
18330 is a char table.
18331
18332 2008-02-01 Kenichi Handa <handa@m17n.org>
18333
18334 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
18335
18336 2008-02-01 Kenichi Handa <handa@m17n.org>
18337
18338 * xfaces.c (set_lface_from_font_name): Fix for the case that
18339 FONTNAME is not fontset name.
18340
18341 2008-02-01 Kenichi Handa <handa@m17n.org>
18342
18343 * fns.c (base64_encode_1): Fix previous change.
18344
18345 2008-02-01 Kenichi Handa <handa@m17n.org>
18346
18347 * fontset.c (set_fontset_font): New function.
18348 (Fset_fontset_font): If a font is specified for a charset, use
18349 map_charset_chars to store the font spec in a fontset.
18350
18351 2008-02-01 Kenichi Handa <handa@m17n.org>
18352
18353 * fontset.c (fontset_face): Create a fallback fontset on demand.
18354 (make_fontset): Don't create a fallback fontset here.
18355 (free_face_fontset): Free a fallback fontset (if any) too.
18356 (n_auto_fontsets): Delete this variable.
18357 (auto_fontset_alist): New variable.
18358 (new_fontset_from_font_name): Check auto_fontset_alist.
18359 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
18360 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
18361 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
18362 Defsubr Sfontset_list_all.
18363
18364 2008-02-01 Kenichi Handa <handa@m17n.org>
18365
18366 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
18367
18368 2008-02-01 Kenichi Handa <handa@m17n.org>
18369
18370 * fontset.c (Fnew_fontset): Check NAME more rigidly.
18371
18372 2008-02-01 Kenichi Handa <handa@m17n.org>
18373
18374 * editfns.c (Fgoto_char): Fix docstring.
18375
18376 2008-02-01 Kenichi Handa <handa@m17n.org>
18377
18378 * insdel.c (insert_from_gap): Adjust intervals correctly.
18379
18380 2008-02-01 Jason Rumney <jasonr@gnu.org>
18381
18382 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
18383 (pfnGetFontUnicodeRanges): New dynamically loaded function.
18384 (w32_initialize): Try to load it.
18385 (x_get_font_repertory): Use it if available.
18386 (w32_encode_char): Add shortcut for unicode output.
18387
18388 * w32fns.c (w32_load_system_font): Default charset to -1.
18389 (x_to_w32_charset): Match all fonts for unicode.
18390 (w32_to_x_charset): New parameter matching. Don't return partial
18391 or wildcard charsets.
18392 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
18393 (w32_codepage_for_font): Return CP_UNICODE for unicode.
18394 (w32_to_x_font): Match charset to real charset.
18395 (enum_font_cb2): Always list unicode versions.
18396
18397 * makefile.w32-in (temacs): Increase EMHEAP.
18398
18399 2008-02-01 Jason Rumney <jasonr@gnu.org>
18400
18401 * w32term.c (w32_encode_char): New charset parameter.
18402 font_info.encoding becomes encoding_type.
18403 (x_get_font_repertory): New function. Warning: stub only!
18404 (x_new_font): Return quickly if font already set.
18405 (x_new_fontset): fontsetname parameter is Lisp_Object.
18406 Use new fs_query_fontset. Try new_fontset_from_font_name.
18407 Use fontset_name for return value.
18408
18409 * w32term.h: Declare x_get_font_repertory.
18410
18411 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
18412 place of find_charset_in_text. Use encode_coding_object in place
18413 of encode_coding.
18414 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
18415 decode_coding.
18416
18417 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
18418 of x_new_fontset.
18419 (w32_load_system_font): Initialize charset as unicode.
18420 font_info.encoding becomes encoding_type.
18421 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
18422 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
18423 (syms_of_w32fns): Set get_font_repertory_func.
18424
18425 * w32console.c: Include character.h. Use terminal_encode_buffer
18426 from term.c.
18427 (write_glyphs): Use new version of encode_terminal_code. Use
18428 encode_coding_object in place of encode_coding.
18429
18430 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
18431 encoding becomes encoding_type.
18432
18433 * term.c (terminal_encode_buffer): Make externally visible.
18434
18435 * makefile.w32-in: Add character.h dependancies.
18436 (character.o, chartab.o): New targets.
18437
18438 2008-02-01 Kenichi Handa <handa@m17n.org>
18439
18440 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
18441 CODING_ID_EOL_TYPE.
18442
18443 2008-02-01 Andreas Schwab <schwab@suse.de>
18444
18445 * coding.c (produce_chars): Revert last change.
18446
18447 2008-02-01 Kenichi Handa <handa@m17n.org>
18448
18449 * charset.h (charset_unicode): Extern it.
18450
18451 * charset.c (string_xstring_p): Check by (C >= 0x100).
18452 (find_charsets_in_text): Change format of the arc CHARSETS. New
18453 arg MULTIBYTE.
18454 (Ffind_charset_region, Ffind_charset_string): Adjust for the
18455 change of find_charsets_in_text.
18456 (Fsplit_char): Fix doc. Never return unknown.
18457
18458 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
18459
18460 * coding.c (Fdefine_coding_system_alias): Update
18461 Vcoding_system_list.
18462
18463 * fontset.c (load_font_get_repertory): Pay attention to the case
18464 that ENCODING of a font is specified by a char-table.
18465
18466 * xterm.c (x_get_font_repertory): Handle the case that the
18467 encoding of font is other than Unicode.
18468
18469 2008-02-01 Kenichi Handa <handa@m17n.org>
18470
18471 * term.c (encode_terminal_code): Don't handle glyph-table. Check
18472 if a character is encodable by the terminal coding system. If
18473 not, produces proper number of `?'s. Update
18474 terminal_encode_buffer and terminal_encode_buf_size if necessary.
18475 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
18476
18477 2008-02-01 Kenichi Handa <handa@m17n.org>
18478
18479 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
18480 variables.
18481 (encode_terminal_code): Change argument. Encode multiple
18482 characters at once. Store the result of encoding in
18483 terminal_encode_buffer.
18484 (write_glyphs, insert_glyphs): Adjust for the change of
18485 encode_terminal_code.
18486 (term_init): Initialize terminal_encode_buffer and
18487 terminal_encode_buf_size.
18488
18489 * coding.c (consume_chars): If coding->src_object is nil, don't
18490 check annotation.
18491
18492 2008-02-01 Kenichi Handa <handa@m17n.org>
18493
18494 * character.c (char_string): Use ASCII_CHAR_P instead of
18495 SINGLE_BYTE_CHAR_P.
18496
18497 2008-02-01 Kenichi Handa <handa@m17n.org>
18498
18499 * xdisp.c (handle_auto_composed_prop): Check if the last
18500 characters of auto-composed region is newly composed with the
18501 following characters.
18502 (handle_composition_prop): Fix checking of point being inside
18503 composition.
18504
18505 2008-02-01 Kenichi Handa <handa@m17n.org>
18506
18507 * fns.c (concat): Don't change multibyteness of the result by
18508 concatenating an 8-bit character.
18509
18510 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
18511 multibyteness of the result when newelt is an 8-bit character.
18512
18513 2008-02-01 Dave Love <fx@gnu.org>
18514
18515 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
18516 EMACS_INT.
18517
18518 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
18519
18520 * xfaces.c (face_numeric_value): Declare dim size_t.
18521 (Finternal_lisp_face_equal_p): Remove unused f.
18522
18523 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
18524 (MATRIX_ROW): Remove unused vars.
18525 (draw_glyphs, x_insert_glyphs, fast_find_position)
18526 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
18527 byte/char counts.
18528
18529 * regex.c (regex_compile): Remove unused var.
18530
18531 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
18532
18533 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
18534 (Faccessible_keymaps, where_is_internal): Remove unused vars.
18535
18536 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
18537
18538 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
18539
18540 * fileio.c (Fwrite_region): Remove unused var.
18541
18542 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
18543 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
18544
18545 * composite.c (Fremove_list_of_text_properties): Declare.
18546
18547 * coding.c (inhibit_pre_post_conversion): Remove (unused).
18548 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
18549 (coding_inherit_eol_type): Remove unused attrs.
18550 (detect_coding): Cast arg of detect_eol.
18551
18552 * charset.c (syms_of_charset): Remove unused var p.
18553 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
18554 byte/char counts.
18555
18556 * casetab.c (set_case_table): Remove unused var.
18557
18558 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
18559 unused vars.
18560
18561 2008-02-01 Dave Love <fx@gnu.org>
18562
18563 * xterm.c (x_bitmap_mask): Declare.
18564
18565 2008-02-01 Dave Love <fx@gnu.org>
18566
18567 * xterm.c (x_term_init): Fix type error.
18568
18569 * lisp.h: Add Funibyte_char_to_multibyte.
18570
18571 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
18572 (Fset_coding_system_priority): Doc fix.
18573
18574 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
18575
18576 * indent.c (check_composition): Make start and end EMACS_INT.
18577
18578 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
18579
18580 * xdisp.c (handle_composition_prop, check_point_in_composition):
18581 Make buffer positions EMACS_INT.
18582
18583 * composite.c (find_composition, run_composition_function)
18584 (update_compositions, Ffind_composition_internal): Make buffer
18585 positions EMACS_INT.
18586
18587 * composite.h (find_composition, update_compositions): Make
18588 position args EMACS_INT.
18589
18590 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
18591
18592 * intervals.c (get_property_and_range):
18593 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
18594
18595 * unexalpha.c: Don't include varargs.h.
18596
18597 2008-02-01 Dave Love <fx@gnu.org>
18598
18599 * coding.h (ENCODE_UTF_8): New.
18600
18601 * Makefile.in (gtkutil.o): Depend on coding.h.
18602
18603 * coding.c (Fset_coding_system_priority): Doc fix.
18604
18605 2008-02-01 Kenichi Handa <handa@m17n.org>
18606
18607 * fileio.c (Finsert_file_contents): Call setup_coding_system in
18608 the case of auto saving.
18609
18610 2008-02-01 Andreas Schwab <schwab@suse.de>
18611
18612 * chartab.c (map_char_table, map_char_table_for_charset): Protect
18613 `range' from GC.
18614
18615 2008-02-01 Kenichi Handa <handa@m17n.org>
18616
18617 * coding.c (decode_coding_sjis): Check bytes more rigidly.
18618
18619 2008-02-01 Kenichi Handa <handa@m17n.org>
18620
18621 * fileio.c (choose_write_coding_system): Return a decided coding system.
18622 (Fwrite_region): Set Vlast_coding_system_used to the return value
18623 of choose_write_coding_system.
18624
18625 2008-02-01 Kenichi Handa <handa@m17n.org>
18626
18627 * charset.c (Fset_charset_priority): Pay attention to duplicated
18628 arguments.
18629
18630 * coding.c (QCcategory): New variable.
18631 (syms_of_coding): Defsym it. Set all elements of
18632 Vcoding_category_table and their symbol values.
18633 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
18634 coding-category-XXX, and coding-category-list.
18635 (Fdefine_coding_system_internal): Add category in the plist.
18636
18637 2008-02-01 Kenichi Handa <handa@m17n.org>
18638
18639 * callproc.c (Fcall_process): Handle carryover correctly.
18640
18641 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
18642 (raw_text_coding_system): Check NILP (coding_system).
18643 (coding_inherit_eol_type): Check NILP (coding_system) and
18644 NILP (parent).
18645 (consume_chars): Fix for the case of raw-text.
18646
18647 * process.c (read_process_output): Handle carryover correctly.
18648
18649 2008-02-01 Dave Love <fx@gnu.org>
18650
18651 * regex.c (re_search_2): Fix last change.
18652
18653 2008-02-01 Kenichi Handa <handa@m17n.org>
18654
18655 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
18656 target_multibyte. Even in a unibyte case, return a converted
18657 multibyte char.
18658 (GET_CHAR_AFTER): New macro.
18659 (PATFETCH): Translate via multibyte char.
18660 (HANDLE_UNIBYTE_RANGE): Delete this macro.
18661 (SETUP_MULTIBYTE_RANGE): New macro.
18662 (regex_compile): Setup compiled code so that its multibyteness
18663 matches that of a target. Fix the handling of "[X-YZ]" using
18664 SETUP_MULTIBYTE_RANGE.
18665 (analyse_first) <charset>: For filling fastmap for all multibyte
18666 characters, don't check by BASE_LEADING_CODE_P.
18667 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
18668 the same as RE_MULTIBYTE_P (bufp) now.
18669 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
18670 (TARGET_CHAR_AND_LENGTH): Delete this macro.
18671 (TRANSLATE_VIA_MULTIBYTE): New macro.
18672 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
18673 It is the same as RE_MULTIBYTE_P (bufp) now.
18674 <exactn>: Translate via multibyte.
18675 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
18676 translate it.
18677 <charset, charset_not>: Fetch a character by
18678 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
18679 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
18680 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
18681 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
18682 by GET_CHAR_AFTER.
18683 (bcmp_translate): Likewise.
18684
18685 * search.c (compile_pattern): Check the member target_multibyte,
18686 not the member multibyte of buf.
18687
18688 * lread.c (read1): While reading a string, set force_singlebyte
18689 and force_multibyte correctly.
18690
18691 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
18692 up of unibyte_to_multibyte_table.
18693
18694 2008-02-01 Kenichi Handa <handa@m17n.org>
18695
18696 * coding.c (setup_coding_system): If coding has
18697 post-read-conversion or pre-write-conversion, set
18698 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
18699 respectively.
18700 (decode_coding_gap): Run post-read-conversion if any.
18701
18702 * fileio.c (Finsert_file_contents): Even if we read into a
18703 unibyte buffer, check if we must decode the result or not.
18704
18705 2008-02-01 Kenichi Handa <handa@m17n.org>
18706
18707 * coding.c (make_conversion_work_buffer): Change the work buffer
18708 name to the same one as that of Emacs 21.
18709
18710 2008-02-01 Kenichi Handa <handa@m17n.org>
18711
18712 * coding.h (make_conversion_work_buffer): Adjust prototype.
18713 (code_conversion_restore): Don't extern it.
18714
18715 * coding.c (detected_mask): Delete unused variable.
18716 (decode_coding_iso_2022): Pay attention to the byte sequence of
18717 CTEXT extended segment, and retain those bytes as is.
18718 (decode_coding_ccl): Delete unused variable `valids'.
18719 (setup_coding_system): Delete unused variable `category'.
18720 (consume_chars): Delete unused variable `category'. Make it work
18721 for non-multibyte case.
18722 (make_conversion_work_buffer): Change argument.
18723 (saved_coding): Delete unused variable.
18724 (code_conversion_restore): Don't check saved_coding->destination.
18725 (code_conversion_save): New function.
18726 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
18727 instead of record_unwind_protect.
18728 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
18729 (detect_coding_system): Delete unused variable `mask'.
18730 (Fdefine_coding_system_internal): Delete unused variable id.
18731
18732 * fileio.c (kill_workbuf_unwind): New function.
18733 (Finsert_file_contents): On replacing, call
18734 make_conversion_work_buffer with correct args, and call
18735 record_unwind_protect with the first arg kill_workbuf_unwind.
18736
18737 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
18738
18739 2008-02-01 Kenichi Handa <handa@m17n.org>
18740
18741 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
18742 (fontset_add): Fix for the case that TO is less than TO1.
18743 (Ffontset_info): Don't use fallback fontset on checking the
18744 default fontset.
18745 (dump_fontset): New function for debugging.
18746
18747 * coding.c (Fdefine_coding_system_internal): Fix for the case that
18748 coding_type is Qcharset.
18749
18750 2008-02-01 Kenichi Handa <handa@m17n.org>
18751
18752 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
18753 (map_char_table): Don't inherit the value from the parent on
18754 initializing VAL. Adjust for the above change.
18755
18756 2008-02-01 Kenichi Handa <handa@m17n.org>
18757
18758 * coding.c (Qsignature, Qendian): Delete these variables.
18759 (syms_of_coding): Don't initialize them.
18760 (CATEGORY_MASK_UTF_16_AUTO): New macro.
18761 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
18762 detect_info->found.
18763 (decode_coding_utf_16): Don't detect BOM here.
18764 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
18765 is NOT utf_16_without_bom.
18766 (setup_coding_system): For a coding system of type utf-16, check
18767 if the attribute :endian is Qbig or not (not nil or not), and set
18768 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
18769 (detect_coding): If coding type is utf-16 and BOM detection is
18770 required, detect it.
18771 (Fdefine_coding_system_internal): For a coding system of type
18772 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
18773
18774 2008-02-01 Kenichi Handa <handa@m17n.org>
18775
18776 * coding.c (coding_set_source): Fix for the case that the current
18777 buffer is different from coding->src_object.
18778 (decode_coding_object): Don't use the conversion work buffer if
18779 DST_OBJECT is a buffer.
18780
18781 2008-02-01 Dave Love <fx@gnu.org>
18782
18783 * lread.c (read_emacs_mule_char) [len==2]: Index
18784 emacs_mule_charset correctly.
18785
18786 2008-02-01 Dave Love <fx@gnu.org>
18787
18788 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
18789 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
18790 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
18791 treated specially.)
18792 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
18793 (detected_mask): Remove Big5 bits.
18794
18795 2008-02-01 Kenichi Handa <handa@m17n.org>
18796
18797 The following changes are to make the font rescaling facility
18798 compatible with Emacs 21.
18799
18800 * xfaces.c (Vface_font_rescale_alist): Rename from
18801 Vface_resizing_fonts.
18802 (struct font_name): Rename member resizing_ratio to rescale_ratio.
18803 (font_rescale_ratio): Rename from font_resizing_ratio.
18804 (split_font_name): Set font->rescale_ratio.
18805 (better_font_p): Pay attention to font->rescale_ratio.
18806 (build_scalable_font_name): Likewise. Change RESX, and RESY
18807 fields.
18808 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
18809
18810 2008-02-01 Kenichi Handa <handa@m17n.org>
18811
18812 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
18813 (Qutf_16_le): Remove these variables.
18814 (syms_of_coding): Don't DEFSYM them.
18815 (decode_coding_utf_16): Fix handling of BOM.
18816 (encode_coding_utf_16): Fix handling of BOM.
18817
18818 2008-02-01 Kenichi Handa <handa@m17n.org>
18819
18820 * fileio.c (Finsert_file_contents): On replacing, before decoding
18821 the file into the work buffer, set point of the work buffer to the end.
18822
18823 2008-02-01 Dave Love <fx@gnu.org>
18824
18825 * coding.c (Fcheck_coding_systems_region): Fix type errors.
18826
18827 2008-02-01 Dave Love <fx@gnu.org>
18828
18829 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
18830 and fix C types.
18831
18832 2008-02-01 Kenichi Handa <handa@m17n.org>
18833
18834 * xdisp.c (SKIP_GLYPHS): New macro.
18835 (set_cursor_from_row): Pay attention to string display properties.
18836
18837 * category.c (copy_category_entry): Fix for the case that RANGE
18838 is an integer.
18839
18840 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
18841
18842 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
18843
18844 2008-02-01 Kenichi Handa <handa@m17n.org>
18845
18846 * charset.c (Fcharset_id_internal): New function.
18847 (syms_of_charset): Defsubr it.
18848
18849 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
18850 with the last arg charset_list acquired from coding.
18851 (Fdefine_coding_system_internal): For ccl-based coding system, fix
18852 the attribute coding_attr_ccl_valids.
18853
18854 * coding.h (enum define_coding_ccl_arg_index): Set the first
18855 member coding_arg_ccl_decoder to coding_arg_max.
18856
18857 * ccl.h (ccl_driver): Adjust prototype.
18858
18859 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
18860 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
18861 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
18862 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
18863 last arg Qnil.
18864
18865 2008-02-01 Kenichi Handa <handa@m17n.org>
18866
18867 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
18868 call encode_char.
18869
18870 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
18871
18872 2008-02-01 Dave Love <fx@gnu.org>
18873
18874 * composite.c (syms_of_composite): Make composition_hash_table weak.
18875
18876 2008-02-01 Kenichi Handa <handa@m17n.org>
18877
18878 * dispextern.h (check_face_attributes, generate_ascii_font_name)
18879 (font_name_registry): Don't extern them.
18880 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
18881
18882 * fontset.h (Qfontset): Don't extern it.
18883 (new_fontset_from_font_name): Extern it.
18884
18885 * fontset.c: Give 8 extra slots to fontset objects.
18886 (Qfontset_info): New variable.
18887 (syms_of_fontset): Defsym it.
18888 (FONTSET_FALLBACK): New macro.
18889 (fontset_face): Try also the default fontset.
18890 (make_fontset): Realize a fallback fontset from the default fontset.
18891 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
18892 using split_font_name_into_vector and build_font_name_from_vector.
18893 (Fset_fontset_font): Access the elements of font_spec by enum
18894 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
18895 name by using split_font_name_into_vector.
18896 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
18897 generate a proper font name from the fontset name. Update
18898 Vfontset_alias_alist.
18899 (n_auto_fontsets): New variable.
18900 (new_fontset_from_font_name): New function.
18901 (Ffont_info): Store the information about fonts generated from the
18902 default fontset in the first extra slot of the returned char-table.
18903
18904 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
18905 (font_name_registry): Delete function.
18906 (split_font_name_into_vector): New function.
18907 (build_font_name_from_vector): New function.
18908 (font_list): The argument REGISTRY is now a list of registry names.
18909 (choose_face_font): If we are choosing an ASCII font, and ATTRS
18910 specifies an explicit font name, return the name as is. Make a
18911 list of registy names.
18912
18913 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
18914 of x_new_fontset.
18915 (Fx_create_frame): Don't call x_new_fontset here. Just use
18916 x_list_fonts to check the existence of fonts.
18917
18918 * xterm.h (x_new_fontset): Adjust prototype.
18919
18920 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
18921 string. Use new_fontset_from_font_name to create a fontset from a
18922 font name.
18923
18924 2008-02-01 Kenichi Handa <handa@m17n.org>
18925
18926 * syntax.c (Vfind_word_boundary_function_table): New name for
18927 Vnext_word_boundary_function_table.
18928 (find-word-boundary-function-table): New name for
18929 next-word-boundary-function-table.
18930
18931 2008-02-01 Dave Love <fx@gnu.org>
18932
18933 * Makefile.in: Fix some dependencies.
18934
18935 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
18936 set it to nil before returning.
18937
18938 * composite.c (update_compositions): Fix type error.
18939
18940 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
18941
18942 2008-02-01 Kenichi Handa <handa@m17n.org>
18943
18944 * xterm.c (x_new_font): Optimize for the case that the font is
18945 already set for the frame.
18946
18947 2008-02-01 Kenichi Handa <handa@m17n.org>
18948
18949 * chartab.c (char_table_ascii): Check if the char table contents
18950 is sub-char-table or not.
18951 (char_table_set, char_table_set_range): Fix argument to
18952 char_table_ascii.
18953
18954 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
18955 (detect_coding_utf_8, detect_coding_utf_16)
18956 (detect_coding_emacs_mule, detect_coding_iso_2022)
18957 (detect_coding_sjis, detect_coding_big5)
18958 (detect_coding_ccl, detect_coding_charset): Change argument MASK
18959 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
18960 sequence is valid in this coding system. Change callers.
18961 (MAX_ANNOTATION_LENGTH): New macro.
18962 (ADD_ANNOTATION_DATA): New macro.
18963 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
18964 ADD_ANNOTATION_DATA. Change the format of annotation data.
18965 (ADD_CHARSET_DATA): New macro.
18966 (emacs_mule_char): New argument ID. Change callers.
18967 (decode_coding_emacs_mule, decode_coding_iso_2022)
18968 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
18969 Produce charset annotation data in coding->charbuf.
18970 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
18971 to charset annotation data in coding->charbuf.
18972 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
18973 coding->common_flags if the coding system is iso-2022 based and
18974 uses designation.
18975 (produce_composition): Adjust for the new annotation data format.
18976 (produce_charset): New function.
18977 (produce_annotation): Handle charset annotation.
18978 (handle_composition_annotation, handle_charset_annotation): New
18979 functions.
18980 (consume_chars): Handle charset annotation. Utilize the above two
18981 functions.
18982 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
18983 buffer, get the deleted text as a string and set
18984 coding->src_object to that string.
18985 (detect_coding, detect_coding_system): Use the new struct
18986 coding_detection_info.
18987
18988 * coding.h (struct coding_detection_info): New structure.
18989 (struct coding_system): Adjust prototype of the member `detector'.
18990 (CODING_ANNOTATE_CHARSET_MASK): New macro.
18991
18992 2008-02-01 Kenichi Handa <handa@m17n.org>
18993
18994 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
18995
18996 2008-02-01 Dave Love <fx@gnu.org>
18997
18998 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
18999 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
19000 to new local and nullify apropos_accumulate before returning.
19001 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
19002
19003 2008-02-01 Kenichi Handa <handa@m17n.org>
19004
19005 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
19006 correctly.
19007
19008 2008-02-01 Dave Love <fx@gnu.org>
19009
19010 * fns.c (Flanginfo): Call synchronize_system_time_locale.
19011
19012 2008-02-01 Kenichi Handa <handa@m17n.org>
19013
19014 The following changes are to make character composition happen
19015 automatically on displaying.
19016
19017 * Makefile.in (lisp, shortlisp): Add composite.elc.
19018
19019 * composite.h (Qauto_composed, Vauto_composition_function)
19020 (Qauto_composition_function): Extern them.
19021
19022 * composite.c (Vcomposition_function_table)
19023 (Qcomposition_function_table): Delete variables.
19024 (Qauto_composed, Vauto_composition_function)
19025 (Qauto_composition_function): New variables.
19026 (run_composition_function): Don't call
19027 compose-chars-after-function.
19028 (update_compositions): Clear `auto-composed' text property.
19029 (compose_chars_in_text): Delete this function.
19030 (syms_of_composite): Staticpro Qauto_composed and
19031 Qauto_composition_function. Declare Vauto_composition_function as
19032 a Lisp variable.
19033
19034 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
19035
19036 * xdisp.c (it_props): Add an entry for Qauto_composed.
19037 (handle_auto_composed_prop): New function.
19038
19039 * xselect.c (selection_data_to_lisp_data): Don't call
19040 compose_chars_in_text.
19041
19042 2008-02-01 Dave Love <fx@gnu.org>
19043
19044 * keyboard.c (read_char): Modify checking around use of
19045 Vkeyboard_translate_table.
19046
19047 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
19048 and fix C types.
19049
19050 2008-02-01 Kenichi Handa <handa@m17n.org>
19051
19052 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
19053 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
19054 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
19055 the case that the last byte is '\r' correctly.
19056 (decode_coding): Flush out the unprocessed data correctly.
19057 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
19058
19059 2008-02-01 Dave Love <fx@gnu.org>
19060
19061 * xterm.c (XTread_socket): Fix changes for defined keysyms.
19062 Add XK_ISO... case.
19063 (xaw_scroll_callback): Revert last change.
19064
19065 2008-02-01 Kenichi Handa <handa@m17n.org>
19066
19067 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
19068
19069 2008-02-01 Kenichi Handa <handa@m17n.org>
19070
19071 * xfaces.c (Vface_resizing_fonts): New variable.
19072 (struct font_name): New member `resizing_ratio'.
19073 (font_resizing_ratio): New function.
19074 (split_font_name): Set font->resizing_ratio.
19075 (better_font_p): Pay attention to font->resizing_ratio.
19076 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
19077 RESX, and RESY fields.
19078 (try_alternative_families): Try scalable fonts if
19079 Vscalable_fonts_allowed is not Qt.
19080 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
19081
19082 2008-02-01 Dave Love <fx@gnu.org>
19083
19084 * xterm.c (xaw_scroll_callback): Cast correctly.
19085
19086 2008-02-01 Dave Love <fx@gnu.org>
19087
19088 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
19089 (lispy_kana_keys): Comment out.
19090 (make_lispy_event) [XK_kana_A]: Comment out.
19091
19092 * xterm.c (xaw_scroll_callback): Cast call_data.
19093 (XTread_socket): Deal with ASCII keysyms.
19094 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
19095
19096 2008-02-01 Dave Love <fx@gnu.org>
19097
19098 * xterm.c (Vx_keysym_table): New.
19099 (syms_of_xterm): Initialize it.
19100 (XTread_socket): Use it.
19101 From head: Eliminate incorrect optimization that tried to avoid
19102 decoding the output of X*LookupString.
19103 (x_get_font_repertory): Delete charset declaration.
19104
19105 2008-02-01 Kenichi Handa <handa@m17n.org>
19106
19107 * coding.c (detect_coding_charset): If only ASCII bytes are found,
19108 return 0.
19109 (Fdefine_coding_system_internal): Setup
19110 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
19111
19112 2008-02-01 Dave Love <fx@gnu.org>
19113
19114 * coding.c (Fcheck_coding_system): Doc fix.
19115
19116 * editfns.c (Finsert_byte): Return a proper value.
19117
19118 2008-02-01 Kenichi Handa <handa@m17n.org>
19119
19120 * coding.c (decode_coding): Fix args to translate_chars. Pay
19121 attention to Vstandard_translation_table_for_decode.
19122 (encode_coding): Fix args to translate_chars. Pay attention to
19123 Vstandard_translation_table_for_encode.
19124
19125 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
19126 SINGLE_BYTE_CHAR_P.
19127
19128 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
19129 not by SINGLE_BYTE_CHAR_P.
19130
19131 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
19132 SINGLE_BYTE_CHAR_P.
19133
19134 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
19135 SINGLE_BYTE_CHAR_P.
19136
19137 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
19138 by SINGLE_BYTE_CHAR_P.
19139
19140 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
19141 SINGLE_BYTE_CHAR_P.
19142
19143 2008-02-01 Dave Love <fx@gnu.org>
19144
19145 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
19146
19147 2008-02-01 Dave Love <fx@gnu.org>
19148
19149 * fns.c (Flanginfo): Fix typo.
19150
19151 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
19152
19153 2008-02-01 Kenichi Handa <handa@m17n.org>
19154
19155 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
19156 (detect_coding_emacs_mule, detect_coding_iso_2022)
19157 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
19158 incomplete byte sequence. Don't update *mask when correctly detected.
19159 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
19160 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
19161 (detect_coding, detect_coding_system): Adjust for the changes above.
19162
19163 2008-02-01 Kenichi Handa <handa@m17n.org>
19164
19165 * character.c (char_string): Rename from
19166 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
19167 (string_char): Rename from string_char.
19168
19169 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
19170 if C is greater than MAX_3_BYTE_CHAR.
19171 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
19172 string_char instead of string_char_with_unification.
19173
19174 2008-02-01 Dave Love <fx@gnu.org>
19175
19176 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
19177
19178 2008-02-01 Kenichi Handa <handa@m17n.org>
19179
19180 * keymap.c (push_key_description): Pay attention to force_multibyte.
19181
19182 * regex.c (re_search_2): Fix for the case of unibyte buffer.
19183
19184 2008-02-01 Dave Love <fx@gnu.org>
19185
19186 * charset.c (define_charset_internal): Rename `supprementary'.
19187
19188 * Makefile.in (lisp, shortlisp): Remove latin-N.
19189
19190 2008-02-01 Dave Love <fx@gnu.org>
19191
19192 * xfns.c (x_window, x_window): Use use_xim.
19193
19194 * xterm.c (use_xim): Initialize.
19195 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
19196 (x_term_init): Maybe set use_xim.
19197
19198 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
19199
19200 2008-02-01 Kenichi Handa <handa@m17n.org>
19201
19202 * search.c (search_buffer): Fix case-fold-search of multibyte
19203 characters.
19204 (boyer_moore): Rename the last argument to char_high_bits.
19205
19206 2008-02-01 Kenichi Handa <handa@m17n.org>
19207
19208 * xdisp.c (display_string): Fix for the case of zero width glyph.
19209
19210 * xfns.c (x_set_font): Change the error message of the case that
19211 x_new_fontset returns Qt.
19212
19213 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
19214 (Finternal_set_lisp_face_attribute): Use signal_error for the
19215 error of invalid fontset.
19216
19217 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
19218 fontset, return Qt.
19219
19220 2008-02-01 Dave Love <fx@gnu.org>
19221
19222 * unexelf.c (unexec): Make .got handling not SGI-specific.
19223
19224 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
19225
19226 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
19227
19228 * keyboard.c (read_key_sequence): Fix type error.
19229
19230 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
19231 type error.
19232
19233 * fontset.c (fontset_add): Return Lisp_Object.
19234
19235 2008-02-01 Dave Love <fx@gnu.org>
19236
19237 * charset.h (charset_ordered_list_tick): Declare extern.
19238
19239 2008-02-01 Kenichi Handa <handa@m17n.org>
19240
19241 The following changes (and some of 2008-02-01 changes of mine) are
19242 for handling syntax, category, and case conversion for unibyte
19243 characters by converting them to multibyte on the fly. With these
19244 changes, we don't have to setup syntax and case tables for unibyte
19245 characters in each language environment.
19246
19247 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
19248 multibyte if necessary.
19249
19250 * bytecode.c (Fbyte_code): Likewise.
19251
19252 * character.h (LEADING_CODE_LATIN_1_MIN)
19253 (LEADING_CODE_LATIN_1_MAX): New macros.
19254 (unibyte_to_multibyte_table): Extern it.
19255 (unibyte_char_to_multibyte): New macro.
19256 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
19257 (CHAR_LEADING_CODE): New macro.
19258 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
19259
19260 * character.c (unibyte_to_multibyte_table): New variable.
19261 (unibyte_char_to_multibyte): Move to character.h and define as macro.
19262 (multibyte_char_to_unibyte): If C is an eight-bit character,
19263 convert it to the corresponding byte value.
19264
19265 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
19266 not 1, signals an error. Update the elements of
19267 unibyte_to_multibyte_table.
19268 (init_charset_once): Initialize unibyte_to_multibyte_table.
19269 (syms_of_charset): Define the charset `iso-8859-1'.
19270
19271 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
19272 as is without converting it to unibyte. In a unibyte buffer,
19273 convert C to multibyte before checking the syntax.
19274
19275 * lisp.h (unibyte_char_to_multibyte): Delete extern.
19276
19277 * minibuf.c (Fminibuffer_complete_word): Use the macro
19278 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
19279
19280 * regex.h (struct re_pattern_buffer): New member target_multibyte.
19281
19282 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
19283 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
19284 that is zero, convert an eight-bit char to multibyte.
19285 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
19286 non-emacs case.
19287 (PATFETCH): Convert an eight-bit char to multibyte.
19288 (HANDLE_UNIBYTE_RANGE): New macro.
19289 (regex_compile): Setup the compiled pattern for multibyte chars
19290 even if the given regex string is unibyte. Use PATFETCH_RAW
19291 instead of PATFETCH in many places. To handle `charset'
19292 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
19293 only for ASCII chars.
19294 (analyse_first) <exactn>: Simplify because the compiled pattern
19295 is multibyte.
19296 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
19297 <charset>: Use CHAR_LEADING_CODE to get leading codes.
19298 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
19299 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
19300 multibyte always 1.
19301 (re_search_2): In emacs, set the locale variable multibyte to 1,
19302 otherwise to 0. New local variable target_multibyte. Check it
19303 to decide the multibyteness of STR1 and STR2. If
19304 target_multibyte is zero, convert unibyte chars to multibyte
19305 before translating and checking fastmap.
19306 (TARGET_CHAR_AND_LENGTH): New macro.
19307 (re_match_2_internal): In emacs, set the locale variable multibyte
19308 to 1, otherwise to 0. New local variable target_multibyte. Check
19309 it to decide the multibyteness of STR1 and STR2. Use
19310 TARGET_CHAR_AND_LENGTH to fetch a character from D.
19311 <charset, charset_not>: If multibyte is nonzero, check fastmap
19312 only for ASCII chars. Call bcmp_translate with
19313 target_multibyte, not with multibyte.
19314 <begline>: Declare the local variable C as `unsigned'.
19315 (bcmp_translate): Change the last arg name to target_multibyte.
19316
19317 * search.c (compile_pattern_1): Don't adjust the multibyteness of
19318 the regexp pattern and the matching target. Set cp->buf.multibyte
19319 to the multibyteness of the regexp pattern. Set
19320 cp->but.target_multibyte to the multibyteness of the matching target.
19321 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
19322 FETCH_STRING_CHAR_ADVANCE.
19323 (Freplace_match): Convert unibyte chars to multibyte.
19324
19325 * syntax.c (char_quoted, back_comment, scan_words)
19326 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
19327 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
19328 unibyte chars to multibyte.
19329 (skip_chars): Delete the arg syntaxp, and move the code for
19330 handling syntaxes to skip_syntaxes. Change callers.
19331 Fix the case that the multibyteness of STRING and the current
19332 buffer doesn't match.
19333 (skip_syntaxes): New function.
19334 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
19335 SINGLE_BYTE_CHAR_P.
19336
19337 2008-02-01 Kenichi Handa <handa@m17n.org>
19338
19339 * xfaces.c (QCfontset): New variable.
19340 (LFACE_FONTSET): New macro.
19341 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
19342 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
19343 (Finternal_set_lisp_face_attribute)
19344 (Finternal_get_lisp_face_attribute): Handle QCfontset.
19345 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
19346 check also LFACE_FONTSET_INDEX.
19347 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
19348 attrs[LFACE_FONT_INDEX].
19349 (syms_of_xfaces): Intern and staticpro QCfontset.
19350
19351 * dispextern.h (enum lface_attribute_index): New member
19352 LFACE_FONTSET_INDEX.
19353
19354 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
19355
19356 2008-02-01 Kenichi Handa <handa@m17n.org>
19357
19358 * coding.c (coding_set_destination): Fix coding->destination for
19359 the case converting a region.
19360 (encode_coding_utf_8): Encode eight-bit chars as single byte.
19361 (encode_coding_object): Fix coding->dst_pos and
19362 coding->dst_pos_byte for the case converting a region.
19363
19364 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
19365
19366 * character.h (BYTE8_STRING): New macro.
19367
19368 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
19369
19370 2008-02-01 Kenichi Handa <handa@m17n.org>
19371
19372 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
19373 characters by octal form.
19374
19375 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
19376
19377 * buffer.h (_fetch_multibyte_char_len): Delete extern.
19378 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
19379 _fetch_multibyte_char_len.
19380 (FETCH_CHAR_AS_MULTIBYTE): New macro.
19381
19382 * casetab.c (set_canon, set_identity, shuffle): Simplify.
19383
19384 * casefiddle.c (casify_object): Simplify. Handle the case that
19385 the case conversion change the byte length.
19386 (casify_region): Likewise.
19387
19388 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
19389
19390 * character.c (_fetch_multibyte_char_len): Delete this variable.
19391 (syms_of_character): Setup Vprintable_chars.
19392
19393 * editfns.c (Fchar_equal): Fix for the unibyte case.
19394 (Finsert_byte): New function.
19395 (syms_of_editfns): Defsubr it.
19396
19397 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
19398 of direct code 0x3ffff.
19399
19400 * search.c (Freplace_match): Fix for the unibyte case.
19401
19402 2008-02-01 Kenichi Handa <handa@m17n.org>
19403
19404 * lread.c (safe_to_load_p): Fix the logic.
19405
19406 * syntax.c (scan_words): Don't treat characters belonging to
19407 different scripts as constituting a word.
19408
19409 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
19410
19411 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
19412
19413 * emacs.c (main): In the case of --unibyte, instead of aborting on
19414 finding non-empty buffer, make it unibyte.
19415
19416 2008-02-01 Kenichi Handa <handa@m17n.org>
19417
19418 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
19419 to create a fontset.
19420
19421 2008-02-01 Dave Love <fx@gnu.org>
19422
19423 * character.c (Funibyte_char_to_multibyte): Doc fix.
19424
19425 * xfns.c [HAVE_STDLIB_H]: Fix last change.
19426
19427 2008-02-01 Kenichi Handa <handa@m17n.org>
19428
19429 * fontset.c (fontset_add): Make the type `int'.
19430 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
19431
19432 * character.c (unibyte_char_to_multibyte)
19433 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
19434 charset_unibyte, not charset_primary.
19435
19436 * charset.h (charset_unibyte): Extern it instead of charset_primary.
19437
19438 * charset.c (charset_unibyte): Rename from charset_primary.
19439 (Funibyte_charset): Rename from Fprimary_charset.
19440 (Fset_unibyte_charset): Rename from Fset_primary_charset.
19441 (syms_of_charset): Adjust for the above changes.
19442
19443 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
19444 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
19445 it->multibyte_p is zero.
19446
19447 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
19448 Delete extern.
19449
19450 2008-02-01 Kenichi Handa <handa@m17n.org>
19451
19452 * coding.c (Fdefine_coding_system_internal): Fix category setting
19453 for a coding system of type iso-2022.
19454
19455 2008-02-01 Kenichi Handa <handa@m17n.org>
19456
19457 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
19458
19459 2008-02-01 Kenichi Handa <handa@m17n.org>
19460
19461 * syntax.c (Vnext_word_boundary_function_table): New variable.
19462 (next-word-boundary-function-table): Declare it as a Lisp variable
19463 in syms_of_syntax.
19464 (scan_words): Call functions in Vnext_word_boundary_function_table
19465 if any.
19466
19467 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
19468
19469 * fontset.c (fs_load_font): If fontp->charset is not negative,
19470 return fontp without setting its members.
19471
19472 2008-02-01 Dave Love <fx@gnu.org>
19473
19474 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
19475
19476 * m/sparc.h (HAVE_ALLOCA): Delete.
19477
19478 * s/irix6-5.h: Don't include strings.h.
19479 (bcopy, bzero, bcmp): Don't undef.
19480
19481 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
19482
19483 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
19484 (TIOCSIGSEND): Don't test IRIX6.
19485 (bcopy, bzero, bcmp): Define conditionally.
19486
19487 2008-02-01 Kenichi Handa <handa@m17n.org>
19488
19489 * buffer.c (Qas, Qmake, Qto): New variables.
19490 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
19491 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
19492
19493 * callproc.c (Fcall_process): Don't call insert_1_both directly if
19494 we are inserting a process output into a multibyte buffer.
19495
19496 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
19497 multibyte_char_to_unibyte.
19498
19499 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
19500 by the primary charset, make it eight-bit char.
19501 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
19502
19503 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
19504 (charset_8_bit__control, charset_8_bit_graphic)
19505 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
19506 (define_charset_internal): New function.
19507 (syms_of_charset): Call define_charset_internal for pre-defined
19508 charsets.
19509
19510 * charset.h (charset_8_bit): Extern it.
19511
19512 * coding.c (make_conversion_work_buffer): Adjust for the change
19513 of Fset_buffer_multibyte.
19514 (encode_coding_raw_text): Increment p0 in the loop.
19515
19516 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
19517
19518 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
19519 for the change of Fset_buffer_multibyte.
19520
19521 * fns.c (Fstring_to_multibyte): New function.
19522 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
19523
19524 2008-02-01 Dave Love <fx@gnu.org>
19525
19526 * xfns.c (x_put_x_image): Declare args.
19527
19528 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
19529 (try_font_list): Declare an arg.
19530
19531 * xdisp.c (message2_nolog, set_message): Declare an arg.
19532
19533 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
19534
19535 * syntax.c (scan_sexps_forward): Declare an arg.
19536
19537 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
19538 Declare an arg.
19539
19540 * lisp.h (Fnew_fontset): Declare.
19541
19542 * keymap.c (push_key_description): Call CHARACTERP correctly.
19543
19544 * fontset.c (fontset_add): Declare args. Call make_number correctly.
19545 (face_for_char): Delete unused vars.
19546 (Fset_fontset_font): Doc fix. Delete unused vars.
19547
19548 * doc.c (Fsubstitute_command_keys): Delete unused vars.
19549
19550 * composite.c (update_compositions): Declare arg.
19551
19552 * cm.c (calccost, cmgoto): Declare args.
19553
19554 * charset.c: Remove `emacs' conditional. Doc fixes.
19555 (map_char_table_for_charset): Declare.
19556
19557 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
19558
19559 * ccl.c: Remove `emacs' conditional.
19560
19561 2008-02-01 Kenichi Handa <handa@m17n.org>
19562
19563 The following changes are to allow specifying multiple font
19564 patterns for a character range (specified by script or charset).
19565
19566 * Makefile.in (abbrev.o): Depend on syntax.h.
19567 (xfaces.o): Depend on charset.h.
19568
19569 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
19570 SINGLE_BYTE_CHAR_P.
19571
19572 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
19573
19574 * character.h (Vchar_script_table): Extern it.
19575
19576 * character.c (Vscript_alist): Delete.
19577 (Vchar_script_table, Qchar_script_table): New variable.
19578 (syms_of_character): Declare Vchar_script_table as a lisp variable
19579 and initialize it.
19580
19581 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
19582 have property char-table-extra-slots, make no extra slot.
19583
19584 * dispextern.h (struct face): Delete member `charset'.
19585 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
19586 SINGLE_BYTE_CHAR_P.
19587 (choose_face_font, lookup_non_ascii_face, font_name_registry):
19588 Add prototypes.
19589 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
19590 (generate_ascii_font_name): Rename from generate_ascii_font.
19591
19592 * fontset.h (get_font_repertory_func): New prototype.
19593 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
19594 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
19595
19596 * fontset.c (Qprepend, Qappend): New variables.
19597 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
19598 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
19599 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
19600 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
19601 (fontset_ref_and_range, fontset_add, reorder_font_vector)
19602 (load_font_get_repertory): New functions.
19603 (fontset_set): Delete.
19604 (fontset_face): New arg FACE. Return face ID, not face.
19605 Complete re-write to handle new fontset structure. Change caller.
19606 (free_face_fontset): Use ASET istead of AREF (X) = Y.
19607 (face_for_char): Don't call lookup_face.
19608 (make_fontset_for_ascii_face): New arg FACE.
19609 (fs_load_font): New arg CHARSET_ID. Don't check
19610 Vfont_encoding_alist here.
19611 (find_font_encoding): New function.
19612 (list_fontsets): Use STRINGP, not ! NILP.
19613 (accumulate_script_ranges): New function.
19614 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
19615 re-written to handle new fontset structure.
19616 (Ffontset_font): Return a copy of element.
19617 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
19618 docstring of font-encoding-alist.
19619
19620 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
19621 (Fset_fotset_font): Fix arguments to 5.
19622
19623 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
19624
19625 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
19626 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
19627 (highlight_trailing_whitespace): Adjust for the change of
19628 lookup_named_face.
19629
19630 * xfaces.c: Include charset.h.
19631 (load_face_font): Delete argument C. Change caller.
19632 (generate_ascii_font_name): Rename from generate_ascii_font.
19633 (font_name_registry): New function.
19634 (cache_face): Store ascii faces before non-ascii faces in buckets.
19635 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
19636 Lookup only ascii faces.
19637 (lookup_non_ascii_face): New function.
19638 (lookup_named_face): Delete argument C. Change caller.
19639 (lookup_derived_face): Delete argument C. Change caller.
19640 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
19641 a string, just call font_list with it.
19642 (choose_face_font): Delete arguments FACE and C. New arg
19643 FONT_SPEC. Change caller.
19644 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
19645 Change caller.
19646 (realize_non_ascii_face): New function.
19647 (realize_x_face): Call load_face_font here.
19648 (realize_tty_face): Delete argument C. Change caller.
19649 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
19650 get a face ID.
19651 (dump_realized_face): Don't print charset of FACE.
19652
19653 * xfns.c (x_set_font): Always call x_new_fontset and
19654 store_frame_parameter.
19655 (Fx_create_frame): Call x_new_fontset, not x_new_font.
19656 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
19657
19658 * xterm.h (x_get_font_repertory): Extern it.
19659
19660 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
19661 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
19662 it->multibyte_p is zero.
19663 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
19664 (x_new_fontset): If FONTSETNAME doesn't match any existing
19665 fontsets, create a new one.
19666 (x_get_font_repertory): New function.
19667
19668 2008-02-01 Kenichi Handa <handa@m17n.org>
19669
19670 * coding.c (Ffind_coding_systems_region_internal): Detect an
19671 ASCII only string correctly.
19672
19673 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
19674 version is 0.
19675
19676 2008-02-01 Kenichi Handa <handa@m17n.org>
19677
19678 * lread.c: Include "coding.h".
19679 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
19680 (load_each_byte, unread_char): New variables.
19681 (readchar_backlog): Delete.
19682 (readchar): Return a character unless load_each_byte is nonzero.
19683 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
19684 cons. If unread_char is not -1, simply return it.
19685 (unreadchar): Handle the case that readcharfun is
19686 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
19687 (read_multibyte): Delete.
19688 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
19689 (read_emacs_mule_char): New functions.
19690 (Fload): Even if the file doesn't have the extension ".elc", if
19691 safe_to_load_p returns a positive version number, assume that the
19692 file contains bytecompiled code. If the version is less than 22,
19693 load the file while decoding multibyte sequences by emacs-mule.
19694 (readevalloop): Don't use readchar_backlog.
19695 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
19696 (Fread_from_string): Pay attention to the case that STREAM is a cons.
19697 (read_escape): Delete the arg BYTEREP.
19698 (read1): Set load_each_byte to 1 temporarily while handling
19699 #@NUMBER. Don't call read_multibyte.
19700 (read_vector): Call Fread with a cons. If readcharfun is
19701 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
19702 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
19703 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
19704 and Qload_force_doc_strings.
19705
19706 2008-02-01 Kenichi Handa <handa@m17n.org>
19707
19708 * xdisp.c (face_before_or_after_it_pos): Call
19709 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
19710
19711 2008-02-01 Kenichi Handa <handa@m17n.org>
19712
19713 * character.h (TRAILING_CODE_P): New macro.
19714 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
19715 (string_char_with_unification): Fix prototype.
19716 (Vscript_alist): Extern it.
19717
19718 * character.c (Vscript_alist): New variable.
19719 (string_char_with_unification, str_as_unibyte)
19720 (string_escape_byte8): Add `const' to local variables.
19721 (syms_of_character): Declare script-alist as a Lisp variable.
19722
19723 * charset.h (Vcharset_ordered_list): Extern it.
19724 (charset_ordered_list_tick): Extern it.
19725 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
19726 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
19727 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
19728 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
19729 (Funify_charset): Adjust for the change of Funify_charset.
19730
19731 * charset.c (charset_ordered_list_tick): New variable.
19732 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
19733 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
19734 deunify intead of unify a charset.
19735 (string_xstring_p): Add `const' to local variables.
19736 (find_charsets_in_text): Add `const' to arguments and local variables.
19737 (encode_char): Adjust for the change of Funify_charset. Fix
19738 detecting of invalid code.
19739 (Fset_charset_priority): Increment charset_ordered_list_tick.
19740 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
19741 and TO_CODE.
19742
19743 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
19744 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
19745 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
19746 (decode_coding_ccl, consume_chars)
19747 (Ffind_coding_systems_region_internal)
19748 (Fcheck_coding_systems_region): Add `const' to local variables.
19749
19750 * print.c (print_object): Use octal form for printing the
19751 contents of a bool vector.
19752
19753 2008-02-01 Dave Love <fx@gnu.org>
19754
19755 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
19756 <version == 20>: Refuse to load.
19757
19758 2008-02-01 Dave Love <fx@gnu.org>
19759
19760 * fns.c: Move coding.h.
19761 (Qcodeset, Qdays, Qmonths): New.
19762 (concat): Use CHARACTERP instead of INTEGERP.
19763 (Flocale_codeset): Delete.
19764 (Flanginfo): New function.
19765 (syms_of_fns): Change accordingly.
19766
19767 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
19768
19769 2008-02-01 Dave Love <fx@gnu.org>
19770
19771 * casetab.c (init_casetab_once, init_casetab_once): Fix
19772 CHAR_TABLE_SET call.
19773
19774 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
19775
19776 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
19777
19778 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
19779 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
19780 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
19781
19782 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
19783
19784 * coding.c (ENCODE_DESIGNATION, decode_eol)
19785 (make_conversion_work_buffer, code_conversion_restore)
19786 (Fdefine_coding_system_internal): Convert Lisp types.
19787 (code_conversion_restore): Use EQ, not ==.
19788 (Fencode_coding_string): Fix code_convert_string call.
19789
19790 * coding.h (code_convert_region): Fix prototype.
19791
19792 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
19793
19794 * fontset.c (fontset_ref, fontset_set, fs_load_font)
19795 (Ffontset_info): Convert Lisp types.
19796
19797 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
19798
19799 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
19800
19801 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
19802
19803 * chartab.c: Include "...h", not <...h> in some cases.
19804
19805 * callproc.c (Fcall_process): Remove unused variables.
19806
19807 2008-02-01 Dave Love <fx@gnu.org>
19808
19809 * coding.c (Fset_coding_system_priority): Allow null arg list.
19810
19811 2008-02-01 Dave Love <fx@gnu.org>
19812
19813 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
19814 (Fself_insert_and_exit): Use CHARACTERP.
19815
19816 * callproc.c (Fcall_process): Remove unused vars.
19817
19818 * xterm.c (XTread_socket): Add extra dead keysyms.
19819
19820 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
19821
19822 * dispextern.h: Remove prototypes for redraw_frame,
19823 redraw_garbaged_frames.
19824
19825 * cmds.c (Fself_insert_command): Use CHARACTERP.
19826
19827 * chartab.c (make_sub_char_table): Remove unused var.
19828 (Fset_char_table_default, Fmap_char_table): Doc fix.
19829
19830 * keymap.c (access_keymap): Remove generic char code.
19831 (push_key_description): Use CHARACTERP.
19832
19833 2008-02-01 Dave Love <fx@gnu.org>
19834
19835 * charset.c: Doc fixes.
19836 (Funify_charset): Extra checking.
19837
19838 2008-02-01 Dave Love <fx@gnu.org>
19839
19840 * lread.c: Remove some unused variables.
19841 (safe_to_load_p): If safe, return the magic number version byte.
19842 (Fload): Maybe use load-with-code-conversion.
19843
19844 2008-02-01 Kenichi Handa <handa@m17n.org>
19845
19846 * category.c (Fmodify_category_entry): Don't modify the contents
19847 of category_set for characters out of the range. Avoid
19848 unnecessary modification.
19849
19850 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
19851 Vchar_unify_table. The default value of the table is now nil.
19852
19853 * character.c (syms_of_character): Setup Vchar_width_table for
19854 eight-bit-control and raw-byte chars.
19855
19856 * charset.h (enum define_charset_arg_index): Delete
19857 charset_arg_parents and add charset_arg_subset and
19858 charset_arg_superset.
19859 (enum charset_attr_index): Delete charset_parents and add
19860 charset_subset and charset_superset.
19861 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
19862 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
19863 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
19864 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
19865 (CHARSET_SUPERSET): New macros.
19866 (charset_work): Extern it.
19867 (ENCODE_CHAR): Use charset_work.
19868 (CHAR_CHARSET_P): Adjust for the change of encoder format.
19869 (map_charset_chars): Extern it.
19870
19871 * charset.c (load_charset_map): Set the default value of encoder
19872 and deunifier char-tables to nil.
19873 (map_charset_chars): Change argument. Change callers. Use
19874 map_char_table_for_charset instead of map_char_table.
19875 (Fmap_charset_chars): New optional args from_code and to_code.
19876 (Fdefine_charset_internal): Adjust for the change of
19877 `define-charset' (:parents -> :subset or :superset).
19878 (charset_work): New variable.
19879 (encode_char, syms_of_charset): Adjust for the change of
19880 Fdefine_charset_internal.
19881 (Ffind_charset_string): Setup the vector `charsets' correctly.
19882
19883 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
19884 the previous change.
19885 (char_table_ref_and_range): Adjust for the above change.
19886 (map_sub_char_table_for_charset): New function.
19887 (map_char_table_for_charset): New function.
19888
19889 * keymap.c (describe_vector): Handle a char-table directly here.
19890 (describe_char_table): Delete.
19891
19892 * lisp.h (map_charset_chars): Delete.
19893
19894 2008-02-01 Dave Love <fx@gnu.org>
19895
19896 * fns.c (count_combining): Comment out (unused).
19897 (Flocale_codeset): New.
19898 (syms_of_fns): Defsubr it.
19899
19900 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
19901 (size_t): Remove.
19902
19903 2008-02-01 Dave Love <fx@gnu.org>
19904
19905 * Makefile.in (chartab.o): Depend on charset.h.
19906
19907 2008-02-01 Kenichi Handa <handa@m17n.org>
19908
19909 * character.c (syms_of_character): Set the default value of
19910 Vprintable_chars to Qnil.
19911
19912 2008-02-01 Dave Love <fx@gnu.org>
19913
19914 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
19915
19916 2008-02-01 Kenichi Handa <handa@m17n.org>
19917
19918 * charset.c (load_charset_map): Handle the case that from < to
19919 correctly.
19920
19921 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
19922 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
19923 Pay attention to raw-8-bit chars.
19924
19925 2008-02-01 Kenichi Handa <handa@m17n.org>
19926
19927 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
19928 It is not bytecompiled now.
19929
19930 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
19931 (charset_jisx0208): New variables.
19932 (Fdefine_charset_internal): Setup them if appropriate.
19933 (init_charset_once): Initialize them to -1.
19934
19935 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
19936 (charset_jisx0208): Extern them.
19937
19938 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
19939 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
19940 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
19941 (setup_iso_safe_charsets): Fix arguments to Fassq.
19942 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
19943 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
19944 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
19945 (encode_coding_iso_2022): Change the 1st arg to
19946 ENCODE_ISO_CHARACTER to a variable.
19947
19948 2008-02-01 Kenichi Handa <handa@m17n.org>
19949
19950 * charset.h (enum define_charset_arg_index): New enums
19951 charset_arg_min_code and charset_arg_max_code.
19952 (struct charset): New member char_index_offset.
19953
19954 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
19955 Take charset->char_index_offset into account.
19956 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
19957 args[charset_arg_max_code]. Setup charset.char_index_offset.
19958 (syms_of_charset): Fix args to Fdefine_charset_internal.
19959
19960 2008-02-01 Dave Love <fx@gnu.org>
19961
19962 * coding.c (decode_coding_utf_8): Reject overlong sequences.
19963
19964 2008-02-01 Dave Love <fx@gnu.org>
19965
19966 * coding.c: Doc fixes.
19967 (Fcoding_system_aliases): Fix return value.
19968 (Qmac): Remove (duplicated) definition.
19969
19970 2008-02-01 Dave Love <fx@gnu.org>
19971
19972 * charset.c (Fcharset_priority_list, Fset_charset_priority):
19973 New functions.
19974
19975 * character.c (Fstring): Doc fix.
19976
19977 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
19978
19979 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
19980 (font-encoding-alist): Doc fix.
19981
19982 2008-02-01 Dave Love <fx@gnu.org>
19983
19984 * term.c (costs_set): Declare static, non-initialized for pcc.
19985 (encode_terminal_code): Remove unused var.
19986
19987 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
19988 for K&R.
19989
19990 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
19991
19992 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
19993 (suffixes): Move out of make_subsidiaries for K&R.
19994
19995 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
19996
19997 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
19998
19999 2008-02-01 Dave Love <fx@gnu.org>
20000
20001 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
20002
20003 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
20004
20005 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
20006
20007 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
20008
20009 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
20010
20011 2008-02-01 Kenichi Handa <handa@m17n.org>
20012
20013 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
20014 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
20015
20016 2008-02-01 Kenichi Handa <handa@m17n.org>
20017
20018 * coding.c (decode_coding_charset): Adjust for the change of
20019 Fdefine_coding_system_internal.
20020 (Fdefine_coding_system_internal): For a coding system of
20021 `charset' type, store a list of charset IDs in
20022 `charset_attr_charset_valids' element of coding attributes.
20023
20024 2008-02-01 Kenichi Handa <handa@m17n.org>
20025
20026 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
20027 (emacs_mule_char): New arg src. Delete arg `composition'. Change
20028 caller. Handle 2-byte and 3-byte charsets correctly.
20029 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
20030 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
20031 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
20032 (DECODE_EMACS_MULE_21_COMPOSITION): Call
20033 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
20034 sequence.
20035 (decode_coding_emacs_mule): Handle composition correctly. Rewind
20036 `src' and `consumed_chars' correctly before calling emacs_mule_char.
20037 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
20038 and alt&rule composition.
20039 (decode_coding_iso_2022): Handle composition correctly.
20040 (init_coding_once): Setup emacs_mule_bytes for private charsets.
20041
20042 * charset.c (Fdefine_charset_internal): Fix bug for the case of
20043 re-defining a charset. If the charset has :emacs-mule-id, setup
20044 emacs_mule_bytes.
20045 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
20046
20047 2008-02-01 Kenichi Handa <handa@m17n.org>
20048
20049 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
20050 (encode_coding_big5, encode_coding_charset): If coding requires safe
20051 encoding, produce a character specified by
20052 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
20053
20054 2008-02-01 Dave Love <fx@gnu.org>
20055
20056 * xterm.c (XSetIMValues): Declare.
20057
20058 * process.c: Conditionally include sys/wait.h, pty.h.
20059
20060 * print.c (print_object): Fix print format for 64-bit systems.
20061
20062 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
20063
20064 * buffer.c (emacs_strerror): Declare.
20065
20066 * fontset.c (Fclear_face_cache): Declare.
20067 (accumulate_font_info): Comment-out (unused).
20068 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
20069 variables.
20070
20071 * character.h (string_escape_byte8): Declare.
20072
20073 * charset.c (load_charset_map, load_charset_map_from_file): Remove
20074 unused vars.
20075 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
20076 (Fmap_charset_chars): Doc fix.
20077
20078 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
20079 (Fset_coding_system_priority, Fset_coding_system_priority)
20080 (Fdefine_coding_system_internal): Doc fix.
20081
20082 2008-02-01 Dave Love <fx@gnu.org>
20083
20084 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
20085
20086 2008-02-01 Kenichi Handa <handa@m17n.org>
20087
20088 * character.c (string_escape_byte8): Make multibyte string with
20089 correct size.
20090
20091 * charset.c (Fmake_char): Delete unnecessary code.
20092
20093 2008-02-01 Kenichi Handa <handa@m17n.org>
20094
20095 * xfns.c (x_encode_text): Allocate coding.destination here, and
20096 call encode_coding_object with dst_object Qnil.
20097
20098 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
20099 multibyte form correctly.
20100
20101 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
20102 against Vfont_encoding_alist.
20103
20104 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
20105 handling of charset list.
20106 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
20107 (decode_coding_object): Move point to coding->dst_pos before
20108 calling post-read-conversion function.
20109 (encode_coding_object): Give correct arguments to
20110 pre-write-conversion. Ignore the return value of
20111 pre-write-conversion function. Pay attention to the case that
20112 pre-write-conversion changes the current buffer. If dst_object is
20113 Qt, even if coding->src_bytes is zero, allocate at least one byte
20114 to coding->destination.
20115
20116 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
20117
20118 * charset.c (Fmake_char): Make it more backward compatible.
20119 (Fmap_charset_chars): Fix docstring.
20120
20121 2008-02-01 Dave Love <fx@gnu.org>
20122
20123 * coding.c: Doc fixes.
20124 (Fdefine_coding_system_alias): Use names, not symbols, in
20125 coding-system-alist.
20126
20127 2008-02-01 Kenichi Handa <handa@m17n.org>
20128
20129 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
20130 of calling free_realized_face.
20131
20132 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
20133
20134 * charset.c (read_hex): Don't treat SPC as a comment starter.
20135 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
20136 (Fdecode_char): Fix typo.
20137
20138 2008-02-01 Kenichi Handa <handa@m17n.org>
20139
20140 * charset.h (struct charset): New member `code_space_mask'.
20141
20142 * coding.c (coding_set_source): Delete the local variable beg_byte.
20143 (encode_coding_charset, Fdefine_coding_system_internal):
20144 Delete the local variable charset.
20145 (Fdefine_coding_system_internal): Setup
20146 attrs[coding_attr_charset_valids] correctly.
20147
20148 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
20149 member to check if CODE is valid or not.
20150 (Fdefine_charset_internal): Initialize `code_space_mask' member.
20151 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
20152 is within the range of charset->min_code and carset->max_code.
20153
20154 2008-02-01 Dave Love <fx@gnu.org>
20155
20156 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
20157
20158 * dispextern.h (generate_ascii_font): Fix return type.
20159
20160 * xfaces.c (generate_ascii_font): Fix arg declaration.
20161
20162 * coding.c (coding_inherit_eol_type)
20163 (Fset_terminal_coding_system_internal)
20164 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
20165
20166 2008-02-01 Kenichi Handa <handa@m17n.org>
20167
20168 * coding.c (decode_coding_charset, encode_coding_charset): Handle
20169 multiple charsets correctly.
20170
20171 2008-02-01 Kenichi Handa <handa@m17n.org>
20172
20173 * search.c (boyer_moore): Fix handling of multibyte character
20174 translation.
20175
20176 * xdisp.c (display_mode_element): When the variable `elt' is
20177 changed, update `this' and `lisp_string'.
20178
20179 2008-02-01 Kenichi Handa <handa@m17n.org>
20180
20181 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
20182
20183 * callproc.c (Fcall_process): Be sure to give the current buffer
20184 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
20185
20186 * charset.c (struct charset_map_entries): New struct.
20187 (load_charset_map): Rename from parse_charset_map. New args
20188 entries and n_entries. Change caller.
20189 (load_charset_map_from_file): Rename from load_charset_map.
20190 Change caller. New arg control_flag. Call load_charset_map at
20191 the tail.
20192 (load_charset_map_from_vector): New function.
20193 (Fdefine_charset_internal): Setup charset.compact_codes_p.
20194 (encode_char): If the charset is compact, change a character index
20195 to a code point.
20196
20197 * coding.c (coding_alloc_by_making_gap): Check the case that the
20198 source and destination are the same correctly.
20199 (decode_coding_raw_text): Set coding->consumed_char and
20200 coding->consumed to 0.
20201 (produce_chars): If coding->chars_at_source is nonzero, update
20202 coding->consumed_char and coding->consumed before calling
20203 alloc_destination.
20204 (Fdefine_coding_system_alias): Register ALIAS in
20205 Vcoding_system_alist.
20206 (syms_of_coding): Define `no-conversion' coding system at the tail.
20207
20208 * fileio.c (Finsert_file_contents): Set coding_system instead of
20209 val. If the current buffer is multibyte, always call
20210 decode_coding_gap.
20211
20212 * xfaces.c (try_font_list): Give higher priority to fontset's
20213 family than face's family.
20214
20215 2008-02-01 Kenichi Handa <handa@m17n.org>
20216
20217 * callproc.c (Fcall_process): Be sure to give the current buffer
20218 to decode_coding_c_string.
20219
20220 * xfaces.c (try_font_list): Give a family specified in a fontset
20221 higher priority than a family specified in a face.
20222
20223 2008-02-01 Kenichi Handa <handa@m17n.org>
20224
20225 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
20226 Fix arguments to insert_from_buffer.
20227
20228 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
20229
20230 2008-02-01 Kenichi Handa <handa@m17n.org>
20231
20232 * coding.c (produce_chars): Set the variable `multibytep' correctly.
20233 (decode_coding_gap): Set coding->dst_multibyte correctly.
20234
20235 2008-02-01 Kenichi Handa <handa@m17n.org>
20236
20237 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
20238 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
20239 (encode_coding_utf_16): Substitute coding->default_char for
20240 non-Unicode characters.
20241 (decode_coding): Don't call record_insert here.
20242 (setup_coding_system): Initialize `surrogate' of
20243 coding->spec.utf_16 to 0.
20244 (EMIT_ONE_BYTE): Fix for multibyte case.
20245
20246 * insdel.c (insert_from_gap): Call record_insert.
20247
20248 2008-02-01 Kenichi Handa <handa@m17n.org>
20249
20250 * casefiddle.c (casify_region): Fix multibyte case.
20251
20252 * character.c (c_string_width): Add return type `int'.
20253 (char_string_with_unification): Delete arg ADVANCED.
20254
20255 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
20256 (CHAR_STRING): Adjust for the change of char_string_with_unification.
20257 (CHAR_STRING_ADVANCE): Make it do-while statement.
20258
20259 * chartab.c (sub_char_table_set_range): Optimize for the case
20260 DEPTH == 3. Add workaround code for a GCC optimization bug.
20261
20262 * charset.c (parse_charset_map): Remove an unused variable.
20263
20264 * coding.c: Delete unused variables.
20265
20266 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
20267 earlier. If inserted is zero and the coding system doesn't
20268 require flushing, don't call decode_coding_gap.
20269
20270 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
20271
20272 2008-02-01 Kenichi Handa <handa@m17n.org>
20273
20274 The following changes are for using Unicode as an internal
20275 character model, and use UTF-8 format for buffer/string
20276 representation.
20277
20278 * .gdbinit (xchartable): Adjust for the change of char table structure.
20279 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
20280
20281 * Makefile.in (obj): Add character.o and chartab.o.
20282 (lisp, shortlisp): Remove utf-8.elc.
20283 (*.o): For many files, change dependency on charset.h to
20284 character.h, and add dependency on character.h.
20285 (character.o, chartab.o): New targets.
20286
20287 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
20288 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
20289 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
20290 of "charset.h".
20291
20292 * dired.c, filelock.c: Include "character.h".
20293
20294 * alloc.c: Include "character.h" instead of "charset.h".
20295 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
20296 (syms_of_alloc): Remove defsubr for Smake_char_table.
20297
20298 * buffer.c: Include "character.h" instead of "charset.h", don't
20299 include "coding.h".
20300 (Fset_buffer_multibyte): Adjust for UTF-8.
20301
20302 * buffer.h: EXFUN Fbuffer_live_p.
20303
20304 * callproc.c: Include "character.h" instead of "charset.h".
20305 (Fcall_process): Big change for the new code-conversion APIs.
20306
20307 * casetab.c: Include "character.h" instead of "charset.h".
20308 (set_canon, set_identity, shuffle): Adjust for the new
20309 map_char_table spec.
20310 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
20311 accessing the char table structure.
20312
20313 * chartab.c: New file that implements char table.
20314
20315 * category.c: Include "character.h".
20316 (copy_category_entry): New function.
20317 (copy_category_table): Call map_char_table and copy_category_entry.
20318 (Fmake_category_table): Initialize all top-level slots.
20319 (char_category_set): New function.
20320 (modify_lower_category_set): Delete.
20321 (Fmodify_category_entry): Call char_table_ref_and_range.
20322
20323 * category.h (CATEGORY_SET): Just call char_category_set.
20324
20325 * ccl.c: Include "character.h".
20326 (Qccl, Qcclp): New variables.
20327 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
20328 it's less than 256.
20329 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
20330 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
20331 and DST type.
20332 (ccl_driver): Change types of argument, adjust code accordingly.
20333 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
20334 ccl_driver.
20335 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
20336
20337 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
20338 New members src_multibyte, dst_multibyte, consumed, and produced.
20339 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
20340 (CODING_SPEC_CCL_PROGRAM): New macro.
20341 (ccl_driver): Update prototype.
20342 (Qccl, Qcclp, Fccl_program_p): Extern them.
20343 (CHECK_CCL_PROGRAM): New macro.
20344
20345 * character.c, character.h, chartab.c: New files.
20346
20347 * charset.c: Mostly re-written. Move character and multibyte sequence
20348 handling codes to character.c.
20349
20350 * charset.h: Mostly re-written. Move character and multibyte sequence
20351 handling codes to character.h.
20352
20353 * coding.c, coding.h: Mostly re-written.
20354
20355 * composite.c: Include "character.h" instead of "charset.h".
20356 (CHAR_WIDTH): Move to character.h.
20357 (HASH_KEY, HASH_VALUE): Delete.
20358
20359 * composite.h (enum composition_method): Change order of enumeration
20360 symbols.
20361
20362 * data.c: Include "character.h" instead of "charset.h".
20363 (Faref): Call CHAR_TABLE_REF for a char table.
20364 (Faset): Call CHAR_TABLE_SET for a char table.
20365
20366 * dispextern.h (free_realized_face, check_face_attribytes)
20367 (generate_ascii_font): Extern them.
20368 (free_realized_multibyte_face): Delete extern.
20369
20370 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
20371 table structure.
20372
20373 * editfns.c: Include "character.h" instead of "charset.h".
20374 (Fchar_to_string): Always call CHAR_STRING.
20375
20376 * emacs.c (main): Call init_charset_once, init_charset,
20377 syms_of_chartab, and syms_of_character.
20378
20379 * fileio.c: Include "character.h" instead of "charset.h".
20380 (Finsert_file_contents): Big change for the new code-conversion API.
20381 (choose_write_coding_system, Fwrite_region): Likewise.
20382 (build_annotations_2): Delete.
20383 (e_write): Big change for the new code-conversion API.
20384
20385 * fns.c: Include "character.h" instead of "charset.h".
20386 (copy_sub_char_table): Move to chartab.c.
20387 (Fcopy_sequence): Call copy_char_table for a char table.
20388 (concat): Delete codes calling count_multibyte.
20389 (string_char_to_byte, string_byte_to_char): Adjust for the new
20390 multibyte form.
20391 (internal_equal): Adjust for the change of char table structure.
20392 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
20393 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
20394 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
20395 (char_table_translate, optimize_sub_char_table)
20396 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
20397 chartab.c.
20398 (char_table_ref_and_index): Delete.
20399 (HASH_KEY, HASH_VALUE): Move to lisp.h.
20400 (Fmd5): Call preferred_coding_system instead of accessing
20401 Vcoding_category_list. Adjust for the new code-conversion API.
20402 (syms_of_fns): Move defsubr for char table related functions to
20403 chartab.c.
20404
20405 * fontset.c: Mostly re-written.
20406
20407 * fontset.h (struct font_info): Change type of the member encoding_type.
20408 (enum FONT_SPEC_INDEX): New enum.
20409 (fontset_font_pattern, fs_load_font): Update prototype.
20410 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
20411
20412 * indent.c: Include "character.h" instead of "charset.h".
20413 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
20414
20415 * insdel.c: Include "character.h" instead of "charset.h".
20416 (copy_text): Don't refer to Vnonascii_translation_table.
20417 (insert_from_gap): New function.
20418
20419 * keyboard.c: Include "character.h" instead of "charset.h".
20420 (command_loop_1): Never call direct_output_forward_char before
20421 a non-ASCII character.
20422 (read_char): If Vkeyboard_translate_table is a char table, always
20423 translate a character.
20424
20425 * keymap.c: Include "character.h".
20426 (store_in_keymap): Handle the case that IDX is a cons.
20427 (Fdefine_key): Handle the case that KEY is a cons and the car part
20428 is also a cons (range).
20429 (push_key_description): Adjust for the new character code.
20430 (describe_vector): Call describe_char_table for a char table.
20431 (describe_char_table): New function.
20432
20433 * keymap.h (describe_char_table): Extern it.
20434
20435 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
20436 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
20437 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
20438 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
20439 Delete.
20440 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
20441 structure.
20442 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
20443 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
20444 (CHARTAB_SIZE_BITS_3): New macros.
20445 (chartab_size): Extern it.
20446 (struct Lisp_Char_Table): Re-design.
20447 (struct Lisp_Sub_Char_Table): New structure.
20448 (HASH_KEY, HASH_VALUE): Move from fns.c.
20449 (CHARACTERBITS): Define as 22.
20450 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
20451 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
20452 (GC_SUB_CHAR_TABLE_P): New macro.
20453 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
20454 (code_convert_string_norecord): Deleted extern.
20455 (init_character_once, syms_of_character, init_charset)
20456 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
20457
20458 * lread.c: Include "character.h".
20459 (read_multibyte): New arg NBYTES.
20460 (read_escape): Change the meaning of returned *BYTEREP.
20461 (to_multibyte): Delete.
20462 (read1): Adjust the handling of char table and string.
20463
20464 * print.c: Include "character.h" instead of "charset.h".
20465 (print_string): Convert 8-bit raw bytes to octal form by
20466 string_escape_byte8.
20467 (print_object): Adjust for the new multibyte form. Print 8-bit
20468 raw bytes always in octal form. Handle sub char table correctly.
20469
20470 * process.c: Include "character.h" instead of "charset.h".
20471 (read_process_output, send_process): Adjust for the new
20472 code-conversion API.
20473
20474 * puresize.h (BASE_PURESIZE): Increase.
20475
20476 * regex.c: Include "character.h" instead of "charset.h".
20477 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
20478 (regex_compile): Accept a range whose starting and ending
20479 character have different leading bytes.
20480 (analyse_first): Adjust for the above change.
20481
20482 * search.c: Include "character.h" instead of "charset.h".
20483 (search_buffer, boyer_moore): Adjust for the new multibyte form.
20484 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
20485
20486 * syntax.c: Include "character.h" instead of "charset.h".
20487 (syntax_parent_lookup): Delete.
20488 (Fmodify_syntax_entry): Accept a cons as CHAR.
20489 (skip_chars): Adjust for the new multibyte form.
20490 (init_syntax_once): Call char_table_set_range instead of directly
20491 accessing the structure of a char table.
20492
20493 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
20494 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
20495 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
20496 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
20497
20498 * term.c: Include "buffer.h" and "character.h".
20499 (encode_terminal_code, write_glyphs): Adjust for the new
20500 code-conversion API.
20501 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
20502
20503 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
20504
20505 * xdisp.c: Include "character.h".
20506 (get_next_display_element): Adjust for the new multibyte form.
20507 (disp_char_vector): Adjust for the new char table structure.
20508 (decode_mode_spec_coding): Adjust for the new structure of
20509 coding system.
20510 (decode_mode_spec): Adjust for the new code-conversion API.
20511
20512 * xfaces.c: Include "character.h" instead of "charset.h".
20513 (load_face_font): Adjust for the change of choose_face_font and
20514 FS_LOAD_FONT.
20515 (generate_ascii_font): New function.
20516 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
20517 (set_font_frame_param): Adjust for the change of choose_face_font.
20518 (free_realized_face): Make it public.
20519 (free_realized_faces_for_fontset): Rename from
20520 free_realized_multibyte_face. Free also faces realized for ASCII.
20521 (choose_face_font): Change arguments. Adjust for the change of
20522 fontset_font_pattern and FS_LOAD_FONT.
20523
20524 * xfns.c: Include "character.h".
20525 (x_encode_text): Adjust for the new code-conversion API.
20526
20527 * xselect.c: Don't include "charset.h".
20528 (selection_data_to_lisp_data): Adjust for the new code conversion API.
20529
20530 * xterm.c: Include "character.h".
20531 (x_encode_char): New argument CHARSET. Change caller.
20532 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
20533 Call ENCODE_CHAR instead of SPLIT_CHAR.
20534 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
20535 CHAR_WIDTH instead of CHARSET_WIDTH.
20536 (XTread_socket): Adjust for the new code-conversion API.
20537 (x_new_font): Adjust for the change of FS_LOAD_FONT.
20538 (x_load_font): Adjust for the change of struct font.
20539
20540 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
20541
20542 * xfaces.c (face_at_buffer_position): Remove unused vars.
20543
20544 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20545
20546 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
20547 Fix overflow checking.
20548
20549 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
20550
20551 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
20552 Cancel previous change.
20553
20554 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
20555
20556 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
20557 ccl->eight_bit_control. Fix check for buffer overflow.
20558 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
20559 (ccl_driver): Initialize extra_bytes to 0.
20560
20561 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
20562
20563 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
20564 return it ORed with ctrl_modifier.
20565
20566 2008-01-29 Miles Bader <miles@gnu.org>
20567
20568 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
20569
20570 2008-01-28 Jason Rumney <jasonr@gnu.org>
20571
20572 * w32.c (stat): Don't double check for networked drive.
20573
20574 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
20575
20576 * window.c (run_window_configuration_change_hook): New function.
20577 Code extracted from set_window_buffer. Set the selected frame.
20578 (set_window_buffer): Use it.
20579 * window.h (run_window_configuration_change_hook): Declare.
20580 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
20581
20582 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
20583
20584 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
20585
20586 * Makefile.in: Remove references to unused macros.
20587
20588 2008-01-26 Eli Zaretskii <eliz@gnu.org>
20589
20590 * w32.c (g_b_init_get_sid_sub_authority)
20591 (g_b_init_get_sid_sub_authority_count): New static variables.
20592 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
20593 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
20594 (init_user_info): Use them to retrieve uid and gid.
20595 Use 500/513, the Windows defaults, as Administrator's uid/gid.
20596 (fstat): Use pw_uid and pw_gid from the_passwd structure for
20597 st_uid and st_gid of the file.
20598
20599 2008-01-26 Jason Rumney <jasonr@gnu.org>
20600
20601 * w32.c (logon_network_drive): New function.
20602 (stat): Use it.
20603
20604 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
20605
20606 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
20607 invisible text covered with an ellipsis.
20608
20609 2008-01-25 Richard Stallman <rms@gnu.org>
20610
20611 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
20612 jump back to beginning. Move some other initializations after that.
20613 (Qwindow_text_change_functions, Vwindow_text_change_functions):
20614 New variables.
20615 (syms_of_xdisp): Init them.
20616
20617 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
20618
20619 * buffer.c (reset_buffer_local_variables):
20620 Implement `permanent-local-hook'.
20621 (Qpermanent_local_hook): New variable.
20622 (syms_of_buffer): Init and staticpro it.
20623
20624 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
20625
20626 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
20627
20628 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
20629
20630 * fns.c (Fclrhash): Return TABLE.
20631
20632 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20633
20634 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
20635 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
20636 is set even without positional changes.
20637 (x_scroll_bar_clear): Set bar->redraw_needed_p.
20638
20639 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
20640
20641 2008-01-23 Jason Rumney <jasonr@gnu.org>
20642
20643 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
20644
20645 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
20646 the unicode range available in MULE by locale-coding-system.
20647 Improve dbcs lead byte detection. Set event timestamp and modifiers
20648 earlier.
20649
20650 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20651
20652 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
20653 [MAC_OSX] (init_mac_osx_environment): Initialize it.
20654 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
20655 when used on child processes.
20656
20657 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
20658
20659 * dbusbind.c (Fdbus_method_return_internal): Rename from
20660 Fdbus_method_return.
20661 (Fdbus_unregister_object): Move to dbus.el.
20662 (Fdbus_call_method, Fdbus_method_return_internal)
20663 (Fdbus_send_signal): Improve debug messages.
20664
20665 2008-01-20 Martin Rudalics <rudalics@gmx.at>
20666
20667 * undo.c (undo_inhibit_record_point): New variable.
20668 (syms_of_undo): Initialize it.
20669 (record_point): Don't record point when undo_inhibit_record_point
20670 is set.
20671
20672 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
20673
20674 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
20675
20676 * xdisp.c (Qauto_hscroll_mode): New var.
20677 (syms_of_xdisp): Initialize it.
20678 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
20679 window's buffer.
20680 (hscroll_windows): Don't check automatic_hscrolling_p here.
20681
20682 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
20683 vscroll if we're setting window-buffer to the value it already has.
20684
20685 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
20686
20687 * m/intel386.h: Remove references to XENIX.
20688
20689 2008-01-17 Andreas Schwab <schwab@suse.de>
20690
20691 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
20692 instead of HAVE_X86_64_LIB64_DIR.
20693 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
20694
20695 2008-01-17 Glenn Morris <rgm@gnu.org>
20696
20697 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
20698 to HAVE_X86_64_LIB64_DIR.
20699
20700 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
20701
20702 * s/irix3-3.h:
20703 * s/irix4-0.h:
20704 * s/386-ix.h:
20705 * s/domain.h:
20706 * s/hpux9-x11r4.h:
20707 * s/hpux9shxr4.h: Remove files for systems no longer supported.
20708
20709 * sysdep.c: Remove code containing references to symbols defined
20710 by unsupported systems.
20711
20712 2008-01-16 Glenn Morris <rgm@gnu.org>
20713
20714 * coding.c (select-safe-coding-system-function): Doc fix.
20715
20716 2008-01-15 Glenn Morris <rgm@gnu.org>
20717
20718 * config.in: Revert 2008-01-13 change: this is a generated file.
20719
20720 2008-01-13 Tom Tromey <tromey@redhat.com>
20721
20722 * lisp.h: Fix typo.
20723
20724 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
20725
20726 * m/sequent-ptx.h:
20727 * m/sequent.h:
20728 * s/ptx.h:
20729 * s/ptx4-2.h:
20730 * s/ptx4.h: Remove files for systems no longer supported.
20731
20732 * callproc.c (Fcall_process): Fix previous change.
20733
20734 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
20735
20736 * unexsunos4.c: Remove file, system not supported anymore.
20737
20738 * m/mips.h:
20739 * m/intel386.h:
20740 * callproc.c:
20741 * config.in:
20742 * ecrt0.c:
20743 * emacs.c:
20744 * fileio.c:
20745 * frame.c:
20746 * getpagesize.h:
20747 * keyboard.c:
20748 * lread.c:
20749 * process.c:
20750 * puresize.h:
20751 * sysdep.c:
20752 * systty.h:
20753 * syswait.h:
20754 * unexec.c:
20755 * xdisp.c:
20756 * alloc.c: Remove code containing references to symbols defined by
20757 unsupported systems.
20758
20759 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
20760
20761 * coding.c (detect_coding_mask): Fix previous change.
20762
20763 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
20764
20765 * coding.c (detect_coding_iso2022): New arg
20766 latin_extra_code_state. Allow Latin extra codes only
20767 when *latin_extra_code_state is nonzero.
20768 (detect_coding_mask): If there is a NULL byte, detect the encoding
20769 as UTF-16 or binary. If Latin extra codes exist, detect the
20770 encoding as ISO-2022 only when there's no other proper encoding is
20771 found.
20772
20773 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20774
20775 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
20776 #ifdef MAC_OS.
20777
20778 2008-01-08 Richard Stallman <rms@gnu.org>
20779
20780 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
20781
20782 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
20783
20784 * keyboard.c (parse_menu_item): Don't enclose key bindings on
20785 menu bar in parentheses.
20786
20787 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
20788
20789 * m/7300.h:
20790 * m/acorn.h:
20791 * m/alliant-2800.h:
20792 * m/alliant.h:
20793 * m/alliant1.h:
20794 * m/alliant4.h:
20795 * m/altos.h:
20796 * m/amdahl.h:
20797 * m/apollo.h:
20798 * m/att3b.h:
20799 * m/aviion-intel.h:
20800 * m/aviion.h:
20801 * m/celerity.h:
20802 * m/clipper.h:
20803 * m/cnvrgnt.h:
20804 * m/convex.h:
20805 * m/cydra5.h:
20806 * m/delta88k.h:
20807 * m/dpx2.h:
20808 * m/dual.h:
20809 * m/elxsi.h:
20810 * m/f301.h:
20811 * m/gould-np1.h:
20812 * m/gould.h:
20813 * m/i860.h:
20814 * m/ibmps2-aix.h:
20815 * m/ibmrt-aix.h:
20816 * m/ibmrt.h:
20817 * m/irist.h:
20818 * m/is386.h:
20819 * m/isi-ov.h:
20820 * m/mega68.h:
20821 * m/mg1.h:
20822 * m/news-r6.h:
20823 * m/news-risc.h:
20824 * m/news.h:
20825 * m/nh3000.h:
20826 * m/nh4000.h:
20827 * m/ns16000.h:
20828 * m/ns32000.h:
20829 * m/nu.h:
20830 * m/orion.h:
20831 * m/orion105.h:
20832 * m/paragon.h:
20833 * m/pfa50.h:
20834 * m/plexus.h:
20835 * m/pyramid.h:
20836 * m/pyrmips.h:
20837 * m/sh3el.h:
20838 * m/sps7.h:
20839 * m/sr2k.h:
20840 * m/stride.h:
20841 * m/sun1.h:
20842 * m/sun2.h:
20843 * m/sun3-68881.h:
20844 * m/sun3-fpa.h:
20845 * m/sun3-soft.h:
20846 * m/sun3.h:
20847 * m/sun386.h:
20848 * m/symmetry.h:
20849 * m/tad68k.h:
20850 * m/tahoe.h:
20851 * m/targon31.h:
20852 * m/tek4300.h:
20853 * m/tekxd88.h:
20854 * m/tower32.h:
20855 * m/tower32v3.h:
20856 * m/ustation.h:
20857 * m/wicat.h:
20858 * m/xps100.h:
20859 * s/cxux.h:
20860 * s/cxux7.h:
20861 * s/dgux.h:
20862 * s/dgux4.h:
20863 * s/dgux5-4-3.h:
20864 * s/dgux5-4r2.h:
20865 * s/esix.h:
20866 * s/esix5r4.h:
20867 * s/hiuxmpp.h:
20868 * s/hiuxwe2.h:
20869 * s/iris3-5.h:
20870 * s/iris3-6.h:
20871 * s/isc2-2.h:
20872 * s/isc3-0.h:
20873 * s/isc4-0.h:
20874 * s/isc4-1.h:
20875 * s/newsos5.h:
20876 * s/newsos6.h:
20877 * s/osf1.h:
20878 * s/osf5-0.h:
20879 * s/riscix1-1.h:
20880 * s/riscix12.h:
20881 * s/sco4.h:
20882 * s/sco5.h:
20883 * s/sunos4-0.h:
20884 * s/sunos4-1.h:
20885 * s/sunos413.h:
20886 * s/sunos4shr.h:
20887 * s/umax.h:
20888 * s/unipl5-2.h:
20889 * s/xenix.h:
20890 * cxux-crt0.s:
20891 * unexapollo.c:
20892 * unexconvex.c:
20893 * unexenix.c:
20894 * unexsni.c: Remove files for systems no longer supported.
20895
20896 * m/intel386.h: Remove references to unsupported systems.
20897
20898 * w32.c (get_emacs_configuration): Remove reference to i860.
20899
20900 * sysdep.c: Remove dead code.
20901
20902 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
20903
20904 * s/rtu.h:
20905 * m/masscomp.h: Remove files. Platform is obsolete.
20906
20907 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
20908
20909 * dbusbind.c (Fdbus_method_return): New function.
20910 (xd_read_message): Add the serial number to the event.
20911 (Fdbus_register_method): Activate the function.
20912
20913 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
20914
20915 * keyboard.c (read_key_sequence): Fix typo.
20916
20917 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
20918
20919 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
20920 (xd_signature, xd_append_arg): Handle element type detection for
20921 empty arrays.
20922 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
20923 SDATA () calls; this must be solved more general.
20924 (Fdbus_register_signal): Use SBYTES instead of strlen.
20925
20926 2008-01-03 Magnus Henoch <magnus@zemdatav>
20927
20928 * dbusbind.c (xd_append_arg): Use unsigned char instead of
20929 unsigned int for byte values (necessary for big-endian platform).
20930 (Fdbus_call_method): Handle the case of no returned arguments.
20931
20932 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
20933
20934 * dbusbind.c (xd_read_message): Use non-static input_event struct.
20935
20936 2007-12-31 Magnus Henoch <mange@freemail.hu>
20937
20938 * dbusbind.c (xd_signature): Signature of variant is just "v".
20939
20940 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
20941
20942 * dbusbind.c: Fix several errors and compiler warnings.
20943 Reported by Tom Tromey <tromey@redhat.com>.
20944 (XD_ERROR, XD_DEBUG_MESSAGE)
20945 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
20946 (xd_append_arg): Part for basic D-Bus types rewritten.
20947 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
20948 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
20949 appropriate.
20950 (xd_read_message): Return Qnil. Don't signal an error; it is not
20951 useful during event reading.
20952 (Fdbus_register_signal): Signal an error if the check for
20953 FUNCTIONP fails.
20954 (Fdbus_register_method): New function. The implementation is not
20955 complete, the call of the function signals an error therefore.
20956 (Fdbus_unregister_object): New function, renamed from
20957 Fdbus_unregister_signal. The initial check signals an error, if
20958 the object is not well formed.
20959
20960 2007-12-30 Richard Stallman <rms@gnu.org>
20961
20962 * textprop.c (get_char_property_and_overlay):
20963 Signal error if POSITION is out of range in a buffer.
20964
20965 2007-12-29 Martin Rudalics <rudalics@gmx.at>
20966
20967 * w32fns.c (Fx_create_frame): Make copy of frame parameters
20968 because the original parameters are in pure storage now.
20969
20970 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20971
20972 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
20973
20974 2007-12-22 Eli Zaretskii <eliz@gnu.org>
20975
20976 * callint.c (syms_of_callint) <command-history>: Add reference to
20977 history-length in the doc string.
20978
20979 2007-12-17 Jason Rumney <jasonr@gnu.org>
20980
20981 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
20982 before passing as wParam.
20983
20984 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
20985
20986 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
20987 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
20988 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
20989 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
20990 as number.
20991 (Fdbus_call_method): Fix docstring.
20992
20993 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
20994
20995 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
20996 New macros.
20997 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
20998 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
20999 Simplify.
21000 (xd_signature): New function.
21001 (xd_append_arg): Compute also signatures. Major rewrite.
21002 (xd_retrieve_arg): Make debug messages friendly.
21003 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
21004 Check for signatures of arguments.
21005
21006 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
21007
21008 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
21009 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
21010 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
21011 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
21012 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
21013 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
21014 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
21015 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
21016 (xd_retrieve_value): Remove. Functionality included in ...
21017 (xd_append_arg): New function.
21018 (Fdbus_call_method, Fdbus_send_signal): Apply it.
21019
21020 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
21021
21022 * dbusbind.c (top): Include <stdio.h>.
21023 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
21024 dbus_message_new_method_call and dbus_message_new_signal.
21025 (Fdbus_register_signal): Rename unique_name to uname.
21026 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
21027 non-existing unique name. Fix typos in matching rule. Return an
21028 object which is useful in Fdbus_unregister_signal.
21029 (Fdbus_unregister_signal): Reimplementation, in order to remove
21030 only the corresponding entry.
21031 (Vdbus_registered_functions_table): Change the order of entries.
21032 Apply these changes in xd_read_message and Fdbus_register_signal.
21033
21034 2007-12-16 Andreas Schwab <schwab@suse.de>
21035
21036 * fileio.c (Finsert_file_contents): Fix overflow check to not
21037 depend on undefined integer overflow.
21038
21039 2007-12-14 Jason Rumney <jasonr@gnu.org>
21040
21041 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
21042 for characters above 127.
21043
21044 2007-12-13 Jason Rumney <jasonr@gnu.org>
21045
21046 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
21047 before dereferencing array.
21048 (lookup_vk_code): Remove zero comparison.
21049
21050 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
21051
21052 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
21053 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
21054 Use `unsigned int' instead of `uint'.
21055 (xd_read_message, Fdbus_register_signal): Split expressions into
21056 multiple lines before operators "&&" and "||", according to the
21057 GNU Coding Standards.
21058
21059 2007-12-14 Eli Zaretskii <eliz@gnu.org>
21060
21061 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
21062
21063 2007-12-12 Juri Linkov <juri@jurta.org>
21064
21065 * buffer.c (Frename_buffer): In interactive spec replace
21066 `read-buffer' with `read-string' that uses `buffer-name-history'
21067 as history, and the current buffer's name as default.
21068
21069 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
21070
21071 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
21072 manipulating the backtrace manually.
21073 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
21074 (struct backtrace, backtrace_list): Remove.
21075 (command_loop_1): Remove dead var `no_direct'.
21076
21077 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
21078 preserve non-built-in buffer-local variables.
21079 (Fkill_all_local_variables): Don't re-create&re-set permanent
21080 buffer-local variables.
21081
21082 2007-12-09 Juri Linkov <juri@jurta.org>
21083
21084 * buffer.c (Frename_buffer): Change interactive spec from "s" to
21085 Lisp code that uses `read-buffer' with current buffer as default.
21086
21087 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
21088
21089 * dbusbind.c (xd_read_message): Generate an event for every
21090 registered handler. There might be several handlers registered
21091 for the same signal.
21092 (Fdbus_register_signal): Don't overwrite a registration for the
21093 same signal. Add a new registration if handlers are different.
21094 (Vdbus_registered_functions_table): Rework doc string.
21095
21096 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
21097
21098 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
21099 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
21100 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
21101 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
21102 Unify argument lists.
21103 (xd_read_message, Fdbus_register_signal): Reorder and extend event
21104 arguments and hash table keys. Use unique name for service.
21105 (Fdbus_unregister_signal): Remove checks.
21106 (Vdbus_registered_functions_table): Fix doc string.
21107
21108 2007-12-05 Magnus Henoch <mange@freemail.hu>
21109
21110 * process.c (make_process): Initialize pty_flag to 0.
21111
21112 2007-12-05 Jason Rumney <jasonr@gnu.org>
21113
21114 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
21115 specified XBMs.
21116
21117 2007-12-05 Richard Stallman <rms@gnu.org>
21118
21119 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
21120
21121 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21122
21123 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
21124 New variable.
21125 (mac_try_close_socket) [MAC_OSX]: New function.
21126 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
21127 Update cfsockets_for_select. Replace invalid CFRunLoop source.
21128
21129 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
21130 Use mac_try_close_socket.
21131
21132 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21133
21134 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
21135 reloc_base.
21136 (copy_dysymtab): Compute relocation base here.
21137 (rebase_reloc_address) [__ppc64__]: New function.
21138 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
21139 changed.
21140
21141 2007-12-05 Jason Rumney <jasonr@gnu.org>
21142
21143 * w32proc.c (sys_spawnve): Quote args with wildcards.
21144
21145 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21146
21147 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
21148 __objc_* sections.
21149 (unrelocate) [_LP64]: Set relocation base to address of data segment.
21150
21151 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
21152
21153 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
21154 Move check for Vdbus_registered_functions_table to
21155 xd_read_queued_messages.
21156 (xd_read_queued_messages): Protect xd_read_message calls by
21157 internal_condition_case_1.
21158
21159 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
21160
21161 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
21162 Qdbus_system_bus and Qdbus_session_bus, respectively.
21163 (Vdbus_intern_symbols): Remove.
21164 (Vdbus_registered_functions_table): New hash table.
21165 (XD_SYMBOL_INTERN_SYMBOL): Remove.
21166 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
21167 Rewrite in order to manage registered functions by hash table
21168 Vdbus_registered_functions_table.
21169
21170 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
21171
21172 * xterm.c: Update URL to Window Manager Specification in comment.
21173
21174 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
21175
21176 * config.in (HAVE_DBUS): Add.
21177
21178 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
21179 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
21180 (obj): Add $(DBUS_OBJ).
21181 (LIBES): Add $(DBUS_LIBS).
21182 (dbusbind.o): New target.
21183
21184 * dbusbind.c: New file.
21185
21186 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
21187
21188 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
21189 (Qdbus_event): New Lisp symbol.
21190 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
21191 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
21192 (keys_of_keyboard): Define dbus-event.
21193
21194 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
21195
21196 2007-12-01 Richard Stallman <rms@gnu.org>
21197
21198 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
21199
21200 2007-11-30 Jason Rumney <jasonr@gnu.org>
21201
21202 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
21203 (w32con_reset_terminal_modes): Clear screen buffer.
21204 (w32_face_attributes): Don't use color indexes that are out of range.
21205 Only reverse the default colors.
21206
21207 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
21208 WINDOWSNT.
21209
21210 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
21211
21212 2007-11-29 Jason Rumney <jasonr@gnu.org>
21213
21214 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
21215 (w32_face_attributes): Use Vtty_defined_color_alist to determine
21216 if the terminal colors are initialized.
21217 (unspecified_fg, unspecified_bg): Remove unused declarations.
21218
21219 2007-11-29 Andreas Schwab <schwab@suse.de>
21220
21221 * keyboard.c (apply_modifiers): Fix typo.
21222
21223 2007-11-29 Richard Stallman <rms@gnu.org>
21224
21225 * keymap.c (Fcurrent_local_map): Doc fix.
21226
21227 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
21228
21229 * s/gnu-kfreebsd.h: New file.
21230
21231 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
21232
21233 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
21234 Don't cast redundantly.
21235
21236 * keyboard.c (KEY_TO_CHAR): New macro.
21237 (parse_modifiers, apply_modifiers): Accept integer arguments.
21238 (read_key_sequence): Use them to unify the "shift->unshift" mapping
21239 for chars and symbol keys.
21240 After doing such remapping, apply function-key-map again.
21241
21242 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
21243
21244 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
21245 compiled anymore.
21246
21247 2007-11-26 Andreas Schwab <schwab@suse.de>
21248
21249 * process.c (list_processes_1): Fix indentation level of the
21250 command column.
21251
21252 2007-11-23 Andreas Schwab <schwab@suse.de>
21253
21254 * editfns.c (Fformat): Handle %c specially since it requires the
21255 argument to be of type int.
21256
21257 2007-11-23 Markus Triska <markus.triska@gmx.at>
21258
21259 * emacs.c (main): Call init_editfns before init_process, since
21260 init_process sets Vprocess_connection_type depending on OS release.
21261
21262 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
21263
21264 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
21265 (find_symbol_value): Use do_symval_forwarding.
21266
21267 * data.c (set_internal): Set the value in the `cons-cell' (for
21268 Buffer_Local_values) not only for frame-local variables.
21269
21270 2007-11-22 Andreas Schwab <schwab@suse.de>
21271
21272 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
21273 values to sprintf.
21274 * keymap.c (Fsingle_key_description): Likewise.
21275 * print.c (print_object): Likewise.
21276
21277 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
21278
21279 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
21280 file for image is nil.
21281
21282 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
21283
21284 * term.c: Include stdarg.h.
21285 (fatal): Implement using varargs.
21286 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
21287
21288 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
21289
21290 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
21291 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
21292 Update call to buffer_slot_type_mismatch.
21293 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
21294 (buffer_slot_type_mismatch): Update.
21295 * buffer.c (buffer_local_types): Remove.
21296 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
21297 (defvar_per_buffer): Set the type in the buffer_objfwd.
21298
21299 2007-11-21 Jason Rumney <jasonr@gnu.org>
21300
21301 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
21302 CreateFileMapping returns NULL on failure.
21303
21304 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
21305
21306 * search.c (Fset_match_data): Remove the `evaporate' feature.
21307 (unwind_set_match_data): Don't use the `evaporate' feature.
21308
21309 2007-11-21 Jason Rumney <jasonr@gnu.org>
21310
21311 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
21312
21313 * w32console.c (w32con_write_glyphs): Remove unused variables.
21314
21315 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
21316
21317 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
21318
21319 * s/darwin.h (MULTI_KBOARD): Remove.
21320
21321 * macfns.c (x_create_tip_frame, Fx_create_frame)
21322 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
21323
21324 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
21325
21326 * buffer.c (Fbuffer_local_value): Remove redundant test.
21327 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
21328 than in `current-buffer' to match the comment.
21329 Do the swap using swap_in_global_binding.
21330
21331 * data.c (store_symval_forwarding, set_internal):
21332 * eval.c (specbind): Remove dead code.
21333
21334 * coding.c (detect_coding, Fupdate_coding_systems_internal):
21335 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
21336 Since we do not want to see internal Lisp_*fwd objects here.
21337
21338 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
21339
21340 * sysdep.c (init_system_name): Use getaddrinfo if available.
21341
21342 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
21343 (x_scroll_bar_note_movement): start, end, with, height in struct
21344 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
21345
21346 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
21347
21348 * puresize.h (BASE_PURESIZE): Increase to 1190000.
21349
21350 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
21351
21352 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
21353 This undoes Richard's change of 14-Oct-2002.
21354
21355 * alloc.c (allocate_other_vector):
21356 * lisp.h (allocate_other_vector): Remove.
21357
21358 * window.c (struct save_window_data): Move non-lisp data to the end
21359 and make it `int' rather than Lisp_Object.
21360 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
21361 Done wrap/unwrap integer values.
21362 (Fset_window_configuration, compare_window_configurations):
21363 Update use of fields to their new types.
21364
21365 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
21366 Turn integer fields into `int'. Merge x_window_low and x_window_high.
21367 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
21368 (SET_SCROLL_BAR_X_WINDOW): Remove.
21369 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
21370 Access the new x_window field directly.
21371 * xterm.c (x_scroll_bar_create): Use a pseudovector.
21372 Don't wrap/unwrap integers into Lisp_Objects.
21373 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
21374 (x_scroll_bar_report_motion):
21375 Don't wrap/unwrap integers into Lisp_Objects.
21376 (x_term_init): Use SDATA.
21377 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
21378 (x_scroll_bar_set_handle, x_scroll_bar_remove)
21379 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
21380 (x_scroll_bar_report_motion, x_scroll_bar_clear):
21381 * xfns.c (x_set_background_color):
21382 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
21383 Access the new x_window field directly.
21384
21385 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
21386 (allocate_pseudovector): Make non-static.
21387
21388 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
21389 (allocate_pseudovector): Declare.
21390 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
21391
21392 2007-11-15 Andreas Schwab <schwab@suse.de>
21393
21394 * editfns.c (Fformat): Correctly format EMACS_INT values.
21395 Also take precision into account when formatting an integer.
21396
21397 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
21398
21399 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
21400
21401 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
21402 (syms_of_keyboard): Defsubr it.
21403
21404 * data.c (swap_in_global_binding): Fix longstanding bug where
21405 store_symval_forwarding was not called with the right second argument,
21406 thus causing objfwd-ing from being dropped.
21407
21408 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
21409
21410 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
21411 (Fx_display_pixel_height, Fx_display_planes)
21412 (Fx_display_color_cells, Fx_server_max_request_size)
21413 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
21414 (Fx_display_visual_class, Fx_display_save_under):
21415 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
21416 (Fx_display_pixel_height, Fx_display_planes)
21417 (Fx_display_color_cells, Fx_server_max_request_size)
21418 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
21419 (Fx_display_mm_height, Fx_display_mm_width)
21420 (Fx_display_backing_store, Fx_display_visual_class)
21421 (Fw32_select_font, Fx_display_save_under):
21422 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
21423 (Fx_display_pixel_height, Fx_display_planes)
21424 (Fx_display_color_cells, Fx_server_max_request_size)
21425 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
21426 (Fx_display_save_under): Fix typos in docstrings.
21427
21428 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
21429
21430 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
21431 corresponding to deleted entries; they are an implementation detail.
21432 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
21433 Remove variables.
21434 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
21435 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
21436 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
21437 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
21438 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
21439 (Fw32_define_rgb_color, Fw32_load_color_file)
21440 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
21441 Fix typos in docstrings.
21442 (Fx_server_version): Reflow docstring.
21443 (Fw32_shell_execute): Doc fixes.
21444
21445 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
21446
21447 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
21448 if w32_parse_hot_key returned nil.
21449
21450 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
21451
21452 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
21453
21454 2007-11-09 Jason Rumney <jasonr@gnu.org>
21455
21456 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
21457
21458 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
21459
21460 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
21461 Remove W32_SCROLL_BAR_CLICK_EVENT.
21462
21463 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
21464 Add MULTIMEDIA_KEY_EVENT.
21465
21466 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
21467 (lispy_multimedia_keys) [WINDOWSNT]: New array.
21468 (make_lispy_event) [WINDOWSNT]: Use it to translate
21469 MULTIMEDIA_KEY_EVENT.
21470
21471 * w32term.h (WM_APPCOMMAND): Define if not already.
21472 (GET_APPCOMMAND_LPARAM): Likewise.
21473
21474 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
21475 WM_APPCOMMAND.
21476
21477 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
21478 (syms_of_w32fns): Export and initialize it.
21479 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
21480
21481 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
21482
21483 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
21484 twice.
21485
21486 * xdisp.c (handle_face_prop): Fix last change.
21487
21488 2007-11-09 Richard Stallman <rms@gnu.org>
21489
21490 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
21491 not just for after-strings and before-strings.
21492 Call face_for_overlay_string and pass the overlay to it.
21493 (handle_display_prop): Determine whether property came from an overlay.
21494 Pass OVERLAY arg to handle_single_display_spec.
21495 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
21496 (load_overlay_strings): Fill in it->string_overlays.
21497 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
21498
21499 * xfaces.c (face_for_overlay_string): Function renamed from
21500 face_at_buffer_position_no_overlays, and add arg OVERLAY.
21501
21502 * dispextern.h (struct it): New elt string_overlays.
21503 New elt from_overlay, also in stack.
21504 Rearrange a few elements.
21505 (face_for_overlay_string): Decl renamed from
21506 face_at_buffer_position_no_overlays, and add argument.
21507
21508 2007-11-09 Richard Stallman <rms@gnu.org>
21509
21510 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
21511 to get the base face for an overlay string.
21512
21513 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
21514
21515 * xfaces.c (face_at_buffer_position_no_overlays): New function.
21516
21517 * xdisp.c (handle_stop): Move some code out of loop.
21518
21519 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21520
21521 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
21522 Fix conversion from Lisp object to ATSUFontID.
21523
21524 2007-11-09 Jason Rumney <jasonr@gnu.org>
21525
21526 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
21527
21528 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21529
21530 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
21531 Don't assume regions are aligned to page boundary.
21532 (print_load_command_name): Add LC_UUID if defined.
21533
21534 2007-11-09 Richard Stallman <rms@gnu.org>
21535
21536 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
21537
21538 2007-11-07 Jason Rumney <jasonr@gnu.org>
21539
21540 * s/windows95.h: Remove.
21541
21542 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
21543
21544 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
21545 abort with a message on unhandled store_type values.
21546
21547 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
21548
21549 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
21550 Remove HAVE_X11R5 and HAVE_X11R4.
21551
21552 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
21553
21554 * Makefile.in: Remove references to sunfns.c and sunfns.o.
21555
21556 2007-11-01 Johan Bockgård <bojohan@gnu.org>
21557
21558 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
21559 Don't set s->stippled_p here, since it has already been set by
21560 x_set_glyph_string_gc from x_draw_glyph_string.
21561
21562 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
21563
21564 * sunfns.c: Remove file.
21565
21566 * m/sun386.h:
21567 * m/sun2.h:
21568 * m/sparc.h: Remove Sun windows code.
21569
21570 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
21571
21572 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
21573 (init_keyboard): Set current_kboard's window-system to nil.
21574 (tty_read_avail_input): Typo.
21575 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
21576
21577 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
21578
21579 * s/usg5-4.h:
21580 * s/usg5-3.h:
21581 * s/ptx.h:
21582 * m/is386.h:
21583 * m/ibmps2-aix.h:
21584 * Makefile.in: Remove all mentions of X10.
21585
21586 * dispnew.c (syms_of_display): Don't mention version 10.
21587
21588 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
21589
21590 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
21591 ($(BLD)/abbrev.$(O)): Remove.
21592
21593 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
21594
21595 Rewrite abbrev.c in Elisp.
21596 * image.c (Qcount): Don't declare as extern.
21597 (syms_of_image): Initialize and staticpro `Qcount'.
21598 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
21599 * emacs.c (main): Don't call syms_of_abbrev.
21600 * Makefile.in (obj): Remove abbrev.o.
21601 (abbrev.o): Remove.
21602 * abbrev.c: Remove.
21603
21604 2007-10-26 Martin Rudalics <rudalics@gmx.at>
21605
21606 * window.c (window_min_size_2): Don't count header-line.
21607
21608 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
21609
21610 * frame.h (struct frame): Move all bit fields after the first bit
21611 field to take advantage of the available space. Group all the
21612 chars together to reduce wasted space due to padding.
21613
21614 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
21615
21616 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
21617
21618 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
21619 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
21620 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
21621 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
21622 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
21623 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
21624 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
21625 (last_marked, mark_object_loop_halt): Make static.
21626
21627 * frame.c (syms_of_frame) <delete-frame-functions>:
21628 Fix typo in docstring.
21629
21630 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
21631
21632 * w32.c (init_environment): Fix tiny memory leak.
21633 (w32_get_resource): Remove unused variable `ok'.
21634
21635 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
21636
21637 Make `window-system' into a keyboard-local variable (rather than
21638 frame-local as done originally by multi-tty).
21639
21640 * keyboard.h (struct kboard): Add Vwindow_system.
21641 * keyboard.c (init_kboard): Set a default for Vwindow_system.
21642 (mark_kboards): Mark Vwindow_system.
21643
21644 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
21645 (init_display): Don't set the obsolete `window-system' frame-param.
21646
21647 * xterm.c (x_term_init):
21648 * w32term.c (w32_create_terminal):
21649 * term.c (init_tty): Set Vwindow_system.
21650 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
21651 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
21652
21653 * xfns.c (Fx_create_frame, x_create_tip_frame):
21654 * w32fns.c (Fx_create_frame, x_create_tip_frame):
21655 * macfns.c (Fx_create_frame):
21656 Don't set the obsolete `window-system' frame-param.
21657
21658 * frame.h (Qwindow_system): Remove.
21659 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
21660 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
21661
21662 2007-10-24 Richard Stallman <rms@gnu.org>
21663
21664 * frame.c (x_figure_window_size): For fullscreen case,
21665 set USPosition | PPosition without clobbering rest of window_prompting.
21666
21667 * keyboard.c (Fcurrent_idle_time): Doc fix.
21668
21669 * print.c (Fwith_output_to_temp_buffer): Doc fix.
21670
21671 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
21672
21673 * process.c (unwind_request_sigio): Only define if __ultrix__.
21674
21675 * callproc.c (child_setup): Remove spurious *.
21676
21677 * lisp.h (Fget_text_property): Declare.
21678 (have_menus_p): Declare it here rather than in sys-dep header files.
21679 * macterm.h (have_menus_p):
21680 * msdos.h (have_menus_p):
21681 * xterm.h (have_menus_p): Remove.
21682
21683 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
21684 (Fmake_variable_frame_local): Just check the variable's const-ness
21685 rather than checking nil or t.
21686
21687 2007-10-22 Jason Rumney <jasonr@gnu.org>
21688
21689 * w32fns.c: Include math.h.
21690 (w32_abort): Declaration moved to nt/config.nt.
21691
21692 * s/ms-w32.h (HAVE_STDLIB_H): Define.
21693 (abort): Redefinition moved to nt/config.nt.
21694
21695 * m/windowsnt.h: Remove.
21696
21697 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
21698
21699 * emacs.c (Fdump_emacs): Fix typo in message.
21700 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
21701 <installation-directory>: Reflow docstring.
21702
21703 2007-10-22 Juri Linkov <juri@jurta.org>
21704
21705 * minibuf.c: Allow minibuffer default to be a list of default values.
21706 With empty input use the first element of this list as returned default.
21707 (string_to_object)
21708 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
21709 (read_minibuf): If defalt is cons, set histstring to its car.
21710 (Fread_string): If default_value is cons, set val to its car.
21711 (Fread_buffer): If def is cons, use its car.
21712 (Fcompleting_read): If defalt is cons, set val to its car.
21713
21714 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
21715
21716 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
21717
21718 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
21719
21720 * doc.c (Fdocumentation): Check for advice in all cases.
21721
21722 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
21723
21724 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
21725
21726 2007-10-19 Richard Stallman <rms@gnu.org>
21727
21728 * doc.c (Fdocumentation): Check for and handle an advised function.
21729
21730 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
21731
21732 * process.c (Fset_process_filter): Doc fix.
21733
21734 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
21735
21736 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
21737 which caused key-translation-map to applied repeatedly (thus breaking
21738 double-mode).
21739
21740 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
21741
21742 * xselect.c (x_own_selection, x_handle_selection_clear)
21743 (x_clear_frame_selections):
21744 * w32menu.c (list_of_panes, list_of_items):
21745 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
21746 * textprop.c (validate_plist, interval_has_all_properties)
21747 (interval_has_some_properties, interval_has_some_properties_list)
21748 (add_properties, text_property_list):
21749 * process.c (Fget_buffer_process, list_processes_1, status_notify):
21750 * minibuf.c (Fassoc_string):
21751 * macselect.c (x_own_selection, x_clear_frame_selections)
21752 (Fx_disown_selection_internal):
21753 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
21754 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
21755
21756 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
21757
21758 * process.c: Link to libs for calling res_init() if available.
21759 (Fmake_network_process): Call res_init() before getaddrinfo or
21760 gethostbyname, if possible.
21761
21762 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
21763
21764 * lread.c (read1): Set pvectype for char_tables.
21765
21766 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
21767 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
21768 Add type checks.
21769 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
21770
21771 * alloc.c (free_misc): Use XMISCTYPE.
21772 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
21773
21774 2007-10-17 Glenn Morris <rgm@gnu.org>
21775
21776 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
21777 (syms_of_minibuf): Add Qcompletion_ignore_case.
21778 * dired.c (Qcompletion_ignore_case): Change to external.
21779 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
21780 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
21781 (Fread_file_name): Use it rather than intern'ing.
21782
21783 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
21784 (Fread_coding_system): Ignore case of user input.
21785
21786 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21787
21788 * xdisp.c (handle_display_prop): Ignore display specs after
21789 replacing one when string text is being replaced.
21790 (handle_single_display_spec): Pretend as if characters with display
21791 property haven't been consumed only when buffer text is being replaced.
21792
21793 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
21794
21795 * xfns.c (Fx_create_frame, Fx_display_list):
21796 * window.c (window_fixed_size_p, enlarge_window)
21797 (shrink_window_lowest_first):
21798 * macterm.c (init_font_name_table):
21799 * macfns.c (Fx_create_frame, Fx_display_list):
21800 * lread.c (close_load_descs):
21801 * keyboard.c (read_char_x_menu_prompt):
21802 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
21803 * coding.c (code_convert_region_unwind): Test the type of an object
21804 rather than just !NILP before extracting data from it.
21805
21806 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
21807
21808 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
21809 (XMISCANY): New macro.
21810 (XMISCTYPE): Use it.
21811 (struct Lisp_Misc_Any): New type.
21812 (union Lisp_Misc): Use it.
21813 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
21814 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
21815 (find_symbol_value, set_internal, default_value, Fset_default)
21816 (Fmake_variable_buffer_local, Fmake_local_variable)
21817 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
21818 (Flocal_variable_if_set_p, Fvariable_binding_locus):
21819 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
21820 * alloc.c (allocate_buffer): Set the size and tag.
21821 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
21822 Use XMISCANY.
21823 (die): Follow the GNU convention for error messages.
21824 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
21825 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
21826 tag any more.
21827 (set_buffer_internal_1):
21828 * frame.c (store_frame_param):
21829 * eval.c (specbind):
21830 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
21831
21832 * doc.c (Fsnarf_documentation): Simplify.
21833
21834 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
21835
21836 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
21837 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
21838
21839 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
21840
21841 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
21842
21843 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
21844
21845 * eval.c (do_autoload): Don't save autoloads.
21846
21847 * data.c (Ffset): Save autoload of the function being set.
21848
21849 2007-10-07 John Paul Wallington <jpw@pobox.com>
21850
21851 * xfns.c (x_create_tip_frame): Set the `display-type' frame
21852 parameter before setting up faces.
21853
21854 2007-10-13 Eli Zaretskii <eliz@gnu.org>
21855
21856 * ccl.c (Fregister_code_conversion_map):
21857 * keyboard.c (append_tool_bar_item): Reformat last change.
21858
21859 * lisp.h (eabs): Rename from `abs'. All callers changed.
21860
21861 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
21862
21863 * buffer.c (add_overlay_mod_hooklist):
21864 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
21865 * fontset.c (make_fontset):
21866 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
21867 (append_tool_bar_item):
21868 * macmenu.c (grow_menu_items):
21869 * w32menu.c (grow_menu_items):
21870 * xmenu.c (grow_menu_items): Use larger_vector.
21871
21872 2007-10-13 Eli Zaretskii <eliz@gnu.org>
21873
21874 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
21875 selected frame'' on MSDOS).
21876
21877 2007-10-12 Martin Rudalics <rudalics@gmx.at>
21878
21879 * frame.c (Qexplicit_name): New variable.
21880 (x_report_frame_params): Report it in parameter alist.
21881 (syms_of_frame): Intern and staticpro it.
21882
21883 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
21884
21885 * macfns.c (x_create_tip_frame): Set terminal for frame.
21886
21887 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
21888
21889 * frame.c (Qenvironment): Remove.
21890 (syms_of_frame) <Qenvironment>: Don't initialize.
21891 (Fdelete_frame): Don't treat the `environment' param specially.
21892 * frame.h (Qenvironment): Don't declare.
21893 * callproc.c (set_initial_environment): Don't set unused frame param.
21894
21895 * frame.c (Fframe_with_environment): Remove.
21896 (syms_of_frame) <Sframe_with_environment>: Don't declare.
21897
21898 * lisp.h (Fframe_with_environment): Don't declare.
21899
21900 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
21901
21902 * indent.c (indent_tabs_mode, last_known_column)
21903 (last_known_column_modified): Make static.
21904 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
21905
21906 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
21907
21908 * puresize.h (BASE_PURESIZE): Increase to 1170000.
21909
21910 2007-10-09 Jason Rumney <jasonr@gnu.org>
21911
21912 * w32term.c (x_set_window_size): Disable code that attempts to tell
21913 Lisp code about a size change before it actually happens.
21914
21915 2007-10-09 Richard Stallman <rms@gnu.org>
21916
21917 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
21918 return HANDLED_RETURN.
21919
21920 2007-10-08 Martin Rudalics <rudalics@gmx.at>
21921
21922 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
21923 when there's an unread command event.
21924
21925 * frame.c (focus_follows_mouse): Move here from frame.el to allow
21926 window autoselection act appropriately when leaving selected frame.
21927 (syms_of_frame): Initialize focus_follows_mouse.
21928 * frame.h (focus_follows_mouse): Extern it.
21929 * macterm.c (XTread_socket): When focus_follows_mouse is nil
21930 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
21931 * msdos.c (dos_rawgetc): Likewise.
21932 * w32term.c (w32_read_socket): Likewise.
21933 * xterm.c (handle_one_xevent): Likewise.
21934 * xdisp.c (syms_of_xdisp): In doc-string of
21935 mouse-autoselect-window mention focus-follows-mouse.
21936
21937 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21938
21939 * macterm.c (mac_load_query_font): Fix missing return value.
21940 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
21941 Add BLOCK_INPUT.
21942
21943 2007-10-08 Richard Stallman <rms@gnu.org>
21944
21945 * xdisp.c (get_window_cursor_type): Implement documented behavior
21946 for cursor-in-non-selected-windows = t.
21947
21948 2007-10-08 Jason Rumney <jasonr@gnu.org>
21949
21950 * w32.c (w32_get_resource): Always close registry keys.
21951
21952 2007-10-08 Jason Rumney <jasonr@gnu.org>
21953
21954 * makefile.w32-in (LIBS): Add COMCTL32.
21955
21956 * w32fns.c (globals_of_w32fns): Init common controls.
21957
21958 2007-10-08 Richard Stallman <rms@gnu.org>
21959
21960 * image.c (our_memory_buffer): Rename from omfib_buffer.
21961
21962 2007-10-08 Richard Stallman <rms@gnu.org>
21963
21964 * buffer.c (Foverlays_at): Doc fix.
21965
21966 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
21967
21968 * fns.c (Fplist_put): Preserve uneven tail data.
21969
21970 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
21971
21972 * termhooks.h (enum event_kind): Remove trailing comma.
21973
21974 * frame.h (enum): Remove trailing comma.
21975
21976 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
21977
21978 * w32proc.c (delete_child): Don't terminate threads of zombies.
21979
21980 2007-10-08 Martin Rudalics <rudalics@gmx.at>
21981
21982 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
21983
21984 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
21985 last-repeatable-command.
21986 (init_kboard): Initialize Vlast_repeatable_command.
21987 (command_loop_1): Set it to real_this_command unless that was
21988 bound to an input event.
21989 (mark_kboards): Mark it.
21990
21991 2007-10-08 Richard Stallman <rms@gnu.org>
21992
21993 * eval.c (condition-case): Doc fix.
21994
21995 2007-10-08 Masatake YAMATO <jet@gyve.org>
21996
21997 * xfaces.c (tty_supports_face_attributes_p): Fix code
21998 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
21999 was copied and not edited.
22000
22001 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
22002
22003 Add new `input-decode-map' keymap and use it for terminal
22004 escape sequences.
22005 * keyboard.h (struct kboard): Add Vinput_decode_map.
22006 Remove Vlocal_key_translation_map.
22007 * keyboard.c (read_key_sequence): Add support for input-decode-map.
22008 (init_kboard): Init input-decode-map.
22009 Replace local-key-translation-map back with key-translation-map.
22010 (syms_of_keyboard): Declare input-decode-map.
22011 Remove local-key-translation-map. Update docstrings.
22012 (mark_kboards): Mark Vinput_decode_map.
22013 Don't mark Vlocal_key_translation_map.
22014 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
22015 Replace local-key-translation-map back with key-translation-map.
22016 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
22017 Bind in input-decode-map rather than function-key-map.
22018
22019 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
22020 This was made redundant by the previous introduction of XSETPVECTYPE.
22021
22022 2007-10-09 Richard Stallman <rms@gnu.org>
22023
22024 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
22025
22026 2007-09-29 Richard Stallman <rms@gnu.org>
22027
22028 * eval.c (internal_condition_case_2, internal_condition_case_1)
22029 (internal_condition_case): Reenable abort if x_catching_errors ()
22030 to see if that really happens and why.
22031
22032 2007-10-06 Andreas Schwab <schwab@suse.de>
22033
22034 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
22035
22036 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
22037
22038 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
22039
22040 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
22041
22042 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
22043
22044 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
22045
22046 * window.h (struct window):
22047 * window.c (struct save_window_data, struct saved_window):
22048 * termhooks.h (struct terminal):
22049 * process.h (struct Lisp_Process):
22050 * frame.h (struct frame):
22051 * buffer.h (struct buffer):
22052 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
22053 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
22054 The size field of (pseudo)vectors is now unsigned.
22055 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
22056
22057 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
22058 Turn `count' into an integer.
22059
22060 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
22061 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
22062 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
22063 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
22064 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
22065
22066 * alloc.c (allocate_pseudovector): New fun.
22067 (ALLOCATE_PSEUDOVECTOR): New macro.
22068 (allocate_window, allocate_terminal, allocate_frame)
22069 (allocate_process): Use it.
22070 (mark_vectorlike): New function.
22071 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
22072 (mark_terminals): Use it.
22073 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
22074 (Fmake_byte_code): Use XSETPVECTYPE.
22075
22076 * frame.c (Fframe_parameters): Minor simplification.
22077
22078 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
22079
22080 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
22081
22082 * buffer.c (Fget_buffer_create, init_buffer_once):
22083 * lread.c (defsubr):
22084 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
22085
22086 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
22087 defined differently in the m/*.h files.
22088 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
22089 (XSETPVECTYPE): New macro.
22090 (XSETPSEUDOVECTOR): Use it.
22091
22092 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
22093 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
22094
22095 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
22096 * lread.c (defvar_per_buffer):
22097 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
22098
22099 * window.c (candidate_window_p): Only consider as visible frames that
22100 are on the same terminal.
22101
22102 * m/ibms390x.h (MARKBIT): Remove unused macro.
22103
22104 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
22105
22106 * lread.c (Fload): Fix typo in docstring.
22107
22108 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
22109
22110 * floatfns.c (Fexpt): Manually check for overflows, so that a power
22111 of a non-zero value can't yield zero.
22112
22113 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
22114
22115 * term.c (term_clear_mouse_face, term_mouse_highlight)
22116 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
22117
22118 * print.c (safe_debug_print): Use XHASH.
22119
22120 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
22121 Lisp elements such as tags.
22122 (XHASH): New macro.
22123 (EQ): Use it.
22124 (SREF, SSET, STRING_COPYIN): Use SDATA.
22125 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
22126
22127 * alloc.c (mark_terminal): Remove left-over declaration.
22128 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
22129 (allocate_vectorlike): Remove type argument. Adjust callers.
22130 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
22131 Only handle the one remaining MEM_TYPE_VECTORLIKE.
22132
22133 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
22134 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
22135 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
22136 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
22137 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
22138 Use them.
22139
22140 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
22141 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
22142 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
22143
22144 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
22145
22146 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
22147 loaded by default.
22148
22149 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
22150
22151 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
22152 on this tty.
22153 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
22154
22155 * term.c (mouse_face_window): Rename from Qmouse_face_window.
22156 Update all users.
22157 (handle_one_term_event): Use Gpm_DrawPointer.
22158 (Fgpm_mouse_start): Rename from Fterm_open_connection.
22159 Signal errors instead of returning nil. Always return nil.
22160 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
22161 Make it a noop if gpm-mouse was not activated.
22162 (syms_of_term): Update names.
22163
22164 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
22165
22166 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
22167 (init_sys_modes): Check that gpm_tty is the current tty.
22168
22169 * alloc.c (allocate_terminal): Set the vector size to only count the
22170 lisp fields. Initialize those to nil.
22171 (mark_object): Don't treat terminals specially.
22172 (mark_terminal): Remove.
22173 (mark_terminals): Use mark_object instead.
22174
22175 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
22176 the GC to the beginning.
22177
22178 * indent.h:
22179 * indent.c: Use EMACS_INT for ints coming from Elisp data.
22180
22181 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
22182
22183 2007-09-25 Jason Rumney <jasonr@gnu.org>
22184
22185 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
22186
22187 * w32console.c (create_w32cons_output): Remove.
22188
22189 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
22190
22191 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
22192 (reset_sys_modes): Use reset_terminal_modes_hook.
22193
22194 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
22195
22196 * eval.c (do_autoload): Don't output any message.
22197
22198 2007-09-24 Juri Linkov <juri@jurta.org>
22199
22200 * emacs.c (standard_args): Change priority of "--no-splash"
22201 from 40 to 3. Add "--no-desktop" with the same priority.
22202
22203 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
22204
22205 * alloc.c (gc_sweep): Check cons cell mark bits word by word
22206 and optimize the case where they are all 1.
22207
22208 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
22209
22210 * lisp.h (abs): Define if not defined.
22211 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
22212 Don't define `abs', since it's defined in lisp.h.
22213
22214 2007-09-22 Eli Zaretskii <eliz@gnu.org>
22215
22216 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
22217 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
22218 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
22219 (init_tty): Use DEV_TTY instead of "/dev/tty".
22220 [WINDOWSNT]: No need to protect from NAME arg being null.
22221
22222 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
22223
22224 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
22225 up the tty state.
22226
22227 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
22228
22229 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
22230 (gpm_tty): Change its type.
22231 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
22232 (gpm_tty): Change its type and initialize it.
22233 (Fterm_open_connection): Check the frame is indeed a tty.
22234 Use the new gpm_tty.
22235 (Fterm_close_connection): Use the new gpm_tty.
22236 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
22237 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
22238
22239 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
22240
22241 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
22242 underline_color, to draw strike-through.
22243
22244 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
22245
22246 * lisp.h (allocate_terminal): Declare.
22247
22248 * window.c (candidate_window_p): Consider frames that are being placed
22249 by the user as somewhere between visible and iconified.
22250 (window_loop): Prefer windows on the current frame.
22251 (Fselect_window): Move the use of select-frame to the beginning so we
22252 can just delegate all the work (it'll call us back anyway).
22253
22254 * frame.c (Qdisplay_environment_variable):
22255 * frame.h (Qdisplay_environment_variable): Delete.
22256
22257 * .gdbinit (xbacktrace): Print the arg's address rather than the value
22258 of the first arg, since that value may be a union.
22259
22260 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
22261 parameter rather than Qdisplay_environment_variable. If all else
22262 fails, look for DISPLAY in initial-environment.
22263
22264 2007-09-21 Glenn Morris <rgm@gnu.org>
22265
22266 * Makefile.in (emacstool): Remove target.
22267 (lisp, shortlisp): Remove termdev.elc.
22268
22269 2007-09-21 Markus Triska <markus.triska@gmx.at>
22270
22271 * xterm.c (x_delete_display): Compile session management conditionally.
22272
22273 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
22274
22275 * callproc.c (getenv_internal_1): New function.
22276 (getenv_internal): Use it.
22277 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
22278
22279 * terminal.c (get_terminal): Don't accept ints to represent terminals.
22280 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
22281 (Fset_terminal_parameter): Work with dead terminals as well.
22282 (Fmodify_terminal_parameters): Remove.
22283
22284 * terminal.c (get_terminal): Handle terminals.
22285 Make sure the terminal returned is live.
22286 (create_terminal): Use allocate_terminal.
22287 (mark_terminals): Move to alloc.c.
22288 (delete_terminal): Use terminal->name as liveness status.
22289 NULL out fields after freeing their contents.
22290 Don't deallocate the object.
22291 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
22292 rather than an int.
22293 (Fterminal_live_p): Accept non-integer arguments.
22294 (Fterminal_list): Return terminal objects rather than an ints.
22295
22296 * alloc.c (enum mem_type): New member for `terminal' objects.
22297 (allocate_terminal): New function.
22298 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
22299 Handle terminals.
22300 (mark_terminal): New fun.
22301 (mark_terminals): Move from terminal.c.
22302
22303 * term.c (get_tty_terminal): Don't treat output_initial specially.
22304 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
22305 (delete_tty): Use terminal->name as liveness status.
22306
22307 * termhooks.h (struct terminal): Make it into a pseudovector.
22308 Remove `deleted' replaced by checking `name's nullness.
22309
22310 * print.c (print_object): Handle terminals.
22311
22312 * lisp.h (enum pvec_type): New `terminal' pseudovector.
22313 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
22314
22315 * frame.c (make_terminal_frame):
22316 * keyboard.c (tty_read_avail_input):
22317 * w32term.c (x_delete_terminal):
22318 * xfns.c (Fx_create_frame, x_create_tip_frame):
22319 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
22320
22321 2007-09-20 Glenn Morris <rgm@gnu.org>
22322
22323 * process.c (Fmake_network_process): Doc fix.
22324
22325 2007-09-19 Jason Rumney <jasonr@gnu.org>
22326
22327 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
22328
22329 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
22330
22331 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
22332 Fix a C warning regarding variable constness.
22333
22334 * xterm.c (handle_one_xevent): Fix a C warning.
22335
22336 2007-09-18 Jason Rumney <jasonr@gnu.org>
22337
22338 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
22339
22340 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
22341
22342 * gtkutil.c (gdpy_def): New variable.
22343 (xg_initialize): Initialize gdpy_def.
22344 (xg_display_close): If no other display exists, set gdpy_def to a
22345 new connection.
22346
22347 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
22348
22349 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
22350 when we have no file name for the icon.
22351 (xg_tool_bar_expose_callback): Remove.
22352 (xg_create_tool_bar): Don't connect expose signal to
22353 xg_tool_bar_expose_callback.
22354 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
22355
22356 2007-09-16 Andreas Schwab <schwab@suse.de>
22357
22358 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
22359 values instead of zapping them.
22360
22361 2007-09-14 Glenn Morris <rgm@gnu.org>
22362
22363 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
22364 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
22365 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
22366 scope and rename to omfib_buffer for clarity.
22367 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
22368
22369 2007-09-14 Kenichi Handa <handa@m17n.org>
22370
22371 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
22372
22373 2007-09-13 Jason Rumney <jasonr@gnu.org>
22374
22375 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
22376
22377 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
22378
22379 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
22380 (mac_term_init): Call here instead, passing rif.
22381
22382 2007-09-13 Glenn Morris <rgm@gnu.org>
22383
22384 * s/hpux.h: No longer define `static' as nothing.
22385
22386 2007-09-13 Johan Bockgård <bojohan@gnu.org>
22387
22388 * callint.c (Fcall_interactively): Remove unused var `fun'.
22389
22390 2007-09-12 Romain Francoise <romain@orebokech.com>
22391
22392 * window.c (prefer_window_split_horizontally, display_buffer):
22393 Revert 2007-09-08 change.
22394
22395 2007-09-12 Glenn Morris <rgm@gnu.org>
22396
22397 * alloca.c: Remove file.
22398 * Makefile.in (alloca): Do not undef.
22399 (allocaobj, alloca.o): Remove.
22400 (otherobj): Remove allocaobj.
22401 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
22402 * regex.c (C_ALLOCA): Remove all references and code that was only
22403 used when this was defined.
22404 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
22405 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
22406 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
22407
22408 * Makefile.in (SOURCES, unlock, relock): Delete.
22409
22410 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
22411 (menu_grab_callback): All uses changed.
22412
22413 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
22414 (x_reply_selection_request): All uses changed.
22415
22416 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
22417
22418 * lread.c (load_warn_old_style_backquotes): Change message to look
22419 better when it appears in the middle of byte-compiler messages.
22420
22421 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
22422
22423 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
22424
22425 * xterm.c (x_create_terminal): Add comment.
22426
22427 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
22428
22429 2007-09-10 Richard Stallman <rms@gnu.org>
22430
22431 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
22432
22433 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
22434
22435 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
22436 (DEFUN): Document `intspec', use it instead of `prompt'.
22437
22438 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
22439
22440 * data.c (Finteractive_form): If the interactive specification starts
22441 with a `(', use it as a Lisp form.
22442
22443 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
22444 name and file modes.
22445
22446 * callint.c (Fcall_interactively): Comment fixes.
22447
22448 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
22449
22450 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
22451 and compiled functions.
22452
22453 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
22454
22455 * window.c (prefer_window_split_horizontally): New variable.
22456 (display_buffer): Consider splitting window horizontally depending
22457 on prefer_window_split_horizontally.
22458
22459 2007-09-08 Eli Zaretskii <eliz@gnu.org>
22460
22461 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
22462
22463 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
22464
22465 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
22466
22467 * frame.c (x_set_frame_parameters): Check number is positive before
22468 using XFASTINT.
22469
22470 * window.c (freeze_window_start): Don't presume selected_window holds
22471 a window object.
22472 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
22473
22474 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
22475
22476 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
22477
22478 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
22479
22480 * window.c (Vsplit_window_preferred_function): New var.
22481 (Fdisplay_buffer): Use it.
22482 (syms_of_window): Export, and initialize it.
22483
22484 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
22485
22486 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
22487
22488 2007-09-06 Glenn Morris <rgm@gnu.org>
22489
22490 * gtkutil.c (menu_grab_callback) <cnt>:
22491 * xselect.c (x_reply_selection_request) <cnt>: Move static
22492 variable to file scope.
22493
22494 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
22495
22496 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
22497 consistent values of selected_frame and selected_window.
22498
22499 2007-09-04 Jason Rumney <jasonr@gnu.org>
22500
22501 * w32console.c (initialize_w32_display): Zero unused hooks.
22502
22503 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
22504
22505 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
22506 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
22507
22508 2007-09-04 Jason Rumney <jasonr@gnu.org>
22509
22510 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
22511 in w32console.c. Set up input. Remove XXX comments that have been
22512 confirmed as correct.
22513
22514 * s/ms-w32.h (MULTI_KBOARD): Define.
22515
22516 * w32console.c (one_and_only_w32cons): Remove.
22517 (initialize_w32_display): Take terminal argument.
22518
22519 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
22520 initialize_w32_display.
22521 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
22522
22523 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
22524
22525 * keyboard.c (discard_mouse_events): Discard it.
22526 (make_lispy_event): Translate it to a lisp event.
22527 (lispy_wheel_names): Add wheel-left and right events.
22528 (syms_of_keyboard): Enlarge wheel_syms.
22529
22530 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
22531 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
22532
22533 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
22534
22535 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
22536 from WM_MOUSEHWHEEL.
22537 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
22538
22539 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
22540 terminal.
22541
22542 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
22543 keyboard for the terminal.
22544
22545 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
22546
22547 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
22548 (Vresume_tty_hook): Rename from Vresume_tty_functions.
22549 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
22550 and resume-tty-function to resume-tty-hook.
22551 (Fsuspend_tty, Fresume_tty): Use new names.
22552
22553 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
22554
22555 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
22556 if it starts with "n:".
22557
22558 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
22559
22560 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
22561
22562 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
22563
22564 * frame.h:
22565 * frame.c (Qterm_environment_variable): Remove.
22566 (syms_of_frame): Don't init and staticpro it.
22567
22568 * callproc.c (getenv_internal): Remove special case for $TERM.
22569
22570 * callproc.c (Vinitial_environment): New variable.
22571 (set_initial_environment): Initialize it.
22572 (syms_of_callproc): Declare it.
22573 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
22574 TERM under which a process runs is never related to the TERM in which
22575 Emacs is running.
22576
22577 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
22578
22579 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
22580 * s/darwin.h: ... do it here.
22581
22582 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
22583
22584 * lisp.h (set_initial_environment): Rename from set_global_environment.
22585
22586 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
22587 removed by mistake on the multi-tty branch.
22588
22589 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
22590 (Fmodify_frame_parameters): Return a value.
22591
22592 * image.c (png_load): Comment-out var only used in commented-out code.
22593
22594 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
22595 before passing it to mark_object.
22596
22597 * xfaces.c (internal_resolve_face_name): Return a value.
22598 (internal_resolve_face_name, resolve_face_name_error): Comment out.
22599
22600 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
22601 (x_icon): Comment-out var only used in commented-out code.
22602
22603 2007-08-29 Romain Francoise <romain@orebokech.com>
22604
22605 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
22606 QUIT hasn't been provided.
22607
22608 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
22609
22610 * callproc.c (child_setup, getenv_internal): Use the
22611 display-environment-variable and term-environment-variable frame params.
22612 (set_initial_environment): Initialise Vprocess_environment.
22613
22614 * config.in: Disable multi-keyboard support on a mac.
22615
22616 * frame.c (Qterm_environment_variable)
22617 (Qdisplay_environment_variable): New variables.
22618 (syms_of_frame): Intern and staticpro them.
22619 (Fmake_terminal_frame): Disable output method test.
22620
22621 * frame.h: Declare them here.
22622
22623 * macfns.c (x_set_mouse_color): Get rif from the frame.
22624 (x_set_tool_bar_lines): Don't use updating_frame.
22625 (mac_window): Add 2 new parameters for consistency with other systems.
22626 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
22627 frame parameters following what is done in X11 and w32. Don't use
22628 FRAME_MAC_DISPLAY_INFO.
22629 (Fx_open_connection, start_hourglass): Remove window-system check.
22630 (x_create_tip_frame): Get the keyboard from the terminal.
22631
22632 * macmenu.c: Reorder includes.
22633 (Fx_popup_menu): Use terminal specific mouse_position_hook.
22634
22635 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
22636 terminal parameter.
22637 (x_clear_frame): Add a frame parameter.
22638 (note_mouse_movement): Get rif from the frame.
22639 (mac_term_init): Initialize the terminal.
22640 (mac_initialize): Make static and move terminal initialization ...
22641 (mac_create_terminal): ... to this new function.
22642
22643 * macterm.h (struct mac_display_info): Add terminal.
22644 (mac_initialize): Delete declaration.
22645
22646 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
22647
22648 * sysdep.c: Comment out text after #endif.
22649
22650 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
22651 is defined. Better initialize ttys in windows. Use terminal
22652 specific mouse_position_hook.
22653
22654 * termhooks.h (union display_info): Add mac_display_info.
22655
22656 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
22657 Set the default minibuffer frame, window_system and the rest of the
22658 frame parameters following what is done in X11.
22659
22660 * w32term.c (w32_initialize): Make static.
22661
22662 * xselect.c (x_handle_selection_clear): Only access
22663 terminal->kboard when MULTI_KBOARD is defined.
22664
22665 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
22666 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
22667
22668 2007-08-29 Jason Rumney <jasonr@gnu.org>
22669
22670 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
22671 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
22672
22673 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
22674 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
22675
22676 * keyboard.c (restore_kboard_configuration): Only define when
22677 MULTI_KBOARD defined.
22678
22679 * makefile.w32-in: Update dependancies from Makefile.in.
22680 (OBJ1): Add terminal.$(O)
22681
22682 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
22683 Don't define function body.
22684 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
22685
22686 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
22687
22688 * w32.c (request_sigio, unrequest_sigio): Remove.
22689
22690 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
22691 (w32con_clear_frame, w32con_clear_end_of_line)
22692 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
22693 (w32con_delete_glyphs, w32con_set_terminal_window)
22694 (scroll_line, w32_sys_ring_bell): Add frame arg.
22695 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
22696 Add terminal arg.
22697 (PICK_FRAME): Remove.
22698 (w32con_write_glyphs): Use frame specific terminal coding.
22699 (one_and_only_w32cons): New global variable.
22700 (initialize_w32_display): Use it for storing hooks.
22701 (create_w32cons_output): New function.
22702
22703 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
22704 arg a frame.
22705
22706 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
22707 Set window_system.
22708 (x_set_tool_bar_lines): Don't use updating_frame.
22709 (Fx_create_frame): Set terminal and ref count.
22710 (Fx_open_connection): Remove window-system check.
22711
22712 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
22713
22714 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
22715 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
22716 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
22717 Add frame arg.
22718 (x_delete_terminal, w32_create_terminal): New functions.
22719 (w32_term_init): Create a terminal.
22720 (w32_initialize): Move terminal specific initialization to
22721 w32_create_terminal.
22722
22723 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
22724 (w32_clear_rect, w32_clear_area): Use background from frame.
22725 (w32_display_info): Add terminal.
22726 (w32_sys_ring_bell, x_delete_display): Declare here.
22727
22728 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
22729
22730 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
22731
22732 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
22733
22734 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
22735 Fix get_named_tty calls for the controlling tty.
22736
22737 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
22738
22739 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
22740
22741 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
22742
22743 * term.c (tty_insert_glyphs): Add missing first parameter.
22744
22745 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
22746
22747 * buffer.c (Fbuffer_list, Fbury_buffer):
22748 Take frame->buried_buffer_list into account.
22749
22750 * cm.c (current_tty): New variable, for cmputc().
22751 (cmputc): Use it.
22752 (cmcheckmagic): Add tty parameter, look up terminal streams there.
22753 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
22754 (cmgoto): Add tty parameter. Pass it on to calccost().
22755 Use emacs_tputs() instead of tputs().
22756
22757 * cm.h (emacs_tputs): New macro to set current_tty, and then call
22758 tputs().
22759 (current_tty): New variable, for cmputc().
22760 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
22761
22762 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
22763 (internal_condition_case, internal_condition_case_1)
22764 (internal_condition_case_2): Don't abort when x_catching_errors.
22765
22766 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
22767 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
22768 prevent crashes caused by bogus longjmps in read_char.
22769
22770 * keymap.h (Fset_keymap_parent): Add EXFUN.
22771
22772 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
22773 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
22774 Remove redundant definition.
22775
22776 * macfns.c (x_set_mouse_color, x_make_gc):
22777 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22778
22779 * w32term.c (x_free_frame_resources):
22780 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22781 (w32_initialize): Use the accessor macros for terminal characteristics.
22782
22783 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
22784 Use the accessor macros for terminal characteristics.
22785 * msdos.c (internal_terminal_init): Use the accessor macros for
22786 terminal characteristics.
22787 (ScreenVisualBell, internal_terminal_init):
22788 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22789
22790 * termopts.h (no_redraw_on_reenter): Declare.
22791
22792 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
22793 (mark_terminals, mark_ttys): Declare.
22794 (Fgarbage_collect): Call them.
22795 (mark_object): Mark buried_buffer_list.
22796
22797 * prefix-args.c: Include stdlib.h for exit.
22798
22799 * syssignal.h: Add comment.
22800
22801 * indent.c: Include stdio.h.
22802
22803 * window.h (Vinitial_window_system): Declare.
22804 (Vwindow_system): Delete declaration.
22805
22806 * fontset.c (Finternal_char_font): Use FRAME_RIF.
22807
22808 * image.c (lookup_image): Don't initialize `c' until the xasserts
22809 have been run.
22810
22811 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
22812 FRAME_FOREGROUND_PIXEL.
22813
22814 * print.c (print_preprocess): Don't lose print_depth levels while
22815 iterating.
22816
22817 * widget.c (update_from_various_frame_slots):
22818 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
22819
22820 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
22821 frames.
22822 (window_internal_height): Remove bogus make_number call.
22823 (init_window_once): Call make_terminal_frame with two zero parameters.
22824
22825 * fileio.c (Fread_file_name): Update comment.
22826
22827 * callint.c (Fcall_interactively):
22828 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
22829 Make sure it is correctly unwound.
22830
22831 * xsmfns.c (x_session_close): New function.
22832
22833 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
22834 Delete declarations.
22835
22836 * xterm.h: Remove declaration for x_fully_uncatch_errors.
22837 (x_output): Remove background_pixel and foreground_pixel fields.
22838 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
22839 (x_delete_device, x_session_close): Declare.
22840
22841 * lread.c: Include setjmp.h. Update declaration of `read_char'.
22842 (read_filtered_event): Call `read_char' with a local
22843 `wrong_kboard_jmpbuf'.
22844
22845 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
22846 Don't call single_kboard_state. Use FRAME_RIF.
22847
22848 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
22849 systems.
22850
22851 * lisp.h (set_process_environment): Rename to `set_global_environment'.
22852 (Fframe_with_environment, Fset_input_meta_mode)
22853 (Fset_quit_char): EXFUN.
22854 (x_create_device, tty_output, terminal, tty_display_info): Declare.
22855 (init_sys_modes, reset_sys_modes): Update prototypes.
22856 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
22857
22858 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
22859 Vlocal_key_translation_map, and Vkeyboard_translate_table.
22860 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
22861 Delete declarations.
22862 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
22863 (temporarily_switch_to_single_kboard, tty_read_avail_input):
22864 New declarations.
22865
22866 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
22867 already does that during init_display(). Call syms_of_keymap
22868 before syms_of_keyboard. Call `syms_of_terminal'.
22869 Call set_initial_environment, not set_process_environment.
22870 (shut_down_emacs): Call reset_all_sys_modes() instead of
22871 reset_sys_modes().
22872
22873 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
22874 (internal_resolve_face_name, resolve_face_name_error): New functions.
22875 (resolve_face_name): Protect against loops and errors thrown by Fget.
22876 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
22877 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
22878
22879 * scroll.c: Replace CURTTY() with local variables throughout the
22880 file (where applicable).
22881 (calculate_scrolling, calculate_direct_scrolling)
22882 (scrolling_1, scroll_cost): Use the accessor macros for terminal
22883 characteristics.
22884
22885 * keymap.c (Vfunction_key_map): Remove.
22886 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
22887 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
22888 (Vkey_translation_map): Remove.
22889 (syms_of_keymap): Remove DEFVAR for key-translation-map.
22890 (Fdescribe_buffer_bindings)
22891 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
22892 Update for terminal-local key-translation-map.
22893
22894 * Makefile.in (callproc.o): Update dependencies.
22895 (lisp, shortlisp): Add termdev.elc.
22896 (obj): Add terminal.o.
22897 (terminal.o): Add dependencies.
22898 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
22899 (data.o, fns.o): Add termhooks.h dependency.
22900 (SOME_MACHINE_LISP): Add dnd.elc.
22901 (minibuf.o): Fix typo.
22902 Update dependencies.
22903
22904 * data.c (do_symval_forwarding, store_symval_forwarding)
22905 (find_symbol_value): Use the selected frame's keyboard, not
22906 current_kboard.
22907
22908 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
22909 Vwindow_system.
22910
22911 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
22912 Fmenu_bar_open.
22913 (syms_of_xmenu): Update defsubr.
22914 (mouse_position_for_popup, Fx_popup_menu)
22915 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
22916 (set_frame_menubar, free_frame_menubar)
22917 (create_and_show_popup_menu, xmenu_show)
22918 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
22919 an X frame.
22920
22921 * xselect.c (x_own_selection): Abort if not an X frame.
22922 (some_frame_on_display): Check if it is an X frame.
22923 (x_handle_selection_clear): Deal with MULTI_KBOARD.
22924
22925 * coding.c: Include frame.h and termhooks.h.
22926 (terminal_coding, keyboard_coding): Delete.
22927 (Fset_terminal_coding_system_internal)
22928 (Fset_keyboard_coding_system_internal)
22929 (Fkeyboard_coding_system)
22930 (Fterminal_coding_system): Add a terminal parameter.
22931 Get terminal_coding from the terminal.
22932 (init_coding_once): Don't call setup_coding_system here.
22933
22934 * dispextern.h (set_scroll_region, turn_off_insert)
22935 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
22936 (tty_clear_end_of_line, tty_setup_colors)
22937 (delete_tty, updating_frame)
22938 (produce_special_glyphs, produce_glyphs, write_glyphs)
22939 (insert_glyphs): Remove.
22940 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
22941 (tty_turn_off_highlight, get_tty_size): Add declaration.
22942 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
22943
22944 * frame.h (enum output_method): Add output_initial.
22945 (struct x_output): Delete.
22946 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
22947 Access foreground_pixel and background_pixel directly from the frame.
22948 (tty_display): Delete.
22949 (struct frame): Add buried_buffer_list, foreground_pixel,
22950 background_pixel and terminal. Delete kboard.
22951 (union output_data): Add tty.
22952 (FRAME_KBOARD): Get the kboard from the terminal.
22953 (FRAME_INITIAL_P): New macro.
22954 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
22955 (Qterm_environment_variable, Qdisplay_environment_variable)
22956 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
22957 New declarations.
22958
22959 * termchar.h (tty_output, tty_display_info): New structures.
22960 (tty_list): Declare.
22961 (FRAME_TTY, CURTTY): New macros.
22962 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
22963 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
22964 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
22965 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
22966
22967 * callproc.c: Include frame.h and termhooks.h, for terminal
22968 parameters.
22969 (add_env): New function.
22970 (child_setup): Use it.
22971 (child_setup, getenv_internal): Handle the new Vprocess_environment.
22972 (getenv_internal): Fix get_terminal_param call.
22973 (Fgetenv_internal, egetenv): Update doc.
22974 (syms_of_callproc): Initialize Vprocess_environment to nil.
22975 Register and initialize them. Remove obsolete defvars. Update doc
22976 strings.
22977 (child_setup): Handle Vlocal_environment_variables.
22978 (getenv_internal): Add terminal parameter.
22979 Handle Vlocal_environment_variables.
22980 (Fgetenv_internal): Add terminal parameter.
22981 (child_setup, getenv_internal, Fgetenv_internal): Store the local
22982 environment in a frame (not terminal) parameter. Update doc strings.
22983 (set_initial_environment): Rename from set_global_environment.
22984 Store Emacs environment in initial frame parameter.
22985
22986 * xdisp.c (redisplay_internal): Update references to
22987 `previous_terminal_frame'.
22988 (display_mode_line, Fformat_mode_line): Replace calls to
22989 `push_frame_kboard' with `push_kboard'.
22990 (get_glyph_string_clip_rects): Add extra parentheses and
22991 braces to prevent compiler warnings.
22992 (calc_pixel_width_or_height): Add xassert to check that the
22993 frame is alive. Don't call `lookup_image' on a termcap frame.
22994 (message2_nolog, message3_nolog, redisplay_internal)
22995 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
22996 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
22997 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
22998 (Fx_display_pixel_width, Fx_display_pixel_height)
22999 (Fx_display_planes, Fx_display_color_cells)
23000 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
23001 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
23002 (Fx_display_backing_store, Fx_display_visual_class)
23003 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
23004 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
23005
23006 * xfns.c (x_set_foreground_color x_set_background_color)
23007 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
23008 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
23009 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
23010 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
23011 terminal that is being deleted.
23012 (Fx_create_frame): Use `store_frame_param' to set `window-system'
23013 frame parameter, and make sure it overrides any user-supplied setting.
23014 (Fx_close_connection, Fx_synchronize): Unify argument names with
23015 the rest of the DEFUNs.
23016
23017 * dispnew.c (Fsend_string_to_terminal): Update call to
23018 `get_tty_terminal'.
23019 (Fredraw_frame, Fsend_string_to_terminal)
23020 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
23021 FRAME_TERMCAP_P and FRAME_TTY.
23022 (window_change_signal): Don't believe width/height values that are
23023 impossibly small.
23024 (Vinitial_window_system): Rename from Vwindow_system.
23025 (termscript, Wcm, rif): Delete.
23026
23027 * termhooks.h (struct terminal): New struct containing the
23028 previously global text display hooks and new members NAME,
23029 DELETED and PARAM_ALIST.
23030 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
23031 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
23032 (FRAME_RIF): New macros.
23033 (get_terminal_param, get_device): New declarations.
23034 (termscript): Delete declaration.
23035
23036 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
23037 (XTflash, x_free_frame_resources, x_scroll_bar_create)
23038 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
23039 FRAME_FOREGROUND_PIXEL.
23040 (x_fully_uncatch_errors): Disable definition.
23041 (x_scroll_bar_expose): Fix reference to foreground pixel.
23042 (XTread_socket): Disable loop on all X displays.
23043 (x_delete_terminal): Don't set terminal->deleted and let
23044 delete_terminal delete the frames on the terminal.
23045 (x_delete_display): Doc update to reflect changes in
23046 delete_terminal.
23047 (x_display_info) <terminal>: Move member earlier in the struct.
23048 (deleting_tty): Remove old variable.
23049 (Fsuspend_tty): Call clear_tty_hooks.
23050 (Fresume_tty, init_tty): Call set_tty_hooks.
23051 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
23052 errors on X frames.
23053 (x_catch_errors_unwind): Abort if x_error_message is NULL.
23054 (handle_one_xevent): Initialize `f' to NULL.
23055 (x_delete_terminal, x_create_terminal): New functions.
23056 (XTset_terminal_modes, XTreset_terminal_modes)
23057 (XTread_socket, x_connection_closed, x_term_init)
23058 (x_term_init, x_delete_display): Add terminal parameter.
23059 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
23060 X connections.
23061
23062 * frame.c: Include termchar.h.
23063 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
23064 (Qwindow_system, Qenvironment, Qterm_environment_variable)
23065 (Qdisplay_environment_variable): New vars.
23066 (Fframep): Deal with output_initial.
23067 (Fframe-live-p): Doc fix.
23068 (Fwindow-system): New function.
23069 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
23070 (make_terminal_frame): Don't create frames on a terminal that is
23071 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
23072 (store_frame_param): Check for found_for_frame before calling XFRAME.
23073 (Fmake_terminal_frame): Handle NULL tty names correctly.
23074 (syms_of_frame): Enhance doc string of `default-frame-alist'.
23075 (Fdelete_frame): Remove unused variable `count'. Don't allow other
23076 frames to refer to a deleted frame in their 'environment parameter.
23077 (Fframe_with_environment): New function.
23078 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
23079 (get_future_frame_param): New function.
23080 (Fmake_terminal_frame): Use it.
23081 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
23082
23083 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
23084 * sysdep.c (reset_sys_modes): Update for renames.
23085
23086 * keyboard.c (tty_read_avail_input): New function.
23087 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
23088 (syms_of_keyboard): Defsubr them.
23089 (Fset_input_meta_mode, Fset_quit_char): New functions.
23090 (Fset_input_mode): Split to above functions.
23091 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
23092 parameter. Use it in call to `read_char'.
23093 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
23094 Set wrong_kboard_jmpbuf correctly in recursive calls.
23095 Use current_kboard to access Vkeyboard_translate_table.
23096 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
23097 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
23098 Update longjmp invocations. Remember the original current_kboard,
23099 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
23100 changes it. Comment out unnecessary calls to
23101 `record_single_kboard_state' and `any_kboard_state'.
23102 Update recursive calls.
23103 (wrong_kboard_jmpbuf): Remove global variable.
23104 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
23105 Handle deleted interrupted_kboards correctly; that is a legal
23106 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
23107 and read_char calls. Abort if interrupted_kboard died in read_char.
23108 (any_kboard_state, single_kboard_state)
23109 (push_frame_kboard): Remove function.
23110 (pop_kboard): Switch out of single_kboard mode if the kboard has
23111 been deleted. Remove unused variable. Help debugging by not
23112 changing current_kboard unnecessarily. Set current_kboard to the
23113 kboard of the selected frame when the stored kboard object has
23114 been deleted before pop_kboard.
23115 (temporarily_switch_to_single_kboard): Change first parameter to a
23116 frame pointer. Throw an error when caller wants to change kboards
23117 while in single_kboard mode. Don't push_kboard if we weren't in
23118 single kboard state. Don't pop_kboard if we popped into any
23119 kboard state.
23120 (restore_kboard_configuration): Abort if pop_kboard changed the
23121 kboard in single_kboard mode. Call pop_kboard only after setting
23122 up single_kboard mode.
23123 (Frecursive_edit): Switch to single_kboard mode only in nested
23124 command loops.
23125 (cmd_error, command_loop, command_loop_1, timer_check):
23126 Comment out unnecessary call to `any_kboard_state' and
23127 `record_single_kboard_state'.
23128 (delete_kboard): Exit single_kboard mode if we have just deleted
23129 that kboard. Use FRAME_KBOARD.
23130 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
23131 `fatal_error_signal'.
23132 (record_single_kboard_state): Don't push_kboard if we weren't in
23133 single kboard state. Don't pop_kboard if we popped into any
23134 kboard state.
23135 (push_frame_kboard): Rename to push_kboard.
23136 (kbd_buffer_get_event): Use FRAME_TERMINAL.
23137 (read_avail_input): Read input from all terminals.
23138 (mark_kboards): Also mark Vkeyboard_translate_table.
23139 (kbd_buffer_store_event_hold): Simplify condition.
23140 (read_key_sequence): Reinitialize fkey and keytran at each replay.
23141 (Vkeyboard_translate_table): Move to struct kboard.
23142 (init_kboard): Initialize Vkeyboard_translate_table.
23143 (syms_of_keyboard): Use DEFVAR_KBOARD to define
23144 Vkeyboard_translate_table. Update doc strings. Update docs of
23145 local-function-key-map and function-key-map.
23146
23147 * terminal.c: New file.
23148
23149 * term.c: Include errno.h.
23150 (Vring_bell_function, device_list, initial_device)
23151 (next_device_id, ring_bell, update_begin, update_end)
23152 (set_terminal_window, cursor_to, raw_cursor_to)
23153 (clear_to_end, clear_frame, clear_end_of_line)
23154 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
23155 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
23156 (syms_of_term): Move their initialization to terminal.c.
23157 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
23158 (Ftty_display_color_cells)
23159 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
23160 (clear_tty_hooks, set_tty_hooks)
23161 (init_tty, maybe_fatal): New functions.
23162 (Ftty_type): Return nil if terminal is not on a tty instead of
23163 throwing an error. Doc update.
23164 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
23165 Doc update. Initialize new subrs and variables.
23166 (delete_tty): Use terminal->deleted.
23167 (tty_set_terminal_modes): Rename from set_terminal_modes.
23168 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
23169 (set_scroll_region): Rename to `tty_set_scroll_region'.
23170 (turn_on_insert): Rename to `tty_turn_on_insert'.
23171 (turn_off_insert): Rename to `tty_turn_off_insert'.
23172 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
23173 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
23174 (toggle_highligh): Rename to `tty_toggle_highlight'.
23175 (background_highlight): Rename to `tty_background_highlight'.
23176 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
23177 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
23178 (tty_set_scroll_region, tty_background_highlight)
23179 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
23180 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
23181 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
23182 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
23183 Add static modifier.
23184 (tty_reset_terminal_modes, tty_set_terminal_window)
23185 (tty_set_scroll_region, tty_background_highlight)
23186 (tty_highlight_if_desired, tty_cursor_to)
23187 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
23188 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
23189 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
23190 renames.
23191
23192 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
23193
23194 * keyboard.c: Qrtl is new.
23195 (parse_tool_bar_item): Handle :rtl keyword.
23196 (syms_of_keyboard): Intern :rtl keyword.
23197
23198 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
23199
23200 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
23201 so no Lisp code is executed.
23202 (file_for_image, find_rtl_image): New functions.
23203 (xg_get_image_for_pixmap): Use file_for_image.
23204 (update_frame_tool_bar): If direction is RTL, use RTL image if
23205 defined. Use Gtk stock images if defined.
23206
23207 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23208
23209 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
23210 for nonexistent or zero-width glyph in composition glyph.
23211
23212 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
23213
23214 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
23215
23216 * xdisp.c (Finvisible_p): New function.
23217 (syms_of_xdisp): defsubr it.
23218
23219 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
23220
23221 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
23222 Doc fixes.
23223
23224 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23225
23226 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
23227
23228 2007-08-24 Martin Rudalics <rudalics@gmx.at>
23229
23230 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
23231 whether decoding has modified buffer contents.
23232
23233 2007-08-24 Jason Rumney <jasonr@gnu.org>
23234
23235 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
23236 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
23237 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
23238 (init_svg_functions) [HAVE_NTGUI]: New function.
23239 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
23240 (svg_load_image): Use them.
23241 (svg_load_image) [HAVE_NTGUI]: Implement background.
23242
23243 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23244
23245 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
23246 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
23247 (LIBX): Remove @RSVG_LIBS@.
23248 (LIBES): Add $(RSVG_LIBS).
23249
23250 * image.c (svg_load_image): Blend with specified background if exists.
23251 Use IMAGE_BACKGROUND. Add Mac OS Support.
23252
23253 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
23254 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
23255 Remove macros.
23256 [MAC_OSX] (socket_callback): Do nothing.
23257 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
23258 ReceiveNextEvent.
23259 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
23260 socket_callback.
23261 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
23262
23263 2007-08-22 Glenn Morris <rgm@gnu.org>
23264
23265 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
23266
23267 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
23268
23269 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
23270
23271 * image.c: Add support for SVG images. Some additional comments
23272 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
23273 (svg_image_p): New function to test for SVG image.
23274 (svg_load): New function to load SVG image.
23275 (svg_load_image): New function, helper for svg_load.
23276 (Qsvg): New Lisp_object.
23277 (svg_keyword_index): New enum.
23278 (svg_format): New static `image_keyword' struct.
23279 (svg_type): New static `image_type' struct.
23280 (librsvg/rsvg.h): Include it.
23281
23282 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
23283
23284 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
23285
23286 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
23287
23288 * lread.c (Qold_style_backquotes): New var.
23289 (syms_of_lread): Init and staticpro it.
23290 (load_warn_old_style_backquotes): New fun.
23291 (Fload): Use them to warn about old style backquotes.
23292 (end_of_file_error, Fload): Remove unused vars.
23293
23294 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
23295
23296 * lread.c (Vold_style_backquotes): New var.
23297 (syms_of_lread): Init and export it to Elisp.
23298 (read1): Set it when we find an old-style (back)quote.
23299
23300 2007-08-22 Jason Rumney <jasonr@gnu.org>
23301
23302 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
23303
23304 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
23305
23306 * puresize.h (BASE_PURESIZE): Increase to 1140000.
23307
23308 2007-08-19 Richard Stallman <rms@gnu.org>
23309
23310 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
23311
23312 2007-08-19 Andreas Schwab <schwab@suse.de>
23313
23314 * alloc.c (pure): Round PURESIZE up.
23315
23316 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
23317
23318 * xterm.c (handle_one_xevent): Remove check that mouse click is in
23319 active frame.
23320
23321 2007-08-16 Richard Stallman <rms@gnu.org>
23322
23323 * eval.c (Fcommandp): Add parens to clarify.
23324
23325 * minibuf.c (Fall_completions): Use enum for type of table.
23326
23327 * emacs.c (USAGE2): Improve text.
23328
23329 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
23330
23331 * term.c (tty_default_color_capabilities): Declare static
23332 variables in file scope, to avoid HPUX compiler problem.
23333
23334 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
23335
23336 * gtkutil.c (update_frame_tool_bar): Use -1 as index
23337 to gtk_toolbar_insert.
23338
23339 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
23340
23341 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
23342
23343 * insdel.c (reset_var_on_error): New fun.
23344 (signal_before_change, signal_after_change):
23345 Use it to reset (after|before)-change-functions to nil in case of error.
23346 Bind inhibit-modification-hooks to t.
23347 Don't bind (after|before)-change-functions to nil while they run.
23348
23349 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23350
23351 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
23352 filling pixmap with stippled background.
23353
23354 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23355
23356 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
23357 Don't use invisible frame as parent window for repositioning.
23358
23359 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
23360
23361 * print.c (new_backquote_output): Rename from old_backquote_output.
23362 (print): Inverse its logic (according to its name) so as to match the
23363 behavior of new_backquote_flag in lread.c.
23364
23365 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23366
23367 * gmalloc.c (posix_memalign): New function.
23368
23369 * macterm.c (frame_highlight, frame_unhighlight): Don't call
23370 ActivateControl/DeactivateControl here.
23371 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
23372 frame-notice-user-settings is non-nil.
23373 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
23374 for kEventParamFMFontStyle.
23375 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
23376 mac_pass_command_to_system and mac_pass_control_to_system here.
23377 (XTread_socket): Call ActivateControl/DeactivateControl here.
23378 (XTread_socket) [TARGET_API_MAC_CARBON]:
23379 Check mac_pass_command_to_system and mac_pass_control_to_system here.
23380 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
23381 for window repositioning.
23382
23383 2007-08-08 Glenn Morris <rgm@gnu.org>
23384
23385 * Replace `iff' in doc-strings and comments.
23386
23387 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
23388
23389 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
23390
23391 2007-08-07 Martin Rudalics <rudalics@gmx.at>
23392
23393 * fileio.c (Finsert_file_contents): Run format-decode and
23394 after_insert_file_functions on entire buffer when REPLACE is
23395 non-nil and inhibit modification_hooks and point_motion_hooks.
23396 For consistency, run after_insert_file_functions iff something
23397 got inserted. Move signal_after_change and update_compositions
23398 after code running after_insert_file_functions. Make sure that
23399 undo_list doesn't record intermediate steps of the decoding process.
23400
23401 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23402
23403 * emacs.c (main)
23404 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
23405 Call malloc_enable_thread on interactive startup.
23406
23407 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
23408 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
23409 [USE_PTHREAD]: Conditionalize with it.
23410 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
23411 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
23412 New functions.
23413
23414 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
23415
23416 * xdisp.c (redisplay_window): When restoring original buffer
23417 position, make sure it is still valid.
23418
23419 * image.c (png_load): Ignore png-supplied background color.
23420
23421 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23422
23423 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
23424 Use kCFAbsoluteTimeIntervalSince1970.
23425
23426 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
23427 New variable.
23428 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
23429 event loop should be quit.
23430 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
23431 Quit dialog event loop if quit_dialog_event_loop is set.
23432
23433 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
23434 (Selection): New typedef. Use instead of ScrapRef.
23435 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
23436 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
23437 (mac_clear_selection): Rename from clear_scrap.
23438 (get_flavor_type_from_symbol): New argument SEL and subsume function of
23439 scrap_has_target_type. All uses changed.
23440 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
23441 (mac_selection_has_target_p): New functions.
23442 (mac_put_selection_value): Rename from put_scrap_string.
23443 (mac_get_selection_value): Rename from get_scrap_string.
23444 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
23445 (put_scrap_private_timestamp, scrap_has_target_type)
23446 (get_scrap_private_timestamp): Remove functions.
23447 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
23448 (x_own_selection, x_get_local_selection):
23449 Use mac_valid_selection_value_p.
23450 (x_own_selection): Don't use put_scrap_private_timestamp.
23451 Record OWNERSHIP-INFO into Vselection_alist instead.
23452 (x_get_local_selection): Don't check type if request is local.
23453 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
23454 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
23455
23456 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
23457
23458 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
23459 add comment explaining why.
23460
23461 2007-08-03 Richard Stallman <rms@gnu.org>
23462
23463 * fileio.c (Fvisited_file_modtime): Use make_time.
23464
23465 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
23466
23467 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
23468 build.
23469
23470 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
23471
23472 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
23473
23474 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
23475
23476 * puresize.h (BASE_PURESIZE): Increase to 1130000.
23477
23478 2007-07-30 Richard Stallman <rms@gnu.org>
23479
23480 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
23481
23482 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
23483
23484 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
23485
23486 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
23487
23488 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
23489 remote default-directory.
23490
23491 * buffer.c (mode-line-format): Update doc string.
23492
23493 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23494
23495 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
23496 scroll bar gap.
23497 (x_scroll_bar_create): Set bar->fringe_extended_p.
23498 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
23499 on frame edge. Check fringe background extension. Don't clear
23500 extended fringe background area.
23501
23502 * w32term.h (struct scroll_bar): New member fringe_extended_p.
23503 (w32_fill_area): Enclose multiple statements with do ... while (0).
23504
23505 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
23506 Extend fringe background to scroll bar gap.
23507 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
23508 Set bar->fringe_extended_p.
23509 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
23510 Put leftmost/rightmost scroll bars on frame edge. Check fringe
23511 background extension. Don't clear extended fringe background area.
23512
23513 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
23514 New member fringe_extended_p.
23515
23516 2007-07-25 Glenn Morris <rgm@gnu.org>
23517
23518 * Relicense all FSF files to GPLv3 or later.
23519
23520 * COPYING: Switch to GPLv3.
23521
23522 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
23523
23524 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
23525
23526 * data.c (Finteractive_form): Check for the presence of an
23527 `interactive-form' symbol property more thoroughly.
23528
23529 * data.c (Finteractive_form): Use an `interactive-form' property if
23530 present, analogous to the function-documentation property.
23531
23532 2007-07-24 Jason Rumney <jasonr@gnu.org>
23533
23534 * w32fns.c (x_real_positions): Get real position from OS instead of
23535 calculating it.
23536
23537 2007-07-23 Jason Rumney <jasonr@gnu.org>
23538
23539 * filelock.c (current_lock_owner): Allow for @ sign in username.
23540
23541 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
23542
23543 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
23544 remote default-directory.
23545
23546 * buffer.c (mode-line-format): Describe above case in doc string.
23547
23548 2007-07-20 Eli Zaretskii <eliz@gnu.org>
23549
23550 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
23551 Define if not defined.
23552
23553 2007-07-18 Jason Rumney <jasonr@gnu.org>
23554
23555 * w32proc.c (w32_executable_type): Handle 64 bit executables.
23556
23557 2007-07-18 Richard Stallman <rms@gnu.org>
23558
23559 * data.c (Fsetq_default): Doc fix.
23560
23561 * eval.c (Fsetq): Doc fix.
23562
23563 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
23564
23565 * coding.c (Ffind_operation_coding_system):
23566 * eval.c (For, Fand): Doc fixes.
23567 Reported by Johan Bockgård.
23568
23569 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
23570
23571 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
23572
23573 * xterm.h: Declare x_ewmh_activate_frame.
23574
23575 * xterm.c (x_ewmh_activate_frame): New function.
23576 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
23577
23578 2007-07-17 Martin Rudalics <rudalics@gmx.at>
23579
23580 * window.c (Fdisplay_buffer): If largest or LRU window is the
23581 only window, split it even if it is not eligible for splitting.
23582 This restores the original behavior broken by the 2007-07-15
23583 change.
23584
23585 2007-07-17 Glenn Morris <rgm@gnu.org>
23586
23587 * abbrev.c (abbrev_check_chars): New function.
23588 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
23589 Call abbrev_check_chars to check abbrev characters are word
23590 constituents. Doc fix.
23591
23592 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
23593
23594 * process.c (Fstart_process, Fmake_network_process)
23595 (read_process_output): Fix up last changes.
23596
23597 2007-07-16 Eli Zaretskii <eliz@gnu.org>
23598
23599 * makefile.w32-in (clean): Don't delete *~.
23600
23601 2007-07-16 Andreas Schwab <schwab@suse.de>
23602
23603 * window.c (Fdisplay_buffer): Use NILP.
23604 (Fset_window_scroll_bars): Likewise.
23605
23606 2007-07-15 Martin Rudalics <rudalics@gmx.at>
23607
23608 * window.c (window_min_size_2): New function.
23609 (window_min_size_1, size_window, Fdisplay_buffer)
23610 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
23611 windows without mode- or header-lines when window-min-height is
23612 too small.
23613 (size_window): Reset nodelete_p after testing it, following an
23614 earlier note by Kim F. Storm.
23615 (display_buffer): Do not set split_height_threshold to twice the
23616 value of window_min_height to avoid changing the value of a
23617 customizable variable. Rather explicitly check whether the
23618 height of the window that shall be splitted is at least as large
23619 as split_height_threshold.
23620 (Fwindow_full_width_p): New defun.
23621 (syms_of_window): Defsubr it.
23622
23623 * window.h: Add EXFUN for Fwindow_full_width_p.
23624
23625 2007-07-14 Jason Rumney <jasonr@gnu.org>
23626
23627 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
23628
23629 2007-07-14 Richard Stallman <rms@gnu.org>
23630
23631 * eval.c (maybe_call_debugger): New function.
23632 (find_handler_clause): Use maybe_call_debugger.
23633 Call it when the handler says `debug'.
23634 Eliminate DEBUGGER_VALUE_PTR.
23635 (Fsignal): Eliminate debugger_value.
23636 (Qdebug): New variable.
23637 (syms_of_eval): Initialize it.
23638
23639 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
23640
23641 * eval.c (Fprogn):
23642 * keyboard.c (Ftrack_mouse):
23643 * print.c (Fwith_output_to_temp_buffer):
23644 * window.c (Fsave_window_excursion): Doc fix.
23645
23646 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
23647
23648 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
23649
23650 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
23651
23652 * process.h (struct Lisp_Process): Turn slots infd, outfd,
23653 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
23654 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
23655 read_output_delay, and read_output_skip from Lisp_Objects to ints.
23656 Remove unused encoding_carryover.
23657 * process.c: Adjust all functions accordingly.
23658
23659 2007-07-12 Richard Stallman <rms@gnu.org>
23660
23661 * term.c: Include unistd.h only if HAVE_UNISTD_H.
23662
23663 2007-07-11 Jason Rumney <jasonr@gnu.org>
23664
23665 * makefile.w32-in (LIBS): Include OLE32.
23666
23667 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
23668 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
23669
23670 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
23671
23672 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
23673 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
23674 from a Lisp_Object into a bare pointer.
23675 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
23676 Adjust the code correspondingly.
23677
23678 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
23679
23680 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
23681 (term_show_mouse_face): Remove unused var `j'.
23682 (handle_one_term_event): Remove unused vars `i' and `j'.
23683 Don't cast return value of ttyname since it's not necessary.
23684
23685 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
23686
23687 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
23688 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
23689
23690 * fns.c (map_char_table): Use an array of int for `indices' rather than
23691 an array of Lisp_Objects (which are only ever integers anyway).
23692 (Fmap_char_table): Update caller.
23693 * lisp.h: Update prototype.
23694 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
23695 * fontset.c (Ffontset_info):
23696 * casetab.c (set_case_table): Update callers.
23697
23698 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
23699
23700 * keymap.c (struct accessible_keymaps_data)
23701 (struct where_is_internal_data): New structures.
23702 (accessible_keymaps_1, where_is_internal_1): Use them to change
23703 interface to adhere to the one used by map_keymap.
23704 (Faccessible_keymaps, where_is_internal): Use map_keymap.
23705 (accessible_keymaps_char_table, where_is_internal_2): Remove.
23706
23707 * keymap.h (map_keymap_function_t): More informative prototype.
23708
23709 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
23710
23711 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
23712 (looking_at_1): Don't change search_regs and last_thing_searched
23713 if `inhibit-changing-match-data' is non-nil.
23714 (string_match_1, search_buffer, set_search_regs): Likewise.
23715 (syms_of_search): Add Lisp level definition for
23716 `inhibit-changing-match-data' and set it to nil.
23717 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
23718 start and end of the match, instead of using values in search_regs.
23719
23720 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
23721
23722 * minibuf.c (Fcompleting_read): New value `confirm-only'
23723 for `require-match'.
23724
23725 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
23726
23727 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
23728 part of the 2007-06-27 change to syms_of_fileio.
23729
23730 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23731
23732 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
23733 Check WINDOWP before using XWINDOW. Consolidate return statements.
23734
23735 2007-06-27 Richard Stallman <rms@gnu.org>
23736
23737 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
23738
23739 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
23740
23741 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
23742
23743 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23744
23745 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
23746 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
23747 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
23748 (_free_internal, memalign): Use them.
23749 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
23750 Initialize to PTHREAD_MUTEX_INITIALIZER.
23751 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
23752 (morecore_nolock): Rename from morecore. All uses changed.
23753 Use only nolock versions of internal allocation functions.
23754 (_malloc_internal_nolock, _realloc_internal_nolock)
23755 (_free_internal_nolock): New functions created from
23756 _malloc_internal, _realloc_internal, and _free_internal.
23757 (_malloc_internal, _realloc_internal, _free_internal): Use them.
23758 Copy hook value to automatic variable before its use.
23759 (memalign): Copy hook value to automatic variable before its use.
23760
23761 2007-06-26 Kenichi Handa <handa@m17n.org>
23762
23763 * coding.c (Ffind_operation_coding_system): Docstring improved.
23764 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
23765
23766 2007-06-25 David Kastrup <dak@gnu.org>
23767
23768 * keymap.c (Fcurrent_active_maps): Add `position' argument.
23769 (Fwhere_is_internal): Adjust call to `current-active-maps' to
23770 cater for additional parameter.
23771
23772 * keymap.h: Adjust number of parameters to `current-active-maps'.
23773
23774 * doc.c (Fsubstitute_command_keys): Adjust call of
23775 `current-active-maps'.
23776
23777 2007-06-25 David Kastrup <dak@gnu.org>
23778
23779 * callint.c (Fcall_interactively): Make the parsing of interactive
23780 specs somewhat more readable.
23781
23782 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23783
23784 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
23785 to scroll bar gap also when bitmap fills fringe. Draw only foreground
23786 if extended background has already been filled.
23787
23788 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23789
23790 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
23791 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
23792
23793 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
23794 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
23795 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
23796 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
23797 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
23798 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
23799 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
23800 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
23801 Run timers during dialog popup.
23802 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
23803
23804 2007-06-21 Jason Rumney <jasonr@gnu.org>
23805
23806 * image.c (convert_mono_to_color_image): Swap fore and background.
23807
23808 2007-06-20 Jason Rumney <jasonr@gnu.org>
23809
23810 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
23811 (w32_free_bdf_font): Unmap memory not handle.
23812
23813 2007-06-20 Sam Steingold <sds@gnu.org>
23814
23815 * gmalloc.c (__morecore): Fix the declaration to comply with the
23816 definition.
23817
23818 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
23819
23820 * w32term.c (w32_delete_display): Remove leftover declaration.
23821 (w32_define_cursor, w32_initialize): Make static.
23822
23823 * w32.c (_wsa_errlist): Fix typo in error message.
23824 (init_environment): Ignore any environment variable from the
23825 registry having a null value.
23826
23827 2007-06-20 Glenn Morris <rgm@gnu.org>
23828
23829 * Makefile.in (LIBGIF): Default to -lgif.
23830
23831 2007-06-17 Jason Rumney <jasonr@gnu.org>
23832
23833 * w32menu.c (add_menu_item): Don't use multibyte string functions on
23834 unicode strings.
23835
23836 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
23837
23838 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
23839 Fix typo in docstring.
23840
23841 2007-06-16 Eli Zaretskii <eliz@gnu.org>
23842
23843 * w32menu.c (add_menu_item): Escape `&' characters in menu items
23844 and their keybindings.
23845
23846 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
23847
23848 * composite.c (update_compositions): Fix last fix.
23849
23850 2007-06-14 Jason Rumney <jasonr@gnu.org>
23851
23852 * w32.c (get_process_times_fn): New function pointer.
23853 (globals_of_w32): Intialize it if present in kernel32.dll.
23854 (w32_get_internal_run_time): New function.
23855
23856 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
23857
23858 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
23859
23860 * composite.c (update_compositions): Check the validness of
23861 compositions.
23862
23863 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23864
23865 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
23866 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
23867
23868 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
23869 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
23870
23871 * macgui.h (USE_MAC_TOOLBAR): New define.
23872
23873 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
23874 Return immediately unless popup is activated.
23875
23876 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
23877 background to scroll bar gap.
23878 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
23879 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
23880 scroll bars on frame edge. Check fringe background extension.
23881 Don't clear extended fringe background area.
23882 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
23883 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
23884 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
23885 [USE_MAC_TOOLBAR]: New macros.
23886 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
23887 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
23888 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
23889 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
23890 [USE_MAC_TOOLBAR]: New functions.
23891 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
23892 manually if previous repositioning has failed.
23893 (mac_handle_keyboard_event): Use precomputed event kind.
23894 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
23895 as tool bar item click. Handle mouse movement over tool bar items.
23896
23897 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
23898 toolbar_win_gravity.
23899 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
23900 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
23901 Add externs.
23902
23903 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
23904 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
23905
23906 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
23907
23908 * image.c (search_image_cache): Remove unused variable.
23909
23910 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
23911
23912 * xfns.c, xmenu.c: Link to xaw3d if available.
23913
23914 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23915
23916 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
23917 frame_foreground and frame_background.
23918
23919 * image.c (lookup_image): Save frame foreground and background colors.
23920 (search_image_cache): Check if saved and current frame colors match.
23921
23922 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
23923
23924 * regex.c (regex_compile): Remove the `regnum' counter.
23925 Use bufp->re_nsub instead. Add support for \(?N:RE\).
23926
23927 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
23928
23929 * term.c: Include intervals.h to declare Fget_text_property.
23930
23931 2007-06-10 Jason Rumney <jasonr@gnu.org>
23932
23933 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
23934
23935 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
23936
23937 * callint.c (Fcall_interactively):
23938 * editfns.c (Fdelete_and_extract_region):
23939 * fileio.c (Fread_file_name):
23940 * fns.c (Fmapconcat):
23941 * keyboard.c (cmd_error_internal):
23942 * keymap.c (Fkey_description):
23943 * lread.c (openp):
23944 * minibuf.c (read_minibuf):
23945 * search.c (wordify):
23946 * sunfns.c (sel_read):
23947 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
23948 * xfns.c (x_default_scroll_bar_color_parameter):
23949 * xmenu.c (menu_help_callback):
23950 * xselect.c (Fx_get_atom_name):
23951 * xterm.c (x_term_init): Use empty_unibyte_string.
23952
23953 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
23954
23955 * alloc.c (init_strings): Initialize canonical empty strings.
23956 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
23957 canonical empty string when the requested size is 0.
23958
23959 * emacs.c (empty_unibyte_string): Rename from empty_string.
23960 (empty_multibyte_string): New canonical empty string.
23961 (syms_of_emacs): Don't initialize empty_string.
23962
23963 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
23964 string, if appropriate.
23965 (empty_unibyte_string, empty_multibyte_string): New externs.
23966 (empty_string): Remove extern.
23967
23968 * lread.c (syms_of_lread): Use empty_unibyte_string.
23969
23970 2007-06-07 Jason Rumney <jasonr@gnu.org>
23971
23972 * s/ms-w32.h: Don't define HAVE_TZNAME.
23973
23974 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
23975
23976 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23977
23978 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
23979
23980 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
23981 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
23982
23983 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
23984 Don't call next handler.
23985 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
23986 Remove argument. Install handler to application.
23987 (set_frame_menubar): Don't change deep_p.
23988 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
23989 FRAME_OUTER_TO_INNER_DIFF_Y.
23990 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
23991 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
23992 [HAVE_DIALOGS]: New macros.
23993 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
23994 Use them.
23995 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
23996
23997 * macselect.c [MAC_OSX] (install_service_handler): Rename from
23998 init_service_handler. All callers changed. Return OSStatus value.
23999
24000 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
24001 All callers changed so as not to call SetPortWindowPort.
24002 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
24003 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
24004 mac_draw_string_common.
24005 (mac_draw_image_string_qd): Likewise.
24006 (mac_draw_string_common): Use them. Add INLINE.
24007 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
24008 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
24009 GetGlobalMouse.
24010 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
24011 and FRAME_OUTER_TO_INNER_DIFF_Y.
24012 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
24013 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
24014 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
24015 repositioning window to mac_handle_window_event.
24016 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
24017 saving window location to mac_handle_window_event
24018 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
24019 (install_menu_target_item_handler): Remove argument in extern.
24020 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
24021 Also accept command events.
24022 (do_keystroke): New function created from XTread_socket.
24023 (init_command_handler): Remove functions.
24024 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
24025 and save window location by kEventWindowShowing and kEventWindowHiding
24026 handlers here. Don't call next handler for window state change and
24027 focus events.
24028 (mac_handle_application_event, mac_handle_keyboard_event)
24029 [TARGET_API_MAC_CARBON]: New functions.
24030 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
24031 kEventWindowShowing and kEventWindowHiding events. Move installation
24032 of mouse, font, text input and menu target item handlers to
24033 install_application_handler.
24034 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
24035 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
24036 New function.
24037 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
24038 Register it.
24039 (XTread_socket) [TARGET_API_MAC_CARBON]:
24040 Consolidate SendEventToEventTarget calls.
24041 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
24042 Move application activation handler to mac_handle_application_event.
24043 Move keyboard handler to mac_handle_keyboard_event.
24044 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
24045 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
24046 init_command_handler. Call install_application_handler.
24047
24048 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
24049 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
24050
24051 2007-06-07 Glenn Morris <rgm@gnu.org>
24052
24053 * emacs.c (main): Use `emacs-copyright' in --version output.
24054
24055 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
24056
24057 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
24058
24059 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24060
24061 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
24062
24063 * macgui.h: Replace WindowPtr with WindowRef.
24064
24065 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
24066 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
24067 Replace ControlHandle with ControlRef.
24068 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
24069
24070 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
24071 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
24072 Replace ControlHandle with ControlRef.
24073 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
24074 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
24075
24076 * macterm.h (struct scroll_bar): Rename member control_handle_low
24077 and control_handle_high to control_ref_low and control_ref_high.
24078 All uses changed.
24079 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
24080 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
24081 respectively. All uses changed.
24082 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
24083 (install_window_handler, remove_window_handler): Replace WindowPtr
24084 with WindowRef in externs.
24085
24086 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
24087
24088 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
24089
24090 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
24091
24092 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
24093
24094 * frame.c (Fmouse_position, Fmouse_pixel_position):
24095 Condition on HAVE_GPM too.
24096
24097 * term.c (term_mouse_highlight): Remove unused variables.
24098 (Fterm_open_connection): Set gpm_zerobased to 1.
24099 (term_mouse_movement, term_mouse_click, handle_one_term_event):
24100 Use zero based co-ordinates.
24101 (handle_one_term_event): Report a drag as mouse movement too.
24102
24103 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
24104
24105 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
24106
24107 * image.c (search_image_cache): New function. Require background
24108 color match if background color is unspecified in the image spec.
24109 (uncache_image, lookup_image): Use it.
24110
24111 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
24112
24113 * window.c (Fshrink_window): Reflow docstring.
24114
24115 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
24116
24117 * Version 22.1 released.
24118
24119 2007-06-01 Richard Stallman <rms@gnu.org>
24120
24121 * xfns.c (x_encode_text): Add GCPRO.
24122
24123 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24124
24125 * xfns.c (x_set_name_internal): Save encoded name before
24126 x_encode_text in case string data is relocated.
24127
24128 2007-05-31 Richard Stallman <rms@gnu.org>
24129
24130 * buffer.c (syms_of_buffer): Doc fix.
24131
24132 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
24133
24134 * sysdep.c (init_sys_modes): Add rather than replace with
24135 O_NONBLOCK.
24136
24137 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
24138 term_mouse_moveto.
24139
24140 * termhooks.h (term_mouse_moveto): New extern.
24141
24142 * term.c (mouse_face_window): Rename...
24143 (Qmouse_face_window): ...to this.
24144 (term_show_mouse_face, term_clear_mouse_face)
24145 (term_mouse_highlight): Use Qmouse_face_window.
24146 (term_mouse_moveto): New function.
24147 (term_mouse_position): Make it work.
24148 (syms_of_term): Uncomment assignment to mouse_position_hook.
24149 Staticpro Qmouse_face_window.
24150
24151 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24152
24153 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
24154 around current_column call.
24155
24156 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
24157
24158 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
24159 * xdisp.c (next_element_from_buffer):
24160 * window.c (delete_window):
24161 * term.c (term_mouse_highlight):
24162 * msdos.c (getdefdir):
24163 * macterm.c (mac_create_bitmap_from_bitmap_data)
24164 (init_font_name_table):
24165 * fns.c (Fsxhash):
24166 * data.c (Fmake_local_variable):
24167 * ccl.c (ccl_driver): Likewise.
24168
24169 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24170
24171 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
24172 Call mac_wakeup_from_rne on window size change.
24173
24174 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
24175
24176 * image.c (uncache_image): Fix typo.
24177
24178 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
24179
24180 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
24181
24182 2007-05-22 Richard Stallman <rms@gnu.org>
24183
24184 * xterm.c (x_connection_closed): Remove NO_RETURN.
24185
24186 2007-05-22 Martin Rudalics <rudalics@gmx.at>
24187
24188 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
24189
24190 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
24191
24192 * image.c (uncache_image): New function.
24193 (Fimage_refresh): New function.
24194
24195 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
24196
24197 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
24198
24199 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
24200
24201 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
24202 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
24203
24204 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
24205
24206 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
24207 conditional on [HAVE_GPM_H].
24208
24209 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
24210
24211 * syntax.c (skip_chars): Update syntax-table only after we checked that
24212 the new location is valid.
24213
24214 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24215
24216 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
24217 mac_get_window_bounds.
24218
24219 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
24220
24221 * Makefile.in (LIBGPM): Allow it to be set from configure.
24222 If set then link Emacs with it.
24223
24224 * config.in: Regenerate.
24225
24226 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
24227 New externs.
24228
24229 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
24230 Include gpm.h.
24231 (handle_one_term_event, term_gpm): New externs.
24232
24233 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
24234 and allow it to be interrupted by SIGIO.
24235
24236 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
24237 (wait_reading_process_output): Wait on gpm_fd too.
24238 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
24239 (add_gpm_wait_descriptor_called_flag): New variable.
24240 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
24241
24242 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
24243 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
24244 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
24245 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
24246 (make_lispy_event): Add case GPM_CLICK_EVENT.
24247 (read_avail_input): Handle mouse input.
24248
24249 * term.c (write_glyphs_with_face): New function.
24250 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
24251 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
24252 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
24253 (mouse_face_face_id, term_gpm, pos_x, pos_y)
24254 (last_mouse_x, last_mouse_y): New variables.
24255 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
24256 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
24257 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
24258 (Fterm_close_connection): New functions.
24259 (term_init): Initialise mouse_face_window.
24260
24261 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
24262
24263 * xdisp.c (redisplay_window): If first window line is a
24264 continuation line, recompute the new window start instead of
24265 recentering.
24266
24267 2007-05-18 Glenn Morris <rgm@gnu.org>
24268
24269 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
24270 Suggested by Alfred M. Szmidt <ams@gnu.org>.
24271
24272 2007-05-17 Glenn Morris <rgm@gnu.org>
24273
24274 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
24275
24276 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24277
24278 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
24279 dead key repeat and up events.
24280
24281 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
24282
24283 * image.c (pbm_load): Check image size for monochrome pbm.
24284
24285 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
24286
24287 * xterm.c (XTread_socket): Revert last change.
24288
24289 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
24290
24291 * image.c (pbm_load): Correctly check image size for greyscale pbm.
24292
24293 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
24294
24295 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
24296
24297 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
24298 mixup (YAILOM).
24299
24300 2007-05-07 Andreas Schwab <schwab@suse.de>
24301
24302 * keymap.c (Flookup_key): Fix typo in last change.
24303
24304 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
24305
24306 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
24307 mapping for unibyte strings.
24308
24309 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24310
24311 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
24312 (Fx_popup_dialog) [MAC_OSX]: Likewise.
24313
24314 2007-04-29 Richard Stallman <rms@gnu.org>
24315
24316 * insdel.c (replace_range): For undo, record insertion first.
24317
24318 2007-04-29 Andreas Schwab <schwab@suse.de>
24319
24320 * lisp.h (VECSIZE): Use OFFSETOF.
24321
24322 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24323
24324 * xdisp.c (try_window_reusing_current_matrix): Fix number of
24325 disabled lines.
24326
24327 2007-04-28 Richard Stallman <rms@gnu.org>
24328
24329 * lread.c (read_escape): In a string, \s is always space.
24330
24331 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
24332
24333 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
24334
24335 * gtkutil.c (xg_update_menubar, create_menus): Create empty
24336 submenu for menu bar items.
24337
24338 See ChangeLog.10 for earlier changes.
24339
24340 ;; Local Variables:
24341 ;; coding: utf-8
24342 ;; add-log-time-zone-rule: t
24343 ;; End:
24344
24345 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
24346
24347 This file is part of GNU Emacs.
24348
24349 GNU Emacs is free software: you can redistribute it and/or modify
24350 it under the terms of the GNU General Public License as published by
24351 the Free Software Foundation, either version 3 of the License, or
24352 (at your option) any later version.
24353
24354 GNU Emacs is distributed in the hope that it will be useful,
24355 but WITHOUT ANY WARRANTY; without even the implied warranty of
24356 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24357 GNU General Public License for more details.
24358
24359 You should have received a copy of the GNU General Public License
24360 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24361
24362 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40